Overview
Comment: | constant_indefinite_ordered_maps: new package with task-safe ordered maps with immutable mapping |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5f6566a680610dfc891f944408f3c6ef |
User & Date: | nat on 2014-10-06 21:27:25 |
Other Links: | manifest | tags |
Context
2014-10-07
| ||
16:41 | constant_indefinite_ordered_map_tests: new test suite for constant indefinite ordered maps check-in: 72852bae7a user: nat tags: trunk | |
2014-10-06
| ||
21:27 | constant_indefinite_ordered_maps: new package with task-safe ordered maps with immutable mapping check-in: 5f6566a680 user: nat tags: trunk | |
2014-10-05
| ||
16:24 | README: add a short description of recently-added packages check-in: 73c9e491df user: nat tags: trunk | |
Changes
Modified README.md from [c54cedfce7] to [69cdb8ed4a].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Natools This library gather all reusable packages written by Natasha Kerensikova that are too small to fit in a project by themselves. It contains the following package hierarchy: - `Accumulators`: an interface for string accumulator objects and stacks of accumulators - `String_Accumulator_Linked_Lists`: a basic implementation of an accumulator stack using a reference accumulator - `Chunked_Strings`: an implementation of unbounded strings backed by non-contiguous fixed-size chunks of memory - `Cron`: a simple low-precision service of periodic events - `Getopt_Long`: command-line argument processing similar to C `getopt_long` - `GNAT_HMAC`: instances of `HMAC` using GNAT hash primitives - `HMAC`: generic HMAC implementation using a formal hash function - `Indefinite_Holders`: simple Ada 2005 implementation of the Ada 2012 container - `References`: generic simple reference-counter implementation | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # Natools This library gather all reusable packages written by Natasha Kerensikova that are too small to fit in a project by themselves. It contains the following package hierarchy: - `Accumulators`: an interface for string accumulator objects and stacks of accumulators - `String_Accumulator_Linked_Lists`: a basic implementation of an accumulator stack using a reference accumulator - `Chunked_Strings`: an implementation of unbounded strings backed by non-contiguous fixed-size chunks of memory - `Constant_Indefinite_Ordered_Maps`: task-safe ordered maps with immutable mapping - `Cron`: a simple low-precision service of periodic events - `Getopt_Long`: command-line argument processing similar to C `getopt_long` - `GNAT_HMAC`: instances of `HMAC` using GNAT hash primitives - `HMAC`: generic HMAC implementation using a formal hash function - `Indefinite_Holders`: simple Ada 2005 implementation of the Ada 2012 container - `References`: generic simple reference-counter implementation |
︙ | ︙ |
Added src/natools-constant_indefinite_ordered_maps.adb version [61be8f766a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 | ------------------------------------------------------------------------------ -- Copyright (c) 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.Constant_Indefinite_Ordered_Maps is -------------------------- -- Sorted Array Backend -- -------------------------- function Create (Size : Index_Type; Key_Factory : not null access function (Index : Index_Type) return Key_Type; Element_Factory : not null access function (Index : Index_Type) return Element_Type) return Backend_Array is function Node_Factory (Index : Index_Type) return Node with Inline; function Node_Factory (Index : Index_Type) return Node is begin return (Key => new Key_Type'(Key_Factory (Index)), Element => new Element_Type'(Element_Factory (Index))); end Node_Factory; First_Node : constant Node := Node_Factory (1); begin return Result : Backend_Array := (Ada.Finalization.Limited_Controlled with Size => Size, Nodes => (others => First_Node), Finalized => False) do if Size >= 2 then for I in 2 .. Size loop Result.Nodes (I) := Node_Factory (I); end loop; end if; end return; end Create; function Make_Backend (Size : Count_Type; Key_Factory : not null access function (Index : Index_Type) return Key_Type; Element_Factory : not null access function (Index : Index_Type) return Element_Type) return Backend_Refs.Immutable_Reference is function Create return Backend_Array; function Create return Backend_Array is begin return Create (Size, Key_Factory, Element_Factory); end Create; begin if Size = 0 then return Backend_Refs.Null_Immutable_Reference; else return Backend_Refs.Create (Create'Access); end if; end Make_Backend; function Make_Backend (Map : Unsafe_Maps.Map) return Backend_Refs.Immutable_Reference is function Create return Backend_Array; function Element (Index : Index_Type) return Element_Type; function Key (Index : Index_Type) return Key_Type; procedure Update_Cursor (Index : in Index_Type); function Is_Valid (Nodes : Node_Array) return Boolean; Length : constant Count_Type := Map.Length; Cursor : Unsafe_Maps.Cursor := Map.First; I : Index_Type := 1; function Create return Backend_Array is begin return Create (Length, Key'Access, Element'Access); end Create; function Element (Index : Index_Type) return Element_Type is begin Update_Cursor (Index); return Unsafe_Maps.Element (Cursor); end Element; function Is_Valid (Nodes : Node_Array) return Boolean is begin return (for all J in Nodes'First + 1 .. Nodes'Last => Nodes (J - 1).Key.all < Nodes (J).Key.all); end Is_Valid; function Key (Index : Index_Type) return Key_Type is begin Update_Cursor (Index); pragma Assert (Unsafe_Maps.Has_Element (Cursor)); return Unsafe_Maps.Key (Cursor); end Key; procedure Update_Cursor (Index : in Index_Type) is begin if Index = I + 1 then Unsafe_Maps.Next (Cursor); I := I + 1; elsif Index /= I then raise Program_Error with "Unexpected index value" & Index_Type'Image (Index) & " (previous value" & Index_Type'Image (I) & ')'; end if; end Update_Cursor; Result : Backend_Refs.Immutable_Reference; begin if Length = 0 then return Backend_Refs.Null_Immutable_Reference; end if; Result := Backend_Refs.Create (Create'Access); pragma Assert (I = Length); pragma Assert (Unsafe_Maps."=" (Cursor, Map.Last)); pragma Assert (Is_Valid (Result.Query.Data.Nodes)); return Result; end Make_Backend; overriding procedure Finalize (Object : in out Backend_Array) is Key : Key_Access; Element : Element_Access; begin if not Object.Finalized then for I in Object.Nodes'Range loop Key := Object.Nodes (I).Key; Element := Object.Nodes (I).Element; Free (Key); Free (Element); end loop; Object.Finalized := True; end if; end Finalize; procedure Search (Nodes : in Node_Array; Key : in Key_Type; Floor : out Count_Type; Ceiling : out Count_Type) is Middle : Index_Type; begin Floor := 0; Ceiling := 0; if Nodes'Length = 0 then return; end if; Floor := Nodes'First; if Key < Nodes (Floor).Key.all then Ceiling := Floor; Floor := 0; return; elsif not (Nodes (Floor).Key.all < Key) then Ceiling := Floor; return; end if; Ceiling := Nodes'Last; if Nodes (Ceiling).Key.all < Key then Floor := Ceiling; Ceiling := 0; return; elsif not (Key < Nodes (Ceiling).Key.all) then Floor := Ceiling; return; end if; while Ceiling - Floor >= 2 loop Middle := Floor + (Ceiling - Floor) / 2; if Nodes (Middle).Key.all < Key then Floor := Middle; elsif Key < Nodes (Middle).Key.all then Ceiling := Middle; else Floor := Middle; Ceiling := Middle; return; end if; end loop; return; end Search; ----------------------- -- Cursor Operations -- ----------------------- function "<" (Left, Right : Cursor) return Boolean is begin return Key (Left) < Key (Right); end "<"; function ">" (Left, Right : Cursor) return Boolean is begin return Key (Right) < Key (Left); end ">"; function "<" (Left : Cursor; Right : Key_Type) return Boolean is begin return Key (Left) < Right; end "<"; function ">" (Left : Cursor; Right : Key_Type) return Boolean is begin return Right < Key (Left); end ">"; function "<" (Left : Key_Type; Right : Cursor) return Boolean is begin return Left < Key (Right); end "<"; function ">" (Left : Key_Type; Right : Cursor) return Boolean is begin return Key (Right) < Left; end ">"; procedure Clear (Position : in out Cursor) is begin Position := No_Element; end Clear; function Element (Position : Cursor) return Element_Type is begin return Position.Backend.Query.Data.Nodes (Position.Index).Element.all; end Element; function Key (Position : Cursor) return Key_Type is begin return Position.Backend.Query.Data.Nodes (Position.Index).Key.all; end Key; function Next (Position : Cursor) return Cursor is begin if Position.Is_Empty or else Position.Index >= Position.Backend.Query.Data.Size then return No_Element; else return (Is_Empty => False, Backend => Position.Backend, Index => Position.Index + 1); end if; end Next; procedure Next (Position : in out Cursor) is begin if Position.Is_Empty then null; elsif Position.Index >= Position.Backend.Query.Data.Size then Position := No_Element; else Position.Index := Position.Index + 1; end if; end Next; function Previous (Position : Cursor) return Cursor is begin if Position.Is_Empty or else Position.Index = 1 then return No_Element; else return (Is_Empty => False, Backend => Position.Backend, Index => Position.Index - 1); end if; end Previous; procedure Previous (Position : in out Cursor) is begin if Position.Is_Empty then null; elsif Position.Index = 1 then Position := No_Element; else Position.Index := Position.Index - 1; end if; end Previous; procedure Query_Element (Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in Element_Type)) is Accessor : constant Backend_Refs.Accessor := Position.Backend.Query; begin Process.all (Accessor.Data.Nodes (Position.Index).Key.all, Accessor.Data.Nodes (Position.Index).Element.all); end Query_Element; ----------------------------- -- Non-Standard Operations -- ----------------------------- function Create (Source : Unsafe_Maps.Map) return Constant_Map is begin return (Backend => Make_Backend (Source)); end Create; procedure Replace (Container : in out Constant_Map; New_Items : in Unsafe_Maps.Map) is begin Container.Backend := Make_Backend (New_Items); end Replace; function To_Unsafe_Map (Container : Constant_Map) return Unsafe_Maps.Map is Result : Unsafe_Maps.Map; begin if Container.Backend.Is_Empty then return Result; end if; declare Accessor : constant Backend_Refs.Accessor := Container.Backend.Query; begin for I in Accessor.Data.Nodes'Range loop Result.Insert (Accessor.Data.Nodes (I).Key.all, Accessor.Data.Nodes (I).Element.all); end loop; end; return Result; end To_Unsafe_Map; ----------------------------- -- Constant Map Operations -- ----------------------------- function "=" (Left, Right : Constant_Map) return Boolean is use type Backend_Refs.Immutable_Reference; begin return Left.Backend = Right.Backend; end "="; function Ceiling (Container : Constant_Map; Key : Key_Type) return Cursor is Floor, Ceiling : Count_Type; begin if Container.Is_Empty then return No_Element; end if; Search (Container.Backend.Query.Data.Nodes, Key, Floor, Ceiling); if Ceiling > 0 then return (Is_Empty => False, Backend => Container.Backend, Index => Ceiling); else return No_Element; end if; end Ceiling; procedure Clear (Container : in out Constant_Map) is begin Container.Backend.Reset; end Clear; function Contains (Container : Constant_Map; Key : Key_Type) return Boolean is Floor, Ceiling : Count_Type; begin if Container.Is_Empty then return False; end if; Search (Container.Backend.Query.Data.Nodes, Key, Floor, Ceiling); return Floor = Ceiling; end Contains; function Element (Container : Constant_Map; Key : Key_Type) return Element_Type is begin return Element (Find (Container, Key)); end Element; function Find (Container : Constant_Map; Key : Key_Type) return Cursor is Floor, Ceiling : Count_Type; begin if Container.Is_Empty then return No_Element; end if; Search (Container.Backend.Query.Data.Nodes, Key, Floor, Ceiling); if Floor = Ceiling then return (Is_Empty => False, Backend => Container.Backend, Index => Floor); else return No_Element; end if; end Find; function First (Container : Constant_Map) return Cursor is begin if Container.Is_Empty then return No_Element; else return (Is_Empty => False, Backend => Container.Backend, Index => 1); end if; end First; function First_Element (Container : Constant_Map) return Element_Type is Accessor : constant Backend_Refs.Accessor := Container.Backend.Query; begin return Accessor.Data.Nodes (1).Element.all; end First_Element; function First_Key (Container : Constant_Map) return Key_Type is Accessor : constant Backend_Refs.Accessor := Container.Backend.Query; begin return Accessor.Data.Nodes (1).Key.all; end First_Key; function Floor (Container : Constant_Map; Key : Key_Type) return Cursor is Floor, Ceiling : Count_Type; begin if Container.Is_Empty then return No_Element; end if; Search (Container.Backend.Query.Data.Nodes, Key, Floor, Ceiling); if Floor > 0 then return (Is_Empty => False, Backend => Container.Backend, Index => Floor); else return No_Element; end if; end Floor; procedure Iterate (Container : in Constant_Map; Process : not null access procedure (Position : in Cursor)) is Position : Cursor := (Is_Empty => False, Backend => Container.Backend, Index => 1); begin if Container.Backend.Is_Empty then return; end if; for I in Container.Backend.Query.Data.Nodes'Range loop Position.Index := I; Process.all (Position); end loop; end Iterate; function Last (Container : Constant_Map) return Cursor is begin if Container.Is_Empty then return No_Element; else return (Is_Empty => False, Backend => Container.Backend, Index => Container.Backend.Query.Data.Size); end if; end Last; function Last_Element (Container : Constant_Map) return Element_Type is Accessor : constant Backend_Refs.Accessor := Container.Backend.Query; begin return Accessor.Data.Nodes (Accessor.Data.Size).Element.all; end Last_Element; function Last_Key (Container : Constant_Map) return Key_Type is Accessor : constant Backend_Refs.Accessor := Container.Backend.Query; begin return Accessor.Data.Nodes (Accessor.Data.Size).Key.all; end Last_Key; function Length (Container : Constant_Map) return Ada.Containers.Count_Type is begin if Container.Backend.Is_Empty then return 0; else return Container.Backend.Query.Data.Size; end if; end Length; procedure Move (Target, Source : in out Constant_Map) is begin Target.Backend := Source.Backend; Source.Backend.Reset; end Move; procedure Reverse_Iterate (Container : in Constant_Map; Process : not null access procedure (Position : in Cursor)) is Position : Cursor := (Is_Empty => False, Backend => Container.Backend, Index => 1); begin if Container.Backend.Is_Empty then return; end if; for I in reverse Container.Backend.Query.Data.Nodes'Range loop Position.Index := I; Process.all (Position); end loop; end Reverse_Iterate; ------------------------------ -- Updatable Map Operations -- ------------------------------ procedure Update_Element (Container : in out Updatable_Map; Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in out Element_Type)) is Accessor : constant Backend_Refs.Accessor := Position.Backend.Query; begin Process.all (Accessor.Data.Nodes (Position.Index).Key.all, Accessor.Data.Nodes (Position.Index).Element.all); end Update_Element; end Natools.Constant_Indefinite_Ordered_Maps; |
Added src/natools-constant_indefinite_ordered_maps.ads version [c93eb12364].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | ------------------------------------------------------------------------------ -- Copyright (c) 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.Constant_Indefinite_Ordered_Sets provides an implementation of -- -- indefinite ordered maps with immutable mapping, based on a sorted array. -- -- This makes it task-safe as long as the mapping is only read. -- -- -- -- All the types exposed have referential semantics, in that assignment is -- -- cheap and uses the same actual object. It is as task-safe as the current -- -- implementation of Natools.References. -- -- Cursors also hold a reference, which is used to identify the parent map, -- -- so after an assignment or a call to Clear or Move, the link between the -- -- map object and the cursor is broken, but the cursor is still usable and -- -- behaves as the original version of the maps. -- -- -- -- There are four types defined here, depending on their restrictions and -- -- safety against concurrent accesses: -- -- * Constant_Map cannot be changed in any way, but is completely -- -- task-safe (unless some referential magic is performed, like -- -- tampering checks in standard containers) -- -- * Updatable_Map allows read-write operations on stored elements, but -- -- it is up to the client to ensure there operations are task-safe, -- -- e.g. by using an atomic or protected Element_Type. -- -- * Mutable_Map allows all standard operations, but creating a new -- -- mapping copied from the original. This is likely to be very -- -- inefficient, and it is up to the client to ensure task-safety of the -- -- underlying copy with regard to update operations. -- -- NOTE: Mutable_Map is not provided yet, since its usefullness is -- -- really not obvious. -- -- -- -- All the subprograms here have the semantics of standard indefinite -- -- ordered maps (see ARM A.18.6), except for tampering, which becomes -- -- irrelevant. -- ------------------------------------------------------------------------------ with Ada.Containers.Indefinite_Ordered_Maps; private with Ada.Finalization; private with Ada.Unchecked_Deallocation; private with Natools.References; private with Natools.Storage_Pools; generic type Key_Type (<>) is private; type Element_Type (<>) is private; with function "<" (Left, Right : Key_Type) return Boolean is <>; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Natools.Constant_Indefinite_Ordered_Maps is pragma Preelaborate; package Unsafe_Maps is new Ada.Containers.Indefinite_Ordered_Maps (Key_Type, Element_Type); type Cursor is private; -- with Type_Invariant => Is_Valid (Cursor); No_Element : constant Cursor; procedure Clear (Position : in out Cursor); function Is_Valid (Position : Cursor) return Boolean; function Has_Element (Position : Cursor) return Boolean; function Element (Position : Cursor) return Element_Type with Pre => Has_Element (Position) or else raise Constraint_Error; function Key (Position : Cursor) return Key_Type with Pre => Has_Element (Position) or else raise Constraint_Error; procedure Query_Element (Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in Element_Type)) with Pre => Has_Element (Position) or else raise Constraint_Error; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Previous (Position : Cursor) return Cursor; procedure Previous (Position : in out Cursor); function "<" (Left, Right : Cursor) return Boolean with Pre => (Has_Element (Left) and then Has_Element (Right)) or else raise Constraint_Error; function ">" (Left, Right : Cursor) return Boolean with Pre => (Has_Element (Left) and then Has_Element (Right)) or else raise Constraint_Error; function "<" (Left : Cursor; Right : Key_Type) return Boolean with Pre => Has_Element (Left) or else raise Constraint_Error; function ">" (Left : Cursor; Right : Key_Type) return Boolean with Pre => Has_Element (Left) or else raise Constraint_Error; function "<" (Left : Key_Type; Right : Cursor) return Boolean with Pre => Has_Element (Right) or else raise Constraint_Error; function ">" (Left : Key_Type; Right : Cursor) return Boolean with Pre => Has_Element (Right) or else raise Constraint_Error; type Constant_Map is tagged private; procedure Clear (Container : in out Constant_Map); function Create (Source : Unsafe_Maps.Map) return Constant_Map; procedure Move (Target : in out Constant_Map; Source : in out Constant_Map); procedure Replace (Container : in out Constant_Map; New_Items : in Unsafe_Maps.Map); function To_Unsafe_Map (Container : Constant_Map) return Unsafe_Maps.Map; function Is_Related (Container : Constant_Map; Position : Cursor) return Boolean; function "=" (Left, Right : Constant_Map) return Boolean; function Length (Container : Constant_Map) return Ada.Containers.Count_Type; function Is_Empty (Container : Constant_Map) return Boolean; function First (Container : Constant_Map) return Cursor; function First_Element (Container : Constant_Map) return Element_Type with Pre => (not Is_Empty (Container)) or else raise Constraint_Error; function First_Key (Container : Constant_Map) return Key_Type with Pre => (not Is_Empty (Container)) or else raise Constraint_Error; function Last (Container : Constant_Map) return Cursor; function Last_Element (Container : Constant_Map) return Element_Type with Pre => (not Is_Empty (Container)) or else raise Constraint_Error; function Last_Key (Container : Constant_Map) return Key_Type with Pre => (not Is_Empty (Container)) or else raise Constraint_Error; function Find (Container : Constant_Map; Key : Key_Type) return Cursor; function Element (Container : Constant_Map; Key : Key_Type) return Element_Type; function Floor (Container : Constant_Map; Key : Key_Type) return Cursor; function Ceiling (Container : Constant_Map; Key : Key_Type) return Cursor; function Contains (Container : Constant_Map; Key : Key_Type) return Boolean; procedure Iterate (Container : in Constant_Map; Process : not null access procedure (Position : in Cursor)); procedure Reverse_Iterate (Container : in Constant_Map; Process : not null access procedure (Position : in Cursor)); type Updatable_Map is new Constant_Map with private; procedure Update_Element (Container : in out Updatable_Map; Position : in Cursor; Process : not null access procedure (Key : in Key_Type; Element : in out Element_Type)) with Pre => (Has_Element (Position) or else raise Constraint_Error) and then (Is_Related (Container, Position) or else raise Program_Error); private type Key_Access is access Key_Type; type Element_Access is access Element_Type; type Node is record Key : not null Key_Access; Element : not null Element_Access; end record; use type Ada.Containers.Count_Type; subtype Count_Type is Ada.Containers.Count_Type; subtype Index_Type is Count_Type range 1 .. Count_Type'Last; type Node_Array is array (Index_Type range <>) of Node; procedure Free is new Ada.Unchecked_Deallocation (Key_Type, Key_Access); procedure Free is new Ada.Unchecked_Deallocation (Element_Type, Element_Access); type Backend_Array (Size : Index_Type) -- cannot be empty is new Ada.Finalization.Limited_Controlled with record Nodes : Node_Array (1 .. Size); Finalized : Boolean := False; end record; function Create (Size : Index_Type; Key_Factory : not null access function (Index : Index_Type) return Key_Type; Element_Factory : not null access function (Index : Index_Type) return Element_Type) return Backend_Array; overriding procedure Finalize (Object : in out Backend_Array); package Backend_Refs is new References (Backend_Array, Storage_Pools.Access_In_Default_Pool'Storage_Pool, Storage_Pools.Access_In_Default_Pool'Storage_Pool); function Make_Backend (Size : Count_Type; Key_Factory : not null access function (Index : Index_Type) return Key_Type; Element_Factory : not null access function (Index : Index_Type) return Element_Type) return Backend_Refs.Immutable_Reference; function Make_Backend (Map : Unsafe_Maps.Map) return Backend_Refs.Immutable_Reference; procedure Search (Nodes : in Node_Array; Key : in Key_Type; Floor : out Count_Type; Ceiling : out Count_Type); type Constant_Map is tagged record Backend : Backend_Refs.Immutable_Reference; end record; function Is_Empty (Container : Constant_Map) return Boolean is (Container.Backend.Is_Empty); type Updatable_Map is new Constant_Map with null record; type Cursor (Is_Empty : Boolean := True) is record case Is_Empty is when True => null; when False => Index : Index_Type; Backend : Backend_Refs.Immutable_Reference; end case; end record; function Is_Valid (Position : Cursor) return Boolean is (Position.Is_Empty or else (not Position.Backend.Is_Empty and then Position.Index <= Position.Backend.Query.Data.Size)); function Has_Element (Position : Cursor) return Boolean is (not Position.Is_Empty); function Is_Related (Container : Constant_Map; Position : Cursor) return Boolean is (Backend_Refs."=" (Container.Backend, Position.Backend)); No_Element : constant Cursor := (Is_Empty => True); end Natools.Constant_Indefinite_Ordered_Maps; |