home *** CD-ROM | disk | FTP | other *** search
- /*
- cyfile.prg
-
- Copyright (c) 1991 Anton van Straaten
-
- 13/02/1991 20:56 avs - creation
-
- A simple encapsulation of the Clipper low-level file i/o functions.
- Limited, but serves as an example of how easily a well-designed
- procedural system can be encapsulated in an object-oriented shell.
-
- Note that the name 'File' cannot be used for this class because of
- the Clipper function FILE().
- */
-
- #include "class(y).ch"
-
-
- create class DosFile
-
- export:
- instvar handle noassign
- instvar name noassign
-
- method open
- method close
- method create
- method read, readstr
- method write
-
- class method error
- class method erase
- class method exists
-
- endclass
-
-
- constructor (cFileName)
- ::name := cFileName
- return
-
- method function open(nMode)
- return (::handle := fopen(::name, nMode))
-
- method function close
- return fclose(::handle)
-
- method function create(nAttribute)
- return ::handle := fcreate(::name, nAttribute)
-
- method function read(buf, nBytes)
- return fread(::handle, @buf, nBytes)
-
- method function readstr(nBytes)
- return freadstr(::handle, nBytes)
-
- method function write(buf, nBytes)
- return fwrite(::handle, buf, nBytes)
-
- method function error
- return ferror()
-
- method function erase(cFile)
- return ferase(cFile)
-
- method function exists(cFile)
- return file(cFile)
-
-
- // eof cyfile.prg
-