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
|
/* -------------------------------------------------------------
dict.h (part of The KDE Dictionary Client)
Copyright (C) 2000-2001 Christian Gebauer <gebauer@kde.org>
(C) by Matthias Hölzer 1998
This file is distributed under the Artistic License.
See LICENSE for details.
-------------------------------------------------------------
JobData used for data transfer between Client and Interface
DictAsyncClient all network related stuff happens here in an asynchrous thread
DictInterface interface for DictAsyncClient, job management
-------------------------------------------------------------*/
#ifndef _DICT_H_
#define _DICT_H_
#include <pthread.h>
#include <tqptrlist.h>
#include <tqsocketnotifier.h>
class TQSocketNotifier;
struct in_addr;
//********* JobData ******************************************
class JobData
{
public:
enum QueryType { //type of transaction
TDefine=0,
TGetDefinitions,
TMatch,
TShowDatabases,
TShowDbInfo,
TShowStrategies,
TShowInfo,
TUpdate
};
enum ErrType { // error codes
ErrNoErr=0,
ErrCommunication, // display result!
ErrTimeout,
ErrBadHost,
ErrConnect, // display result!
ErrRefused,
ErrNotAvailable,
ErrSyntax,
ErrCommandNotImplemented,
ErrAccessDenied,
ErrAuthFailed,
ErrInvalidDbStrat,
ErrNoDatabases,
ErrNoStrategies,
ErrServerError, // display result!
ErrMsgTooLong
};
JobData(QueryType Ntype,bool NnewServer,TQString const& Nserver,int Nport,
int NidleHold, int Ntimeout, int NpipeSize, TQString const& Nencoding, bool NAuthEnabled,
TQString const& Nuser, TQString const& Nsecret, unsigned int NheadLayout);
QueryType type;
ErrType error;
bool canceled;
int numFetched;
TQString result;
TQStringList matches;
TQString query;
TQStringList defines;
bool newServer;
TQString server;
int port, timeout, pipeSize, idleHold;
TQString encoding;
bool authEnabled;
TQString user, secret;
TQStringList databases,strategies;
TQString strategy;
unsigned int headLayout;
};
//********* DictAsyncClient ******************************************
class DictAsyncClient
{
public:
DictAsyncClient(int NfdPipeIn, int NfdPipeOut);
~DictAsyncClient();
static void* startThread(void* pseudoThis);
void insertJob(JobData *newJob);
void removeJob();
private:
void waitForWork(); // main loop
void define();
bool getDefinitions();
bool match();
void showDatabases();
void showDbInfo();
void showStrategies();
void showInfo();
void update();
void openConnection(); // connect, handshake and authorization
void closeSocket();
void doQuit(); // send "quit" without timeout, without checks, close connection
bool waitForRead(); // used by getNextIntoBuffer()
bool waitForWrite(); // used by sendBuffer() & connect()
void clearPipe(); // remove start/stop signal
bool sendBuffer(); // send cmdBuffer to the server
bool getNextLine(); // set thisLine to next complete line of input
bool nextResponseOk(int code); // reads next line and checks the response code
bool getNextResponse(int &code); // reads next line and returns the response code
void handleErrors();
void resultAppend(const char* str);
void resultAppend(TQString str);
JobData *job;
char *input;
TQCString cmdBuffer;
const unsigned int inputSize;
char *thisLine, *nextLine, *inputEnd;
int fdPipeIn,fdPipeOut; //IPC-Pipes to/from async thread
int tcpSocket,timeout,idleHold;
TQTextCodec *codec;
};
//********* DictInterface *************************************************
class DictInterface : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
DictInterface();
~DictInterface();
public slots:
void serverChanged(); // inform the client when server settings get changed
void stop(); // cancel all pending jobs
void define(const TQString &query);
void getDefinitions(TQStringList query);
void match(const TQString &query);
void showDbInfo(const TQString &db); // fetch detailed db info
void showDatabases(); // fetch misc. info...
void showStrategies();
void showInfo();
void updateServer(); // get info about databases & strategies the server knows
signals:
void infoReady(); // updateServer done
void resultReady(const TQString &result, const TQString &query); // define done
void matchReady(const TQStringList &result); // match done
void started(const TQString &message); // Client is active now, activate indicator
void stopped(const TQString &message); // Client is now halted, deactivate indicator
private slots:
void clientDone();
private:
JobData* generateQuery(JobData::QueryType type, TQString query);
void insertJob(JobData* job); // insert in job list, if nesscary cancel/remove previous jobs
void startClient(); // send start signal
void cleanPipes(); // empty the pipes, so that notifier stops firing
TQSocketNotifier *notifier;
int fdPipeIn[2],fdPipeOut[2]; //IPC-Pipes to/from async thread
pthread_t threadID;
DictAsyncClient *client;
TQPtrList<JobData> jobList;
bool newServer,clientDoneInProgress;
};
extern DictInterface *interface;
#endif
|