Pascal Library of Utilities - Quick development library (AutoMapper, LinQ, IOC Dependency Injection, MemoryCache, Scheduled tasks, Json and Yml Config and Options pattern, Serializers, etc) with crossplatform support for Delphi/Firemonkey (Windows,Linux,OSX/IOS/Android) and freepascal (Windows/Linux).

Unknown 7d79b62342 Quick.Console: Adde Console menu 7 gadi atpakaļ
samples 91389e945f Quick.Config sample updated 7 gadi atpakaļ
.gitignore 0b2f621aaf First release 7 gadi atpakaļ
LICENSE.txt 0b2f621aaf First release 7 gadi atpakaļ
Quick.Amazon.pas c4ccac3d14 Quick.Amazon AWS region option 7 gadi atpakaļ
Quick.AppService.pas 0b2f621aaf First release 7 gadi atpakaļ
Quick.Azure.pas eff5ea4406 Quick.Azure small fixes 7 gadi atpakaļ
Quick.Base64.pas fee474f801 Base64 functions 7 gadi atpakaļ
Quick.Chrono.pas d864da599d Quick.Chrono microsecond and nanosecond precission 7 gadi atpakaļ
Quick.Commons.pas 7d79b62342 Quick.Console: Adde Console menu 7 gadi atpakaļ
Quick.Config.Provider.Json.pas 026910df6d Config Defaultvalues 7 gadi atpakaļ
Quick.Config.Provider.Registry.pas ea172ea27c Quick.Config: Full refactory 7 gadi atpakaļ
Quick.Config.pas 026910df6d Config Defaultvalues 7 gadi atpakaļ
Quick.Console.pas 7d79b62342 Quick.Console: Adde Console menu 7 gadi atpakaļ
Quick.FileMonitor.pas 0b2f621aaf First release 7 gadi atpakaļ
Quick.JSONUtils.pas 2d6c30f9e4 JSONUtils new functions 7 gadi atpakaļ
Quick.Log.pas 54e66957e3 Type changed 7 gadi atpakaļ
Quick.Network.pas ac84e9d665 Quick.Network: New function IPv4ToIntReverse 7 gadi atpakaļ
Quick.SMTP.pas ca83ddf9b6 Quick.SMTP small fix 7 gadi atpakaļ
Quick.WebBrowser.pas 0b2f621aaf First release 7 gadi atpakaļ
README.md d45ca1906f readme updated 7 gadi atpakaļ

README.md



QuickLib


Small delphi library containing interesting and quick to implement functions, created to simplify application development.


Quick.AppService: Allow a console app to run as console mode or service mode with same code simplifying debug tasks.

if not AppService.IsRunningAsService then
begin
  ...your code running as console
end
else
begin
  AppService.ServiceName := 'MyService';
  AppService.DisplayName := 'MyServicesvc';
  //you can pass an anonymous method to events
  AppService.OnStart := procedure
                        begin
                          ...your start code
                        end;
  AppService.OnExecute := YourExecuteFunction;
  AppService.OnStop := YourStopFunction;
  AppService.CheckParams;
end;

Quick.Azure/Amazon: Simplifies blob iteraction with Azure and Amazon Cloud Storage.

//connect to a Azure blobstorage
QuickAzure := TQuickAzure.Create(AzureAccountName,AzureAccountKey);

//download a blob file to a stream
done := QuickAzure.GetBlob('MyContainer','MyFile.jpg',ResponseInfo,MyStream);

//check if exists a folder
found := ExistFolder('MyContainer','/Public/Documents/Personal');

//list blobs starting with a pattern (recursively or not)
for azBlob in ListBlobs('MyContainer','/Public/Documents',Recursive,ResponseInfo) do
begin
  if azBlob.Size > 1000 then Showmessage(azBlob.Name);
end;

Quick.Network: CIDR and IP Range functions.

//convert ip string to integer
IPv4ToInt('192.168.1.10');

//get first and last ip of a subnet scope
GetIpRange('192.168.100.0','255.255.255.0',LowIp,HighIP);

Quick.Commons: Functions frequently needed in the everyday of a developer.

//coverts UTC time TDateTime to Local date time
UTCToLocalTime(MyUTCTime);

//generate a 10 char length random password with alfanumeric and signs.
RandomPassword(10,[pfIncludeNumbers,pfIncludeSigns]);

//Capitalize every word of a phrase
CapitalizeAll('the grey fox'); //returns "The Grey Fox"

//Simple TCounter and TTimeCounter for loops
counter := TCounter;
counter.Init(200);
timecounter : TTimeCounter;
timecounter.Init(10000);
while true do
begin
    Inc(n);
    {your procedural process here}
    //every 200 steps writes to console
    if counter.Check then writeln(Format('Processed %d entries',[n]));
    //every 10 seconds writes to console
    if timecounter.Check then writeln('Im working...'); 
end;

