delphimvcframework/samples/serversideviews_mustache/DAL.pas

280 lines
5.9 KiB
ObjectPascal
Raw Normal View History

2019-01-08 12:48:27 +01:00
unit DAL;
interface
uses
System.JSON,
MVCFramework.SystemJSONUtils,
System.Generics.Collections,
MVCFramework.Serializer.Commons;
type
[MVCNameCase(ncLowerCase)]
TPerson = class
private
FFirstName: string;
FLastName: string;
FAge: Integer;
FDevices: TArray<string>;
2019-01-08 12:48:27 +01:00
FGUID: string;
procedure SetFirstName(const Value: string);
procedure SetLastName(const Value: string);
procedure SetAge(const Value: Integer);
procedure SetGUID(const Value: string);
procedure SetDevices(const Value: TArray<string>);
2019-01-08 12:48:27 +01:00
public
[MVCNameAs('first_name')]
property FirstName: string read FFirstName write SetFirstName;
[MVCNameAs('last_name')]
property LastName: string read FLastName write SetLastName;
property Age: Integer read FAge write SetAge;
property Devices: TArray<string> read FDevices write SetDevices;
2019-01-08 12:48:27 +01:00
property GUID: string read FGUID write SetGUID;
end;
TPeople = class(TObjectList<TPerson>)
end;
{$M+}
2020-11-05 17:15:05 +01:00
TMyObj = class
2020-11-05 17:14:39 +01:00
private
FRawHTML: String;
procedure SetRawHTML(const Value: String);
published
2020-11-05 17:15:05 +01:00
property RawHTML: String read FRawHTML write SetRawHTML;
2020-11-05 17:14:39 +01:00
end;
{$M-}
2020-11-05 17:14:39 +01:00
2019-01-08 12:48:27 +01:00
TDevice = class
private
fDeviceName: string;
fSelected: Boolean;
public
property DeviceName: string read fDeviceName write fDeviceName;
property Selected: Boolean read fSelected write fSelected;
constructor Create(aDeviceName: string; aSelected: Boolean);
end;
TDeviceList = class(TObjectList<TDevice>)
public
function Contains(const aDeviceName: string): Boolean;
function IndexOf(const aDeviceName: string): Integer;
end;
IPeopleDAL = interface
['{3E534A3E-EAEB-44ED-B74E-EFBBAAAE11B4}']
function GetPeople: TPeople;
2020-11-05 17:15:05 +01:00
procedure AddPerson(FirstName, LastName: string; Age: Integer;
Items: TArray<string>);
2019-01-08 12:48:27 +01:00
procedure DeleteByGUID(GUID: string);
function GetPersonByGUID(GUID: string): TPerson;
function GetDevicesList: TArray<String>;
2019-01-08 12:48:27 +01:00
end;
TPeopleDAL = class(TInterfacedObject, IPeopleDAL)
private const
DATAFILE: string = 'people.data';
public
function GetPeople: TPeople;
2020-11-05 17:15:05 +01:00
procedure AddPerson(FirstName, LastName: string; Age: Integer;
Items: TArray<string>);
2019-01-08 12:48:27 +01:00
procedure DeleteByGUID(GUID: string);
function GetPersonByGUID(GUID: string): TPerson;
function GetDevicesList: TArray<String>;
2019-01-08 12:48:27 +01:00
end;
TServicesFactory = class sealed
class function GetPeopleDAL: IPeopleDAL;
end;
implementation
uses
System.SyncObjs,
System.IOUtils,
MVCFramework.Serializer.Defaults,
System.SysUtils;
var
// Hey! The storage is a simple json file, so some synchronization is needed
_CS: TCriticalSection = nil;
{ TSimpleDAL }
2020-11-05 17:15:05 +01:00
procedure TPeopleDAL.AddPerson(FirstName, LastName: string; Age: Integer;
Items: TArray<string>);
2019-01-08 12:48:27 +01:00
var
lPeople: TPeople;
lPerson: TPerson;
begin
_CS.Enter;
try
lPeople := GetPeople;
try
lPerson := TPerson.Create;
lPeople.Add(lPerson);
lPerson.FirstName := FirstName;
lPerson.LastName := LastName;
lPerson.Age := Age;
lPerson.Devices := Items;
2020-11-05 17:15:05 +01:00
lPerson.GUID := TGuid.NewGuid.ToString.Replace('{', '').Replace('}', '')
.Replace('-', '');
TFile.WriteAllText(DATAFILE, GetDefaultSerializer.SerializeCollection
(lPeople));
2019-01-08 12:48:27 +01:00
finally
lPeople.Free;
end;
finally
_CS.Leave;
end;
end;
class function TServicesFactory.GetPeopleDAL: IPeopleDAL;
begin
Result := TPeopleDAL.Create;
end;
procedure TPeopleDAL.DeleteByGUID(GUID: string);
var
LJPeople: TPeople;
I: Integer;
begin
_CS.Enter;
try
LJPeople := GetPeople;
try
for I := 0 to LJPeople.Count - 1 do
begin
if LJPeople[I].GUID = GUID then
begin
2020-11-05 17:15:05 +01:00
LJPeople.Delete(I);
2019-01-08 12:48:27 +01:00
break;
end;
end;
2020-11-05 17:15:05 +01:00
TFile.WriteAllText(DATAFILE, GetDefaultSerializer.SerializeCollection
(LJPeople));
2019-01-08 12:48:27 +01:00
finally
LJPeople.Free;
end;
finally
_CS.Leave;
end;
end;
function TPeopleDAL.GetDevicesList: TArray<String>;
2019-01-08 12:48:27 +01:00
begin
Result := ['smartphone', 'dumbphone', 'laptop', 'desktop'];
2019-01-08 12:48:27 +01:00
end;
function TPeopleDAL.GetPeople: TPeople;
var
LData: string;
begin
_CS.Enter;
try
Result := TPeople.Create;
if TFile.Exists(DATAFILE) then
LData := TFile.ReadAllText(DATAFILE).Trim;
if not LData.IsEmpty then
begin
GetDefaultSerializer.DeserializeCollection(LData, Result, TPerson);
end;
finally
_CS.Leave;
end;
end;
function TPeopleDAL.GetPersonByGUID(GUID: string): TPerson;
var
lPeople: TPeople;
lPerson: TPerson;
begin
Result := nil;
lPeople := GetPeople;
try
for lPerson in lPeople do
begin
if lPerson.GUID = GUID then
begin
Result := lPeople.Extract(lPerson);
2020-11-05 17:15:05 +01:00
break;
2019-01-08 12:48:27 +01:00
end;
end;
finally
lPeople.Free;
end;
end;
{ TPerson }
procedure TPerson.SetAge(const Value: Integer);
begin
FAge := Value;
end;
procedure TPerson.SetDevices(const Value: TArray<string>);
begin
FDevices := Value;
end;
2019-01-08 12:48:27 +01:00
procedure TPerson.SetFirstName(const Value: string);
begin
FFirstName := Value;
end;
procedure TPerson.SetGUID(const Value: string);
begin
FGUID := Value;
end;
procedure TPerson.SetLastName(const Value: string);
begin
FLastName := Value;
end;
{ TDevice }
constructor TDevice.Create(aDeviceName: string; aSelected: Boolean);
begin
inherited Create;
fDeviceName := aDeviceName;
fSelected := aSelected;
end;
{ TDeviceList }
function TDeviceList.Contains(const aDeviceName: string): Boolean;
begin
Result := IndexOf(aDeviceName) > -1;
end;
function TDeviceList.IndexOf(const aDeviceName: string): Integer;
var
I: Integer;
begin
Result := -1;
for I := 0 to Self.Count - 1 do
begin
2020-11-05 17:15:05 +01:00
if SameText(Self[I].DeviceName, aDeviceName) then
Exit(I);
2019-01-08 12:48:27 +01:00
end;
end;
2020-11-05 17:14:39 +01:00
{ TRawObj }
2020-11-05 17:15:05 +01:00
procedure TMyObj.SetRawHTML(const Value: String);
2020-11-05 17:14:39 +01:00
begin
FRawHTML := Value;
end;
2019-01-08 12:48:27 +01:00
initialization
_CS := TCriticalSection.Create;
finalization
_CS.Free;
end.