FARGOS/VISTA Object Management Environment Core  ..
FARGOS/VISTA Object Management Environment Core Table of Contents
OMEcore.h
Go to the documentation of this file.
1 #ifndef _OME_CORE_H
2 #define _OME_CORE_H "$Id: OMEcore.h 348 2020-05-21 04:14:03Z geoff $"
4 
10 #ifndef OME_CORE_CALL
11 //#define OME_CORE_CALL OME_FAST_CALL
12 #define OME_CORE_CALL /* */
13 #endif
14 OME_CORE_CALL int allow(class OMEthread *thread, OMEtype &result,
15  const OMEtype &methodName);
16 OME_CORE_CALL int alwaysAllow(class OMEthread *thread, OMEtype &result,
17  const OMEtype &methodName);
18 OME_CORE_CALL int highBit(class OMEthread *thread, OMEtype &result,
19  const OMEtype &arg);
20 OME_CORE_CALL int lowBit(class OMEthread *thread, OMEtype &result,
21  const OMEtype &arg);
22 OME_CORE_CALL int mergeBits(class OMEthread *thread, OMEtype &result,
23  const OMEtype &src, const OMEtype &srcOffset, const OMEtype &srcLen,
24  const OMEtype &orig, const OMEtype &destOffset);
25 OME_CORE_CALL int concatBits(class OMEthread *thread, OMEtype &result,
26  const OMEtype &bitData, const OMEtype &bitsToAdd,
27  const OMEtype &currentState);
28 OME_CORE_CALL int SHA1hash(class OMEthread *thread, OMEtype &result,
29  const OMEtype &message);
30 OME_CORE_CALL int MD5hash(class OMEthread *thread, OMEtype &result,
31  const OMEtype &message);
32 OME_CORE_CALL int makePublicKeyPair(class OMEthread *thread, OMEtype &result,
33  const OMEtype &secret);
34 OME_CORE_CALL int makeSessionKey(class OMEthread *thread, OMEtype &result,
35  const OMEtype &publicKey, const OMEtype &randomData);
36 OME_CORE_CALL int decryptSessionKey(class OMEthread *thread, OMEtype &result,
37  const OMEtype &privateKey, const OMEtype &encryptedKey);
38 OME_CORE_CALL int initializeCipher(class OMEthread *thread, OMEtype &result,
39  const OMEtype &secret, const OMEtype &dir, const OMEtype &initVec);
40 OME_CORE_CALL int freeCipher(class OMEthread *thread, OMEtype &result,
41  const OMEtype &arg);
42 OME_CORE_CALL int encryptMessage(class OMEthread *thread, OMEtype &result,
43  const OMEtype &cipherData, const OMEtype &message);
44 OME_CORE_CALL int decryptMessage(class OMEthread *thread, OMEtype &result,
45  const OMEtype &cipherData, const OMEtype &message);
46 OME_CORE_CALL int getRandomInteger(class OMEthread *thread, OMEtype &result,
47  const OMEtype &upperBound);
48 OME_CORE_CALL int makeRandomKey(class OMEthread *thread, OMEtype &result,
49  const OMEtype &desiredBits);
50 OME_CORE_CALL int getLocalizedData(class OMEthread *thread, OMEtype &result,
51  const OMEtype &fileName, const OMEtype &attrName);
52 OME_CORE_CALL int getHostKey(class OMEthread *thread, OMEtype &result,
53  const OMEtype &secret, const OMEtype &logicalDomain);
54 OME_CORE_CALL int getRemoteHostKey(class OMEthread *thread, OMEtype &result,
55  const OMEtype &rmtHostName, const OMEtype &logicalDomain);
56 OME_CORE_CALL int display(class OMEthread *thread, OMEtype &result,
57  const OMEtype &args);
58 OME_CORE_CALL int debugDisplay(class OMEthread *thread, OMEtype &result,
59  const OMEtype &args);
60 OME_CORE_CALL int displayAsHex(class OMEthread *thread, OMEtype &result,
61  const OMEtype &args);
62 OME_CORE_CALL int debugDisplayAsHex(class OMEthread *thread, OMEtype &result,
63  const OMEtype &args);
64 OME_CORE_CALL int makeAsString(class OMEthread *thread, OMEtype &result,
65  const OMEtype &args);
66 OME_CORE_CALL int makeAsHexString(class OMEthread *thread, OMEtype &result,
67  const OMEtype &args);
68 OME_CORE_CALL int hexToBinary(class OMEthread *thread, OMEtype &result,
69  const OMEtype &args);
70 OME_CORE_CALL int makeUnique(class OMEthread *thread, OMEtype &result,
71  const OMEtype &args);
72 OME_CORE_CALL int displayVisible(class OMEthread *thread, OMEtype &result,
73  const OMEtype &args);
74 OME_CORE_CALL int calculateStringLength(class OMEthread *thread, OMEtype &result,
75  const OMEtype &args);
76 OME_CORE_CALL int setDebugMask(class OMEthread *thread, OMEtype &result,
77  const OMEtype &mask);
78 OME_CORE_CALL int listEncodingVersions(class OMEthread *thread, OMEtype &result);
79 OME_CORE_CALL int encodeData(class OMEthread *thread, OMEtype &result,
80  const OMEtype &data, const OMEtype &version);
81 OME_CORE_CALL int decodeData(class OMEthread *thread, OMEtype &result,
82  const OMEtype &data);
83 OME_CORE_CALL int decodeFirstElement(class OMEthread *thread, OMEtype &result,
84  const OMEtype &data);
85 OME_CORE_CALL int compressString(class OMEthread *thread, OMEtype &result,
86  const OMEtype &data);
87 OME_CORE_CALL int uncompressString(class OMEthread *thread, OMEtype &result,
88  const OMEtype &data);
89 OME_CORE_CALL int gzipString(class OMEthread *thread, OMEtype &result,
90  const OMEtype &data);
91 OME_CORE_CALL int gunzipString(class OMEthread *thread, OMEtype &result,
92  const OMEtype &data);
93 OME_CORE_CALL int parseHTTPuriData(class OMEthread *thread, OMEtype &result,
94  const OMEtype &data, const OMEtype &defaultScheme,
95  const OMEtype &defaultAuthority, const OMEtype &defaultContext);
96 OME_CORE_CALL int parsePathComponents(class OMEthread *thread, OMEtype &result,
97  const OMEtype &path);
98 OME_CORE_CALL int relativePathToAbsolute(class OMEthread *thread, OMEtype &result,
99  const OMEtype &currentDir, const OMEtype &path);
100 OME_CORE_CALL int pathComponentsToString(class OMEthread *thread, OMEtype &result,
101  const OMEtype &elements, const OMEtype &startIndex,
102  const OMEtype &stopIndex);
103 OME_CORE_CALL int parseStringIntoSSIelements(class OMEthread *thread, OMEtype &result,
104  const OMEtype &data);
105 OME_CORE_CALL int expandSSIvars(class OMEthread *thread, OMEtype &result,
106  const OMEtype &cmdElements, const OMEtype &env);
107 OME_CORE_CALL int stripHTML(class OMEthread *thread, OMEtype &result,
108  const OMEtype &data);
109 OME_CORE_CALL int sleepForSeconds(class OMEthread *thread, OMEtype &result,
110  const OMEtype &t);
111 OME_CORE_CALL int openURL(class OMEthread *thread, OMEtype &result,
112  const OMEtype &url);
113 OME_CORE_CALL int getIOhandle(class OMEthread *thread, OMEtype &result,
114  const OMEtype &ioID);
115 OME_CORE_CALL int closeIO(class OMEthread *thread, OMEtype &result,
116  const OMEtype &ioID, const OMEtype &flags, const OMEtype &sidesMask);
117 OME_CORE_CALL int readBytes(class OMEthread *thread, OMEtype &result,
118  const OMEtype &ioID, const OMEtype &bytesToRead,
119  const OMEtype &bufferSize);
120 OME_CORE_CALL int seekToOffset(class OMEthread *thread, OMEtype &result,
121  const OMEtype &ioID, const OMEtype &offset);
122 OME_CORE_CALL int receiveDatagram(class OMEthread *thread, OMEtype &result,
123  const OMEtype &ioID, const OMEtype &bufferSize);
124 OME_CORE_CALL int writeBytes(class OMEthread *thread, OMEtype &result,
125  const OMEtype &ioID, const OMEtype &dataToSend);
126 OME_CORE_CALL int sendDatagram(class OMEthread *thread, OMEtype &result,
127  const OMEtype &ioID, const OMEtype &dataToSend,
128  const OMEtype &dest);
129 OME_CORE_CALL int writeVectorOfBytes(class OMEthread *thread, OMEtype &result,
130  const OMEtype &ioID, const OMEtype &skipOffset,
131  const OMEtype &dataToSend);
132 OME_CORE_CALL int selectForRead(class OMEthread *thread, OMEtype &result,
133  const OMEtype &ioID, const OMEtype &permitPreempt);
134 OME_CORE_CALL int selectForWrite(class OMEthread *thread, OMEtype &result,
135  const OMEtype &ioID, const OMEtype &permitPreempt);
136 OME_CORE_CALL int acceptConnection(class OMEthread *thread, OMEtype &result,
137  const OMEtype &ioID);
138 OME_CORE_CALL int getLocalAddress(class OMEthread *thread, OMEtype &result,
139  const OMEtype &ioID);
140 OME_CORE_CALL int getPeerAddress(class OMEthread *thread, OMEtype &result,
141  const OMEtype &ioID);
142 OME_CORE_CALL int getErrorStatus(class OMEthread *thread, OMEtype &result,
143  const OMEtype &ioID);
144 OME_CORE_CALL int getFileInfo(class OMEthread *thread, OMEtype &result,
145  const OMEtype &ioID);
146 OME_CORE_CALL int unlinkFile(class OMEthread *thread, OMEtype &result,
147  const OMEtype &fileName);
148 OME_CORE_CALL int removeDirectory(class OMEthread *thread, OMEtype &result,
149  const OMEtype &fileName);
150 OME_CORE_CALL int renameFile(class OMEthread *thread, OMEtype &result,
151  const OMEtype &orgFileName, const OMEtype &newFileName);
152 OME_CORE_CALL int makeDirectory(class OMEthread *thread, OMEtype &result,
153  const OMEtype &dirName);
154 OME_CORE_CALL int listDirectory(class OMEthread *thread, OMEtype &result,
155  const OMEtype &dirName);
156 OME_CORE_CALL int getSystemInfo(class OMEthread *thread, OMEtype &result);
157 OME_CORE_CALL int getSystemInfoAttribute(class OMEthread *thread, OMEtype &result,
158  const OMEtype &attrName);
160  const OMEtype &timeArg, const OMEtype &asGMT);
162  const OMEtype &timeData);
163 OME_CORE_CALL int getLocalRelativeTime(class OMEthread *thread, OMEtype &result);
164 OME_CORE_CALL int getRelativeMilliseconds(class OMEthread *thread, OMEtype &result);
165 OME_CORE_CALL int rfc1123Date(class OMEthread *thread, OMEtype &result,
166  const OMEtype &argData);
167 OME_CORE_CALL int iso8601Date(class OMEthread *thread, OMEtype &result,
168  const OMEtype &argData);
169 OME_CORE_CALL int convertRFC1123date(class OMEthread *thread, OMEtype &result,
170  const OMEtype &timeString);
171 OME_CORE_CALL int timeDifference(class OMEthread *thread, OMEtype &result,
172  const OMEtype &time1, const OMEtype &time2);
173 OME_CORE_CALL int convertURIescapes(class OMEthread *thread, OMEtype &result,
174  const OMEtype &arg);
175 OME_CORE_CALL int safeURI(class OMEthread *thread, OMEtype &result,
176  const OMEtype &arg);
177 OME_CORE_CALL int parseHTTPformData(class OMEthread *thread, OMEtype &result,
178  const OMEtype &data, const OMEtype &desiredType);
179 OME_CORE_CALL int parseAttributeValuePairs(class OMEthread *thread, OMEtype &result,
180  const OMEtype &data, const OMEtype &desiredType,
181  const OMEtype &whiteSpace, const OMEtype &equalsSign);
182 OME_CORE_CALL int parseMIMEheaderLines(class OMEthread *thread, OMEtype &result,
183  const OMEtype &data);
184 OME_CORE_CALL int asciiToBase64(class OMEthread *thread, OMEtype &result,
185  const OMEtype &data, const OMEtype &breakIntoLines);
186 OME_CORE_CALL int base64ToASCII(class OMEthread *thread, OMEtype &result,
187  const OMEtype &data);
188 OME_CORE_CALL int parseMIMEblock(class OMEthread *thread, OMEtype &result,
189  const OMEtype &data);
190 OME_CORE_CALL int decodeMultiPart(class OMEthread *thread, OMEtype &result,
191  const OMEtype &mimeTypeName, const OMEtype &data);
192 OME_CORE_CALL int decodeMIMEdata(class OMEthread *thread, OMEtype &result,
193  const OMEtype &mimeTypeName, const OMEtype &data);
194 OME_CORE_CALL int OMEloadOIL2(class OMEthread *thread, OMEtype &result,
195  const OMEtype &data, const OMEtype &justList);
196 OME_CORE_CALL int createACLthatAllowsOthers(class OMEthread *thread, OMEtype &result,
197  const OMEtype &args);
199  const OMEtype &args);
200 OME_CORE_CALL int makeDefaultACL(class OMEthread *thread, OMEtype &result);
201 OME_CORE_CALL int makePermitEveryoneACL(class OMEthread *thread, OMEtype &result);
202 OME_CORE_CALL int addUserToACL(class OMEthread *thread, OMEtype &result,
203  const OMEtype &acl, const OMEtype &user,
204  const OMEtype &methods);
206  const OMEtype &args);
207 OME_CORE_CALL int becomeUser(class OMEthread *thread, OMEtype &result,
208  const OMEtype &userName, const OMEtype &password);
209 OME_CORE_CALL int becomePseudoUser(class OMEthread *thread, OMEtype &result);
210 OME_CORE_CALL int OMEshutdown(class OMEthread *thread, OMEtype &result);
211 OME_CORE_CALL int allocateXMLparser(class OMEthread *thread, OMEtype &result);
212 OME_CORE_CALL int freeXMLparser(class OMEthread *thread, OMEtype &result,
213  const OMEtype &parserID);
214 OME_CORE_CALL int parseXMLusingParser(class OMEthread *thread, OMEtype &result,
215  const OMEtype &parserID, const OMEtype &data,
216  const OMEtype &doneFlag);
217 OME_CORE_CALL int parseXML(class OMEthread *thread, OMEtype &result,
218  const OMEtype &data);
219 OME_CORE_CALL int lookupAddress(class OMEthread *thread, OMEtype &result,
220  const OMEtype &data);
221 OME_CORE_CALL int dottedAddress(class OMEthread *thread, OMEtype &result,
222  const OMEtype &data);
223 OME_CORE_CALL int yieldSlice(class OMEthread *thread, OMEtype &result);
224 OME_CORE_CALL int oidIsExternal(class OMEthread *thread, OMEtype &result,
225  const OMEtype &obj);
226 OME_CORE_CALL int registerService(class OMEthread *thread, OMEtype &result,
227  const OMEtype &name, const OMEtype &obj, const OMEtype &flag);
228 OME_CORE_CALL int unregisterService(class OMEthread *thread, OMEtype &result,
229  const OMEtype &name, const OMEtype &obj);
230 OME_CORE_CALL int lookupLocalService(class OMEthread *thread, OMEtype &result,
231  const OMEtype &name);
232 OME_CORE_CALL int listRegisteredServices(class OMEthread *thread, OMEtype &result,
233  const OMEtype &flag);
234 OME_CORE_CALL int inCalled(class OMEthread *thread, OMEtype &result);
235 OME_CORE_CALL int length(class OMEthread *thread, OMEtype &result,
236  const OMEtype &arg);
237 OME_CORE_CALL int midstr(class OMEthread *thread, OMEtype &result,
238  const OMEtype &source, const OMEtype &offset, const OMEtype &len);
239 OME_CORE_CALL int midchar(class OMEthread *thread, OMEtype &result,
240  const OMEtype &source, const OMEtype &offset);
241 OME_CORE_CALL int charToString(class OMEthread *thread, OMEtype &result,
242  const OMEtype &arg);
243 OME_CORE_CALL int reverseString(class OMEthread *thread, OMEtype &result,
244  const OMEtype &arg);
245 OME_CORE_CALL int forceToASCII(class OMEthread *thread, OMEtype &result,
246  const OMEtype &arg);
247 OME_CORE_CALL int typeOf(class OMEthread *thread, OMEtype &result,
248  const OMEtype &arg);
249 OME_CORE_CALL int exactTypeOf(class OMEthread *thread, OMEtype &result,
250  const OMEtype &arg);
251 OME_CORE_CALL int elementCount(class OMEthread *thread, OMEtype &result,
252  const OMEtype &arg);
253 OME_CORE_CALL int findSubtring(class OMEthread *thread, OMEtype &result,
254  const OMEtype &source, const OMEtype &substring);
255 OME_CORE_CALL int findSubtringAfter(class OMEthread *thread, OMEtype &result,
256  const OMEtype &source, const OMEtype &substring, const OMEtype &offset);
257 OME_CORE_CALL int findLastSubtring(class OMEthread *thread, OMEtype &result,
258  const OMEtype &source, const OMEtype &substring);
259 OME_CORE_CALL int findLastSubtringBefore(class OMEthread *thread, OMEtype &result,
260  const OMEtype &source, const OMEtype &substring, const OMEtype &offset);
261 OME_CORE_CALL int tokenizeString(class OMEthread *thread, OMEtype &result,
262  const OMEtype &source, const OMEtype &delimString,
263  const OMEtype &convFlag);
264 OME_CORE_CALL int stringToNumber(class OMEthread *thread, OMEtype &result,
265  const OMEtype &data, const OMEtype &desiredType);
266 OME_CORE_CALL int indexExists(class OMEthread *thread, OMEtype &result,
267  const OMEtype &data, const OMEtype &subscript);
268 OME_CORE_CALL int nextIndex(class OMEthread *thread, OMEtype &result,
269  const OMEtype &data, const OMEtype &subscript);
270 OME_CORE_CALL int priorIndex(class OMEthread *thread, OMEtype &result,
271  const OMEtype &data, const OMEtype &subscript);
272 OME_CORE_CALL int getKeyForIndex(class OMEthread *thread, OMEtype &result,
273  const OMEtype &data, const OMEtype &subscript);
274 OME_CORE_CALL int deleteIndex(class OMEthread *thread, OMEtype &result,
275  const OMEtype &data, const OMEtype &subscript);
276 OME_CORE_CALL int mergeArrays(class OMEthread *thread, OMEtype &result,
277  const OMEtype &args);
278 OME_CORE_CALL int encodeLengthAsString(class OMEthread *thread, OMEtype &result,
279  const OMEtype &len);
280 OME_CORE_CALL int decodeStringAsLength(class OMEthread *thread, OMEtype &result,
281  const OMEtype &data);
282 OME_CORE_CALL int arrayToSet(class OMEthread *thread, OMEtype &result,
283  const OMEtype &data);
284 OME_CORE_CALL int setToArray(class OMEthread *thread, OMEtype &result,
285  const OMEtype &data);
286 OME_CORE_CALL int getApplicationVariable(class OMEthread *thread, OMEtype &result,
287  const OMEtype &varName, const OMEtype &extraVars);
288 OME_CORE_CALL int getEnvironmentVariable(class OMEthread *thread, OMEtype &result,
289  const OMEtype &varName);
290 OME_CORE_CALL int substituteText(class OMEthread *thread, OMEtype &result,
291  const OMEtype &data, const OMEtype &replacements);
293  const OMEtype &line, const OMEtype &extraVariables);
294 OME_CORE_CALL int orderSubscripts(class OMEthread *thread, OMEtype &result,
295  const OMEtype &arg, const OMEtype &mode);
296 OME_CORE_CALL int sortArray(class OMEthread *thread, OMEtype &result,
297  const OMEtype &arg, const OMEtype &mode);
298 OME_CORE_CALL int convertCase(class OMEthread *thread, OMEtype &result,
299  const OMEtype &arg, const OMEtype &toLower);
300 OME_CORE_CALL int compareStrings(class OMEthread *thread, OMEtype &result,
301  const OMEtype &str1, const OMEtype &str2, const OMEtype &fuzzyCompare);
302 OME_CORE_CALL int createNLM(class OMEthread *thread, OMEtype &result,
303  const OMEtype &catName, const OMEtype &messID,
304  const OMEtype &defaultMess, const OMEtype &args,
305  const OMEtype &extras);
306 OME_CORE_CALL int nlmInfo(class OMEthread *thread, OMEtype &result,
307  const OMEtype &arg);
308 
311 #endif
312 /* vim: set expandtab shiftwidth=4 tabstop=4: */
makeAsString
OME_CORE_CALL int makeAsString(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:298
base64ToASCII
OME_CORE_CALL int base64ToASCII(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILmimeDecode.cpp:338
getRandomInteger
OME_CORE_CALL int getRandomInteger(class OMEthread *thread, OMEtype &result, const OMEtype &upperBound)
Definition: OILcrypto.cpp:205
findLastSubtring
OME_CORE_CALL int findLastSubtring(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &substring)
hexToBinary
OME_CORE_CALL int hexToBinary(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:344
gunzipString
OME_CORE_CALL int gunzipString(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:154
iso8601Date
OME_CORE_CALL int iso8601Date(class OMEthread *thread, OMEtype &result, const OMEtype &argData)
Definition: OILtime.cpp:112
parseMIMEblock
OME_CORE_CALL int parseMIMEblock(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILmimeDecode.cpp:352
renameFile
OME_CORE_CALL int renameFile(class OMEthread *thread, OMEtype &result, const OMEtype &orgFileName, const OMEtype &newFileName)
Definition: OILio.cpp:880
convertAbsoluteToLocalRelativeTime
OME_CORE_CALL int convertAbsoluteToLocalRelativeTime(class OMEthread *thread, OMEtype &result, const OMEtype &timeData)
Definition: OILtime.cpp:66
closeIO
OME_CORE_CALL int closeIO(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &flags, const OMEtype &sidesMask)
Definition: OILio.cpp:151
getEnvironmentVariable
OME_CORE_CALL int getEnvironmentVariable(class OMEthread *thread, OMEtype &result, const OMEtype &varName)
Definition: OILtypeFuncs.cpp:652
compressString
OME_CORE_CALL int compressString(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:100
displayVisible
OME_CORE_CALL int displayVisible(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:372
acceptConnection
OME_CORE_CALL int acceptConnection(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:557
decryptSessionKey
OME_CORE_CALL int decryptSessionKey(class OMEthread *thread, OMEtype &result, const OMEtype &privateKey, const OMEtype &encryptedKey)
Definition: OILcrypto.cpp:84
charToString
OME_CORE_CALL int charToString(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:82
concatBits
OME_CORE_CALL int concatBits(class OMEthread *thread, OMEtype &result, const OMEtype &bitData, const OMEtype &bitsToAdd, const OMEtype &currentState)
Definition: OILbits.cpp:119
listEncodingVersions
OME_CORE_CALL int listEncodingVersions(class OMEthread *thread, OMEtype &result)
Definition: OILencode.cpp:18
stripHTML
OME_CORE_CALL int stripHTML(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILhttpFuncs.cpp:457
asciiToBase64
OME_CORE_CALL int asciiToBase64(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &breakIntoLines)
Definition: OILmimeDecode.cpp:318
OMEuncompressString
OMEstring * OMEuncompressString(const OMEstring &data)
Uncompress a previously compressed string.
Definition: OMEcompress.cpp:61
OMEstring
Implements text and binary string storage.
Definition: OMEstring.h:305
uncompressString
OME_CORE_CALL int uncompressString(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:118
encodeData
OME_CORE_CALL int encodeData(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &version)
Definition: OILencode.cpp:26
decryptMessage
OME_CORE_CALL int decryptMessage(class OMEthread *thread, OMEtype &result, const OMEtype &cipherData, const OMEtype &message)
Definition: OILcrypto.cpp:178
MD5hash
OME_CORE_CALL int MD5hash(class OMEthread *thread, OMEtype &result, const OMEtype &message)
Definition: OILcrypto.cpp:33
OMEtype
Fundamental ANY type for FARGOS/VISTA Object Management Environment.
Definition: OMEbaseType.h:250
decodeData
OME_CORE_CALL int decodeData(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:61
allocateXMLparser
OME_CORE_CALL int allocateXMLparser(class OMEthread *thread, OMEtype &result)
Definition: OILxmlParse.cpp:145
oidIsExternal
OME_CORE_CALL int oidIsExternal(class OMEthread *thread, OMEtype &result, const OMEtype &obj)
Definition: OMEthread.cpp:70
getHostKey
OME_CORE_CALL int getHostKey(class OMEthread *thread, OMEtype &result, const OMEtype &secret, const OMEtype &logicalDomain)
Definition: OILcrypto.cpp:277
getPeerAddress
OME_CORE_CALL int getPeerAddress(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:603
debugDisplay
OME_CORE_CALL int debugDisplay(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:144
createACLthatDisallowsOthers
OME_CORE_CALL int createACLthatDisallowsOthers(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OMEobjACL.cpp:241
lowBit
OME_CORE_CALL int lowBit(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILbits.cpp:63
compareStrings
OME_CORE_CALL int compareStrings(class OMEthread *thread, OMEtype &result, const OMEtype &str1, const OMEtype &str2, const OMEtype &fuzzyCompare)
Definition: OILtypeFuncs.cpp:796
OMEgzipString
OMEstring * OMEgzipString(const OMEstring &data)
Compress a string into RFC 1952 format.
Definition: OMEcompress.cpp:113
decodeStringAsLength
OME_CORE_CALL int decodeStringAsLength(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILtypeFuncs.cpp:553
selectForWrite
OME_CORE_CALL int selectForWrite(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &permitPreempt)
Definition: OILio.cpp:531
registerService
OME_CORE_CALL int registerService(class OMEthread *thread, OMEtype &result, const OMEtype &name, const OMEtype &obj, const OMEtype &flag)
Definition: OMEthread.cpp:118
makeSessionKey
OME_CORE_CALL int makeSessionKey(class OMEthread *thread, OMEtype &result, const OMEtype &publicKey, const OMEtype &randomData)
Definition: OILcrypto.cpp:61
priorIndex
OME_CORE_CALL int priorIndex(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &subscript)
Definition: OILtypeFuncs.cpp:416
OMEgunzipString
OMEstring * OMEgunzipString(const OMEstring &data)
Uncompress a string in RFC 1592 format.
Definition: OMEcompress.cpp:227
freeCipher
OME_CORE_CALL int freeCipher(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILcrypto.cpp:137
parseXML
OME_CORE_CALL int parseXML(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILxmlParse.cpp:228
OMEstring::truncateToLength
void truncateToLength(size_t newLen)
Definition: OMEstring.h:531
openURL
OME_CORE_CALL int openURL(class OMEthread *thread, OMEtype &result, const OMEtype &url)
Definition: OILio.cpp:87
getLocalAddress
OME_CORE_CALL int getLocalAddress(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:583
stringToNumber
OME_CORE_CALL int stringToNumber(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &desiredType)
Definition: OILtypeFuncs.cpp:308
exactTypeOf
OME_CORE_CALL int exactTypeOf(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:151
getSystemInfo
OME_CORE_CALL int getSystemInfo(class OMEthread *thread, OMEtype &result)
Definition: OILtime.cpp:31
makeAsHexString
OME_CORE_CALL int makeAsHexString(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:328
mergeBits
OME_CORE_CALL int mergeBits(class OMEthread *thread, OMEtype &result, const OMEtype &src, const OMEtype &srcOffset, const OMEtype &srcLen, const OMEtype &orig, const OMEtype &destOffset)
Definition: OILbits.cpp:104
arrayToSet
OME_CORE_CALL int arrayToSet(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILtypeFuncs.cpp:571
makeUnique
OME_CORE_CALL int makeUnique(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:357
freeXMLparser
OME_CORE_CALL int freeXMLparser(class OMEthread *thread, OMEtype &result, const OMEtype &parserID)
Definition: OILxmlParse.cpp:158
srcID
const char srcID[]
Definition: catSym.c:17
parseXMLusingParser
OME_CORE_CALL int parseXMLusingParser(class OMEthread *thread, OMEtype &result, const OMEtype &parserID, const OMEtype &data, const OMEtype &doneFlag)
Definition: OILxmlParse.cpp:182
relativePathToAbsolute
OME_CORE_CALL int relativePathToAbsolute(class OMEthread *thread, OMEtype &result, const OMEtype &currentDir, const OMEtype &path)
Definition: OILhttpFuncs.cpp:186
nextIndex
OME_CORE_CALL int nextIndex(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &subscript)
Definition: OILtypeFuncs.cpp:396
OMEstring::noteCharacterSet
void noteCharacterSet(uint_fast8_t c)
Definition: OMEstring.h:386
expandSSIvars
OME_CORE_CALL int expandSSIvars(class OMEthread *thread, OMEtype &result, const OMEtype &cmdElements, const OMEtype &env)
Definition: OILhttpFuncs.cpp:396
sortArray
OME_CORE_CALL int sortArray(class OMEthread *thread, OMEtype &result, const OMEtype &arg, const OMEtype &mode)
Definition: OILtypeFuncs.cpp:755
parseHTTPuriData
OME_CORE_CALL int parseHTTPuriData(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &defaultScheme, const OMEtype &defaultAuthority, const OMEtype &defaultContext)
Definition: OILhttpFuncs.cpp:14
findSubtringAfter
OME_CORE_CALL int findSubtringAfter(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &substring, const OMEtype &offset)
sendDatagram
OME_CORE_CALL int sendDatagram(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &dataToSend, const OMEtype &dest)
Definition: OILio.cpp:375
makePublicKeyPair
OME_CORE_CALL int makePublicKeyPair(class OMEthread *thread, OMEtype &result, const OMEtype &secret)
Definition: OILcrypto.cpp:45
safeURI
OME_CORE_CALL int safeURI(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILmimeDecode.cpp:25
midchar
OME_CORE_CALL int midchar(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &offset)
Definition: OILtypeFuncs.cpp:58
findLastSubtringBefore
OME_CORE_CALL int findLastSubtringBefore(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &substring, const OMEtype &offset)
getFileInfo
OME_CORE_CALL int getFileInfo(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:639
deleteIndex
OME_CORE_CALL int deleteIndex(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &subscript)
Definition: OILtypeFuncs.cpp:452
display
OME_CORE_CALL int display(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:112
addUserToACL
OME_CORE_CALL int addUserToACL(class OMEthread *thread, OMEtype &result, const OMEtype &acl, const OMEtype &user, const OMEtype &methods)
Definition: OMEobjACL.cpp:308
getLocalRelativeTime
OME_CORE_CALL int getLocalRelativeTime(class OMEthread *thread, OMEtype &result)
Definition: OILtime.cpp:76
sleepForSeconds
OME_CORE_CALL int sleepForSeconds(class OMEthread *thread, OMEtype &result, const OMEtype &t)
Definition: OILio.cpp:70
getRelativeMilliseconds
OME_CORE_CALL int getRelativeMilliseconds(class OMEthread *thread, OMEtype &result)
Definition: OILtime.cpp:85
setDebugMask
OME_CORE_CALL int setDebugMask(class OMEthread *thread, OMEtype &result, const OMEtype &mask)
Definition: OILdebug.cpp:414
OMEstring::getCharacterSet
uint_fast8_t getCharacterSet() const
Definition: OMEstring.h:396
nlmInfo
OME_CORE_CALL int nlmInfo(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:842
getLocalizedData
OME_CORE_CALL int getLocalizedData(class OMEthread *thread, OMEtype &result, const OMEtype &fileName, const OMEtype &attrName)
pathComponentsToString
OME_CORE_CALL int pathComponentsToString(class OMEthread *thread, OMEtype &result, const OMEtype &elements, const OMEtype &startIndex, const OMEtype &stopIndex)
Definition: OILhttpFuncs.cpp:237
writeBytes
OME_CORE_CALL int writeBytes(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &dataToSend)
Definition: OILio.cpp:346
setToArray
OME_CORE_CALL int setToArray(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILtypeFuncs.cpp:599
unregisterService
OME_CORE_CALL int unregisterService(class OMEthread *thread, OMEtype &result, const OMEtype &name, const OMEtype &obj)
Definition: OMEthread.cpp:162
reverseString
OME_CORE_CALL int reverseString(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:100
makeRandomKey
OME_CORE_CALL int makeRandomKey(class OMEthread *thread, OMEtype &result, const OMEtype &desiredBits)
Definition: OILcrypto.cpp:245
selectForRead
OME_CORE_CALL int selectForRead(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &permitPreempt)
Definition: OILio.cpp:504
OMEshutdown
OME_CORE_CALL int OMEshutdown(class OMEthread *thread, OMEtype &result)
OIL2 interface routine to request shutdown of FARGOS/VISTA Object Management Environment via OMEreque...
Definition: OMEexecQueue.cpp:601
seekToOffset
OME_CORE_CALL int seekToOffset(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &offset)
Definition: OILio.cpp:273
OMEtype.h
OME fundamental type implementation.
parseAttributeValuePairs
OME_CORE_CALL int parseAttributeValuePairs(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &desiredType, const OMEtype &whiteSpace, const OMEtype &equalsSign)
Definition: OILmimeDecode.cpp:98
OMEcompressString
OMEstring * OMEcompressString(const OMEstring &data)
Compress a string.
Definition: OMEcompress.cpp:28
findSubtring
OME_CORE_CALL int findSubtring(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &substring)
typeOf
OME_CORE_CALL int typeOf(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:127
parseHTTPformData
OME_CORE_CALL int parseHTTPformData(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &desiredType)
Definition: OILmimeDecode.cpp:36
getKeyForIndex
OME_CORE_CALL int getKeyForIndex(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &subscript)
Definition: OILtypeFuncs.cpp:437
readBytes
OME_CORE_CALL int readBytes(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &bytesToRead, const OMEtype &bufferSize)
Definition: OILio.cpp:186
encodeLengthAsString
OME_CORE_CALL int encodeLengthAsString(class OMEthread *thread, OMEtype &result, const OMEtype &len)
Definition: OILtypeFuncs.cpp:534
rfc1123Date
OME_CORE_CALL int rfc1123Date(class OMEthread *thread, OMEtype &result, const OMEtype &argData)
Definition: OILtime.cpp:103
createNewOIDthatOnlyAllowsOthers
OME_CORE_CALL int createNewOIDthatOnlyAllowsOthers(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OMEobjACL.cpp:338
timeDifference
OME_CORE_CALL int timeDifference(class OMEthread *thread, OMEtype &result, const OMEtype &time1, const OMEtype &time2)
Definition: OILtime.cpp:131
listDirectory
OME_CORE_CALL int listDirectory(class OMEthread *thread, OMEtype &result, const OMEtype &dirName)
Definition: OILio.cpp:933
OMEstring::length
size_t length() const
Definition: OMEstring.h:401
becomeUser
OME_CORE_CALL int becomeUser(class OMEthread *thread, OMEtype &result, const OMEtype &userName, const OMEtype &password)
Definition: OMEobjACL.cpp:398
indexExists
OME_CORE_CALL int indexExists(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &subscript)
Definition: OILtypeFuncs.cpp:369
substituteEnvironmentVariables
OME_CORE_CALL int substituteEnvironmentVariables(class OMEthread *thread, OMEtype &result, const OMEtype &line, const OMEtype &extraVariables)
Definition: OILtypeFuncs.cpp:682
OME_USED
const char srcID[] OME_USED
Definition: tick_time.cpp:24
flags
int flags
Definition: ethers.c:41
convertURIescapes
OME_CORE_CALL int convertURIescapes(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILmimeDecode.cpp:14
alwaysAllow
OME_CORE_CALL int alwaysAllow(class OMEthread *thread, OMEtype &result, const OMEtype &methodName)
Definition: OILallow.cpp:20
midstr
OME_CORE_CALL int midstr(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &offset, const OMEtype &len)
Definition: OILtypeFuncs.cpp:31
orderSubscripts
OME_CORE_CALL int orderSubscripts(class OMEthread *thread, OMEtype &result, const OMEtype &arg, const OMEtype &mode)
Definition: OILtypeFuncs.cpp:746
initializeCipher
OME_CORE_CALL int initializeCipher(class OMEthread *thread, OMEtype &result, const OMEtype &secret, const OMEtype &dir, const OMEtype &initVec)
Definition: OILcrypto.cpp:103
tokenizeString
OME_CORE_CALL int tokenizeString(class OMEthread *thread, OMEtype &result, const OMEtype &source, const OMEtype &delimString, const OMEtype &convFlag)
Definition: OILtypeFuncs.cpp:286
allow
OME_CORE_CALL int allow(class OMEthread *thread, OMEtype &result, const OMEtype &methodName)
Definition: OILallow.cpp:5
inCalled
OME_CORE_CALL int inCalled(class OMEthread *thread, OMEtype &result)
calculateStringLength
OME_CORE_CALL int calculateStringLength(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:388
ntohl
#define ntohl(x)
Definition: tmp.o.cpp:3101
decodeMIMEdata
OME_CORE_CALL int decodeMIMEdata(class OMEthread *thread, OMEtype &result, const OMEtype &mimeTypeName, const OMEtype &data)
Definition: OILmimeDecode.cpp:467
removeDirectory
OME_CORE_CALL int removeDirectory(class OMEthread *thread, OMEtype &result, const OMEtype &fileName)
Definition: OILio.cpp:853
becomePseudoUser
OME_CORE_CALL int becomePseudoUser(class OMEthread *thread, OMEtype &result)
Definition: OMEobjACL.cpp:413
parsePathComponents
OME_CORE_CALL int parsePathComponents(class OMEthread *thread, OMEtype &result, const OMEtype &path)
Definition: OILhttpFuncs.cpp:133
makeDirectory
OME_CORE_CALL int makeDirectory(class OMEthread *thread, OMEtype &result, const OMEtype &dirName)
Definition: OILio.cpp:909
encryptMessage
OME_CORE_CALL int encryptMessage(class OMEthread *thread, OMEtype &result, const OMEtype &cipherData, const OMEtype &message)
Definition: OILcrypto.cpp:151
highBit
OME_CORE_CALL int highBit(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILbits.cpp:33
listRegisteredServices
OME_CORE_CALL int listRegisteredServices(class OMEthread *thread, OMEtype &result, const OMEtype &flag)
Definition: OMEthread.cpp:212
decodeFirstElement
OME_CORE_CALL int decodeFirstElement(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:79
elementCount
OME_CORE_CALL int elementCount(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:168
getErrorStatus
OME_CORE_CALL int getErrorStatus(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:623
dottedAddress
OME_CORE_CALL int dottedAddress(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OMEsocket.cpp:1063
getIOhandle
OME_CORE_CALL int getIOhandle(class OMEthread *thread, OMEtype &result, const OMEtype &ioID)
Definition: OILio.cpp:135
mergeArrays
OME_CORE_CALL int mergeArrays(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILtypeFuncs.cpp:476
convertLocalRelativeTimeToAbsolute
OME_CORE_CALL int convertLocalRelativeTimeToAbsolute(class OMEthread *thread, OMEtype &result, const OMEtype &timeArg, const OMEtype &asGMT)
Definition: OILtime.cpp:55
lookupLocalService
OME_CORE_CALL int lookupLocalService(class OMEthread *thread, OMEtype &result, const OMEtype &name)
Definition: OMEthread.cpp:190
makePermitEveryoneACL
OME_CORE_CALL int makePermitEveryoneACL(class OMEthread *thread, OMEtype &result)
Definition: OMEobjACL.cpp:286
OMEthread
Public interface to an OME thread.
Definition: OMEthread.h:60
LOG_ENDLINE
#define LOG_ENDLINE
Closing clause for text line output using << operators.
Definition: logging_api.hpp:2956
getSystemInfoAttribute
OME_CORE_CALL int getSystemInfoAttribute(class OMEthread *thread, OMEtype &result, const OMEtype &attrName)
Definition: OILtime.cpp:39
parseMIMEheaderLines
OME_CORE_CALL int parseMIMEheaderLines(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILmimeDecode.cpp:214
decodeMultiPart
OME_CORE_CALL int decodeMultiPart(class OMEthread *thread, OMEtype &result, const OMEtype &mimeTypeName, const OMEtype &data)
Definition: OILmimeDecode.cpp:382
makeDefaultACL
OME_CORE_CALL int makeDefaultACL(class OMEthread *thread, OMEtype &result)
Definition: OMEobjACL.cpp:267
SHA1hash
OME_CORE_CALL int SHA1hash(class OMEthread *thread, OMEtype &result, const OMEtype &message)
Definition: OILcrypto.cpp:9
createNLM
OME_CORE_CALL int createNLM(class OMEthread *thread, OMEtype &result, const OMEtype &catName, const OMEtype &messID, const OMEtype &defaultMess, const OMEtype &args, const OMEtype &extras)
Definition: OILtypeFuncs.cpp:810
parseStringIntoSSIelements
OME_CORE_CALL int parseStringIntoSSIelements(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILhttpFuncs.cpp:336
substituteText
OME_CORE_CALL int substituteText(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &replacements)
Definition: OILtypeFuncs.cpp:664
displayAsHex
OME_CORE_CALL int displayAsHex(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:260
convertCase
OME_CORE_CALL int convertCase(class OMEthread *thread, OMEtype &result, const OMEtype &arg, const OMEtype &toLower)
Definition: OILtypeFuncs.cpp:780
length
OME_CORE_CALL int length(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:19
lookupAddress
OME_CORE_CALL int lookupAddress(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OMEsocket.cpp:997
receiveDatagram
OME_CORE_CALL int receiveDatagram(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &bufferSize)
Definition: OILio.cpp:296
getApplicationVariable
OME_CORE_CALL int getApplicationVariable(class OMEthread *thread, OMEtype &result, const OMEtype &varName, const OMEtype &extraVars)
Definition: OILtypeFuncs.cpp:620
OME_CORE_CALL
#define OME_CORE_CALL
Definition: OMEcore.h:12
htonl
#define htonl(x)
Definition: tmp.o.cpp:3098
forceToASCII
OME_CORE_CALL int forceToASCII(class OMEthread *thread, OMEtype &result, const OMEtype &arg)
Definition: OILtypeFuncs.cpp:113
convertRFC1123date
OME_CORE_CALL int convertRFC1123date(class OMEthread *thread, OMEtype &result, const OMEtype &timeString)
Definition: OILtime.cpp:121
gzipString
OME_CORE_CALL int gzipString(class OMEthread *thread, OMEtype &result, const OMEtype &data)
Definition: OILencode.cpp:136
yieldSlice
OME_CORE_CALL int yieldSlice(class OMEthread *thread, OMEtype &result)
Definition: OMEthread.cpp:61
getRemoteHostKey
OME_CORE_CALL int getRemoteHostKey(class OMEthread *thread, OMEtype &result, const OMEtype &rmtHostName, const OMEtype &logicalDomain)
Definition: OILcrypto.cpp:288
writeVectorOfBytes
OME_CORE_CALL int writeVectorOfBytes(class OMEthread *thread, OMEtype &result, const OMEtype &ioID, const OMEtype &skipOffset, const OMEtype &dataToSend)
Definition: OILio.cpp:409
debugDisplayAsHex
OME_CORE_CALL int debugDisplayAsHex(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OILdebug.cpp:269
createACLthatAllowsOthers
OME_CORE_CALL int createACLthatAllowsOthers(class OMEthread *thread, OMEtype &result, const OMEtype &args)
Definition: OMEobjACL.cpp:214
unlinkFile
OME_CORE_CALL int unlinkFile(class OMEthread *thread, OMEtype &result, const OMEtype &fileName)
Definition: OILio.cpp:829
OMEloadOIL2
OME_CORE_CALL int OMEloadOIL2(class OMEthread *thread, OMEtype &result, const OMEtype &data, const OMEtype &justList)
Definition: OMEld.cpp:198
LOG_CERR
#define LOG_CERR(lvl)
Convenience macro that uses LOG_INTO() to conditionally log a message to standard error.
Definition: logging_api.hpp:3014
logging_api.hpp
FARGOS Logging API.
Generated: Fri Jul 31 2020 18:19:14
Support Information