gimp/app/core/gimp-parasites.c

158 lines
3.7 KiB
C

/* gimpparasite.c: Copyright 1998 Jay Cox <jaycox@earthlink.net>
*
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#include <glib.h>
#include <stdio.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "app_procs.h"
#include "parasitelist.h"
#include "gimpparasite.h"
#include "gimprc.h"
#include "libgimp/parasite.h"
#include "libgimp/gimpenv.h"
#include "libgimp/gimpintl.h"
static ParasiteList *parasites = NULL;
void
gimp_init_parasites()
{
g_return_if_fail (parasites == NULL);
parasites = parasite_list_new ();
gimp_parasiterc_load ();
}
void
gimp_parasite_attach (Parasite *p)
{
parasite_list_add (parasites, p);
}
void
gimp_parasite_detach (const char *name)
{
parasite_list_remove (parasites, name);
}
Parasite *
gimp_parasite_find (const char *name)
{
return parasite_list_find (parasites, name);
}
static void
list_func (char *key,
Parasite *p,
char ***cur)
{
*(*cur)++ = (char *) g_strdup (key);
}
char **
gimp_parasite_list (gint *count)
{
gchar **list, **cur;
*count = parasite_list_length (parasites);
cur = list = (char **) g_malloc (sizeof (char *) * *count);
parasite_list_foreach (parasites, (GHFunc)list_func, &cur);
return list;
}
static void
save_func (char *key,
Parasite *p,
FILE *fp)
{
if (parasite_is_persistent (p))
{
gchar *s;
guint32 l;
fprintf (fp, "(parasite \"%s\" %lu \"", parasite_name (p), parasite_flags (p));
/*
* the current methodology is: never move the parasiterc from one
* system to another. If you want to do this you should probably
* write out parasites which contain any non-alphanumeric(+some)
* characters as \xHH sequences altogether.
*/
for (s = (gchar *)parasite_data (p), l = parasite_data_size (p);
l;
l--, s++)
{
switch (*s)
{
case '\\': fputs ("\\\\", fp); break;
case '\0': fputs ("\\0", fp); break;
case '"' : fputs ("\\\"", fp); break;
/* disabled, not portable! */
/* case '\n': fputs ("\\n", fp); break;*/
/* case '\r': fputs ("\\r", fp); break;*/
case 26 : fputs ("\\z", fp); break;
default : fputc (*s, fp); break;
}
}
fputs ("\")\n\n", fp);
}
}
void
gimp_parasiterc_save (void)
{
char *filename;
FILE *fp;
filename = gimp_personal_rc_file ("#parasiterc.tmp~");
fp = fopen (filename, "w");
g_free (filename);
if (!fp)
return;
fprintf (fp, _("# GIMP parasiterc\n"
"# This file will be entirely rewritten every time you quit the gimp.\n\n"));
parasite_list_foreach (parasites, (GHFunc)save_func, fp);
fclose (fp);
if (rename(gimp_personal_rc_file ("#parasiterc.tmp~"),
gimp_personal_rc_file ("parasiterc")) != 0)
unlink(gimp_personal_rc_file ("#parasiterc.tmp~"));
}
void
gimp_parasiterc_load (void)
{
char *filename;
filename = gimp_personal_rc_file ("parasiterc");
app_init_update_status (NULL, filename, -1);
parse_gimprc_file (filename);
g_free (filename);
}