diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-21 21:41:34 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-21 21:41:34 +0000 |
commit | a5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch) | |
tree | bcf0a25c3d45a209a6e3ac37b233a4812f29c732 /ace/FIFO.h | |
download | ATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz |
Initial revision
Diffstat (limited to 'ace/FIFO.h')
-rw-r--r-- | ace/FIFO.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/ace/FIFO.h b/ace/FIFO.h new file mode 100644 index 00000000000..dc4ffac7f40 --- /dev/null +++ b/ace/FIFO.h @@ -0,0 +1,66 @@ +/* -*- C++ -*- */ +// $Id$ + + +// ============================================================================ +// +// = LIBRARY +// ace +// +// = FILENAME +// FIFO.h +// +// = AUTHOR +// Doug Schmidt +// +// ============================================================================ + +#if !defined (ACE_FIFO_H) +#define ACE_FIFO_H + +#include "ace/IPC_SAP.h" + +class ACE_Export ACE_FIFO : public ACE_IPC_SAP + // = TITLE + // Abstract base class for UNIX FIFOs (a.k.a. Named Pipes). +{ +public: + int open (const char *rendezvous, int flags, int perms); + // Open up the named pipe on the <rendezvous> in accordance with the + // flags. + + int close (void); + // Close down the ACE_FIFO without removing the rendezvous point. + + int remove (void); + // Close down the ACE_FIFO and remove the rendezvous point from the + // file system. + + int get_local_addr (const char *&rendezvous) const; + // Return the local address of this endpoint. + + void dump (void) const; + // Dump the state of an object. + + ACE_ALLOC_HOOK_DECLARE; + // Declare the dynamic allocation hooks. + +protected: + // = Make these protected to ensure that the class is "abstract." + ACE_FIFO (void); + // Default constructor. + + ACE_FIFO (const char *rendezvous, int flags, int perms); + // Open up the named pipe on the <rendezvous> in accordance with the + // flags. + +private: + char rendezvous_[MAXPATHLEN + 1]; + // Rendezvous point in the file system. +}; + +#if defined (__ACE_INLINE__) +#include "ace/FIFO.i" +#endif /* __ACE_INLINE__ */ + +#endif /* ACE_FIFO_H */ |