/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* gsf-outfile-stdio.c: A directory tree wrapper for Outfile
*
* Copyright (C) 2004-2006 Novell, Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2.1 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* 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 Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#include <gsf-config.h>
#include <gsf/gsf-outfile-impl.h>
#include <gsf/gsf-outfile-stdio.h>
#include <gsf/gsf-output-impl.h>
#include <gsf/gsf-output-stdio.h>
#include <gsf/gsf-impl-utils.h>
#include <gsf/gsf-utils.h>
#include <glib/gstdio.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
static GObjectClass *parent_class;
struct _GsfOutfileStdio {
GsfOutfile parent;
char *root;
};
typedef GsfOutfileClass GsfOutfileStdioClass;
static void
gsf_outfile_stdio_finalize (GObject *obj)
{
GsfOutfileStdio *ofs = GSF_OUTFILE_STDIO (obj);
g_free (ofs->root);
parent_class->finalize (obj);
}
static GsfOutput *
gsf_outfile_stdio_new_child (GsfOutfile *parent,
char const *name, gboolean is_dir,
G_GNUC_UNUSED char const *first_property_name,
G_GNUC_UNUSED va_list args)
{
GsfOutfileStdio *ofs = GSF_OUTFILE_STDIO (parent);
GsfOutput *child;
char *path = g_build_filename (ofs->root, name, NULL);
/* FIXME FIXME FIXME FIX : allow args */
if (is_dir)
child = (GsfOutput *)gsf_outfile_stdio_new (path, NULL);
else
child = gsf_output_stdio_new (path, NULL);
g_free (path);
return child;
}
static gboolean
gsf_outfile_stdio_close (G_GNUC_UNUSED GsfOutput *output)
{
return TRUE;
}
static void
gsf_outfile_stdio_init (GsfOutfileStdio *ofs)
{
ofs->root = NULL;
}
static void
gsf_outfile_stdio_class_init (GObjectClass *gobject_class)
{
GsfOutputClass *output_class = GSF_OUTPUT_CLASS (gobject_class);
GsfOutfileClass *outfile_class = GSF_OUTFILE_CLASS (gobject_class);
parent_class = g_type_class_peek (GSF_OUTFILE_TYPE);
gobject_class->finalize = gsf_outfile_stdio_finalize;
output_class->Close = gsf_outfile_stdio_close;
output_class->Seek = NULL;
output_class->Write = NULL;
output_class->Vprintf = NULL;
outfile_class->new_child = gsf_outfile_stdio_new_child;
}
GSF_CLASS (GsfOutfileStdio, gsf_outfile_stdio,
gsf_outfile_stdio_class_init, gsf_outfile_stdio_init,
GSF_OUTFILE_TYPE)
/**
* gsf_outfile_stdio_new_valist :
* @root : root directory in utf8.
* @err : optionally NULL.
* @first_property_name: name of first property to set
* @var_args: a %NULL-terminated #va_list
*
* Returns: a new outfile or NULL.
**/
GsfOutfile *
gsf_outfile_stdio_new_valist (char const *root, GError **err,
char const *first_property_name,
va_list var_args)
{
GsfOutfileStdio *ofs;
if (0 != g_mkdir (root, 0777)) {
if (err != NULL) {
int save_errno = errno;
char *utf8name = g_filename_display_name (root);
*err = g_error_new (gsf_output_error_id (), 0,
"%s: %s",
utf8name, g_strerror (save_errno));
g_free (utf8name);
}
return NULL;
}
ofs = (GsfOutfileStdio *) g_object_new_valist (GSF_OUTFILE_STDIO_TYPE,
first_property_name, var_args);
ofs->root = g_strdup (root);
gsf_output_set_name_from_filename (GSF_OUTPUT (ofs), root);
return GSF_OUTFILE (ofs);
}
/**
* gsf_outfile_stdio_new_full :
* @root : root directory in utf8.
* @err : optionally NULL.
* @first_property_name: name of first property to set
* @Varargs: value of first property, followed by more properties,
* %NULL-terminated
*
* Returns: a new outfile or NULL.
**/
GsfOutfile *
gsf_outfile_stdio_new_full (char const *root, GError **err,
gchar const *first_property_name,
...)
{
GsfOutfile *res;
va_list var_args;
va_start (var_args, first_property_name);
res = gsf_outfile_stdio_new_valist (root, err, first_property_name, var_args);
va_end (var_args);
return res;
}
/**
* gsf_outfile_stdio_new :
* @root : root directory in utf8.
* @err : optionally NULL.
*
* Returns: a new outfile or NULL.
**/
GsfOutfile *
gsf_outfile_stdio_new (char const *root, GError **err)
{
return gsf_outfile_stdio_new_full (root, err, NULL);
}
syntax highlighted by Code2HTML, v. 0.9.1