irpf90/src/irpf90.py

117 lines
2.7 KiB
Python
Raw Normal View History

2020-01-27 18:22:35 +01:00
#!/usr/bin/env python3
2009-09-23 12:51:27 +02:00
# IRPF90 is a Fortran90 preprocessor written in Python for programming using
# the Implicit Reference to Parameters (IRP) method.
# Copyright (C) 2009 Anthony SCEMAMA
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Anthony Scemama
# LCPQ - IRSAMC - CNRS
# Universite Paul Sabatier
# 118, route de Narbonne
# 31062 Toulouse Cedex 4
# scemama@irsamc.ups-tlse.fr
2009-09-23 12:51:27 +02:00
2010-10-20 16:40:52 +02:00
2011-12-19 14:24:52 +01:00
try:
wd = os.path.abspath(os.path.dirname(__file__))
sys.path.insert(0,(wd+"/../src/"))
except:
pass
2009-09-02 20:45:53 +02:00
2020-04-22 22:09:50 +02:00
import vim
import os,sys
2020-01-27 18:43:22 +01:00
from command_line import command_line
2014-01-07 17:01:40 +01:00
2009-09-02 20:45:53 +02:00
def main():
2009-09-03 23:12:32 +02:00
if command_line.do_help:
command_line.usage()
2009-09-02 20:45:53 +02:00
if command_line.do_version:
2020-01-27 18:43:22 +01:00
from version import version
2020-01-27 18:22:35 +01:00
print(version)
2020-01-27 18:43:22 +01:00
from init import init
if command_line.do_init:
init()
2009-09-02 20:45:53 +02:00
2009-09-16 15:59:13 +02:00
if command_line.do_preprocess:
init()
2020-01-27 18:43:22 +01:00
from preprocessed_text import preprocessed_text
2009-09-16 15:59:13 +02:00
for filename,text in preprocessed_text:
if filename in command_line.preprocessed:
for line in text:
2020-01-27 18:22:35 +01:00
print(line.text)
2009-09-16 15:59:13 +02:00
2010-08-31 11:53:34 +02:00
if command_line.do_touch:
2020-01-27 18:43:22 +01:00
from variables import variables
for var in command_line.touched:
if var not in variables:
2020-01-27 18:22:35 +01:00
print("%s is not an IRP entity"%(var,))
else:
2020-01-27 18:22:35 +01:00
print("Touching %s invalidates the following entities:"%(var,))
parents = variables[var].parents
parents.sort()
for x in parents:
2020-01-27 18:22:35 +01:00
print("- %s"%(x,))
2009-09-02 20:45:53 +02:00
2014-01-07 17:01:40 +01:00
if not command_line.do_run:
return
2009-09-02 20:45:53 +02:00
init()
2020-01-27 18:43:22 +01:00
import irp_stack
2009-09-02 20:45:53 +02:00
irp_stack.create()
2020-01-27 18:43:22 +01:00
import makefile
2009-09-09 00:46:42 +02:00
makefile.create()
2009-09-03 23:12:32 +02:00
if command_line.do_codelet:
2020-01-27 18:43:22 +01:00
import profile
profile.build_rdtsc()
2020-01-27 18:43:22 +01:00
import codelet
codelet.run()
2020-01-27 18:43:22 +01:00
from modules import modules, write_module
2020-01-27 18:22:35 +01:00
for m in list(modules.keys()):
2009-09-09 00:46:42 +02:00
write_module(modules[m])
makefile.run()
2020-01-27 18:43:22 +01:00
import touches
2009-09-14 17:16:52 +02:00
touches.create()
# import checkpoint
# checkpoint.create()
2015-03-30 21:22:27 +02:00
2020-01-27 18:43:22 +01:00
import create_man
2009-09-09 00:46:42 +02:00
create_man.run()
2011-09-30 23:18:17 +02:00
if command_line.do_profile:
2020-01-27 18:43:22 +01:00
import profile
2011-09-30 23:18:17 +02:00
profile.run()
if command_line.do_openmp:
2020-01-27 18:43:22 +01:00
import locks
locks.create()
if __name__ == '__main__':
main()
2014-01-07 17:01:40 +01:00