aboutsummaryrefslogtreecommitdiffhomepage
path: root/interp/dumpglob.ml
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-04 10:34:07 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2010-12-04 10:34:07 +0000
commitb8194b22f93912079d07714c945a3f273347fad5 (patch)
treec65fb15a91f4609ead34b7d3b11a9fbf23ef7c12 /interp/dumpglob.ml
parentf1c2d541fb48f74f89e63a681d274de6b939a8db (diff)
Fixing several bugs with links to notation in coqdoc, including bug #2445:
- single quotes in notations were breaking coqdoc, even raising an out-of-bound error when appearing in the last character of the notation; - letter "x" in notation tokens were inelegantly surrounded by single quotes, - rare, but allowed characters < 32 were lost in index pages. A new fully injective space-free-and-human-readable encoding algorithm is adopted which put single quotes around all terminal tokens, double existing single quotes, and replace invisible characters by ^X-like strings. Moreover, the keywords "Local"/"Global" were blocking the detection of keywords starting coq lines (e.g. "Local Notation" was not recognized as a notation). "Local" and "Global" are now uniformly treated as modifiers of vernac commands as they are in the Coq parser. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@13673 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'interp/dumpglob.ml')
-rw-r--r--interp/dumpglob.ml37
1 files changed, 30 insertions, 7 deletions
diff --git a/interp/dumpglob.ml b/interp/dumpglob.ml
index e7394d70c..26f4d4e19 100644
--- a/interp/dumpglob.ml
+++ b/interp/dumpglob.ml
@@ -174,15 +174,38 @@ let dump_libref loc dp ty =
(fst (Util.unloc loc)) (Names.string_of_dirpath dp) ty)
let cook_notation df sc =
+ (* We encode notations so that they are space-free and still human-readable *)
+ (* - all spaces are replaced by _ *)
+ (* - all _ denoting a non-terminal symbol are replaced by x *)
+ (* - all terminal tokens are surrounded by single quotes, including '_' *)
+ (* which already denotes terminal _ *)
+ (* - all single quotes in terminal tokens are doubled *)
+ (* - characters < 32 are represented by '^A, '^B, '^C, etc *)
+ (* The output is decoded in function Index.prepare_entry of coqdoc *)
let ntn = String.make (String.length df * 3) '_' in
let j = ref 0 in
- let quoted = ref false in
- for i = 0 to String.length df - 1 do
- if df.[i] = '\'' then quoted := not !quoted;
- if df.[i] = ' ' then (ntn.[!j] <- '_'; incr j) else
- if df.[i] = '_' && not !quoted then (ntn.[!j] <- 'x'; incr j) else
- if df.[i] = 'x' && not !quoted then (String.blit "'x'" 0 ntn !j 3; j := !j + 3) else
- (ntn.[!j] <- df.[i]; incr j)
+ let l = String.length df - 1 in
+ let i = ref 0 in
+ while !i <= l do
+ assert (df.[!i] <> ' ');
+ if df.[!i] = '_' && (!i = l || df.[!i+1] = ' ') then
+ (* Next token is a non-terminal *)
+ (ntn.[!j] <- 'x'; incr j; incr i)
+ else begin
+ (* Next token is a terminal *)
+ ntn.[!j] <- '\''; incr j;
+ while !i <= l && df.[!i] <> ' ' do
+ if df.[!i] < ' ' then
+ let c = char_of_int (int_of_char 'A' + int_of_char df.[!i] - 1) in
+ (String.blit ("'^" ^ String.make 1 c) 0 ntn !j 3; j := !j+3; incr i)
+ else begin
+ if df.[!i] = '\'' then (ntn.[!j] <- '\''; incr j);
+ ntn.[!j] <- df.[!i]; incr j; incr i
+ end
+ done;
+ ntn.[!j] <- '\''; incr j
+ end;
+ if !i <= l then (ntn.[!j] <- '_'; incr j; incr i)
done;
let df = String.sub ntn 0 !j in
match sc with Some sc -> ":" ^ sc ^ ":" ^ df | _ -> "::" ^ df