This file is indexed.

/usr/include/cc++/unix.h is in libcommoncpp2-dev 1.8.1-6.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
// Copyright (C) 1999-2005 Open Source Telecom Corporation.
// Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// As a special exception, you may use this file as part of a free software
// library without restriction.  Specifically, if other files instantiate
// templates or use macros or inline functions from this file, or you compile
// this file and link it with other files to produce an executable, this
// file does not by itself cause the resulting executable to be covered by
// the GNU General Public License.  This exception does not however
// invalidate any other reasons why the executable file might be covered by
// the GNU General Public License.
//
// This exception applies only to the code released under the name GNU
// Common C++.  If you copy code from other releases into a copy of GNU
// Common C++, as the General Public License permits, the exception does
// not apply to the code that you add in this way.  To avoid misleading
// anyone as to the status of such modified files, you must delete
// this exception notice from them.
//
// If you write modifications of your own for GNU Common C++, it is your choice
// whether to permit this exception to apply to your modifications.
// If you do not wish that, delete this exception notice.
//

/**
 * @file unix.h
 * @short UNIX domain sockets, streams and sessions.
 **/

#ifndef CCXX_UNIX_H_
#define CCXX_UNIX_H_

#ifndef CCXX_MISSING_H_
#include <cc++/missing.h>
#endif

#ifndef CCXX_SOCKET_H_
#include <cc++/socket.h>
#endif

#ifdef  CCXX_NAMESPACES
namespace ost {
#endif

#ifndef WIN32

 /**
  * Unix domain sockets are used for stream based connected sessions between
  * processes on the same machine.

  * An implicit and unique UnixSocket object exists in Common C++ to represent
  * a bound Unix domain socket acting as a "server" for receiving connection requests.
  * This class is not part of UnixStream because such objects normally perform
  * no physical I/O (read or write operations) other than to specify a listen
  * backlog queue and perform "accept" operations for pending connections.
  *
  * @author Alex Pavloff <alex@pavloff.net>
  * @short bound server for Unix domain streams and sessions.
  */
 class UnixSocket : protected Socket {
 protected:
    friend class UnixStream;
    friend class SocketPort;
    friend class unixstream;

    void close(void);
    char *path;

 public:
    /**
     * A Unix domain "server" is created as a Unix domain socket that is bound
     * to a pathname and that has a backlog queue to listen for connection
     * requests.  If the server cannot be created, an exception is thrown.
     *
     * @param pathname pathname to socket file
     * @param backlog size of connection request queue.
     */
    UnixSocket(const char* pathname, int backlog = 5);

    /**
     * Used to wait for pending connection requests.
     */
    inline bool isPendingConnection(timeout_t timeout = TIMEOUT_INF) /** not const -- jfc */
        {return Socket::isPending(pendingInput, timeout);}

    /**
     * Use base socket handler for ending this socket.
     */
    virtual ~UnixSocket();
 };

 /**
  * Unix streams are used to represent Unix domain client connections to a
  * local server for accepting client connections.  The Unix
  * stream is a C++ "stream" class, and can accept streaming of data to
  * and from other C++ objects using the << and >> operators.
  *
  * Unix Stream itself can be formed either by connecting to a bound network
  * address of a Unix domain server, or can be created when "accepting" a
  * network connection from a Unix domain server.
  *
  * @author Alex Pavloff <alex@pavloff.net>
  * @short streamable Unix domain socket connection.
  */
 class UnixStream : public Socket, public std::streambuf, public std::iostream {
 private:
    int doallocate();

 protected:
    timeout_t timeout;
    int bufsize;
    char *gbuf, *pbuf;

    /**
     * The constructor required for "unixstream", a more C++ style
     * version of the TCPStream class.
     */
    UnixStream(bool throwflag = true);

    /**
     * Used to allocate the buffer space needed for iostream
     * operations.  This function is called by the constructor.
     *
     * @param size of stream buffers from constructor.
     */
    void allocate(int size);

    /**
     * Used to terminate the buffer space and cleanup the socket
     * connection.  This fucntion is called by the destructor.
     */
    void endStream(void);

    /**
     * This streambuf method is used to load the input buffer
     * through the established unix domain socket connection.
     *
     * @return char from get buffer, EOF if not connected.
     */
    virtual int underflow(void);

    /**
     * This streambuf method is used for doing unbuffered reads
     * through the established unix domain socket connection when in interactive mode.
     * Also this method will handle proper use of buffers if not in
     * interative mode.
     *
     * @return char from unix domain socket connection, EOF if not connected.
     */
    int uflow(void);

    /**
     * This streambuf method is used to write the output
     * buffer through the established unix domain connection.
     *
     * @param ch char to push through.
     * @return char pushed through.
     */
    int overflow(int ch);

    /**
     * Create a Unix domain stream by connecting to a Unix domain socket
     *
     * @param pathname path to socket
     * @param size of streaming input and output buffers.
     */
    void connect(const char* pathname, int size);

    /**
     * Used in derived classes to refer to the current object via
     * it's iostream.  For example, to send a set of characters
     * in a derived method, one might use *tcp() << "test".
     *
     * @return stream pointer of this object.
     */
    std::iostream *unixstr(void)
        {return ((std::iostream *)this);};

