Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | |
| 3 | # Copyright 2017-present Open Networking Foundation |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
| 17 | # TO RUN |
| 18 | # source scripts/setup_venv.sh |
| 19 | # xos-migrate [-s <service-name>] [-r ~/cord] |
| 20 | # eg: xos-migrate -r ~/Sites/cord -s core -s fabric |
| 21 | |
| 22 | # TODO |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 23 | # - add support to specify a name to be given to the generated migration (--name parameter in django makemigrations) |
| 24 | # - add support to generate empty migrations (needed for data-only migrations) |
| 25 | |
| 26 | import os |
| 27 | import sys |
| 28 | import argparse |
| 29 | import yaml |
| 30 | import shutil |
| 31 | from xosgenx.generator import XOSProcessor, XOSProcessorArgs |
| 32 | from xosconfig import Config |
| 33 | from multistructlog import create_logger |
| 34 | |
Zack Williams | 5c2ea23 | 2019-01-30 15:23:01 -0700 | [diff] [blame] | 35 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 36 | def get_abs_path(dir_): |
Scott Baker | 63c27ba | 2019-03-01 16:06:15 -0800 | [diff] [blame] | 37 | """ Convert a path specified by the user, which might be relative or based on |
| 38 | home directory location, into an absolute path. |
| 39 | """ |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 40 | if os.path.isabs(dir_): |
Matteo Scandolo | ebd2605 | 2019-02-14 10:06:41 -0800 | [diff] [blame] | 41 | return os.path.realpath(dir_) |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 42 | if dir_[0] == "~" and not os.path.exists(dir_): |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 43 | dir_ = os.path.expanduser(dir_) |
| 44 | return os.path.abspath(dir_) |
Scott Baker | 63c27ba | 2019-03-01 16:06:15 -0800 | [diff] [blame] | 45 | return os.path.abspath(os.path.join(os.getcwd(), dir_)) |
| 46 | |
| 47 | |
| 48 | def get_migration_library_path(dir_): |
| 49 | """ Return a directory relative to the location of the migration library """ |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 50 | return os.path.dirname(os.path.realpath(__file__)) + "/" + dir_ |
| 51 | |
| 52 | |
| 53 | def print_banner(root): |
| 54 | log.info(r"---------------------------------------------------------------") |
| 55 | log.info(r" _ __ ") |
| 56 | log.info(r" _ ______ _____ ____ ___ (_)___ __________ _/ /____ ") |
| 57 | log.info(r" | |/_/ __ \/ ___/_____/ __ `__ \/ / __ `/ ___/ __ `/ __/ _ \ ") |
| 58 | log.info(r" _> </ /_/ (__ )_____/ / / / / / / /_/ / / / /_/ / /_/ __/ ") |
| 59 | log.info(r"/_/|_|\____/____/ /_/ /_/ /_/_/\__, /_/ \__,_/\__/\___/ ") |
| 60 | log.info(r" /____/ ") |
| 61 | log.info(r"---------------------------------------------------------------") |
| 62 | log.debug("CORD repo root", root=root) |
| 63 | log.debug("Storing logs in: %s" % os.environ["LOG_FILE"]) |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 64 | log.debug(r"---------------------------------------------------------------") |
| 65 | |
| 66 | |
| 67 | def generate_core_models(core_dir): |
| 68 | core_xproto = os.path.join(core_dir, "core.xproto") |
| 69 | |
| 70 | args = XOSProcessorArgs( |
| 71 | output=core_dir, |
| 72 | target="django.xtarget", |
| 73 | dest_extension="py", |
| 74 | write_to_file="model", |
| 75 | files=[core_xproto], |
| 76 | ) |
| 77 | XOSProcessor.process(args) |
| 78 | |
| 79 | security_args = XOSProcessorArgs( |
| 80 | output=core_dir, |
| 81 | target="django-security.xtarget", |
| 82 | dest_file="security.py", |
| 83 | write_to_file="single", |
| 84 | files=[core_xproto], |
| 85 | ) |
| 86 | |
| 87 | XOSProcessor.process(security_args) |
| 88 | |
| 89 | init_args = XOSProcessorArgs( |
| 90 | output=core_dir, |
| 91 | target="init.xtarget", |
| 92 | dest_file="__init__.py", |
| 93 | write_to_file="single", |
| 94 | files=[core_xproto], |
| 95 | ) |
| 96 | XOSProcessor.process(init_args) |
| 97 | |
| 98 | |
| 99 | def find_xproto_in_folder(path): |
| 100 | """ |
| 101 | Recursively iterate a folder tree to look for any xProto file. |
| 102 | We use this function in case that the name of the xProto is different from the name of the folder (eg: olt-service) |
| 103 | :param path: the root folder to start the search |
| 104 | :return: [string] |
| 105 | """ |
| 106 | xprotos = [] |
| 107 | for fn in os.listdir(path): |
| 108 | # skip hidden files and folders. plus other useless things |
| 109 | if fn.startswith(".") or fn == "venv-xos" or fn == "htmlcov": |
| 110 | continue |
| 111 | full_path = os.path.join(path, fn) |
| 112 | if fn.endswith(".xproto"): |
| 113 | xprotos.append(full_path) |
| 114 | elif os.path.isdir(full_path): |
| 115 | xprotos = xprotos + find_xproto_in_folder(full_path) |
| 116 | return xprotos |
| 117 | |
| 118 | |
| 119 | def find_decls_models(path): |
| 120 | """ |
| 121 | Recursively iterate a folder tree to look for any models.py file. |
| 122 | This files contain the base model for _decl generated models. |
| 123 | :param path: the root folder to start the search |
| 124 | :return: [string] |
| 125 | """ |
| 126 | decls = [] |
| 127 | for fn in os.listdir(path): |
| 128 | # skip hidden files and folders. plus other useless things |
| 129 | if fn.startswith(".") or fn == "venv-xos" or fn == "htmlcov": |
| 130 | continue |
| 131 | full_path = os.path.join(path, fn) |
| 132 | if fn == "models.py": |
| 133 | decls.append(full_path) |
| 134 | elif os.path.isdir(full_path): |
| 135 | decls = decls + find_decls_models(full_path) |
| 136 | return decls |
| 137 | |
| 138 | |
| 139 | def get_service_name_from_config(path): |
| 140 | """ |
| 141 | Given a service folder look for the config.yaml file and find the name |
| 142 | :param path: the root folder to start the search |
| 143 | :return: string |
| 144 | """ |
| 145 | config = os.path.join(path, "xos/synchronizer/config.yaml") |
| 146 | if not os.path.isfile(config): |
| 147 | raise Exception("Config file not found at: %s" % config) |
| 148 | |
| 149 | cfg_file = open(config) |
Zack Williams | 9a42f87 | 2019-02-15 17:56:04 -0700 | [diff] [blame] | 150 | cfg = yaml.safe_load(cfg_file) |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 151 | return cfg["name"] |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 152 | |
| 153 | |
| 154 | def generate_service_models(service_dir, service_dest_dir, service_name): |
| 155 | """ |
| 156 | Generate the django code starting from xProto for a given service. |
| 157 | :param service_dir: string (path to the folder) |
| 158 | :param service_name: string (name of the service) |
| 159 | :return: void |
| 160 | """ |
| 161 | xprotos = find_xproto_in_folder(service_dir) |
| 162 | decls = find_decls_models(service_dir) |
| 163 | log.debug("Generating models for %s from files %s" % (service_name, ", ".join(xprotos))) |
| 164 | out_dir = os.path.join(service_dest_dir, service_name) |
| 165 | if not os.path.isdir(out_dir): |
| 166 | os.mkdir(out_dir) |
| 167 | |
| 168 | args = XOSProcessorArgs( |
| 169 | output=out_dir, |
| 170 | files=xprotos, |
| 171 | target="service.xtarget", |
| 172 | write_to_file="target", |
| 173 | ) |
| 174 | XOSProcessor.process(args) |
| 175 | |
| 176 | security_args = XOSProcessorArgs( |
| 177 | output=out_dir, |
| 178 | target="django-security.xtarget", |
| 179 | dest_file="security.py", |
| 180 | write_to_file="single", |
| 181 | files=xprotos, |
| 182 | ) |
| 183 | |
| 184 | XOSProcessor.process(security_args) |
| 185 | |
| 186 | init_py_filename = os.path.join(out_dir, "__init__.py") |
| 187 | if not os.path.exists(init_py_filename): |
| 188 | open(init_py_filename, "w").write("# created by dynamicbuild") |
| 189 | |
| 190 | # copy over models.py files from the service |
| 191 | if len(decls) > 0: |
| 192 | for file in decls: |
| 193 | fn = os.path.basename(file) |
| 194 | src_fn = file |
| 195 | dest_fn = os.path.join(out_dir, fn) |
| 196 | log.debug("Copying models.py from %s to %s" % (src_fn, dest_fn)) |
| 197 | shutil.copyfile(src_fn, dest_fn) |
| 198 | |
| 199 | # copy existing migrations from the service, otherwise they won't be incremental |
| 200 | src_dir = os.path.join(service_dir, "xos", "synchronizer", "migrations") |
| 201 | if os.path.isdir(src_dir): |
| 202 | dest_dir = os.path.join(out_dir, "migrations") |
| 203 | if os.path.isdir(dest_dir): |
| 204 | shutil.rmtree(dest_dir) # empty the folder, we'll copy everything again |
| 205 | shutil.copytree(src_dir, dest_dir) |
| 206 | |
| 207 | |
| 208 | def copy_service_migrations(service_dir, service_dest_dir, service_name): |
| 209 | """ |
| 210 | Once the migrations are generated, copy them in the correct location |
| 211 | :param service_dir: string (path to the folder) |
| 212 | :param service_name: string (name of the service) |
| 213 | :return: void |
| 214 | """ |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 215 | log.debug("Copying %s migrations to %s" % (service_name, service_dir)) |
| 216 | migration_dir = os.path.join(service_dest_dir, service_name, "migrations") |
| 217 | dest_dir = os.path.join(service_dir, "xos", "synchronizer", "migrations") |
| 218 | if os.path.isdir(dest_dir): |
| 219 | shutil.rmtree(dest_dir) # empty the folder, we'll copy everything again |
| 220 | shutil.copytree(migration_dir, dest_dir) |
Matteo Scandolo | ebd2605 | 2019-02-14 10:06:41 -0800 | [diff] [blame] | 221 | # clean after the tool, generated migrations has been moved in the service repo |
| 222 | shutil.rmtree(get_abs_path(os.path.join(migration_dir, "../"))) |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 223 | |
| 224 | |
| 225 | def monkey_patch_migration_template(): |
| 226 | import django |
| 227 | django.setup() |
| 228 | |
| 229 | import django.db.migrations.writer as dj |
| 230 | dj.MIGRATION_TEMPLATE = """\ |
| 231 | # Copyright 2017-present Open Networking Foundation |
| 232 | # |
| 233 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 234 | # you may not use this file except in compliance with the License. |
| 235 | # You may obtain a copy of the License at |
| 236 | # |
| 237 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 238 | # |
| 239 | # Unless required by applicable law or agreed to in writing, software |
| 240 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 241 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 242 | # See the License for the specific language governing permissions and |
| 243 | # limitations under the License. |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 244 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 245 | # -*- coding: utf-8 -*- |
| 246 | # Generated by Django %(version)s on %(timestamp)s |
| 247 | from __future__ import unicode_literals |
| 248 | |
| 249 | %(imports)s |
| 250 | |
| 251 | class Migration(migrations.Migration): |
| 252 | %(replaces_str)s%(initial_str)s |
| 253 | dependencies = [ |
| 254 | %(dependencies)s\ |
| 255 | ] |
| 256 | |
| 257 | operations = [ |
| 258 | %(operations)s\ |
| 259 | ] |
| 260 | """ |
| 261 | |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 262 | |
| 263 | def configure_logging(verbose): |
| 264 | global log |
| 265 | # INITIALIZING LOGGER |
| 266 | Config.init() |
| 267 | |
| 268 | cfg = Config().get("logging") |
| 269 | if verbose: |
| 270 | cfg["handlers"]["console"]["level"] = "DEBUG" |
| 271 | |
| 272 | log = create_logger(cfg) |
| 273 | |
| 274 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 275 | # SETTING ENV |
Scott Baker | 63c27ba | 2019-03-01 16:06:15 -0800 | [diff] [blame] | 276 | os.environ["LOG_FILE"] = get_migration_library_path("django.log") |
| 277 | os.environ["XOS_CONFIG_SCHEMA"] = get_migration_library_path("migration_cfg_schema.yaml") |
| 278 | os.environ["XOS_CONFIG_FILE"] = get_migration_library_path("migration_cfg.yaml") |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 279 | os.environ["MIGRATIONS"] = "true" |
| 280 | # this is populated in case we generate migrations for services and it's used in settings.py |
| 281 | os.environ["INSTALLED_APPS"] = "" |
| 282 | |
| 283 | # PARAMS |
| 284 | parser = argparse.ArgumentParser(description="XOS Migrations") |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 285 | required = parser.add_argument_group("required arguments") |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 286 | |
| 287 | required.add_argument( |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 288 | "-s", |
| 289 | "--service", |
| 290 | action="append", |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 291 | required=True, |
| 292 | dest="service_names", |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 293 | help="The name of the folder containing the service in cord/orchestration/xos_services" |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 294 | ) |
| 295 | |
| 296 | parser.add_argument( |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 297 | "-r", |
| 298 | "--repo", |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 299 | default=get_abs_path("~/cord"), |
| 300 | dest="repo_root", |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 301 | help="The location of the folder containing the CORD repo root (default to ~/cord)" |
| 302 | ) |
| 303 | |
| 304 | parser.add_argument( |
| 305 | "--check", |
| 306 | default=False, |
| 307 | action="store_true", |
| 308 | dest="check", |
| 309 | help="Check if the migrations are generated for a given service. Does not apply any change." |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 310 | ) |
| 311 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 312 | parser.add_argument( |
| 313 | "-v", |
| 314 | "--verbose", |
| 315 | help="increase log verbosity", |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 316 | dest="verbose", |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 317 | action="store_true" |
| 318 | ) |
| 319 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 320 | |
| 321 | def run(): |
Matteo Scandolo | 43af45b | 2019-02-21 15:57:02 -0800 | [diff] [blame] | 322 | # cleaning up from possible incorrect states |
| 323 | if "INSTALLED_APPS" in os.environ: |
| 324 | del os.environ["INSTALLED_APPS"] |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 325 | |
| 326 | args = parser.parse_args() |
| 327 | |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 328 | configure_logging(args.verbose) |
| 329 | |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 330 | print_banner(args.repo_root) |
| 331 | |
| 332 | # find absolute path to the code |
| 333 | xos_path = get_abs_path(os.path.join(args.repo_root, "orchestration/xos/xos/")) |
| 334 | core_dir = get_abs_path(os.path.join(xos_path, "core/models/")) |
| 335 | service_base_dir = get_abs_path(os.path.join(xos_path, "../../xos_services/")) |
| 336 | service_dest_dir = get_abs_path(os.path.join(xos_path, "services/")) |
| 337 | |
| 338 | # we need to append the xos folder to sys.path |
| 339 | original_sys_path = sys.path |
| 340 | sys.path.append(xos_path) |
| 341 | |
| 342 | log.info("Services: %s" % ", ".join(args.service_names)) |
| 343 | |
Matteo Scandolo | 6e2bd82 | 2019-02-20 17:22:39 -0800 | [diff] [blame] | 344 | django_cli_args = ['xos-migrate.py', "makemigrations"] |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 345 | |
| 346 | # generate the code for each service and create a list of parameters to pass to django |
| 347 | app_list = [] |
| 348 | for service in args.service_names: |
Matteo Scandolo | 43af45b | 2019-02-21 15:57:02 -0800 | [diff] [blame] | 349 | # NOTE we need core models to be there as all the services depend on them |
| 350 | generate_core_models(core_dir) |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 351 | if service == "core": |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 352 | django_cli_args.append("core") |
| 353 | else: |
| 354 | service_dir = os.path.join(service_base_dir, service) |
| 355 | service_name = get_service_name_from_config(service_dir) |
| 356 | generate_service_models(service_dir, service_dest_dir, service_name) |
| 357 | app_list.append("services.%s" % service_name) |
| 358 | |
| 359 | django_cli_args.append(service_name) |
| 360 | |
Matteo Scandolo | 43af45b | 2019-02-21 15:57:02 -0800 | [diff] [blame] | 361 | if len(app_list) > 0: |
| 362 | os.environ["INSTALLED_APPS"] = ",".join(app_list) |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 363 | |
| 364 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "xos.settings") |
| 365 | |
| 366 | monkey_patch_migration_template() |
| 367 | |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 368 | if args.check: |
| 369 | django_cli_args.append("--check") |
| 370 | django_cli_args.append("--dry-run") |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 371 | |
Matteo Scandolo | 6e2bd82 | 2019-02-20 17:22:39 -0800 | [diff] [blame] | 372 | from django.core.management import execute_from_command_line |
| 373 | |
| 374 | try: |
| 375 | log.debug("Django CLI Args", args=django_cli_args) |
| 376 | execute_from_command_line(django_cli_args) |
| 377 | returncode = 0 |
| 378 | except SystemExit as e: |
| 379 | returncode = e.message |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 380 | |
| 381 | if returncode != 0: |
| 382 | if args.check: |
| 383 | log.error("Migrations are not up to date with the service changes!") |
| 384 | else: |
Matteo Scandolo | 6e2bd82 | 2019-02-20 17:22:39 -0800 | [diff] [blame] | 385 | log.error("An error occurred") |
Matteo Scandolo | 1cda435 | 2019-02-19 16:02:42 -0800 | [diff] [blame] | 386 | sys.exit(returncode) |
Matteo Scandolo | 57fdb4b | 2019-02-06 18:27:56 -0800 | [diff] [blame] | 387 | |
| 388 | # copying migrations back to the service |
| 389 | for service in args.service_names: |
| 390 | if service == "core": |
| 391 | # we don't need to copy migrations for the core |
| 392 | continue |
| 393 | else: |
| 394 | service_dir = os.path.join(service_base_dir, service) |
| 395 | service_name = get_service_name_from_config(service_dir) |
| 396 | copy_service_migrations(service_dir, service_dest_dir, service_name) |
| 397 | |
| 398 | # restore orginal sys.path |
| 399 | sys.path = original_sys_path |