XBinder C Common Runtime Functions  XBinder v3.0.x
rtxBuffer.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2022 Objective Systems, Inc.
3  *
4  * This software is furnished under a license and may be used and copied
5  * only in accordance with the terms of such license and with the
6  * inclusion of the above copyright notice. This software or any other
7  * copies thereof may not be provided or otherwise made available to any
8  * other person. No title to and ownership of the software is hereby
9  * transferred.
10  *
11  * The information in this software is subject to change without notice
12  * and should not be construed as a commitment by Objective Systems, Inc.
13  *
14  * PROPRIETARY NOTICE
15  *
16  * This software is an unpublished work subject to a confidentiality agreement
17  * and is protected by copyright and trade secret law. Unauthorized copying,
18  * redistribution or other use of this work is prohibited.
19  *
20  * The above notice of copyright on this source code product does not indicate
21  * any actual or intended publication of such source code.
22  *
23  *****************************************************************************/
29 #ifndef _RTXBUFFER_H_
30 #define _RTXBUFFER_H_
31 
32 #include "rtxsrc/rtxContext.h"
33 #include "rtxsrc/rtxSList.h"
34 
35 /* reserve octets to enable short backoffs */
36 #define MIN_STREAM_BACKOFF 0
37 
38 
50 typedef struct _OSRTBufLocDescr {
51  OSSIZE numocts;
52  OSSIZE offset;
54 
55 #ifdef __cplusplus
56 extern "C" {
57 #endif
58 
59 
60 EXTERNRT int rtxCheckBuffer (OSCTXT* pctxt, size_t nbytes);
61 
74 EXTERNRT int rtxCheckOutputBuffer (OSCTXT* pctxt, OSSIZE nbytes);
75 
83 EXTERNRT int rtxDecrBufferByteIndex(OSCTXT* pctxt, OSSIZE nbytes);
84 
94 EXTERNRT OSBOOL rtxIsOutputBufferFlushable(OSCTXT* pctxt);
95 
108 EXTERNRT int rtxFlushOutputBuffer(OSCTXT* pctxt);
109 
110 
123 EXTERNRT int rtxExpandOutputBuffer (OSCTXT* pctxt, size_t nbytes);
124 
138 EXTERNRT int rtxCheckInputBuffer (OSCTXT* pctxt, size_t nbytes);
139 
140 EXTERNRT int rtxCopyAsciiText (OSCTXT* pctxt, const char* text);
141 
142 EXTERNRT int rtxCopyUTF8Text (OSCTXT* pctxt, const OSUTF8CHAR* text);
143 
144 EXTERNRT int rtxCopyUnicodeText (OSCTXT* pctxt, const OSUNICHAR* text);
145 
164 EXTERNRT int rtxLoadInputBuffer(OSCTXT* pctxt, OSSIZE nbytes);
165 
175 EXTERNRT int rtxPeekByte(OSCTXT* pctxt, OSOCTET* pbyte);
176 
191 EXTERNRT int rtxPeekBytes(OSCTXT* pctxt, OSOCTET* pdata, OSSIZE bufsize,
192  OSSIZE nocts, OSSIZE* pactual);
193 
206 EXTERNRT int rtxReadBytesSafe
207 (OSCTXT* pctxt, OSOCTET* buffer, size_t bufsize, size_t nocts);
208 
218 EXTERNRT int rtxReadBytes (OSCTXT* pctxt, OSOCTET* pdata, size_t nocts);
219 
236 EXTERNRT int rtxReadBytesDynamic
237 (OSCTXT* pctxt, OSOCTET** ppdata, size_t nocts, OSBOOL* pMemAlloc);
238 
247 EXTERNRT int rtxWriteBytes
248 (OSCTXT* pctxt, const OSOCTET* pdata, size_t nocts);
249 
250 
263 EXTERNRT int rtxWriteIndent(OSCTXT* pctxt);
264 
273 EXTERNRT void rtxIndentDecr(OSCTXT* pctxt);
274 
283 EXTERNRT void rtxIndentIncr(OSCTXT* pctxt);
284 
292 EXTERNRT void rtxIndentReset(OSCTXT* pctxt);
293 
294 
304 EXTERNRT size_t rtxGetIndentLevels(OSCTXT* pctxt);
305 
306 
335 EXTERNRT OSBOOL rtxCanonicalSort (OSOCTET* refPoint, OSRTSList* pList,
336  OSBOOL normal);
337 
338 
339 #ifndef _NO_STREAM
340 
352 EXTERNRT int rtxEncCanonicalSort (OSCTXT* pctxt,
353  OSCTXT* pMemCtxt,
354  OSRTSList* pList);
355 
360 EXTERNRT void rtxGetBufLocDescr (OSCTXT *pctxt, OSRTBufLocDescr* pDescr);
361 
374 EXTERNRT void rtxAddBufLocDescr (OSCTXT *pctxt, OSRTSList* pElemList,
375  OSRTBufLocDescr* pDescr);
376 #endif /* _NO_STREAM */
377 
378 /* Macros */
379 
380 #define OSRTPUTCHAR(pctxt,ch) rtxWriteBytes (pctxt, (OSOCTET*)&ch, 1)
381 
382 #define OSRTPUTCHARREV(pctxt,ch) \
383 (pctxt)->buffer.data[--(pctxt)->buffer.byteIndex]=(OSOCTET)ch;
384 
385 #define OSRTZTERM(pctxt) \
386 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex]=(OSOCTET)0;
387 
388 #define OSRTSAFEZTERM(pctxt) \
389 do { \
390 if (rtxCheckOutputBuffer (pctxt, 1) == 0) \
391 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex]=(OSOCTET)0; \
392 else return LOG_RTERRNEW (pctxt, RTERR_BUFOVFLW); \
393 } while (0)
394 
395 #define OSRTSAFEPUTCHAR(pctxt,ch) \
396 do { \
397 if (rtxCheckOutputBuffer (pctxt, 1) == 0) \
398 (pctxt)->lastChar= \
399 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex++]=(OSOCTET)ch; \
400 else return LOG_RTERRNEW (pctxt, RTERR_BUFOVFLW); \
401 } while (0)
402 
403 /* Put character into buffer and terminate buffer with null character.
404  Execute return LOG_RTERRNEW if there is not room in the buffer and
405  the buffer cannot be expanded to make room.
406 */
407 #define OSRTSAFEPUTCHAR_ZTERM(pctxt,ch) \
408 do { \
409 if (rtxCheckOutputBuffer (pctxt, 2) == 0) { \
410 (pctxt)->lastChar= \
411 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex++]=(OSOCTET)ch; \
412 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex]=(OSOCTET)0; } \
413 else return LOG_RTERRNEW (pctxt, RTERR_BUFOVFLW); \
414 } while (0)
415 
416 
417 #define OSRTSAFEPUTCHAR1(pctxt,ch,stat) \
418 do { \
419 OSOCTET b = (OSOCTET)ch; \
420 rtxWriteBytes (pctxt, &b, 1); \
421 } while (0)
422 
423 #if 0
424 #define OSRTSAFEPUTCHAR2(pctxt,ch,prealloc) \
425 do { \
426 if (rtxCheckOutputBuffer (pctxt, ((prealloc > 1)?prealloc:1)) == 0) \
427 (pctxt)->lastChar= \
428 (pctxt)->buffer.data[(pctxt)->buffer.byteIndex++]=(OSOCTET)ch; \
429 else return LOG_RTERRNEW (pctxt, RTERR_BUFOVFLW); \
430 } while (0)
431 #endif
432 
433 #define OSRTMEMCPY(pctxt,bdata,len) \
434 do { \
435 OSCRTLSAFEMEMCPY (&(pctxt)->buffer.data[(pctxt)->buffer.byteIndex], \
436  (pctxt)->buffer.size-(pctxt)->buffer.byteIndex, bdata, len); \
437 (pctxt)->buffer.byteIndex += len; \
438 (pctxt)->lastChar = (pctxt)->buffer.data[(pctxt)->buffer.byteIndex-1]; \
439 } while (0)
440 
441 #define OSRTMEMCPYREV(pctxt,bdata,len) \
442 do { \
443 (pctxt)->buffer.byteIndex -= len; \
444 OSCRTLSAFEMEMCPY (&(pctxt)->buffer.data[(pctxt)->buffer.byteIndex], \
445  (pctxt)->buffer.size-(pctxt)->buffer.byteIndex, bdata, len); \
446 } while (0)
447 
448 #define OSRTSAFEMEMCPY(pctxt,bdata,len) \
449 do { \
450 if (rtxCheckOutputBuffer (pctxt, len) == 0) { \
451 OSCRTLMEMCPY (&(pctxt)->buffer.data[(pctxt)->buffer.byteIndex], bdata, len); \
452 (pctxt)->buffer.byteIndex += len; \
453 (pctxt)->lastChar = (pctxt)->buffer.data[(pctxt)->buffer.byteIndex-1]; } \
454 else return LOG_RTERRNEW (pctxt, RTERR_BUFOVFLW); \
455 } while (0)
456 
457 #define OSRTSAFEMEMCPY1(pctxt,bdata,len,stat) \
458 do { \
459 if (rtxCheckOutputBuffer (pctxt, len) == 0) { \
460 OSCRTLMEMCPY (&(pctxt)->buffer.data[(pctxt)->buffer.byteIndex], bdata, len); \
461 (pctxt)->buffer.byteIndex += len; \
462 (pctxt)->lastChar = (pctxt)->buffer.data[(pctxt)->buffer.byteIndex-1]; \
463 stat = 0; } \
464 else stat = RTERR_BUFOVFLW; \
465 } while (0)
466 
467 #define OSRTGETBUFUTF8LEN(pctxt) \
468 rtxCalcUTF8Len (OSRTBUFPTR (pctxt), OSRTBUFSIZE (pctxt))
469 
470 #define OSRTCHKBUFUTF8LEN(pctxt,lower,upper,stat) \
471 do { size_t nchars = OSRTGETBUFUTF8LEN (pctxt); \
472 stat = (nchars >= lower && nchars <= upper) ? 0 : RTERR_CONSVIO; } while(0)
473 
474 #define OSRTENDOFBUF(pctxt) ((pctxt)->buffer.byteIndex >= (pctxt)->buffer.size)
475 
476 #define OSRTByteAlign(pctxt) \
477 if ((pctxt)->buffer.bitOffset != 8) { \
478  (pctxt)->buffer.byteIndex++; \
479  (pctxt)->buffer.bitOffset = 8; } \
480 
481 
486 #ifdef __cplusplus
487 }
488 #endif
489 
490 #endif
int rtxWriteBytes(OSCTXT *pctxt, const OSOCTET *pdata, size_t nocts)
int rtxReadBytes(OSCTXT *pctxt, OSOCTET *pdata, size_t nocts)
void rtxGetBufLocDescr(OSCTXT *pctxt, OSRTBufLocDescr *pDescr)
void rtxIndentIncr(OSCTXT *pctxt)
struct _OSRTBufLocDescr OSRTBufLocDescr
Definition: rtxSList.h:68
Definition: rtxBuffer.h:50
int rtxCheckInputBuffer(OSCTXT *pctxt, size_t nbytes)
int rtxWriteIndent(OSCTXT *pctxt)
int rtxFlushOutputBuffer(OSCTXT *pctxt)
int rtxLoadInputBuffer(OSCTXT *pctxt, OSSIZE nbytes)
void rtxIndentReset(OSCTXT *pctxt)
void rtxAddBufLocDescr(OSCTXT *pctxt, OSRTSList *pElemList, OSRTBufLocDescr *pDescr)
int rtxReadBytesDynamic(OSCTXT *pctxt, OSOCTET **ppdata, size_t nocts, OSBOOL *pMemAlloc)
OSBOOL rtxCanonicalSort(OSOCTET *refPoint, OSRTSList *pList, OSBOOL normal)
int rtxDecrBufferByteIndex(OSCTXT *pctxt, OSSIZE nbytes)
int rtxCheckOutputBuffer(OSCTXT *pctxt, OSSIZE nbytes)
int rtxEncCanonicalSort(OSCTXT *pctxt, OSCTXT *pMemCtxt, OSRTSList *pList)
void rtxIndentDecr(OSCTXT *pctxt)
OSBOOL rtxIsOutputBufferFlushable(OSCTXT *pctxt)
int rtxExpandOutputBuffer(OSCTXT *pctxt, size_t nbytes)
int rtxReadBytesSafe(OSCTXT *pctxt, OSOCTET *buffer, size_t bufsize, size_t nocts)
size_t rtxGetIndentLevels(OSCTXT *pctxt)
Definition: rtxContext.h:198
int rtxPeekBytes(OSCTXT *pctxt, OSOCTET *pdata, OSSIZE bufsize, OSSIZE nocts, OSSIZE *pactual)
int rtxPeekByte(OSCTXT *pctxt, OSOCTET *pbyte)