CurryInfo: ertools-3.0.0 / Database.ERD.ToCDBI.writeParserFile

definition:
writeParserFile :: Handle -> String -> [Entity] -> [Relationship] -> String
                -> IO ()
writeParserFile infofilehandle modname ents rels dbname = do
  hPutStrLn infofilehandle 
            (pPrint (ppCExpr (setNoQualification defaultOptions)
                             (applyE (pinfoType "PInfo")
                                     [string2ac dbname,
                                      string2ac modname,
                                      relations, 
                                      nullables,
                                      attributes,
                                      attrTypes])))  
 where relations  = list2ac (foldr ((++) . getRelationTypes ents) [] rels)
       nullables  = list2ac (foldr ((++) . getNullableAttr) [] ents) 
       attributes = list2ac (map getAttrList ents)
       attrTypes  = list2ac (foldr ((++) . getAttrTypes) [] ents) 
demand:
no demanded arguments
deterministic:
deterministic operation
documentation:
-- generates an AbstractCurry expression representing the parser information
-- and writes it to the file
failfree:
<FAILING>
indeterministic:
referentially transparent operation
infix:
no fixity defined
iotype:
{(_,_,_,_,_) |-> _}
name:
writeParserFile
precedence:
no precedence defined
result-values:
_
signature:
System.IO.Handle -> String -> [Database.ERD.Entity]
-> [Database.ERD.Relationship] -> String -> Prelude.IO ()
solution-complete:
operation might suspend on free variables
terminating:
possibly non-terminating
totally-defined:
possibly non-reducible on same data term