testbs

{
    $Id: testbs.pp,v 1.2 2005/02/14 17:13:18 peter Exp $
    This file is part of the Free Component Library.
    Copyright (c) 1999-2000 by the Free Pascal development team
 
    Test for TBufstream.
 
    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
 **********************************************************************}
{$mode objfpc}
{$H+}
program testbs;
 
 
uses
  Classes, SysUtils
  { add your units here }, bufstream;
 
Var
  MBSize     : Integer = 1024*100;
  SBCapacity : Integer = 1024*16;
 
procedure TestRead(Buffer : PChar; ACapacity : Integer);
 
Var
  F2 : TFileStream;
  B : TReadBufSTream;
  C : Integer;
 
begin
  B:=TReadBufStream.Create(TFileStream.Create(PAramStr(0),fmOpenRead),ACapacity);
  Try
    B.SourceOwner:=True;
    F2:=TFileStream.Create(ChangeFileExt(PAramStr(0),'.tr'),fmCreate);
    Try
      Repeat
        C:=B.Read(Buffer^,MBSize);
        F2.Write(Buffer^,C);
      Until (C<MBSize);
    Finally
      F2.Free;
    end;
  finally
    B.Free;
  end;
end;
 
procedure TestWrite(Buffer : PChar; ACapacity : Integer);
 
Var
  F : TFileStream;
  B : TWriteBufSTream;
  C : Integer;
 
begin
  F:=TFileStream.Create(PAramStr(0),fmOpenRead);
  Try
    B:=TWriteBufStream.Create(TFileStream.Create(ChangeFileExt(PAramStr(0),'.tw'),fmCreate),ACapacity);
    Try
      B.SourceOwner:=True;
      Repeat
        C:=F.Read(Buffer^,MBSize);
        B.Write(Buffer^,C);
      Until (C<MBSize);
    Finally
      B.Free;
    end;
  finally
    F.Free;
  end;
end;
 
Var
  Buffer : PChar;
 
begin
  If ParamCount>0 then
    MBSize:=StrToIntDef(ParamStr(1),MBSize);
  If ParamCount>1 then
    SBCapacity:=StrToIntDef(ParamStr(2),SBCapacity);
  GetMem(Buffer,MBSize);
  Try
    TestRead(Buffer,SBCapacity);
    TestWrite(Buffer,SBCapacity);
  Finally
    FreeMem(Buffer);
  end;
end.
 
 

¿Has encontrado algún error? ¿Tienes la solución? Dejame tu correción ;-)

Antes de comentar: Gran parte de los ejercicios propuestos no tienen librerías debido a que Wordpress las eliminó al verlas como etiquetas HTML. Si sabes/tienes/conoces las librerías que hacen falta, déjalo en los comentarios. Y lo mas importante: Todos los ejemplos fueron realizados por personas con únicamente conocimiento básico del lenguaje, no de programación.

Otro punto importante: Si vas a sugerir un segmento de código en algún lenguaje debes hacerlo así:

  • Si es lenguaje C [c]Código en C[/c]
  • Si es lenguaje Pascal [pascal]Aquí dentro el código de Pascal[/pascal].

De esta manera el código coloreas el código.

Otro punto importante para muchos que sienten que se les ignora: Todos los comentarios los reviso y en su debido momento los apruebo, pero ojo con el con lo siguiente:

Me reservo el derecho de alterar, publicar o no los comentarios as´ como cambiar mis condiciones en el momento que así lo requiera.

¿estas de acuerdo? entonces adelante que ya te he quitado bastante tiempo leyendo esta basura de advertencias :)