Skip to content

Commit

Permalink
[azure] some improvements and bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
exilon committed Nov 5, 2020
1 parent 8de90cc commit 107100a
Showing 1 changed file with 32 additions and 22 deletions.
54 changes: 32 additions & 22 deletions Quick.Azure.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Author : Kike Pérez
Version : 1.4
Created : 27/08/2015
Modified : 07/04/2020
Modified : 05/11/2020
This file is part of QuickLib: https://github.com/exilon/QuickLib
Expand Down Expand Up @@ -76,6 +76,7 @@ TQuickAzure = class
procedure SetAzureProtocol(azProtocol : TAzureProtocol);
function FileToArray(cFilename : string) : TArray<Byte>;
function StreamToArray(cStream : TStream) : TArray<Byte>;
function ByteContent(DataStream: TStream): TBytes;
function GMT2DateTime(const gmtdate : string):TDateTime;
function CheckContainer(const aContainer : string) : string;
function RemoveFirstSlash(const aValue : string) : string;
Expand Down Expand Up @@ -165,13 +166,7 @@ function TQuickAzure.FileToArray(cFilename : string) : TArray<Byte>;
begin
fs := TFileStream.Create(cFilename, fmOpenRead);
try
bs := TBytesStream.Create(Result);
try
bs.LoadFromStream(fs);
Result := bs.Bytes;
finally
bs.Free
end;
Result := ByteContent(fs);
finally
fs.Free;
end;
Expand All @@ -190,6 +185,19 @@ function TQuickAzure.StreamToArray(cStream : TStream) : TArray<Byte>;
end;
end;

function TQuickAzure.ByteContent(DataStream: TStream): TBytes;
var
Buffer: TBytes;
begin
if not Assigned(DataStream) then Exit(nil);
SetLength(Buffer, DataStream.Size);
// the content may have been read
DataStream.Position := 0;
if DataStream.Size > 0 then
DataStream.Read(Buffer[0], DataStream.Size);
Result := Buffer;
end;

function TQuickAzure.GMT2DateTime(const gmtdate : string):TDateTime;
function GetMonthDig(Value : string):Integer;
const
Expand Down Expand Up @@ -278,7 +286,6 @@ function TQuickAzure.PutBlob(const azContainer, cFilename, azBlobName : string;
container : string;
blobname : string;
begin
Result := False;
BlobService := TAzureBlobService.Create(fconAzure);
try
container := CheckContainer(azContainer);
Expand All @@ -302,11 +309,12 @@ function TQuickAzure.PutBlob(const azContainer, cFilename, azBlobName : string;
function TQuickAzure.PutBlob(const azContainer : string; cStream : TStream; const azBlobName : string; out azResponseInfo : TAzureResponseInfo) : Boolean;
var
BlobService : TAzureBlobService;
Content : TArray<Byte>;
Content : TBytes;
CloudResponseInfo : TCloudResponseInfo;
container : string;
blobname : string;
begin
Result := False;
azResponseInfo.StatusCode := 500;
if cStream.Size = 0 then
begin
Expand All @@ -322,7 +330,7 @@ function TQuickAzure.PutBlob(const azContainer : string; cStream : TStream; cons
BlobService.Timeout := fTimeout;
CloudResponseInfo := TCloudResponseInfo.Create;
try
Content := StreamToArray(cStream);
Content := ByteContent(cStream);
Result := BlobService.PutBlockBlob(container,blobname,Content,EmptyStr,nil,nil,CloudResponseInfo);
azResponseInfo := GetResponseInfo(CloudResponseInfo);
finally
Expand All @@ -349,7 +357,6 @@ function TQuickAzure.GetBlob(const azContainer, azBlobName, cFilenameTo : string
container : string;
blobname : string;
begin
Result := False;
container := CheckContainer(azContainer);
blobname := RemoveFirstSlash(azBlobName);
BlobService := TAzureBlobService.Create(fconAzure);
Expand Down Expand Up @@ -380,7 +387,7 @@ function TQuickAzure.GetBlob(const azContainer, azBlobName : string; out azRespo
begin
Stream := TMemoryStream.Create;
try
GetBlob(azContainer,azBlobName,azResponseInfo,TStream(Stream));
Result := GetBlob(azContainer,azBlobName,azResponseInfo,TStream(Stream));
except
Stream.Free;
end;
Expand All @@ -398,7 +405,6 @@ function TQuickAzure.GetBlob(const azContainer, azBlobName: string; out azRespon
container : string;
blobname : string;
begin
Result := False;
container := CheckContainer(azContainer);
blobname := RemoveFirstSlash(azBlobName);
BlobService := TAzureBlobService.Create(fconAzure);
Expand Down Expand Up @@ -431,7 +437,6 @@ function TQuickAzure.CopyBlob(const azSourceContainer, azSourceBlobName : string
sourceblobname : string;
targetblobname : string;
begin
Result := False;
sourcecontainer := CheckContainer(azSourceContainer);
targetcontainer := CheckContainer(azTargetContainer);
sourceblobname := RemoveFirstSlash(azSourceBlobName);
Expand Down Expand Up @@ -557,7 +562,6 @@ function TQuickAzure.DeleteBlob(const azContainer,azBlobName : string; out azRes
container : string;
blobname : string;
begin
Result := False;
container := CheckContainer(azContainer);
blobname := RemoveFirstSlash(azBlobName);
BlobService := TAzureBlobService.Create(fconAzure);
Expand Down Expand Up @@ -833,11 +837,14 @@ function TQuickAzure.CreateContainer(const azContainer : string; azPublicAccess
try
BlobService.Timeout := fTimeout;
CloudResponseInfo := TCloudResponseInfo.Create;
Result := BlobService.CreateContainer(azContainer,nil,azPublicAccess,CloudResponseInfo);
azResponseInfo := GetResponseInfo(CloudResponseInfo);
try
Result := BlobService.CreateContainer(azContainer,nil,azPublicAccess,CloudResponseInfo);
azResponseInfo := GetResponseInfo(CloudResponseInfo);
finally
CloudResponseInfo.Free;
end;
finally
BlobService.Free;
CloudResponseInfo.Free;
end;
end;

Expand All @@ -853,11 +860,14 @@ function TQuickAzure.DeleteContainer(const azContainer : string; out azResponseI
try
BlobService.Timeout := fTimeout;
CloudResponseInfo := TCloudResponseInfo.Create;
Result := BlobService.DeleteContainer(azContainer,CloudResponseInfo);
azResponseInfo := GetResponseInfo(CloudResponseInfo);
try
Result := BlobService.DeleteContainer(azContainer,CloudResponseInfo);
azResponseInfo := GetResponseInfo(CloudResponseInfo);
finally
CloudResponseInfo.Free;
end;
finally
BlobService.Free;
CloudResponseInfo.Free;
end;
end;

Expand Down

0 comments on commit 107100a

Please sign in to comment.