DataSnap Stream 傳遞大資料

來源:互聯網
上載者:User

DataSnap可以直接傳遞和返回TStream類型的參數,這點是很方便的。但是很多人發現好像大小稍微大點就工作不正常了。

DataSnap預設的緩衝大小是32k 所以如果流的大小超過這個大小就會被自動分成多個包,這就是傳遞大量資料的基礎,如果一次性發送就可能受到記憶體的限制。

當傳遞大量資料時擷取到的大小是-1,所以如果還是按照一般的方法來讀取流的資料就會有問題了。

由於流的資料是未經處理資料包發送,所以在不對資料包壓縮加密的情況下,傳遞速度是和其它方式沒有多大區別的。

0102030405060708091011121314151617181920212223 // FS是一個檔案流function TMyDSServer.PutFile(Stream: TStream): Boolean;const  BufSize = $F000;var  Buffer: TBytes;  ReadCount: Integer;begin  if Stream.Size = -1 then  // 大小未知則一直讀取到沒有資料為止  begin    SetLength(Buffer, BufSize);    repeat      ReadCount := Stream.Read(Buffer[0], BufSize);      if ReadCount > 0 then        FS.WriteBuffer(Buffer[0], ReadCount);      if ReadCount < BufSize then        break;    until ReadCount < BufSize;  end  else // 大小已知則直接複製資料    FS.CopyFrom(Stream, 0);  Result := True;end;

 

function TdmCommonFun.DownLoadFile(const FileName: string): Boolean;
var
a: TServerMethods1Client;
ini: TIniFile;
Stream, ms: TStream;
Buffer: TBytes;
ReadCount: Integer;
const
BufSize = $F000;
begin
Result := False;
if (not TryConnectAPPServer) or (FileName = '') then
Exit;
a := TServerMethods1Client.Create(SQLConnection1.DBXConnection);
ms := TMemoryStream.Create;
try
Stream := a.DownLoadFile(FileName);
if Stream.Size = -1 then
begin
SetLength(Buffer, BufSize);
repeat
ReadCount := Stream.Read(Buffer[0], BufSize);
if ReadCount > 0 then
ms.WriteBuffer(Buffer[0], ReadCount);
if ReadCount < BufSize then
break;
until ReadCount < BufSize;
end
else
begin
ms.CopyFrom(Stream, 0);
end;
// delete bak files
if FileExists(ExtractFilePath(Application.ExeName) + FileName + 'bak') then
DeleteFile(PWideChar(ExtractFilePath(Application.ExeName) + FileName
+ 'bak'));
// 現有檔案改名
if FileExists(ExtractFilePath(Application.ExeName) + FileName) then
begin
RenameFile(ExtractFilePath(Application.ExeName) + FileName,
ExtractFilePath(Application.ExeName) + FileName + 'bak');
end;
// 下載最新檔案
TMemoryStream(ms).SaveToFile(ExtractFilePath(Application.ExeName) +
FileName);
// 更新本機版本號碼
ini := TIniFile.Create(ExtractFilePath(Application.ExeName) + 'client.ini');
try
ini.WriteInteger(FileName, 'ver', GetVer(FileName));
finally
ini.Free;
end;
finally
a.Free;
ms.Free;
end;
Result := True;
end;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.