-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathPythonClientAPI.h
340 lines (279 loc) · 11.5 KB
/
PythonClientAPI.h
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
/*
* PythonClientAPI. Wrapper around P4API.
*
* Copyright (c) 2007-2015, Perforce Software, Inc. All rights reserved.
* Portions Copyright (c) 1999, Mike Meyer. All rights reserved.
* Portions Copyright (c) 2004-2007, Robert Cowham. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $Id: //depot/main/p4-python/PythonClientAPI.h#45 $
*
* Build instructions:
* Use Distutils - see accompanying setup.py
*
* python setup.py install
*
*/
#ifndef PYTHON_CLIENT_API_H
#define PYTHON_CLIENT_API_H
#include "PythonKeepAlive.h"
class Enviro;
class PythonClientAPI
{
public:
PythonClientAPI();
~PythonClientAPI();
public:
typedef int (PythonClientAPI::*intsetter)(int);
typedef int (PythonClientAPI::*strsetter)(const char *);
typedef int (PythonClientAPI::*intgetter)();
typedef const char * (PythonClientAPI::*strgetter)();
typedef int (PythonClientAPI::*objsetter)(PyObject *);
typedef PyObject * (PythonClientAPI::*objgetter)();
private:
struct intattribute_t {
const char * attribute;
intsetter setter;
intgetter getter;
};
struct strattribute_t {
const char * attribute;
strsetter setter;
strgetter getter;
};
struct objattribute_t {
const char * attribute;
objsetter setter;
objgetter getter;
};
static intattribute_t intattributes[];
static strattribute_t strattributes[];
static objattribute_t objattributes[];
public:
// Tagged mode - can be enabled/disabled on a per-command basis
int SetTagged( int enable );
int GetTagged();
// Set track mode - track usage of this command on the server
int SetTrack( int enable );
int GetTrack();
// Set streams mode
int SetStreams( int enable );
int GetStreams();
// Set graph mode
int SetGraph( int enable );
int GetGraph();
// Set API level for backwards compatibility
int SetApiLevel( int level );
int SetMaxResults( int v ) { maxResults = v; return 0; }
int SetMaxScanRows( int v ) { maxScanRows = v; return 0; }
int SetMaxLockTime( int v ) { maxLockTime = v; return 0; }
int SetMaxOpenFiles( int v ) { maxOpenFiles = v; return 0; }
int SetMaxMemory( int v ) { maxMemory = v; return 0; }
int SetCaseFolding( int v ) { StrPtr::SetCaseFolding((StrPtr::CaseUse) v); return 0;}
//
// Debugging support. Debug levels are:
//
// 1: Debugs commands being executed
// 2: Debug UI method calls
// 3: Show garbage collection ???
//
int SetDebug( int d );
// Returns 0 on success, otherwise -1 and might raise exception
int SetCharset( const char *c );
int SetClient( const char *c ) { client.SetClient( c ); return 0; }
int SetCwd( const char *c );
PyObject * SetEnv( const char *var, const char *val );
int SetHost( const char *h ) { client.SetHost( h ); return 0; }
int SetIgnoreFile( const char *h ) { client.SetIgnoreFile( h ); return 0; }
int SetLanguage( const char *l ) { client.SetLanguage( l ); return 0; }
int SetPassword( const char *p ) { client.SetPassword( p ); return 0; }
int SetPort( const char *p );
int SetProg( const char *p ) { prog = p; return 0; }
int SetTicketFile( const char *p );
int SetEncoding( const char *e );
int SetUser( const char *u ) { client.SetUser( u ); return 0; }
int SetVersion( const char *v ) { version = v; return 0; }
int SetEnviroFile( const char *v );
const char * GetCharset() { return client.GetCharset().Text(); }
const char * GetClient() { return client.GetClient().Text();}
const char * GetConfig() { return client.GetConfig().Text();}
const char * GetEnviroFile();
const char * GetEncoding() { return specMgr.GetEncoding(); }
const char * GetCwd() { return client.GetCwd().Text(); }
const char * GetEnv( const char *var );
const char * GetHost() { return client.GetHost().Text(); }
const char * GetIgnoreFile() { return client.GetIgnoreFile().Text(); }
const char * GetLanguage() { return client.GetLanguage().Text(); }
const char * GetPassword() { return client.GetPassword().Text(); }
const char * GetPort() { return client.GetPort().Text(); }
const char * GetProg() { return prog.Text(); }
const char * GetTicketFile() { return ticketFile.Text(); }
const char * GetUser() { return client.GetUser().Text(); }
const char * GetVersion() { return version.Text(); }
const char * GetPatchlevel() { return ID_PATCH; }
const char * GetOs() { return ID_OS; }
int GetMaxResults() { return maxResults; }
int GetMaxScanRows() { return maxScanRows; }
int GetMaxLockTime() { return maxLockTime; }
int GetMaxOpenFiles() { return maxOpenFiles; }
int GetMaxMemory() { return maxMemory; }
int GetDebug() { return debug.getDebug(); }
int GetApiLevel() { return apiLevel; }
int GetCaseFolding() { return (int) StrPtr::CaseUsage(); }
// Session management
PyObject * Connect(); // P4Exception on error
PyObject * Connected(); // Return true if connected and not dropped.
PyObject * Disconnect();
PyObject * GetServerLevel(); // P4Exception if asked when disconnected
PyObject * GetServerCaseInsensitive(); // P4Exception if asked when disconnected
PyObject * GetServerUnicode(); // P4Exception if asked when disconnected
PyObject * DisableTmpCleanup();
PyObject * IsIgnored(const char *path);
// Executing commands.
PyObject * Run( const char *cmd, int argc, char * const *argv );
int SetInput( PyObject * input );
PyObject * GetInput();
int SetResolver( PyObject * resolver );
PyObject * GetResolver();
// OutputHandler interface
int SetHandler( PyObject * handler );
PyObject * GetHandler();
// Progress interface
int SetProgress( PyObject * progress );
PyObject * GetProgress();
// Result handling
PyObject * GetErrors() { return ui.GetResults().GetErrors(); }
PyObject * GetWarnings() { return ui.GetResults().GetWarnings();}
PyObject * GetMessages() { return ui.GetResults().GetMessages();}
PyObject * GetTrackOutput() { return ui.GetResults().GetTrack();}
// Config files
PyObject * GetConfigFiles();
// Logger interface
int SetLogger( PyObject * logger);
PyObject * GetLogger();
#if PY_MAJOR_VERSION >= 3
// Conversion from Unicode into a Perforce Charset
PyObject * Convert(const char *charset, PyObject * content);
#endif
// __members__ handling
PyObject * GetMembers();
// Spec parsing
PyObject * ParseSpec( const char * type, const char *form );
PyObject * FormatSpec( const char *type, PyObject * dict );
PyObject * DefineSpec( const char *type, const char *spec);
PyObject * SpecFields( const char * type );
// Protocol
PyObject * SetProtocol( const char * var, const char *val );
PyObject * GetProtocol( const char * var );
// Exception levels:
//
// 0 - No exceptions raised
// 1 - Exceptions raised for errors
// 2 - Exceptions raised for errors and warnings
//
int SetExceptionLevel( int i ) { exceptionLevel = i; return 0; }
int GetExceptionLevel() { return exceptionLevel; }
void Except( const char *func, const char *msg );
void Except( const char *func, Error *e );
void Except( const char *func, const char *msg, const char *cmd );
// SetBreak
void SetBreak( PythonKeepAlive* cb );
public:
// setter/getter methods and attributes
static intsetter GetIntSetter(const char * forAttr);
static intgetter GetIntGetter(const char * forAttr);
static strsetter GetStrSetter(const char * forAttr);
static strgetter GetStrGetter(const char * forAttr);
static objsetter GetObjSetter(const char * forAttr);
static objgetter GetObjGetter(const char * forAttr);
// Ownership of returned list is passed to caller!
// Free it, keep it or suffer memory leak!
static const char ** GetAttributes();
private:
void RunCmd(const char *cmd, ClientUser *ui, int argc, char * const *argv);
PyObject * ConnectOrReconnect();
static intattribute_t * GetInt(const char * forAttr);
static strattribute_t * GetStr(const char * forAttr);
static objattribute_t * GetObj(const char * forAttr);
StrBuf SetProgString(StrBuf& progStr);
private:
enum {
S_TAGGED = 0x0001,
S_CONNECTED = 0x0002,
S_CMDRUN = 0x0004,
S_UNICODE = 0x0008,
S_CASEFOLDING = 0x0010,
S_TRACK = 0x0020,
S_STREAMS = 0x0040,
S_GRAPH = 0x0080,
S_INITIAL_STATE = 0x00C1, // Streams, Graph, and Tagged enabled by default
S_RESET_MASK = 0x001E,
};
void InitFlags() { flags = S_INITIAL_STATE; }
void ResetFlags() { flags &= ~S_RESET_MASK; }
void SetTag() { flags |= S_TAGGED; }
void ClearTag() { flags &= ~S_TAGGED; }
int IsTag() { return flags & S_TAGGED; }
void SetConnected() { flags |= S_CONNECTED; }
void ClearConnected() { flags &= ~S_CONNECTED; }
int IsConnected() { return flags & S_CONNECTED; }
void SetCmdRun() { flags |= S_CMDRUN; }
void ClearCmdRun() { flags &= ~S_CMDRUN; }
int IsCmdRun() { return flags & S_CMDRUN; }
void SetUnicode() { flags |= S_UNICODE; }
void ClearUnicode() { flags &= ~S_UNICODE; }
int IsUnicode() { return flags & S_UNICODE; }
void SetCaseFold() { flags |= S_CASEFOLDING; }
void ClearCaseFold() { flags &= ~S_CASEFOLDING; }
int IsCaseFold() { return flags & S_CASEFOLDING; }
void SetTrackMode() { flags |= S_TRACK; }
void ClearTrackMode() { flags &= ~S_TRACK; }
int IsTrackMode() { return flags & S_TRACK; }
void SetStreamsMode() { flags |= S_STREAMS; }
void ClearStreamsMode() { flags &= ~S_STREAMS; }
int IsStreamsMode() { return flags & S_STREAMS; }
void SetGraphMode() { flags |= S_GRAPH; }
void ClearGraphMode() { flags &= ~S_GRAPH; }
int IsGraphMode() { return flags & S_GRAPH; }
private:
ClientApi client; // Perforce API Class
PythonClientUser ui;
Enviro * enviro;
PythonDebug debug;
p4py::SpecMgr specMgr;
StrBufDict specDict;
StrBuf prog;
StrBuf version;
StrBuf ticketFile;
int depth;
int apiLevel;
int exceptionLevel;
int server2;
int flags;
int maxResults;
int maxScanRows;
int maxLockTime;
int maxOpenFiles;
int maxMemory;
};
#endif