10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-20 20:22:11 +02:00
irpf90/src/create_man.py
2009-09-16 15:59:13 +02:00

84 lines
2.2 KiB
Python

#!/usr/bin/python
from variable import Variable
from variables import variables
from irpf90_t import *
from util import *
def do_print_short(file,var):
assert isinstance(var,Variable)
print >>file, "%s : %s :: %s %s"%( \
var.line.filename[0],
var.type,
var.name,
build_dim(var.dim) )
######################################################################
def process_doc(file,line):
assert isinstance(line,str)
line = line.strip()
if line == "":
line = ".br"
print >>file, line
######################################################################
def process_deps(file,l):
assert isinstance(l,list)
for v in l:
print >>file, "%s\n.br"%(v,)
######################################################################
def process_types(file,var):
assert isinstance(var,Variable)
vars = [var.name] + var.others
for var in vars:
name = var
var = variables[var]
type = var.type
dim = build_dim(var.dim)
print >>file, "%s\t:: %s\t%s"%(type,name,dim)
######################################################################
def do_print(var):
assert isinstance(var,Variable)
filename = var.line.filename[0]
name = var.name
file = open("%s%s.l"%(mandir,var.name), "w")
print >>file, '.TH "IRPF90 entities" l %s "IRPF90 entities" %s'%(name,name)
if var.same_as != var.name:
var = variables[var.same_as]
print >>file, ".SH Declaration"
print >>file, ".nf"
process_types(file,var)
print >>file, ".ni"
if var.doc != []:
print >>file, ".SH Description"
for l in var.doc:
process_doc(file,l)
print >>file, ".SH File\n.P"
print >>file, filename
if var.needs != []:
var.needs.sort()
print >>file, ".SH Needs"
process_deps(file,var.needs)
if var.needed_by != []:
var.needed_by.sort()
print >>file, ".SH Needed by"
process_deps(file,var.needed_by)
file.close()
######################################################################
def run():
import parsed_text
file = open("irpf90_entities","w")
for v in variables.keys():
do_print_short(file,variables[v])
file.close()
for v in variables.keys():
do_print(variables[v])
######################################################################
if __name__ == '__main__':
run()