1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
|
--- ----------------------------------------------------------------------------
--- This module creates all datatypes to represent the entities and
--- relations of a relational (SQLite) database corresponding to a
--- logical ER model specified in a file `x_ERDT.term` (which is
--- a transformed ER-Model that was translated by erd2curry).
--- It produces a Curry program `x_CDBI.curry` and a file
--- `x_SQLCODE.info` that is used when embedded SQL statements are
--- translated by the Curry preprocessor `currypp`.
---
--- @author Mike Tallarek, extensions by Julia Krone
--- @version 0.2
--- ----------------------------------------------------------------------------
{-# OPTIONS_CYMAKE -Wno-incomplete-patterns #-}
import AbstractCurry.Types
import AbstractCurry.Pretty
import AbstractCurry.Build
import Char ( toLower, toUpper )
import Database.ERD
import Database.ERDGoodies
import Directory ( doesFileExist )
import Distribution ( installDir )
import qualified FilePath as FP ( (</>), combine, splitFileName)
import IO
import IOExts ( connectToCommand )
import List
import Pretty
import ReadShowTerm ( readsQTerm )
import SetFunctions ( selectValue, set2 )
import System
import Time
-- Takes a x_ERD.term or x_ERDT.term (an ER-Model translated by erd2curry)
-- and the absolute path to the database.
-- Creates a SQLite database (if it does not exist,
-- a .curry program with all datatypes
-- and an .info-file for the CurryPP-SQLParser
main :: IO ()
main = do
args <- getArgs
case args of
[erdfname, dbPath] -> do erdterm <- translateERD2ERDT erdfname
writeCDBI erdfname erdterm dbPath
_ -> showUsageString
showUsageString :: IO ()
showUsageString = do
putStrLn $ unlines
["Usage: curry erd2cdbi <ERD file> <DB path>",
"",
"<ERD file>: name of file containing ERD specification",
"<DB path> : absolute path to database (including name of database)>"]
exitWith 1
-- Translate the ERD file, if it is not a ERDT file, into ERDT format
-- by the use of erd2curry tools, and read ERDT file:
translateERD2ERDT :: String -> IO ERD
translateERD2ERDT erdfname = do
erdterm <- readERDTermFile erdfname
let (dir,file) = FP.splitFileName erdfname
erdtfile = erdName erdterm ++ "_ERDT.term"
if file == erdtfile
then return erdterm
else do system (unwords [installDir FP.</> "bin" FP.</> "curry", "erd2curry",
"-t ",erdfname])
readERDTermFile (FP.combine dir erdtfile)
-- Write all the data so CDBI can be used, create a database
-- when option is set and a .info file
writeCDBI :: String -> ERD -> String -> IO ()
writeCDBI erdfname (ERD name ents rels) dbPath = do
let cdbiMod = name++"_CDBI"
cdbiFile = cdbiMod++".curry"
imports = [ "Time"
, "Database.CDBI.ER"
, "Database.CDBI.Criteria"
, "Database.CDBI.Connection"
, "Database.CDBI.Description"]
typeDecls = foldr ((++) . (getEntityTypeDecls cdbiMod)) [] ents
funcDecls = genDBPathFunc cdbiMod dbPath :
foldr ((++) . (getEntityFuncDecls cdbiMod)) [] ents
writeFile cdbiFile $
"--- This file has been generated from `"++erdfname++"`\n"++
"--- and contains definitions for all entities and relations\n"++
"--- specified in this model.\n\n"++
pPrint (ppCurryProg defaultOptions
(CurryProg (name++"_CDBI") imports typeDecls funcDecls []))
infofilehandle <- openFile (name++"_SQLCode.info") WriteMode
writeParserFile infofilehandle name ents rels dbPath
hClose infofilehandle
dbexists <- doesFileExist dbPath
if dbexists
then do
putStrLn $ "Database '" ++ dbPath ++ "' exists and, thus, not modified."
putStrLn $ "Please make sure that this database is conform to the ER model!"
-- TODO: if the database exists, check its consistency with ER model
else do
putStrLn $ "Creating new sqlite3 database: " ++ dbPath
db <- connectToCommand $ "sqlite3 " ++ dbPath
createDatabase ents db
hClose db
genDBPathFunc :: String -> String -> CFuncDecl
genDBPathFunc mname dbPath =
cmtfunc "The name of the SQLite database file."
(mname,"sqliteDBFile")
0 Public stringType [simpleRule [] (string2ac dbPath)]
-- -----writing .info-file containing auxiliary data for parsing -------------
-- Auxiliary definitions for qualified names in AbstractCurry
mDescription :: String
mDescription = "Database.CDBI.Description"
mConnection :: String
mConnection = "Database.CDBI.Connection"
--generates an AbstractCurry expression representing the parser information
-- and writes it to the file
writeParserFile :: Handle ->
String ->
[Entity] ->
[Relationship] ->
String ->
IO()
writeParserFile infofilehandle name ents rels dbPath = do
hPutStrLn infofilehandle
(pPrint (ppCExpr defaultOptions
(applyE (CSymbol ("SQLParserInfoType", "PInfo"))
[string2ac dbPath,
string2ac (name++"_CDBI"),
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)
-- generates data term for each relationship
-- depending on its type
getRelationTypes :: [Entity] -> Relationship -> [CExpr]
getRelationTypes ents rel = selectValue (set2 getrelationtypes ents rel)
-- Non-deterministic implementation:
getrelationtypes :: [Entity] -> Relationship -> [CExpr]
getrelationtypes ents (Relationship
""
[REnd e1Name _ _, REnd e2Name reName _]) =
[tupleExpr [tupleExpr (map string2ac
[e1Name, reName,
(getCorEnt ents e1Name e2Name)]),
applyE (CSymbol ("SQLParserInfoType","MtoN"))
[(string2ac e2Name)]],
tupleExpr [tupleExpr (map string2ac
[e1Name, e2Name,
(getCorEnt ents e1Name e2Name)]),
applyE (CSymbol ("SQLParserInfoType","MtoN"))
[(string2ac e2Name)]]]
getrelationtypes _ (Relationship
rName
[REnd e1Name re1Name (Between 0 _),
REnd e2Name re2Name (Exactly 1)]) =
[tupleExpr [tupleExpr (map string2ac
[e2Name, re1Name, e1Name]),
applyE (CSymbol ("SQLParserInfoType","OnetoN"))
[(string2ac rName)]],
tupleExpr [tupleExpr (map string2ac
[e1Name, re2Name, e2Name]),
applyE (CSymbol ("SQLParserInfoType", "NtoOne"))
[(string2ac rName)]]]
getrelationtypes _ (Relationship
rName@(_:_)
[REnd e1Name re1Name (Exactly 1),
REnd e2Name re2Name (Between 0 _)]) =
[tupleExpr [tupleExpr (map string2ac
[e2Name, re1Name, e1Name]),
applyE (CSymbol ("SQLParserInfoType", "NtoOne"))
[(string2ac rName)]],
tupleExpr [tupleExpr (map string2ac
[e1Name, re2Name, e2Name]),
applyE (CSymbol ("SQLParserInfoType", "OnetoN"))
[(string2ac rName)]]]
getrelationtypes _ (Relationship
rName
[REnd e1Name re1Name (Between _ _),
REnd e2Name re2Name (Between 0 (Max 1))]) =
[tupleExpr [tupleExpr (map string2ac
[e2Name, re1Name, e1Name]),
applyE (CSymbol ("SQLParserInfoType", "OnetoN"))
[(string2ac rName)]],
tupleExpr [tupleExpr (map string2ac
[e1Name, re2Name, e2Name]),
applyE (CSymbol ("SQLParserInfoType", "NtoOne"))
[(string2ac rName)]]]
getrelationtypes _ (Relationship
rName
[REnd e1Name re1Name (Between 0 (Max 1)),
REnd e2Name re2Name (Between _ _)]) =
[tupleExpr [tupleExpr (map string2ac
[e2Name, re1Name, e1Name]),
applyE (CSymbol ("SQLParserInfoType", "NtoOne"))
[(string2ac rName)]],
tupleExpr [tupleExpr (map string2ac
[e1Name, re2Name, e2Name]),
applyE (CSymbol ("SQLParserInfoType","OnetoN"))
[(string2ac rName)]]]
--finding second entity belonging to an MtoN relationship
getCorEnt :: [Entity] -> String -> String -> String
getCorEnt [] _ _ = "" -- this should not happen
getCorEnt ((Entity name attrs):ents) eName rName =
if name == rName
then checkAttributes attrs eName
else getCorEnt ents eName rName
where checkAttributes ((Attribute _ typ _ _):atts) n =
case typ of
(KeyDom kName) -> if kName == n
then checkAttributes atts n
else kName
_ -> checkAttributes atts n
checkAttributes [] _ = "" --should not happen
-- generates data term providing for each attribute (name)
-- if it is nullable or not
getNullableAttr :: Entity -> [CExpr]
getNullableAttr (Entity name attrs) = (map (getNullValue name) attrs)
getNullValue :: String -> Attribute -> CExpr
getNullValue (e:name) (Attribute aName _ _ nullable) =
tupleExpr [string2ac ((toLower e):name ++ aName)
, (CSymbol (pre (show nullable)))]
-- generates data term providing the type of each attribute
getAttrTypes :: Entity -> [CExpr]
getAttrTypes (Entity name attrs) =
(map (getTypeOf name) attrs)
getTypeOf :: String -> Attribute -> CExpr
getTypeOf (e:name) (Attribute aName domain key _) =
case domain of
(IntDom _ ) -> case key of
PKey -> tupleExpr [string2ac((toLower e):name
++aName),
string2ac ((toUpper e):name)]
NoKey -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "int"]
Unique -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "int"]
(FloatDom _ ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "float"]
(CharDom _ ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "char"]
(StringDom _ ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "string"]
(BoolDom _ ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "bool"]
(DateDom _ ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac "date"]
(KeyDom e2Name ) -> tupleExpr [string2ac ((toLower e):name
++aName),
string2ac e2Name]
-- generates data term providing for each tableName the list of its attributes
getAttrList :: Entity -> CExpr
getAttrList (Entity name attrs) =
tupleExpr [(string2ac (lowerCase name)),
tupleExpr [(string2ac name), (list2ac (map selectAttr attrs))]]
where selectAttr (Attribute aname _ _ _) = string2ac aname
-- ------- writing file containing all type needed for use of CDBI ------------
-- Generates the declaration of datatype and ID-type for each entity.
getEntityTypeDecls :: String -> Entity -> [CTypeDecl]
getEntityTypeDecls mName ent =
[(writeDatatype mName ent), (writeID mName ent)]
-- Generates a entity-datatype based on an entity.
writeDatatype :: String -> Entity -> CTypeDecl
writeDatatype mName (Entity name attrs) =
CType (mName, name) Public [] [(CCons (mName, name)
Public
(map (writeAttributes mName name) attrs))]
-- Generates a ID-datatype based on an entity.
writeID :: String -> Entity -> CTypeDecl
writeID mName (Entity name _) =
CType (mName, (name++"ID")) Public [] [(CCons (mName, (name ++"ID"))
Public
[intType])]
-- Generates all function declarations for an entity.
getEntityFuncDecls :: String -> Entity -> [CFuncDecl]
getEntityFuncDecls mName ent =
[(writeDescription mName ent),
(writeTables mName ent)]++
(writeColumns mName ent)++
(writeColumnDescriptions mName ent)++
(writeGetterSetters mName ent)++
(writeKeyToValueFunc mName ent)
-- Generates an entity-description based on an entity.
writeDescription :: String -> Entity -> CFuncDecl
writeDescription mName (Entity name attrs) =
cmtfunc ("The ER description of the `" ++ name ++ "` entity.")
(mName, (firstLow name ++ "_CDBI_Description" ))
0
Public
(CTCons (mDescription, "EntityDescription") [baseType (mName, name)])
[(simpleRule [] (applyE (CSymbol (mDescription, "ED"))
[(string2ac name),
(list2ac (map writeTypes attrs)),
(writeTransFunOne mName name attrs),
(writeTransFunTwo mName name attrs),
(writeTransFunThree mName name attrs)]))]
-- Generates a table-type based on an entity.
writeTables :: String -> Entity -> CFuncDecl
writeTables mName (Entity name _) =
cmtfunc ("The database table of the `" ++ name ++ "` entity.")
(mName, firstLow name ++ "Table")
0
Public
(CTCons (mDescription, "Table") [])
[(simpleRule [] (string2ac name))]
-- Generates Column Descriptions based on an entity.
writeColumnDescriptions :: String -> Entity -> [CFuncDecl]
writeColumnDescriptions mName (Entity name attrs) =
map (writeColumnDescription mName name) attrs
writeColumnDescription :: String -> String -> Attribute -> CFuncDecl
writeColumnDescription mName name a@(Attribute atr _ _ _) =
cmtfunc ("The description of the database column `" ++ atr ++
"` of the `" ++ name ++ "` entity.")
(mName, firstLow name ++ atr ++ "ColDesc")
0
Public
(CTCons (mDescription, "ColumnDescription")
[(writeAttributes mName name a)])
[(simpleRule [] (applyE (CSymbol (mDescription, "ColDesc"))
[(string2ac ("\"" ++ name ++ "\"." ++ "\""
++ atr ++ "\"")),
(writeTypes a),
(CLambda [(writeAttrLeftOneTwo mName name a)]
(writeAttrRightOneTwo 1 a)),
(CLambda [(writeAttrLeftThree a)]
(writeAttrRightThree mName name a))]))]
-- Generates all needed column-functions based on an entity.
writeColumns :: String -> Entity -> [CFuncDecl]
writeColumns mName (Entity name attrs) =
map (writeColumn mName name ) attrs
-- Generates a column-function from an attribute.
writeColumn :: String -> String -> Attribute -> CFuncDecl
writeColumn mName name a@(Attribute atr _ _ _) =
cmtfunc ("The database column `" ++ atr ++
"` of the `" ++ name ++ "` entity.")
(mName, firstLow name ++ "Column" ++ atr)
0
Public
(CTCons (mDescription, "Column") [(getAttributeType mName name a)])
[(simpleRule [] (applyE (CSymbol (mDescription, "Column"))
[(string2ac ("\"" ++ atr ++ "\"")),
(string2ac ("\"" ++ name ++ "\"."
++ "\"" ++ atr ++ "\"")) ]))]
getAttributeType :: String -> String -> Attribute -> CTypeExpr
getAttributeType mName eName (Attribute atr dom _ _) =
if atr == "Key" then baseType (mName, eName ++ "ID")
else getType mName dom
-- Get the type of a domain as CExpr.
getType :: String -> Domain -> CTypeExpr
getType _ (IntDom _) = intType
getType _ (FloatDom _) = floatType
getType _ (CharDom _) = (baseType (pre "Char"))
getType _ (StringDom _) = stringType
getType _ (BoolDom _) = boolType
getType _ (DateDom _) = (baseType ("Time", "ClockTime"))
getType mName (KeyDom name) = (baseType (mName ,(name++"ID")))
-- Generates all getter and setter methods based on an entity.
writeGetterSetters :: String -> Entity -> [CFuncDecl]
writeGetterSetters mName (Entity name attrs) =
let indAttrs = zip attrs [1..(length attrs)]
in (map (writeGetter mName name (length attrs)) indAttrs) ++
(map (writeSetter mName name (length attrs)) indAttrs)
-- Generates a setter method based on an attribute.
writeSetter :: String -> String -> Int -> (Attribute, Int) -> CFuncDecl
writeSetter mName eName len (att@(Attribute name _ _ _), i) =
cmtfunc ("Sets the attribute `" ++ name ++
"` of the `" ++ eName ++ "` entity.")
(mName, ("set" ++ eName ++ name))
2
Public
((baseType (mName, eName)) ~> (writeAttributes mName eName att)
~> (baseType (mName, eName)))
[(simpleRule [(CPComb (mName, eName) (createParametersLeft i (len-i))),
(cpvar "a")]
(applyE (CSymbol (mName, eName))
(createParametersRight i (len-i))))]
-- Generates a getter method based on an attribute.
writeGetter :: String -> String -> Int -> (Attribute, Int) -> CFuncDecl
writeGetter mName eName len (att@(Attribute name _ _ _), i) =
cmtfunc ("Gets the attribute `" ++ name ++
"` of the `" ++ eName ++ "` entity.")
(mName, ((firstLow eName) ++ name))
1
Public
((baseType (mName, eName)) ~> (writeAttributes mName eName att))
[(simpleRule [CPComb (mName, eName) (createUnderscores i (len-i))]
(cvar "a"))]
-- Auxiliary function for writeGetterSetter that creates the needed
-- amount of underscores and places the "a" at the correct position
createUnderscores :: Int -> Int -> [CPattern]
createUnderscores ind len = case ind of
0 -> case len of
0 -> []
n -> (cpvar "_") : (createUnderscores 0 $ n-1)
1 -> (cpvar "a") : (createUnderscores 0 len)
n -> (cpvar "_") : (createUnderscores (n-1) len)
-- Auxiliary function for writeGetterSetter that creates the needed
-- amount of parameters for setter-functions on the left side
createParametersLeft :: Int -> Int -> [CPattern]
createParametersLeft ind len = case ind of
0 -> case len of
0 -> []
n -> (cpvar ("b" ++ (show n))):(createParametersLeft 0 $ n-1)
1 -> (cpvar "_"): (createParametersLeft 0 len)
n -> (cpvar ("a" ++ (show n))) : (createParametersLeft (n-1) len)
-- Auxiliary function for writeGetterSetter that creates the needed amount
-- of parameters for setter-functions on the right side
createParametersRight :: Int -> Int -> [CExpr]
createParametersRight ind len = case ind of
0 -> case len of
0 -> []
n -> (cvar ("b" ++ (show n))) : (createParametersRight 0 $ n-1)
1 -> (cvar ("a")) : (createParametersRight 0 len)
n -> (cvar ("a" ++ (show n))) : (createParametersRight (n-1) len)
-- Generates the first conversion function in the entity-description
writeTransFunOne :: String -> String -> [Attribute] -> CExpr
writeTransFunOne mName name attrs =
CLambda [(CPComb (mName, name)
(map (writeAttrLeftOneTwo mName name) attrs))]
(list2ac (map (writeAttrRightOneTwo 1) attrs))
-- Generates the second conversion function in the entity-description
writeTransFunTwo :: String -> String -> [Attribute] -> CExpr
writeTransFunTwo mName name attrs =
CLambda [(CPComb (mName, name)
(map (writeAttrLeftOneTwo mName name) attrs))]
(list2ac (map (writeAttrRightOneTwo 2 ) attrs))
-- Generates the third conversion function in the entity-description
writeTransFunThree :: String -> String -> [Attribute] -> CExpr
writeTransFunThree mName name attrs =
CLambda [(listPattern (map writeAttrLeftThree attrs))]
(applyE (CSymbol (mName, name))
(map (writeAttrRightThree mName name) attrs))
--Generates left-hand-side of first and second conversion function.
writeAttrLeftOneTwo :: String -> String -> Attribute -> CPattern
writeAttrLeftOneTwo mName _ (Attribute (a:b) dom NoKey _) =
case dom of
KeyDom c -> (CPComb (mName, (c++"ID")) [cpvar ((toLower a):b)])
_ -> cpvar ((toLower a):b)
writeAttrLeftOneTwo mName _ (Attribute (a:b) dom Unique _) =
case dom of
KeyDom c -> (CPComb (mName, (c++"ID")) [cpvar ((toLower a):b)])
_ -> cpvar ((toLower a):b)
writeAttrLeftOneTwo mName _ (Attribute (a:b) (KeyDom c) PKey _) =
(CPComb (mName, (c++"ID")) [cpvar ((toLower a):b)])
writeAttrLeftOneTwo mName name (Attribute (a:b) (IntDom _) PKey _) =
(CPComb (mName, (name++"ID")) [cpvar ((toLower a):b)])
--Generates right-hand-side of first and second conversion function.
writeAttrRightOneTwo :: Int -> Attribute -> CExpr
writeAttrRightOneTwo 1 (Attribute (a:b) (IntDom _) _ False) =
applyE (CSymbol (mConnection, "SQLInt")) [cvar ((toLower a):b)]
writeAttrRightOneTwo 2 (Attribute name@(a:b) (IntDom _) _ False) =
if name == "Key"
then (constF (mConnection, "SQLNull"))
else (applyE (CSymbol (mConnection, "SQLInt")) [cvar ((toLower a):b)])
writeAttrRightOneTwo _ (Attribute (a:b) (IntDom _) _ True) =
applyF (mDescription, "sqlIntOrNull") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (FloatDom _) _ False) =
applyE (CSymbol (mConnection, "SQLFloat")) [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (FloatDom _) _ True) =
applyF (mDescription, "sqlFloatOrNull") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (CharDom _) _ False) =
applyE (CSymbol (mConnection, "SQLChar")) [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (CharDom _) _ True) =
applyF (mDescription, "sqlCharOrNull") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (StringDom _) _ False) =
applyE (CSymbol (mConnection, "SQLString")) [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (StringDom _) _ True) =
applyF (mDescription, "sqlString") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (BoolDom _) _ False) =
applyE (CSymbol (mConnection, "SQLBool")) [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (BoolDom _) _ True) =
applyF (mDescription, "sqlBoolOrNull") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (DateDom _) _ False) =
applyE (CSymbol (mConnection, "SQLDate")) [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (DateDom _) _ True) =
applyF (mDescription, "sqlDateOrNull") [cvar ((toLower a):b)]
writeAttrRightOneTwo _ (Attribute (a:b) (KeyDom _) _ False) =
applyE (CSymbol (mConnection, "SQLInt")) [cvar ((toLower a):b)]
--Generates left-hand-side of third conversion function.
writeAttrLeftThree :: Attribute -> CPattern
writeAttrLeftThree (Attribute (a:b) (IntDom _) _ False) =
CPComb (mConnection, "SQLInt") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (FloatDom _) _ False) =
CPComb (mConnection, "SQLFloat") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (CharDom _) _ False) =
CPComb (mConnection, "SQLChar") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (StringDom _) _ False) =
CPComb (mConnection, "SQLString") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (BoolDom _) _ False) =
CPComb (mConnection, "SQLBool") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (DateDom _) _ False) =
CPComb (mConnection, "SQLDate") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) (KeyDom _) _ False) =
CPComb (mConnection, "SQLInt") [cpvar ((toLower a):b)]
writeAttrLeftThree (Attribute (a:b) _ _ True) =
cpvar ((toLower a):b)
--Generates right-hand-side of third conversion function
writeAttrRightThree ::String -> String -> Attribute -> CExpr
writeAttrRightThree _ _ (Attribute (a:b) (IntDom _) NoKey True) =
applyF (mDescription, "intOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (FloatDom _) NoKey True) =
applyF (mDescription, "floatOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (CharDom _) NoKey True) =
applyF (mDescription, "charOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (StringDom _) NoKey True) =
applyF (mDescription, "fromStringOrNull") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (BoolDom _) NoKey True) =
applyF (mDescription, "boolOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (DateDom _) NoKey True) =
applyF (mDescription, "dateOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree mName _ (Attribute (a:b) (KeyDom c) NoKey True) =
applyE (CSymbol (mName, (c++"ID"))) [(applyF (mDescription, "intOrNothing")
[cvar ((toLower a):b)])]
writeAttrRightThree _ _ (Attribute (a:b) (IntDom _) Unique True) =
applyF (mDescription, "intOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (FloatDom _) Unique True) =
applyF (mDescription, "floatOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (CharDom _) Unique True) =
applyF (mDescription, "charOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (StringDom _) Unique True) =
applyF (mDescription, "fromStringOrNull") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (BoolDom _) Unique True) =
applyF (mDescription, "boolOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree _ _ (Attribute (a:b) (DateDom _) Unique True) =
applyF (mDescription, "dateOrNothing") [cvar ((toLower a):b)]
writeAttrRightThree mName _ (Attribute (a:b) (KeyDom c) Unique True) =
applyE (CSymbol (mName, (c++"ID"))) [(applyF (mDescription, "intOrNothing")
[cvar ((toLower a):b)])]
writeAttrRightThree mName _ (Attribute (a:b) dom NoKey False) =
case dom of
(KeyDom d) -> applyE (CSymbol (mName, (d++"ID"))) [(cvar ((toLower a):b))]
_ -> cvar ((toLower a):b)
writeAttrRightThree mName _ (Attribute (a:b) dom Unique False) =
case dom of
(KeyDom d) -> applyE (CSymbol (mName, (d++"ID"))) [(cvar ((toLower a):b))]
_ -> cvar ((toLower a):b)
writeAttrRightThree mName _ (Attribute (a:b) (KeyDom c) PKey _) =
applyE (CSymbol (mName, (c++"ID"))) [(cvar ((toLower a):b))]
writeAttrRightThree mName name (Attribute (a:b) (IntDom _) PKey _) =
applyE (CSymbol (mName, (name++"ID"))) [(cvar ((toLower a):b))]
-- Generates the attribute types to create an entity-datatype.
writeAttributes :: String -> String -> Attribute -> CTypeExpr
writeAttributes _ _ (Attribute _ (IntDom _) _ True) = maybeType intType
writeAttributes mName name (Attribute a (IntDom _) _ False) =
case a of
"Key" -> baseType (mName , (name++"ID"))
_ -> intType
writeAttributes _ _ (Attribute _ (FloatDom _) _ null) =
addMaybeIfNull null floatType
writeAttributes _ _ (Attribute _ (CharDom _) _ null) =
addMaybeIfNull null (baseType (pre "Char"))
writeAttributes _ _ (Attribute _ (StringDom _) _ _) = stringType
writeAttributes _ _ (Attribute _ (BoolDom _) _ n) = addMaybeIfNull n boolType
writeAttributes _ _ (Attribute _ (DateDom _) _ null) =
addMaybeIfNull null (baseType ("Time", "ClockTime"))
writeAttributes mName _ (Attribute _ (KeyDom k) _ null) =
addMaybeIfNull null (baseType (mName ,(k++"ID")))
addMaybeIfNull :: Bool -> CTypeExpr -> CTypeExpr
addMaybeIfNull isnull texp = if isnull then maybeType texp else texp
-- Generates attribute types to create an entity-description.
writeTypes :: Attribute -> CExpr
writeTypes (Attribute _ (IntDom _) _ _) = CSymbol (mConnection, "SQLTypeInt")
writeTypes (Attribute _ (FloatDom _) _ _) = CSymbol (mConnection, "SQLTypeFloat")
writeTypes (Attribute _ (CharDom _) _ _) = CSymbol (mConnection, "SQLTypeChar")
writeTypes (Attribute _ (StringDom _) _ _) = CSymbol (mConnection, "SQLTypeString")
writeTypes (Attribute _ (BoolDom _) _ _) = CSymbol (mConnection, "SQLTypeBool")
writeTypes (Attribute _ (DateDom _) _ _) = CSymbol (mConnection, "SQLTypeDate")
writeTypes (Attribute _ (KeyDom _) _ _) = CSymbol (mConnection, "SQLTypeInt")
--Generates id-to-Value function based on an entity.
writeKeyToValueFunc :: String -> Entity -> [CFuncDecl]
writeKeyToValueFunc mName (Entity name attrs) =
case (head attrs) of
(Attribute "Key" _ PKey _ ) ->
[cfunc (mName , ((firstLow name) ++ "ID"))
1
Public
((baseType (mName, ((name ++"ID")))) ~>
(CTCons ("Database.CDBI.Criteria", "Value")
[(baseType (mName, (name++"ID")))]))
[(simpleRule [(writeAttrLeftOneTwo mName name (head attrs))]
(applyF ("Database.CDBI.Criteria", "idVal")
[(cvar "key")]))]]
_ -> []
-- Creates a sqlite3-database (sqlite3 needs to be installed)
createDatabase :: [Entity] -> Handle -> IO ()
createDatabase ents db = mapIO_ (\ent -> (createDatabase' ent)) ents
where
createDatabase' (Entity name (a:atr)) =
case a of
(Attribute "Key" _ _ _) -> do
hPutStrLn db ("create table '" ++ name ++ "'(" ++
(foldl (\y x -> y ++ " ," ++ (writeDBAttributes x))
(writeDBAttributes a)
atr) ++ ");")
_ -> do let str = ("create table '" ++ name ++ "'(" ++
(foldl (\y x -> y ++ " ," ++ (writeDBRelationship x))
(writeDBRelationship a)
atr) ++
", primary key (" ++
(writePrimaryKey (a:atr)) ++ "));")
hPutStrLn db str
-- Write Attribute for table-creation (Used when first Attribute
-- of Entity is named "Key" because the primary key will be that "Key" then)
writeDBAttributes :: Attribute -> String
writeDBAttributes (Attribute name ty key nullable) =
"'" ++ name ++ "'" ++
(case ty of
IntDom Nothing -> ""
IntDom _ -> " int"
FloatDom _ -> " float"
CharDom _ -> " char"
StringDom _ -> " string"
BoolDom _ -> " boolean"
DateDom _ -> " string"
KeyDom str -> " int " ++ "REFERENCES '" ++ str ++ "'(Key)") ++
(case key of
PKey -> " integer primary key"
Unique -> " unique"
NoKey -> "") ++
(case nullable of
True -> ""
False -> if key == PKey then ""
else " not null")
-- Same as writeDBAttributes but for the case that the first Attribute of
-- Entity is not named "Key", because there will be a combined primary key then
-- and the string needs to be built a little different then
writeDBRelationship :: Attribute -> String
writeDBRelationship (Attribute name ty key nullable) =
"'" ++ name ++ "'" ++
(case ty of
IntDom _ -> " int"
FloatDom _ -> " float "
CharDom _ -> " char "
StringDom _ -> " string "
BoolDom _ -> " boolean "
DateDom _ -> " string "
KeyDom str -> " int " ++ "REFERENCES '" ++ str ++"'(Key)")
++ (case key of
Unique -> " unique"
_ -> "")
++ (case nullable of
True -> ""
False -> " not null")
-- Write a combined primary key
writePrimaryKey :: [Attribute] -> String
writePrimaryKey ((Attribute name _ PKey _):atr) =
"'" ++ name ++ "'" ++
(case (writePrimaryKey atr) of
"" -> ""
x -> ", " ++ x)
writePrimaryKey ((Attribute _ _ Unique _):atr) = writePrimaryKey atr
writePrimaryKey ((Attribute _ _ NoKey _):atr) = writePrimaryKey atr
writePrimaryKey [] = ""
firstLow :: String -> String
firstLow [] = []
firstLow (s:str) = (toLower s):str
lowerCase :: String -> String
lowerCase str = map toLower str
spaceN :: Int -> String
spaceN n | n == 0 = ""
| otherwise = ' ':(spaceN (n-1))
|