2000-12-19 14:05:04 +00:00
|
|
|
/* -*- mode: c; style: linux -*- */
|
|
|
|
|
|
|
|
/* location.h
|
2001-01-12 14:40:26 +00:00
|
|
|
* Copyright (C) 2000-2001 Ximian, Inc.
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
2001-01-12 15:03:02 +00:00
|
|
|
* Written by Bradford Hovinen (hovinen@ximian.com)
|
2000-12-19 14:05:04 +00:00
|
|
|
*
|
|
|
|
* 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, 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., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LOCATION_H
|
|
|
|
#define __LOCATION_H
|
|
|
|
|
|
|
|
#include <gnome.h>
|
2001-01-25 19:44:54 +00:00
|
|
|
#include <tree.h>
|
2001-08-20 15:47:57 +00:00
|
|
|
#include <bonobo.h>
|
|
|
|
|
|
|
|
#include "ConfigArchiver.h"
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
#include "config-log.h"
|
|
|
|
|
|
|
|
#define LOCATION(obj) GTK_CHECK_CAST (obj, location_get_type (), Location)
|
|
|
|
#define LOCATION_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, location_get_type (), LocationClass)
|
|
|
|
#define IS_LOCATION(obj) GTK_CHECK_TYPE (obj, location_get_type ())
|
|
|
|
|
|
|
|
typedef struct _LocationClass LocationClass;
|
|
|
|
typedef struct _LocationPrivate LocationPrivate;
|
|
|
|
typedef struct _Archive Archive;
|
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
typedef ConfigArchiver_ContainmentType ContainmentType;
|
|
|
|
typedef ConfigArchiver_StoreType StoreType;
|
2001-02-20 02:43:35 +00:00
|
|
|
|
2000-12-19 14:05:04 +00:00
|
|
|
typedef int (*LocationBackendCB) (Location *, gchar *, gpointer);
|
|
|
|
|
|
|
|
struct _Location
|
|
|
|
{
|
2001-08-20 15:47:57 +00:00
|
|
|
BonoboXObject object;
|
2000-12-19 14:05:04 +00:00
|
|
|
|
|
|
|
LocationPrivate *p;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _LocationClass
|
|
|
|
{
|
2001-08-20 15:47:57 +00:00
|
|
|
BonoboXObjectClass parent;
|
|
|
|
|
|
|
|
POA_ConfigArchiver_Location__epv epv;
|
2001-05-05 03:05:20 +00:00
|
|
|
|
|
|
|
gboolean (*do_rollback) (Location *location,
|
|
|
|
gchar *backend_id,
|
|
|
|
xmlDocPtr xml_doc);
|
2000-12-19 14:05:04 +00:00
|
|
|
};
|
|
|
|
|
2002-04-11 19:13:49 +00:00
|
|
|
GType location_get_type (void);
|
2001-08-20 15:47:57 +00:00
|
|
|
|
|
|
|
BonoboObject *location_new (Archive *archive,
|
|
|
|
const gchar *locid,
|
|
|
|
const gchar *label,
|
|
|
|
Location *parent);
|
|
|
|
BonoboObject *location_open (Archive *archive,
|
|
|
|
const gchar *locid);
|
|
|
|
|
|
|
|
void location_delete (Location *location);
|
|
|
|
|
|
|
|
gchar *location_get_storage_filename (Location *location,
|
|
|
|
const gchar *backend_id,
|
|
|
|
gboolean is_default);
|
|
|
|
gchar *location_get_rollback_filename (Location *location,
|
|
|
|
struct tm *date,
|
|
|
|
gint steps,
|
|
|
|
const gchar *backend_id,
|
|
|
|
gboolean parent_chain);
|
|
|
|
|
2001-09-12 15:30:41 +00:00
|
|
|
void location_storage_complete (Location *location,
|
|
|
|
const gchar *filename);
|
|
|
|
|
2001-08-20 15:47:57 +00:00
|
|
|
gint location_store (Location *location,
|
|
|
|
gchar *backend_id,
|
|
|
|
FILE *input,
|
|
|
|
ConfigArchiver_StoreType store_type);
|
|
|
|
void location_store_xml (Location *location,
|
|
|
|
gchar *backend_id,
|
|
|
|
xmlDocPtr xml_doc,
|
|
|
|
ConfigArchiver_StoreType store_type);
|
|
|
|
|
|
|
|
void location_rollback_backends_to (Location *location,
|
|
|
|
struct tm *date,
|
|
|
|
gint steps,
|
|
|
|
GList *backends,
|
|
|
|
gboolean parent_chain);
|
|
|
|
|
|
|
|
const struct tm *location_get_modification_time (Location *location,
|
|
|
|
const gchar *backend_id);
|
|
|
|
|
|
|
|
ContainmentType location_contains (Location *location,
|
|
|
|
const gchar *backend_id);
|
|
|
|
gint location_add_backend (Location *location,
|
|
|
|
const gchar *backend_id,
|
|
|
|
ContainmentType type);
|
|
|
|
void location_remove_backend (Location *location,
|
|
|
|
const gchar *backend_id);
|
|
|
|
|
|
|
|
void location_foreach_backend (Location *location,
|
|
|
|
LocationBackendCB callback,
|
|
|
|
gpointer data);
|
|
|
|
|
|
|
|
GList *location_find_path_from_common_parent (Location *location,
|
|
|
|
Location *location2);
|
|
|
|
|
|
|
|
Location *location_get_parent (Location *location);
|
|
|
|
const gchar *location_get_path (Location *location);
|
|
|
|
const gchar *location_get_label (Location *location);
|
|
|
|
const gchar *location_get_id (Location *location);
|
|
|
|
|
|
|
|
void location_set_id (Location *location,
|
|
|
|
const gchar *locid);
|
|
|
|
|
|
|
|
gint location_store_full_snapshot (Location *location);
|
|
|
|
|
|
|
|
GList *location_get_changed_backends (Location *location,
|
|
|
|
Location *location1);
|
|
|
|
gboolean location_does_backend_change (Location *location,
|
|
|
|
Location *location1,
|
|
|
|
const gchar *backend_id);
|
|
|
|
|
|
|
|
ConfigLog *location_get_config_log (Location *location);
|
|
|
|
|
|
|
|
void location_garbage_collect (Location *location);
|
2001-08-03 14:38:09 +00:00
|
|
|
|
2001-08-28 13:01:54 +00:00
|
|
|
gboolean location_is_deleted (const Location *location);
|
|
|
|
|
2000-12-19 14:05:04 +00:00
|
|
|
#endif /* __LOCATION */
|