src/Pure/context_position.ML
author wenzelm
Sat, 05 Apr 2014 15:03:40 +0200
changeset 56421 1ffd7eaa778b
parent 56333 38f1422ef473
child 57858 39d9c7f175e0
permissions -rw-r--r--
updated to jedit_build-20140405: Code2HTML.jar, CommonControls.jar, Console.jar, kappalayout.jar, Navigator.jar, SideKick.jar, doc with jEdit manuals (ant dist-manuals);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     1
(*  Title:      Pure/context_position.ML
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     2
    Author:     Makarius
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     3
28409
a1feb819b0a2 renamed report to report_visible;
wenzelm
parents: 28405
diff changeset
     4
Context position visibility flag.
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     5
*)
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     6
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     7
signature CONTEXT_POSITION =
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
     8
sig
55672
5e25cc741ab9 support for completion within the formal context;
wenzelm
parents: 52700
diff changeset
     9
  val is_visible_generic: Context.generic -> bool
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    10
  val is_visible: Proof.context -> bool
52700
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    11
  val is_visible_global: theory -> bool
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    12
  val set_visible: bool -> Proof.context -> Proof.context
52700
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    13
  val set_visible_global: bool -> theory -> theory
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    14
  val restore_visible: Proof.context -> Proof.context -> Proof.context
52700
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    15
  val restore_visible_global: theory -> theory -> theory
55923
wenzelm
parents: 55672
diff changeset
    16
  val is_reported_generic: Context.generic -> Position.T -> bool
wenzelm
parents: 55672
diff changeset
    17
  val is_reported: Proof.context -> Position.T -> bool
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46874
diff changeset
    18
  val report_generic: Context.generic -> Position.T -> Markup.T -> unit
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    19
  val reported_text: Proof.context -> Position.T -> Markup.T -> string -> string
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    20
  val report_text: Proof.context -> Position.T -> Markup.T -> string -> unit
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    21
  val report: Proof.context -> Position.T -> Markup.T -> unit
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 47813
diff changeset
    22
  val reports_text: Proof.context -> Position.report_text list -> unit
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 41470
diff changeset
    23
  val reports: Proof.context -> Position.report list -> unit
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    24
end;
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    25
33383
12d79ece3f7e modernized structure Context_Position;
wenzelm
parents: 29606
diff changeset
    26
structure Context_Position: CONTEXT_POSITION =
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    27
struct
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    28
47813
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    29
structure Data = Generic_Data
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    30
(
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    31
  type T = bool option;
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    32
  val empty: T = NONE;
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    33
  val extend = I;
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    34
  fun merge (x, y): T = if is_some x then x else y;
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    35
);
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    36
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    37
val is_visible_generic = the_default true o Data.get;
18de60b8c906 made Context_Position independent from Config;
wenzelm
parents: 47005
diff changeset
    38
val is_visible = is_visible_generic o Context.Proof;
52700
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    39
val is_visible_global = is_visible_generic o Context.Theory;
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    40
52700
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    41
val set_visible = Context.proof_map o Data.put o SOME;
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    42
val set_visible_global = Context.theory_map o Data.put o SOME;
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    43
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    44
val restore_visible = set_visible o is_visible;
d63f80f93025 provide global operations as well;
wenzelm
parents: 52699
diff changeset
    45
val restore_visible_global = set_visible_global o is_visible_global;
38831
4933a3dfd745 more careful treatment of context visibility flag wrt. spurious warnings;
wenzelm
parents: 38481
diff changeset
    46
55923
wenzelm
parents: 55672
diff changeset
    47
fun is_reported_generic context pos = is_visible_generic context andalso Position.is_reported pos;
wenzelm
parents: 55672
diff changeset
    48
fun is_reported ctxt pos = is_visible ctxt andalso Position.is_reported pos;
wenzelm
parents: 55672
diff changeset
    49
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46874
diff changeset
    50
fun report_generic context pos markup =
55923
wenzelm
parents: 55672
diff changeset
    51
  if is_reported_generic context pos then
56333
38f1422ef473 support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
wenzelm
parents: 56294
diff changeset
    52
    Output.report [Position.reported_text pos markup ""]
47005
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46874
diff changeset
    53
  else ();
421760a1efe7 maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents: 46874
diff changeset
    54
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    55
fun reported_text ctxt pos markup txt =
55923
wenzelm
parents: 55672
diff changeset
    56
  if is_reported ctxt pos then Position.reported_text pos markup txt else "";
38481
81ec258c4cd3 Output_Position.report_text -- markup with potential "arguments";
wenzelm
parents: 38237
diff changeset
    57
56333
38f1422ef473 support bulk messages consisting of small string segments, which are more healthy to the Poly/ML RTS and might prevent spurious GC crashes such as MTGCProcessMarkPointers::ScanAddressesInObject;
wenzelm
parents: 56294
diff changeset
    58
fun report_text ctxt pos markup txt = Output.report [reported_text ctxt pos markup txt];
39507
839873937ddd tuned signature of (Context_)Position.report variants;
wenzelm
parents: 39440
diff changeset
    59
fun report ctxt pos markup = report_text ctxt pos markup "";
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    60
48767
7f0c469cc796 reports with body text, not just markup;
wenzelm
parents: 47813
diff changeset
    61
fun reports_text ctxt reps = if is_visible ctxt then Position.reports_text reps else ();
44736
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 41470
diff changeset
    62
fun reports ctxt reps = if is_visible ctxt then Position.reports reps else ();
c2a3f1c84179 bulk reports for improved message throughput;
wenzelm
parents: 41470
diff changeset
    63
28405
000dee6d5d80 Context position visibility.
wenzelm
parents:
diff changeset
    64
end;