Overview
Comment: | s_expressions-generic_caches: new package for simnple memory container of S-expression |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a23e6143775475dc9ce23a67175e7718 |
User & Date: | nat on 2014-02-09 20:52:36 |
Other Links: | manifest | tags |
Context
2014-02-10
| ||
19:50 | storage_pools: new package for entities related to storage pools check-in: 0a176c90c4 user: nat tags: trunk | |
2014-02-09
| ||
20:52 | s_expressions-generic_caches: new package for simnple memory container of S-expression check-in: a23e614377 user: nat tags: trunk | |
2014-02-08
| ||
17:17 | s_expressions-printers-pretty-tests: new test for parameter mutators (this makes the test suite cover all the reachable code) check-in: 4a8ff2de3d user: nat tags: trunk | |
Changes
Added src/natools-s_expressions-generic_caches.adb version [5e6685c7ea].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2013-2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Natools.S_Expressions.Generic_Caches is -------------------- -- Tree Interface -- -------------------- procedure Append (Exp : in out Tree; Kind : in Node_Kind; Data : in Atom_Access := null) is N : Node_Access; begin case Kind is when Atom_Node => N := new Node'(Kind => Atom_Node, Parent | Next => null, Data => Data); when List_Node => N := new Node'(Kind => List_Node, Parent | Next | Child => null); end case; if Exp.Root = null then pragma Assert (Exp.Last = null); Exp.Root := N; else pragma Assert (Exp.Last /= null); if Exp.Opening then pragma Assert (Exp.Last.Kind = List_Node); pragma Assert (Exp.Last.Child = null); Exp.Last.Child := N; N.Parent := Exp.Last; else pragma Assert (Exp.Last.Next = null); Exp.Last.Next := N; N.Parent := Exp.Last.Parent; end if; end if; Exp.Last := N; Exp.Opening := Kind = List_Node; end Append; procedure Close_List (Exp : in out Tree) is begin if Exp.Opening then Exp.Opening := False; elsif Exp.Last /= null and then Exp.Last.Parent /= null then Exp.Last := Exp.Last.Parent; end if; end Close_List; function Create_Tree return Tree is begin return Tree'(Ada.Finalization.Limited_Controlled with Root | Last => null, Opening => False); end Create_Tree; function Duplicate (Source : Tree) return Tree is function Dup_List (First, Parent : Node_Access) return Node_Access; function Dup_Node (N, Parent : Node_Access) return Node_Access; New_Last : Node_Access := null; function Dup_List (First, Parent : Node_Access) return Node_Access is Source : Node_Access := First; Result, Target : Node_Access; begin if First = null then return null; end if; Result := Dup_Node (First, Parent); Target := Result; loop Source := Source.Next; exit when Source = null; Target.Next := Dup_Node (Source, Parent); Target := Target.Next; end loop; return Result; end Dup_List; function Dup_Node (N, Parent : Node_Access) return Node_Access is Result : Node_Access; begin if N = null then return null; end if; case N.Kind is when Atom_Node => Result := new Node'(Kind => Atom_Node, Parent => Parent, Next => null, Data => new Atom'(N.Data.all)); when List_Node => Result := new Node'(Kind => List_Node, Parent => Parent, Next => null, Child => Dup_List (N.Child, N)); end case; if N = Source.Last then New_Last := Result; end if; return Result; end Dup_Node; begin return Result : Tree do Result.Root := Dup_List (Source.Root, null); pragma Assert ((New_Last = null) = (Source.Last = null)); Result.Last := New_Last; Result.Opening := Source.Opening; end return; end Duplicate; overriding procedure Finalize (Object : in out Tree) is procedure List_Free (First : in out Node_Access); procedure List_Free (First : in out Node_Access) is Next : Node_Access := First; Cur : Node_Access; begin while Next /= null loop Cur := Next; case Cur.Kind is when Atom_Node => Unchecked_Free (Cur.Data); when List_Node => List_Free (Cur.Child); end case; Next := Cur.Next; Unchecked_Free (Cur); end loop; First := null; end List_Free; begin List_Free (Object.Root); Object.Last := null; Object.Opening := False; end Finalize; ----------------------- -- Writing Interface -- ----------------------- function Duplicate (Cache : Reference) return Reference is function Dup_Tree return Tree; function Dup_Tree return Tree is begin return Duplicate (Cache.Exp.Query.Data.all); end Dup_Tree; begin return Reference'(Exp => Trees.Create (Dup_Tree'Access)); end Duplicate; ----------------------- -- Printer Interface -- ----------------------- overriding procedure Open_List (Output : in out Reference) is begin Output.Exp.Update.Data.Append (List_Node); end Open_List; overriding procedure Append_Atom (Output : in out Reference; Data : in Atom) is begin if Output.Exp.Is_Empty then Output.Exp.Replace (Create_Tree'Access); end if; Output.Exp.Update.Data.Append (Atom_Node, new Atom'(Data)); end Append_Atom; overriding procedure Close_List (Output : in out Reference) is begin Output.Exp.Update.Data.Close_List; end Close_List; ------------------------- -- Reading Subprograms -- ------------------------- function First (Cache : Reference'Class) return Cursor is N : Node_Access; begin if Cache.Exp.Is_Empty then return Cursor'(others => <>); else N := Cache.Exp.Query.Data.Root; pragma Assert (N /= null); return Cursor'(Exp => Cache.Exp, Position => N, Opening => N.Kind = List_Node); end if; end First; -------------------------- -- Descriptor Interface -- -------------------------- overriding function Current_Event (Object : in Cursor) return Events.Event is begin if Object.Position = null then return Events.End_Of_Input; end if; case Object.Position.Kind is when Atom_Node => return Events.Add_Atom; when List_Node => if Object.Opening then return Events.Open_List; else return Events.Close_List; end if; end case; end Current_Event; overriding function Current_Atom (Object : in Cursor) return Atom is begin if Object.Position = null or else Object.Position.Kind /= Atom_Node then raise Program_Error; end if; return Object.Position.Data.all; end Current_Atom; overriding function Current_Level (Object : in Cursor) return Natural is Result : Natural := 0; N : Node_Access := Object.Position; begin while N /= null loop Result := Result + 1; N := N.Parent; end loop; return Natural'Max (Result, 1) - 1; end Current_Level; overriding procedure Query_Atom (Object : in Cursor; Process : not null access procedure (Data : in Atom)) is begin if Object.Position = null or else Object.Position.Kind /= Atom_Node then raise Program_Error; end if; Process.all (Object.Position.Data.all); end Query_Atom; overriding procedure Read_Atom (Object : in Cursor; Data : out Atom; Length : out Count) is Transferred : Count; begin if Object.Position = null or else Object.Position.Kind /= Atom_Node then raise Program_Error; end if; Length := Object.Position.Data'Length; Transferred := Count'Min (Data'Length, Length); Data (Data'First .. Data'First + Transferred - 1) := Object.Position.Data (Object.Position.Data'First .. Object.Position.Data'First + Transferred - 1); end Read_Atom; overriding procedure Next (Object : in out Cursor; Event : out Events.Event) is begin if Object.Position = null then Event := Events.Error; return; end if; if Object.Opening then pragma Assert (Object.Position.Kind = List_Node); if Object.Position.Child = null then Object.Opening := False; else pragma Assert (Object.Position.Child.Parent = Object.Position); Object.Position := Object.Position.Child; Object.Opening := Object.Position.Kind = List_Node; end if; elsif Object.Position.Next /= null then pragma Assert (Object.Position.Next.Parent = Object.Position.Parent); Object.Position := Object.Position.Next; Object.Opening := Object.Position.Kind = List_Node; elsif Object.Position.Parent /= null then pragma Assert (Object.Position.Parent.Kind = List_Node); Object.Position := Object.Position.Parent; Object.Opening := False; else Object.Position := null; end if; Event := Object.Current_Event; end Next; end Natools.S_Expressions.Generic_Caches; |
Added src/natools-s_expressions-generic_caches.ads version [caee50ade0].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 2013-2014, Natacha Porté -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Natools.S_Expressions.Generic_Caches provides a simple memory container -- -- for S-expressions. The container is append-only, and provides cursors to -- -- replay it from start. -- -- This is a generic package that allow client-selected storage pools. An -- -- instance with default storage pools is provided in -- -- Natools.S_Expressions.Caches. -- -- The intended usage is efficient caching of S-expressions in memory. For -- -- more flexible in-memory S-expression objects, -- -- see Natools.S_Expressions.Holders. -- ------------------------------------------------------------------------------ with System.Storage_Pools; with Natools.S_Expressions.Printers; private with Ada.Finalization; private with Ada.Unchecked_Deallocation; private with Natools.References; generic Atom_Pool : in out System.Storage_Pools.Root_Storage_Pool'Class; Counter_Pool : in out System.Storage_Pools.Root_Storage_Pool'Class; Structure_Pool : in out System.Storage_Pools.Root_Storage_Pool'Class; package Natools.S_Expressions.Generic_Caches is type Reference is new Printers.Printer with private; overriding procedure Open_List (Output : in out Reference); overriding procedure Append_Atom (Output : in out Reference; Data : in Atom); overriding procedure Close_List (Output : in out Reference); function Duplicate (Cache : Reference) return Reference; -- Create a new copy of the S-expression held in Cache and return it type Cursor is new Descriptor with private; overriding function Current_Event (Object : in Cursor) return Events.Event; overriding function Current_Atom (Object : in Cursor) return Atom; overriding function Current_Level (Object : in Cursor) return Natural; overriding procedure Query_Atom (Object : in Cursor; Process : not null access procedure (Data : in Atom)); overriding procedure Read_Atom (Object : in Cursor; Data : out Atom; Length : out Count); overriding procedure Next (Object : in out Cursor; Event : out Events.Event); function First (Cache : Reference'Class) return Cursor; -- Create a new Cursor pointing at the beginning of Cache private type Atom_Access is access Atom; for Atom_Access'Storage_Pool use Atom_Pool; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Atom, Atom_Access); type Node; type Node_Access is access Node; for Node_Access'Storage_Pool use Structure_Pool; type Node_Kind is (Atom_Node, List_Node); type Node (Kind : Node_Kind) is record Parent : Node_Access; Next : Node_Access; case Kind is when Atom_Node => Data : Atom_Access; when List_Node => Child : Node_Access; end case; end record; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Node, Node_Access); type Tree is new Ada.Finalization.Limited_Controlled with record Root : Node_Access := null; Last : Node_Access := null; Opening : Boolean := False; end record; procedure Append (Exp : in out Tree; Kind : in Node_Kind; Data : in Atom_Access := null); -- Append a new node of the given Kind to Exp procedure Close_List (Exp : in out Tree); -- Close innermost list function Create_Tree return Tree; -- Create a new empty Tree function Duplicate (Source : Tree) return Tree; -- Deep copy of a Tree object overriding procedure Finalize (Object : in out Tree); -- Release all nodes contained in Object package Trees is new References (Tree, Structure_Pool, Counter_Pool); type Reference is new Printers.Printer with record Exp : Trees.Reference; end record; type Cursor is new Descriptor with record Exp : Trees.Reference := Trees.Create (Create_Tree'Access); Position : Node_Access := null; Opening : Boolean := False; end record; end Natools.S_Expressions.Generic_Caches; |