CookBook/Recipes/StoringData.thy
author Christian Urban <urbanc@in.tum.de>
Wed, 14 Jan 2009 16:46:07 +0000
changeset 68 e7519207c2b7
parent 63 83cea5dc6bac
child 69 19106a9975c1
permissions -rw-r--r--
added more to the "new command section" and tuning
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     1
theory StoringData
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     2
imports "../Base"
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     3
begin
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     4
63
Christian Urban <urbanc@in.tum.de>
parents: 61
diff changeset
     5
section {* Storing Data\label{recipe:storingdata} *} 
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     6
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     7
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     8
text {*
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
     9
  {\bf Problem:} 
68
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    10
  Your tool needs to manage data.\smallskip
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    11
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    12
  {\bf Solution:} This can be achieved using a generic data slot.\smallskip
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    13
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    14
  Every generic data slot may keep data of any kind which is stored in the
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    15
  context.
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    16
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    17
  *}
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    18
68
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    19
ML {* 
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    20
local
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    21
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    22
structure Data = GenericDataFun
68
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    23
 ( type T = int Symtab.table
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    24
   val empty = Symtab.empty
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    25
   val extend = I
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    26
   fun merge _ = Symtab.merge (K true)
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    27
 )
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    28
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    29
in
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    30
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    31
val lookup = Symtab.lookup o Data.get
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    32
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    33
fun update k v = Data.map (Symtab.update (k, v))
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    34
63
Christian Urban <urbanc@in.tum.de>
parents: 61
diff changeset
    35
end *}
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    36
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    37
setup {* Context.theory_map (update "foo" 1) *}
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    38
68
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    39
text {*
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    40
 
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    41
  @{ML_response [display] "lookup (Context.Proof @{context}) \"foo\"" "SOME 1"} 
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    42
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    43
e7519207c2b7 added more to the "new command section" and tuning
Christian Urban <urbanc@in.tum.de>
parents: 63
diff changeset
    44
*}
61
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    45
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    46
text {*
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    47
  alternatives: TheoryDataFun, ProofDataFun
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    48
  Code: Pure/context.ML *}
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    49
64c9540f2f84 Added four recipes.
boehmes
parents:
diff changeset
    50
end