-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.h
More file actions
172 lines (149 loc) · 4.93 KB
/
Copy pathutils.h
File metadata and controls
172 lines (149 loc) · 4.93 KB
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
/*
* $Id$
*
* Copyright (c) 2005-2008 Vyacheslav Frolov
*
* 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
*
*
* $Log$
* Revision 1.7 2008/02/08 16:40:56 vfrolov
* Protected SendRaw() and WriteRaw() Protocol's methods
*
* Revision 1.6 2007/07/20 09:23:48 vfrolov
* Added virtual ~Protocol()
* Thanks to wurfholz
*
* Revision 1.5 2006/11/16 12:51:43 vfrolov
* Added ability to set COM port parameters
*
* Revision 1.4 2005/10/03 13:44:17 vfrolov
* Added Clean() method
*
* Revision 1.3 2005/06/10 15:55:10 vfrolov
* Implemented --terminal option
*
* Revision 1.2 2005/06/08 07:40:23 vfrolov
* Added missing DataStream::busy initialization
*
* Revision 1.1 2005/06/06 15:19:02 vfrolov
* Initial revision
*
*/
#ifndef _UTILS_H
#define _UTILS_H
///////////////////////////////////////////////////////////////
typedef vector< BYTE, allocator<BYTE> > BYTE_vector;
///////////////////////////////////////////////////////////////
class ChunkStream
{
public:
ChunkStream() : first(0), last(0) {}
int write(const void *pBuf, int count);
int read(void *pBuf, int count);
private:
char data[256];
int first;
int last;
ChunkStream *pNext;
friend class ChunkStreamQ;
};
///////////////////////////////////////////////////////////////
class ChunkStreamQ
{
public:
ChunkStreamQ() : pFirst(NULL), pLast(NULL) {}
void toQueue(ChunkStream *pChunk);
ChunkStream *fromQueue();
ChunkStream *first() { return pFirst; }
ChunkStream *last() { return pLast; }
private:
ChunkStream *pFirst;
ChunkStream *pLast;
};
///////////////////////////////////////////////////////////////
class DataStream
{
public:
DataStream(int _threshold = 0)
: busy(0), threshold(_threshold), eof(FALSE) {}
~DataStream() { DataStream::Clean(); }
int PutData(const void *pBuf, int count);
int GetData(void *pBuf, int count);
void PutEof() { eof = TRUE; }
BOOL isFull() const { return threshold && threshold < busy; }
void Clean();
private:
ChunkStreamQ bufQ;
int busy;
int threshold;
BOOL eof;
};
///////////////////////////////////////////////////////////////
class Protocol
{
public:
Protocol(int _thresholdSend = 0, int _thresholdWrite = 0)
: streamSendRead(_thresholdSend), streamWriteRecv(_thresholdWrite) {}
virtual ~Protocol() {}
virtual int Send(const void *pBuf, int count);
void SendEof() { streamSendRead.PutEof(); }
BOOL isSendFull() const { return streamSendRead.isFull(); }
int Read(void *pBuf, int count) { return streamSendRead.GetData(pBuf, count); }
virtual int Write(const void *pBuf, int count);
void WriteEof() { streamWriteRecv.PutEof(); }
BOOL isWriteFull() const { return streamWriteRecv.isFull(); }
int Recv(void *pBuf, int count) { return streamWriteRecv.GetData(pBuf, count); }
virtual void Clean();
protected:
int SendRaw(const void *pBuf, int count) { return streamSendRead.PutData(pBuf, count); }
int WriteRaw(const void *pBuf, int count) { return streamWriteRecv.PutData(pBuf, count); }
private:
DataStream streamSendRead;
DataStream streamWriteRecv;
};
///////////////////////////////////////////////////////////////
class ComParams
{
public:
ComParams();
void SetBaudRate(const char *pBaudRate) { baudRate = atol(pBaudRate); }
void SetByteSize(const char *pByteSize) { byteSize = atoi(pByteSize); }
BOOL SetParity(const char *pParity);
BOOL SetStopBits(const char *pStopBits);
void SetIgnoreDSR(BOOL val) { ignoreDSR = val; }
void SetConnectDTR(BOOL val) { connectDTR = val; }
static const char *ParityStr(int parity);
static const char *StopBitsStr(int stopBits);
static const char *BaudRateLst();
static const char *ByteSizeLst();
static const char *ParityLst();
static const char *StopBitsLst();
long BaudRate() const { return baudRate; }
int ByteSize() const { return byteSize; }
int Parity() const { return parity; }
int StopBits() const { return stopBits; }
BOOL IgnoreDSR() const { return ignoreDSR; }
BOOL ConnectDTR() const { return connectDTR; }
private:
long baudRate;
int byteSize;
int parity;
int stopBits;
BOOL ignoreDSR;
BOOL connectDTR;
};
///////////////////////////////////////////////////////////////
#endif // _UTILS_H