Forgot to import random
[nodemanager.git] / nm.py
1 #!/usr/bin/python
2
3 """Node Manager"""
4
5 import optparse
6 import time
7 import xmlrpclib
8 import socket
9 import os
10 import sys
11 import resource
12
13 import logger
14 import tools
15
16 from config import Config
17 from plcapi import PLCAPI 
18 import random
19
20
21 savedargv = sys.argv[:]
22
23 parser = optparse.OptionParser()
24 parser.add_option('-d', '--daemon', action='store_true', dest='daemon', default=False, help='run daemonized')
25 parser.add_option('-s', '--startup', action='store_true', dest='startup', default=False, help='run all sliver startup scripts')
26 parser.add_option('-f', '--config', action='store', dest='config', default='/etc/planetlab/plc_config', help='PLC configuration file')
27 parser.add_option('-k', '--session', action='store', dest='session', default='/etc/planetlab/session', help='API session key (or file)')
28 parser.add_option('-p', '--period', action='store', dest='period', default=600, help='Polling interval (sec)')
29 (options, args) = parser.parse_args()
30
31 modules = []
32
33 def GetSlivers(plc):
34     data = plc.GetSlivers()
35     # net needs access to API for i2 nodes.
36     for module in modules:
37         if module.__name__ == 'net':
38             module.GetSlivers(plc, data)
39         else:
40             callback = getattr(module, 'GetSlivers')
41             callback(data)
42
43 def run():
44     try:
45         if options.daemon: tools.daemon()
46
47         # Load /etc/planetlab/plc_config
48         config = Config(options.config)
49
50         try:
51             other_pid = tools.pid_file()
52             if other_pid != None:
53                 print """There might be another instance of the node manager running as pid %d.  If this is not the case, please remove the pid file %s""" % (other_pid, tools.PID_FILE)
54                 return
55         except OSError, err:
56             print "Warning while writing PID file:", err
57
58         # Load and start modules
59         for module in ['net', 'proper', 'conf_files', 'sm']:
60             try:
61                 m = __import__(module)
62                 m.start(options, config)
63                 modules.append(m)
64             except ImportError, err:
65                 print "Warning while loading module %s:" % module, err
66
67         # Load /etc/planetlab/session
68         if os.path.exists(options.session):
69             session = file(options.session).read().strip()
70         else:
71             session = options.session
72
73         # Initialize XML-RPC client
74         plc = PLCAPI(config.plc_api_uri, config.cacert, session, timeout=options.period/2)
75
76         while True:
77             try: GetSlivers(plc)
78             except: logger.log_exc()
79             time.sleep(options.period + random.randrange(0,301))
80     except: logger.log_exc()
81
82
83 if __name__ == '__main__':
84     stacklim = 512*1024  # 0.5 MiB
85     curlim = resource.getrlimit(resource.RLIMIT_STACK)[0]  # soft limit
86     if curlim > stacklim:
87         resource.setrlimit(resource.RLIMIT_STACK, (stacklim, stacklim))
88         # for some reason, doesn't take effect properly without the exec()
89         python = '/usr/bin/python'
90         os.execv(python, [python] + savedargv)
91     run()
92 else:
93     # This is for debugging purposes.  Open a copy of Python and import nm
94     tools.as_daemon_thread(run)