-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-mime-actions.c
2349 lines (1931 loc) · 63.1 KB
/
nemo-mime-actions.c
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
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* -*- Mode: C; indent-tabs-mode: f; c-basic-offset: 4; tab-width: 4 -*- */
/* nemo-mime-actions.c - uri-specific versions of mime action functions
Copyright (C) 2000, 2001 Eazel, Inc.
The Gnome Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
The Gnome Library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with the Gnome Library; see the file COPYING.LIB. If not,
write to the Free Software Foundation, Inc., 51 Franklin Street - Suite 500,
Boston, MA 02110-1335, USA.
Authors: Maciej Stachowiak <[email protected]>
*/
#include <config.h>
#include "nemo-mime-actions.h"
#include "nemo-window-slot.h"
#include "nemo-error-reporting.h"
#include "nemo-desktop-window.h"
#include <eel/eel-glib-extensions.h>
#include <eel/eel-stock-dialogs.h>
#include <eel/eel-string.h>
#include <glib/gi18n.h>
#include <glib/gstdio.h>
#include <string.h>
#include <gdk/gdkx.h>
#include <libxapp/xapp-favorites.h>
#include <libnemo-private/nemo-file-attributes.h>
#include <libnemo-private/nemo-file.h>
#include <libnemo-private/nemo-file-operations.h>
#include <libnemo-private/nemo-metadata.h>
#include <libnemo-private/nemo-program-choosing.h>
#include <libnemo-private/nemo-desktop-icon-file.h>
#include <libnemo-private/nemo-global-preferences.h>
#include <libnemo-private/nemo-signaller.h>
#include <libnemo-private/nemo-mime-application-chooser.h>
#include <sys/stat.h>
enum {
UNIX_PERM_USER_EXEC = S_IXUSR,
UNIX_PERM_GROUP_EXEC = S_IXGRP,
UNIX_PERM_OTHER_EXEC = S_IXOTH,
};
#define DEBUG_FLAG NEMO_DEBUG_MIME
#include <libnemo-private/nemo-debug.h>
typedef enum {
ACTIVATION_ACTION_LAUNCH_DESKTOP_FILE,
ACTIVATION_ACTION_ASK,
ACTIVATION_ACTION_LAUNCH,
ACTIVATION_ACTION_LAUNCH_IN_TERMINAL,
ACTIVATION_ACTION_OPEN_IN_VIEW,
ACTIVATION_ACTION_OPEN_IN_APPLICATION,
ACTIVATION_ACTION_DO_NOTHING,
} ActivationAction;
typedef struct {
NemoFile *file;
char *uri;
} LaunchLocation;
typedef struct {
GAppInfo *application;
GList *uris;
} ApplicationLaunchParameters;
typedef struct {
NemoWindowSlot *slot;
gpointer window;
GtkWindow *parent_window;
GCancellable *cancellable;
GList *locations;
GList *mountables;
GList *start_mountables;
GList *not_mounted;
NemoWindowOpenFlags flags;
char *timed_wait_prompt;
gboolean timed_wait_active;
NemoFileListHandle *files_handle;
gboolean tried_mounting;
char *activation_directory;
gboolean user_confirmation;
} ActivateParameters;
/* Number of seconds until cancel dialog shows up */
#define DELAY_UNTIL_CANCEL_MSECS 5000
#define RESPONSE_RUN 1000
#define RESPONSE_DISPLAY 1001
#define RESPONSE_RUN_IN_TERMINAL 1002
#define RESPONSE_MARK_TRUSTED 1003
#define RESPONSE_OPEN_WITH 1004
#define SILENT_WINDOW_OPEN_LIMIT 5
#define SILENT_OPEN_LIMIT 5
/* This number controls a maximum character count for a URL that is
* displayed as part of a dialog. It's fairly arbitrary -- big enough
* to allow most "normal" URIs to display in full, but small enough to
* prevent the dialog from getting insanely wide.
*/
#define MAX_URI_IN_DIALOG_LENGTH 60
static void cancel_activate_callback (gpointer callback_data);
static void activate_activation_uris_ready_callback (GList *files,
gpointer callback_data);
static void activation_mount_mountables (ActivateParameters *parameters);
static void activation_start_mountables (ActivateParameters *parameters);
static void activate_callback (GList *files,
gpointer callback_data);
static void activation_mount_not_mounted (ActivateParameters *parameters);
static void
launch_location_free (LaunchLocation *location)
{
nemo_file_unref (location->file);
g_free (location->uri);
g_free (location);
}
static void
launch_location_list_free (GList *list)
{
g_list_foreach (list, (GFunc)launch_location_free, NULL);
g_list_free (list);
}
static GList *
get_file_list_for_launch_locations (GList *locations)
{
GList *files, *l;
LaunchLocation *location;
files = NULL;
for (l = locations; l != NULL; l = l->next) {
location = l->data;
files = g_list_prepend (files,
nemo_file_ref (location->file));
}
return g_list_reverse (files);
}
static LaunchLocation *
launch_location_from_file (NemoFile *file)
{
LaunchLocation *location;
location = g_new (LaunchLocation, 1);
location->file = nemo_file_ref (file);
location->uri = nemo_file_get_uri (file);
return location;
}
static void
launch_location_update_from_file (LaunchLocation *location,
NemoFile *file)
{
nemo_file_unref (location->file);
g_free (location->uri);
location->file = nemo_file_ref (file);
location->uri = nemo_file_get_uri (file);
}
static void
launch_location_update_from_uri (LaunchLocation *location,
const char *uri)
{
nemo_file_unref (location->file);
g_free (location->uri);
location->file = nemo_file_get_by_uri (uri);
location->uri = g_strdup (uri);
}
static LaunchLocation *
find_launch_location_for_file (GList *list,
NemoFile *file)
{
LaunchLocation *location;
GList *l;
for (l = list; l != NULL; l = l->next) {
location = l->data;
if (location->file == file) {
return location;
}
}
return NULL;
}
static GList *
launch_locations_from_file_list (GList *list)
{
GList *new;
new = NULL;
while (list) {
new = g_list_prepend (new,
launch_location_from_file (list->data));
list = list->next;
}
new = g_list_reverse (new);
return new;
}
static ApplicationLaunchParameters *
application_launch_parameters_new (GAppInfo *application,
GList *uris)
{
ApplicationLaunchParameters *result;
result = g_new0 (ApplicationLaunchParameters, 1);
result->application = g_object_ref (application);
result->uris = eel_g_str_list_copy (uris);
return result;
}
static void
application_launch_parameters_free (ApplicationLaunchParameters *parameters)
{
g_object_unref (parameters->application);
g_list_free_full (parameters->uris, g_free);
g_free (parameters);
}
static GList*
filter_nemo_handler (GList *apps)
{
GList *l, *next;
GAppInfo *application;
const char *id;
l = apps;
while (l != NULL) {
application = (GAppInfo *) l->data;
next = l->next;
id = g_app_info_get_id (application);
if (id != NULL &&
strcmp (id,
"nemo.desktop") == 0) {
g_object_unref (application);
apps = g_list_delete_link (apps, l);
}
l = next;
}
return apps;
}
static GList*
filter_non_uri_apps (GList *apps)
{
GList *l, *next;
GAppInfo *app;
for (l = apps; l != NULL; l = next) {
app = l->data;
next = l->next;
if (!g_app_info_supports_uris (app)) {
apps = g_list_delete_link (apps, l);
g_object_unref (app);
}
}
return apps;
}
static gboolean
nemo_mime_actions_check_if_required_attributes_ready (NemoFile *file)
{
NemoFileAttributes attributes;
gboolean ready;
attributes = nemo_mime_actions_get_required_file_attributes ();
ready = nemo_file_check_if_ready (file, attributes);
return ready;
}
NemoFileAttributes
nemo_mime_actions_get_required_file_attributes (void)
{
return NEMO_FILE_ATTRIBUTE_INFO |
NEMO_FILE_ATTRIBUTE_LINK_INFO;
}
static gboolean
file_has_local_path (NemoFile *file)
{
GFile *location;
char *path;
gboolean res;
/* Don't only check _is_native, because we want to support
using the fuse path */
location = nemo_file_get_activation_location (file);
if (g_file_is_native (location)) {
res = TRUE;
} else {
path = g_file_get_path (location);
res = path != NULL;
g_free (path);
}
g_object_unref (location);
return res;
}
GAppInfo *
nemo_mime_get_default_application_for_file (NemoFile *file)
{
GAppInfo *app = NULL;
char *mime_type;
char *uri_scheme;
if (!nemo_mime_actions_check_if_required_attributes_ready (file)) {
if (file_has_local_path (file)) {
return NULL;
}
}
uri_scheme = nemo_file_get_uri_scheme (file);
if (!g_str_has_prefix (uri_scheme, "http")) {
mime_type = nemo_file_get_mime_type (file);
app = g_app_info_get_default_for_type (mime_type, !file_has_local_path (file));
g_free (mime_type);
}
if (app == NULL) {
if (uri_scheme != NULL) {
app = g_app_info_get_default_for_uri_scheme (uri_scheme);
}
}
g_free (uri_scheme);
return app;
}
static int
file_compare_by_mime_type (NemoFile *file_a,
NemoFile *file_b)
{
char *mime_type_a, *mime_type_b;
int ret;
mime_type_a = nemo_file_get_mime_type (file_a);
mime_type_b = nemo_file_get_mime_type (file_b);
ret = strcmp (mime_type_a, mime_type_b);
g_free (mime_type_a);
g_free (mime_type_b);
return ret;
}
static int
file_compare_by_parent_uri (NemoFile *file_a,
NemoFile *file_b) {
char *parent_uri_a, *parent_uri_b;
int ret;
parent_uri_a = nemo_file_get_parent_uri (file_a);
parent_uri_b = nemo_file_get_parent_uri (file_b);
ret = strcmp (parent_uri_a, parent_uri_b);
g_free (parent_uri_a);
g_free (parent_uri_b);
return ret;
}
static int
application_compare_by_name (const GAppInfo *app_a,
const GAppInfo *app_b)
{
return g_utf8_collate (g_app_info_get_name ((GAppInfo *)app_a),
g_app_info_get_name ((GAppInfo *)app_b));
}
static int
application_compare_by_id (const GAppInfo *app_a,
const GAppInfo *app_b)
{
const char *id_a, *id_b;
id_a = g_app_info_get_id ((GAppInfo *)app_a);
id_b = g_app_info_get_id ((GAppInfo *)app_b);
if (id_a == NULL && id_b == NULL) {
if (g_app_info_equal ((GAppInfo *)app_a, (GAppInfo *)app_b)) {
return 0;
}
if ((gsize)app_a < (gsize) app_b) {
return -1;
}
return 1;
}
if (id_a == NULL) {
return -1;
}
if (id_b == NULL) {
return 1;
}
return strcmp (id_a, id_b);
}
GList *
nemo_mime_get_applications_for_file (NemoFile *file)
{
char *mime_type;
char *uri_scheme;
GList *result;
GAppInfo *uri_handler;
if (!nemo_mime_actions_check_if_required_attributes_ready (file)) {
return NULL;
}
mime_type = nemo_file_get_mime_type (file);
result = g_app_info_get_all_for_type (mime_type);
uri_scheme = nemo_file_get_uri_scheme (file);
if (uri_scheme != NULL) {
uri_handler = g_app_info_get_default_for_uri_scheme (uri_scheme);
if (uri_handler) {
result = g_list_prepend (result, uri_handler);
}
g_free (uri_scheme);
}
if (!file_has_local_path (file)) {
/* Filter out non-uri supporting apps */
result = filter_non_uri_apps (result);
}
result = g_list_sort (result, (GCompareFunc) application_compare_by_name);
g_free (mime_type);
return filter_nemo_handler (result);
}
GAppInfo *
nemo_mime_get_default_application_for_files (GList *files)
{
GList *l, *sorted_files;
NemoFile *file;
GAppInfo *app, *one_app;
g_assert (files != NULL);
sorted_files = g_list_sort (g_list_copy (files), (GCompareFunc) file_compare_by_mime_type);
app = NULL;
for (l = sorted_files; l != NULL; l = l->next) {
file = l->data;
if (l->prev &&
file_compare_by_mime_type (file, l->prev->data) == 0 &&
file_compare_by_parent_uri (file, l->prev->data) == 0) {
continue;
}
one_app = nemo_mime_get_default_application_for_file (file);
if (one_app == NULL || (app != NULL && !g_app_info_equal (app, one_app))) {
if (app) {
g_object_unref (app);
}
if (one_app) {
g_object_unref (one_app);
}
app = NULL;
break;
}
if (app == NULL) {
app = one_app;
} else {
g_object_unref (one_app);
}
}
g_list_free (sorted_files);
return app;
}
/* returns an intersection of two mime application lists,
* and returns a new list, freeing a, b and all applications
* that are not in the intersection set.
* The lists are assumed to be pre-sorted by their IDs */
static GList *
intersect_application_lists (GList *a,
GList *b)
{
GList *l, *m;
GList *ret;
GAppInfo *a_app, *b_app;
int cmp;
ret = NULL;
l = a;
m = b;
while (l != NULL && m != NULL) {
a_app = (GAppInfo *) l->data;
b_app = (GAppInfo *) m->data;
cmp = application_compare_by_id (a_app, b_app);
if (cmp > 0) {
g_object_unref (b_app);
m = m->next;
} else if (cmp < 0) {
g_object_unref (a_app);
l = l->next;
} else {
g_object_unref (b_app);
ret = g_list_prepend (ret, a_app);
l = l->next;
m = m->next;
}
}
g_list_foreach (l, (GFunc) g_object_unref, NULL);
g_list_foreach (m, (GFunc) g_object_unref, NULL);
g_list_free (a);
g_list_free (b);
return g_list_reverse (ret);
}
GList *
nemo_mime_get_applications_for_files (GList *files)
{
GList *l, *sorted_files;
NemoFile *file;
GList *one_ret, *ret;
g_assert (files != NULL);
sorted_files = g_list_sort (g_list_copy (files), (GCompareFunc) file_compare_by_mime_type);
ret = NULL;
for (l = sorted_files; l != NULL; l = l->next) {
file = l->data;
if (l->prev &&
file_compare_by_mime_type (file, l->prev->data) == 0 &&
file_compare_by_parent_uri (file, l->prev->data) == 0) {
continue;
}
one_ret = nemo_mime_get_applications_for_file (file);
one_ret = g_list_sort (one_ret, (GCompareFunc) application_compare_by_id);
if (ret != NULL) {
ret = intersect_application_lists (ret, one_ret);
} else {
ret = one_ret;
}
if (ret == NULL) {
break;
}
}
g_list_free (sorted_files);
ret = g_list_sort (ret, (GCompareFunc) application_compare_by_name);
return ret;
}
static void
trash_or_delete_files (GtkWindow *parent_window,
const GList *files,
gboolean delete_if_all_already_in_trash)
{
GList *locations;
const GList *node;
locations = NULL;
for (node = files; node != NULL; node = node->next) {
locations = g_list_prepend (locations,
nemo_file_get_location ((NemoFile *) node->data));
}
locations = g_list_reverse (locations);
nemo_file_operations_trash_or_delete (locations,
parent_window,
NULL, NULL);
g_list_free_full (locations, g_object_unref);
}
static void
report_broken_symbolic_link (GtkWindow *parent_window, NemoFile *file)
{
char *target_path;
char *display_name;
char *prompt;
char *detail;
GtkDialog *dialog;
GList file_as_list;
int response;
g_assert (nemo_file_is_broken_symbolic_link (file));
display_name = nemo_file_get_display_name (file);
if (nemo_file_is_in_trash (file)) {
prompt = g_strdup_printf (_("The Link \"%s\" is Broken."), display_name);
} else {
prompt = g_strdup_printf (_("The Link \"%s\" is Broken. Move it to Trash?"), display_name);
}
g_free (display_name);
target_path = nemo_file_get_symbolic_link_target_path (file);
if (target_path == NULL) {
detail = g_strdup (_("This link cannot be used, because it has no target."));
} else {
detail = g_strdup_printf (_("This link cannot be used, because its target "
"\"%s\" doesn't exist."), target_path);
}
if (nemo_file_is_in_trash (file)) {
eel_run_simple_dialog (GTK_WIDGET (parent_window), FALSE, GTK_MESSAGE_WARNING,
prompt, detail, GTK_STOCK_CANCEL, NULL);
goto out;
}
dialog = eel_show_yes_no_dialog (prompt, detail, _("Mo_ve to Trash"), GTK_STOCK_CANCEL,
parent_window);
gtk_dialog_set_default_response (dialog, GTK_RESPONSE_CANCEL);
/* Make this modal to avoid problems with reffing the view & file
* to keep them around in case the view changes, which would then
* cause the old view not to be destroyed, which would cause its
* merged Bonobo items not to be un-merged. Maybe we need to unmerge
* explicitly when disconnecting views instead of relying on the
* unmerge in Destroy. But since BonoboUIHandler is probably going
* to change wildly, I don't want to mess with this now.
*/
response = gtk_dialog_run (dialog);
gtk_widget_destroy (GTK_WIDGET (dialog));
if (response == GTK_RESPONSE_YES) {
file_as_list.data = file;
file_as_list.next = NULL;
file_as_list.prev = NULL;
trash_or_delete_files (parent_window, &file_as_list, TRUE);
}
out:
g_free (prompt);
g_free (target_path);
g_free (detail);
}
static ActivationAction
get_executable_text_file_action (GtkWindow *parent_window, NemoFile *file)
{
GtkDialog *dialog;
char *file_name;
char *prompt;
char *detail;
int preferences_value;
int response;
g_assert (nemo_file_contains_text (file));
preferences_value = g_settings_get_enum (nemo_preferences,
NEMO_PREFERENCES_EXECUTABLE_TEXT_ACTIVATION);
switch (preferences_value) {
case NEMO_EXECUTABLE_TEXT_LAUNCH_IN_TERMINAL:
return ACTIVATION_ACTION_LAUNCH_IN_TERMINAL;
case NEMO_EXECUTABLE_TEXT_LAUNCH:
return ACTIVATION_ACTION_LAUNCH;
case NEMO_EXECUTABLE_TEXT_DISPLAY:
return ACTIVATION_ACTION_OPEN_IN_APPLICATION;
case NEMO_EXECUTABLE_TEXT_ASK:
break;
default:
/* Complain non-fatally, since preference data can't be trusted */
g_warning ("Unknown value %d for NEMO_PREFERENCES_EXECUTABLE_TEXT_ACTIVATION",
preferences_value);
}
file_name = nemo_file_get_display_name (file);
prompt = g_strdup_printf (_("Do you want to run \"%s\", or display its contents?"),
file_name);
detail = g_strdup_printf (_("\"%s\" is an executable text file."),
file_name);
g_free (file_name);
dialog = eel_create_question_dialog (prompt,
detail,
_("Run in _Terminal"), RESPONSE_RUN_IN_TERMINAL,
_("_Display"), RESPONSE_DISPLAY,
parent_window);
gtk_dialog_add_button (dialog, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL);
gtk_dialog_add_button (dialog, _("_Run"), RESPONSE_RUN);
gtk_dialog_set_default_response (dialog, GTK_RESPONSE_CANCEL);
gtk_widget_show (GTK_WIDGET (dialog));
g_free (prompt);
g_free (detail);
response = gtk_dialog_run (dialog);
gtk_widget_destroy (GTK_WIDGET (dialog));
switch (response) {
case RESPONSE_RUN:
return ACTIVATION_ACTION_LAUNCH;
case RESPONSE_RUN_IN_TERMINAL:
return ACTIVATION_ACTION_LAUNCH_IN_TERMINAL;
case RESPONSE_DISPLAY:
return ACTIVATION_ACTION_OPEN_IN_APPLICATION;
default:
return ACTIVATION_ACTION_DO_NOTHING;
}
}
static ActivationAction
get_default_executable_text_file_action (void)
{
int preferences_value;
preferences_value = g_settings_get_enum (nemo_preferences,
NEMO_PREFERENCES_EXECUTABLE_TEXT_ACTIVATION);
switch (preferences_value) {
case NEMO_EXECUTABLE_TEXT_LAUNCH_IN_TERMINAL:
return ACTIVATION_ACTION_LAUNCH_IN_TERMINAL;
case NEMO_EXECUTABLE_TEXT_LAUNCH:
return ACTIVATION_ACTION_LAUNCH;
case NEMO_EXECUTABLE_TEXT_DISPLAY:
return ACTIVATION_ACTION_OPEN_IN_APPLICATION;
case NEMO_EXECUTABLE_TEXT_ASK:
default:
return ACTIVATION_ACTION_ASK;
}
}
gboolean
nemo_mime_file_opens_in_view (NemoFile *file)
{
return (nemo_file_is_directory (file) ||
NEMO_IS_DESKTOP_ICON_FILE (file));
}
static gboolean
nemo_mime_file_is_image (NemoFile *file) {
return nemo_file_is_mime_type(file, "image/*");
}
static ActivationAction
get_activation_action (NemoFile *file, gboolean is_desktop)
{
ActivationAction action;
char *activation_uri;
if (nemo_file_is_nemo_link (file)) {
return ACTIVATION_ACTION_LAUNCH_DESKTOP_FILE;
}
activation_uri = nemo_file_get_activation_uri (file);
if (activation_uri == NULL) {
activation_uri = nemo_file_get_uri (file);
}
action = ACTIVATION_ACTION_DO_NOTHING;
if (nemo_file_is_launchable (file)) {
char *executable_path;
action = ACTIVATION_ACTION_LAUNCH;
executable_path = g_filename_from_uri (activation_uri, NULL, NULL);
if (!executable_path) {
action = ACTIVATION_ACTION_DO_NOTHING;
} else if (nemo_file_contains_text (file)) {
action = get_default_executable_text_file_action ();
}
g_free (executable_path);
}
if (action == ACTIVATION_ACTION_DO_NOTHING) {
if (nemo_mime_file_opens_in_view (file) && !is_desktop) {
action = ACTIVATION_ACTION_OPEN_IN_VIEW;
} else {
action = ACTIVATION_ACTION_OPEN_IN_APPLICATION;
}
}
g_free (activation_uri);
return action;
}
gboolean
nemo_mime_file_opens_in_external_app (NemoFile *file)
{
ActivationAction activation_action;
activation_action = get_activation_action (file, FALSE);
return (activation_action == ACTIVATION_ACTION_OPEN_IN_APPLICATION);
}
static unsigned int
mime_application_hash (GAppInfo *app)
{
const char *id;
id = g_app_info_get_id (app);
if (id == NULL) {
return GPOINTER_TO_UINT(app);
}
return g_str_hash (id);
}
static void
list_to_parameters_foreach (GAppInfo *application,
GList *uris,
GList **ret)
{
ApplicationLaunchParameters *parameters;
uris = g_list_reverse (uris);
parameters = application_launch_parameters_new
(application, uris);
*ret = g_list_prepend (*ret, parameters);
}
/**
* make_activation_parameters
*
* Construct a list of ApplicationLaunchParameters from a list of NemoFiles,
* where files that have the same default application are put into the same
* launch parameter, and others are put into the unhandled_files list.
*
* @files: Files to use for construction.
* @unhandled_files: Files without any default application will be put here.
*
* Return value: Newly allocated list of ApplicationLaunchParameters.
**/
static GList *
make_activation_parameters (GList *uris,
GList **unhandled_uris)
{
GList *ret, *l, *app_uris;
NemoFile *file;
GAppInfo *app, *old_app;
GHashTable *app_table;
char *uri;
ret = NULL;
*unhandled_uris = NULL;
app_table = g_hash_table_new_full
((GHashFunc) mime_application_hash,
(GEqualFunc) g_app_info_equal,
(GDestroyNotify) g_object_unref,
(GDestroyNotify) g_list_free);
for (l = uris; l != NULL; l = l->next) {
uri = l->data;
file = nemo_file_get_by_uri (uri);
app = nemo_mime_get_default_application_for_file (file);
if (app != NULL) {
app_uris = NULL;
if (g_hash_table_lookup_extended (app_table, app,
(gpointer *) &old_app,
(gpointer *) &app_uris)) {
g_hash_table_steal (app_table, old_app);
app_uris = g_list_prepend (app_uris, uri);
g_object_unref (app);
app = old_app;
} else {
app_uris = g_list_prepend (NULL, uri);
}
g_hash_table_insert (app_table, app, app_uris);
} else {
*unhandled_uris = g_list_prepend (*unhandled_uris, uri);
}
nemo_file_unref (file);
}
g_hash_table_foreach (app_table,
(GHFunc) list_to_parameters_foreach,
&ret);
g_hash_table_destroy (app_table);
*unhandled_uris = g_list_reverse (*unhandled_uris);
return g_list_reverse (ret);
}
static gboolean
file_was_cancelled (NemoFile *file)
{
GError *error;
error = nemo_file_get_file_info_error (file);
return
error != NULL &&
error->domain == G_IO_ERROR &&
error->code == G_IO_ERROR_CANCELLED;
}
static gboolean
file_was_not_mounted (NemoFile *file)
{
GError *error;
error = nemo_file_get_file_info_error (file);
return
error != NULL &&
error->domain == G_IO_ERROR &&
error->code == G_IO_ERROR_NOT_MOUNTED;
}
static void
activation_parameters_free (ActivateParameters *parameters)
{
if (parameters->timed_wait_active) {
eel_timed_wait_stop (cancel_activate_callback, parameters);
}
if (parameters->slot) {
g_object_remove_weak_pointer (G_OBJECT (parameters->slot), (gpointer *)¶meters->slot);
}
if (parameters->parent_window) {
g_object_remove_weak_pointer (G_OBJECT (parameters->parent_window), (gpointer *)¶meters->parent_window);
}
g_object_unref (parameters->cancellable);
launch_location_list_free (parameters->locations);
nemo_file_list_free (parameters->mountables);
nemo_file_list_free (parameters->start_mountables);
nemo_file_list_free (parameters->not_mounted);
g_free (parameters->activation_directory);
g_free (parameters->timed_wait_prompt);
g_assert (parameters->files_handle == NULL);
g_free (parameters);
}
static void
cancel_activate_callback (gpointer callback_data)
{
ActivateParameters *parameters = callback_data;
parameters->timed_wait_active = FALSE;
g_cancellable_cancel (parameters->cancellable);
if (parameters->files_handle) {