~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/cslib/CSSocket.h

Merge Stewart.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2008 PrimeBase Technologies GmbH, Germany
2
 
 *
3
 
 * PrimeBase Media Stream for MySQL
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or modify
6
 
 * it under the terms of the GNU General Public License as published by
7
 
 * the Free Software Foundation; either version 2 of the License, or
8
 
 * (at your option) any later version.
9
 
 *
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18
 
 *
19
 
 * Original author: Paul McCullagh (H&G2JCtL)
20
 
 * Continued development: Barry Leslie
21
 
 *
22
 
 * 2007-05-24
23
 
 *
24
 
 * CORE SYSTEM:
25
 
 * Basic file I/O.
26
 
 *
27
 
 */
28
 
 
29
 
#ifndef __CSSOCKET_H__
30
 
#define __CSSOCKET_H__
31
 
 
32
 
#include <stdio.h>
33
 
 
34
 
#include "CSDefs.h"
35
 
#include "CSPath.h"
36
 
#include "CSException.h"
37
 
#include "CSMemory.h"
38
 
#include "CSMutex.h"
39
 
 
40
 
class CSOutputStream;
41
 
class CSInputStream;
42
 
 
43
 
#define CS_SOCKET_ADDRESS_SIZE          300
44
 
 
45
 
/* This is only required if you do
46
 
 * not use an output buffer stream!
47
 
 */
48
 
//#define CS_USE_OUTPUT_BUFFER
49
 
 
50
 
#ifdef CS_USE_OUTPUT_BUFFER
51
 
#ifdef DEBUG
52
 
#define CS_OUTPUT_BUFFER_SIZE           80
53
 
#define CS_MIN_WRITE_SIZE                       40
54
 
#else
55
 
#define CS_OUTPUT_BUFFER_SIZE           (4*1024)
56
 
#define CS_MIN_WRITE_SIZE                       (1500)
57
 
#endif
58
 
#endif
59
 
 
60
 
class CSSocket : public CSRefObject {
61
 
public:
62
 
        CSSocket(): iHandle(-1), iHost(NULL), iService(NULL), iIdentity(NULL), iPort(0), iTimeout(0) {
63
 
#ifdef CS_USE_OUTPUT_BUFFER
64
 
        iDataLen = 0;
65
 
#endif
66
 
        }
67
 
 
68
 
        virtual ~CSSocket() {
69
 
                close();
70
 
        }
71
 
 
72
 
        void setTimeout(uint32_t milli_sec);
73
 
 
74
 
        CSOutputStream *getOutputStream();
75
 
 
76
 
        CSInputStream *getInputStream();
77
 
 
78
 
        virtual void formatAddress(size_t size, char *address);
79
 
 
80
 
        /*
81
 
         * Publish a listener:
82
 
         */
83
 
        virtual void publish(char *service, int default_port);
84
 
 
85
 
        /*
86
 
         * Accept a connection from a listening socket:
87
 
         */
88
 
        virtual void open(CSSocket *listener);
89
 
 
90
 
        /*
91
 
         * Connect to a listening socket.
92
 
         */
93
 
        virtual void open(char *address, int default_port);
94
 
 
95
 
        /*
96
 
         * Close the socket.
97
 
         */
98
 
        virtual void close();
99
 
 
100
 
        /*
101
 
         * Read at least one byte from the socket.
102
 
         * This function returns 0 on EOF.
103
 
         * If the function returns at least
104
 
         * one byte, then you must call the function
105
 
         * again, there may be more data available.
106
 
         *
107
 
         * Note: Errors on the socket do not cause
108
 
         * an exception!
109
 
         */
110
 
        virtual size_t read(void *data, size_t size);
111
 
 
112
 
        /*
113
 
         * Returns -1 on EOF!
114
 
         * Otherwize it returns a character value >= 0
115
 
         * Just like read, error on the socket do
116
 
         * not throw an exception.
117
 
         */
118
 
        virtual int read();
119
 
 
120
 
        /*
121
 
         * Look at the next character in the file without
122
 
         * taking from the input.
123
 
         */
124
 
        virtual int peek();
125
 
 
126
 
        /*
127
 
         * Write the given number of bytes.
128
 
         * Throws IOException if an error occurs.
129
 
         */
130
 
        virtual void write(const  void *data, size_t size);
131
 
 
132
 
        /*
133
 
         * Write a character to the file.
134
 
         */
135
 
        virtual void write(char ch);
136
 
 
137
 
        /*
138
 
         * Flush the data written.
139
 
         */
140
 
        virtual void flush();
141
 
 
142
 
        virtual const char *identify();
143
 
 
144
 
        static void initSockets();
145
 
 
146
 
        static CSSocket *newSocket();
147
 
 
148
 
private:
149
 
        void throwError(const char *func, const char *file, int line, char *address, int err);
150
 
        void throwError(const char *func, const char *file, int line, int err);
151
 
        void setNoDelay();
152
 
        void setNonBlocking();
153
 
        void setBlocking();
154
 
        void openInternal();
155
 
        void writeBlock(const void *data, size_t len);
156
 
        int timeoutRead(CSThread *self, void *buffer, size_t length);
157
 
 
158
 
        int                     iHandle;
159
 
        char            *iHost;
160
 
        char            *iService;
161
 
        char            *iIdentity;
162
 
        int                     iPort;
163
 
        uint32_t        iTimeout;
164
 
 
165
 
#ifdef CS_USE_OUTPUT_BUFFER
166
 
        char    iOutputBuffer[CS_OUTPUT_BUFFER_SIZE];
167
 
        size_t  iDataLen;
168
 
#endif
169
 
 
170
 
};
171
 
 
172
 
#endif