annotate src/settings.sml @ 1061:e8a35d710ab9

Context globals; ctype functions
author Adam Chlipala <adamc@hcoop.net>
date Tue, 08 Dec 2009 10:46:50 -0500
parents eaba663fd6aa
children b2311dfb3158
rev   line source
adamc@764 1 (* Copyright (c) 2008-2009, Adam Chlipala
adamc@764 2 * All rights reserved.
adamc@764 3 *
adamc@764 4 * Redistribution and use in source and binary forms, with or without
adamc@764 5 * modification, are permitted provided that the following conditions are met:
adamc@764 6 *
adamc@764 7 * - Redistributions of source code must retain the above copyright notice,
adamc@764 8 * this list of conditions and the following disclaimer.
adamc@764 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@764 10 * this list of conditions and the following disclaimer in the documentation
adamc@764 11 * and/or other materials provided with the distribution.
adamc@764 12 * - The names of contributors may not be used to endorse or promote products
adamc@764 13 * derived from this software without specific prior written permission.
adamc@764 14 *
adamc@764 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@764 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@764 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@764 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@764 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@764 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@764 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@764 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@764 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@764 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@764 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@764 26 *)
adamc@764 27
adamc@764 28 structure Settings :> SETTINGS = struct
adamc@764 29
adamc@764 30 val urlPrefix = ref "/"
adamc@764 31 val timeout = ref 0
adamc@764 32 val headers = ref ([] : string list)
adamc@766 33 val scripts = ref ([] : string list)
adamc@764 34
adamc@764 35 fun getUrlPrefix () = !urlPrefix
adamc@764 36 fun setUrlPrefix p =
adamc@764 37 urlPrefix := (if p = "" then
adamc@764 38 "/"
adamc@764 39 else if String.sub (p, size p - 1) <> #"/" then
adamc@764 40 p ^ "/"
adamc@764 41 else
adamc@764 42 p)
adamc@764 43
adamc@764 44 fun getTimeout () = !timeout
adamc@764 45 fun setTimeout n = timeout := n
adamc@764 46
adamc@764 47 fun getHeaders () = !headers
adamc@764 48 fun setHeaders ls = headers := ls
adamc@764 49
adamc@766 50 fun getScripts () = !scripts
adamc@766 51 fun setScripts ls = scripts := ls
adamc@766 52
adamc@765 53 type ffi = string * string
adamc@765 54
adamc@765 55 structure K = struct
adamc@765 56 type ord_key = ffi
adamc@765 57 fun compare ((m1, x1), (m2, x2)) =
adamc@765 58 Order.join (String.compare (m1, m2),
adamc@765 59 fn () => String.compare (x1, x2))
adamc@764 60 end
adamc@765 61
adamc@765 62 structure S = BinarySetFn(K)
adamc@765 63 structure M = BinaryMapFn(K)
adamc@765 64
adamc@765 65 fun basis x = S.addList (S.empty, map (fn x : string => ("Basis", x)) x)
adamc@765 66
adamc@765 67 val clientToServerBase = basis ["int",
adamc@765 68 "float",
adamc@765 69 "string",
adamc@765 70 "time",
adamc@765 71 "file",
adamc@765 72 "unit",
adamc@765 73 "option",
adamc@765 74 "list",
adamc@765 75 "bool"]
adamc@765 76 val clientToServer = ref clientToServerBase
adamc@765 77 fun setClientToServer ls = clientToServer := S.addList (clientToServerBase, ls)
adamc@765 78 fun mayClientToServer x = S.member (!clientToServer, x)
adamc@765 79
adamc@779 80 val effectfulBase = basis ["dml",
adamc@779 81 "nextval",
adamc@779 82 "set_cookie",
adamc@1050 83 "clear_cookie",
adamc@765 84 "new_client_source",
adamc@765 85 "get_client_source",
adamc@765 86 "set_client_source",
adamc@845 87 "current",
adamc@765 88 "alert",
adamc@765 89 "new_channel",
adamc@765 90 "send",
adamc@765 91 "onError",
adamc@765 92 "onFail",
adamc@765 93 "onConnectFail",
adamc@765 94 "onDisconnect",
adamc@895 95 "onServerError",
adamc@895 96 "kc"]
adamc@765 97
adamc@765 98 val effectful = ref effectfulBase
adamc@765 99 fun setEffectful ls = effectful := S.addList (effectfulBase, ls)
adamc@765 100 fun isEffectful x = S.member (!effectful, x)
adamc@765 101
adamc@765 102 val clientBase = basis ["get",
adamc@765 103 "set",
adamc@841 104 "current",
adamc@765 105 "alert",
adamc@765 106 "recv",
adamc@765 107 "sleep",
adamc@765 108 "spawn",
adamc@765 109 "onError",
adamc@765 110 "onFail",
adamc@765 111 "onConnectFail",
adamc@765 112 "onDisconnect",
adamc@895 113 "onServerError",
adamc@895 114 "kc"]
adamc@765 115 val client = ref clientBase
adamc@765 116 fun setClientOnly ls = client := S.addList (clientBase, ls)
adamc@765 117 fun isClientOnly x = S.member (!client, x)
adamc@765 118
adamc@765 119 val serverBase = basis ["requestHeader",
adamc@765 120 "query",
adamc@765 121 "dml",
adamc@765 122 "nextval",
adamc@765 123 "channel",
adamc@765 124 "send"]
adamc@765 125 val server = ref serverBase
adamc@765 126 fun setServerOnly ls = server := S.addList (serverBase, ls)
adamc@765 127 fun isServerOnly x = S.member (!server, x)
adamc@765 128
adamc@765 129 val basisM = foldl (fn ((k, v : string), m) => M.insert (m, ("Basis", k), v)) M.empty
adamc@765 130
adamc@765 131 val jsFuncsBase = basisM [("alert", "alert"),
adamc@765 132 ("get_client_source", "sg"),
adamc@841 133 ("current", "scur"),
adamc@765 134 ("htmlifyBool", "bs"),
adamc@765 135 ("htmlifyFloat", "ts"),
adamc@765 136 ("htmlifyInt", "ts"),
adamc@765 137 ("htmlifyString", "eh"),
adamc@765 138 ("new_client_source", "sc"),
adamc@765 139 ("set_client_source", "sv"),
adamc@838 140 ("stringToFloat", "pflo"),
adamc@838 141 ("stringToInt", "pio"),
adamc@765 142 ("stringToFloat_error", "pfl"),
adamc@765 143 ("stringToInt_error", "pi"),
adamc@765 144 ("urlifyInt", "ts"),
adamc@765 145 ("urlifyFloat", "ts"),
adamc@765 146 ("urlifyString", "uf"),
adamc@912 147 ("urlifyBool", "ub"),
adamc@765 148 ("recv", "rv"),
adamc@765 149 ("strcat", "cat"),
adamc@765 150 ("intToString", "ts"),
adamc@765 151 ("floatToString", "ts"),
adamc@821 152 ("charToString", "ts"),
adamc@765 153 ("onError", "onError"),
adamc@765 154 ("onFail", "onFail"),
adamc@765 155 ("onConnectFail", "onConnectFail"),
adamc@765 156 ("onDisconnect", "onDisconnect"),
adamc@798 157 ("onServerError", "onServerError"),
adamc@798 158 ("attrifyString", "escape"),
adamc@798 159 ("attrifyInt", "ts"),
adamc@798 160 ("attrifyFloat", "ts"),
adamc@820 161 ("attrifyBool", "bs"),
adamc@821 162 ("boolToString", "ts"),
adamc@1057 163 ("str1", "id"),
adamc@821 164 ("strsub", "sub"),
adamc@828 165 ("strsuffix", "suf"),
adamc@829 166 ("strlen", "slen"),
adamc@829 167 ("strindex", "sidx"),
adamc@829 168 ("strchr", "schr"),
adamc@831 169 ("substring", "ssub"),
adamc@895 170 ("strcspn", "sspn"),
adamc@1061 171 ("kc", "kc"),
adamc@1061 172
adamc@1061 173 ("islower", "isLower"),
adamc@1061 174 ("isupper", "isUpper"),
adamc@1061 175 ("isalpha", "isAlpha"),
adamc@1061 176 ("isdigit", "isDigit"),
adamc@1061 177 ("isalnum", "isAlnum"),
adamc@1061 178 ("isblank", "isBlank"),
adamc@1061 179 ("isspace", "isSpace"),
adamc@1061 180 ("isxdigit", "isXdigit"),
adamc@1061 181 ("tolower", "toLower"),
adamc@1061 182 ("toupper", "toUpper")]
adamc@765 183 val jsFuncs = ref jsFuncsBase
adamc@765 184 fun setJsFuncs ls = jsFuncs := foldl (fn ((k, v), m) => M.insert (m, k, v)) jsFuncsBase ls
adamc@765 185 fun jsFunc x = M.find (!jsFuncs, x)
adamc@765 186
adamc@768 187 datatype pattern_kind = Exact | Prefix
adamc@768 188 datatype action = Allow | Deny
adamc@768 189 type rule = { action : action, kind : pattern_kind, pattern : string }
adamc@768 190
adamc@768 191 datatype path_kind = Any | Url | Table | Sequence | View | Relation | Cookie | Style
adamc@768 192 type rewrite = { pkind : path_kind, kind : pattern_kind, from : string, to : string }
adamc@768 193
adamc@768 194 val rewrites = ref ([] : rewrite list)
adamc@768 195
adamc@768 196 fun subsume (pk1, pk2) =
adamc@768 197 pk1 = pk2
adamc@768 198 orelse pk2 = Any
adamc@768 199 orelse pk2 = Relation andalso (pk1 = Table orelse pk1 = Sequence orelse pk1 = View)
adamc@768 200
adamc@768 201 fun setRewriteRules ls = rewrites := ls
adamc@768 202 fun rewrite pk s =
adamc@768 203 let
adamc@768 204 fun rew (ls : rewrite list) =
adamc@768 205 case ls of
adamc@768 206 [] => s
adamc@768 207 | rewr :: ls =>
adamc@768 208 let
adamc@768 209 fun match () =
adamc@768 210 case #kind rewr of
adamc@768 211 Exact => if #from rewr = s then
adamc@768 212 SOME (size s)
adamc@768 213 else
adamc@768 214 NONE
adamc@768 215 | Prefix => if String.isPrefix (#from rewr) s then
adamc@768 216 SOME (size (#from rewr))
adamc@768 217 else
adamc@768 218 NONE
adamc@768 219 in
adamc@768 220 if subsume (pk, #pkind rewr) then
adamc@768 221 case match () of
adamc@768 222 NONE => rew ls
adamc@768 223 | SOME suffixStart => #to rewr ^ String.extract (s, suffixStart, NONE)
adamc@768 224 else
adamc@768 225 rew ls
adamc@768 226 end
adamc@768 227 in
adamc@768 228 rew (!rewrites)
adamc@768 229 end
adamc@768 230
adamc@769 231 val url = ref ([] : rule list)
adamc@769 232 val mime = ref ([] : rule list)
adamc@769 233
adamc@769 234 fun setUrlRules ls = url := ls
adamc@769 235 fun setMimeRules ls = mime := ls
adamc@769 236
adamc@770 237 fun getUrlRules () = !url
adamc@770 238 fun getMimeRules () = !mime
adamc@770 239
adamc@769 240 fun check f rules s =
adamc@769 241 let
adamc@769 242 fun chk (ls : rule list) =
adamc@769 243 case ls of
adamc@769 244 [] => false
adamc@769 245 | rule :: ls =>
adamc@769 246 let
adamc@769 247 val matches =
adamc@769 248 case #kind rule of
adamc@769 249 Exact => #pattern rule = s
adamc@769 250 | Prefix => String.isPrefix (#pattern rule) s
adamc@769 251 in
adamc@769 252 if matches then
adamc@769 253 case #action rule of
adamc@769 254 Allow => true
adamc@769 255 | Deny => false
adamc@769 256 else
adamc@769 257 chk ls
adamc@769 258 end
adamc@769 259 in
adamc@769 260 f s andalso chk (!rules)
adamc@769 261 end
adamc@769 262
adamc@769 263 val checkUrl = check (fn _ => true) url
adamc@769 264 val checkMime = check
adamc@769 265 (CharVector.all (fn ch => Char.isAlphaNum ch orelse ch = #"/" orelse ch = #"-" orelse ch = #"."))
adamc@769 266 mime
adamc@769 267
adamc@855 268
adamc@855 269 type protocol = {
adamc@855 270 name : string,
adamc@855 271 link : string,
adamc@858 272 persistent : bool
adamc@855 273 }
adamc@855 274 val protocols = ref ([] : protocol list)
adamc@855 275 fun addProtocol p = protocols := p :: !protocols
adamc@855 276 fun getProtocol s = List.find (fn p => #name p = s) (!protocols)
adamc@855 277
adamc@855 278 fun clibFile s = OS.Path.joinDirFile {dir = Config.libC,
adamc@855 279 file = s}
adamc@855 280
adamc@865 281 val curProto = ref {name = "",
adamc@865 282 link = "",
adamc@865 283 persistent = false}
adamc@856 284 fun setProtocol name =
adamc@856 285 case getProtocol name of
adamc@856 286 NONE => raise Fail ("Unknown protocol " ^ name)
adamc@856 287 | SOME p => curProto := p
adamc@855 288 fun currentProtocol () = !curProto
adamc@855 289
adamc@857 290 val debug = ref false
adamc@857 291 fun setDebug b = debug := b
adamc@857 292 fun getDebug () = !debug
adamc@857 293
adamc@867 294 datatype sql_type =
adamc@867 295 Int
adamc@867 296 | Float
adamc@867 297 | String
adamc@1011 298 | Char
adamc@867 299 | Bool
adamc@867 300 | Time
adamc@867 301 | Blob
adamc@867 302 | Channel
adamc@867 303 | Client
adamc@867 304 | Nullable of sql_type
adamc@867 305
adamc@873 306 fun p_sql_ctype t =
adamc@867 307 let
adamc@867 308 open Print.PD
adamc@867 309 open Print
adamc@867 310 in
adamc@867 311 case t of
adamc@870 312 Int => "uw_Basis_int"
adamc@870 313 | Float => "uw_Basis_float"
adamc@870 314 | String => "uw_Basis_string"
adamc@1011 315 | Char => "uw_Basis_char"
adamc@870 316 | Bool => "uw_Basis_bool"
adamc@870 317 | Time => "uw_Basis_time"
adamc@870 318 | Blob => "uw_Basis_blob"
adamc@870 319 | Channel => "uw_Basis_channel"
adamc@870 320 | Client => "uw_Basis_client"
adamc@870 321 | Nullable String => "uw_Basis_string"
adamc@873 322 | Nullable t => p_sql_ctype t ^ "*"
adamc@867 323 end
adamc@867 324
adamc@867 325 fun isBlob Blob = true
adamc@867 326 | isBlob (Nullable t) = isBlob t
adamc@867 327 | isBlob _ = false
adamc@867 328
adamc@870 329 fun isNotNull (Nullable _) = false
adamc@870 330 | isNotNull _ = true
adamc@870 331
adamc@866 332 type dbms = {
adamc@866 333 name : string,
adamc@866 334 header : string,
adamc@866 335 link : string,
adamc@873 336 p_sql_type : sql_type -> string,
adamc@870 337 init : {dbstring : string,
adamc@870 338 prepared : (string * int) list,
adamc@870 339 tables : (string * (string * sql_type) list) list,
adamc@872 340 views : (string * (string * sql_type) list) list,
adamc@870 341 sequences : string list} -> Print.PD.pp_desc,
adamc@873 342 query : {loc : ErrorMsg.span, cols : sql_type list,
adamc@880 343 doCols : ({loc : ErrorMsg.span, wontLeakStrings : bool, col : int, typ : sql_type} -> Print.PD.pp_desc)
adamc@867 344 -> Print.PD.pp_desc}
adamc@867 345 -> Print.PD.pp_desc,
adamc@867 346 queryPrepared : {loc : ErrorMsg.span, id : int, query : string,
adamc@873 347 inputs : sql_type list, cols : sql_type list,
adamc@880 348 doCols : ({loc : ErrorMsg.span, wontLeakStrings : bool, col : int,
adamc@880 349 typ : sql_type} -> Print.PD.pp_desc)
adamc@879 350 -> Print.PD.pp_desc,
adamc@879 351 nested : bool}
adamc@868 352 -> Print.PD.pp_desc,
adamc@868 353 dml : ErrorMsg.span -> Print.PD.pp_desc,
adamc@868 354 dmlPrepared : {loc : ErrorMsg.span, id : int, dml : string,
adamc@869 355 inputs : sql_type list} -> Print.PD.pp_desc,
adamc@878 356 nextval : {loc : ErrorMsg.span, seqName : string option, seqE : Print.PD.pp_desc} -> Print.PD.pp_desc,
adamc@874 357 nextvalPrepared : {loc : ErrorMsg.span, id : int, query : string} -> Print.PD.pp_desc,
adamc@874 358 sqlifyString : string -> string,
adamc@874 359 p_cast : string * sql_type -> string,
adamc@874 360 p_blank : int * sql_type -> string,
adamc@877 361 supportsDeleteAs : bool,
adamc@886 362 supportsUpdateAs : bool,
adamc@877 363 createSequence : string -> string,
adamc@878 364 textKeysNeedLengths : bool,
adamc@879 365 supportsNextval : bool,
adamc@882 366 supportsNestedPrepared : bool,
adamc@890 367 sqlPrefix : string,
adamc@1014 368 supportsOctetLength : bool,
adamc@1014 369 trueString : string,
adamc@1014 370 falseString : string
adamc@866 371 }
adamc@866 372
adamc@866 373 val dbmses = ref ([] : dbms list)
adamc@866 374 val curDb = ref ({name = "",
adamc@866 375 header = "",
adamc@866 376 link = "",
adamc@873 377 p_sql_type = fn _ => "",
adamc@867 378 init = fn _ => Print.box [],
adamc@867 379 query = fn _ => Print.box [],
adamc@868 380 queryPrepared = fn _ => Print.box [],
adamc@868 381 dml = fn _ => Print.box [],
adamc@869 382 dmlPrepared = fn _ => Print.box [],
adamc@869 383 nextval = fn _ => Print.box [],
adamc@874 384 nextvalPrepared = fn _ => Print.box [],
adamc@874 385 sqlifyString = fn s => s,
adamc@874 386 p_cast = fn _ => "",
adamc@874 387 p_blank = fn _ => "",
adamc@877 388 supportsDeleteAs = false,
adamc@886 389 supportsUpdateAs = false,
adamc@877 390 createSequence = fn _ => "",
adamc@878 391 textKeysNeedLengths = false,
adamc@879 392 supportsNextval = false,
adamc@882 393 supportsNestedPrepared = false,
adamc@890 394 sqlPrefix = "",
adamc@1014 395 supportsOctetLength = false,
adamc@1014 396 trueString = "",
adamc@1014 397 falseString = ""} : dbms)
adamc@866 398
adamc@866 399 fun addDbms v = dbmses := v :: !dbmses
adamc@866 400 fun setDbms s =
adamc@866 401 case List.find (fn db => #name db = s) (!dbmses) of
adamc@866 402 NONE => raise Fail ("Unknown DBMS " ^ s)
adamc@866 403 | SOME db => curDb := db
adamc@866 404 fun currentDbms () = !curDb
adamc@866 405
adamc@891 406 val dbstring = ref (NONE : string option)
adamc@891 407 fun setDbstring so = dbstring := so
adamc@891 408 fun getDbstring () = !dbstring
adamc@891 409
adamc@891 410 val exe = ref (NONE : string option)
adamc@891 411 fun setExe so = exe := so
adamc@891 412 fun getExe () = !exe
adamc@891 413
adamc@891 414 val sql = ref (NONE : string option)
adamc@891 415 fun setSql so = sql := so
adamc@891 416 fun getSql () = !sql
adamc@891 417
adamc@1016 418 val coreInline = ref 20
adamc@1016 419 fun setCoreInline n = coreInline := n
adamc@1016 420 fun getCoreInline () = !coreInline
adamc@1016 421
adamc@1016 422 val monoInline = ref 20
adamc@1016 423 fun setMonoInline n = monoInline := n
adamc@1016 424 fun getMonoInline () = !monoInline
adamc@1016 425
adamc@765 426 end