123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #-*- coding: utf-8 -*-
-
- import sys
- import os, os.path
- import loader
-
- from lodel.settings import Settings
- from lodel import logger
-
- ## @brief Utility method to generate python code given an emfile and a
- # translator
- # @param model_file str : An em file
- # @param translator str : a translator name
- # @return python code as string
- def generate_dyncode(model_file, translator):
- from lodel.editorial_model.model import EditorialModel
- from lodel.leapi import lefactory
-
- model = EditorialModel.load(translator, filename = model_file)
- dyncode = lefactory.dyncode_from_em(model)
- return dyncode
-
- ## @brief Utility method to generate a python file representing leapi dyncode
- # given an em file and the associated translator name
- #
- # @param model_file str : An em file
- # @param translator str : a translator name
- # @param output_filename str : the output file
- def create_dyncode(model_file, translator, output_filename):
- dyncode = generate_dyncode(model_file, translator)
- with open(output_filename, 'w+') as out_fd:
- out_fd.write(dyncode)
- out_fd.close()
- logger.info("Dynamic leapi code written in %s", output_filename)
-
-
- ## @brief Refresh dynamic leapi code from settings
- def refresh_dyncode():
- # EditorialModel update/refresh
-
- # TODO
-
- # Dyncode refresh
- create_dyncode( Settings.editorialmodel.emfile,
- Settings.editorialmodel.emtranslator,
- Settings.editorialmodel.dyncode)
-
-
- def init_all_dbs():
- import loader
- loader.start()
- import leapi_dyncode as dyncode
- from lodel.settings.utils import SettingsError
- from lodel.leapi.leobject import LeObject
- from lodel.plugin import Plugin
- from lodel import logger
-
- ds_cls = dict() # EmClass indexed by rw_datasource
- for cls in dyncode.dynclasses:
- ds = cls._datasource_name
- if ds not in ds_cls:
- ds_cls[ds] = [cls]
- else:
- ds_cls[ds].append(cls)
-
- for ds_name in ds_cls:
- # Fetching datasource plugin name and datasource connection
- # identifier
- try:
- plugin_name, ds_identifier = LeObject._get_ds_plugin_name(
- ds_name, False)
- except (NameError, ValueError, RuntimeError):
- raise SettingsError("Datasource configuration error")
- # Fetching datasource connection option
- con_conf=LeObject._get_ds_connection_conf(ds_identifier, plugin_name)
- # Fetching migration handler class from plugin
- plugin_module = Plugin.get(plugin_name).loader_module()
- try:
- mh_cls = plugin_module.migration_handler_class()
- except NameError as e:
- raise RuntimeError("Malformed plugin '%s'. Missing \
- migration_handler_class() function in loader file" % ds_name)
- #Instanciate the migrationhandler and start db initialisation
- if con_conf['read_only'] is True:
- raise SettingsError("Trying to instanciate a migration handler \
- with a read only datasource")
- try:
- if 'read_only' in con_conf:
- del(con_conf['read_only'])
- mh = mh_cls(**con_conf)
- except Exception as e:
- msg = "Migration failed for datasource %s(%s.%s) at migration \
- handler instanciation : %s"
- msg %= (ds_name, plugin_name, ds_identifier, e)
- raise RuntimeError(msg)
- try:
- mh.init_db(ds_cls[ds_name])
- except Exception as e:
- msg = "Migration failed for datasource %s(%s.%s) when running \
- init_db method: %s"
- msg %= (ds_name, plugin_name, ds_identifier, e)
- logger.info("Database initialisation done for %s(%s.%s)" % (
- ds_name, plugin_name, ds_identifier))
-
- def list_registered_hooks():
- import loader
- loader.start()
- from lodel.plugin.hooks import LodelHook
- hlist = LodelHook.hook_list()
- print("Registered hooks are : ")
- for name in sorted(hlist.keys()):
- print("\t- %s is registered by : " % name)
- for reg_hook in hlist[name]:
- hook, priority = reg_hook
- msg = "\t\t- {modname}.{funname} with priority : {priority}"
- msg = msg.format(
- modname = hook.__module__,
- funname = hook.__name__,
- priority = priority)
- print(msg)
- print("\n")
|