00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef _BITOP_H
00032 #define _BITOP_H
00033
00034 #include <stdlib.h>
00035 #include <string.h>
00036 #include <sys/types.h>
00037
00038 #ifdef HAVE_CONFIG_H
00039 #include "config.h"
00040 #endif
00041
00042 #ifdef WIN32
00043 #ifndef INLINE
00044 #define INLINE __inline
00045 #endif
00046
00047 #else
00048
00049 #ifndef INLINE
00050 #define INLINE inline
00051 #endif
00052 #endif
00053
00054 typedef struct _BITOP {
00055 unsigned char *pucBitBuffer;
00056 unsigned int uiBitBufferSize;
00057 unsigned int uiMaxBits;
00058 } BITOP;
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074 static INLINE int boInitStaticBITOP(BITOP *BitOp,int iBytes,unsigned char *buf)
00075 {
00076 if(iBytes < 1 || !buf || !BitOp)
00077 return 1;
00078
00079 BitOp->pucBitBuffer = buf;
00080 BitOp->uiBitBufferSize = (unsigned int)iBytes;
00081 BitOp->uiMaxBits = (unsigned int)(iBytes << 3);
00082
00083 memset(buf, 0x00, iBytes);
00084
00085 return 0;
00086 }
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108 static INLINE int boInitBITOP(BITOP *BitOp, int iSize)
00109 {
00110 int iBytes;
00111
00112
00113
00114
00115 if(iSize < 1)
00116 {
00117 return 1;
00118 }
00119
00120
00121
00122
00123
00124
00125 if(BitOp->pucBitBuffer)
00126 {
00127 return 0;
00128 }
00129
00130 iBytes = iSize >> 3;
00131 if(iSize & 7)
00132 {
00133 iBytes++;
00134 }
00135
00136 BitOp->pucBitBuffer = (unsigned char *)calloc(1, iBytes);
00137 if(BitOp->pucBitBuffer == NULL)
00138 {
00139 return 1;
00140 }
00141
00142 BitOp->uiBitBufferSize = (unsigned int)iBytes;
00143 BitOp->uiMaxBits = (unsigned int)iSize;
00144
00145 return 0;
00146 }
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163 static INLINE int boResetBITOP(BITOP *BitOp)
00164 {
00165 memset(BitOp->pucBitBuffer, 0x00, BitOp->uiBitBufferSize);
00166 return 0;
00167 }
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180
00181
00182
00183
00184
00185 static INLINE int boSetBit(BITOP *BitOp, unsigned int uiPos)
00186 {
00187 unsigned char mask;
00188
00189
00190
00191
00192 if(BitOp->uiMaxBits <= uiPos)
00193 {
00194 return 1;
00195 }
00196
00197 mask = 0x80 >> (uiPos & 7);
00198
00199 BitOp->pucBitBuffer[uiPos >> 3] |= mask;
00200
00201 return 0;
00202 }
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216
00217
00218
00219 static INLINE int boIsBitSet(BITOP *BitOp, unsigned int uiPos)
00220 {
00221 unsigned char mask;
00222
00223
00224
00225
00226 if(BitOp->uiMaxBits <= uiPos)
00227 {
00228 return 0;
00229 }
00230
00231 mask = 0x80 >> (uiPos & 7);
00232
00233 return (mask & BitOp->pucBitBuffer[uiPos >> 3]);
00234 }
00235
00236
00237
00238
00239
00240
00241
00242
00243
00244
00245
00246
00247
00248
00249
00250
00251
00252 static INLINE void boClearBit(BITOP *BitOp, unsigned int uiPos)
00253 {
00254 unsigned char mask;
00255
00256
00257
00258
00259 if(BitOp->uiMaxBits <= uiPos)
00260 {
00261 return ;
00262 }
00263
00264 mask = 0x80 >> (uiPos & 7);
00265
00266 BitOp->pucBitBuffer[uiPos >> 3] &= ~mask;
00267 }
00268
00269
00270
00271
00272
00273
00274
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285 static INLINE void boClearByte(BITOP *BitOp, unsigned int uiPos)
00286 {
00287
00288
00289
00290 if(BitOp->uiMaxBits <= uiPos)
00291 {
00292 return ;
00293 }
00294
00295 BitOp->pucBitBuffer[uiPos >> 3] = 0;
00296 }
00297
00298 #endif