2003-07-29 15:48:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Nigel Horne <njh@bandsman.co.uk>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2004-08-22 10:37:32 +00:00
|
|
|
#ifndef __BLOB_H
|
|
|
|
#define __BLOB_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resizable chunk of memory
|
|
|
|
*/
|
2003-07-29 15:48:06 +00:00
|
|
|
typedef struct blob {
|
|
|
|
char *name; /* filename */
|
|
|
|
unsigned char *data; /* the stuff itself */
|
|
|
|
unsigned long len; /* number of bytes of data so far */
|
|
|
|
unsigned long size; /* number of bytes allocated to data so far */
|
2004-02-15 08:49:05 +00:00
|
|
|
int isClosed;
|
2003-07-29 15:48:06 +00:00
|
|
|
#ifdef CL_DEBUG
|
|
|
|
object_type magic; /* verify that this is a blob */
|
|
|
|
#endif
|
|
|
|
} blob;
|
|
|
|
|
|
|
|
blob *blobCreate(void);
|
|
|
|
void blobDestroy(blob *b);
|
|
|
|
void blobArrayDestroy(blob *b[], int n);
|
2004-08-22 15:10:32 +00:00
|
|
|
void blobSetFilename(blob *b, const char *dir, const char *filename);
|
2003-07-29 15:48:06 +00:00
|
|
|
const char *blobGetFilename(const blob *b);
|
2005-04-04 13:52:46 +00:00
|
|
|
int blobAddData(blob *b, const unsigned char *data, size_t len);
|
2004-01-14 10:09:59 +00:00
|
|
|
unsigned char *blobGetData(const blob *b);
|
2003-07-29 15:48:06 +00:00
|
|
|
unsigned long blobGetDataSize(const blob *b);
|
2004-02-15 08:49:05 +00:00
|
|
|
void blobClose(blob *b);
|
|
|
|
int blobcmp(const blob *b1, const blob *b2);
|
2004-03-25 22:42:00 +00:00
|
|
|
void blobGrow(blob *b, size_t len);
|
2004-08-22 10:37:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Like a blob, but associated with a file
|
|
|
|
*/
|
|
|
|
typedef struct fileblob {
|
|
|
|
FILE *fp;
|
|
|
|
blob b;
|
2005-03-16 14:47:26 +00:00
|
|
|
int isNotEmpty;
|
2004-08-22 10:37:32 +00:00
|
|
|
} fileblob;
|
|
|
|
|
|
|
|
fileblob *fileblobCreate(void);
|
|
|
|
void fileblobDestroy(fileblob *fb);
|
|
|
|
void fileblobSetFilename(fileblob *fb, const char *dir, const char *filename);
|
|
|
|
const char *fileblobGetFilename(const fileblob *fb);
|
2005-04-04 13:52:46 +00:00
|
|
|
int fileblobAddData(fileblob *fb, const unsigned char *data, size_t len);
|
2004-09-06 08:34:47 +00:00
|
|
|
void sanitiseName(char *name);
|
2004-08-22 10:37:32 +00:00
|
|
|
|
2005-03-20 09:09:25 +00:00
|
|
|
/* Maximum filenames under various systems */
|
|
|
|
#ifndef NAME_MAX /* e.g. Linux */
|
|
|
|
# ifdef MAXNAMELEN /* e.g. Solaris */
|
|
|
|
# define NAME_MAX MAXNAMELEN
|
|
|
|
# else
|
|
|
|
# ifdef FILENAME_MAX /* e.g. SCO */
|
|
|
|
# define NAME_MAX FILENAME_MAX
|
|
|
|
# else
|
|
|
|
# define NAME_MAX 256
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2004-08-22 10:37:32 +00:00
|
|
|
#endif /*_BLOB_H*/
|