blob: a671a1a50f6b5d36ebc4011e7dd615a20205fed5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* -*- C++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// ace
//
// = FILENAME
// FIFO.h
//
// = AUTHOR
// Doug Schmidt
//
// ============================================================================
#ifndef ACE_FIFO_H
#define ACE_FIFO_H
#include "ace/IPC_SAP.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
class ACE_Export ACE_FIFO : public ACE_IPC_SAP
{
// = TITLE
// Abstract base class for UNIX FIFOs
//
// = DESCRIPTION
// UNIX FIFOs are also known Named Pipes, which are totally
// unrelated to Win32 Named Pipes. If you want to use a local
// IPC mechanism that will be portable to both UNIX and Win32,
// take a look at the <ACE_SPIPE_*> classes.
public:
int open (const ASYS_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
// 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 ASYS_TCHAR *&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 ASYS_TCHAR *rendezvous, int flags, int perms,
LPSECURITY_ATTRIBUTES sa = 0);
// Open up the named pipe on the <rendezvous> in accordance with the
// flags.
private:
ASYS_TCHAR rendezvous_[MAXPATHLEN + 1];
// Rendezvous point in the file system.
};
#if defined (__ACE_INLINE__)
#include "ace/FIFO.i"
#endif /* __ACE_INLINE__ */
#endif /* ACE_FIFO_H */
|