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
|
(*
* Parser for CM description files.
*
* (C) 1999 Lucent Technologies, Bell Laboratories
*
* Author: Matthias Blume (blume@kurims.kyoto-u.ac.jp)
*)
signature PARSE = sig
val parse : { load_plugin: SrcPath.dir -> string -> bool,
gr: GroupReg.groupreg,
param: GeneralParams.param,
stabflag: bool option,
group: SrcPath.file,
init_group: CMSemant.group,
paranoid: bool }
-> (CMSemant.group * GeneralParams.info) option
val reset : unit -> unit
val listLibs : unit -> SrcPath.file list
val dropPickles : unit -> unit
val dismissLib : SrcPath.file -> unit
end
functor ParseFn (val pending : unit -> DependencyGraph.impexp SymbolMap.map
val evictStale : unit -> unit
structure StabModmap : STAB_MODMAP
structure Stabilize : STABILIZE) :> PARSE = struct
structure VerifyStable = VerStabFn (structure Stabilize = Stabilize)
val lookAhead = 30
structure PP = PrettyPrintNew
structure S = Source
structure EM = ErrorMsg
structure SM = SourceMap
structure GG = GroupGraph
structure DG = DependencyGraph
structure CMLrVals = CMLrValsFun (structure Token = LrParser.Token)
structure CMLex = CMLexFun (structure Tokens = CMLrVals.Tokens)
structure CMParse =
JoinWithArg (structure ParserData = CMLrVals.ParserData
structure Lex = CMLex
structure LrParser = LrParser)
(* the "stable group cache" *)
val sgc = ref (SrcPathMap.empty: CMSemant.group SrcPathMap.map)
fun reset () = sgc := SrcPathMap.empty
fun majorGC () = SMLofNJ.Internals.GC.doGC 7
fun cachedStable (p, ig as GG.GROUP { grouppath, ... }) =
if SrcPath.compare (p, grouppath) = EQUAL then SOME ig
else SrcPathMap.find (!sgc, p)
| cachedStable (_, GG.ERRORGROUP) = NONE
(* When an entry A vanishes from the stable cache (this only happens in
* paranoid mode), then all the other ones that refer to A must
* vanish, too. They might still be valid themselves, but if they
* had been unpickled before A became invalid they will point to
* invalid data. By removing them from the cache we force them to
* be re-read and re-unpickled. This restores sanity. *)
fun delCachedStable (ginfo, p, vers, GG.GROUP { grouppath = igp, ... }) =
let val changed = ref true
val policy = #fnpolicy (#param (ginfo: GeneralParams.info))
val sname = FilenamePolicy.mkStableName policy (p, vers)
fun canStay GG.ERRORGROUP = true (* doesn't matter *)
| canStay (GG.GROUP { sublibs, ... }) = let
fun goodSublib (p, gth, _) =
case gth () of
GG.GROUP { kind = GG.LIB { kind = GG.STABLE _,
... }, ... } =>
SrcPath.compare (p, igp) = EQUAL orelse
SrcPathMap.inDomain (!sgc, p)
| _ => true
val cs = List.all goodSublib sublibs
in
if cs then () else changed := true;
cs
end
in
(* logically remove the stable library from the registry *)
(sgc := #1 (SrcPathMap.remove (!sgc, p)))
handle LibBase.NotFound => ();
(* physically remove the stablefile... *)
OS.FileSys.remove sname handle _ => ();
(* restore sanity in the registry *)
while !changed do
(changed := false; sgc := SrcPathMap.filter canStay (!sgc))
end
| delCachedStable (_, _, _, GG.ERRORGROUP) = ()
fun listLibs () = map #1 (SrcPathMap.listItemsi (!sgc))
fun dropPickles () = let
fun drop (GG.GROUP { kind = GG.LIB { kind = GG.STABLE dropper,
... }, ... }) = dropper ()
| drop _ = ()
in
SrcPathMap.app drop (!sgc)
end
fun dismissLib l =
(StabModmap.reset ();
sgc := #1 (SrcPathMap.remove (!sgc, l)))
handle LibBase.NotFound => ()
fun parse args = let
val _ = SrcPath.sync ()
val { load_plugin, gr, param, stabflag, group,
init_group, paranoid } = args
val { grouppath = init_gname, ... } =
case init_group of
GG.GROUP x => x
| GG.ERRORGROUP =>
EM.impossible "parse.sml: parse: bad init group"
val stabthis = isSome stabflag
val staball = stabflag = SOME true
val groupreg = gr
val errcons = EM.defaultConsumer ()
val youngest = ref TStamp.ancient
val ginfo0 = { param = param, groupreg = groupreg,
errcons = errcons, youngest = youngest }
val keep_going = #keep_going param
(* The "group cache" -- we store "group options"; having
* NONE registered for a group means that a previous attempt
* to parse it had failed.
* This registry is primed with the "init" group because it is
* "special" and cannot be parsed directly. *)
val gc = ref (SrcPathMap.singleton (init_gname, SOME init_group))
val em = ref StableMap.empty
fun update_em (GG.GROUP ns_g, GG.GROUP s_g) =
let val s_e = #exports s_g
fun add (sy, (snth, _, _)) =
case snth () of
(_ , DG.SB_SNODE (DG.SNODE sn)) =>
(case SymbolMap.find (s_e, sy) of
NONE => ()
| SOME (bnth, _, _) =>
(case bnth () of
(_, DG.SB_BNODE (DG.BNODE bn, _, _)) =>
em := StableMap.insert (!em, #bininfo bn,
#smlinfo sn)
| _ => ()))
| _ => ()
in
SymbolMap.appi add (#exports ns_g)
end
| update_em _ = ()
fun registerNewStable (p, g) =
(sgc := SrcPathMap.insert (!sgc, p, g);
SrcPathSet.app (SmlInfo.cleanGroup true) (Reachable.groupsOf g);
evictStale ();
(gc := #1 (SrcPathMap.remove (!gc, p));
(* ... and for good measure, do a major GC... *)
majorGC ())
handle LibBase.NotFound => ())
fun hasCycle (group, groupstack) = let
(* checking for cycles among groups and printing them nicely *)
fun findCycle ([], _) = []
| findCycle ((h as (g, (s, p1, p2))) :: t, cyc) =
if SrcPath.compare (g, group) = EQUAL then rev (h :: cyc)
else findCycle (t, h :: cyc)
fun report ((g, (s, p1, p2)), hist) = let
fun pphist pps = let
fun loop (_, []) = ()
| loop (g0, (g, (s, p1, p2)) :: t) = let
val s = EM.matchErrorString s (p1, p2)
in
PP.newline pps;
PP.string pps s;
PP.string pps ": importing ";
PP.string pps (SrcPath.descr g0);
loop (g, t)
end
in
loop (g, hist)
end
in
EM.error s (p1, p2) EM.COMPLAIN
("group hierarchy forms a cycle with " ^
SrcPath.descr group)
pphist
end
in
case findCycle (groupstack, []) of
h :: t => (report (h, t); true)
| [] => false
end
fun mparse args = let
val (group, vers, groupstack, pErrFlag, stabthis, curlib,
ginfo, rb, error) = args
fun getStable stablestack (ginfo, gpath, vers, rb) = let
(* This is a separate "findCycle" routine that detects
* cycles among stable libraries. These cycles should
* never occur unless someone purposefully renames
* stable library files in a bad way. *)
fun findCycle ([], _) = NONE
| findCycle (h :: t, cyc) =
if SrcPath.compare (h, gpath) = EQUAL then SOME (h :: cyc)
else findCycle (t, h :: cyc)
fun report cyc = let
fun pphist pps = let
fun loop [] = ()
| loop (h :: t) =
(PP.newline pps;
PP.string pps (SrcPath.descr h);
loop t)
in
loop (rev cyc)
end
in
EM.errorNoFile (errcons, pErrFlag) SM.nullRegion
EM.COMPLAIN
("stable libraries form a cycle with " ^
SrcPath.descr gpath)
pphist
end
fun load () = let
val go = Stabilize.loadStable
{ getGroup = getStable (gpath :: stablestack),
anyerrors = pErrFlag }
(ginfo, gpath, vers, rb)
in
case go of
NONE => NONE
| SOME g =>
(registerNewStable (gpath, g);
Say.vsay ["[library ", SrcPath.descr gpath,
" is stable]\n"];
SOME g)
end
in
case findCycle (stablestack, []) of
NONE => (case cachedStable (gpath, init_group) of
SOME g => SOME g
| NONE => load ())
| SOME cyc => (report cyc; NONE)
end
fun stabilize (NONE, _) = NONE
| stabilize (SOME g, rb) =
(case g of
GG.ERRORGROUP => NONE
| GG.GROUP { kind = GG.LIB _, ... } => let
val go = Stabilize.stabilize ginfo
{ group = g, anyerrors = pErrFlag,
rebindings = rb }
in
case go of
NONE => NONE
| SOME g' =>
(registerNewStable (group, g'); SOME g')
end
| _ => SOME g)
in
case SrcPathMap.find (!gc, group) of
SOME gopt =>
(case gopt of
SOME (GG.GROUP { kind = GG.NOLIB { owner, ... },...}) =>
let fun libname l =
getOpt (Option.map SrcPath.descr l,
"<toplevel>")
fun eq (NONE, NONE) = true
| eq (SOME p, SOME p') =
SrcPath.compare (p, p') = EQUAL
| eq _ = false
in
if eq (curlib, owner) then ()
else (error (concat ["group ",
SrcPath.descr group,
" appears as member of \
\two different libraries: ",
libname owner, " and ",
libname curlib, "\n"]);
pErrFlag := true)
end
| _ => ();
gopt)
| NONE => let
fun try_s () = getStable [] (ginfo, group, vers, rb)
fun try_n () =
parse' (group, groupstack, pErrFlag, curlib, ginfo, rb)
fun reg gopt =
(gc := SrcPathMap.insert (!gc, group, gopt); gopt)
fun proc_n gopt =
reg (if stabthis then stabilize (gopt, rb)
else (SmlInfo.cleanGroup false group; gopt))
in
if paranoid then
case try_n () of
NONE => reg NONE
| SOME g => let
val gopt' =
if VerifyStable.verify ginfo (!em) g then
reg (case try_s () of
NONE => SOME g
| SOME g' => SOME g')
else (delCachedStable (ginfo, group, vers,
init_group);
proc_n (SOME g))
in
case gopt' of
NONE => NONE
| SOME g' => (update_em (g, g'); SOME g')
end
else case try_s () of
SOME g => reg (SOME g)
| NONE => proc_n (try_n ())
end
end
(* Parse' is used when we are sure that we don't want to load
* a stable library. *)
and parse' (group, groupstack, pErrFlag, curlib, ginfo, rb) = let
val ginfo = GeneralParams.bind ginfo rb
(* normal processing -- used when there is no cycle to report *)
fun normal_processing () = let
val _ = Say.vsay ["[scanning ", SrcPath.descr group, "]\n"]
val context = SrcPath.dir group
val local_registry = CMSemant.newToolRegistry ()
fun work stream = let
val source =
S.newSource (SrcPath.osstring group,
stream, false, errcons)
val sourceMap = #sourceMap source
val _ = GroupReg.register groupreg (group, source)
(* We can hard-wire the source into this
* error function because the function is only for
* immediate use and doesn't get stored into persistent
* data structures. *)
fun error r m =
EM.error source r EM.COMPLAIN m EM.nullErrorBody
fun obsolete r =
if #get StdConfig.warn_obsolete () then
EM.error source r EM.WARN
"old-style feature (obsolete)" EM.nullErrorBody
else ()
(* recParse returns a group (not an option).
* This function is used to parse sub-groups.
* Errors are propagated by explicitly setting the
* "anyErrors" flag of the parent group. *)
fun recParse (p1, p2) curlib (p, v, rb) = let
val gs' = (group, (source, p1, p2)) :: groupstack
(* my error flag *)
val mef = #anyErrors source
in
(* unless we are in keep-going mode we do no further
* recursive traversals once there was an error on
* this group. *)
if !mef andalso not keep_going then GG.ERRORGROUP
else case mparse (p, v, gs', mef, staball,
curlib, ginfo, rb, error (p1, p2)) of
NONE => (mef := true; GG.ERRORGROUP)
| SOME res => res
end
handle exn as IO.Io _ =>
(error (p1, p2) (General.exnMessage exn);
GG.ERRORGROUP)
fun doMember ({ name, mkpath }, p1, p2, c, oto) =
CMSemant.member { gp = ginfo,
rparse = recParse (p1, p2),
load_plugin = load_plugin }
{ name = name, mkpath = mkpath,
class = c, tooloptions = oto,
group = (group, (p1, p2)),
local_registry = local_registry,
context = context }
(* Build the argument for the lexer; the lexer's local
* state is encapsulated here to make sure the parser
* is re-entrant. *)
val lexarg = let
(* local state *)
val depth = ref 0
val curstring = ref []
val startpos = ref 0
val instring = ref false
(* handling comments *)
fun enterC () = depth := !depth + 1
fun leaveC () = let
val d = !depth - 1
in
depth := d;
d = 0
end
(* handling strings *)
fun newS pos =
(instring := true;
curstring := [];
startpos := pos)
fun addS c = curstring := c :: !curstring
fun addSC (s, offs) =
addS (chr (ord (String.sub (s, 2)) - offs))
fun addSN (s, pos) = let
val ns = substring (s, 1, 3)
val n = Int.fromString ns
in
addS (chr (valOf n))
handle _ =>
error (pos, pos + size s)
("illegal decimal char spec: " ^ ns)
end
fun getS (pos, tok) =
(instring := false;
tok (implode (rev (!curstring)), !startpos, pos))
(* handling EOF *)
fun handleEof () = let
val pos = SM.lastLinePos sourceMap
in
if !depth > 0 then
error (pos, pos)
"unexpected end of input in comment"
else if !instring then
error (pos, pos)
"unexpected end of input in string"
else ();
pos
end
(* handling line breaks *)
fun newline pos = SM.newline sourceMap pos
(* handling #line directives *)
fun sync (initpos, t) = let
val endpos = initpos + size t
fun sep c = c = #"#" orelse Char.isSpace c
fun cvt s = getOpt (Int.fromString s, 0)
fun r (line, col, file) =
SM.resynch sourceMap (initpos, endpos, line, col, file)
in
case String.tokens sep t of
[_, line] =>
r (cvt line, 0, NONE)
| [_, line, file] =>
r (cvt line, 0, SOME file)
| [_, line, col, file] =>
r (cvt line, cvt col, SOME file)
| _ => error (initpos, endpos)
"illegal #line directive"
end
in
{ enterC = enterC,
leaveC = leaveC,
newS = newS,
addS = addS,
addSC = addSC,
addSN = addSN,
getS = getS,
handleEof = handleEof,
newline = newline,
obsolete = obsolete,
error = error,
sync = sync,
in_section2 = ref false }
end
fun inputc k = TextIO.input stream
val tokenStream = CMParse.makeLexer inputc lexarg
val parsearg =
{ grouppath = group,
context = context,
obsolete = obsolete,
error = error,
doMember = doMember,
curlib = curlib,
gp = ginfo,
ig = init_group }
val (parseResult, _) =
CMParse.parse (lookAhead, tokenStream,
fn (s,p1,p2) => error (p1, p2) s,
parsearg)
in
if !(#anyErrors source) then NONE
else SOME parseResult
end
fun openIt () = TextIO.openIn (SrcPath.osstring group)
in
SafeIO.perform { openIt = openIt,
closeIt = TextIO.closeIn,
work = work,
cleanup = fn _ => () }
end
handle LrParser.ParseError => NONE
in
if hasCycle (group, groupstack) then NONE
else normal_processing ()
end
in
SmlInfo.newGeneration ();
case mparse (group, NONE, [], ref false, stabthis, NONE, ginfo0, [],
fn _ => ()) of
NONE => NONE
| SOME g => SOME (g, ginfo0)
end
end
|