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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
|
/* vi:set et ai sw=2 sts=2 ts=2: */
/*-
* Copyright (c) 2006-2007 Benedikt Meurer <benny@xfce.org>
* Copyright (c) 2009-2010 Jannis Pohlmann <jannis@xfce.org>
*
* 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 Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_MEMORY_H
#include <memory.h>
#endif
#ifdef HAVE_PWD_H
#include <pwd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_TIME_H
#include <time.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef G_PLATFORM_WIN32
#include <direct.h>
#include <glib/gwin32.h>
#endif
#include <thunar/thunar-private.h>
#include <thunar/thunar-util.h>
#include <glib.h>
#include <glib/gstdio.h>
/**
* thunar_util_strrchr_offset:
* @str: haystack
* @offset: pointer offset in @str
* @c: search needle
*
* Return the last occurrence of the character @c in
* the string @str starting at @offset.
*
* There are also Glib functions for this like g_strrstr_len
* and g_utf8_strrchr, but these work internally the same
* as this function (tho, less efficient).
*
* Return value: pointer in @str or NULL.
**/
static inline gchar *
thunar_util_strrchr_offset (const gchar *str,
const gchar *offset,
gchar c)
{
const gchar *p;
for (p = offset; p > str; p--)
if (*p == c)
return (gchar *) p;
return NULL;
}
/**
* thunar_util_str_get_extension
* @filename : an UTF-8 filename
*
* Returns a pointer to the extension in @filename.
*
* This is an improved version of g_utf8_strrchr with
* improvements to recognize compound extensions like
* ".tar.gz" and ".desktop.in.in".
*
* Return value: pointer to the extension in @filename
* or NULL.
**/
gchar *
thunar_util_str_get_extension (const gchar *filename)
{
static const gchar *compressed[] = { "gz", "bz2", "lzma", "lrz", "rpm", "lzo", "xz", "z" };
gchar *dot;
gchar *ext;
guint i;
gchar *dot2;
gsize len;
gboolean is_in;
/* check if there is an possible extension part in the name */
dot = strrchr (filename, '.');
if (dot == NULL
|| dot == filename
|| dot[1] == '\0')
return NULL;
/* skip the . */
ext = dot + 1;
/* check if this looks like a compression mime-type */
for (i = 0; i < G_N_ELEMENTS (compressed); i++)
{
if (strcasecmp (ext, compressed[i]) == 0)
{
/* look for a possible container part (tar, psd, epsf) */
dot2 = thunar_util_strrchr_offset (filename, dot - 1, '.');
if (dot2 != NULL
&& dot2 != filename)
{
/* check the 2nd part range, keep it between 2 and 5 chars */
len = dot - dot2 - 1;
if (len >= 2 && len <= 5)
dot = dot2;
}
/* that's it for compression types */
return dot;
}
}
/* for coders, .in are quite common, so check for those too
* with a max of 3 rounds (2x .in and the possibly final extension) */
if (strcasecmp (ext, "in") == 0)
{
for (i = 0, is_in = TRUE; is_in && i < 3; i++)
{
dot2 = thunar_util_strrchr_offset (filename, dot - 1, '.');
/* the extension before .in could be long. check that it's at least 2 chars */
len = dot - dot2 - 1;
if (dot2 == NULL
|| dot2 == filename
|| len < 2)
break;
/* continue if another .in was found */
is_in = dot - dot2 == 3 && strncasecmp (dot2, ".in", 3) == 0;
dot = dot2;
}
}
return dot;
}
void
thunar_util_load_bookmarks (GFile *bookmarks_file,
ThunarBookmarksFunc foreach_func,
gpointer user_data)
{
gchar *bookmarks_path;
gchar line[1024];
const gchar *name;
gchar *space;
FILE *fp;
gint row_num = 1;
GFile *file;
_thunar_return_if_fail (G_IS_FILE (bookmarks_file));
_thunar_return_if_fail (g_file_is_native (bookmarks_file));
_thunar_return_if_fail (foreach_func != NULL);
/* determine the path to the GTK+ bookmarks file */
bookmarks_path = g_file_get_path (bookmarks_file);
/* append the GTK+ bookmarks (if any) */
fp = fopen (bookmarks_path, "r");
g_free (bookmarks_path);
if (G_UNLIKELY (fp == NULL))
{
bookmarks_path = g_build_filename (g_get_home_dir (), ".gtk-bookmarks", NULL);
fp = fopen(bookmarks_path, "r");
g_free(bookmarks_path);
}
if (G_LIKELY (fp != NULL))
{
while (fgets (line, sizeof (line), fp) != NULL)
{
/* remove trailing spaces */
g_strchomp (line);
/* skip over empty lines */
if (*line == '\0' || *line == ' ')
continue;
/* check if there is a custom name in the line */
name = NULL;
space = strchr (line, ' ');
if (space != NULL)
{
/* break line */
*space++ = '\0';
/* get the custom name */
if (G_LIKELY (*space != '\0'))
name = space;
}
file = g_file_new_for_uri (line);
/* callback */
foreach_func (file, name, row_num++, user_data);
g_object_unref (G_OBJECT (file));
}
fclose (fp);
}
}
/**
* thunar_util_expand_filename:
* @filename : a local filename.
* @working_directory : #GFile of the current working directory.
* @error : return location for errors or %NULL.
*
* Takes a user-typed @filename and expands a tilde at the
* beginning of the @filename. It also resolves paths prefixed with
* '.' using the current working directory.
*
* The caller is responsible to free the returned string using
* g_free() when no longer needed.
*
* Return value: the expanded @filename or %NULL on error.
**/
gchar *
thunar_util_expand_filename (const gchar *filename,
GFile *working_directory,
GError **error)
{
struct passwd *passwd;
const gchar *replacement;
const gchar *remainder;
const gchar *slash;
gchar *username;
gchar *pwd;
gchar *variable;
gchar *result = NULL;
g_return_val_if_fail (filename != NULL, NULL);
/* check if we have a valid (non-empty!) filename */
if (G_UNLIKELY (*filename == '\0'))
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL, _("Invalid path"));
return NULL;
}
/* check if we start with a '~' */
if (*filename == '~')
{
/* examine the remainder of the filename */
remainder = filename + 1;
/* if we have only the slash, then we want the home dir */
if (G_UNLIKELY (*remainder == '\0'))
return g_strdup (xfce_get_homedir ());
/* lookup the slash */
for (slash = remainder; *slash != '\0' && *slash != G_DIR_SEPARATOR; ++slash);
/* check if a username was given after the '~' */
if (G_LIKELY (slash == remainder))
{
/* replace the tilde with the home dir */
replacement = xfce_get_homedir ();
}
else
{
/* lookup the pwd entry for the username */
username = g_strndup (remainder, slash - remainder);
passwd = getpwnam (username);
g_free (username);
/* check if we have a valid entry */
if (G_UNLIKELY (passwd == NULL))
{
username = g_strndup (remainder, slash - remainder);
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL, _("Unknown user \"%s\""), username);
g_free (username);
return NULL;
}
/* use the homedir of the specified user */
replacement = passwd->pw_dir;
}
/* generate the filename */
return g_build_filename (replacement, slash, NULL);
}
else if (*filename == '$')
{
/* examine the remainder of the variable and filename */
remainder = filename + 1;
/* lookup the slash at the end of the variable */
for (slash = remainder; *slash != '\0' && *slash != G_DIR_SEPARATOR; ++slash);
/* get the variable for replacement */
variable = g_strndup (remainder, slash - remainder);
replacement = g_getenv (variable);
g_free (variable);
if (replacement == NULL)
return NULL;
/* generate the filename */
return g_build_filename (replacement, slash, NULL);
}
else if (*filename == '.')
{
/* examine the remainder of the filename */
remainder = filename + 1;
/* transform working directory into a filename string */
if (G_LIKELY (working_directory != NULL))
{
pwd = g_file_get_path (working_directory);
/* if we only have the slash then we want the working directory only */
if (G_UNLIKELY (*remainder == '\0'))
return pwd;
/* concatenate working directory and remainder */
result = g_build_filename (pwd, remainder, G_DIR_SEPARATOR_S, NULL);
/* free the working directory string */
g_free (pwd);
}
else
result = g_strdup (filename);
/* return the resulting path string */
return result;
}
return g_strdup (filename);
}
/**
* thunar_util_humanize_file_time:
* @file_time : a #guint64 timestamp.
* @date_style : the #ThunarDateFormat used to humanize the @file_time.
* @date_custom_style : custom style to apply, if @date_style is set to custom
*
* Returns a human readable date representation of the specified
* @file_time. The caller is responsible to free the returned
* string using g_free() when no longer needed.
*
* Return value: a human readable date representation of @file_time
* according to the @date_format.
**/
gchar*
thunar_util_humanize_file_time (guint64 file_time,
ThunarDateStyle date_style,
const gchar *date_custom_style)
{
const gchar *date_format;
struct tm tfile;
time_t ftime;
GDate dfile;
GDate dnow;
gint diff;
/* check if the file_time is valid */
if (G_LIKELY (file_time != 0))
{
ftime = (time_t) file_time;
/* take a copy of the local file time */
tfile = *localtime (&ftime);
/* check which style to use to format the time */
if (date_style == THUNAR_DATE_STYLE_SIMPLE || date_style == THUNAR_DATE_STYLE_SHORT)
{
/* setup the dates for the time values */
g_date_set_time_t (&dfile, (time_t) ftime);
g_date_set_time_t (&dnow, time (NULL));
/* determine the difference in days */
diff = g_date_get_julian (&dnow) - g_date_get_julian (&dfile);
if (diff == 0)
{
if (date_style == THUNAR_DATE_STYLE_SIMPLE)
{
/* TRANSLATORS: file was modified less than one day ago */
return g_strdup (_("Today"));
}
else /* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
/* TRANSLATORS: file was modified less than one day ago */
return exo_strdup_strftime (_("Today at %X"), &tfile);
}
}
else if (diff == 1)
{
if (date_style == THUNAR_DATE_STYLE_SIMPLE)
{
/* TRANSLATORS: file was modified less than two days ago */
return g_strdup (_("Yesterday"));
}
else /* if (date_style == THUNAR_DATE_STYLE_SHORT) */
{
/* TRANSLATORS: file was modified less than two days ago */
return exo_strdup_strftime (_("Yesterday at %X"), &tfile);
}
}
else
{
if (diff > 1 && diff < 7)
{
/* Days from last week */
date_format = (date_style == THUNAR_DATE_STYLE_SIMPLE) ? "%A" : _("%A at %X");
}
else
{
/* Any other date */
date_format = (date_style == THUNAR_DATE_STYLE_SIMPLE) ? "%x" : _("%x at %X");
}
/* format the date string accordingly */
return exo_strdup_strftime (date_format, &tfile);
}
}
else if (date_style == THUNAR_DATE_STYLE_LONG)
{
/* use long, date(1)-like format string */
return exo_strdup_strftime ("%c", &tfile);
}
else if (date_style == THUNAR_DATE_STYLE_YYYYMMDD)
{
return exo_strdup_strftime ("%Y-%m-%d %H:%M:%S", &tfile);
}
else if (date_style == THUNAR_DATE_STYLE_MMDDYYYY)
{
return exo_strdup_strftime ("%m-%d-%Y %H:%M:%S", &tfile);
}
else if (date_style == THUNAR_DATE_STYLE_DDMMYYYY)
{
return exo_strdup_strftime ("%d-%m-%Y %H:%M:%S", &tfile);
}
else /* if (date_style == THUNAR_DATE_STYLE_CUSTOM) */
{
if (date_custom_style == NULL)
return g_strdup ("");
/* use custom date formatting */
return exo_strdup_strftime (date_custom_style, &tfile);
}
}
/* the file_time is invalid */
return g_strdup (_("Unknown"));
}
/**
* thunar_util_parse_parent:
* @parent : a #GtkWidget, a #GdkScreen or %NULL.
* @window_return : return location for the toplevel #GtkWindow or
* %NULL.
*
* Determines the screen for the @parent and returns that #GdkScreen.
* If @window_return is not %NULL, the pointer to the #GtkWindow is
* placed into it, or %NULL if the window could not be determined.
*
* Return value: the #GdkScreen for the @parent.
**/
GdkScreen*
thunar_util_parse_parent (gpointer parent,
GtkWindow **window_return)
{
GdkScreen *screen;
GtkWidget *window = NULL;
_thunar_return_val_if_fail (parent == NULL || GDK_IS_SCREEN (parent) || GTK_IS_WIDGET (parent), NULL);
/* determine the proper parent */
if (parent == NULL)
{
/* just use the default screen then */
screen = gdk_screen_get_default ();
}
else if (GDK_IS_SCREEN (parent))
{
/* yep, that's a screen */
screen = GDK_SCREEN (parent);
}
else
{
/* parent is a widget, so let's determine the toplevel window */
window = gtk_widget_get_toplevel (GTK_WIDGET (parent));
if (window != NULL
&& gtk_widget_is_toplevel (window))
{
/* make sure the toplevel window is shown */
gtk_widget_show_now (window);
}
else
{
/* no toplevel, not usable then */
window = NULL;
}
/* determine the screen for the widget */
screen = gtk_widget_get_screen (GTK_WIDGET (parent));
}
/* check if we should return the window */
if (G_LIKELY (window_return != NULL))
*window_return = (GtkWindow *) window;
return screen;
}
/**
* thunar_util_time_from_rfc3339:
* @date_string : an RFC 3339 encoded date string.
*
* Decodes the @date_string, which must be in the special RFC 3339
* format <literal>YYYY-MM-DDThh:mm:ss</literal>. This method is
* used to decode deletion dates of files in the trash. See the
* Trash Specification for details.
*
* Return value: the time value matching the @date_string or
* %0 if the @date_string could not be parsed.
**/
time_t
thunar_util_time_from_rfc3339 (const gchar *date_string)
{
struct tm tm;
#ifdef HAVE_STRPTIME
/* using strptime() its easy to parse the date string */
if (G_UNLIKELY (strptime (date_string, "%FT%T", &tm) == NULL))
return 0;
#else
gulong val;
/* be sure to start with a clean tm */
memset (&tm, 0, sizeof (tm));
/* parsing by hand is also doable for RFC 3339 dates */
val = strtoul (date_string, (gchar **) &date_string, 10);
if (G_UNLIKELY (*date_string != '-'))
return 0;
/* YYYY-MM-DD */
tm.tm_year = val - 1900;
date_string++;
tm.tm_mon = strtoul (date_string, (gchar **) &date_string, 10) - 1;
if (G_UNLIKELY (*date_string++ != '-'))
return 0;
tm.tm_mday = strtoul (date_string, (gchar **) &date_string, 10);
if (G_UNLIKELY (*date_string++ != 'T'))
return 0;
val = strtoul (date_string, (gchar **) &date_string, 10);
if (G_UNLIKELY (*date_string != ':'))
return 0;
/* hh:mm:ss */
tm.tm_hour = val;
date_string++;
tm.tm_min = strtoul (date_string, (gchar **) &date_string, 10);
if (G_UNLIKELY (*date_string++ != ':'))
return 0;
tm.tm_sec = strtoul (date_string, (gchar **) &date_string, 10);
#endif /* !HAVE_STRPTIME */
/* translate tm to time_t */
return mktime (&tm);
}
gchar *
thunar_util_change_working_directory (const gchar *new_directory)
{
gchar *old_directory;
_thunar_return_val_if_fail (new_directory != NULL && *new_directory != '\0', NULL);
/* try to determine the current working directory */
old_directory = g_get_current_dir();
/* try switching to the new working directory */
if (g_chdir (new_directory) != 0)
{
/* switching failed, we don't need to return the old directory */
g_free (old_directory);
old_directory = NULL;
}
return old_directory;
}
void
thunar_setup_display_cb (gpointer data)
{
g_setenv ("DISPLAY", (char *) data, TRUE);
}
|