IBuffer.cs :  » PDF » PDF-Clown » it » stefanochizzolini » clown » bytes » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » PDF » PDF Clown 
PDF Clown » it » stefanochizzolini » clown » bytes » IBuffer.cs
/*
  Copyright 2006 Stefano Chizzolini. http://clown.stefanochizzolini.it

  Contributors:
    * Stefano Chizzolini (original code developer, http://www.stefanochizzolini.it)

  This file should be part of the source code distribution of "PDF Clown library"
  (the Program): see the accompanying README files for more info.

  This Program is free software; you can redistribute it and/or modify it under
  the terms of the GNU General Public License as published by the Free Software
  Foundation; either version 2 of the License, or (at your option) any later version.

  This Program is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY, either expressed or implied; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more details.

  You should have received a copy of the GNU General Public License along with this
  Program (see README files); if not, go to the GNU website (http://www.gnu.org/).

  Redistribution and use, with or without modification, are permitted provided that such
  redistributions retain the above copyright notice, license and disclaimer, along with
  this list of conditions.
*/

using it.stefanochizzolini.clown.bytes.filters;

namespace it.stefanochizzolini.clown.bytes{
  /**
    <summary>
      <para>Buffer.</para>
      <para>Its pivotal concept is the array index.</para>
    </summary>
  */
  public interface IBuffer
    : IInputStream
  {
    /**
      <summary>Appends a byte to the buffer.</summary>
      <param name="data">Byte to copy.</param>
    */
    void Append(
      byte data
      );

    /**
      <summary>Appends a byte array to the buffer.</summary>
      <param name="data">Byte array to copy.</param>
    */
    void Append(
      byte[] data
      );

    /**
      <summary>Appends a byte range to the buffer.</summary>
      <param name="data">Byte array from which the byte range has to be copied.</param>
      <param name="offset">Location in the byte array at which copying begins.</param>
      <param name="length">Number of bytes to copy.</param>
    */
    void Append(
      byte[] data,
      int offset,
      int length
      );

    /**
      <summary>Appends a string to the buffer.</summary>
      <param name="data">String to copy.</param>
    */
    void Append(
      string data
      );

    /**
      <summary>Appends an IInputStream to the buffer.</summary>
      <param name="data">Source data to copy.</param>
    */
    void Append(
      IInputStream data
      );

    /**
      <summary>Appends a stream to the buffer.</summary>
      <param name="data">Source data to copy.</param>
    */
    void Append(
      System.IO.Stream data
      );

    /**
      <summary>Gets the allocated buffer size.</summary>
      <returns>Allocated buffer size.</returns>
    */
    int Capacity
    {
      get;
    }

    /**
      <summary>Gets a clone of the buffer.</summary>
      <returns>Deep copy of the buffer.</returns>
    */
    IBuffer Clone(
      );

    /**
      <summary>Applies the specified filter to decode the buffer.</summary>
      <param name="filter">Filter to use for decoding the buffer.</param>
    */
    void Decode(
      Filter filter
      );

    /**
      <summary>Deletes a byte chunk from the buffer.</summary>
      <param name="index">Location at which deletion has to begin.</param>
      <param name="length">Number of bytes to delete.</param>
    */
    void Delete(
      int index,
      int length
      );

    /**
      <summary>Applies the specified filter to encode the buffer.</summary>
      <param name="filter">Filter to use for encoding the buffer.</param>
      <returns>Encoded buffer.</returns>
    */
    byte[] Encode(
      Filter filter
      );

    /**
      <summary>Gets the byte at a specified location.</summary>
      <param name="index">A location in the buffer.</param>
      <returns>Byte at the specified location.</returns>
    */
    int GetByte(
      int index
      );

    /**
      <summary>Gets the byte range beginning at a specified location.</summary>
      <param name="index">Location at which the byte range has to begin.</param>
      <param name="length">Number of bytes to copy.</param>
      <returns>Byte range beginning at the specified location.</returns>
    */
    byte[] GetByteArray(
      int index,
      int length
      );

    /**
      <summary>Gets the string beginning at a specified location.</summary>
      <param name="index">Location at which the string has to begin.</param>
      <param name="length">Number of bytes to convert.</param>
      <returns>String beginning at the specified location.</returns>
    */
    string GetString(
      int index,
      int length
      );

    /**
      <summary>Inserts a byte array into the buffer.</summary>
      <param name="index">Location at which the byte array has to be inserted.</param>
      <param name="data">Byte array to insert.</param>
    */
    void Insert(
      int index,
      byte[] data
      );

    /**
      <summary>Inserts a byte range into the buffer.</summary>
      <param name="index">Location at which the byte range has to be inserted.</param>
      <param name="data">Byte array from which the byte range has to be copied.</param>
      <param name="offset">Location in the byte array at which copying begins.</param>
      <param name="length">Number of bytes to copy.</param>
    */
    void Insert(
      int index,
      byte[] data,
      int offset,
      int length
      );

    /**
      <summary>Inserts a string into the buffer.</summary>
      <param name="index">Location at which the string has to be inserted.</param>
      <param name="data">String to insert.</param>
    */
    void Insert(
      int index,
      string data
      );

    /**
      <summary>Inserts an IInputStream into the buffer.</summary>
      <param name="index">Location at which the IInputStream has to be inserted.</param>
      <param name="data">Source data to copy.</param>
    */
    void Insert(
      int index,
      IInputStream data
      );

    /**
      <summary>Replaces the buffer contents with a byte array.</summary>
      <param name="index">Location at which the byte array has to be copied.</param>
      <param name="data">Byte array to copy.</param>
    */
    void Replace(
      int index,
      byte[] data
      );

    /**
      <summary>Replaces the buffer contents with a byte range.</summary>
      <param name="index">Location at which the byte range has to be copied.</param>
      <param name="data">Byte array from which the byte range has to be copied.</param>
      <param name="offset">Location in the byte array at which copying begins.</param>
      <param name="length">Number of bytes to copy.</param>
    */
    void Replace(
      int index,
      byte[] data,
      int offset,
      int length
      );

    /**
      <summary>Replaces the buffer contents with a string.</summary>
      <param name="index">Location at which the string has to be copied.</param>
      <param name="data">String to copy.</param>
    */
    void Replace(
      int index,
      string data
      );

    /**
      <summary>Replaces the buffer contents with an IInputStream.</summary>
      <param name="index">Location at which the IInputStream has to be copied.</param>
      <param name="data">Source data to copy.</param>
    */
    void Replace(
      int index,
      IInputStream data
      );

    /**
      <summary>Sets the used buffer size.</summary>
      <param name="value">New length.</param>
    */
    void SetLength(
      int value
      );

    /**
      <summary>Writes the buffer data to a stream.</summary>
      <param name="stream">Target stream.</param>
    */
    void WriteTo(
      IOutputStream stream
      );
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.