gnucash/src/app-utils/file-utils.c

176 lines
4.8 KiB
C
Raw Normal View History

/********************************************************************\
* file-utils.c -- simple file utilities *
* Copyright (C) 1997 Robin D. Clark <rclark@cs.hmc.edu> *
* Copyright (C) 1998 Rob Browning *
* Copyright (C) 1998-2000 Linas Vepstas <linas@linas.org> *
* *
* 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. *
\********************************************************************/
#include "config.h"
#include <errno.h>
#include <fcntl.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <glib.h>
#include <libguile.h>
#include "guile-mappings.h"
#include "file-utils.h"
#include "messages.h"
#include "gnc-engine-util.h"
/* This static indicates the debugging module that this .o belongs to. */
static short module = MOD_GUILE;
/********************************************************************\
\********************************************************************/
char *
gncFindFile (const char * filename)
{
char *full_filename = NULL;
char *g_filename;
SCM find_doc_file;
SCM scm_filename;
SCM scm_result;
if (!filename || *filename == '\0')
return NULL;
find_doc_file = scm_c_eval_string("gnc:find-doc-file");
scm_filename = scm_makfrom0str ((char *) filename);
scm_result = scm_call_1(find_doc_file, scm_filename);
if (SCM_STRINGP(scm_result))
full_filename = gh_scm2newstr(scm_result, NULL);
g_filename = g_strdup (full_filename);
if (full_filename)
free (full_filename);
return g_filename;
}
/********************************************************************\
* htmlRead *
* *
* Args: file - the name of the html file to read *
* data - pointer to set to the buffer of data read in *
* Return: size of data read *
* Global: helpPath - the path to the help files *
\********************************************************************/
int
gncReadFile (const char * file, char ** data)
{
char *buf=NULL;
char *filename;
int size=0;
int fd;
/* construct absolute path -- twiddle the relative path we received */
if (!file || file[0] == '\0') return 0;
/* take absolute paths without searching */
if (file[0] != '/')
filename = gncFindFile (file);
else
filename = g_strdup (file);
if (!filename) return 0;
/* Open file: */
fd = open( filename, O_RDONLY );
g_free(filename); filename = NULL;
if( fd == -1 )
{
int norr = errno;
PERR ("file %s: (%d) %s \n", file, norr, strerror(norr));
return 0;
}
/* Find size: */
size = lseek( fd, 0, SEEK_END );
lseek( fd, 0, SEEK_SET );
/* Allocate memory */
buf = g_new(char, size + 1);
/* read in file */
if( read(fd,buf,size) == -1 )
{
g_free(buf);
buf=NULL;
}
else
{
buf[size] = '\0';
}
close(fd);
*data = buf;
return size;
}
/**
* gnc_getline -- read a line from the input file, up to and including
* the newline.
*
* Args: line - pointer to hold the buffer for the whole line (allocated by
* this function)
* file - the file from which to read
* Return: the number of bytes read
*
* The caller MUST g_free() the line returned from this call in all
* cases where it is non-NULL!
*/
gint64
gnc_getline (gchar **line, FILE *file)
{
char str[BUFSIZ];
gint64 len;
GString *gs;
g_return_val_if_fail(line, -1);
*line = NULL;
g_return_val_if_fail(file, -1);
gs = g_string_new("");
while (fgets(str, sizeof(str), file) != NULL) {
g_string_append(gs, str);
len = strlen(str);
if (str[len-1] == '\n')
break;
}
len = gs->len;
*line = gs->str;
g_string_free(gs, FALSE);
return len;
}
/* ----------------------- END OF FILE --------------------- */