1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
|
/* screenshot-save.c - image saving functions for MATE Screenshot
*
* Copyright (C) 2001-2006 Jonathan Blandford <jrb@alum.mit.edu>
*
* 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., 51 Franklin St, Fifth Floor,
*/
#include <config.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <signal.h>
#include <string.h>
#include <glib/gi18n.h>
#include "screenshot-save.h"
static char *parent_dir = NULL;
static char *tmp_filename = NULL;
static SaveFunction save_callback = NULL;
static gpointer save_user_data = NULL;
/* Strategy for saving:
*
* We keep another process around to handle saving the image. This is
* done for two reasons. One, the saving takes a non-zero amount of
* time (about a quarter of a second on my box.) This will make it
* more interactive. The second reason is to make the child
* responsible for cleaning up the temp dir. If the parent process is
* killed or segfaults, the child process can clean up the temp dir.
*/
static void
clean_up_temporary_dir (gboolean gui_on_error)
{
char *message;
gboolean error_occurred = FALSE;
if (g_file_test (tmp_filename, G_FILE_TEST_EXISTS))
error_occurred = unlink (tmp_filename);
if (g_file_test (parent_dir, G_FILE_TEST_EXISTS))
error_occurred = rmdir (parent_dir) || error_occurred;
if (error_occurred)
{
message = g_strdup_printf (_("Unable to clear the temporary folder:\n%s"),
tmp_filename);
if (gui_on_error)
{
GtkWidget *dialog;
dialog = gtk_message_dialog_new (NULL, 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"%s", message);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
}
else
{
g_warning ("%s", message);
}
g_free (message);
}
g_free (tmp_filename);
g_free (parent_dir);
}
static void
child_done_notification (GPid pid,
gint status,
gpointer data)
{
/* This should never be called. */
/* We expect the child to die after the parent. If the child dies
* than it either segfaulted, or was randomly killed. In either
* case, we can't reasonably continue. */
GtkWidget *dialog;
dialog = gtk_message_dialog_new (NULL, 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
_("The child save process unexpectedly exited. We are unable to write the screenshot to disk."));
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
clean_up_temporary_dir (TRUE);
exit (1);
}
static gboolean
read_pipe_from_child (GIOChannel *source,
GIOCondition condition,
gpointer data)
{
if (condition & G_IO_IN)
{
gchar *message = NULL;
gchar *error_message = NULL;
GtkWidget *dialog;
GIOStatus status;
status = g_io_channel_read_line (source, &error_message, NULL, NULL, NULL);
if (status == G_IO_STATUS_NORMAL)
{
message = g_strdup_printf ("Unable to save the screenshot to disk:\n\n%s", error_message);
dialog = gtk_message_dialog_new (NULL, 0,
GTK_MESSAGE_ERROR,
GTK_BUTTONS_OK,
"%s", message);
gtk_dialog_run (GTK_DIALOG (dialog));
gtk_widget_destroy (dialog);
exit (1);
}
}
(*save_callback) (save_user_data);
return FALSE;
}
static char *
make_temp_directory (void)
{
gint result, i;
gchar *dir_name;
i = 0;
do
{
gchar *tmp_dir = g_strdup_printf ("mate-screenshot.%u.%d",
(unsigned int) getpid (),
i++);
dir_name = g_build_filename (g_get_tmp_dir (),
tmp_dir,
NULL);
g_free (tmp_dir);
result = g_mkdir_with_parents (dir_name, 0777);
if (result < 0)
{
g_free (dir_name);
if (errno != EEXIST)
return NULL;
else
continue;
}
else
return dir_name;
}
while (TRUE);
}
static void
signal_handler (int sig)
{
clean_up_temporary_dir (FALSE);
signal (sig, SIG_DFL);
kill (getpid (), sig);
}
void
screenshot_save_start (GdkPixbuf *pixbuf,
SaveFunction callback,
gpointer user_data)
{
GPid pid;
int parent_exit_notification[2];
int pipe_from_child[2];
if (pipe (parent_exit_notification) == -1)
perror("pipe error");
if (pipe (pipe_from_child) == -1)
perror("pipe error");
parent_dir = make_temp_directory ();
if (parent_dir == NULL)
return;
tmp_filename = g_build_filename (parent_dir,
_("Screenshot.png"),
NULL);
save_callback = callback;
save_user_data = user_data;
pid = fork ();
if (pid == 0)
{
GError *error = NULL;
char c;
signal (SIGINT, signal_handler);
signal (SIGTERM, signal_handler);
close (parent_exit_notification [1]);
close (pipe_from_child [0]);
if (! gdk_pixbuf_save (pixbuf, tmp_filename,
"png", &error,
"tEXt::Software", "mate-screenshot",
NULL))
{
if (error && error->message)
if (write (pipe_from_child[1], error->message, strlen (error->message)) == -1)
perror("write error");
else
#define ERROR_MESSAGE _("Unknown error saving screenshot to disk")
if (write (pipe_from_child[1], ERROR_MESSAGE, strlen (ERROR_MESSAGE)) == -1)
perror("write error");
}
/* By closing the pipe, we let the main process know that we're
* done saving it. */
close (pipe_from_child[1]);
if (read (parent_exit_notification[0], &c, 1) == -1)
perror("read error");
clean_up_temporary_dir (FALSE);
_exit (0);
}
else if (pid > 0)
{
GIOChannel *channel;
close (parent_exit_notification[0]);
close (pipe_from_child[1]);
channel = g_io_channel_unix_new (pipe_from_child[0]);
g_io_add_watch (channel,
G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
read_pipe_from_child,
NULL);
g_io_channel_unref (channel);
g_child_watch_add (pid, child_done_notification, NULL);
}
else
/* George awesomely wrote code originally to handle the
* could-not-fork case synchronously. I'm not copying it, as I'm
* guessing that the system is pretty hosed if that's the case.
* However, he gets major kudos for trying. (-:
*/
g_assert_not_reached ();
}
const char *
screenshot_save_get_filename (void)
{
return tmp_filename;
}
|