Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
5975c91e
Commit
5975c91e
authored
9 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #8887: moved main function to lib, import it in bin script
parent
29f684f4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
+28
-0
28 additions, 0 deletions
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
SAS/ResourceAssignment/Services/src/rataskspecifiedservice
+2
-24
2 additions, 24 deletions
SAS/ResourceAssignment/Services/src/rataskspecifiedservice
with
30 additions
and
24 deletions
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
+
28
−
0
View file @
5975c91e
...
@@ -226,3 +226,31 @@ class RATaskSpecified(OTDBBusListener):
...
@@ -226,3 +226,31 @@ class RATaskSpecified(OTDBBusListener):
logger
.
info
(
"
Result sent
"
)
logger
.
info
(
"
Result sent
"
)
def
main
():
import
sys
import
logging
from
optparse
import
OptionParser
from
lofar.common.util
import
waitForInterrupt
from
lofar.sas.resourceassignment.rataskspecified.config
import
DEFAULT_NOTIFICATION_BUSNAME
,
RATASKSPECIFIED_NOTIFICATIONNAME
DEFAULT_OTDB_BUSNAME
=
'
lofar.otdb.status
'
logging
.
basicConfig
(
format
=
'
%(asctime)s %(levelname)s %(message)s
'
,
level
=
logging
.
INFO
)
# Check the invocation arguments
parser
=
OptionParser
(
"
%prog [options]
"
,
description
=
"
run the rataskspecified service
"
)
parser
.
add_option
(
"
-o
"
,
"
--otdb_bus
"
,
dest
=
"
otdb_busname
"
,
type
=
"
string
"
,
default
=
DEFAULT_OTDB_BUSNAME
,
help
=
"
Bus or queue OTDB operates on
"
)
parser
.
add_option
(
"
-b
"
,
"
--notification_bus
"
,
dest
=
"
notification_bus
"
,
type
=
"
string
"
,
default
=
DEFAULT_NOTIFICATION_BUSNAME
,
help
=
"
Bus or queue we publish resource requests on
"
)
parser
.
add_option
(
"
-s
"
,
"
--notification_subject
"
,
dest
=
"
notification_subject
"
,
type
=
"
string
"
,
default
=
RATASKSPECIFIED_NOTIFICATIONNAME
,
help
=
"
The subject of the event messages which this service publishes
"
)
(
options
,
args
)
=
parser
.
parse_args
()
with
RATaskSpecified
(
RATASKSPECIFIED_NOTIFICATIONNAME
,
otdb_busname
=
options
.
otdb_busname
,
my_busname
=
options
.
notification_bus
)
as
jts
:
waitForInterrupt
()
if
__name__
==
"
__main__
"
:
main
()
This diff is collapsed.
Click to expand it.
SAS/ResourceAssignment/Services/src/rataskspecifiedservice
+
2
−
24
View file @
5975c91e
...
@@ -25,30 +25,8 @@ Daemon that listens to OTDB status changes to PRESCHEDULED, requests
...
@@ -25,30 +25,8 @@ Daemon that listens to OTDB status changes to PRESCHEDULED, requests
the parset of such jobs (+ their predecessors), and posts them on the bus.
the parset of such jobs (+ their predecessors), and posts them on the bus.
"""
"""
from
lofar.sas.resourceassignment.rataskspecified.RATaskSpecified
import
RATaskSpecified
from
lofar.sas.resourceassignment.rataskspecified.RATaskSpecified
import
main
from
lofar.sas.resourceassignment.rataskspecified.config
import
DEFAULT_NOTIFICATION_BUSNAME
,
RATASKSPECIFIED_NOTIFICATIONNAME
DEFAULT_OTDB_BUSNAME
=
'
lofar.otdb.status
'
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
import
sys
main
()
import
logging
from
optparse
import
OptionParser
from
lofar.common.util
import
waitForInterrupt
logging
.
basicConfig
(
format
=
'
%(asctime)s %(levelname)s %(message)s
'
,
level
=
logging
.
INFO
)
# Check the invocation arguments
parser
=
OptionParser
(
"
%prog [options]
"
,
description
=
"
run the rataskspecified service
"
)
parser
.
add_option
(
"
-o
"
,
"
--otdb_bus
"
,
dest
=
"
otdb_busname
"
,
type
=
"
string
"
,
default
=
DEFAULT_OTDB_BUSNAME
,
help
=
"
Bus or queue OTDB operates on
"
)
parser
.
add_option
(
"
-b
"
,
"
--notification_bus
"
,
dest
=
"
notification_bus
"
,
type
=
"
string
"
,
default
=
DEFAULT_NOTIFICATION_BUSNAME
,
help
=
"
Bus or queue we publish resource requests on
"
)
parser
.
add_option
(
"
-s
"
,
"
--notification_subject
"
,
dest
=
"
notification_subject
"
,
type
=
"
string
"
,
default
=
RATASKSPECIFIED_NOTIFICATIONNAME
,
help
=
"
The subject of the event messages which this service publishes
"
)
(
options
,
args
)
=
parser
.
parse_args
()
with
RATaskSpecified
(
RATASKSPECIFIED_NOTIFICATIONNAME
,
otdb_busname
=
options
.
otdb_busname
,
my_busname
=
options
.
notification_bus
)
as
jts
:
waitForInterrupt
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment