clamav/clamav-devel/libclamav/line.c

146 lines
2.9 KiB
C
Raw Normal View History

2004-08-20 11:58:20 +00:00
/*
* Copyright (C) 2004 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.
*
* $Log: line.c,v $
2004-09-30 09:02:21 +00:00
* Revision 1.5 2004/09/30 08:58:56 nigelhorne
* Remove empty lines
*
* Revision 1.4 2004/09/21 14:55:26 nigelhorne
* Handle blank lines in text/plain messages
*
* Revision 1.3 2004/08/25 12:30:36 nigelhorne
* Use memcpy rather than strcpy
*
2004-08-21 12:01:07 +00:00
* Revision 1.2 2004/08/21 11:57:57 nigelhorne
* Use line.[ch]
*
2004-08-20 11:58:20 +00:00
* Revision 1.1 2004/08/20 11:58:20 nigelhorne
* First draft
*
*/
2004-09-30 09:02:21 +00:00
static char const rcsid[] = "$Id: line.c,v 1.5 2004/09/30 08:58:56 nigelhorne Exp $";
2004-08-20 11:58:20 +00:00
#if HAVE_CONFIG_H
#include "clamav-config.h"
#endif
#include <stdio.h>
#include <string.h>
#include <assert.h>
2004-08-20 11:58:20 +00:00
#include "line.h"
#include "others.h"
#ifndef CL_DEBUG
#define NDEBUG /* map CLAMAV debug onto standard */
#endif
2004-08-21 12:01:07 +00:00
#ifdef OLD
2004-08-20 11:58:20 +00:00
line_t *
lineCreate(const char *data)
{
2004-08-21 12:01:07 +00:00
line_t *ret = (line_t *)li_malloc(sizeof(struct line));
2004-08-20 11:58:20 +00:00
if(ret == NULL)
return NULL;
2004-08-21 12:01:07 +00:00
ret->l_str = strdup(data);
if(ret->l_str == NULL) {
2004-08-20 11:58:20 +00:00
free(ret);
return NULL;
}
ret->l_refs = 1;
return ret;
}
line_t *
lineLink(line_t *line)
{
line->l_refs++;
return line;
}
line_t *
lineUnlink(line_t *line)
{
2004-08-21 12:01:07 +00:00
/*printf("%d:\n\t'%s'\n", line->l_refs, line->l_str);*/
2004-08-20 11:58:20 +00:00
if(--line->l_refs == 0) {
2004-08-21 12:01:07 +00:00
free(line->l_str);
free(line);
return NULL;
}
return line;
}
const char *
lineGetData(const line_t *line)
{
return line ? line->l_str : NULL;
}
#else
line_t *
lineCreate(const char *data)
{
const size_t size = strlen(data);
line_t *ret = (line_t *)cli_malloc(size + 2);
2004-08-21 12:01:07 +00:00
if(ret == NULL)
return NULL;
ret[0] = (char)1;
/*strcpy(&ret[1], data);*/
memcpy(&ret[1], data, size);
ret[size + 1] = '\0';
2004-08-21 12:01:07 +00:00
return ret;
}
line_t *
lineLink(line_t *line)
{
assert(line != NULL);
2004-09-30 09:02:21 +00:00
if((unsigned char)line[0] == 255) {
cli_dbgmsg("lineLink: linkcount too large (%s)\n", lineGetData(line));
return lineCreate(lineGetData(line));
2004-08-21 12:01:07 +00:00
}
line[0]++;
2004-09-30 09:02:21 +00:00
/*printf("%d:\n\t'%s'\n", (int)line[0], &line[1]);*/
2004-08-21 12:01:07 +00:00
return line;
}
line_t *
lineUnlink(line_t *line)
{
/*printf("%d:\n\t'%s'\n", (int)line[0], &line[1]);*/
if(--line[0] == 0) {
2004-08-20 11:58:20 +00:00
free(line);
return NULL;
}
return line;
}
const char *
lineGetData(const line_t *line)
{
2004-08-21 12:01:07 +00:00
return line ? &line[1] : NULL;
2004-08-20 11:58:20 +00:00
}
2004-08-21 12:01:07 +00:00
#endif