Quick.Chrono: Chronometer and Benchmark a piece of code is simple.

//get elapsed time execution of a code part
Chrono := TChronometer.Create(False);
Chrono.Start;
...code you need benchmark
Chrono.Stop;

//shows elapsed time in LongTime format (2 hour(s) and 10 minute(s))
Showmessage(Chrono.TimeElapsed(True));

//shows elapsed time in ShortTime format (02:10:00)
Showmessage(Chrono.TimeElapsed(False));
//get benchmak info of a process
Chrono := TChronoBenchMark.Create;
Chrono.TotalProcess := 100000;
for i := 1 to 10000 do
begin
    {your process here}
    Chrono.CurrentProcess := i;
    //shows estimated time your process will take in x hour(s), x minute(s) x second(s) format
    writeln(Chrono.EstimatedTime(True));
    //shows speed: num items per second processed of your process
    writeln(Format('Items processed %d/sec',[Chrono.Speed]));
end;
writeln(Chrono.ElapsedTime(False)); //shows total time elapsed in 00:00:00 format

Quick.Console: Write log messages to console with colors and more...

//define which level of output needed
Console.Verbose := LOG_DEBUG;

//writes line to console in red color
cout('Error x',etError); 

//writes formatted line in green color
coutFmt('Proccess %s finished',[ProccesName],etSuccess);

//writes integer
cout(12348);

//Connect a QuickLog and write to disk and screen with one line of code (with independent verbose levels)
MyQuickLog := TQuickLog.Create;
MyQuickLog.Verbose := LOG_ALL;
Console.Verbose := LOG_ONLYERRORS;
Console.Log := MyQuickLog;

Quick.Log: Log to disk or memory with verbose levels and daily or max space rotation.

//write a header on start with info as running path, appname, debugmode, user, etc...
Log.ShowHeader := True;

//sets log with rotation at 20MB
Log.SetLog('.\mylog.log',False,20);

//write an error message
Log.Add('Error x',etError);

//write formatted error message
Log.Add('Error is %s',[ErrorStr],etError);

Quick.Config: Load/Save a config as json file or Windows Registry keys. Create a descend class from TAppConfig and add private variables will be loaded/saved.

 //create a class heritage
 TMyConfig = class(TAppConfig)
  private
    fName : string;
    fSurname : string;
    fStatus : Integer;
  public
    property Name : string read fName write fName;
    property SurName : string read fSurname write fSurname;
    property Status : Integer read fStatus write fStatus;
  end;

  //create your config to json file
  //Add Quick.Config.Json to your uses
  AppConfigJson := TAppConfigJsonProvider<TMyConfig>.Create(MyConfig);
  AppConfigJson.CreateIfNotExists := True;
  AppConfigJson.Filename := 'Config.json';
  MyConfig.Name := 'John';
  MyConfig.Surname := 'Smith';
  //load
  AppConfigJson.Load(MyConfig);
  //save
  AppConfigJson.Save(MyConfig);

  //create your config to Windows Registry
  //Add Quick.Config.Registry to your uses
  AppConfigReg := TAppConfigRegistryProvider<TMyConfig>.Create(MyConfig);
  ////Define Registry as HKEY_CURRENT_USER\Software\MyApp
  AppConfigReg.HRoot := HKEY_CURRENT_USER; 
  AppConfigReg.MainKey := 'MyApp';
  MyConfig.Name := 'John';
  MyConfig.Surname := 'Smith';
  //load
  AppConfigReg.Load(Config);
  //save
  AppConfigReg.Save(Config);

Quick.FileMonitor: Monitorizes a file for changes and throws events.

FileMonitor.Filename := '.\myfile.txt';
//check file changes every 2 seconds
FileMonitor.Interval := 2000;
//watch for deleted or modified file events
FileMonitor.Notifies := [mnFileModified, mnFileDeleted)];
FileMonitor.OnFileChange := MyFileChangeFunction;
FileMonitor.Enabled := True;

Quick.JsonUtils: Utils for working with json objects.

//When unit declared in uses, a TObject Helper allows all your objects to be loaded or saved to/from json string
MyObject.FromJson := jsonstring;
MyString := MyObject.ToJson;

//You can clone simple objects with clone function
MyObject1.Clone(MyObject2);

Quick.SMTP: Send email with two code lines.

//Send email
SMTP := TSMTP.Create('mail.domain.com',25,False);
SMTP.SendMail('[email protected]','[email protected]','Email subject','My message body');

//You can define more advanced options
SMTP.SenderName := 'John';
SMTP.From := '[email protected]';
SMTP.Recipient := '[email protected],[email protected]';
SMTP.Subject := 'Email subject';
SMTP.AddBodyFromFile := '.\body.html';
SMTP.CC := '[email protected]';
SMTP.BCC := '[email protected]';
SMTP.Attachments.Add('.\notes.txt');
SMTP.SendMail;