[gnome-color-manager/colord: 13/72] Do not write an xsane.rc file, xsane is too broken



commit 8d19898ce37f299629d4407c373d77dfe03ebc5b
Author: Richard Hughes <richard hughsie com>
Date:   Sun Jan 16 15:14:05 2011 +0000

    Do not write an xsane.rc file, xsane is too broken

 src/gcm-device-sane.c |  249 -------------------------------------------------
 1 files changed, 0 insertions(+), 249 deletions(-)
---
diff --git a/src/gcm-device-sane.c b/src/gcm-device-sane.c
index 7e478fd..86466e1 100644
--- a/src/gcm-device-sane.c
+++ b/src/gcm-device-sane.c
@@ -50,115 +50,6 @@ enum {
 
 G_DEFINE_TYPE (GcmDeviceSane, gcm_device_sane, GCM_TYPE_DEVICE)
 
-typedef struct {
-	gchar	*key;
-	gchar	*value;
-} GcmDeviceSaneKeyPair;
-
-/**
- * gcm_device_sane_free_key_pair:
- **/
-static void
-gcm_device_sane_free_key_pair (GcmDeviceSaneKeyPair *key_pair)
-{
-	g_free (key_pair->key);
-	g_free (key_pair->value);
-	g_free (key_pair);
-}
-
-/**
- * gcm_device_sane_get_key_pairs_from_filename:
- **/
-static GPtrArray *
-gcm_device_sane_get_key_pairs_from_filename (const gchar *filename, GError **error)
-{
-	gboolean ret;
-	gchar *contents = NULL;
-	GPtrArray *array = NULL;
-	guint i;
-	gchar **split = NULL;
-	GcmDeviceSaneKeyPair *key_pair;
-
-	/* get contents */
-	ret = g_file_get_contents (filename, &contents, NULL, error);
-	if (!ret)
-		goto out;
-
-	/* parse */
-	split = g_strsplit (contents, "\n", -1);
-	array = g_ptr_array_new_with_free_func ((GDestroyNotify) gcm_device_sane_free_key_pair);
-	for (i=0; split[i] != NULL; i+=2) {
-		key_pair = g_new0 (GcmDeviceSaneKeyPair, 1);
-		if (split[i] == NULL || split[i+1] == NULL)
-			break;
-		key_pair->key = g_strdup (split[i]);
-		key_pair->value = g_strdup (split[i+1]);
-		g_ptr_array_add (array, key_pair);
-	}
-out:
-	g_free (contents);
-	g_strfreev (split);
-	return array;
-}
-
-/**
- * gcm_device_sane_get_key_pairs_to_filename:
- **/
-static gboolean
-gcm_device_sane_get_key_pairs_to_filename (const gchar *filename, GPtrArray *array, GError **error)
-{
-	gboolean ret;
-	GString *string;
-	guint i;
-	GcmDeviceSaneKeyPair *key_pair;
-
-	/* turn the array into a string */
-	string = g_string_new ("");
-	for (i=0; i<array->len; i++) {
-		key_pair = g_ptr_array_index (array, i);
-		g_string_append (string, key_pair->key);
-		g_string_append_c (string, '\n');
-		g_string_append (string, key_pair->value);
-		g_string_append_c (string, '\n');
-	}
-
-	/* save to file */
-	ret = g_file_set_contents (filename, string->str, -1, error);
-	if (!ret)
-		goto out;
-out:
-	g_string_free (string, TRUE);
-	return ret;
-}
-
-/**
- * gcm_device_sane_set_key_pair_value:
- **/
-static void
-gcm_device_sane_set_key_pair_value (GPtrArray *array, const gchar *key, const gchar *value)
-{
-	guint i;
-	GcmDeviceSaneKeyPair *key_pair;
-
-	/* find and replace */
-	for (i=0; i<array->len; i++) {
-		key_pair = g_ptr_array_index (array, i);
-		if (g_strcmp0 (key_pair->key, key) == 0) {
-			g_free (key_pair->value);
-			key_pair->value = g_strdup (value);
-			goto out;
-		}
-	}
-
-	/* not found, create new */
-	key_pair = g_new0 (GcmDeviceSaneKeyPair, 1);
-	key_pair->key = g_strdup (key);
-	key_pair->value = g_strdup (value);
-	g_ptr_array_add (array, key_pair);
-out:
-	return;
-}
-
 /**
  * gcm_device_sane_set_from_device:
  **/
@@ -205,143 +96,6 @@ gcm_device_sane_set_from_device (GcmDevice *device, const SANE_Device *sane_devi
 }
 
 /**
- * gcm_device_sane_apply_global:
- *
- * Return value: %TRUE for success;
- **/
-static gboolean
-gcm_device_sane_apply_global (GcmDeviceSane *device_sane, GError **error)
-{
-	gboolean ret = FALSE;
-	gchar *filename = NULL;
-	GPtrArray *array;
-
-	filename = g_build_filename (g_get_home_dir (), ".sane", "xsane", "xsane.rc", NULL);
-
-	/* get existing file, if it exists */
-	array = gcm_device_sane_get_key_pairs_from_filename (filename, error);
-	if (array == NULL)
-		goto out;
-
-	/* set some keys */
-	gcm_device_sane_set_key_pair_value (array, "\"display-icm-profile\"", "\"\"");
-	gcm_device_sane_set_key_pair_value (array, "\"working-color-space-icm-profile\"", "\"\"");
-	gcm_device_sane_set_key_pair_value (array, "\"auto-correct-colors\"", "1");
-
-	/* ensure directory exists */
-	gcm_utils_mkdir_for_filename  (filename, NULL);
-
-	/* save new file */
-	ret = gcm_device_sane_get_key_pairs_to_filename (filename, array, error);
-	if (!ret)
-		goto out;
-out:
-	if (array != NULL)
-		g_ptr_array_unref (array);
-	g_free (filename);
-	return ret;
-}
-
-/**
- * gcm_device_sane_remove_spaces:
- *
- * Return value: %TRUE for success;
- **/
-static void
-gcm_device_sane_remove_spaces (gchar *text)
-{
-	guint i;
-	guint j = 0;
-
-	for (i=0; text[i] != '\0'; i++) {
-		if (i != j)
-			text[j] = text[i];
-		if (text[i] != ' ')
-			j++;
-	}
-	text[j] = '\0';
-}
-
-/**
- * gcm_device_sane_apply_device:
- *
- * Return value: %TRUE for success;
- **/
-static gboolean
-gcm_device_sane_apply_device (GcmDeviceSane *device_sane, GError **error)
-{
-	gboolean ret = FALSE;
-	gchar *filename = NULL;
-	gchar *device_filename = NULL;
-	const gchar *profile_filename = NULL;
-	gchar *profile_filename_quoted = NULL;
-	GPtrArray *array;
-	const gchar *manufacturer = NULL;
-	const gchar *model = NULL;
-	GcmDevice *device = GCM_DEVICE (device_sane);
-
-	/* get properties from device */
-	model = gcm_device_get_model (device);
-	manufacturer = gcm_device_get_manufacturer (device);
-	profile_filename = gcm_device_get_default_profile_filename (device);
-	profile_filename_quoted = g_strdup_printf ("\"%s\"", profile_filename);
-
-	device_filename = g_strdup_printf ("%s:%s.drc", manufacturer, model);
-	g_strdelimit (device_filename, "/", '_');
-	gcm_device_sane_remove_spaces (device_filename);
-	g_debug ("device_filename=%s", device_filename);
-
-	filename = g_build_filename (g_get_home_dir (), ".sane", "xsane", device_filename, NULL);
-
-	/* get existing file, if it exists */
-	array = gcm_device_sane_get_key_pairs_from_filename (filename, error);
-	if (array == NULL)
-		goto out;
-
-	/* set some keys */
-	gcm_device_sane_set_key_pair_value (array, "\"xsane-scanner-default-color-icm-profile\"", profile_filename_quoted);
-	gcm_device_sane_set_key_pair_value (array, "\"xsane-scanner-default-gray-icm-profile\"", profile_filename_quoted);
-	gcm_device_sane_set_key_pair_value (array, "\"xsane-enable-color-management\"", "1");
-
-	/* ensure directory exists */
-	gcm_utils_mkdir_for_filename  (filename, NULL);
-
-	/* save new file */
-	ret = gcm_device_sane_get_key_pairs_to_filename (filename, array, error);
-	if (!ret)
-		goto out;
-out:
-	if (array != NULL)
-		g_ptr_array_unref (array);
-	g_free (filename);
-	g_free (device_filename);
-	return ret;
-}
-
-/**
- * gcm_device_sane_apply:
- *
- * Return value: %TRUE for success;
- **/
-static gboolean
-gcm_device_sane_apply (GcmDevice *device, GError **error)
-{
-	gboolean ret;
-
-	/* apply global settings for xsane */
-	ret = gcm_device_sane_apply_global (GCM_DEVICE_SANE (device), error);
-	if (!ret)
-		goto out;
-
-	/* apply device specific settings for xsane */
-	ret = gcm_device_sane_apply_device (GCM_DEVICE_SANE (device), error);
-	if (!ret)
-		goto out;
-out:
-	return ret;
-}
-
-/**
  * gcm_device_sane_get_property:
  **/
 static void
@@ -388,14 +142,11 @@ gcm_device_sane_class_init (GcmDeviceSaneClass *klass)
 {
 	GParamSpec *pspec;
 	GObjectClass *object_class = G_OBJECT_CLASS (klass);
-	GcmDeviceClass *device_class = GCM_DEVICE_CLASS (klass);
 
 	object_class->finalize = gcm_device_sane_finalize;
 	object_class->get_property = gcm_device_sane_get_property;
 	object_class->set_property = gcm_device_sane_set_property;
 
-	device_class->apply = gcm_device_sane_apply;
-
 	/**
 	 * GcmDeviceSane:native-device:
 	 */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]