2015-03-24 19:41:56 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Take a path in argv
|
|
|
|
Check if EZFIO.cfg exists.
|
|
|
|
EZFIO.cfg are in MODULE directories.
|
|
|
|
create : ezfio_interface.irp.f
|
|
|
|
folder_ezfio_inteface_config
|
2015-03-26 21:08:55 +01:00
|
|
|
Ezfio_dir : is equal to MODULE.lower!
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 12:02:58 +01:00
|
|
|
Format specification :
|
|
|
|
[provider_name] : the name of the provider in irp.f90
|
|
|
|
- doc : Is the doc
|
|
|
|
- Type : Is a fancy_type support by the ocaml
|
|
|
|
- ezfio_name : Will be the name of the file for the ezfio
|
|
|
|
(optional by default is the name of the provider)
|
|
|
|
- interface : The provider is a imput or a output
|
2015-03-27 16:56:35 +01:00
|
|
|
- default : The default value if interface == input:
|
2015-03-26 12:02:58 +01:00
|
|
|
- size : Is the string read in ezfio.cgf who containt the size information
|
|
|
|
(like 1 or =sum(ao_num) or (ao_num,3) )
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
Example EZFIO.cfg:
|
|
|
|
```
|
|
|
|
[thresh_SCF]
|
|
|
|
doc: Threshold on the convergence of the Hartree Fock energy
|
|
|
|
type: Threshold
|
|
|
|
default: 1.e-10
|
2015-03-27 16:56:35 +01:00
|
|
|
interface: input
|
2015-03-30 14:53:13 +02:00
|
|
|
size: 1
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-30 14:53:13 +02:00
|
|
|
[energy]
|
|
|
|
type: double precision
|
|
|
|
doc: Calculated HF energy
|
2015-03-27 16:56:35 +01:00
|
|
|
interface: output
|
2015-03-24 19:41:56 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
import ConfigParser
|
|
|
|
|
|
|
|
from collections import defaultdict
|
|
|
|
from collections import namedtuple
|
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
Type = namedtuple('Type', 'fancy ocaml fortran')
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
|
2015-03-26 14:28:32 +01:00
|
|
|
def is_bool(str_):
|
2015-03-26 14:50:19 +01:00
|
|
|
"""
|
|
|
|
Take a string, if is a bool return the convert into
|
|
|
|
fortran and ocaml one.
|
|
|
|
"""
|
2015-03-26 14:28:32 +01:00
|
|
|
if str_.lower() in ['true', '.true.']:
|
2015-03-27 17:25:57 +01:00
|
|
|
return Type(None, "True", ".True.")
|
2015-03-26 14:28:32 +01:00
|
|
|
elif str_.lower() in ['false', '.False.']:
|
2015-03-27 17:25:57 +01:00
|
|
|
return Type(None, "False", ".False")
|
2015-03-26 14:28:32 +01:00
|
|
|
else:
|
|
|
|
raise TypeError
|
|
|
|
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
def get_type_dict():
|
|
|
|
"""
|
|
|
|
This function makes the correspondance between the type of value read in
|
|
|
|
ezfio.cfg into the f90 and Ocam Type
|
|
|
|
return fancy_type[fancy_type] = namedtuple('Type', 'ocaml fortran')
|
|
|
|
For example fancy_type['Ndet'].fortran = interger
|
|
|
|
.ocaml = int
|
|
|
|
"""
|
2015-03-26 14:50:19 +01:00
|
|
|
# ~#~#~#~#~ #
|
|
|
|
# P i c l e #
|
|
|
|
# ~#~#~#~#~ #
|
|
|
|
|
|
|
|
import cPickle as pickle
|
|
|
|
|
|
|
|
from os import listdir
|
|
|
|
|
|
|
|
qpackage_root = os.environ['QPACKAGE_ROOT']
|
|
|
|
|
2015-03-27 10:44:39 +01:00
|
|
|
fancy_type_pickle = qpackage_root + "/scripts/ezfio_interface/fancy_type.p"
|
2015-03-26 14:50:19 +01:00
|
|
|
|
|
|
|
if fancy_type_pickle in listdir(os.getcwd()):
|
|
|
|
fancy_type = pickle.load(open(fancy_type_pickle, "rb"))
|
|
|
|
return fancy_type
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
# ~#~#~#~ #
|
|
|
|
# I n i t #
|
|
|
|
# ~#~#~#~ #
|
|
|
|
|
|
|
|
fancy_type = defaultdict(dict)
|
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
# R a w _ t y p e #
|
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
fancy_type['integer'] = Type(None, "int", "integer")
|
|
|
|
fancy_type['int'] = Type(None, "int", "integer")
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
fancy_type['float'] = Type(None, "float", "double precision")
|
|
|
|
fancy_type['double precision'] = Type(None, "float", "double precision")
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
fancy_type['logical'] = Type(None, "bool", "logical")
|
|
|
|
fancy_type['bool'] = Type(None, "bool", "logical")
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-30 11:16:15 +02:00
|
|
|
fancy_type['character*(32)'] = Type(None, "string", "character*(32)")
|
|
|
|
fancy_type['character*(60)'] = Type(None, "string", "character*(60)")
|
|
|
|
fancy_type['character*(256)'] = Type(None, "string", "character*(256)")
|
2015-03-26 09:08:58 +01:00
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
# q p _ t y p e s #
|
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
|
2015-03-26 09:08:58 +01:00
|
|
|
# Dict to change ocaml LowLevel type into FortranLowLevel type
|
|
|
|
ocaml_to_fortran = {"int": "integer",
|
|
|
|
"float": "double precision",
|
|
|
|
"logical": "logical",
|
|
|
|
"string": "character*32"}
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-04-01 12:02:02 +02:00
|
|
|
# Read and parse qptype generate
|
2015-03-26 14:50:19 +01:00
|
|
|
src = qpackage_root + "/ocaml/qptypes_generator.ml"
|
2015-03-24 19:41:56 +01:00
|
|
|
with open(src, "r") as f:
|
2015-04-01 12:02:02 +02:00
|
|
|
r = f.read()
|
|
|
|
|
|
|
|
# Generate
|
|
|
|
l_gen = [i for i in r.splitlines() if i.strip().startswith("*")]
|
|
|
|
|
|
|
|
# Untouch
|
|
|
|
b = r.find('let untouched = "')
|
|
|
|
e = r.find(';;', b)
|
|
|
|
|
|
|
|
l_un = [i for i in r[b:e].splitlines() if i.strip().startswith("module")]
|
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~ #
|
|
|
|
# q p _ t y p e s _ g e n e r a t e #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~ #
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 09:08:58 +01:00
|
|
|
# Read the fancy_type, the ocaml. and convert the ocam to the fortran
|
2015-04-01 12:02:02 +02:00
|
|
|
for i in l_gen + l_un:
|
2015-03-26 09:08:58 +01:00
|
|
|
str_fancy_type = i.split()[1].strip()
|
|
|
|
str_ocaml_type = i.split()[3]
|
2015-04-01 12:02:02 +02:00
|
|
|
|
|
|
|
if str_ocaml_type != 'sig':
|
|
|
|
str_fortran_type = ocaml_to_fortran[str_ocaml_type]
|
|
|
|
else:
|
|
|
|
str_fortran_type = 'character*(32)'
|
|
|
|
str_ocaml_type = 'string'
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
fancy_type[str_fancy_type] = Type(str_fancy_type,
|
|
|
|
str_ocaml_type,
|
|
|
|
str_fortran_type)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 14:50:19 +01:00
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
# F i n a l i z e #
|
|
|
|
# ~#~#~#~#~#~#~#~ #
|
|
|
|
|
|
|
|
pickle.dump(dict(fancy_type), open(fancy_type_pickle, "wb"))
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
return dict(fancy_type)
|
|
|
|
|
|
|
|
|
|
|
|
type_dict = get_type_dict()
|
|
|
|
|
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
def get_dict_config_file(config_file_path, module_lower):
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
2015-03-25 15:26:53 +01:00
|
|
|
Input:
|
|
|
|
config_file_path is the config file path
|
|
|
|
(for example FULL_PATH/EZFIO.cfg)
|
|
|
|
module_lower is the MODULE name lowered
|
|
|
|
(Ex fullci)
|
|
|
|
|
|
|
|
Return a dict d[provider_name] = {type,
|
|
|
|
doc,
|
|
|
|
ezfio_name,
|
|
|
|
ezfio_dir,
|
2015-03-26 09:08:58 +01:00
|
|
|
size,
|
2015-03-25 15:26:53 +01:00
|
|
|
interface,
|
|
|
|
default}
|
|
|
|
|
2015-03-26 14:35:09 +01:00
|
|
|
- Type : Is a Type named tuple who containt
|
|
|
|
fortran and ocaml type
|
2015-03-26 12:02:58 +01:00
|
|
|
- doc : Is the doc
|
|
|
|
- ezfio_name : Will be the name of the file
|
|
|
|
- ezfio_dir : Will be the folder who containt the ezfio_name
|
2015-03-25 15:26:53 +01:00
|
|
|
* /ezfio_dir/ezfio_name
|
|
|
|
* equal to MODULE_lower name for the moment.
|
2015-03-26 12:02:58 +01:00
|
|
|
- interface : The provider is a imput or a output
|
2015-03-26 14:35:09 +01:00
|
|
|
- default : The default value /!\ stored in a Type named type!
|
|
|
|
if interface == output
|
2015-03-26 12:02:58 +01:00
|
|
|
- size : Is the string read in ezfio.cgf who containt the size information
|
|
|
|
(like 1 or =sum(ao_num))
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
|
|
|
# ~#~#~#~ #
|
|
|
|
# I n i t #
|
|
|
|
# ~#~#~#~ #
|
|
|
|
|
|
|
|
d = defaultdict(dict)
|
2015-03-25 15:26:53 +01:00
|
|
|
l_info_required = ["doc", "interface"]
|
2015-03-26 09:08:58 +01:00
|
|
|
l_info_optional = ["ezfio_name", "size"]
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~ #
|
|
|
|
# L o a d _ C o n f i g #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~ #
|
|
|
|
|
|
|
|
config_file = ConfigParser.ConfigParser()
|
|
|
|
config_file.readfp(open(config_file_path))
|
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~ #
|
|
|
|
# F i l l _ d i c t #
|
|
|
|
# ~#~#~#~#~#~#~#~#~ #
|
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
def error(o, p, c):
|
|
|
|
"o option ; p provider_name ;c config_file_path"
|
|
|
|
print "You need a {0} for {1} in {2}".format(o, p, c)
|
|
|
|
|
|
|
|
for section in config_file.sections():
|
|
|
|
# pvd = provider
|
|
|
|
pvd = section.lower()
|
|
|
|
|
|
|
|
# Create the dictionary who containt the value per default
|
2015-03-26 12:02:58 +01:00
|
|
|
d_default = {"ezfio_name": pvd}
|
2015-03-25 15:26:53 +01:00
|
|
|
|
|
|
|
# Set the ezfio_dir
|
|
|
|
d[pvd]["ezfio_dir"] = module_lower
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
# Check if type if avalaible
|
2015-03-25 15:26:53 +01:00
|
|
|
type_ = config_file.get(section, "type")
|
2015-03-24 19:41:56 +01:00
|
|
|
if type_ not in type_dict:
|
|
|
|
print "{0} not avalaible. Choose in:".format(type_)
|
2015-03-30 16:50:27 +02:00
|
|
|
print ", ".join(sorted([i for i in type_dict]))
|
2015-03-24 19:41:56 +01:00
|
|
|
sys.exit(1)
|
|
|
|
else:
|
2015-03-25 15:26:53 +01:00
|
|
|
d[pvd]["type"] = type_dict[type_]
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
# Fill the dict with REQUIRED information
|
|
|
|
for option in l_info_required:
|
2015-03-24 19:41:56 +01:00
|
|
|
try:
|
2015-03-25 15:26:53 +01:00
|
|
|
d[pvd][option] = config_file.get(section, option)
|
2015-03-24 19:41:56 +01:00
|
|
|
except ConfigParser.NoOptionError:
|
2015-03-25 15:26:53 +01:00
|
|
|
error(option, pvd, config_file_path)
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
# Fill the dict with OPTIONAL information
|
|
|
|
for option in l_info_optional:
|
2015-03-24 19:41:56 +01:00
|
|
|
try:
|
2015-03-25 15:26:53 +01:00
|
|
|
d[pvd][option] = config_file.get(section, option).lower()
|
2015-03-24 19:41:56 +01:00
|
|
|
except ConfigParser.NoOptionError:
|
2015-03-26 12:02:58 +01:00
|
|
|
if option in d_default:
|
|
|
|
d[pvd][option] = d_default[option]
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-27 17:25:57 +01:00
|
|
|
# If interface is input we need a default value information
|
2015-03-27 16:56:35 +01:00
|
|
|
if d[pvd]["interface"] == "input":
|
2015-03-25 15:26:53 +01:00
|
|
|
try:
|
2015-03-26 14:28:32 +01:00
|
|
|
default_raw = config_file.get(section, "default")
|
2015-03-25 15:26:53 +01:00
|
|
|
except ConfigParser.NoOptionError:
|
|
|
|
error("default", pvd, config_file_path)
|
|
|
|
sys.exit(1)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 14:28:32 +01:00
|
|
|
try:
|
|
|
|
d[pvd]["default"] = is_bool(default_raw)
|
2015-03-26 14:50:19 +01:00
|
|
|
except TypeError:
|
2015-03-26 22:07:44 +01:00
|
|
|
d[pvd]["default"] = Type(None, default_raw, default_raw)
|
2015-03-26 14:28:32 +01:00
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
return dict(d)
|
|
|
|
|
|
|
|
|
|
|
|
def create_ezfio_provider(dict_ezfio_cfg):
|
|
|
|
"""
|
2015-03-25 15:26:53 +01:00
|
|
|
From dict d[provider_name] = {type,
|
|
|
|
doc,
|
|
|
|
ezfio_name,
|
|
|
|
ezfio_dir,
|
|
|
|
interface,
|
2015-03-26 12:02:58 +01:00
|
|
|
default
|
|
|
|
size}
|
2015-03-24 19:41:56 +01:00
|
|
|
create the a list who containt all the code for the provider
|
|
|
|
return [code, ...]
|
|
|
|
"""
|
2015-03-26 20:04:05 +01:00
|
|
|
from ezfio_generate_provider import EZFIO_Provider
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
dict_code_provider = dict()
|
|
|
|
|
|
|
|
ez_p = EZFIO_Provider()
|
|
|
|
for provider_name, dict_info in dict_ezfio_cfg.iteritems():
|
2015-03-25 15:26:53 +01:00
|
|
|
if "default" in dict_info:
|
2015-03-24 19:41:56 +01:00
|
|
|
ez_p.set_type(dict_info['type'].fortran)
|
|
|
|
ez_p.set_name(provider_name)
|
|
|
|
ez_p.set_doc(dict_info['doc'])
|
|
|
|
ez_p.set_ezfio_dir(dict_info['ezfio_dir'])
|
|
|
|
ez_p.set_ezfio_name(dict_info['ezfio_name'])
|
|
|
|
ez_p.set_output("output_%s" % dict_info['ezfio_dir'])
|
2015-03-26 20:26:20 +01:00
|
|
|
|
2015-04-01 12:02:02 +02:00
|
|
|
dict_code_provider[provider_name] = str(ez_p) + "\n"
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
return dict_code_provider
|
|
|
|
|
|
|
|
|
|
|
|
def save_ezfio_provider(path_head, dict_code_provider):
|
|
|
|
"""
|
2015-03-25 15:26:53 +01:00
|
|
|
Write in path_head/"ezfio_interface.irp.f" the value of dict_code_provider
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
path = "{0}/ezfio_interface.irp.f".format(path_head)
|
|
|
|
|
2015-03-25 23:03:51 +01:00
|
|
|
try:
|
|
|
|
f = open(path, "r")
|
|
|
|
except IOError:
|
|
|
|
old_output = ""
|
|
|
|
else:
|
|
|
|
old_output = f.read()
|
|
|
|
f.close()
|
|
|
|
|
2015-03-26 10:12:35 +01:00
|
|
|
l_output = ["! DO NOT MODIFY BY HAND",
|
|
|
|
"! Created by $QPACKAGE_ROOT/scripts/ezfio_interface.py",
|
|
|
|
"! from file {0}/EZFIO.cfg".format(path_head),
|
|
|
|
"\n"]
|
|
|
|
|
|
|
|
l_output += [code for code in dict_code_provider.values()]
|
|
|
|
|
2015-04-01 12:02:02 +02:00
|
|
|
output = "\n".join(l_output)
|
2015-03-25 23:03:51 +01:00
|
|
|
|
|
|
|
if output != old_output:
|
2015-04-01 12:02:02 +02:00
|
|
|
with open(path, "w+") as f:
|
2015-03-25 23:03:51 +01:00
|
|
|
f.write(output)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
|
2015-03-27 17:25:57 +01:00
|
|
|
def create_ezfio_stuff(dict_ezfio_cfg, config_or_default="config"):
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
|
|
|
From dict_ezfio_cfg[provider_name] = {type, default, ezfio_name,ezfio_dir,doc}
|
|
|
|
Return the string ezfio_interface_config
|
|
|
|
"""
|
2015-03-26 10:01:02 +01:00
|
|
|
|
|
|
|
def size_format_to_ezfio(size_raw):
|
2015-03-26 14:35:09 +01:00
|
|
|
"""
|
|
|
|
If size_raw == "=" is a formula -> do nothing; return
|
|
|
|
If the value are between parenthses -> do nothing; return
|
|
|
|
Else put it in parenthsesis
|
2015-03-26 10:01:02 +01:00
|
|
|
"""
|
2015-03-26 14:28:32 +01:00
|
|
|
|
2015-03-26 10:01:02 +01:00
|
|
|
size_raw = str(size_raw)
|
2015-03-26 12:02:58 +01:00
|
|
|
if any([size_raw.startswith('='),
|
|
|
|
size_raw.startswith("(") and size_raw.endswith(")")]):
|
2015-03-26 10:01:02 +01:00
|
|
|
size_convert = size_raw
|
|
|
|
else:
|
|
|
|
size_convert = "({0})".format(size_raw)
|
|
|
|
return size_convert
|
|
|
|
|
|
|
|
def create_format_string(size):
|
|
|
|
"""
|
2015-03-26 14:35:09 +01:00
|
|
|
Take a size number and
|
2015-03-26 19:26:48 +01:00
|
|
|
return the string format for being right align with this offset
|
2015-03-26 10:01:02 +01:00
|
|
|
"""
|
2015-03-26 19:26:48 +01:00
|
|
|
return "{{0:<{0}}}".format(size).format
|
2015-03-26 10:01:02 +01:00
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
# F o r m a t _ i n f o #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
|
|
|
|
lenmax_name = max([len(i) for i in dict_ezfio_cfg])
|
2015-03-26 10:12:35 +01:00
|
|
|
lenmax_type = max([len(i["type"].fortran)
|
|
|
|
for i in dict_ezfio_cfg.values()])
|
2015-03-26 10:01:02 +01:00
|
|
|
|
|
|
|
str_name_format = create_format_string(lenmax_name + 2)
|
|
|
|
str_type_format = create_format_string(lenmax_type + 2)
|
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
# C r e a t e _ t h e _ s t r i n g #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
|
2015-03-26 21:08:55 +01:00
|
|
|
# Checking is many ezfio_dir provided
|
|
|
|
l_ezfio_dir = [d['ezfio_dir'] for d in dict_ezfio_cfg.values()]
|
|
|
|
|
|
|
|
if not l_ezfio_dir.count(l_ezfio_dir[0]) == len(l_ezfio_dir):
|
|
|
|
print >> sys.stderr, "You have many ezfio_dir. Not supported yet"
|
|
|
|
raise TypeError
|
|
|
|
else:
|
|
|
|
result = [l_ezfio_dir[0]]
|
2015-03-26 09:08:58 +01:00
|
|
|
|
|
|
|
for provider_name, provider_info in sorted(dict_ezfio_cfg.iteritems()):
|
|
|
|
|
2015-03-26 10:01:02 +01:00
|
|
|
# Get the value from dict
|
2015-03-31 09:58:25 +02:00
|
|
|
name_raw = provider_info["ezfio_name"].lower()
|
|
|
|
|
2015-03-26 10:01:02 +01:00
|
|
|
fortran_type_raw = provider_info["type"].fortran
|
2015-03-26 12:02:58 +01:00
|
|
|
|
|
|
|
if "size" in provider_info and not provider_info["size"] == "1":
|
|
|
|
size_raw = provider_info["size"]
|
|
|
|
else:
|
|
|
|
size_raw = None
|
2015-03-26 09:24:58 +01:00
|
|
|
|
2015-03-26 14:28:32 +01:00
|
|
|
# It is the last so we don't need to right align it
|
|
|
|
str_size = size_format_to_ezfio(size_raw) if size_raw else ""
|
|
|
|
|
2015-03-26 10:01:02 +01:00
|
|
|
# Get the string in to good format (left align and co)
|
|
|
|
str_name = str_name_format(name_raw)
|
|
|
|
str_fortran_type = str_type_format(fortran_type_raw)
|
|
|
|
|
|
|
|
# Return the string
|
2015-03-27 17:25:57 +01:00
|
|
|
if config_or_default == "config":
|
|
|
|
s = " {0} {1} {2}".format(str_name, str_fortran_type, str_size)
|
|
|
|
elif config_or_default == "default":
|
|
|
|
try:
|
|
|
|
str_value = provider_info["default"].ocaml
|
|
|
|
except KeyError:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
s = " {0} {1}".format(str_name, str_value)
|
|
|
|
else:
|
|
|
|
raise KeyError
|
2015-03-26 10:01:02 +01:00
|
|
|
# Append
|
2015-03-25 15:26:53 +01:00
|
|
|
result.append(s)
|
2015-03-26 10:01:02 +01:00
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
return "\n".join(result)
|
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
|
2015-03-27 17:25:57 +01:00
|
|
|
def create_ezfio_config(dict_ezfio_cfg):
|
|
|
|
return create_ezfio_stuff(dict_ezfio_cfg,
|
|
|
|
config_or_default="config")
|
|
|
|
|
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
def save_ezfio_config(module_lower, str_ezfio_config):
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
|
|
|
Write the str_ezfio_config in
|
2015-03-27 17:25:57 +01:00
|
|
|
"$QPACKAGE_ROOT/EZFIO/{0}.ezfio_interface_config".format(module_lower)
|
2015-03-24 19:41:56 +01:00
|
|
|
"""
|
|
|
|
|
2015-03-26 21:08:55 +01:00
|
|
|
root_ezfio = "{0}/EZFIO".format(os.environ['QPACKAGE_ROOT'])
|
|
|
|
path = "{0}/config/{1}.ezfio_interface_config".format(root_ezfio,
|
2015-03-25 15:26:53 +01:00
|
|
|
module_lower)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 23:03:51 +01:00
|
|
|
try:
|
|
|
|
f = open(path, "r")
|
|
|
|
except IOError:
|
|
|
|
old_output = ""
|
|
|
|
else:
|
|
|
|
old_output = f.read()
|
|
|
|
f.close()
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 23:03:51 +01:00
|
|
|
if str_ezfio_config != old_output:
|
2015-04-01 12:02:02 +02:00
|
|
|
with open(path, "w+") as f:
|
2015-03-25 23:03:51 +01:00
|
|
|
f.write(str_ezfio_config)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
|
2015-03-27 17:25:57 +01:00
|
|
|
def create_ezfio_default(dict_ezfio_cfg):
|
|
|
|
return create_ezfio_stuff(dict_ezfio_cfg,
|
|
|
|
config_or_default="default")
|
|
|
|
|
|
|
|
|
|
|
|
def save_ezfio_default(module_lower, str_ezfio_default):
|
|
|
|
"""
|
|
|
|
Write the str_ezfio_config in
|
|
|
|
"$QPACKAGE_ROOT/data/ezfio_defaults/{0}.ezfio_interface_default".format(module_lower)
|
|
|
|
"""
|
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
root_ezfio_default = "{0}/data/ezfio_defaults/".format(
|
|
|
|
os.environ['QPACKAGE_ROOT'])
|
2015-03-27 17:25:57 +01:00
|
|
|
path = "{0}/{1}.ezfio_interface_default".format(root_ezfio_default,
|
|
|
|
module_lower)
|
|
|
|
|
|
|
|
try:
|
|
|
|
f = open(path, "r")
|
|
|
|
except IOError:
|
|
|
|
old_output = ""
|
|
|
|
else:
|
|
|
|
old_output = f.read()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
if str_ezfio_default != old_output:
|
2015-04-01 12:02:02 +02:00
|
|
|
with open(path, "w+") as f:
|
2015-03-27 17:25:57 +01:00
|
|
|
f.write(str_ezfio_default)
|
|
|
|
|
|
|
|
|
2015-03-30 11:16:15 +02:00
|
|
|
def create_ocaml_input(dict_ezfio_cfg,module_lower):
|
2015-03-27 16:12:47 +01:00
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
# ~#~#~#~# #
|
|
|
|
# I n i t #
|
|
|
|
# ~#~#~#~# #
|
|
|
|
|
|
|
|
from ezfio_generate_ocaml import EZFIO_ocaml
|
|
|
|
|
2015-03-31 11:14:45 +02:00
|
|
|
l_ezfio_name = []
|
2015-03-27 16:56:35 +01:00
|
|
|
l_type = []
|
|
|
|
l_doc = []
|
|
|
|
|
|
|
|
for k, v in dict_ezfio_cfg.iteritems():
|
2015-03-27 18:15:23 +01:00
|
|
|
if v['interface'] == "input":
|
2015-03-31 11:14:45 +02:00
|
|
|
l_ezfio_name.append(v['ezfio_name'])
|
2015-03-27 16:56:35 +01:00
|
|
|
l_type.append(v["type"])
|
|
|
|
l_doc.append(v["doc"])
|
2015-03-26 22:07:44 +01:00
|
|
|
|
2015-03-31 11:14:45 +02:00
|
|
|
e_glob = EZFIO_ocaml(l_ezfio_name=l_ezfio_name,
|
2015-03-30 09:42:12 +02:00
|
|
|
l_type=l_type,
|
|
|
|
l_doc=l_doc)
|
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
# ~#~#~#~#~#~#~#~# #
|
2015-03-27 10:44:39 +01:00
|
|
|
# C r e a t i o n #
|
2015-03-26 22:07:44 +01:00
|
|
|
# ~#~#~#~#~#~#~#~# #
|
|
|
|
|
2015-03-27 16:12:47 +01:00
|
|
|
template = ['(* =~=~ *)',
|
|
|
|
'(* Init *)',
|
|
|
|
'(* =~=~ *)',
|
|
|
|
""]
|
|
|
|
|
|
|
|
template += ["open Qptypes;;",
|
|
|
|
"open Qputils;;",
|
|
|
|
"open Core.Std;;",
|
|
|
|
"",
|
2015-03-30 11:16:15 +02:00
|
|
|
"module {0} : sig".format(module_lower.capitalize())]
|
2015-03-27 16:12:47 +01:00
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
template += [e_glob.create_type()]
|
2015-03-27 16:12:47 +01:00
|
|
|
|
|
|
|
template += [" val read : unit -> t option",
|
|
|
|
" val write : t-> unit",
|
|
|
|
" val to_string : t -> string",
|
|
|
|
" val to_rst : t -> Rst_string.t",
|
|
|
|
" val of_rst : Rst_string.t -> t option",
|
|
|
|
"end = struct"]
|
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
template += [e_glob.create_type()]
|
2015-03-27 16:12:47 +01:00
|
|
|
|
|
|
|
template += ['',
|
2015-03-31 11:41:07 +02:00
|
|
|
' let get_default = Qpackage.get_ezfio_default "{0}";;'.format(module_lower),
|
2015-03-27 16:12:47 +01:00
|
|
|
'']
|
|
|
|
|
|
|
|
template += ['(* =~=~=~=~=~=~==~=~=~=~=~=~ *)',
|
|
|
|
'(* Generate Special Function *)',
|
|
|
|
'(* =~=~=~==~=~~=~=~=~=~=~=~=~ *)',
|
|
|
|
""]
|
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
for provider_name, d_val in sorted(dict_ezfio_cfg.iteritems()):
|
|
|
|
|
2015-03-27 16:12:47 +01:00
|
|
|
if 'default' not in d_val:
|
|
|
|
continue
|
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
ezfio_dir = d_val["ezfio_dir"]
|
|
|
|
ezfio_name = d_val["ezfio_name"]
|
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
e = EZFIO_ocaml(ezfio_dir=ezfio_dir,
|
|
|
|
ezfio_name=ezfio_name,
|
|
|
|
type=d_val["type"])
|
2015-03-27 11:15:55 +01:00
|
|
|
|
2015-03-27 16:12:47 +01:00
|
|
|
template += [e.create_read(),
|
|
|
|
e.create_write(),
|
|
|
|
""]
|
|
|
|
|
|
|
|
template += ['(* =~=~=~=~=~=~=~=~=~=~=~=~ *)',
|
|
|
|
'(* Generate Global Function *)',
|
|
|
|
'(* =~=~=~=~=~=~=~=~=~=~=~=~ *)',
|
|
|
|
""]
|
|
|
|
|
2015-03-30 09:42:12 +02:00
|
|
|
template += [e_glob.create_read_global(),
|
|
|
|
e_glob.create_write_global(),
|
|
|
|
e_glob.create_to_string(),
|
|
|
|
e_glob.create_to_rst()]
|
2015-03-27 16:12:47 +01:00
|
|
|
|
|
|
|
template += [" include Generic_input_of_rst;;",
|
|
|
|
" let of_rst = of_rst t_of_sexp;;",
|
|
|
|
"",
|
|
|
|
"end"]
|
|
|
|
|
|
|
|
return "\n".join(template)
|
2015-03-26 22:07:44 +01:00
|
|
|
|
2015-03-26 20:45:25 +01:00
|
|
|
|
2015-03-27 16:12:47 +01:00
|
|
|
def save_ocaml_input(module_lower, str_ocaml_input):
|
|
|
|
"""
|
|
|
|
Write the str_ocaml_input in
|
|
|
|
$QPACKAGE_ROOT/ocaml/Input_{0}.ml".format(module_lower)
|
|
|
|
"""
|
|
|
|
|
|
|
|
path = "{0}/ocaml/Input_{1}.ml".format(os.environ['QPACKAGE_ROOT'],
|
|
|
|
module_lower)
|
|
|
|
|
|
|
|
try:
|
|
|
|
f = open(path, "r")
|
|
|
|
except IOError:
|
|
|
|
old_output = ""
|
|
|
|
else:
|
|
|
|
old_output = f.read()
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
if str_ocaml_input != old_output:
|
2015-04-01 12:02:02 +02:00
|
|
|
with open(path, "w+") as f:
|
2015-03-27 16:12:47 +01:00
|
|
|
f.write(str_ocaml_input)
|
2015-03-26 20:45:25 +01:00
|
|
|
|
2015-03-27 16:56:35 +01:00
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
def main():
|
2015-03-25 15:26:53 +01:00
|
|
|
"""
|
|
|
|
Two condition:
|
|
|
|
-Take the EZFIO.cfg path in arg
|
|
|
|
or
|
|
|
|
-Look if EZFIO.cfg is present in the pwd
|
2015-03-26 12:27:53 +01:00
|
|
|
|
|
|
|
Return : - ezfio_interface.irp.f
|
|
|
|
- folder_ezfio_inteface_config
|
2015-03-25 15:26:53 +01:00
|
|
|
"""
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 21:08:55 +01:00
|
|
|
# ~#~#~#~# #
|
|
|
|
# I n i t #
|
|
|
|
# ~#~#~#~# #
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
try:
|
2015-03-25 15:26:53 +01:00
|
|
|
config_file_path = sys.argv[1]
|
2015-03-24 19:41:56 +01:00
|
|
|
except:
|
2015-03-25 15:26:53 +01:00
|
|
|
config_file_path = "EZFIO.cfg"
|
|
|
|
if "EZFIO.cfg" not in os.listdir(os.getcwd()):
|
|
|
|
sys.exit(0)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
config_file_path = os.path.expanduser(config_file_path)
|
|
|
|
config_file_path = os.path.expandvars(config_file_path)
|
|
|
|
config_file_path = os.path.abspath(config_file_path)
|
2015-03-26 21:08:55 +01:00
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
# G e t _ m o d u l e _ d i r #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~# #
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-25 15:26:53 +01:00
|
|
|
path_dirname = os.path.dirname(config_file_path)
|
|
|
|
module = [i for i in path_dirname.split("/") if i][-1]
|
|
|
|
module_lower = module.lower()
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 21:08:55 +01:00
|
|
|
# Because we only authorise this right now!
|
|
|
|
ezfio_dir = module_lower
|
2015-03-26 22:07:44 +01:00
|
|
|
dict_ezfio_cfg = get_dict_config_file(config_file_path, ezfio_dir)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
# ~#~#~#~#~#~#
|
|
|
|
# O c a m l #
|
|
|
|
# ~#~#~#~#~#~#
|
|
|
|
|
2015-03-30 11:16:15 +02:00
|
|
|
str_ocaml_input = create_ocaml_input(dict_ezfio_cfg, module_lower)
|
2015-03-27 16:12:47 +01:00
|
|
|
save_ocaml_input(module_lower, str_ocaml_input)
|
2015-03-26 22:07:44 +01:00
|
|
|
|
|
|
|
# ~#~#~#~#~#~#~#~#
|
2015-03-26 21:08:55 +01:00
|
|
|
# I R P . f 9 0 #
|
2015-03-26 22:07:44 +01:00
|
|
|
# ~#~#~#~#~#~#~#~#
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
l_str_code = create_ezfio_provider(dict_ezfio_cfg)
|
2015-03-26 21:08:55 +01:00
|
|
|
save_ezfio_provider(path_dirname, l_str_code)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 21:08:55 +01:00
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~# #
|
|
|
|
# e z f i o _ c o n f i g #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~# #
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-26 22:07:44 +01:00
|
|
|
str_ezfio_config = create_ezfio_config(dict_ezfio_cfg)
|
2015-03-26 21:08:55 +01:00
|
|
|
save_ezfio_config(module_lower, str_ezfio_config)
|
2015-03-24 19:41:56 +01:00
|
|
|
|
2015-03-27 17:25:57 +01:00
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~ #
|
|
|
|
# e z f i o _ d e f a u l t #
|
|
|
|
# ~#~#~#~#~#~#~#~#~#~#~#~#~#~ #
|
|
|
|
|
|
|
|
str_ezfio_default = create_ezfio_default(dict_ezfio_cfg)
|
|
|
|
save_ezfio_default(module_lower, str_ezfio_default)
|
|
|
|
|
2015-03-24 19:41:56 +01:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2015-03-25 15:26:53 +01:00
|
|
|
main()
|