annotate lib/basis.urs @ 453:787d4931fb07

Almost have that nested save function compiling
author Adam Chlipala <adamc@hcoop.net>
date Sat, 01 Nov 2008 21:19:43 -0400
parents 222cbc1da232
children 1a4fa157fedd
rev   line source
adamc@56 1 type int
adamc@56 2 type float
adamc@56 3 type string
adamc@436 4 type time
adamc@91 5
adamc@119 6 type unit = {}
adamc@119 7
adamc@186 8 datatype bool = False | True
adamc@186 9
adamc@288 10 datatype option t = None | Some of t
adamc@284 11
adamc@91 12
adamc@256 13 (** Basic type classes *)
adamc@256 14
adamc@256 15 class eq
adamc@256 16 val eq : t ::: Type -> eq t -> t -> t -> bool
adamc@257 17 val ne : t ::: Type -> eq t -> t -> t -> bool
adamc@256 18 val eq_int : eq int
adamc@394 19 val eq_float : eq float
adamc@256 20 val eq_string : eq string
adamc@256 21 val eq_bool : eq bool
adamc@437 22 val eq_time : eq time
adamc@422 23 val mkEq : t ::: Type -> (t -> t -> bool) -> eq t
adamc@256 24
adamc@389 25 class num
adamc@417 26 val zero : t ::: Type -> num t -> t
adamc@389 27 val neg : t ::: Type -> num t -> t -> t
adamc@389 28 val plus : t ::: Type -> num t -> t -> t -> t
adamc@389 29 val minus : t ::: Type -> num t -> t -> t -> t
adamc@389 30 val times : t ::: Type -> num t -> t -> t -> t
adamc@389 31 val div : t ::: Type -> num t -> t -> t -> t
adamc@389 32 val mod : t ::: Type -> num t -> t -> t -> t
adamc@389 33 val num_int : num int
adamc@390 34 val num_float : num float
adamc@389 35
adamc@391 36 class ord
adamc@391 37 val lt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 38 val le : t ::: Type -> ord t -> t -> t -> bool
adamc@391 39 val gt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 40 val ge : t ::: Type -> ord t -> t -> t -> bool
adamc@391 41 val ord_int : ord int
adamc@394 42 val ord_float : ord float
adamc@394 43 val ord_string : ord string
adamc@394 44 val ord_bool : ord bool
adamc@437 45 val ord_time : ord time
adamc@391 46
adamc@256 47
adamc@283 48 (** String operations *)
adamc@283 49
adamc@283 50 val strcat : string -> string -> string
adamc@283 51
adamc@286 52 class show
adamc@286 53 val show : t ::: Type -> show t -> t -> string
adamc@286 54 val show_int : show int
adamc@286 55 val show_float : show float
adamc@286 56 val show_string : show string
adamc@286 57 val show_bool : show bool
adamc@436 58 val show_time : show time
adamc@452 59 val mkShow : t ::: Type -> (t -> string) -> show t
adamc@286 60
adamc@290 61 class read
adamc@290 62 val read : t ::: Type -> read t -> string -> option t
adamc@292 63 val readError : t ::: Type -> read t -> string -> t
adamc@292 64 (* [readError] calls [error] if the input is malformed. *)
adamc@290 65 val read_int : read int
adamc@290 66 val read_float : read float
adamc@290 67 val read_string : read string
adamc@290 68 val read_bool : read bool
adamc@436 69 val read_time : read time
adamc@288 70
adamc@283 71
adamc@203 72 (** SQL *)
adamc@203 73
adamc@203 74 con sql_table :: {Type} -> Type
adamc@203 75
adamc@204 76 (*** Queries *)
adamc@204 77
adamc@233 78 con sql_query :: {{Type}} -> {Type} -> Type
adamc@233 79 con sql_query1 :: {{Type}} -> {{Type}} -> {Type} -> Type
adamc@234 80 con sql_exp :: {{Type}} -> {{Type}} -> {Type} -> Type -> Type
adamc@204 81
adamc@223 82 con sql_subset :: {{Type}} -> {{Type}} -> Type
adamc@223 83 val sql_subset : keep_drop :: {({Type} * {Type})}
adamc@354 84 -> sql_subset
adamc@354 85 (fold (fn nm (fields :: ({Type} * {Type}))
adamc@354 86 acc [[nm] ~ acc]
adamc@354 87 [fields.1 ~ fields.2] =>
adamc@354 88 [nm = fields.1 ++ fields.2]
adamc@354 89 ++ acc) [] keep_drop)
adamc@354 90 (fold (fn nm (fields :: ({Type} * {Type}))
adamc@354 91 acc [[nm] ~ acc] =>
adamc@354 92 [nm = fields.1] ++ acc)
adamc@354 93 [] keep_drop)
adamc@354 94 val sql_subset_all : tables :: {{Type}} -> sql_subset tables tables
adamc@223 95
adamc@229 96 val sql_query1 : tables ::: {{Type}}
adamc@354 97 -> grouped ::: {{Type}}
adamc@354 98 -> selectedFields ::: {{Type}}
adamc@354 99 -> selectedExps ::: {Type}
adamc@354 100 -> {From : $(fold (fn nm (fields :: {Type}) acc [[nm] ~ acc] =>
adamc@354 101 [nm = sql_table fields] ++ acc)
adamc@354 102 [] tables),
adamc@354 103 Where : sql_exp tables [] [] bool,
adamc@354 104 GroupBy : sql_subset tables grouped,
adamc@354 105 Having : sql_exp grouped tables [] bool,
adamc@354 106 SelectFields : sql_subset grouped selectedFields,
adamc@354 107 SelectExps : $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 108 [nm = sql_exp grouped tables [] t]
adamc@354 109 ++ acc) [] selectedExps) }
adamc@354 110 -> sql_query1 tables selectedFields selectedExps
adamc@229 111
adamc@229 112 type sql_relop
adamc@229 113 val sql_union : sql_relop
adamc@229 114 val sql_intersect : sql_relop
adamc@229 115 val sql_except : sql_relop
adamc@260 116 val sql_relop : tables1 ::: {{Type}}
adamc@354 117 -> tables2 ::: {{Type}}
adamc@354 118 -> selectedFields ::: {{Type}}
adamc@354 119 -> selectedExps ::: {Type}
adamc@354 120 -> sql_relop
adamc@354 121 -> sql_query1 tables1 selectedFields selectedExps
adamc@354 122 -> sql_query1 tables2 selectedFields selectedExps
adamc@354 123 -> sql_query1 selectedFields selectedFields selectedExps
adamc@229 124
adamc@230 125 type sql_direction
adamc@230 126 val sql_asc : sql_direction
adamc@230 127 val sql_desc : sql_direction
adamc@230 128
adamc@234 129 con sql_order_by :: {{Type}} -> {Type} -> Type
adamc@234 130 val sql_order_by_Nil : tables ::: {{Type}} -> exps :: {Type} -> sql_order_by tables exps
adamc@234 131 val sql_order_by_Cons : tables ::: {{Type}} -> exps ::: {Type} -> t ::: Type
adamc@354 132 -> sql_exp tables [] exps t -> sql_direction
adamc@354 133 -> sql_order_by tables exps
adamc@354 134 -> sql_order_by tables exps
adamc@230 135
adamc@231 136 type sql_limit
adamc@231 137 val sql_no_limit : sql_limit
adamc@231 138 val sql_limit : int -> sql_limit
adamc@354 139
adamc@232 140 type sql_offset
adamc@232 141 val sql_no_offset : sql_offset
adamc@232 142 val sql_offset : int -> sql_offset
adamc@232 143
adamc@229 144 val sql_query : tables ::: {{Type}}
adamc@354 145 -> selectedFields ::: {{Type}}
adamc@354 146 -> selectedExps ::: {Type}
adamc@354 147 -> {Rows : sql_query1 tables selectedFields selectedExps,
adamc@354 148 OrderBy : sql_order_by tables selectedExps,
adamc@354 149 Limit : sql_limit,
adamc@354 150 Offset : sql_offset}
adamc@354 151 -> sql_query selectedFields selectedExps
adamc@204 152
adamc@354 153 val sql_field : otherTabs ::: {{Type}} -> otherFields ::: {Type}
adamc@354 154 -> fieldType ::: Type -> agg ::: {{Type}}
adamc@354 155 -> exps ::: {Type}
adamc@354 156 -> tab :: Name -> field :: Name
adamc@354 157 -> sql_exp
adamc@354 158 ([tab = [field = fieldType] ++ otherFields] ++ otherTabs)
adamc@354 159 agg exps fieldType
adamc@234 160
adamc@354 161 val sql_exp : tabs ::: {{Type}} -> agg ::: {{Type}} -> t ::: Type -> rest ::: {Type}
adamc@354 162 -> nm :: Name
adamc@354 163 -> sql_exp tabs agg ([nm = t] ++ rest) t
adamc@209 164
adamc@221 165 class sql_injectable
adamc@221 166 val sql_bool : sql_injectable bool
adamc@221 167 val sql_int : sql_injectable int
adamc@221 168 val sql_float : sql_injectable float
adamc@221 169 val sql_string : sql_injectable string
adamc@437 170 val sql_time : sql_injectable time
adamc@354 171 val sql_inject : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 172 -> t ::: Type
adamc@354 173 -> sql_injectable t -> t -> sql_exp tables agg exps t
adamc@209 174
adamc@220 175 con sql_unary :: Type -> Type -> Type
adamc@220 176 val sql_not : sql_unary bool bool
adamc@354 177 val sql_unary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 178 -> arg ::: Type -> res ::: Type
adamc@354 179 -> sql_unary arg res -> sql_exp tables agg exps arg
adamc@354 180 -> sql_exp tables agg exps res
adamc@220 181
adamc@220 182 con sql_binary :: Type -> Type -> Type -> Type
adamc@220 183 val sql_and : sql_binary bool bool bool
adamc@220 184 val sql_or : sql_binary bool bool bool
adamc@234 185 val sql_binary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 186 -> arg1 ::: Type -> arg2 ::: Type -> res ::: Type
adamc@354 187 -> sql_binary arg1 arg2 res -> sql_exp tables agg exps arg1
adamc@354 188 -> sql_exp tables agg exps arg2
adamc@354 189 -> sql_exp tables agg exps res
adamc@220 190
adamc@219 191 type sql_comparison
adamc@219 192 val sql_eq : sql_comparison
adamc@219 193 val sql_ne : sql_comparison
adamc@219 194 val sql_lt : sql_comparison
adamc@219 195 val sql_le : sql_comparison
adamc@219 196 val sql_gt : sql_comparison
adamc@219 197 val sql_ge : sql_comparison
adamc@253 198 val sql_comparison : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@236 199 -> t ::: Type
adamc@253 200 -> sql_comparison
adamc@234 201 -> sql_exp tables agg exps t -> sql_exp tables agg exps t
adamc@234 202 -> sql_exp tables agg exps bool
adamc@203 203
adamc@235 204 val sql_count : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 205 -> unit -> sql_exp tables agg exps int
adamc@235 206
adamc@236 207 con sql_aggregate :: Type -> Type
adamc@354 208 val sql_aggregate : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 209 -> t ::: Type
adamc@354 210 -> sql_aggregate t -> sql_exp agg agg exps t
adamc@354 211 -> sql_exp tables agg exps t
adamc@236 212
adamc@236 213 class sql_summable
adamc@236 214 val sql_summable_int : sql_summable int
adamc@236 215 val sql_summable_float : sql_summable float
adamc@236 216 val sql_avg : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 217 val sql_sum : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 218
adamc@236 219 class sql_maxable
adamc@236 220 val sql_maxable_int : sql_maxable int
adamc@236 221 val sql_maxable_float : sql_maxable float
adamc@236 222 val sql_maxable_string : sql_maxable string
adamc@437 223 val sql_maxable_time : sql_maxable time
adamc@236 224 val sql_max : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 225 val sql_min : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 226
adamc@441 227 con sql_nfunc :: Type -> Type
adamc@441 228 val sql_nfunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@441 229 -> t ::: Type
adamc@441 230 -> sql_nfunc t -> sql_exp tables agg exps t
adamc@441 231 val sql_current_timestamp : sql_nfunc time
adamc@441 232
adamc@235 233
adamc@243 234 (*** Executing queries *)
adamc@243 235
adamc@243 236 con transaction :: Type -> Type
adamc@243 237 val return : t ::: Type
adamc@354 238 -> t -> transaction t
adamc@243 239 val bind : t1 ::: Type -> t2 ::: Type
adamc@354 240 -> transaction t1 -> (t1 -> transaction t2)
adamc@354 241 -> transaction t2
adamc@243 242
adamc@354 243 val query : tables ::: {{Type}} -> exps ::: {Type}
adamc@354 244 -> fn [tables ~ exps] =>
adamc@354 245 state ::: Type
adamc@354 246 -> sql_query tables exps
adamc@356 247 -> ($(exps ++ fold (fn nm (fields :: {Type}) acc [[nm] ~ acc] =>
adamc@354 248 [nm = $fields] ++ acc) [] tables)
adamc@354 249 -> state
adamc@354 250 -> transaction state)
adamc@354 251 -> state
adamc@354 252 -> transaction state
adamc@243 253
adamc@243 254
adamc@299 255 (*** Database mutators *)
adamc@299 256
adamc@299 257 type dml
adamc@299 258 val dml : dml -> transaction unit
adamc@299 259
adamc@299 260 val insert : fields ::: {Type}
adamc@354 261 -> sql_table fields
adamc@354 262 -> $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 263 [nm = sql_exp [] [] [] t] ++ acc)
adamc@354 264 [] fields)
adamc@354 265 -> dml
adamc@299 266
adamc@403 267 val update : unchanged ::: {Type} -> changed :: {Type} ->
adamc@354 268 fn [changed ~ unchanged] =>
adamc@354 269 $(fold (fn nm (t :: Type) acc [[nm] ~ acc] =>
adamc@354 270 [nm = sql_exp [T = changed ++ unchanged] [] [] t]
adamc@354 271 ++ acc)
adamc@354 272 [] changed)
adamc@354 273 -> sql_table (changed ++ unchanged)
adamc@354 274 -> sql_exp [T = changed ++ unchanged] [] [] bool
adamc@354 275 -> dml
adamc@299 276
adamc@299 277 val delete : fields ::: {Type}
adamc@354 278 -> sql_table fields
adamc@354 279 -> sql_exp [T = fields] [] [] bool
adamc@354 280 -> dml
adamc@299 281
adamc@338 282 (*** Sequences *)
adamc@338 283
adamc@338 284 type sql_sequence
adamc@338 285 val nextval : sql_sequence -> transaction int
adamc@338 286
adamc@299 287
adamc@203 288 (** XML *)
adamc@203 289
adamc@139 290 con tag :: {Type} -> {Unit} -> {Unit} -> {Type} -> {Type} -> Type
adamc@91 291
adamc@91 292
adamc@139 293 con xml :: {Unit} -> {Type} -> {Type} -> Type
adamc@141 294 val cdata : ctx ::: {Unit} -> use ::: {Type} -> string -> xml ctx use []
adamc@354 295 val tag : attrsGiven ::: {Type} -> attrsAbsent ::: {Type}
adamc@354 296 -> ctxOuter ::: {Unit} -> ctxInner ::: {Unit}
adamc@354 297 -> useOuter ::: {Type} -> useInner ::: {Type}
adamc@354 298 -> bindOuter ::: {Type} -> bindInner ::: {Type}
adamc@354 299 -> fn [attrsGiven ~ attrsAbsent]
adamc@354 300 [useOuter ~ useInner]
adamc@354 301 [bindOuter ~ bindInner] =>
adamc@354 302 $attrsGiven
adamc@354 303 -> tag (attrsGiven ++ attrsAbsent)
adamc@354 304 ctxOuter ctxInner useOuter bindOuter
adamc@354 305 -> xml ctxInner useInner bindInner
adamc@354 306 -> xml ctxOuter (useOuter ++ useInner) (bindOuter ++ bindInner)
adamc@140 307 val join : ctx ::: {Unit}
adamc@139 308 -> use1 ::: {Type} -> bind1 ::: {Type} -> bind2 ::: {Type}
adamc@354 309 -> fn [use1 ~ bind1] [bind1 ~ bind2] =>
adamc@354 310 xml ctx use1 bind1
adamc@354 311 -> xml ctx (use1 ++ bind1) bind2
adamc@354 312 -> xml ctx use1 (bind1 ++ bind2)
adamc@354 313 val useMore : ctx ::: {Unit} -> use1 ::: {Type} -> use2 ::: {Type}
adamc@354 314 -> bind ::: {Type}
adamc@354 315 -> fn [use1 ~ use2] =>
adamc@354 316 xml ctx use1 bind
adamc@354 317 -> xml ctx (use1 ++ use2) bind
adamc@91 318
adamc@110 319 con xhtml = xml [Html]
adamc@139 320 con page = xhtml [] []
adamc@325 321 con xbody = xml [Body] [] []
adamc@326 322 con xtr = xml [Body, Tr] [] []
adamc@361 323 con xform = xml [Body, Form] [] []
adamc@110 324
adamc@204 325 (*** HTML details *)
adamc@204 326
adamc@140 327 con html = [Html]
adamc@140 328 con head = [Head]
adamc@140 329 con body = [Body]
adamc@361 330 con form = [Body, Form]
adamc@332 331 con tabl = [Body, Table]
adamc@332 332 con tr = [Body, Tr]
adamc@93 333
adamc@140 334 val head : unit -> tag [] html head [] []
adamc@140 335 val title : unit -> tag [] head [] [] []
adamc@110 336
adamc@140 337 val body : unit -> tag [] html body [] []
adamc@354 338 con bodyTag = fn (attrs :: {Type}) =>
adamc@354 339 ctx ::: {Unit} ->
adamc@354 340 fn [[Body] ~ ctx] =>
adamc@354 341 unit -> tag attrs ([Body] ++ ctx) ([Body] ++ ctx) [] []
adamc@354 342 con bodyTagStandalone = fn (attrs :: {Type}) =>
adamc@354 343 ctx ::: {Unit}
adamc@354 344 -> fn [[Body] ~ ctx] =>
adamc@354 345 unit -> tag attrs ([Body] ++ ctx) [] [] []
adamc@141 346
adamc@141 347 val br : bodyTagStandalone []
adamc@119 348
adamc@140 349 val p : bodyTag []
adamc@140 350 val b : bodyTag []
adamc@140 351 val i : bodyTag []
adamc@407 352 val tt : bodyTag []
adamc@140 353 val font : bodyTag [Size = int, Face = string]
adamc@140 354
adamc@140 355 val h1 : bodyTag []
adamc@443 356 val h2 : bodyTag []
adamc@443 357 val h3 : bodyTag []
adamc@443 358 val h4 : bodyTag []
adamc@140 359 val li : bodyTag []
adamc@140 360
adamc@410 361 val hr : bodyTag []
adamc@410 362
adamc@280 363 val a : bodyTag [Link = transaction page]
adamc@140 364
adamc@361 365 val form : ctx ::: {Unit} -> bind ::: {Type}
adamc@354 366 -> fn [[Body] ~ ctx] =>
adamc@354 367 xml form [] bind
adamc@354 368 -> xml ([Body] ++ ctx) [] []
adamc@361 369 con formTag = fn (ty :: Type) (inner :: {Unit}) (attrs :: {Type}) =>
adamc@354 370 ctx ::: {Unit}
adamc@361 371 -> fn [[Form] ~ ctx] =>
adamc@354 372 nm :: Name -> unit
adamc@361 373 -> tag attrs ([Form] ++ ctx) inner [] [nm = ty]
adamc@444 374 val textbox : formTag string [] [Value = string, Size = int]
adamc@444 375 val password : formTag string [] [Value = string, Size = int]
adamc@444 376 val textarea : formTag string [] [Rows = int, Cols = int]
adamc@153 377
adamc@361 378 val checkbox : formTag bool [] [Checked = bool]
adamc@190 379
adamc@153 380 con radio = [Body, Radio]
adamc@361 381 val radio : formTag string radio []
adamc@153 382 val radioOption : unit -> tag [Value = string] radio [] [] []
adamc@142 383
adamc@154 384 con select = [Select]
adamc@361 385 val select : formTag string select []
adamc@422 386 val option : unit -> tag [Value = string, Selected = bool] select [] [] []
adamc@154 387
adamc@354 388 val submit : ctx ::: {Unit} -> use ::: {Type}
adamc@361 389 -> fn [[Form] ~ ctx] =>
adamc@354 390 unit
adamc@406 391 -> tag [Value = string, Action = $use -> transaction page]
adamc@361 392 ([Form] ++ ctx) ([Form] ++ ctx) use []
adamc@283 393
adamc@325 394 (*** Tables *)
adamc@325 395
adamc@406 396 val tabl : other ::: {Unit} -> fn [other ~ [Body, Table]] =>
adamc@406 397 unit -> tag [Border = int] ([Body] ++ other) ([Body, Table] ++ other) [] []
adamc@406 398 val tr : other ::: {Unit} -> fn [other ~ [Body, Table, Tr]] =>
adamc@406 399 unit -> tag [] ([Body, Table] ++ other) ([Body, Tr] ++ other) [] []
adamc@406 400 val th : other ::: {Unit} -> fn [other ~ [Body, Tr]] =>
adamc@406 401 unit -> tag [] ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@406 402 val td : other ::: {Unit} -> fn [other ~ [Body, Tr]] =>
adamc@406 403 unit -> tag [] ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@325 404
adamc@283 405
adamc@283 406 (** Aborting *)
adamc@283 407
adamc@283 408 val error : t ::: Type -> xml [Body] [] [] -> t