Files
gnatcoll-db/sql/gnatcoll-sql-orm.adb

143 lines
4.4 KiB
Ada
Raw Permalink Normal View History

------------------------------------------------------------------------------
-- G N A T C O L L --
-- --
-- Copyright (C) 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/>. --
-- --
------------------------------------------------------------------------------
package body GNATCOLL.SQL.Orm is
--------------
-- Order_By --
--------------
procedure Order_By (Self : in out Manager'Class; By : SQL_Field_List) is
begin
Self.Order_By := By;
end Order_By;
--------------
-- Order_By --
--------------
procedure Order_By (Self : in out Manager'Class; By : SQL_Field'Class) is
begin
Self.Order_By := +By;
end Order_By;
-----------
-- Limit --
-----------
procedure Limit
(Self : in out Manager'Class; Count : Natural; From : Natural := 0)
is
begin
Self.Limit_Count := Count;
Self.Offset := From;
end Limit;
--------------
-- Distinct --
--------------
procedure Distinct (Self : in out Manager'Class) is
begin
Self.Distinct := True;
end Distinct;
--------------------
-- Select_Related --
--------------------
procedure Select_Related
(Self : in out Manager'Class;
Depth : Natural;
Follow_Left_Join : Boolean := False)
is
begin
Self.Select_Related := Depth;
Self.Follow_LJ := Follow_Left_Join;
end Select_Related;
--------------------
-- Select_Related --
--------------------
function Select_Related (Self : Manager'Class) return Natural is
begin
return Self.Select_Related;
end Select_Related;
------------
-- Filter --
------------
procedure Filter (Self : in out Manager'Class; Condition : SQL_Criteria) is
begin
Self.Where := Self.Where and Condition;
end Filter;
-----------
-- Query --
-----------
procedure Query (Self : Manager'Class;
Query : out SQL_Query;
Fields : SQL_Field_List;
From : SQL_Table_List;
Criteria : SQL_Criteria := No_Criteria) is
begin
Query := SQL_Select
(Fields => Fields,
From => From,
Where => Self.Where and Criteria,
Order_By => Self.Order_By,
Limit => Self.Limit_Count,
Offset => Self.Offset,
Distinct => Self.Distinct);
Auto_Complete (Query);
end Query;
----------
-- Copy --
----------
procedure Copy (Self : Manager'Class; Into : in out Manager'Class) is
begin
Into.Where := Self.Where;
Into.Order_By := Self.Order_By;
Into.Limit_Count := Self.Limit_Count;
Into.Offset := Self.Offset;
Into.Distinct := Self.Distinct;
Into.Select_Related := Self.Select_Related;
Into.Follow_LJ := Self.Follow_LJ;
end Copy;
---------------
-- Follow_LJ --
---------------
function Follow_LJ (Self : Manager'Class) return Boolean is
begin
return Self.Follow_LJ;
end Follow_LJ;
end GNATCOLL.SQL.Orm;