~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/azio.h

  • Committer: Monty Taylor
  • Date: 2008-10-16 09:12:23 UTC
  • mto: (511.1.6 codestyle)
  • mto: This revision was merged to the branch mainline in revision 521.
  • Revision ID: monty@inaugust.com-20081016091223-17ngih0qu9vssjs3
We pass -Wunused-macros now!

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
  (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
34
34
*/
35
35
 
36
 
#ifndef PLUGIN_ARCHIVE_AZIO_H
37
 
#define PLUGIN_ARCHIVE_AZIO_H
 
36
#ifndef __AZIO_H__
 
37
#define __AZIO_H__
38
38
 
39
39
/* We currently allow this on all platforms */
40
40
#define AZIO_AIO
41
41
 
42
 
#include <drizzled/common.h>
43
 
#include "drizzled/internal/my_sys.h"
 
42
#include <drizzled/global.h>
 
43
#include <libdrizzle/drizzle_com.h>
 
44
#include <mysys/my_sys.h>
44
45
 
45
46
#include <zlib.h>
46
47
 
242
243
  z_stream stream;
243
244
  int      z_err;   /* error code for last stream operation */
244
245
  int      z_eof;   /* set if end of input file */
245
 
  int     file;   /* .gz file */
 
246
  File     file;   /* .gz file */
246
247
  Byte     *inbuf;  /* input buffer */
247
248
  Byte     buffer1[AZ_BUFSIZE_READ];  /* input buffer */
248
249
  Byte     buffer2[AZ_BUFSIZE_READ];  /* input buffer */
297
298
   can be checked to distinguish the two cases (if errno is zero, the
298
299
   zlib error is Z_MEM_ERROR).  */
299
300
 
300
 
int azdopen(azio_stream *s,int fd, int Flags);
 
301
int azdopen(azio_stream *s,File fd, int Flags); 
301
302
/*
302
303
     azdopen() associates a azio_stream with the file descriptor fd.  File
303
304
   descriptors are obtained from calls like open, dup, creat, pipe or
310
311
   the (de)compression state.
311
312
*/
312
313
 
 
314
 
 
315
unsigned int azread_internal( azio_stream *s, voidp buf, unsigned int len, int *error);
 
316
/*
 
317
   This function is legacy, do not use.
 
318
 
 
319
     Reads the given number of uncompressed bytes from the compressed file.
 
320
   If the input file was not in gzip format, gzread copies the given number
 
321
   of bytes into the buffer.
 
322
     gzread returns the number of uncompressed bytes actually read (0 for
 
323
   end of file, -1 for error). */
 
324
 
313
325
extern int azflush(azio_stream *file, int flush);
314
326
/*
315
327
     Flushes all pending output into the compressed file. The parameter
358
370
size_t azwrite_row(azio_stream *s, void *buf, unsigned int len);
359
371
size_t azread_row(azio_stream *s, int *error);
360
372
 
361
 
extern int azwrite_frm (azio_stream *s, const char *blob, unsigned int length);
 
373
extern int azwrite_frm (azio_stream *s, char *blob, unsigned int length);
362
374
extern int azread_frm (azio_stream *s, char *blob);
363
 
extern int azwrite_comment (azio_stream *s, const char *blob, unsigned int length);
 
375
extern int azwrite_comment (azio_stream *s, char *blob, unsigned int length);
364
376
extern int azread_comment (azio_stream *s, char *blob);
365
377
 
366
378
#ifdef  __cplusplus
367
379
}
368
380
#endif
369
381
 
370
 
#endif /* PLUGIN_ARCHIVE_AZIO_H */
 
382
#endif /* AZIO_H */