SCM Repository
View of /sml/trunk/src/cm/paths/pathconfig.sml
Parent Directory
|
Revision Log
Revision 322 -
(download)
(annotate)
Tue Jun 8 09:36:16 1999 UTC (21 years, 7 months ago) by blume
File size: 986 byte(s)
Tue Jun 8 09:36:16 1999 UTC (21 years, 7 months ago) by blume
File size: 986 byte(s)
FilenamePolicy implemented
(* * Configurable path anchors for new CM. * * (C) 1999 Lucent Technologies, Bell Laboratories * * Author: Matthias Blume (blume@kurims.kyoto-u.ac.jp) *) signature PATHCONFIG = sig type mode val hardwire : (string * string) list -> mode val envcfg : (string * string EnvConfig.getterSetter) list -> mode val configAnchor : mode -> string -> (unit -> string) option end (* * The names of config anchors must be names of actual files. * Function configAnchor will map the name of the anchor to * the directory that contains the corresponding file. *) structure PathConfig :> PATHCONFIG = struct type mode = string -> (unit -> string) option fun hardwire [] (a: string) = NONE | hardwire ((a', v) :: t) a = if a = a' then SOME (fn () => v) else hardwire t a fun envcfg [] (a: string) = NONE | envcfg ((a', gs) :: t) a = if a = a' then SOME (fn () => EnvConfig.getSet gs NONE) else envcfg t a fun configAnchor m s = m s end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |