X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=openmanod.py;h=03901c3fb6c814b08a6af346be21dac3d1f89131;hb=06e6c396413630640cafae3488442a0869f1642d;hp=3d0feb45d6ce4fe11d0386253887f013dbf7f746;hpb=36c0b17b51788c867b5aefe269cd860f4ebc7bb4;p=osm%2FRO.git diff --git a/openmanod.py b/openmanod.py index 3d0feb45..03901c3f 100755 --- a/openmanod.py +++ b/openmanod.py @@ -33,7 +33,7 @@ It loads the configuration file and launches the http_server thread that will li ''' __author__="Alfonso Tierno, Gerardo Garcia, Pablo Montes" __date__ ="$26-aug-2014 11:09:29$" -__version__="0.5.5-r514" +__version__="0.5.8-r518" version_date="Jan 2017" database_version="0.19" #expected database schema version @@ -64,6 +64,7 @@ def load_configuration(configuration_file): 'http_console_host': None, 'log_level': 'DEBUG', 'log_socket_port': 9022, + 'auto_push_VNF_to_VIMs': True } try: #Check config file exists @@ -144,7 +145,8 @@ if __name__=="__main__": logger.setLevel(logging.DEBUG) socket_handler = None file_handler = None - # Read parameters and configuration file + # Read parameters and configuration file + httpthread = None try: #load parameters and configuration opts, args = getopt.getopt(sys.argv[1:], "hvc:V:p:P:", ["config=", "help", "version", "port=", "vnf-repository=", "adminport=", "log-socket-host=", "log-socket-port=", "log-file="]) @@ -240,7 +242,7 @@ if __name__=="__main__": logger.critical("Starting openmano server version: '%s %s' command: '%s'", __version__, version_date, " ".join(sys.argv)) - for log_module in ("nfvo", "http", "vim", "db"): + for log_module in ("nfvo", "http", "vim", "db", "console"): log_level_module = "log_level_" + log_module log_file_module = "log_file_" + log_module logger_module = logging.getLogger('openmano.' + log_module) @@ -273,6 +275,7 @@ if __name__=="__main__": exit(-1) nfvo.global_config=global_config + nfvo.start_service(mydb) httpthread = httpserver.httpserver(mydb, False, global_config['http_host'], global_config['http_port']) @@ -291,12 +294,10 @@ if __name__=="__main__": #TODO: Interactive console must be implemented here instead of join or sleep #httpthread.join() - #if 'http_admin_port' in global_config: + #if 'http_admin_port' in global_config: # httpthreadadmin.join() while True: time.sleep(86400) - for thread in global_config["console_thread"]: - thread.terminate = True except KeyboardInterrupt as e: logger.info(str(e)) @@ -312,4 +313,9 @@ if __name__=="__main__": except db_base_Exception as e: logger.critical(str(e)) exit(-1) + nfvo.stop_service() + if httpthread: + httpthread.join(1) + for thread in global_config["console_thread"]: + thread.terminate = True