----------------------------------------------------------------------- -- ado-cache-discrete -- Simple cache management for discrete types -- Copyright (C) 2017 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Containers; with Ada.Containers.Indefinite_Hashed_Maps; with Ada.Strings.Hash; with ADO.Sessions; generic type Element_Type is (<>); package ADO.Caches.Discrete is pragma Elaborate_Body; -- The cache type that maintains a cache of name/value pairs. type Cache_Type is new ADO.Caches.Cache_Type with private; type Cache_Type_Access is access all Cache_Type'Class; -- Expand the name into a target parameter value to be used in the SQL query. -- The Expander can return a T_NULL when a value is not found or -- it may also raise some exception. overriding function Expand (Instance : in out Cache_Type; Name : in String) return ADO.Parameters.Parameter; -- Find the value associated with the given name. -- Raises the No_Value exception if no such mapping exist. function Find (Cache : in out Cache_Type; Name : in String) return Element_Type; -- Insert the value associated with the given name in the cache. -- When Override is set, override existing values otherwise raise an exception. procedure Insert (Cache : in out Cache_Type; Name : in String; Value : in Element_Type; Override : in Boolean := False); -- Delete the value associated with the given name in the cache. -- Raise the No_Value exception if the value is not found and Ignore is not set. procedure Delete (Cache : in out Cache_Type; Name : in String; Ignore : in Boolean := False); -- Initialize the entity cache by reading the database entity table. procedure Initialize (Cache : in out Cache_Type; Session : in out ADO.Sessions.Session'Class); private package Cache_Map is new Ada.Containers.Indefinite_Hashed_Maps (Key_Type => String, Element_Type => Element_Type, Hash => Ada.Strings.Hash, Equivalent_Keys => "="); protected type Cache_Controller is -- Find the value associated with the given name. -- Raises the No_Value exception if no such mapping exist. function Find (Name : in String) return Element_Type; -- Insert the value associated with the given name in the cache. -- When Override is set, override existing values otherwise raise an exception. procedure Insert (Name : in String; Value : in Element_Type; Override : in Boolean := False); -- Delete the value associated with the given name in the cache. -- Raise the No_Value exception if the value is not found and Ignore is not set. procedure Delete (Name : in String; Ignore : in Boolean := False); private Values : Cache_Map.Map; end Cache_Controller; type Cache_Type is new ADO.Caches.Cache_Type with record Controller : Cache_Controller; end record; end ADO.Caches.Discrete;