 public:
    /**
     * Create a Unix domain stream by accepting a connection from a bound
     * Unix domain socket acting as a server.  This performs an "accept"
     * call.
     *
     * @param server socket listening.
     * @param size of streaming input and output buffers.
     * @param throwflag flag to throw errors.
     * @param timeout for all operations.
     */
    UnixStream(UnixSocket &server, int size = 512, bool throwflag = true, timeout_t timeout = 0);

    /**
     * Create a Unix domain stream by connecting to a Unix domain socket
     *
     * @param pathname path to socket
     * @param size of streaming input and output buffers.
     * @param throwflag flag to throw errors.
     * @param to timeout for all operations.
     */
    UnixStream(const char* pathname, int size = 512, bool throwflag = true, timeout_t to = 0);

    /**
     * Set the I/O operation timeout for socket I/O operations.
     *
     * @param to timeout to set.
     */
    inline void setTimeout(timeout_t to)
        {timeout = to;};

    /**
     * A copy constructor creates a new stream buffer.
     *
     * @param source of copy.
     *
     */
    UnixStream(const UnixStream &source);

    /**
     * Flush and empty all buffers, and then remove the allocated
     * buffers.
     */
    virtual ~UnixStream();

    /**
     * Flushes the stream input and output buffers, writes
     * pending output.
     *
     * @return 0 on success.
     */
    int sync(void);

    /**
     * Get the status of pending stream data.  This can be used to
     * examine if input or output is waiting, or if an error or
     * disconnect has occured on the stream.  If a read buffer
     * contains data then input is ready and if write buffer
     * contains data it is first flushed and then checked.
     */
    bool isPending(Pending pend, timeout_t timeout = TIMEOUT_INF);

    /**
     * Return the size of the current stream buffering used.
     *
     * @return size of stream buffers.
     */
    int getBufferSize(void) const
        {return bufsize;};
 };

 /**
  * A more natural C++ "unixstream" class for use by non-threaded
  * applications.  This class behaves a lot more like fstream and
  * similar classes.
  *
  * @author Alex Pavloff <alex@pavloff.net>
  * @short C++ "fstream" style unixstream class.
  */
 class unixstream : public UnixStream {
 public:
    /**
     * Construct an unopened "tcpstream" object.
     */
    unixstream();

    /**
     * Construct and "open" (connect) the tcp stream to a remote
     * socket.
     *
     * @param pathname pathname to socket file
     * @param buffer size for streaming (optional).
     */
    unixstream(const char *pathname, int buffer = 512);

    /**
     * Construct and "accept" (connect) the tcp stream through
     * a server.
     *
     * @param unixsock socket to accept from.
     * @param buffer size for streaming (optional).
     */
    unixstream(UnixSocket &unixsock, int buffer = 512);

    /**
     * Open a tcp stream connection.  This will close the currently
     * active connection first.
     *
     * @param pathname pathname to socket file
     * @param buffer size for streaming (optional)
     */
    void open(const char *pathname, int buffer = 512)
        {UnixStream::connect( pathname, buffer );}

    /**
     * Open a tcp stream connection by accepting a tcp socket.
     *
     * @param unixsock socket to accept from.
     * @param buffer size for streaming (optional)
     */
    void open(UnixSocket &unixsock, int buffer = 512);

    /**
     * Close the active tcp stream connection.
     */
    void close(void);

    /**
     * Test to see if stream is open.
     */
    bool operator!() const;
 };

 /**
  * The Unix domain session is used to primarily to represent a client connection
  * that can be managed on a separate thread.  The Unix domain session also supports
  * a non-blocking connection scheme which prevents blocking during the
  * constructor and moving the process of completing a connection into the
  * thread that executes for the session.
  *
  * @author Alex Pavloff <alex@pavloff.net>
  * @short Threaded streamable unix domain socket with non-blocking constructor.
  */
 class __EXPORT UnixSession : public Thread, public UnixStream {
 protected:
    /**
     * Normally called during the thread Initial() method by default,
     * this will wait for the socket connection to complete when
     * connecting to a remote socket.  One might wish to use
     * setCompletion() to change the socket back to blocking I/O
     * calls after the connection completes.  To implement the
     * session one must create a derived class which implements
     * Run().
     *
     * @return 0 if successful, -1 if timed out.
     * @param timeout to wait for completion in milliseconds.
     */
    int waitConnection(timeout_t timeout = TIMEOUT_INF);

    /**
     * The initial method is used to esablish a connection when
     * delayed completion is used.  This assures the constructor
     * terminates without having to wait for a connection request
     * to complete.
     */
    void initial(void);

 public:
    /**
     * Create a Unix domain socket that will be connected to a local server
     * server and that will execute under it's own thread.
     *
     * @param pathname path to socket
     * @param size of streaming buffer.
     * @param pri execution priority relative to parent.
     * @param stack allocation needed on some platforms.
     */
    UnixSession(const char* pathname, int size = 512, int pri = 0, int stack = 0);

    /**
     * Create a Unix domain socket from a bound Unix domain server by accepting a pending
     * connection from that server and execute a thread for the accepted connection.
     *
     * @param server unix domain socket to accept a connection from.
     * @param size of streaming buffer.
     * @param pri execution priority relative to parent.
     * @param stack allocation needed on some platforms.
     */
    UnixSession(UnixSocket &server, int size = 512,
           int pri = 0, int stack = 0);

    /**
     * Virtual destructor.
     */
    virtual ~UnixSession();
 };

#endif // ndef WIN32

#ifdef  CCXX_NAMESPACES
}
#endif

#endif