forked from malcolmgroves/FluentQuery
-
Notifications
You must be signed in to change notification settings - Fork 4
/
FluentQuery.Core.Types.pas
executable file
·60 lines (52 loc) · 2.13 KB
/
FluentQuery.Core.Types.pas
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
{****************************************************}
{ }
{ FluentQuery }
{ }
{ Copyright (C) 2013 Malcolm Groves }
{ }
{ http://www.malcolmgroves.com }
{ }
{****************************************************}
{ }
{ This Source Code Form is subject to the terms of }
{ the Mozilla Public License, v. 2.0. If a copy of }
{ the MPL was not distributed with this file, You }
{ can obtain one at }
{ }
{ http://mozilla.org/MPL/2.0/ }
{ }
{****************************************************}
unit FluentQuery.Core.Types;
interface
uses
System.SysUtils;
type
IMinimalEnumerator<T> = interface
function MoveNext: Boolean;
function GetCurrent: T;
property Current: T read GetCurrent;
end;
IBaseQuery<T> = interface(IMinimalEnumerator<T>)
{$IFDEF DEBUG}
function GetOperationName : String;
procedure SetOperationName(const OperationName : string);
function GetOperationPath : String;
property OperationName : string read GetOperationName write SetOperationName;
property OperationPath : string read GetOperationPath;
{$ENDIF}
procedure SetUpstreamQuery(UpstreamQuery : IBaseQuery<T>);
procedure SetSourceData(SourceData : IMinimalEnumerator<T>);
end;
IBaseBoundQuery<T> = interface(IBaseQuery<T>)
procedure Execute;
function Count : Integer;
function First : T;
end;
IBaseUnboundQuery<T> = interface(IBaseQuery<T>)
function Predicate : TPredicate<T>;
end;
EFluentQueryException = class(Exception);
ENilEnumeratorException = class(EFluentQueryException);
EEmptyResultSetException = class(EFluentQueryException);
implementation
end.