10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-27 15:42:30 +02:00
quantum_package/scripts/compilation/create_ninja_build.py

648 lines
18 KiB
Python
Raw Normal View History

2015-05-18 10:09:45 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
2015-05-26 16:08:52 +02:00
import sys
2015-05-27 11:02:13 +02:00
import glob
2015-05-18 10:09:45 +02:00
from os.path import join
qpackage_root = os.environ['QPACKAGE_ROOT']
qpackage_root_src = join(qpackage_root, 'src')
qpackage_root_ocaml = join(qpackage_root, 'ocaml')
qpackage_root_ezfio = join(qpackage_root, 'EZFIO')
ezfio_lib = join(qpackage_root_ezfio, "lib", "libezfio.a")
from collections import namedtuple
Path = namedtuple('Path', ['abs', 'rel'])
EZ_config_path = namedtuple('EZ_config', ['path_in_module', 'path_in_ezfio'])
2015-05-27 11:02:13 +02:00
EZ_handler = namedtuple('EZ_handler', ['ez_module', 'ez_cfg',
'ez_interface', 'ez_config',
'ez_default', 'ez_ocaml'])
try:
2015-05-27 11:02:13 +02:00
from module_handler import module_genealogy, file_dependancy
from cache import cache
2015-05-26 16:08:52 +02:00
from read_compilation_cfg import get_compilation_option
except ImportError:
print "source .quantum_package.rc"
2015-05-26 16:08:52 +02:00
sys.exit(1)
2015-05-18 10:09:45 +02:00
# _
# |_ ._ _. ._ o _. |_ | _ _
# |_ | | \/ \/ (_| | | (_| |_) | (/_ _>
def ninja_create_env_variable(pwd_config_file):
l_string = []
for flag in ["FC", "FCFLAGS", "IRPF90", "IRPF90_FLAGS"]:
str_ = "{0} = {1}".format(flag, get_compilation_option(pwd_config_file, flag))
l_string.append(str_)
lib_lapack = get_compilation_option(pwd_config_file, "LAPACK_LIB")
lib_ezfio = join(qpackage_root_ezfio, "lib", "libezfio_irp.a")
l_string.append("{0} = {1} {2}".format("LIB", lib_lapack, lib_ezfio))
l_string.append("")
return l_string
2015-05-18 10:09:45 +02:00
# _ __ _ ___ _ _
# |_ / |_ | / \ _ _|_ _
# |_ /_ | _|_ \_/ o (_ | (_|
# _|
def get_l_module_with_ezfio_cfg():
2015-05-21 11:30:15 +02:00
from os import listdir
from os.path import isfile, join
qp_src = qpackage_root_src
return [join(qp_src, m) for m in listdir(qp_src) if isfile(join(qp_src, m, "EZFIO.cfg")) ]
def get_l_ezfio_config():
"""In $QPACKAGE_ROOT/src/module
In EZFIO/config/
namedtuple('EZ_config', ['path_in_module', 'path_in_ezfio'])"""
2015-05-21 11:30:15 +02:00
l = []
2015-05-18 10:09:45 +02:00
cmd = "{0}/*/*.ezfio_config".format(qpackage_root_src)
for path_in_module in glob.glob(cmd):
name_lower = os.path.split(path_in_module)[1].lower()
path_in_ezfio = join(qpackage_root_ezfio, "config", name_lower)
l.append(EZ_config_path(path_in_module, path_in_ezfio))
2015-05-18 10:09:45 +02:00
return l
2015-05-18 10:09:45 +02:00
@cache
def get_l_irp_for_module(path_module_abs):
dump = []
for file in os.listdir(path_module_abs):
if file.endswith(".irp.f"):
dump.append(join(path_module_abs, file))
if file == "EZFIO.cfg":
dump.append(join(path_module_abs, "ezfio_interface.irp.f"))
return dump
2015-05-18 10:09:45 +02:00
def ninja_ezfio_cfg_rule():
# Rule
l_string = ["rule build_ezfio_interface"]
l_string += [" command = ei_handler.py --path_module $sub_module"]
2015-05-21 11:30:15 +02:00
l_string += [""]
2015-05-20 16:01:41 +02:00
2015-05-21 11:30:15 +02:00
return l_string
def ninja_ezfio_config_rule():
# Rule
l_string = ["rule build_ezfio_config"]
l_string += [" command = cp $in $out"]
l_string += [""]
return l_string
2015-05-20 16:01:41 +02:00
def get_children_of_ezfio_cfg(l_module_with_ezfio_cfg):
2015-05-21 11:30:15 +02:00
# Build
import re
p = re.compile(ur'interface:\s+input')
config_folder = join(qpackage_root_ezfio, "config")
default_folder = join(qpackage_root, "data", "ezfio_defaults")
l_util = dict()
2015-05-21 11:30:15 +02:00
for m in l_module_with_ezfio_cfg:
2015-05-18 10:09:45 +02:00
name_module = os.path.split(m)[1]
name_module_lower = name_module.lower()
2015-05-18 10:09:45 +02:00
rel = name_module
abs_ = m
ez_module = Path(abs_, rel)
2015-05-18 10:09:45 +02:00
rel = "EZFIO.cfg"
abs_ = join(m, "EZFIO.cfg")
ez_cfg = Path(abs_, rel)
rel = "ezfio_interface.irp.f"
abs_ = join(m, rel)
ez_interface = Path(abs_, rel)
rel = "{0}.ezfio_interface_config".format(name_module_lower)
abs_ = join(config_folder, rel)
ez_config = Path(abs_, rel)
with open(ez_cfg.abs, 'r') as file_:
if p.search(file_.read()):
rel = "{0}.ezfio_interface_default".format(name_module_lower)
abs_ = join(default_folder, rel)
ez_default = Path(abs_, rel)
rel = "Input_{0}.ml".format(name_module_lower)
abs_ = join(qpackage_root_ocaml, rel)
ez_ocaml = Path(abs_, rel)
else:
ez_default = None
ez_ocaml = None
l_util[ez_module.rel] = EZ_handler(ez_module,
ez_cfg,
ez_interface,
ez_config,
ez_default, ez_ocaml)
return l_util
def ninja_ezfio_cfg_build(l_util):
2015-05-18 10:09:45 +02:00
2015-05-21 11:30:15 +02:00
l_string = []
for m in l_util.itervalues():
try:
str_ = "build {1} {2} {3} {4}: build_ezfio_interface {0}"
l_string += [str_.format(m.ez_cfg.abs,
m.ez_interface.abs,
m.ez_config.abs,
m.ez_default.abs,
m.ez_ocaml.abs)]
except AttributeError:
str_ = "build {1} {2}: build_ezfio_interface {0}"
l_string += [str_.format(m.ez_cfg.abs,
m.ez_interface.abs,
m.ez_config.abs)]
finally:
l_string += [" sub_module = {0}".format(m.ez_module.abs)]
l_string += [""]
2015-05-21 11:30:15 +02:00
return l_string
2015-05-21 11:30:15 +02:00
def ninja_ezfio_config_build(l_ezfio_config):
# Build
l_string = []
2015-05-21 11:30:15 +02:00
for m in l_ezfio_config:
file_source = m.path_in_module
file_create = m.path_in_ezfio
2015-05-21 11:30:15 +02:00
l_string += ["build {0}: build_ezfio_config {1}".format(file_create, file_source)]
l_string += [""]
return l_string
2015-05-21 11:30:15 +02:00
def ninja_ezfio_rule():
2015-05-21 11:30:15 +02:00
# Rule
l_string = ["rule build_ezfio"]
2015-05-26 16:08:52 +02:00
l_flag = []
for flag in ["FC", "FCFLAGS", "IRPF90"]:
str_ = "export {0}='${0}'".format(flag)
2015-05-26 16:08:52 +02:00
l_flag.append(str_)
l_cmd = ["cd {0}".format(qpackage_root_ezfio)] + l_flag + ["make", "make Python"]
l_string += [" command = {0}".format(" ; ".join(l_cmd))]
2015-05-21 11:30:15 +02:00
l_string += [""]
2015-05-21 11:30:15 +02:00
return l_string
def ninja_ezfio_build(l_ezfio_config, l_util):
2015-05-21 11:30:15 +02:00
# Rule
ezfio_ocam_lib = join(qpackage_root, "EZFIO", "Ocaml", "ezfio.ml")
l = [i.path_in_ezfio for i in l_ezfio_config]
str_ = " ".join(l + [i.ez_config.abs for i in l_util.itervalues()])
2015-05-21 11:30:15 +02:00
l_string = ["build {0} {1}: build_ezfio {2}".format(ezfio_lib,
ezfio_ocam_lib,
str_)]
2015-05-21 11:30:15 +02:00
l_string += [""]
return l_string
2015-05-18 10:09:45 +02:00
# __
# (_ ._ _ | o ._ |
# __) \/ | | | | | | | |<
# /
def get_source_destination(l_all_needed_molule, path_module):
l_source = [m.abs for m in l_all_needed_molule]
l_destination = [join(qpackage_root_src, path_module.rel, m.rel)
for m in l_all_needed_molule]
2015-05-18 10:09:45 +02:00
return l_source, l_destination
def ninja_symlink_rule():
# Rule
l_string = ["rule build_symlink"]
l_string += [" command = ln -sf $in $out"]
2015-05-18 10:09:45 +02:00
l_string += [""]
return l_string
def ninja_symlink_build(l_source, l_destination, path_module):
2015-05-18 10:09:45 +02:00
# Rule
if not l_destination:
return []
2015-05-18 10:09:45 +02:00
l_string = []
for source, destination in zip(l_source, l_destination):
l_string += ["build {0}: build_symlink {1}".format(destination,
source)]
2015-05-18 10:09:45 +02:00
l_string += [""]
out = "l_symlink_{0}".format(path_module.rel)
dep = " ".join(l_destination)
l_string += ["build {0} : phony {1}".format(out, dep)]
l_string += [""]
2015-05-18 10:09:45 +02:00
return l_string
# _ _ _
# o ._ ._ _|_ (_| / \ ._ _ _. | _
# | | |_) | | \_/ o | | | (_| |< (/_
# |
def dict_needed_modules(l_module_to_compile):
d = dict()
for module_rel in l_module_to_compile:
module_abs = join(qpackage_root_src, module_rel)
2015-05-27 11:02:13 +02:00
d[Path(module_abs, module_rel)] = [Path(join(qpackage_root_src, m_children), m_children) for m_children in module_genealogy(module_rel)]
return d
def get_irp_dependancy(d_info_module):
l_all_module = [m for m in d_info_module.keys()]
for l_m_children in d_info_module.values():
for m_children in l_m_children:
if m_children not in l_all_module:
l_all_module.append(m_children)
d_irp = dict()
for module in l_all_module:
2015-05-26 13:35:34 +02:00
d_irp[module] = get_l_irp_for_module(module.abs)
return d_irp
def ninja_irpf90_make_rule():
2015-05-18 10:09:45 +02:00
# Rule
2015-05-21 11:30:15 +02:00
l_string = ["pool irp_pool"]
2015-05-20 16:01:41 +02:00
l_string += [" depth = 1"]
l_string += [""]
l_string += ["rule build_irpf90.make"]
2015-05-18 10:09:45 +02:00
l_flag = []
for flag in ["FC", "FCFLAGS", "LIB", "SRC", "OBJ"]:
str_ = "export {0}='${0}'".format(flag)
l_flag.append(str_)
2015-05-18 10:09:45 +02:00
l_cmd = ["cd $module"] + l_flag + ["irpf90 $include_dir $IRPF90_FLAGS"]
2015-05-27 11:02:13 +02:00
l_string += [" command = {0}".format(" ; ".join(l_cmd))]
l_string += [" pool = irp_pool"]
l_string += [""]
return l_string
def ninja_irpf90_make_build(l_all_needed_molule,
2015-05-26 13:35:34 +02:00
path_module,
d_irp):
2015-05-18 10:09:45 +02:00
l_creation = [join(path_module.abs,i) for i in ["irpf90.make",
"irpf90_entities",
"tags"]]
2015-05-27 17:49:31 +02:00
str_creation = " ".join(l_creation)
2015-05-26 13:35:34 +02:00
l_irp_need = []
for module in [path_module] + l_all_needed_molule:
l_irp_need.extend(d_irp[module])
str_l_irp_need = " ".join(l_irp_need)
if l_all_needed_molule:
str_l_destination = "l_symlink_{0}".format(path_module.rel)
str_depend = "{0} {1}".format(str_l_irp_need,
2015-05-27 11:02:13 +02:00
str_l_destination)
else:
str_depend = "{0}".format(str_l_irp_need)
2015-05-18 10:09:45 +02:00
# Build
2015-05-27 17:49:31 +02:00
l_string = ["build {0}: build_irpf90.make {1}".format(str_creation,
2015-05-18 10:09:45 +02:00
str_depend)]
2015-05-27 11:02:13 +02:00
2015-05-18 10:09:45 +02:00
l_string += [" module = {0}".format(path_module.abs)]
2015-05-27 11:02:13 +02:00
# Env
l_src, l_obj = file_dependancy(path_module.rel)
str_src = " ".join(l_src)
str_obj = " ".join(l_obj)
l_string += [" SRC = {0}".format(str_src)]
l_string += [" OBJ = {0}".format(str_obj)]
2015-05-27 11:02:13 +02:00
2015-05-18 10:09:45 +02:00
# Option
str_include_dir = " ".join(["-I {0}".format(m.rel) for m in l_all_needed_molule])
2015-05-18 10:09:45 +02:00
l_string += [" include_dir = {0}".format(str_include_dir)]
l_string += [""]
return l_string
2015-05-26 17:40:39 +02:00
def ninja_readme_rule():
l_string = ["rule build_readme"]
l_string += [" command = cd $module ; update_README.py"]
2015-05-27 11:02:13 +02:00
# Trick to not remove the update_README when cleaning
l_string += [" generator = 1"]
2015-05-26 17:40:39 +02:00
l_string += [""]
return l_string
def ninja_readme_build(path_module):
path_irpf90_make = join(path_module.abs, "irpf90.make")
path_readme = join(path_module.abs, "README.rst")
l_string = ["build {0}: build_readme {1}".format(path_readme,
path_irpf90_make)]
l_string += [" module = {0}".format(path_module.abs)]
l_string += [""]
return l_string
# _
# / \ _ _. ._ _ |
# \_/ (_ (_| | | | |
def get_qp_file():
qp_edit = join(qpackage_root_ocaml, "qp_edit.ml")
l = glob.glob(join(qpackage_root_ocaml, "qp_*.ml"))
if qp_edit not in l:
l.append(qp_edit)
return l
def get_ml_file(l_util, l_qp):
"""
Get all the ml file
Remove the binary
"""
ezfio_ml = join(qpackage_root_ocaml, "ezfio.ml")
l_ml_auto_generated = [i.ez_ocaml.abs for i in l_util.itervalues() if i.ez_ocaml] + [ezfio_ml]
# .ml present
l_ml_present = glob.glob("{0}/*.ml".format(qpackage_root_ocaml))
l_ml = list(set(l_ml_present + l_ml_auto_generated))
# Return all the .ml who are not ocaml_binary
return [ml for ml in l_ml if ml not in l_qp]
def ninja_ocaml_rule():
# Rule
2015-05-27 11:02:13 +02:00
cmd = " command = cd {0} ; make -j 1 $native && touch $native && ln -sf $native $binary"
l_string = ["rule build_ocaml"]
l_string += [cmd.format(qpackage_root_ocaml)]
l_string += [""]
l_string += ["rule cp_input.ml"]
l_string += [" command = cp $in $out"]
l_string += [""]
l_string += ["rule build_qp_edit.ml"]
l_string += [" command = ei_handler.py ocaml_global"]
l_string += [""]
return l_string
def ninja_ml_build(l_util):
# Build rule for ezfio.ml
source = join(qpackage_root_ezfio, "Ocaml", "ezfio.ml")
ezfio_ml = join(qpackage_root_ocaml, "ezfio.ml")
l_string = ["build {0}: cp_input.ml {1}".format(ezfio_ml, source)]
l_string += [""]
# Build rule for for qp_edit and Input_auto_generated
ocaml_ml = [join(qpackage_root_ocaml, i) for i in ["qp_edit.ml",
"Input_auto_generated.ml"]]
ocaml_ml_str = " ".join(ocaml_ml)
# Depend de tout qp_edti_templates
qp_edit_template = join(qpackage_root, "scripts", "ezfio_interface", "qp_edit_template")
# Et de tout les .ml
l_all_ml = [i.ez_ocaml.abs for i in l_util.itervalues() if i.ez_ocaml]
l_depend = l_all_ml + [qp_edit_template]
# Et des ezfio.ml
depend_str = " ".join(l_depend)
2015-05-26 13:35:34 +02:00
l_string += ["build {0}: build_qp_edit.ml {1}".format(ocaml_ml_str, depend_str)]
return l_string
def ninja_ocaml_build(l_bin_ml, l_ml):
# Rule
2015-05-26 13:35:34 +02:00
ezfio_ml = join(qpackage_root_ocaml, "ezfio.ml")
2015-05-26 16:08:52 +02:00
# exc = join(qpackage_root, "data", "executables")
2015-05-26 16:08:52 +02:00
str_depend = " ".join(l_ml + l_bin_ml + [ezfio_ml])
2015-05-26 13:35:34 +02:00
l_string = [""]
for bin_ in [i.replace(".ml", ".native") for i in l_bin_ml]:
binary_name = os.path.split(bin_)[1]
l_string += ["build {0}: build_ocaml {1} ".format(bin_, str_depend)]
2015-05-26 16:08:52 +02:00
l_string += [" native = {0}".format(binary_name)]
l_string += [" binary = {0}".format(binary_name.replace(".native", ""))]
l_string += [""]
return l_string
2015-05-18 10:09:45 +02:00
# _
# |_) o ._ _. ._
# |_) | | | (_| | \/
# /
def get_program(path_module):
import subprocess
try:
cmd = 'grep -l "program" {0}/*.irp.f'.format(path_module.abs)
process = subprocess.Popen([cmd],shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
stdout, stderr = process.communicate()
except OSError:
2015-05-18 10:09:45 +02:00
return []
else:
if "No such file or directory" not in stdout:
return [os.path.basename(f).split(".")[0] for f in stdout.split()]
else:
return []
2015-05-18 10:09:45 +02:00
def ninja_binary_rule():
2015-05-27 11:02:13 +02:00
l_cmd = ["cd $module", "make -f irpf90.make"]
2015-05-27 11:02:13 +02:00
2015-05-18 10:09:45 +02:00
l_string = ["rule build_binary"]
2015-05-27 11:02:13 +02:00
l_string += [" command = {0}".format(" ; ".join(l_cmd))]
2015-05-18 10:09:45 +02:00
l_string += [""]
return l_string
2015-05-27 11:02:13 +02:00
def ninja_binary_build(l_bin, path_module, l_children):
if not l_bin:
return []
2015-05-18 10:09:45 +02:00
# Build
irpf90mk_path = join(path_module.abs, "irpf90.make")
2015-05-18 10:09:45 +02:00
l_abs_bin = [join(path_module.abs, binary) for binary in l_bin]
str_l_abs_bin = " ".join(l_abs_bin)
2015-05-18 10:09:45 +02:00
l_string = ["build {0}: build_binary {1} {2}".format(str_l_abs_bin,
ezfio_lib,
irpf90mk_path)]
2015-05-18 10:09:45 +02:00
l_string += [" module = {0}".format(path_module.abs)]
2015-05-18 10:09:45 +02:00
l_string += ["build build_all_binary_{0}: phony {1}".format(path_module.rel,
str_l_abs_bin)]
2015-05-20 16:01:41 +02:00
l_string += [""]
2015-05-18 10:09:45 +02:00
return l_string
2015-05-20 16:01:41 +02:00
def ninja_build_executable_list(l_module):
2015-05-20 16:01:41 +02:00
l_build_name = ["build_all_binary_{0}".format(m) for m in l_module]
str_l_build_name = " ".join(l_build_name)
exc = join(qpackage_root, "data", "executables")
l_string = ["rule build_executables_list"]
l_string += [" command = create_executables_list.sh"]
l_string += [""]
l_string += ["build {0}: build_executables_list {1}".format(exc, str_l_build_name)]
2015-05-20 16:01:41 +02:00
l_string += [""]
return l_string
2015-05-18 10:09:45 +02:00
if __name__ == "__main__":
2015-05-27 11:02:13 +02:00
# _
# |_ ._ _. ._ o _. |_ | _ _
# |_ | | \/ \/ (_| | | (_| |_) | (/_ _>
#
2015-05-27 11:02:13 +02:00
pwd_config_file = sys.argv[1]
l_string = ninja_create_env_variable(pwd_config_file)
2015-05-27 11:02:13 +02:00
# _
# |_) | _
# | \ |_| | (/_
#
l_string += ninja_ezfio_cfg_rule()
2015-05-18 10:09:45 +02:00
l_string += ninja_symlink_rule()
l_string += ninja_irpf90_make_rule()
2015-05-26 17:40:39 +02:00
l_string += ninja_readme_rule()
l_string += ninja_binary_rule()
2015-05-21 11:30:15 +02:00
l_string += ninja_ezfio_config_rule()
l_string += ninja_ezfio_rule()
2015-05-18 10:09:45 +02:00
2015-05-26 17:24:07 +02:00
# l_string += ninja_ocaml_rule()
2015-05-18 10:09:45 +02:00
# _
# |_) o | _| _ _ ._ _ ._ _. |
# |_) |_| | | (_| (_| (/_ | | (/_ | (_| |
# _|
l_module_with_ezfio_cfg = get_l_module_with_ezfio_cfg()
l_util = get_children_of_ezfio_cfg(l_module_with_ezfio_cfg)
l_ezfio_config = get_l_ezfio_config()
2015-05-18 10:09:45 +02:00
l_string += ninja_ezfio_cfg_build(l_util)
l_string += ninja_ezfio_config_build(l_ezfio_config)
l_string += ninja_ezfio_build(l_ezfio_config, l_util)
2015-05-18 10:09:45 +02:00
2015-05-26 17:40:39 +02:00
# l_qp = get_qp_file()
# l_ml = get_ml_file(l_util, l_qp)
2015-05-26 16:08:52 +02:00
# l_string += ninja_ml_build(l_util)
# l_string += ninja_ocaml_build(l_qp, l_ml)
2015-05-18 10:09:45 +02:00
# _ _
# |_) o | _| _|_ _ ._ ._ _ _ _| | _
# |_) |_| | | (_| | (_) | | | | (_) (_| |_| | (/_
#
#
with open(join(qpackage_root_src, "NEEDED_MODULES"), "r") as f:
l_module_to_compile = f.read().split()
2015-05-18 10:09:45 +02:00
d_info_module = dict_needed_modules(l_module_to_compile)
2015-05-18 10:09:45 +02:00
d_irp = get_irp_dependancy(d_info_module)
2015-05-20 16:01:41 +02:00
l_module_with_binary = []
for module, l_children in d_info_module.iteritems():
2015-05-18 10:09:45 +02:00
l_source, l_destination = get_source_destination(l_children, module)
2015-05-18 10:09:45 +02:00
# irpf90.make
l_string += ninja_symlink_build(l_source, l_destination, module)
2015-05-21 11:30:15 +02:00
2015-05-26 13:35:34 +02:00
l_string += ninja_irpf90_make_build(l_children, module, d_irp)
2015-05-26 17:40:39 +02:00
l_string += ninja_readme_build(module)
2015-05-21 11:30:15 +02:00
# ninja_binary
l_binary = get_program(module)
2015-05-27 11:02:13 +02:00
l_string += ninja_binary_build(l_binary, module, l_children)
if l_binary:
l_module_with_binary.append(module.rel)
2015-05-20 16:01:41 +02:00
l_string += ninja_build_executable_list(l_module_with_binary)
2015-05-21 11:30:15 +02:00
2015-05-18 10:09:45 +02:00
print "\n".join(l_string)