annotate lib/ur/basis.urs @ 1104:72670131dace

Basis.serialize; separate file for mhash; run transactional finishers in reverse order; set needs_sig properly
author Adam Chlipala <adamc@hcoop.net>
date Thu, 31 Dec 2009 11:41:57 -0500
parents 118ab9641a64
children 951fced704d6
rev   line source
adamc@56 1 type int
adamc@56 2 type float
adamc@56 3 type string
adamc@821 4 type char
adamc@436 5 type time
adamc@737 6 type blob
adamc@91 7
adamc@119 8 type unit = {}
adamc@119 9
adamc@186 10 datatype bool = False | True
adamc@186 11
adamc@288 12 datatype option t = None | Some of t
adamc@284 13
adamc@757 14 datatype list t = Nil | Cons of t * list t
adamc@757 15
adamc@91 16
adamc@256 17 (** Basic type classes *)
adamc@256 18
adamc@256 19 class eq
adamc@256 20 val eq : t ::: Type -> eq t -> t -> t -> bool
adamc@257 21 val ne : t ::: Type -> eq t -> t -> t -> bool
adamc@256 22 val eq_int : eq int
adamc@394 23 val eq_float : eq float
adamc@256 24 val eq_string : eq string
adamc@821 25 val eq_char : eq char
adamc@256 26 val eq_bool : eq bool
adamc@437 27 val eq_time : eq time
adamc@422 28 val mkEq : t ::: Type -> (t -> t -> bool) -> eq t
adamc@256 29
adamc@389 30 class num
adamc@417 31 val zero : t ::: Type -> num t -> t
adamc@389 32 val neg : t ::: Type -> num t -> t -> t
adamc@389 33 val plus : t ::: Type -> num t -> t -> t -> t
adamc@389 34 val minus : t ::: Type -> num t -> t -> t -> t
adamc@389 35 val times : t ::: Type -> num t -> t -> t -> t
adamc@775 36 val divide : t ::: Type -> num t -> t -> t -> t
adamc@389 37 val mod : t ::: Type -> num t -> t -> t -> t
adamc@389 38 val num_int : num int
adamc@390 39 val num_float : num float
adamc@389 40
adamc@391 41 class ord
adamc@391 42 val lt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 43 val le : t ::: Type -> ord t -> t -> t -> bool
adamc@391 44 val gt : t ::: Type -> ord t -> t -> t -> bool
adamc@391 45 val ge : t ::: Type -> ord t -> t -> t -> bool
adamc@391 46 val ord_int : ord int
adamc@394 47 val ord_float : ord float
adamc@394 48 val ord_string : ord string
adamc@821 49 val ord_char : ord char
adamc@394 50 val ord_bool : ord bool
adamc@437 51 val ord_time : ord time
adamc@961 52 val mkOrd : t ::: Type -> {Lt : t -> t -> bool, Le : t -> t -> bool} -> ord t
adamc@391 53
adamc@256 54
adamc@1061 55 (** Character operations *)
adamc@1061 56
adamc@1061 57 val isalnum : char -> bool
adamc@1061 58 val isalpha : char -> bool
adamc@1061 59 val isblank : char -> bool
adamc@1061 60 val iscntrl : char -> bool
adamc@1061 61 val isdigit : char -> bool
adamc@1061 62 val isgraph : char -> bool
adamc@1061 63 val islower : char -> bool
adamc@1061 64 val isprint : char -> bool
adamc@1061 65 val ispunct : char -> bool
adamc@1061 66 val isspace : char -> bool
adamc@1061 67 val isupper : char -> bool
adamc@1061 68 val isxdigit : char -> bool
adamc@1061 69 val tolower : char -> char
adamc@1061 70 val toupper : char -> char
adamc@1061 71
adamc@1061 72
adamc@283 73 (** String operations *)
adamc@283 74
adamc@828 75 val strlen : string -> int
adamc@283 76 val strcat : string -> string -> string
adamc@821 77 val strsub : string -> int -> char
adamc@821 78 val strsuffix : string -> int -> string
adamc@829 79 val strchr : string -> char -> option string
adamc@829 80 val strindex : string -> char -> option int
adamc@831 81 val strcspn : string -> string -> option int
adamc@829 82 val substring : string -> int -> int -> string
adamc@1023 83 val str1 : char -> string
adamc@283 84
adamc@286 85 class show
adamc@286 86 val show : t ::: Type -> show t -> t -> string
adamc@286 87 val show_int : show int
adamc@286 88 val show_float : show float
adamc@286 89 val show_string : show string
adamc@821 90 val show_char : show char
adamc@286 91 val show_bool : show bool
adamc@436 92 val show_time : show time
adamc@452 93 val mkShow : t ::: Type -> (t -> string) -> show t
adamc@286 94
adamc@290 95 class read
adamc@290 96 val read : t ::: Type -> read t -> string -> option t
adamc@292 97 val readError : t ::: Type -> read t -> string -> t
adamc@292 98 (* [readError] calls [error] if the input is malformed. *)
adamc@290 99 val read_int : read int
adamc@290 100 val read_float : read float
adamc@290 101 val read_string : read string
adamc@821 102 val read_char : read char
adamc@290 103 val read_bool : read bool
adamc@436 104 val read_time : read time
adamc@777 105 val mkRead : t ::: Type -> (string -> t) -> (string -> option t) -> read t
adamc@288 106
adamc@283 107
adamc@564 108 (** * Monads *)
adamc@564 109
adamc@711 110 class monad :: (Type -> Type) -> Type
adamc@564 111 val return : m ::: (Type -> Type) -> t ::: Type
adamc@564 112 -> monad m
adamc@564 113 -> t -> m t
adamc@564 114 val bind : m ::: (Type -> Type) -> t1 ::: Type -> t2 ::: Type
adamc@564 115 -> monad m
adamc@564 116 -> m t1 -> (t1 -> m t2)
adamc@564 117 -> m t2
adamc@564 118
adamc@456 119 con transaction :: Type -> Type
adamc@564 120 val transaction_monad : monad transaction
adamc@456 121
adamc@565 122 con source :: Type -> Type
adamc@565 123 val source : t ::: Type -> t -> transaction (source t)
adamc@575 124 val set : t ::: Type -> source t -> t -> transaction unit
adamc@601 125 val get : t ::: Type -> source t -> transaction t
adamc@565 126
adamc@565 127 con signal :: Type -> Type
adamc@565 128 val signal_monad : monad signal
adamc@565 129 val signal : t ::: Type -> source t -> signal t
adamc@841 130 val current : t ::: Type -> signal t -> transaction t
adamc@456 131
adamc@456 132
adamc@1006 133 (** * Time *)
adamc@1006 134
adamc@1006 135 val now : transaction time
adamc@1050 136 val minTime : time
adamc@1006 137
adamc@1006 138
adamc@456 139 (** HTTP operations *)
adamc@456 140
adamc@456 141 val requestHeader : string -> transaction (option string)
adamc@456 142
adamc@459 143 con http_cookie :: Type -> Type
adamc@459 144 val getCookie : t ::: Type -> http_cookie t -> transaction (option t)
adamc@1050 145 val setCookie : t ::: Type -> http_cookie t -> {Value : t,
adamc@1050 146 Expires : option time,
adamc@1050 147 Secure : bool} -> transaction unit
adamc@1050 148 val clearCookie : t ::: Type -> http_cookie t -> transaction unit
adamc@459 149
adamc@456 150
adamc@566 151 (** JavaScript-y gadgets *)
adamc@566 152
adamc@566 153 val alert : string -> transaction unit
adamc@694 154 val spawn : transaction unit -> transaction unit
adamc@695 155 val sleep : int -> transaction unit
adamc@566 156
adamc@908 157 val rpc : t ::: Type -> transaction t -> transaction t
adamc@908 158
adamc@566 159
adamc@678 160 (** Channels *)
adamc@678 161
adamc@678 162 con channel :: Type -> Type
adamc@678 163 val channel : t ::: Type -> transaction (channel t)
adamc@678 164 val send : t ::: Type -> channel t -> t -> transaction unit
adamc@678 165 val recv : t ::: Type -> channel t -> transaction t
adamc@678 166
adamc@682 167 type client
adamc@682 168 val self : transaction client
adamc@682 169
adamc@678 170
adamc@203 171 (** SQL *)
adamc@203 172
adamc@705 173 con sql_table :: {Type} -> {{Unit}} -> Type
adamc@753 174 con sql_view :: {Type} -> Type
adamc@753 175
adamc@753 176 class fieldsOf :: Type -> {Type} -> Type
adamc@753 177 val fieldsOf_table : fs ::: {Type} -> keys ::: {{Unit}}
adamc@753 178 -> fieldsOf (sql_table fs keys) fs
adamc@753 179 val fieldsOf_view : fs ::: {Type}
adamc@753 180 -> fieldsOf (sql_view fs) fs
adamc@203 181
adamc@704 182 (*** Constraints *)
adamc@704 183
adamc@707 184 (**** Primary keys *)
adamc@707 185
adamc@707 186 class sql_injectable_prim
adamc@707 187 val sql_bool : sql_injectable_prim bool
adamc@707 188 val sql_int : sql_injectable_prim int
adamc@707 189 val sql_float : sql_injectable_prim float
adamc@707 190 val sql_string : sql_injectable_prim string
adamc@1011 191 val sql_char : sql_injectable_prim char
adamc@707 192 val sql_time : sql_injectable_prim time
adamc@737 193 val sql_blob : sql_injectable_prim blob
adamc@707 194 val sql_channel : t ::: Type -> sql_injectable_prim (channel t)
adamc@707 195 val sql_client : sql_injectable_prim client
adamc@707 196
adamc@1104 197 con serialized :: Type -> Type
adamc@1104 198 val serialize : t ::: Type -> t -> serialized t
adamc@1104 199 val deserialize : t ::: Type -> serialized t -> t
adamc@1104 200 val sql_serialized : t ::: Type -> sql_injectable_prim (serialized t)
adamc@1104 201
adamc@707 202 con primary_key :: {Type} -> {{Unit}} -> Type
adamc@707 203 val no_primary_key : fs ::: {Type} -> primary_key fs []
adamc@707 204 val primary_key : rest ::: {Type} -> t ::: Type -> key1 :: Name -> keys :: {Type}
adamc@707 205 -> [[key1] ~ keys] => [[key1 = t] ++ keys ~ rest]
adamc@707 206 => $([key1 = sql_injectable_prim t] ++ map sql_injectable_prim keys)
adamc@707 207 -> primary_key ([key1 = t] ++ keys ++ rest)
adamc@707 208 [Pkey = [key1] ++ map (fn _ => ()) keys]
adamc@707 209
adamc@707 210 (**** Other constraints *)
adamc@707 211
adamc@705 212 con sql_constraints :: {Type} -> {{Unit}} -> Type
adamc@705 213 (* Arguments: column types, uniqueness implications of constraints *)
adamc@704 214
adamc@705 215 con sql_constraint :: {Type} -> {Unit} -> Type
adamc@704 216
adamc@705 217 val no_constraint : fs ::: {Type} -> sql_constraints fs []
adamc@705 218 val one_constraint : fs ::: {Type} -> unique ::: {Unit} -> name :: Name
adamc@705 219 -> sql_constraint fs unique
adamc@705 220 -> sql_constraints fs [name = unique]
adamc@705 221 val join_constraints : fs ::: {Type}
adamc@705 222 -> uniques1 ::: {{Unit}} -> uniques2 ::: {{Unit}} -> [uniques1 ~ uniques2]
adamc@705 223 => sql_constraints fs uniques1 -> sql_constraints fs uniques2
adamc@705 224 -> sql_constraints fs (uniques1 ++ uniques2)
adamc@705 225
adamc@709 226
adamc@705 227 val unique : rest ::: {Type} -> t ::: Type -> unique1 :: Name -> unique :: {Type}
adamc@705 228 -> [[unique1] ~ unique] => [[unique1 = t] ++ unique ~ rest]
adamc@705 229 => sql_constraint ([unique1 = t] ++ unique ++ rest) ([unique1] ++ map (fn _ => ()) unique)
adamc@704 230
adamc@712 231 class linkable :: Type -> Type -> Type
adamc@712 232 val linkable_same : t ::: Type -> linkable t t
adamc@712 233 val linkable_from_nullable : t ::: Type -> linkable (option t) t
adamc@712 234 val linkable_to_nullable : t ::: Type -> linkable t (option t)
adamc@712 235
adamc@709 236 con matching :: {Type} -> {Type} -> Type
adamc@709 237 val mat_nil : matching [] []
adamc@712 238 val mat_cons : t1 ::: Type -> rest1 ::: {Type} -> t2 ::: Type -> rest2 ::: {Type}
adamc@709 239 -> nm1 :: Name -> nm2 :: Name
adamc@709 240 -> [[nm1] ~ rest1] => [[nm2] ~ rest2]
adamc@712 241 => linkable t1 t2
adamc@712 242 -> matching rest1 rest2
adamc@712 243 -> matching ([nm1 = t1] ++ rest1) ([nm2 = t2] ++ rest2)
adamc@709 244
adamc@709 245 con propagation_mode :: {Type} -> Type
adamc@709 246 val restrict : fs ::: {Type} -> propagation_mode fs
adamc@709 247 val cascade : fs ::: {Type} -> propagation_mode fs
adamc@709 248 val no_action : fs ::: {Type} -> propagation_mode fs
adamc@709 249 val set_null : fs ::: {Type} -> propagation_mode (map option fs)
adamc@709 250
adamc@709 251
adamc@709 252 val foreign_key : mine1 ::: Name -> t ::: Type -> mine ::: {Type} -> munused ::: {Type}
adamc@709 253 -> foreign ::: {Type} -> funused ::: {Type}
adamc@709 254 -> nm ::: Name -> uniques ::: {{Unit}}
adamc@709 255 -> [[mine1] ~ mine] => [[mine1 = t] ++ mine ~ munused]
adamc@709 256 => [foreign ~ funused] => [[nm] ~ uniques]
adamc@709 257 => matching ([mine1 = t] ++ mine) foreign
adamc@709 258 -> sql_table (foreign ++ funused) ([nm = map (fn _ => ()) foreign] ++ uniques)
adamc@709 259 -> {OnDelete : propagation_mode ([mine1 = t] ++ mine),
adamc@709 260 OnUpdate : propagation_mode ([mine1 = t] ++ mine)}
adamc@709 261 -> sql_constraint ([mine1 = t] ++ mine ++ munused) []
adamc@709 262
adamc@714 263 con sql_exp :: {{Type}} -> {{Type}} -> {Type} -> Type -> Type
adamc@1072 264 val sql_exp_weaken : fs ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} -> t ::: Type
adamc@1072 265 -> fs' ::: {{Type}} -> agg' ::: {{Type}} -> exps' ::: {Type}
adamc@1072 266 -> [fs ~ fs'] => [agg ~ agg'] => [exps ~ exps'] =>
adamc@1072 267 sql_exp fs agg exps t
adamc@1072 268 -> sql_exp (fs ++ fs') (agg ++ agg') (exps ++ exps') t
adamc@714 269
adamc@714 270 val check : fs ::: {Type}
adamc@714 271 -> sql_exp [] [] fs bool
adamc@714 272 -> sql_constraint fs []
adamc@714 273
adamc@714 274
adamc@704 275
adamc@204 276 (*** Queries *)
adamc@204 277
adamc@233 278 con sql_query :: {{Type}} -> {Type} -> Type
adamc@233 279 con sql_query1 :: {{Type}} -> {{Type}} -> {Type} -> Type
adamc@204 280
adamc@223 281 con sql_subset :: {{Type}} -> {{Type}} -> Type
adamc@223 282 val sql_subset : keep_drop :: {({Type} * {Type})}
adamc@354 283 -> sql_subset
adamc@621 284 (map (fn fields :: ({Type} * {Type}) => fields.1 ++ fields.2) keep_drop)
adamc@621 285 (map (fn fields :: ({Type} * {Type}) => fields.1) keep_drop)
adamc@354 286 val sql_subset_all : tables :: {{Type}} -> sql_subset tables tables
adamc@1072 287 val sql_subset_concat : big1 ::: {{Type}} -> little1 ::: {{Type}}
adamc@1072 288 -> big2 ::: {{Type}} -> little2 ::: {{Type}}
adamc@1072 289 -> [big1 ~ big2] => [little1 ~ little2] =>
adamc@1072 290 sql_subset big1 little1
adamc@1072 291 -> sql_subset big2 little2
adamc@1072 292 -> sql_subset (big1 ++ big2) (little1 ++ little2)
adamc@223 293
adamc@748 294 con sql_from_items :: {{Type}} -> Type
adamc@748 295
adamc@753 296 val sql_from_table : t ::: Type -> fs ::: {Type}
adamc@753 297 -> fieldsOf t fs -> name :: Name
adamc@753 298 -> t -> sql_from_items [name = fs]
adamc@748 299 val sql_from_comma : tabs1 ::: {{Type}} -> tabs2 ::: {{Type}}
adamc@748 300 -> [tabs1 ~ tabs2]
adamc@748 301 => sql_from_items tabs1 -> sql_from_items tabs2
adamc@748 302 -> sql_from_items (tabs1 ++ tabs2)
adamc@749 303 val sql_inner_join : tabs1 ::: {{Type}} -> tabs2 ::: {{Type}}
adamc@749 304 -> [tabs1 ~ tabs2]
adamc@749 305 => sql_from_items tabs1 -> sql_from_items tabs2
adamc@749 306 -> sql_exp (tabs1 ++ tabs2) [] [] bool
adamc@749 307 -> sql_from_items (tabs1 ++ tabs2)
adamc@748 308
adamc@750 309 class nullify :: Type -> Type -> Type
adamc@750 310 val nullify_option : t ::: Type -> nullify (option t) (option t)
adamc@750 311 val nullify_prim : t ::: Type -> sql_injectable_prim t -> nullify t (option t)
adamc@750 312
adamc@750 313 val sql_left_join : tabs1 ::: {{Type}} -> tabs2 ::: {{(Type * Type)}}
adamc@750 314 -> [tabs1 ~ tabs2]
adamc@750 315 => $(map (fn r => $(map (fn p :: (Type * Type) => nullify p.1 p.2) r)) tabs2)
adamc@750 316 -> sql_from_items tabs1 -> sql_from_items (map (map (fn p :: (Type * Type) => p.1)) tabs2)
adamc@750 317 -> sql_exp (tabs1 ++ map (map (fn p :: (Type * Type) => p.1)) tabs2) [] [] bool
adamc@750 318 -> sql_from_items (tabs1 ++ map (map (fn p :: (Type * Type) => p.2)) tabs2)
adamc@750 319
adamc@751 320 val sql_right_join : tabs1 ::: {{(Type * Type)}} -> tabs2 ::: {{Type}}
adamc@751 321 -> [tabs1 ~ tabs2]
adamc@751 322 => $(map (fn r => $(map (fn p :: (Type * Type) => nullify p.1 p.2) r)) tabs1)
adamc@751 323 -> sql_from_items (map (map (fn p :: (Type * Type) => p.1)) tabs1) -> sql_from_items tabs2
adamc@751 324 -> sql_exp (map (map (fn p :: (Type * Type) => p.1)) tabs1 ++ tabs2) [] [] bool
adamc@751 325 -> sql_from_items (map (map (fn p :: (Type * Type) => p.2)) tabs1 ++ tabs2)
adamc@751 326
adamc@751 327 val sql_full_join : tabs1 ::: {{(Type * Type)}} -> tabs2 ::: {{(Type * Type)}}
adamc@751 328 -> [tabs1 ~ tabs2]
adamc@751 329 => $(map (fn r => $(map (fn p :: (Type * Type) => nullify p.1 p.2) r)) (tabs1 ++ tabs2))
adamc@751 330 -> sql_from_items (map (map (fn p :: (Type * Type) => p.1)) tabs1)
adamc@751 331 -> sql_from_items (map (map (fn p :: (Type * Type) => p.1)) tabs2)
adamc@751 332 -> sql_exp (map (map (fn p :: (Type * Type) => p.1)) (tabs1 ++ tabs2)) [] [] bool
adamc@751 333 -> sql_from_items (map (map (fn p :: (Type * Type) => p.2)) (tabs1 ++ tabs2))
adamc@751 334
adamc@748 335 val sql_query1 : tables ::: {{Type}}
adamc@354 336 -> grouped ::: {{Type}}
adamc@354 337 -> selectedFields ::: {{Type}}
adamc@354 338 -> selectedExps ::: {Type}
adamc@1070 339 -> empties :: {Unit}
adamc@1070 340 -> [empties ~ selectedFields]
adamc@1070 341 => {Distinct : bool,
adamc@993 342 From : sql_from_items tables,
adamc@748 343 Where : sql_exp tables [] [] bool,
adamc@748 344 GroupBy : sql_subset tables grouped,
adamc@748 345 Having : sql_exp grouped tables [] bool,
adamc@1070 346 SelectFields : sql_subset grouped (map (fn _ => []) empties ++ selectedFields),
adamc@748 347 SelectExps : $(map (sql_exp grouped tables [])
adamc@705 348 selectedExps) }
adamc@748 349 -> sql_query1 tables selectedFields selectedExps
adamc@229 350
adamc@229 351 type sql_relop
adamc@229 352 val sql_union : sql_relop
adamc@229 353 val sql_intersect : sql_relop
adamc@229 354 val sql_except : sql_relop
adamc@260 355 val sql_relop : tables1 ::: {{Type}}
adamc@354 356 -> tables2 ::: {{Type}}
adamc@354 357 -> selectedFields ::: {{Type}}
adamc@354 358 -> selectedExps ::: {Type}
adamc@354 359 -> sql_relop
adamc@354 360 -> sql_query1 tables1 selectedFields selectedExps
adamc@354 361 -> sql_query1 tables2 selectedFields selectedExps
adamc@1072 362 -> sql_query1 [] selectedFields selectedExps
adamc@1071 363 val sql_forget_tables : tables ::: {{Type}} -> selectedFields ::: {{Type}} -> selectedExps ::: {Type}
adamc@1071 364 -> sql_query1 tables selectedFields selectedExps
adamc@1072 365 -> sql_query1 [] selectedFields selectedExps
adamc@229 366
adamc@230 367 type sql_direction
adamc@230 368 val sql_asc : sql_direction
adamc@230 369 val sql_desc : sql_direction
adamc@230 370
adamc@234 371 con sql_order_by :: {{Type}} -> {Type} -> Type
adamc@234 372 val sql_order_by_Nil : tables ::: {{Type}} -> exps :: {Type} -> sql_order_by tables exps
adamc@234 373 val sql_order_by_Cons : tables ::: {{Type}} -> exps ::: {Type} -> t ::: Type
adamc@354 374 -> sql_exp tables [] exps t -> sql_direction
adamc@354 375 -> sql_order_by tables exps
adamc@354 376 -> sql_order_by tables exps
adamc@230 377
adamc@231 378 type sql_limit
adamc@231 379 val sql_no_limit : sql_limit
adamc@231 380 val sql_limit : int -> sql_limit
adamc@354 381
adamc@232 382 type sql_offset
adamc@232 383 val sql_no_offset : sql_offset
adamc@232 384 val sql_offset : int -> sql_offset
adamc@232 385
adamc@229 386 val sql_query : tables ::: {{Type}}
adamc@354 387 -> selectedFields ::: {{Type}}
adamc@354 388 -> selectedExps ::: {Type}
adamc@354 389 -> {Rows : sql_query1 tables selectedFields selectedExps,
adamc@354 390 OrderBy : sql_order_by tables selectedExps,
adamc@354 391 Limit : sql_limit,
adamc@354 392 Offset : sql_offset}
adamc@354 393 -> sql_query selectedFields selectedExps
adamc@204 394
adamc@354 395 val sql_field : otherTabs ::: {{Type}} -> otherFields ::: {Type}
adamc@354 396 -> fieldType ::: Type -> agg ::: {{Type}}
adamc@354 397 -> exps ::: {Type}
adamc@354 398 -> tab :: Name -> field :: Name
adamc@354 399 -> sql_exp
adamc@354 400 ([tab = [field = fieldType] ++ otherFields] ++ otherTabs)
adamc@354 401 agg exps fieldType
adamc@234 402
adamc@354 403 val sql_exp : tabs ::: {{Type}} -> agg ::: {{Type}} -> t ::: Type -> rest ::: {Type}
adamc@354 404 -> nm :: Name
adamc@354 405 -> sql_exp tabs agg ([nm = t] ++ rest) t
adamc@209 406
adamc@221 407 class sql_injectable
adamc@676 408 val sql_prim : t ::: Type -> sql_injectable_prim t -> sql_injectable t
adamc@676 409 val sql_option_prim : t ::: Type -> sql_injectable_prim t -> sql_injectable (option t)
adamc@676 410
adamc@354 411 val sql_inject : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 412 -> t ::: Type
adamc@354 413 -> sql_injectable t -> t -> sql_exp tables agg exps t
adamc@209 414
adamc@470 415 val sql_is_null : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@470 416 -> t ::: Type
adamc@470 417 -> sql_exp tables agg exps (option t)
adamc@470 418 -> sql_exp tables agg exps bool
adamc@470 419
adamc@559 420 class sql_arith
adamc@559 421 val sql_int_arith : sql_arith int
adamc@559 422 val sql_float_arith : sql_arith float
adamc@559 423
adamc@220 424 con sql_unary :: Type -> Type -> Type
adamc@220 425 val sql_not : sql_unary bool bool
adamc@354 426 val sql_unary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 427 -> arg ::: Type -> res ::: Type
adamc@354 428 -> sql_unary arg res -> sql_exp tables agg exps arg
adamc@354 429 -> sql_exp tables agg exps res
adamc@220 430
adamc@559 431 val sql_neg : t ::: Type -> sql_arith t -> sql_unary t t
adamc@559 432
adamc@220 433 con sql_binary :: Type -> Type -> Type -> Type
adamc@220 434 val sql_and : sql_binary bool bool bool
adamc@220 435 val sql_or : sql_binary bool bool bool
adamc@234 436 val sql_binary : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 437 -> arg1 ::: Type -> arg2 ::: Type -> res ::: Type
adamc@354 438 -> sql_binary arg1 arg2 res -> sql_exp tables agg exps arg1
adamc@354 439 -> sql_exp tables agg exps arg2
adamc@354 440 -> sql_exp tables agg exps res
adamc@220 441
adamc@559 442 val sql_plus : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 443 val sql_minus : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 444 val sql_times : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 445 val sql_div : t ::: Type -> sql_arith t -> sql_binary t t t
adamc@559 446 val sql_mod : sql_binary int int int
adamc@559 447
adamc@559 448 val sql_eq : t ::: Type -> sql_binary t t bool
adamc@559 449 val sql_ne : t ::: Type -> sql_binary t t bool
adamc@559 450 val sql_lt : t ::: Type -> sql_binary t t bool
adamc@559 451 val sql_le : t ::: Type -> sql_binary t t bool
adamc@559 452 val sql_gt : t ::: Type -> sql_binary t t bool
adamc@559 453 val sql_ge : t ::: Type -> sql_binary t t bool
adamc@203 454
adamc@235 455 val sql_count : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@544 456 -> sql_exp tables agg exps int
adamc@235 457
adamc@236 458 con sql_aggregate :: Type -> Type
adamc@354 459 val sql_aggregate : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@354 460 -> t ::: Type
adamc@354 461 -> sql_aggregate t -> sql_exp agg agg exps t
adamc@354 462 -> sql_exp tables agg exps t
adamc@236 463
adamc@236 464 class sql_summable
adamc@236 465 val sql_summable_int : sql_summable int
adamc@236 466 val sql_summable_float : sql_summable float
adamc@236 467 val sql_avg : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 468 val sql_sum : t ::: Type -> sql_summable t -> sql_aggregate t
adamc@236 469
adamc@236 470 class sql_maxable
adamc@236 471 val sql_maxable_int : sql_maxable int
adamc@236 472 val sql_maxable_float : sql_maxable float
adamc@236 473 val sql_maxable_string : sql_maxable string
adamc@437 474 val sql_maxable_time : sql_maxable time
adamc@236 475 val sql_max : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 476 val sql_min : t ::: Type -> sql_maxable t -> sql_aggregate t
adamc@236 477
adamc@441 478 con sql_nfunc :: Type -> Type
adamc@441 479 val sql_nfunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@441 480 -> t ::: Type
adamc@441 481 -> sql_nfunc t -> sql_exp tables agg exps t
adamc@441 482 val sql_current_timestamp : sql_nfunc time
adamc@441 483
adamc@746 484 con sql_ufunc :: Type -> Type -> Type
adamc@746 485 val sql_ufunc : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type}
adamc@746 486 -> dom ::: Type -> ran ::: Type
adamc@746 487 -> sql_ufunc dom ran -> sql_exp tables agg exps dom
adamc@746 488 -> sql_exp tables agg exps ran
adamc@746 489 val sql_octet_length : sql_ufunc blob int
adamc@746 490
adamc@235 491
adamc@1081 492 val sql_nullable : tables ::: {{Type}} -> agg ::: {{Type}} -> exps ::: {Type} -> t ::: Type
adamc@1081 493 -> sql_injectable_prim t
adamc@1081 494 -> sql_exp tables agg exps t
adamc@1081 495 -> sql_exp tables agg exps (option t)
adamc@1081 496
adamc@243 497 (*** Executing queries *)
adamc@243 498
adamc@354 499 val query : tables ::: {{Type}} -> exps ::: {Type}
adamc@629 500 -> [tables ~ exps] =>
adamc@354 501 state ::: Type
adamc@354 502 -> sql_query tables exps
adamc@621 503 -> ($(exps ++ map (fn fields :: {Type} => $fields) tables)
adamc@354 504 -> state
adamc@354 505 -> transaction state)
adamc@354 506 -> state
adamc@354 507 -> transaction state
adamc@243 508
adamc@243 509
adamc@299 510 (*** Database mutators *)
adamc@299 511
adamc@299 512 type dml
adamc@299 513 val dml : dml -> transaction unit
adamc@299 514
adamc@705 515 val insert : fields ::: {Type} -> uniques ::: {{Unit}}
adamc@705 516 -> sql_table fields uniques
adamc@621 517 -> $(map (fn t :: Type => sql_exp [] [] [] t) fields)
adamc@354 518 -> dml
adamc@299 519
adamc@705 520 val update : unchanged ::: {Type} -> uniques ::: {{Unit}} -> changed :: {Type} ->
adamc@629 521 [changed ~ unchanged] =>
adamc@621 522 $(map (fn t :: Type => sql_exp [T = changed ++ unchanged] [] [] t) changed)
adamc@705 523 -> sql_table (changed ++ unchanged) uniques
adamc@354 524 -> sql_exp [T = changed ++ unchanged] [] [] bool
adamc@354 525 -> dml
adamc@299 526
adamc@705 527 val delete : fields ::: {Type} -> uniques ::: {{Unit}}
adamc@705 528 -> sql_table fields uniques
adamc@354 529 -> sql_exp [T = fields] [] [] bool
adamc@354 530 -> dml
adamc@299 531
adamc@338 532 (*** Sequences *)
adamc@338 533
adamc@338 534 type sql_sequence
adamc@338 535 val nextval : sql_sequence -> transaction int
adamc@1073 536 val setval : sql_sequence -> int -> transaction unit
adamc@338 537
adamc@299 538
adamc@203 539 (** XML *)
adamc@203 540
adamc@721 541 type css_class
adamc@718 542
adamc@720 543 con tag :: {Type} -> {Unit} -> {Unit} -> {Type} -> {Type} -> Type
adamc@91 544
adamc@720 545 con xml :: {Unit} -> {Type} -> {Type} -> Type
adamc@720 546 val cdata : ctx ::: {Unit} -> use ::: {Type} -> string -> xml ctx use []
adamc@354 547 val tag : attrsGiven ::: {Type} -> attrsAbsent ::: {Type}
adamc@354 548 -> ctxOuter ::: {Unit} -> ctxInner ::: {Unit}
adamc@354 549 -> useOuter ::: {Type} -> useInner ::: {Type}
adamc@354 550 -> bindOuter ::: {Type} -> bindInner ::: {Type}
adamc@629 551 -> [attrsGiven ~ attrsAbsent] =>
adamc@629 552 [useOuter ~ useInner] =>
adamc@629 553 [bindOuter ~ bindInner] =>
adamc@721 554 option css_class
adamc@721 555 -> $attrsGiven
adamc@629 556 -> tag (attrsGiven ++ attrsAbsent)
adamc@720 557 ctxOuter ctxInner useOuter bindOuter
adamc@720 558 -> xml ctxInner useInner bindInner
adamc@720 559 -> xml ctxOuter (useOuter ++ useInner) (bindOuter ++ bindInner)
adamc@140 560 val join : ctx ::: {Unit}
adamc@720 561 -> use1 ::: {Type} -> bind1 ::: {Type} -> bind2 ::: {Type}
adamc@720 562 -> [use1 ~ bind1] => [bind1 ~ bind2] =>
adamc@720 563 xml ctx use1 bind1
adamc@720 564 -> xml ctx (use1 ++ bind1) bind2
adamc@720 565 -> xml ctx use1 (bind1 ++ bind2)
adamc@354 566 val useMore : ctx ::: {Unit} -> use1 ::: {Type} -> use2 ::: {Type}
adamc@720 567 -> bind ::: {Type}
adamc@629 568 -> [use1 ~ use2] =>
adamc@720 569 xml ctx use1 bind
adamc@720 570 -> xml ctx (use1 ++ use2) bind
adamc@91 571
adamc@110 572 con xhtml = xml [Html]
adamc@139 573 con page = xhtml [] []
adamc@720 574 con xbody = xml [Body] [] []
adamc@720 575 con xtr = xml [Body, Tr] [] []
adamc@720 576 con xform = xml [Body, Form] [] []
adamc@110 577
adamc@718 578
adamc@204 579 (*** HTML details *)
adamc@204 580
adamc@140 581 con html = [Html]
adamc@140 582 con head = [Head]
adamc@140 583 con body = [Body]
adamc@361 584 con form = [Body, Form]
adamc@760 585 con subform = [Body, Subform]
adamc@332 586 con tabl = [Body, Table]
adamc@332 587 con tr = [Body, Tr]
adamc@93 588
adamc@724 589 type url
adamc@1065 590 val show_url : show url
adamc@724 591 val bless : string -> url
adamc@770 592 val checkUrl : string -> option url
adamc@1085 593 val currentUrl : transaction url
adamc@1065 594 val url : transaction page -> url
adamc@1065 595 val redirect : t ::: Type -> url -> transaction t
adamc@724 596
adamc@847 597 val dyn : ctx ::: {Unit} -> use ::: {Type} -> bind ::: {Type} -> [ctx ~ body] => unit
adamc@847 598 -> tag [Signal = signal (xml (body ++ ctx) use bind)] (body ++ ctx) [] use bind
adamc@568 599
adamc@720 600 val head : unit -> tag [] html head [] []
adamc@720 601 val title : unit -> tag [] head [] [] []
adamc@1047 602 val link : unit -> tag [Id = string, Rel = string, Typ = string, Href = url, Media = string] head [] [] []
adamc@110 603
adamc@892 604 val body : unit -> tag [Onload = transaction unit, Onresize = transaction unit, Onunload = transaction unit]
adamc@892 605 html body [] []
adamc@354 606 con bodyTag = fn (attrs :: {Type}) =>
adamc@354 607 ctx ::: {Unit} ->
adamc@629 608 [[Body] ~ ctx] =>
adamc@720 609 unit -> tag attrs ([Body] ++ ctx) ([Body] ++ ctx) [] []
adamc@354 610 con bodyTagStandalone = fn (attrs :: {Type}) =>
adamc@354 611 ctx ::: {Unit}
adamc@629 612 -> [[Body] ~ ctx] =>
adamc@720 613 unit -> tag attrs ([Body] ++ ctx) [] [] []
adamc@141 614
adamc@1047 615 val br : bodyTagStandalone [Id = int]
adamc@119 616
adamc@892 617 con focusEvents = [Onblur = transaction unit, Onfocus = transaction unit]
adamc@892 618 con mouseEvents = [Onclick = transaction unit, Ondblclick = transaction unit,
adamc@892 619 Onmousedown = transaction unit, Onmousemove = transaction unit,
adamc@892 620 Onmouseout = transaction unit, Onmouseover = transaction unit,
adamc@894 621 Onmouseup = transaction unit]
adamc@895 622 con keyEvents = [Onkeydown = int -> transaction unit, Onkeypress = int -> transaction unit,
adamc@895 623 Onkeyup = int -> transaction unit]
adamc@895 624 (* Key arguments are character codes. *)
adamc@892 625 con resizeEvents = [Onresize = transaction unit]
adamc@691 626
adamc@892 627 con boxEvents = focusEvents ++ mouseEvents ++ keyEvents ++ resizeEvents
adamc@892 628 con tableEvents = focusEvents ++ mouseEvents ++ keyEvents
adamc@140 629
adamc@1047 630 con boxAttrs = [Id = string] ++ boxEvents
adamc@1047 631 con tableAttrs = [Id = string] ++ tableEvents
adamc@469 632
adamc@1047 633 val span : bodyTag boxAttrs
adamc@1047 634 val div : bodyTag boxAttrs
adamc@140 635
adamc@1047 636 val p : bodyTag boxAttrs
adamc@1047 637 val b : bodyTag boxAttrs
adamc@1047 638 val i : bodyTag boxAttrs
adamc@1047 639 val tt : bodyTag boxAttrs
adamc@410 640
adamc@1047 641 val h1 : bodyTag boxAttrs
adamc@1047 642 val h2 : bodyTag boxAttrs
adamc@1047 643 val h3 : bodyTag boxAttrs
adamc@1047 644 val h4 : bodyTag boxAttrs
adamc@1047 645 val h5 : bodyTag boxAttrs
adamc@1047 646 val h6 : bodyTag boxAttrs
adamc@717 647
adamc@1047 648 val li : bodyTag boxAttrs
adamc@1047 649 val ol : bodyTag boxAttrs
adamc@1047 650 val ul : bodyTag boxAttrs
adamc@140 651
adamc@1047 652 val hr : bodyTag boxAttrs
adamc@1047 653
adamc@1047 654 val a : bodyTag ([Link = transaction page, Href = url] ++ boxAttrs)
adamc@892 655
adamc@892 656 val img : bodyTag ([Src = url, Onabort = transaction unit, Onerror = transaction unit,
adamc@1047 657 Onload = transaction unit] ++ boxAttrs)
adamc@892 658
adamc@720 659 val form : ctx ::: {Unit} -> bind ::: {Type}
adamc@1004 660 -> [[Body, Form] ~ ctx] =>
adamc@1004 661 xml ([Body, Form] ++ ctx) [] bind
adamc@756 662 -> xml ([Body] ++ ctx) [] []
adamc@756 663
adamc@756 664 val subform : ctx ::: {Unit} -> use ::: {Type} -> bind ::: {Type}
adamc@756 665 -> [[Form] ~ ctx] =>
adamc@756 666 nm :: Name -> [[nm] ~ use] =>
adamc@1004 667 xml ([Form] ++ ctx) [] bind
adamc@756 668 -> xml ([Form] ++ ctx) use [nm = $bind]
adamc@758 669
adamc@758 670 val subforms : ctx ::: {Unit} -> use ::: {Type} -> bind ::: {Type}
adamc@1004 671 -> [[Form, Subform] ~ ctx] =>
adamc@758 672 nm :: Name -> [[nm] ~ use] =>
adamc@1004 673 xml ([Subform] ++ ctx) [Entry = $bind] []
adamc@758 674 -> xml ([Form] ++ ctx) use [nm = list ($bind)]
adamc@758 675
adamc@758 676 val entry : ctx ::: {Unit} -> bind ::: {Type}
adamc@1004 677 -> [[Subform, Form] ~ ctx] =>
adamc@1004 678 xml ([Form] ++ ctx) [] bind
adamc@758 679 -> xml ([Subform] ++ ctx) [Entry = $bind] []
adamc@758 680
adamc@361 681 con formTag = fn (ty :: Type) (inner :: {Unit}) (attrs :: {Type}) =>
adamc@354 682 ctx ::: {Unit}
adamc@629 683 -> [[Form] ~ ctx] =>
adamc@354 684 nm :: Name -> unit
adamc@720 685 -> tag attrs ([Form] ++ ctx) inner [] [nm = ty]
adamc@1047 686 val hidden : formTag string [] [Id = string, Value = string]
adamc@892 687 val textbox : formTag string [] ([Value = string, Size = int, Source = source string, Onchange = transaction unit,
adamc@1047 688 Ontext = transaction unit] ++ boxAttrs)
adamc@1047 689 val password : formTag string [] ([Value = string, Size = int] ++ boxAttrs)
adamc@892 690 val textarea : formTag string [] ([Rows = int, Cols = int, Onchange = transaction unit,
adamc@1047 691 Ontext = transaction unit] ++ boxAttrs)
adamc@153 692
adamc@1047 693 val checkbox : formTag bool [] ([Checked = bool] ++ boxAttrs)
adamc@190 694
adamc@737 695 type file
adamc@737 696 val fileName : file -> option string
adamc@740 697 val fileMimeType : file -> string
adamc@737 698 val fileData : file -> blob
adamc@737 699
adamc@1047 700 val upload : formTag file [] ([Value = string, Size = int] ++ boxAttrs)
adamc@737 701
adamc@741 702 type mimeType
adamc@741 703 val blessMime : string -> mimeType
adamc@770 704 val checkMime : string -> option mimeType
adamc@741 705 val returnBlob : t ::: Type -> blob -> mimeType -> transaction t
adamc@745 706 val blobSize : blob -> int
adamc@741 707
adamc@153 708 con radio = [Body, Radio]
adamc@1047 709 val radio : formTag string radio [Id = string]
adamc@1068 710 val radioOption : unit -> tag ([Value = string, Checked = bool] ++ boxAttrs) radio [] [] []
adamc@142 711
adamc@154 712 con select = [Select]
adamc@1047 713 val select : formTag string select ([Onchange = transaction unit] ++ boxAttrs)
adamc@720 714 val option : unit -> tag [Value = string, Selected = bool] select [] [] []
adamc@154 715
adamc@720 716 val submit : ctx ::: {Unit} -> use ::: {Type}
adamc@629 717 -> [[Form] ~ ctx] =>
adamc@354 718 unit
adamc@1047 719 -> tag ([Value = string, Action = $use -> transaction page] ++ boxAttrs)
adamc@720 720 ([Form] ++ ctx) ([Form] ++ ctx) use []
adamc@283 721
adamc@1047 722 val label : bodyTag ([For = string, Accesskey = string] ++ tableAttrs)
adamc@1047 723
adamc@1047 724
adamc@601 725 (*** AJAX-oriented widgets *)
adamc@601 726
adamc@797 727 con cformTag = fn (attrs :: {Type}) (inner :: {Unit}) =>
adamc@601 728 ctx ::: {Unit}
adamc@629 729 -> [[Body] ~ ctx] =>
adamc@797 730 unit -> tag attrs ([Body] ++ ctx) inner [] []
adamc@601 731
adamc@892 732 val ctextbox : cformTag ([Value = string, Size = int, Source = source string, Onchange = transaction unit,
adamc@1047 733 Ontext = transaction unit] ++ boxAttrs) []
adamc@1047 734 val button : cformTag ([Value = string] ++ boxAttrs) []
adamc@797 735
adamc@1047 736 val ccheckbox : cformTag ([Value = bool, Size = int, Source = source bool] ++ boxAttrs) []
adamc@817 737
adamc@797 738 con cselect = [Cselect]
adamc@1047 739 val cselect : cformTag ([Source = source string, Onchange = transaction unit] ++ boxAttrs) cselect
adamc@797 740 val coption : unit -> tag [Value = string, Selected = bool] cselect [] [] []
adamc@601 741
adamc@1099 742 val ctextarea : cformTag ([Value = string, Rows = int, Cols = int, Source = source string, Onchange = transaction unit,
adamc@1099 743 Ontext = transaction unit] ++ boxAttrs) []
adamc@1099 744
adamc@720 745 (*** Tables *)
adamc@720 746
adamc@892 747 val tabl : other ::: {Unit} -> [other ~ [Body, Table]] => unit
adamc@1047 748 -> tag ([Border = int] ++ boxAttrs)
adamc@892 749 ([Body] ++ other) ([Body, Table] ++ other) [] []
adamc@892 750 val tr : other ::: {Unit} -> [other ~ [Body, Table, Tr]] => unit
adamc@1047 751 -> tag tableAttrs
adamc@892 752 ([Body, Table] ++ other) ([Body, Tr] ++ other) [] []
adamc@892 753 val th : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
adamc@1047 754 -> tag ([Colspan = int] ++ tableAttrs)
adamc@892 755 ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@892 756 val td : other ::: {Unit} -> [other ~ [Body, Tr]] => unit
adamc@1047 757 -> tag ([Colspan = int] ++ tableAttrs)
adamc@892 758 ([Body, Tr] ++ other) ([Body] ++ other) [] []
adamc@720 759
adamc@283 760
adamc@283 761 (** Aborting *)
adamc@283 762
adamc@726 763 val error : t ::: Type -> xbody -> t
adamc@720 764
adamc@729 765 (* Client-side-only handlers: *)
adamc@726 766 val onError : (xbody -> transaction unit) -> transaction unit
adamc@728 767 val onFail : (string -> transaction unit) -> transaction unit
adamc@729 768 val onConnectFail : transaction unit -> transaction unit
adamc@729 769 val onDisconnect : transaction unit -> transaction unit
adamc@729 770 val onServerError : (string -> transaction unit) -> transaction unit
adamc@727 771
adamc@727 772 val show_xml : ctx ::: {Unit} -> use ::: {Type} -> bind ::: {Type} -> show (xml ctx use bind)
adamc@1075 773
adamc@1075 774
adamc@1075 775 (** Tasks *)
adamc@1075 776
adamc@1075 777 type task_kind
adamc@1075 778 val initialize : task_kind