Menu

#35 Define storage framework

open
3
2012-11-01
2006-09-21
No

CARL shall provide an extensible storage framework.

An abstract storage is a sequence of bytes that has:

1. Known length, and
2. Current position.

Normally, an input storage will act as an input stream
and an output storage shall act as an output stream. In
addition to standard stream operations, the client can:

1. Query the current size of the storage.
2. [for output storages only] Change the current size
of the storage.
3. Query or modify the current position within the storage.

Note that by above definition a RandomAccessFile is [an
extended form of, because it allows locking] a
bidirectional input+output storage.

Concrete storage implementations shall include at least:

1. FileInputStorage - treats a file as an input storage.
2. FileOutputStorage - treats a file as an output storage.
3. MemoryInputStorage - treats a block of bytes in
memory as an input storage.
4. MemoryOutputStorage - treats a block of bytes in
memory as an output storage.

Discussion

  • Andrei Kapustin

    Andrei Kapustin - 2006-10-02
    • assigned_to: nobody --> akapusti
     
  • Andrei Kapustin

    Andrei Kapustin - 2008-12-18
    • milestone: 602618 --> 556494
     
  • Andrei Kapustin

    Andrei Kapustin - 2012-11-01
    • milestone: 556494 --> Some time in the future