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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
#include "plugin_internal.h"
// Forward declarations
CWResult OSErrtoCWResult(OSErr err);
static Boolean ValidateContext(CWPluginContext context) {
return context
&& (context->shellSignature == CWFOURCHAR('C','W','I','E'))
&& (context->request != reqInitialize)
&& (context->request != reqTerminate)
&& (context->request != reqIdle);
}
static Boolean ValidateInitTermContext(CWPluginContext context) {
return context
&& (context->shellSignature == CWFOURCHAR('C','W','I','E'))
&& ((context->request == reqInitialize)
|| (context->request == reqTerminate)
|| (context->request == reqIdle));
}
static Boolean IsVCSContext(CWPluginContext context) {
return context && (context->pluginType == CWDROPINVCSTYPE);
}
CW_CALLBACK CWGetPluginRequest(CWPluginContext context, SInt32 *request) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (request == NULL)
return cwErrInvalidParameter;
*request = context->request;
return cwNoErr;
}
CW_CALLBACK CWGetAPIVersion(CWPluginContext context, SInt32 *version) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (version == NULL)
return cwErrInvalidParameter;
*version = context->apiVersion;
return cwNoErr;
}
CW_CALLBACK CWGetIDEInfo(CWPluginContext context, CWIDEInfo *info) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (info == NULL)
return cwErrInvalidParameter;
*info = *context->shellInfo;
return cwNoErr;
}
CW_CALLBACK CWGetCallbackOSError(CWPluginContext context, CWOSResult *error) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (error == NULL)
return cwErrInvalidParameter;
*error = context->callbackOSError;
return cwNoErr;
}
CW_CALLBACK CWSetPluginOSError(CWPluginContext context, CWOSResult error) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
context->pluginOSError = error;
return cwNoErr;
}
CW_CALLBACK CWGetProjectFile(CWPluginContext context, CWFileSpec *projectSpec) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (projectSpec == NULL)
return cwErrInvalidParameter;
*projectSpec = context->projectFile;
return cwNoErr;
}
CW_CALLBACK CWGetTargetDataDirectory(CWPluginContext context, CWFileSpec *targetDataDirectorySpec) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (targetDataDirectorySpec == NULL)
return cwErrInvalidParameter;
if (context->targetDataDirectorySpec == NULL)
return cwErrInvalidCallback;
*targetDataDirectorySpec = *context->targetDataDirectorySpec;
return cwNoErr;
}
CW_CALLBACK CWGetTargetName(CWPluginContext context, char *name, short maxLength) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (context->apiVersion >= 8)
return context->callbacks->cbGetTargetName(context, name, maxLength);
else
return cwErrRequestFailed;
}
CW_CALLBACK CWGetProjectFileCount(CWPluginContext context, SInt32 *count) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (count == NULL)
return cwErrInvalidParameter;
*count = context->numFiles;
return cwNoErr;
}
CW_CALLBACK CWGetOutputFileDirectory(CWPluginContext context, CWFileSpec *outputFileDirectory) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (outputFileDirectory == NULL)
return cwErrInvalidParameter;
*outputFileDirectory = context->outputFileDirectory;
return cwNoErr;
}
CW_CALLBACK CWGetOverlay1GroupsCount(CWPluginContext context, SInt32 *count) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (count == NULL)
return cwErrInvalidParameter;
*count = context->numOverlayGroups;
return cwNoErr;
}
CW_CALLBACK CWGetFileInfo(CWPluginContext context, SInt32 whichfile, Boolean checkFileLocation, CWProjectFileInfo *fileinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (fileinfo == NULL)
return cwErrInvalidParameter;
return context->callbacks->cbGetFileInfo(context, whichfile, checkFileLocation, fileinfo);
}
CW_CALLBACK CWFindAndLoadFile(CWPluginContext context, const char *filename, CWFileInfo *fileinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (filename == NULL)
return cwErrInvalidParameter;
if (fileinfo == NULL)
return cwErrInvalidParameter;
return context->callbacks->cbFindAndLoadFile(context, filename, fileinfo);
}
static CWResult EnsureCachedAccessPaths(CWPluginContext context) {
if (!context->accessPathList) {
CWResult res = context->callbacks->cbCacheAccessPathList(context);
if (res)
return res;
if (!context->accessPathList)
return cwErrRequestFailed;
}
return cwNoErr;
}
CW_CALLBACK CWGetAccessPathListInfo(CWPluginContext context, CWAccessPathListInfo *pathListInfo) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (pathListInfo == NULL)
return cwErrInvalidParameter;
if (context->apiVersion < 10)
return cwErrInvalidCallback;
CWResult res = EnsureCachedAccessPaths(context);
if (res)
return res;
pathListInfo->systemPathCount = context->accessPathList->systemPathCount;
pathListInfo->userPathCount = context->accessPathList->userPathCount;
pathListInfo->alwaysSearchUserPaths = context->accessPathList->alwaysSearchUserPaths;
pathListInfo->convertPaths = context->accessPathList->convertPaths;
return cwNoErr;
}
CW_CALLBACK CWGetAccessPathInfo(CWPluginContext context, CWAccessPathType pathType, SInt32 whichPath, CWAccessPathInfo *pathInfo) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (pathInfo == NULL)
return cwErrInvalidParameter;
if (context->apiVersion < 10)
return cwErrInvalidCallback;
CWResult res = EnsureCachedAccessPaths(context);
if (res)
return res;
IDEAccessPath *paths;
SInt32 count;
switch (pathType) {
case cwSystemPath:
paths = context->accessPathList->systemPaths;
count = context->accessPathList->systemPathCount;
break;
case cwUserPath:
paths = context->accessPathList->userPaths;
count = context->accessPathList->userPathCount;
break;
default:
return cwErrInvalidParameter;
}
if (whichPath < 0 || whichPath >= count)
return cwErrInvalidParameter;
IDEAccessPath *path = &paths[whichPath];
pathInfo->pathSpec = path->pathSpec;
pathInfo->recursive = path->recursive;
pathInfo->subdirectoryCount = path->subdirectoryCount;
return cwNoErr;
}
CW_CALLBACK CWGetAccessPathSubdirectory(CWPluginContext context, CWAccessPathType pathType, SInt32 whichPath,
SInt32 whichSubdirectory, CWFileSpec *subdirectory) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (subdirectory == NULL)
return cwErrInvalidParameter;
if (context->apiVersion < 10)
return cwErrInvalidCallback;
CWResult res = EnsureCachedAccessPaths(context);
if (res)
return res;
IDEAccessPath *paths;
SInt32 count;
switch (pathType) {
case cwSystemPath:
paths = context->accessPathList->systemPaths;
count = context->accessPathList->systemPathCount;
break;
case cwUserPath:
paths = context->accessPathList->userPaths;
count = context->accessPathList->userPathCount;
break;
default:
return cwErrInvalidParameter;
}
if (whichPath < 0 || whichPath >= count)
return cwErrInvalidParameter;
IDEAccessPath *path = &paths[whichPath];
if (whichSubdirectory < 0 || whichSubdirectory >= path->subdirectoryCount)
return cwErrInvalidParameter;
*subdirectory = path->subdirectories[whichSubdirectory];
return cwNoErr;
}
CW_CALLBACK CWGetFileText(CWPluginContext context, const CWFileSpec *filespec, const char **text, SInt32 *textLength,
short *filedatatype) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (!filespec)
return cwErrInvalidParameter;
if (!text)
return cwErrInvalidParameter;
if (!textLength)
return cwErrInvalidParameter;
if (!filedatatype)
return cwErrInvalidParameter;
return context->callbacks->cbGetFileText(context, filespec, text, textLength, filedatatype);
}
CW_CALLBACK CWReleaseFileText(CWPluginContext context, const char *text) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (text)
return context->callbacks->cbReleaseFileText(context, text);
else
return cwNoErr;
}
CW_CALLBACK CWGetSegmentInfo(CWPluginContext context, SInt32 whichsegment, CWProjectSegmentInfo *segmentinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!segmentinfo)
return cwErrInvalidParameter;
return context->callbacks->cbGetSegmentInfo(context, whichsegment, segmentinfo);
}
CW_CALLBACK CWGetOverlay1GroupInfo(CWPluginContext context, SInt32 whichgroup, CWOverlay1GroupInfo *groupinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!groupinfo)
return cwErrInvalidParameter;
return context->callbacks->cbGetOverlay1GroupInfo(context, whichgroup, groupinfo);
}
CW_CALLBACK
CWGetOverlay1Info(CWPluginContext context, SInt32 whichgroup, SInt32 whichoverlay, CWOverlay1Info *overlayinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!overlayinfo)
return cwErrInvalidParameter;
return context->callbacks->cbGetOverlay1Info(context, whichgroup, whichoverlay, overlayinfo);
}
CW_CALLBACK CWGetOverlay1FileInfo(CWPluginContext context, SInt32 whichgroup, SInt32 whichoverlay, SInt32 whichoverlayfile,
CWOverlay1FileInfo *fileinfo) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!fileinfo)
return cwErrInvalidParameter;
return context->callbacks->cbGetOverlay1FileInfo(context, whichgroup, whichoverlay, whichoverlayfile, fileinfo);
}
CW_CALLBACK CWReportMessage(CWPluginContext context, const CWMessageRef *msgRef, const char *line1, const char *line2,
short errorlevel, SInt32 errorNumber) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbReportMessage(context, msgRef, line1, line2, errorlevel, errorNumber);
}
CW_CALLBACK CWAlert(CWPluginContext context, const char *msg1, const char *msg2, const char *msg3, const char *msg4) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbAlert(context, msg1, msg2, msg3, msg4);
}
CW_CALLBACK CWShowStatus(CWPluginContext context, const char *line1, const char *line2) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbShowStatus(context, line1, line2);
}
CW_CALLBACK CWUserBreak(CWPluginContext context) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbUserBreak(context);
}
CW_CALLBACK CWGetNamedPreferences(CWPluginContext context, const char *prefsname, CWMemHandle *prefsdata) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (!prefsname)
return cwErrInvalidParameter;
if (!prefsdata)
return cwErrInvalidParameter;
return context->callbacks->cbGetNamedPreferences(context, prefsname, prefsdata);
}
CW_CALLBACK CWStorePluginData(CWPluginContext context, SInt32 whichfile, CWDataType type, CWMemHandle prefsdata) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbStorePluginData(context, whichfile, type, prefsdata);
}
CW_CALLBACK CWGetPluginData(CWPluginContext context, SInt32 whichfile, CWDataType type, CWMemHandle *prefsdata) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbGetPluginData(context, whichfile, type, prefsdata);
}
CW_CALLBACK CWSetModDate(CWPluginContext context, const CWFileSpec *filespec, CWFileTime *moddate, Boolean isGenerated) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!filespec)
return cwErrInvalidParameter;
return context->callbacks->cbSetModDate(context, filespec, moddate, isGenerated);
}
CW_CALLBACK CWAddProjectEntry(CWPluginContext context, const CWFileSpec *fileSpec, Boolean isGenerated,
const CWNewProjectEntryInfo *projectEntryInfo, SInt32 *whichfile) {
if (IsVCSContext(context) || !ValidateContext(context))
return cwErrInvalidParameter;
if (!fileSpec)
return cwErrInvalidParameter;
if (context->apiVersion < 8)
return cwErrRequestFailed;
return context->callbacks->cbAddProjectEntry(context, fileSpec, isGenerated, projectEntryInfo, whichfile);
}
CW_CALLBACK CWCreateNewTextDocument(CWPluginContext context, const CWNewTextDocumentInfo *docinfo) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (!docinfo)
return cwErrInvalidParameter;
return context->callbacks->cbCreateNewTextDocument(context, docinfo);
}
CW_CALLBACK CWAllocateMemory(CWPluginContext context, SInt32 size, Boolean isPermanent, void **ptr) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (!ptr)
return cwErrInvalidParameter;
return context->callbacks->cbAllocateMemory(context, size, isPermanent, ptr);
}
CW_CALLBACK CWFreeMemory(CWPluginContext context, void *ptr, Boolean isPermanent) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (!ptr)
return cwNoErr;
return context->callbacks->cbFreeMemory(context, ptr, isPermanent);
}
CW_CALLBACK CWAllocMemHandle(CWPluginContext context, SInt32 size, Boolean useTempMemory, CWMemHandle *handle) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (!handle)
return cwErrInvalidParameter;
return context->callbacks->cbAllocMemHandle(context, size, useTempMemory, handle);
}
CW_CALLBACK CWFreeMemHandle(CWPluginContext context, CWMemHandle handle) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbFreeMemHandle(context, handle);
}
CW_CALLBACK CWGetMemHandleSize(CWPluginContext context, CWMemHandle handle, SInt32 *size) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (!size)
return cwErrInvalidParameter;
return context->callbacks->cbGetMemHandleSize(context, handle, size);
}
CW_CALLBACK CWResizeMemHandle(CWPluginContext context, CWMemHandle handle, SInt32 newSize) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbResizeMemHandle(context, handle, newSize);
}
CW_CALLBACK CWLockMemHandle(CWPluginContext context, CWMemHandle handle, Boolean moveHi, void **ptr) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
if (!ptr)
return cwErrInvalidParameter;
return context->callbacks->cbLockMemHandle(context, handle, moveHi, ptr);
}
CW_CALLBACK CWUnlockMemHandle(CWPluginContext context, CWMemHandle handle) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbUnlockMemHandle(context, handle);
}
CW_CALLBACK CWDonePluginRequest(CWPluginContext, CWResult resultCode) {
return resultCode;
}
CW_CALLBACK CWPreDialog(CWPluginContext context) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbPreDialog(context);
}
CW_CALLBACK CWPostDialog(CWPluginContext context) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbPostDialog(context);
}
CW_CALLBACK CWPreFileAction(CWPluginContext context, const CWFileSpec *theFile) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbPreFileAction(context, theFile);
}
CW_CALLBACK CWPostFileAction(CWPluginContext context, const CWFileSpec *theFile) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbPostFileAction(context, theFile);
}
CW_CALLBACK CWCheckoutLicense(CWPluginContext context, const char *a, const char *b, SInt32 c, void *d, SInt32 *cookiePtr) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbCheckoutLicense(context, a, b, c, d, cookiePtr);
}
CW_CALLBACK CWCheckinLicense(CWPluginContext context, SInt32 cookie) {
if (!ValidateContext(context) && !ValidateInitTermContext(context))
return cwErrInvalidParameter;
return context->callbacks->cbCheckinLicense(context, cookie);
}
CW_CALLBACK CWResolveRelativePath(CWPluginContext context, const CWRelativePath *relativePath, CWFileSpec *fileSpec, Boolean create) {
if (!ValidateContext(context))
return cwErrInvalidParameter;
if (relativePath == NULL)
return cwErrInvalidParameter;
if (fileSpec == NULL)
return cwErrInvalidParameter;
return context->callbacks->cbResolveRelativePath(context, relativePath, fileSpec, create);
}
CW_CALLBACK CWMacOSErrToCWResult(CWPluginContext context, OSErr err) {
return OSErrtoCWResult(err);
}
CWResult OSErrtoCWResult(OSErr err) {
switch (err) {
case noErr: return cwNoErr;
case userCanceledErr: return cwErrUserCanceled;
case paramErr: return cwErrInvalidParameter;
case memFullErr: return cwErrOutOfMemory;
case fnfErr: return cwErrFileNotFound;
default: return cwErrRequestFailed;
}
}
|