/* GDA common library * Copyright (C) 1998-2002 The GNOME Foundation. * * AUTHORS: * Rodrigo Moya * * This Library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This Library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this Library; see the file COPYING.LIB. If not, * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #if !defined(__gda_config_h__) # define __gda_config_h__ #include #include #include G_BEGIN_DECLS /* * Basic configuration access */ gchar *gda_config_get_string (const gchar *path); gint gda_config_get_int (const gchar *path); gdouble gda_config_get_float (const gchar *path); gboolean gda_config_get_boolean (const gchar *path); gboolean gda_config_set_string (const gchar *path, const gchar *new_value); gboolean gda_config_set_int (const gchar *path, gint new_value); gboolean gda_config_set_float (const gchar *path, gdouble new_value); gboolean gda_config_set_boolean (const gchar *path, gboolean new_value); void gda_config_remove_section (const gchar *path); void gda_config_remove_key (const gchar *path); gboolean gda_config_has_section (const gchar *path); gboolean gda_config_has_key (const gchar *path); GList *gda_config_list_sections (const gchar *path); GList *gda_config_list_keys (const gchar *path); gchar *gda_config_get_type (const gchar *path); void gda_config_free_list (GList *list); typedef void (* GdaConfigListenerFunc) (const gchar *path, gpointer user_data); guint gda_config_add_listener (const gchar *path, GdaConfigListenerFunc func, gpointer user_data); void gda_config_remove_listener (guint id); /* * Providers configuration */ typedef struct _GdaProviderInfo GdaProviderInfo; /* * REM about the @gda_params and @dsn_spec fields: * * The @gda_params holds all the parameters required to create a DSN, and is historically the * way to create a DSN. However the @dsn_spec field has been introduced to produce a more * detailled spec on what is required to create a DSN. * * When both fields are present, they are guaranted to list the _same_ parameters, using * different representations. */ struct _GdaProviderInfo { gchar *id; gchar *location; gchar *description; GdaParameterList *gda_params; /* Contains a list of GdaParameter to create a DSN */ gchar *dsn_spec; /* XML string with all the parameters required to create a DSN */ }; #define GDA_TYPE_PROVIDER_INFO (gda_provider_info_get_type ()) GType gda_provider_info_get_type (void); GdaProviderInfo* gda_provider_info_copy (GdaProviderInfo *src); void gda_provider_info_free (GdaProviderInfo *provider_info); GList *gda_config_get_provider_list (void); void gda_config_free_provider_list (GList *list); GdaProviderInfo *gda_config_get_provider_by_name (const gchar *name); GdaDataModel *gda_config_get_provider_model (void); /* * Data sources configuration */ typedef struct _GdaDataSourceInfo GdaDataSourceInfo; struct _GdaDataSourceInfo { gchar *name; gchar *provider; gchar *cnc_string; gchar *description; gchar *username; gchar *password; gboolean is_global; }; #define GDA_TYPE_DATA_SOURCE_INFO (gda_data_source_info_get_type ()) GType gda_data_source_info_get_type (void); GdaDataSourceInfo *gda_data_source_info_copy (GdaDataSourceInfo *src); gboolean gda_data_source_info_equal (GdaDataSourceInfo *info1, GdaDataSourceInfo *info2); GdaDataSourceInfo *gda_config_find_data_source (const gchar *name); void gda_data_source_info_free (GdaDataSourceInfo *info); GList *gda_config_get_data_source_list (void); void gda_config_free_data_source_list (GList *list); GdaDataModel *gda_config_get_data_source_model (void); gboolean gda_config_can_modify_global_config (void); gboolean gda_config_save_data_source (const gchar *name, const gchar *provider, const gchar *cnc_string, const gchar *description, const gchar *username, const gchar *password, gboolean is_global); gboolean gda_config_save_data_source_info (GdaDataSourceInfo *dsn_info); void gda_config_remove_data_source (const gchar *name); G_END_DECLS #endif