]> www.fi.muni.cz Git - evince.git/blob - libdocument/ev-file-helpers.c
EggSMClient copied from libegg
[evince.git] / libdocument / ev-file-helpers.c
1 /*
2  *  Copyright (C) 2002 Jorn Baayen
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2, or (at your option)
7  *  any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  *  $Id$
19  */
20
21 #ifdef HAVE_CONFIG_H
22 #include "config.h"
23 #endif
24
25 #include <stdlib.h>
26 #include <sys/types.h>
27 #include <unistd.h>
28 #include <string.h>
29 #include <glib.h>
30 #include <glib/gstdio.h>
31 #include <errno.h>
32
33 #if WITH_GNOME
34 #include <libgnome/gnome-init.h>
35 #endif
36
37 #include "ev-file-helpers.h"
38
39 static gchar *dot_dir = NULL;
40 static gchar *tmp_dir = NULL;
41 static gint   count = 0;
42
43 static gboolean
44 ensure_dir_exists (const char *dir)
45 {
46         if (g_file_test (dir, G_FILE_TEST_IS_DIR))
47                 return TRUE;
48         
49         if (g_mkdir_with_parents (dir, 488) == 0)
50                 return TRUE;
51
52         if (errno == EEXIST)
53                 return g_file_test (dir, G_FILE_TEST_IS_DIR);
54         
55         g_warning ("Failed to create directory %s: %s", dir, strerror (errno));
56         return FALSE;
57 }
58
59 const gchar *
60 ev_dot_dir (void)
61 {
62         if (dot_dir == NULL) {
63                 gboolean exists;
64
65                 dot_dir = g_build_filename (g_get_home_dir (),
66                                             ".gnome2",
67                                             "evince",
68                                             NULL);
69
70                 exists = ensure_dir_exists (dot_dir);
71                 if (!exists)
72                         exit (1);
73         }
74
75         return dot_dir;
76 }
77
78 const gchar *
79 ev_tmp_dir (void)
80 {
81         if (tmp_dir == NULL) {
82                 gboolean exists;
83                 gchar   *dirname;
84
85                 dirname = g_strdup_printf ("evince-%u", getpid ());
86                 tmp_dir = g_build_filename (g_get_tmp_dir (),
87                                             dirname,
88                                             NULL);
89                 g_free (dirname);
90
91                 exists = ensure_dir_exists (tmp_dir);
92                 g_assert (exists);
93         }
94
95         return tmp_dir;
96 }
97
98 void
99 ev_file_helpers_init (void)
100 {
101 }
102
103 void
104 ev_file_helpers_shutdown (void)
105 {       
106         if (tmp_dir != NULL)    
107                 g_rmdir (tmp_dir);
108
109         g_free (tmp_dir);
110         g_free (dot_dir);
111
112         dot_dir = NULL;
113         tmp_dir = NULL;
114 }
115
116 GFile *
117 ev_tmp_file_get (const gchar *prefix)
118 {
119         gchar *path;
120         GFile *file;
121
122         path = ev_tmp_filename (prefix);
123         file = g_file_new_for_path (path);
124         
125         g_free (path);
126         
127         return file;
128 }
129
130 gchar * 
131 ev_tmp_filename (const gchar *prefix)
132 {
133         gchar *basename;
134         gchar *filename = NULL;
135
136         do {
137                 if (filename != NULL)
138                         g_free (filename);
139                         
140                 basename = g_strdup_printf ("%s-%d",
141                                             prefix ? prefix : "document",
142                                             count ++);
143                 
144                 filename = g_build_filename (ev_tmp_dir (),
145                                              basename, NULL);
146                 
147                 g_free (basename);
148         } while (g_file_test (filename, G_FILE_TEST_EXISTS));
149                         
150         return filename;
151 }
152
153 /* Remove a local temp file created by evince */
154 void
155 ev_tmp_filename_unlink (const gchar *filename)
156 {
157         const gchar *tempdir;
158         
159         if (!filename)
160                 return;
161
162         tempdir = g_get_tmp_dir ();
163         if (g_ascii_strncasecmp (filename, tempdir, strlen (tempdir)) == 0) {
164                 g_unlink (filename);
165         }
166 }
167
168 void
169 ev_tmp_file_unlink (GFile *file)
170 {
171         gboolean res;
172
173         if (!file)
174                 return;
175         
176         res = g_file_delete (file, NULL, NULL);
177         if (!res) {
178                 char *uri;
179                 
180                 uri = g_file_get_uri (file);
181                 g_warning ("Unable to delete temp file %s\n", uri);
182                 g_free (uri);
183         }
184 }
185
186 void
187 ev_tmp_uri_unlink (const gchar *uri)
188 {
189         GFile *file;
190         
191         if (!uri)
192                 return;
193         
194         file = g_file_new_for_uri (uri);
195         if (!g_file_is_native (file)) {
196                 g_warning ("Attempting to delete non native uri: %s\n", uri);
197                 g_object_unref (file);
198                 return;
199         }
200         
201         ev_tmp_file_unlink (file);
202         g_object_unref (file);
203 }
204
205 gboolean
206 ev_xfer_uri_simple (const char *from,
207                     const char *to,
208                     GError     **error)
209 {
210         GFile *source_file;
211         GFile *target_file;
212         GError *ioerror;
213         gboolean result;
214         
215         if (!from)
216                 return FALSE;
217         
218         source_file = g_file_new_for_uri (from);
219         target_file = g_file_new_for_uri (to);
220         
221         result = g_file_copy (source_file, target_file,
222                               G_FILE_COPY_OVERWRITE,
223                               NULL, NULL, NULL, &ioerror);
224
225         g_object_unref (target_file);
226         g_object_unref (source_file);
227     
228         if (!result) {
229                 g_propagate_error (error, ioerror);
230         }
231         return result;
232
233 }
234
235 /* Compressed files support */
236 #define BZIPCOMMAND "bzip2"
237 #define GZIPCOMMAND "gzip"
238 #define N_ARGS      4
239 #define BUFFER_SIZE 1024
240
241 static gchar *
242 compression_run (const gchar       *uri,
243                  EvCompressionType  type,
244                  gboolean           compress, 
245                  GError           **error)
246 {
247         gchar *argv[N_ARGS];
248         gchar *uri_dst = NULL;
249         gchar *filename, *filename_dst;
250         gchar *cmd;
251         gint   fd, pout;
252
253         if (type == EV_COMPRESSION_NONE)
254                 return NULL;
255
256         cmd = g_find_program_in_path ((type == EV_COMPRESSION_BZIP2) ? BZIPCOMMAND : GZIPCOMMAND);
257         if (!cmd)
258                 return NULL;
259
260         filename = g_filename_from_uri (uri, NULL, NULL);
261         if (!filename) {
262                 g_free (cmd);
263                 return NULL;
264         }
265         
266         filename_dst = g_build_filename (ev_tmp_dir (), "evinceXXXXXX", NULL);
267         fd = g_mkstemp (filename_dst);
268         if (fd < 0) {
269                 g_free (cmd);
270                 g_free (filename);
271                 g_free (filename_dst);
272                 return NULL;
273         }
274
275         argv[0] = cmd;
276         argv[1] = compress ? "-c" : "-cd";
277         argv[2] = filename;
278         argv[3] = NULL;
279
280         if (g_spawn_async_with_pipes (NULL, argv, NULL,
281                                       G_SPAWN_STDERR_TO_DEV_NULL,
282                                       NULL, NULL, NULL,
283                                       NULL, &pout, NULL, error)) {
284                 GIOChannel *in, *out;
285                 gchar buf[BUFFER_SIZE];
286                 GIOStatus read_st, write_st;
287                 gsize bytes_read, bytes_written;
288
289                 in = g_io_channel_unix_new (pout);
290                 g_io_channel_set_encoding (in, NULL, NULL);
291                 out = g_io_channel_unix_new (fd);
292                 g_io_channel_set_encoding (out, NULL, NULL);
293
294                 do {
295                         read_st = g_io_channel_read_chars (in, buf,
296                                                            BUFFER_SIZE,
297                                                            &bytes_read,
298                                                            error);
299                         if (read_st == G_IO_STATUS_NORMAL) {
300                                 write_st = g_io_channel_write_chars (out, buf,
301                                                                      bytes_read,
302                                                                      &bytes_written,
303                                                                      error);
304                                 if (write_st == G_IO_STATUS_ERROR)
305                                         break;
306                         } else if (read_st == G_IO_STATUS_ERROR) {
307                                 break;
308                         }
309                 } while (bytes_read > 0);
310
311                 g_io_channel_unref (in);
312                 g_io_channel_unref (out);
313         }
314
315         close (fd);
316
317         if (*error == NULL) {
318                 uri_dst = g_filename_to_uri (filename_dst, NULL, NULL);
319         }
320
321         g_free (cmd);
322         g_free (filename);
323         g_free (filename_dst);
324
325         return uri_dst;
326 }
327
328 gchar *
329 ev_file_uncompress (const gchar       *uri,
330                     EvCompressionType  type,
331                     GError           **error)
332 {
333         g_return_val_if_fail (uri != NULL, NULL);
334
335         return compression_run (uri, type, FALSE, error);
336 }
337
338 gchar *
339 ev_file_compress (const gchar       *uri,
340                   EvCompressionType  type,
341                   GError           **error)
342 {
343         g_return_val_if_fail (uri != NULL, NULL);
344
345         return compression_run (uri, type, TRUE, error);
346 }