Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio
Commits
37298d30
Commit
37298d30
authored
Jan 10, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jslint pass waitStatus.js
parent
8d6e596b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
96 additions
and
93 deletions
+96
-93
src/jio/jobs/status/waitStatus.js
src/jio/jobs/status/waitStatus.js
+96
-93
No files found.
src/jio/jobs/status/waitStatus.js
View file @
37298d30
var
waitStatus
=
function
(
spec
,
my
)
{
/*jslint indent: 2, maxlen: 80, sloppy: true */
var
that
=
jobStatus
(
spec
,
my
);
/*global jobStatus: true, jobManager: true */
var
waitStatus
=
function
(
spec
,
my
)
{
var
that
=
jobStatus
(
spec
,
my
),
priv
=
{};
spec
=
spec
||
{};
spec
=
spec
||
{};
my
=
my
||
{};
my
=
my
||
{};
// Attributes //
// Attributes //
var
priv
=
{};
priv
.
job_id_array
=
spec
.
job_id_array
||
[];
priv
.
job_id_array
=
spec
.
job_id_array
||
[];
priv
.
threshold
=
0
;
priv
.
threshold
=
0
;
...
@@ -13,7 +14,7 @@ var waitStatus = function(spec, my) {
...
@@ -13,7 +14,7 @@ var waitStatus = function(spec, my) {
* @method getLabel
* @method getLabel
* @return {string} The label: 'wait'.
* @return {string} The label: 'wait'.
*/
*/
that
.
getLabel
=
function
()
{
that
.
getLabel
=
function
()
{
return
'
wait
'
;
return
'
wait
'
;
};
};
...
@@ -21,9 +22,9 @@ var waitStatus = function(spec, my) {
...
@@ -21,9 +22,9 @@ var waitStatus = function(spec, my) {
* Refresh the job id array to wait.
* Refresh the job id array to wait.
* @method refreshJobIdArray
* @method refreshJobIdArray
*/
*/
priv
.
refreshJobIdArray
=
function
()
{
priv
.
refreshJobIdArray
=
function
()
{
var
tmp_job_id_array
=
[],
i
;
var
tmp_job_id_array
=
[],
i
;
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
if
(
jobManager
.
jobIdExists
(
priv
.
job_id_array
[
i
]))
{
if
(
jobManager
.
jobIdExists
(
priv
.
job_id_array
[
i
]))
{
tmp_job_id_array
.
push
(
priv
.
job_id_array
[
i
]);
tmp_job_id_array
.
push
(
priv
.
job_id_array
[
i
]);
}
}
...
@@ -36,9 +37,9 @@ var waitStatus = function(spec, my) {
...
@@ -36,9 +37,9 @@ var waitStatus = function(spec, my) {
* @method waitForJob
* @method waitForJob
* @param {object} job The job to wait for.
* @param {object} job The job to wait for.
*/
*/
that
.
waitForJob
=
function
(
job
)
{
that
.
waitForJob
=
function
(
job
)
{
var
i
;
var
i
;
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
if
(
priv
.
job_id_array
[
i
]
===
job
.
getId
())
{
if
(
priv
.
job_id_array
[
i
]
===
job
.
getId
())
{
return
;
return
;
}
}
...
@@ -51,10 +52,10 @@ var waitStatus = function(spec, my) {
...
@@ -51,10 +52,10 @@ var waitStatus = function(spec, my) {
* @method dontWaitForJob
* @method dontWaitForJob
* @param {object} job The job to stop waiting for.
* @param {object} job The job to stop waiting for.
*/
*/
that
.
dontWaitForJob
=
function
(
job
)
{
that
.
dontWaitForJob
=
function
(
job
)
{
var
i
,
tmp_job_id_array
=
[];
var
i
,
tmp_job_id_array
=
[];
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
for
(
i
=
0
;
i
<
priv
.
job_id_array
.
length
;
i
+=
1
)
{
if
(
priv
.
job_id_array
[
i
]
!==
job
.
getId
())
{
if
(
priv
.
job_id_array
[
i
]
!==
job
.
getId
())
{
tmp_job_id_array
.
push
(
priv
.
job_id_array
[
i
]);
tmp_job_id_array
.
push
(
priv
.
job_id_array
[
i
]);
}
}
}
}
...
@@ -66,7 +67,7 @@ var waitStatus = function(spec, my) {
...
@@ -66,7 +67,7 @@ var waitStatus = function(spec, my) {
* @method waitForTime
* @method waitForTime
* @param {number} ms The number of milliseconds
* @param {number} ms The number of milliseconds
*/
*/
that
.
waitForTime
=
function
(
ms
)
{
that
.
waitForTime
=
function
(
ms
)
{
priv
.
threshold
=
Date
.
now
()
+
ms
;
priv
.
threshold
=
Date
.
now
()
+
ms
;
};
};
...
@@ -74,22 +75,24 @@ var waitStatus = function(spec, my) {
...
@@ -74,22 +75,24 @@ var waitStatus = function(spec, my) {
* The status stops to wait for some time.
* The status stops to wait for some time.
* @method stopWaitForTime
* @method stopWaitForTime
*/
*/
that
.
stopWaitForTime
=
function
()
{
that
.
stopWaitForTime
=
function
()
{
priv
.
threshold
=
0
;
priv
.
threshold
=
0
;
};
};
that
.
canStart
=
function
()
{
that
.
canStart
=
function
()
{
priv
.
refreshJobIdArray
();
priv
.
refreshJobIdArray
();
return
(
priv
.
job_id_array
.
length
===
0
&&
Date
.
now
()
>=
priv
.
threshold
);
return
(
priv
.
job_id_array
.
length
===
0
&&
Date
.
now
()
>=
priv
.
threshold
);
};
};
that
.
canRestart
=
function
()
{
that
.
canRestart
=
function
()
{
return
that
.
canStart
();
return
that
.
canStart
();
};
};
that
.
serialized
=
function
()
{
that
.
serialized
=
function
()
{
return
{
label
:
that
.
getLabel
(),
return
{
waitfortime
:
priv
.
threshold
,
"
label
"
:
that
.
getLabel
(),
waitforjob
:
priv
.
job_id_array
};
"
waitfortime
"
:
priv
.
threshold
,
"
waitforjob
"
:
priv
.
job_id_array
};
};
};
/**
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment