2009-09-02 20:45:53 +02:00
|
|
|
#!/usr/bin/python
|
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-02 20:45:53 +02:00
|
|
|
|
2009-09-04 15:11:42 +02:00
|
|
|
def strip(x):
|
|
|
|
return x.strip()
|
|
|
|
|
2009-09-05 16:05:00 +02:00
|
|
|
def lower(x):
|
|
|
|
return x.lower()
|
|
|
|
|
2009-09-02 20:45:53 +02:00
|
|
|
def same_file(filename,txt):
|
|
|
|
assert isinstance(filename,str)
|
|
|
|
assert isinstance(txt,list)
|
|
|
|
|
|
|
|
try:
|
|
|
|
file = open(filename,"r")
|
|
|
|
except IOError:
|
|
|
|
return False
|
|
|
|
lines = file.readlines()
|
|
|
|
file.close()
|
|
|
|
if len(lines) != len(txt):
|
|
|
|
return False
|
|
|
|
for a,b in zip(lines,txt):
|
|
|
|
if a != b:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2009-09-04 15:11:42 +02:00
|
|
|
def build_dim(dim):
|
|
|
|
if len(dim) == 0:
|
|
|
|
return ""
|
|
|
|
else:
|
|
|
|
return "(%s)"%( ",".join(dim) )
|
|
|
|
|
2009-09-17 22:34:06 +02:00
|
|
|
import error
|
2009-09-04 18:37:10 +02:00
|
|
|
def find_subname(line):
|
2009-09-17 22:34:06 +02:00
|
|
|
buffer = line.text
|
|
|
|
if not buffer.endswith(')'):
|
|
|
|
buffer += "()"
|
|
|
|
buffer = buffer.split('(')
|
2009-09-04 18:37:10 +02:00
|
|
|
if len(buffer) > 1:
|
|
|
|
buffer = " ".join(buffer[:-1])
|
|
|
|
else:
|
|
|
|
buffer = buffer[0]
|
|
|
|
buffer = buffer.lower().split()
|
|
|
|
if len(buffer) < 2:
|
|
|
|
error.fail(line,"Syntax Error")
|
|
|
|
return buffer[-1]
|
|
|
|
|
2009-09-04 23:48:49 +02:00
|
|
|
def make_single(l):
|
|
|
|
d = {}
|
|
|
|
for x in l:
|
|
|
|
d[x] = True
|
|
|
|
return d.keys()
|
|
|
|
|
2009-09-05 15:37:23 +02:00
|
|
|
def flatten(l):
|
|
|
|
if isinstance(l,list):
|
|
|
|
result = []
|
|
|
|
for i in range(len(l)):
|
|
|
|
elem = l[i]
|
|
|
|
result += flatten(elem)
|
|
|
|
return result
|
|
|
|
else:
|
|
|
|
return [l]
|
2009-09-04 18:37:10 +02:00
|
|
|
|
2009-09-08 16:00:46 +02:00
|
|
|
def dimsize(x):
|
|
|
|
assert isinstance(x,str)
|
|
|
|
buffer = x.split(':')
|
|
|
|
if len(buffer) == 1:
|
|
|
|
return x
|
|
|
|
buffer = map(strip,buffer)
|
|
|
|
else:
|
|
|
|
assert len(buffer) == 2
|
|
|
|
size = ""
|
|
|
|
b0, b1 = buffer
|
|
|
|
if b0.replace('-','').isdigit() and b1.replace('-','').isdigit():
|
|
|
|
size = str( int(b1) - int(b0) + 1 )
|
|
|
|
else:
|
|
|
|
if b0.replace('-','').isdigit():
|
|
|
|
size = "%s - (%d)"%(b1,int(b0)-1)
|
|
|
|
elif b1.replace('-','').isdigit():
|
|
|
|
size = "%d - %s"%(int(b1)+1,b0)
|
|
|
|
else:
|
|
|
|
size = "%s - %s + 1"%(b1,b0)
|
|
|
|
return size
|
|
|
|
|
2009-09-09 00:46:42 +02:00
|
|
|
def put_info(text,filename):
|
|
|
|
assert isinstance(text,list)
|
|
|
|
if len(text) > 0:
|
|
|
|
assert isinstance(text[0],tuple)
|
|
|
|
from irpf90_t import Line
|
|
|
|
assert isinstance(text[0][0],list)
|
|
|
|
assert isinstance(text[0][1],Line)
|
|
|
|
lenmax = 80 - len(filename)
|
|
|
|
format = "%"+str(lenmax)+"s ! %s:%4s"
|
|
|
|
for vars,line in text:
|
|
|
|
line.text = format%(line.text.ljust(lenmax),line.filename,str(line.i))
|
|
|
|
return text
|
|
|
|
|
2009-09-02 20:45:53 +02:00
|
|
|
if __name__ == '__main__':
|
2009-09-08 16:00:46 +02:00
|
|
|
print "10",dimsize("10") #-> "10"
|
|
|
|
print "0:10",dimsize("0:10") # -> "11"
|
|
|
|
print "0:x",dimsize("0:x") # -> "x+1"
|
|
|
|
print "-3:x",dimsize("-3:x") # -> "x+1"
|
|
|
|
print "x:y",dimsize("x:y") # -> "y-x+1"
|
|
|
|
print "x:5",dimsize("x:5") # -> "y-x+1"
|
|
|
|
|