+
Point of view
All features
deferred class FILE_STREAM
Summary
Common parent class to all the file-related streams. Provides a common connection interface to the "real" files of the operating system.
Direct parents
Inherit list: STREAM
Known children
Inherit list: BINARY_FILE_READ, BINARY_FILE_WRITE, TEXT_FILE_READ, TEXT_FILE_READ_WRITE, TEXT_FILE_WRITE
Class invariant
Overview
Features
{ANY}
{}
{ANY}
{}
{STREAM_HANDLER}
{FILTER}
{ANY}
{}
{RECYCLING_POOL}
  • recycle
    Do whatever needs to be done to free resources or recycle other objects when recycling this one
{}
  • dispose
    Action to be executed just before garbage collection reclaims an object.
{}
path: STRING
writable attribute
{ANY}
Not Void when connected to the corresponding file on the disk.
is_connected: BOOLEAN
effective function
{ANY}
Is this file connected to some file of the operating system?
connect_to (new_path: ABSTRACT_STRING)
deferred procedure
{ANY}
Try to connect to an existing file of the operating system.
set_path (new_path: ABSTRACT_STRING)
effective procedure
{}
disconnect
deferred procedure
{ANY}
Try to disconnect the stream.
descriptor: INTEGER_32
effective function
{ANY}
Some OS-dependent descriptor.
has_descriptor: BOOLEAN
effective function
{ANY}
True if that stream can be associated to some OS-meaningful descriptor.
can_disconnect: BOOLEAN
deferred function
{ANY}
True if the stream can be safely disconnected (without data loss, etc.)
url: URL
frozen
effective function
{ANY}
The URL to this stream as resource
url_memory: URL
writable attribute
{}
new_url: URL
deferred function
{}
stream_pointer: POINTER
effective function
Some Back-end-dependent pointer (FILE* in C, InputStream or OutputStream in Java)
has_stream_pointer: BOOLEAN
effective function
True if that stream can be associated to some Back-end-meaningful stream pointer.
filtered_descriptor: INTEGER_32
deferred function
Find the descriptor of the terminal stream...
filtered_has_descriptor: BOOLEAN
deferred function
True if the underlying terminal stream has a descriptor
filtered_stream_pointer: POINTER
deferred function
Find the pointer of the terminal stream...
filtered_has_stream_pointer: BOOLEAN
deferred function
True if the underlying terminal stream has a pointer
event_exception: EVENT_DESCRIPTOR
effective function
{ANY}
stream_exception: STREAM_EXCEPTION
writable attribute
{}
recycle
effective procedure
Do whatever needs to be done to free resources or recycle other objects when recycling this one
dispose
effective procedure
{}
Action to be executed just before garbage collection reclaims an object.
sequencer_descriptor (file: POINTER): INTEGER_32
{}