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
|
------------------------------------------------------------------------------
-- G N A T C O L L --
-- --
-- Copyright (C) 2005-2020, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, or (at your option) any later --
-- version. This library is distributed in the hope that it will be useful, --
-- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
with GNATCOLL.SQL.Sqlite.Builder;
package body GNATCOLL.SQL.Sqlite is
type Sqlite_Engine is new Database_Engine with null record;
overriding function Setup
(Engine : Sqlite_Engine;
Options : Name_Values.Map;
Errors : access Error_Reporter'Class) return Database_Description;
-----------
-- Setup --
-----------
function Setup
(Database : String;
Cache_Support : Boolean := False;
Errors : access Error_Reporter'Class := null;
Is_URI : Boolean := False)
return Database_Description
is
Result : Sqlite_Description_Access;
begin
Result := new Sqlite_Description
(Caching => Cache_Support, Errors => Errors);
Result.Dbname := new String'(Database);
Result.Is_URI := Is_URI;
return Database_Description (Result);
end Setup;
-----------
-- Setup --
-----------
overriding function Setup
(Engine : Sqlite_Engine;
Options : Name_Values.Map;
Errors : access Error_Reporter'Class) return Database_Description
is
pragma Unreferenced (Engine);
type Setup_Parameters is (Database, Is_URI, Caching);
Params : array (Setup_Parameters) of Name_Values.Cursor;
function Value (P : Setup_Parameters; Default : String) return String is
(if Name_Values.Has_Element (Params (P))
then Name_Values.Element (Params (P)) else Default);
begin
for C in Options.Iterate loop
Params (Setup_Parameters'Value (Name_Values.Key (C))) := C;
end loop;
return Setup
(Database => Value (Database, ""),
Is_URI => Boolean'Value (Value (Is_URI, "False")),
Cache_Support => Boolean'Value (Value (Caching, "False")),
Errors => Errors);
end Setup;
----------------------
-- Build_Connection --
----------------------
overriding function Build_Connection
(Self : access Sqlite_Description) return Database_Connection
is
DB : Database_Connection;
begin
DB := GNATCOLL.SQL.Sqlite.Builder.Build_Connection (Self);
Reset_Connection (DB);
return DB;
end Build_Connection;
---------------
-- Is_Sqlite --
---------------
function Is_Sqlite
(DB : access Database_Connection_Record'Class) return Boolean
is
begin
return Get_Description (DB).all in Sqlite_Description;
end Is_Sqlite;
-------------
-- DB_Name --
-------------
function DB_Name
(DB : access Database_Connection_Record'Class) return String is
begin
return Sqlite_Description (Get_Description (DB).all).Dbname.all;
exception
when Constraint_Error =>
-- Probably not a Sqlite_Description
return "";
end DB_Name;
----------
-- Free --
----------
overriding procedure Free (Self : in out Sqlite_Description) is
begin
Free (Self.Dbname);
end Free;
------------
-- Backup --
------------
function Backup
(DB1 : access Database_Connection_Record'Class;
DB2 : String;
From_DB1_To_DB2 : Boolean := True) return Boolean
is
begin
return GNATCOLL.SQL.Sqlite.Builder.Backup (DB1, DB2, From_DB1_To_DB2);
end Backup;
------------
-- Backup --
------------
function Backup
(From : access Database_Connection_Record'Class;
To : access Database_Connection_Record'Class) return Boolean is
begin
return GNATCOLL.SQL.Sqlite.Builder.Backup (From, To);
end Backup;
end GNATCOLL.SQL.Sqlite;
|