Fix #283: add support for loading remote URLs
[geeqie.git] / src / remote.c
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: John Ellis
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #include "main.h"
23 #include "remote.h"
24
25 #include "cache_maint.h"
26 #include "collect.h"
27 #include "collect-io.h"
28 #include "filedata.h"
29 #include "filefilter.h"
30 #include "image.h"
31 #include "img-view.h"
32 #include "layout.h"
33 #include "layout_image.h"
34 #include "layout_util.h"
35 #include "misc.h"
36 #include "pixbuf-renderer.h"
37 #include "slideshow.h"
38 #include "ui_fileops.h"
39 #include "rcfile.h"
40
41 #include <sys/socket.h>
42 #include <sys/un.h>
43 #include <signal.h>
44 #include <errno.h>
45
46 #include "glua.h"
47
48 #define SERVER_MAX_CLIENTS 8
49
50 #define REMOTE_SERVER_BACKLOG 4
51
52
53 #ifndef UNIX_PATH_MAX
54 #define UNIX_PATH_MAX 108
55 #endif
56
57
58 static RemoteConnection *remote_client_open(const gchar *path);
59 static gint remote_client_send(RemoteConnection *rc, const gchar *text);
60 static void gr_raise(const gchar *text, GIOChannel *channel, gpointer data);
61
62 static LayoutWindow *lw_id = NULL; /* points to the window set by the --id option */
63
64 typedef struct _RemoteClient RemoteClient;
65 struct _RemoteClient {
66         gint fd;
67         guint channel_id; /* event source id */
68         RemoteConnection *rc;
69 };
70
71 typedef struct _RemoteData RemoteData;
72 struct _RemoteData {
73         CollectionData *command_collection;
74 };
75
76 /* Remote commands from main.c are prepended with the current dir the remote
77  * command was made from. Some remote commands require this. The
78  * value is stored here
79  */
80 static gchar *pwd = NULL;
81
82 /**
83  * @brief Ensures file path is absolute.
84  * @param[in] filename Filepath, absolute or relative to calling directory
85  * @returns absolute path
86  * 
87  * If first character of input filepath is not the directory
88  * separator, assume it as a relative path and prepend
89  * the directory the remote command was initiated from
90  * 
91  * Return value must be freed with g_free()
92  */
93 static gchar *set_pwd(gchar *filename)
94 {
95         gchar *temp;
96
97         if (strncmp(filename, G_DIR_SEPARATOR_S, 1) != 0)
98                 {
99                 temp = g_build_filename(pwd, filename, NULL);
100                 }
101         else
102                 {
103                 temp = g_strdup(filename);
104                 }
105
106         return temp;
107 }
108
109 static gboolean remote_server_client_cb(GIOChannel *source, GIOCondition condition, gpointer data)
110 {
111         RemoteClient *client = data;
112         RemoteConnection *rc;
113         GIOStatus status = G_IO_STATUS_NORMAL;
114
115         lw_id = NULL;
116         rc = client->rc;
117
118         if (condition & G_IO_IN)
119                 {
120                 gchar *buffer = NULL;
121                 GError *error = NULL;
122                 gsize termpos;
123
124                 while ((status = g_io_channel_read_line(source, &buffer, NULL, &termpos, &error)) == G_IO_STATUS_NORMAL)
125                         {
126                         if (buffer)
127                                 {
128                                 buffer[termpos] = '\0';
129
130                                 if (strlen(buffer) > 0)
131                                         {
132                                         if (rc->read_func) rc->read_func(rc, buffer, source, rc->read_data);
133                                         g_io_channel_write_chars(source, "\n", -1, NULL, NULL); /* empty line finishes the command */
134                                         g_io_channel_flush(source, NULL);
135                                         }
136                                 g_free(buffer);
137
138                                 buffer = NULL;
139                                 }
140                         }
141
142                 if (error)
143                         {
144                         log_printf("error reading socket: %s\n", error->message);
145                         g_error_free(error);
146                         }
147                 }
148
149         if (condition & G_IO_HUP || status == G_IO_STATUS_EOF || status == G_IO_STATUS_ERROR)
150                 {
151                 rc->clients = g_list_remove(rc->clients, client);
152
153                 DEBUG_1("HUP detected, closing client.");
154                 DEBUG_1("client count %d", g_list_length(rc->clients));
155
156                 g_source_remove(client->channel_id);
157                 close(client->fd);
158                 g_free(client);
159                 }
160
161         return TRUE;
162 }
163
164 static void remote_server_client_add(RemoteConnection *rc, gint fd)
165 {
166         RemoteClient *client;
167         GIOChannel *channel;
168
169         if (g_list_length(rc->clients) > SERVER_MAX_CLIENTS)
170                 {
171                 log_printf("maximum remote clients of %d exceeded, closing connection\n", SERVER_MAX_CLIENTS);
172                 close(fd);
173                 return;
174                 }
175
176         client = g_new0(RemoteClient, 1);
177         client->rc = rc;
178         client->fd = fd;
179
180         channel = g_io_channel_unix_new(fd);
181         client->channel_id = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, G_IO_IN | G_IO_HUP,
182                                                  remote_server_client_cb, client, NULL);
183         g_io_channel_unref(channel);
184
185         rc->clients = g_list_append(rc->clients, client);
186         DEBUG_1("client count %d", g_list_length(rc->clients));
187 }
188
189 static void remote_server_clients_close(RemoteConnection *rc)
190 {
191         while (rc->clients)
192                 {
193                 RemoteClient *client = rc->clients->data;
194
195                 rc->clients = g_list_remove(rc->clients, client);
196
197                 g_source_remove(client->channel_id);
198                 close(client->fd);
199                 g_free(client);
200                 }
201 }
202
203 static gboolean remote_server_read_cb(GIOChannel *source, GIOCondition condition, gpointer data)
204 {
205         RemoteConnection *rc = data;
206         gint fd;
207         guint alen;
208
209         fd = accept(rc->fd, NULL, &alen);
210         if (fd == -1)
211                 {
212                 log_printf("error accepting socket: %s\n", strerror(errno));
213                 return TRUE;
214                 }
215
216         remote_server_client_add(rc, fd);
217
218         return TRUE;
219 }
220
221 gboolean remote_server_exists(const gchar *path)
222 {
223         RemoteConnection *rc;
224
225         /* verify server up */
226         rc = remote_client_open(path);
227         remote_close(rc);
228
229         if (rc) return TRUE;
230
231         /* unable to connect, remove socket file to free up address */
232         unlink(path);
233         return FALSE;
234 }
235
236 static RemoteConnection *remote_server_open(const gchar *path)
237 {
238         RemoteConnection *rc;
239         struct sockaddr_un addr;
240         gint sun_path_len;
241         gint fd;
242         GIOChannel *channel;
243
244         if (remote_server_exists(path))
245                 {
246                 log_printf("Address already in use: %s\n", path);
247                 return NULL;
248                 }
249
250         fd = socket(PF_UNIX, SOCK_STREAM, 0);
251         if (fd == -1) return NULL;
252
253         addr.sun_family = AF_UNIX;
254         sun_path_len = MIN(strlen(path) + 1, UNIX_PATH_MAX);
255         strncpy(addr.sun_path, path, sun_path_len);
256         if (bind(fd, &addr, sizeof(addr)) == -1 ||
257             listen(fd, REMOTE_SERVER_BACKLOG) == -1)
258                 {
259                 log_printf("error subscribing to socket: %s\n", strerror(errno));
260                 close(fd);
261                 return NULL;
262                 }
263
264         rc = g_new0(RemoteConnection, 1);
265
266         rc->server = TRUE;
267         rc->fd = fd;
268         rc->path = g_strdup(path);
269
270         channel = g_io_channel_unix_new(rc->fd);
271         g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL);
272
273         rc->channel_id = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, G_IO_IN,
274                                              remote_server_read_cb, rc, NULL);
275         g_io_channel_unref(channel);
276
277         return rc;
278 }
279
280 static void remote_server_subscribe(RemoteConnection *rc, RemoteReadFunc *func, gpointer data)
281 {
282         if (!rc || !rc->server) return;
283
284         rc->read_func = func;
285         rc->read_data = data;
286 }
287
288
289 static RemoteConnection *remote_client_open(const gchar *path)
290 {
291         RemoteConnection *rc;
292         struct stat st;
293         struct sockaddr_un addr;
294         gint sun_path_len;
295         gint fd;
296
297         if (stat(path, &st) != 0 || !S_ISSOCK(st.st_mode)) return NULL;
298
299         fd = socket(PF_UNIX, SOCK_STREAM, 0);
300         if (fd == -1) return NULL;
301
302         addr.sun_family = AF_UNIX;
303         sun_path_len = MIN(strlen(path) + 1, UNIX_PATH_MAX);
304         strncpy(addr.sun_path, path, sun_path_len);
305         if (connect(fd, &addr, sizeof(addr)) == -1)
306                 {
307                 DEBUG_1("error connecting to socket: %s", strerror(errno));
308                 close(fd);
309                 return NULL;
310                 }
311
312         rc = g_new0(RemoteConnection, 1);
313         rc->server = FALSE;
314         rc->fd = fd;
315         rc->path = g_strdup(path);
316
317         return rc;
318 }
319
320 static sig_atomic_t sigpipe_occurred = FALSE;
321
322 static void sighandler_sigpipe(gint sig)
323 {
324         sigpipe_occurred = TRUE;
325 }
326
327 static gboolean remote_client_send(RemoteConnection *rc, const gchar *text)
328 {
329         struct sigaction new_action, old_action;
330         gboolean ret = FALSE;
331         GError *error = NULL;
332         GIOChannel *channel;
333
334         if (!rc || rc->server) return FALSE;
335         if (!text) return TRUE;
336
337         sigpipe_occurred = FALSE;
338
339         new_action.sa_handler = sighandler_sigpipe;
340         sigemptyset(&new_action.sa_mask);
341         new_action.sa_flags = 0;
342
343         /* setup our signal handler */
344         sigaction(SIGPIPE, &new_action, &old_action);
345
346         channel = g_io_channel_unix_new(rc->fd);
347
348         g_io_channel_write_chars(channel, text, -1, NULL, &error);
349         g_io_channel_write_chars(channel, "\n", -1, NULL, &error);
350         g_io_channel_flush(channel, &error);
351
352         if (error)
353                 {
354                 log_printf("error reading socket: %s\n", error->message);
355                 g_error_free(error);
356                 ret = FALSE;;
357                 }
358         else
359                 {
360                 ret = TRUE;
361                 }
362
363         if (ret)
364                 {
365                 gchar *buffer = NULL;
366                 gsize termpos;
367                 while (g_io_channel_read_line(channel, &buffer, NULL, &termpos, &error) == G_IO_STATUS_NORMAL)
368                         {
369                         if (buffer)
370                                 {
371                                 if (buffer[0] == '\n') /* empty line finishes the command */
372                                         {
373                                         g_free(buffer);
374                                         fflush(stdout);
375                                         break;
376                                         }
377                                 buffer[termpos] = '\0';
378                                 printf("%s\n", buffer);
379                                 g_free(buffer);
380                                 buffer = NULL;
381                                 }
382                         }
383
384                 if (error)
385                         {
386                         log_printf("error reading socket: %s\n", error->message);
387                         g_error_free(error);
388                         ret = FALSE;
389                         }
390                 }
391
392
393         /* restore the original signal handler */
394         sigaction(SIGPIPE, &old_action, NULL);
395         g_io_channel_unref(channel);
396         return ret;
397 }
398
399 void remote_close(RemoteConnection *rc)
400 {
401         if (!rc) return;
402
403         if (rc->server)
404                 {
405                 remote_server_clients_close(rc);
406
407                 g_source_remove(rc->channel_id);
408                 unlink(rc->path);
409                 }
410
411         if (rc->read_data)
412                 g_free(rc->read_data);
413
414         close(rc->fd);
415
416         g_free(rc->path);
417         g_free(rc);
418 }
419
420 /*
421  *-----------------------------------------------------------------------------
422  * remote functions
423  *-----------------------------------------------------------------------------
424  */
425
426 static void gr_image_next(const gchar *text, GIOChannel *channel, gpointer data)
427 {
428         layout_image_next(lw_id);
429 }
430
431 static void gr_new_window(const gchar *text, GIOChannel *channel, gpointer data)
432 {
433         LayoutWindow *lw = NULL;
434
435         if (!layout_valid(&lw)) return;
436
437         lw_id = layout_menu_new_window(NULL, lw);
438 }
439
440 static gboolean gr_close_window_cb()
441 {
442         if (!layout_valid(&lw_id)) return FALSE;
443
444         layout_menu_close_cb(NULL, lw_id);
445
446         return FALSE;
447 }
448
449 static void gr_close_window(const gchar *text, GIOChannel *channel, gpointer data)
450 {
451         g_idle_add(gr_close_window_cb, NULL);
452 }
453
454 static void gr_image_prev(const gchar *text, GIOChannel *channel, gpointer data)
455 {
456         layout_image_prev(lw_id);
457 }
458
459 static void gr_image_first(const gchar *text, GIOChannel *channel, gpointer data)
460 {
461         layout_image_first(lw_id);
462 }
463
464 static void gr_image_last(const gchar *text, GIOChannel *channel, gpointer data)
465 {
466         layout_image_last(lw_id);
467 }
468
469 static void gr_fullscreen_toggle(const gchar *text, GIOChannel *channel, gpointer data)
470 {
471         layout_image_full_screen_toggle(lw_id);
472 }
473
474 static void gr_fullscreen_start(const gchar *text, GIOChannel *channel, gpointer data)
475 {
476         layout_image_full_screen_start(lw_id);
477 }
478
479 static void gr_fullscreen_stop(const gchar *text, GIOChannel *channel, gpointer data)
480 {
481         layout_image_full_screen_stop(lw_id);
482 }
483
484 static void gr_lw_id(const gchar *text, GIOChannel *channel, gpointer data)
485 {
486         lw_id = layout_find_by_layout_id(text);
487         if (!lw_id)
488                 {
489                 log_printf("remote sent window ID that does not exist:\"%s\"\n",text);
490                 }
491         layout_valid(&lw_id);
492 }
493
494 static void gr_slideshow_start_rec(const gchar *text, GIOChannel *channel, gpointer data)
495 {
496         GList *list;
497         FileData *dir_fd = file_data_new_dir(text);
498
499         layout_valid(&lw_id);
500         list = filelist_recursive_full(dir_fd, lw_id->sort_method, lw_id->sort_ascend);
501         file_data_unref(dir_fd);
502         if (!list) return;
503 //printf("length: %d\n", g_list_length(list));
504         layout_image_slideshow_stop(lw_id);
505         layout_image_slideshow_start_from_list(lw_id, list);
506 }
507
508 static void gr_cache_thumb(const gchar *text, GIOChannel *channel, gpointer data)
509 {
510         if (!g_strcmp0(text, "clear"))
511                 cache_maintain_home_remote(FALSE, TRUE);
512         else if (!g_strcmp0(text, "clean"))
513                 cache_maintain_home_remote(FALSE, FALSE);
514 }
515
516 static void gr_cache_shared(const gchar *text, GIOChannel *channel, gpointer data)
517 {
518         if (!g_strcmp0(text, "clear"))
519                 cache_manager_standard_process_remote(TRUE);
520         else if (!g_strcmp0(text, "clean"))
521                 cache_manager_standard_process_remote(FALSE);
522 }
523
524 static void gr_cache_metadata(const gchar *text, GIOChannel *channel, gpointer data)
525 {
526         cache_maintain_home_remote(TRUE, FALSE);
527 }
528
529 static void gr_cache_render(const gchar *text, GIOChannel *channel, gpointer data)
530 {
531         cache_manager_render_remote(text, FALSE, FALSE);
532 }
533
534 static void gr_cache_render_recurse(const gchar *text, GIOChannel *channel, gpointer data)
535 {
536         cache_manager_render_remote(text, TRUE, FALSE);
537 }
538
539 static void gr_cache_render_standard(const gchar *text, GIOChannel *channel, gpointer data)
540 {
541         if(options->thumbnails.spec_standard)
542                 cache_manager_render_remote(text, FALSE, TRUE);
543 }
544
545 static void gr_cache_render_standard_recurse(const gchar *text, GIOChannel *channel, gpointer data)
546 {
547         if(options->thumbnails.spec_standard)
548                 cache_manager_render_remote(text, TRUE, TRUE);
549 }
550
551 static void gr_slideshow_toggle(const gchar *text, GIOChannel *channel, gpointer data)
552 {
553         layout_image_slideshow_toggle(lw_id);
554 }
555
556 static void gr_slideshow_start(const gchar *text, GIOChannel *channel, gpointer data)
557 {
558         layout_image_slideshow_start(lw_id);
559 }
560
561 static void gr_slideshow_stop(const gchar *text, GIOChannel *channel, gpointer data)
562 {
563         layout_image_slideshow_stop(lw_id);
564 }
565
566 static void gr_slideshow_delay(const gchar *text, GIOChannel *channel, gpointer data)
567 {
568         gdouble t1, t2, t3, n;
569         gint res;
570
571         res = sscanf(text, "%lf:%lf:%lf", &t1, &t2, &t3);
572         if (res == 3)
573                 {
574                 n = (t1 * 3600) + (t2 * 60) + t3;
575                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS ||
576                                 t1 >= 24 || t2 >= 60 || t3 >= 60)
577                         {
578                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
579                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
580                         return;
581                         }
582                 }
583         else if (res == 2)
584                 {
585                 n = t1 * 60 + t2;
586                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS ||
587                                 t1 >= 60 || t2 >= 60)
588                         {
589                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
590                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
591                         return;
592                         }
593                 }
594         else if (res == 1)
595                 {
596                 n = t1;
597                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS)
598                         {
599                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
600                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
601                         return;
602                         }
603                 }
604         else
605                 {
606                 n = 0;
607                 }
608
609         options->slideshow.delay = (gint)(n * 10.0 + 0.01);
610 }
611
612 static void gr_tools_show(const gchar *text, GIOChannel *channel, gpointer data)
613 {
614         gboolean popped;
615         gboolean hidden;
616
617         if (layout_tools_float_get(lw_id, &popped, &hidden) && hidden)
618                 {
619                 layout_tools_float_set(lw_id, popped, FALSE);
620                 }
621 }
622
623 static void gr_tools_hide(const gchar *text, GIOChannel *channel, gpointer data)
624 {
625         gboolean popped;
626         gboolean hidden;
627
628         if (layout_tools_float_get(lw_id, &popped, &hidden) && !hidden)
629                 {
630                 layout_tools_float_set(lw_id, popped, TRUE);
631                 }
632 }
633
634 static gboolean gr_quit_idle_cb(gpointer data)
635 {
636         exit_program();
637
638         return FALSE;
639 }
640
641 static void gr_quit(const gchar *text, GIOChannel *channel, gpointer data)
642 {
643         /* schedule exit when idle, if done from within a
644          * remote handler remote_close will crash
645          */
646         g_idle_add(gr_quit_idle_cb, NULL);
647 }
648
649 static void gr_file_load_no_raise(const gchar *text, GIOChannel *channel, gpointer data)
650 {
651         gchar *filename;
652         gchar *tilde_filename;
653
654         if (!download_web_file(text, NULL))
655                 {
656                 tilde_filename = expand_tilde(text);
657                 filename = set_pwd(tilde_filename);
658
659                 if (isfile(filename))
660                         {
661                         if (file_extension_match(filename, GQ_COLLECTION_EXT))
662                                 {
663                                 collection_window_new(filename);
664                                 }
665                         else
666                                 {
667                                 layout_set_path(lw_id, filename);
668                                 }
669                         }
670                 else if (isdir(filename))
671                         {
672                         layout_set_path(lw_id, filename);
673                         }
674                 else
675                         {
676                         log_printf("remote sent filename that does not exist:\"%s\"\n", filename);
677                         layout_set_path(lw_id, homedir());
678                         }
679
680                 g_free(filename);
681                 g_free(tilde_filename);
682                 }
683 }
684
685 static void gr_file_load(const gchar *text, GIOChannel *channel, gpointer data)
686 {
687         gr_file_load_no_raise(text, channel, data);
688
689         gr_raise(text, channel, data);
690 }
691
692 static void gr_pixel_info(const gchar *text, GIOChannel *channel, gpointer data)
693 {
694         gchar *pixel_info;
695         gint x_pixel, y_pixel;
696         gint width, height;
697         gint r_mouse, g_mouse, b_mouse;
698         PixbufRenderer *pr;
699         LayoutWindow *lw = NULL;
700
701         if (!layout_valid(&lw_id)) return;
702
703         pr = (PixbufRenderer*)lw_id->image->pr;
704
705         if (pr)
706                 {
707                 pixbuf_renderer_get_image_size(pr, &width, &height);
708                 if (width < 1 || height < 1) return;
709
710                 pixbuf_renderer_get_mouse_position(pr, &x_pixel, &y_pixel);
711
712                 if (x_pixel >= 0 && y_pixel >= 0)
713                         {
714                         pixbuf_renderer_get_pixel_colors(pr, x_pixel, y_pixel,
715                                                          &r_mouse, &g_mouse, &b_mouse);
716
717                         pixel_info = g_strdup_printf(_("[%d,%d]: RGB(%3d,%3d,%3d)"),
718                                                  x_pixel, y_pixel,
719                                                  r_mouse, g_mouse, b_mouse);
720
721                         g_io_channel_write_chars(channel, pixel_info, -1, NULL, NULL);
722                         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
723
724                         g_free(pixel_info);
725                         }
726                 else
727                         {
728                         return;
729                         }
730                 }
731         else
732                 {
733                 return;
734                 }
735 }
736
737 static void gr_rectangle(const gchar *text, GIOChannel *channel, gpointer data)
738 {
739         gchar *rectangle_info;
740         PixbufRenderer *pr;
741         LayoutWindow *lw = NULL;
742         gint x1, y1, x2, y2;
743
744         if (!options->draw_rectangle) return;
745         if (!layout_valid(&lw_id)) return;
746
747         pr = (PixbufRenderer*)lw_id->image->pr;
748
749         if (pr)
750                 {
751                 image_get_rectangle(&x1, &y1, &x2, &y2);
752                 rectangle_info = g_strdup_printf(_("%dx%d+%d+%d"),
753                                         (x2 > x1) ? x2 - x1 : x1 - x2,
754                                         (y2 > y1) ? y2 - y1 : y1 - y2,
755                                         (x2 > x1) ? x1 : x2,
756                                         (y2 > y1) ? y1 : y2);
757
758                 g_io_channel_write_chars(channel, rectangle_info, -1, NULL, NULL);
759                 g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
760
761                 g_free(rectangle_info);
762                 }
763 }
764
765 static void gr_render_intent(const gchar *text, GIOChannel *channel, gpointer data)
766 {
767         gchar *render_intent;
768
769         switch (options->color_profile.render_intent)
770                 {
771                 case 0:
772                         render_intent = g_strdup("Perceptual");
773                         break;
774                 case 1:
775                         render_intent = g_strdup("Relative Colorimetric");
776                         break;
777                 case 2:
778                         render_intent = g_strdup("Saturation");
779                         break;
780                 case 3:
781                         render_intent = g_strdup("Absolute Colorimetric");
782                         break;
783                 default:
784                         render_intent = g_strdup("none");
785                         break;
786                 }
787
788         g_io_channel_write_chars(channel, render_intent, -1, NULL, NULL);
789         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
790
791         g_free(render_intent);
792 }
793
794 static void get_filelist(const gchar *text, GIOChannel *channel, gboolean recurse)
795 {
796         GList *list = NULL;
797         FileFormatClass class;
798         FileData *dir_fd;
799         FileData *fd;
800         GString *out_string = g_string_new(NULL);
801         GList *work;
802
803         if (strcmp(text, "") == 0)
804                 {
805                 if (layout_valid(&lw_id))
806                         {
807                         dir_fd = file_data_new_dir(lw_id->dir_fd->path);
808                         }
809                 else
810                         {
811                         return;
812                         }
813                 }
814         else
815                 {
816                 if (isdir(text))
817                         {
818                         dir_fd = file_data_new_dir(text);
819                         }
820                 else
821                         {
822                         return;
823                         }
824                 }
825
826         if (recurse)
827                 {
828                 list = filelist_recursive(dir_fd);
829                 }
830         else
831                 {
832                 filelist_read(dir_fd, &list, NULL);
833                 }
834
835         work = list;
836         while (work)
837                 {
838                 fd = work->data;
839                 g_string_append_printf(out_string, "%s", fd->path);
840                 class = filter_file_get_class(fd->path);
841
842                 switch (class)
843                         {
844                         case FORMAT_CLASS_IMAGE:
845                                 out_string = g_string_append(out_string, "    Class: Image");
846                                 break;
847                         case FORMAT_CLASS_RAWIMAGE:
848                                 out_string = g_string_append(out_string, "    Class: RAW image");
849                                 break;
850                         case FORMAT_CLASS_META:
851                                 out_string = g_string_append(out_string, "    Class: Metadata");
852                                 break;
853                         case FORMAT_CLASS_VIDEO:
854                                 out_string = g_string_append(out_string, "    Class: Video");
855                                 break;
856                         case FORMAT_CLASS_COLLECTION:
857                                 out_string = g_string_append(out_string, "    Class: Collection");
858                                 break;
859                         case FORMAT_CLASS_PDF:
860                                 out_string = g_string_append(out_string, "    Class: PDF");
861                                 break;
862                         case FORMAT_CLASS_UNKNOWN:
863                                 out_string = g_string_append(out_string, "    Class: Unknown");
864                                 break;
865                         default:
866                                 out_string = g_string_append(out_string, "    Class: Unknown");
867                                 break;
868                         }
869                 out_string = g_string_append(out_string, "\n");
870                 work = work->next;
871                 }
872
873         g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
874         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
875
876         g_string_free(out_string, TRUE);
877         filelist_free(list);
878         file_data_unref(dir_fd);
879 }
880
881 static void gr_collection(const gchar *text, GIOChannel *channel, gpointer data)
882 {
883         GString *contents = g_string_new(NULL);
884
885         if (is_collection(text))
886                 {
887                 collection_contents(text, &contents);
888                 }
889         else
890                 {
891                 return;
892                 }
893
894         g_io_channel_write_chars(channel, contents->str, -1, NULL, NULL);
895         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
896
897         g_string_free(contents, TRUE);
898 }
899
900 static void gr_collection_list(const gchar *text, GIOChannel *channel, gpointer data)
901 {
902
903         GList *collection_list = NULL;
904         GList *work;
905         GString *out_string = g_string_new(NULL);
906
907         collect_manager_list(&collection_list, NULL, NULL);
908
909         work = collection_list;
910         while (work)
911                 {
912                 const gchar *collection_name = work->data;
913                 out_string = g_string_append(out_string, g_strdup(collection_name));
914                 out_string = g_string_append(out_string, "\n");
915
916                 work = work->next;
917                 }
918
919         g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
920         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
921
922         string_list_free(collection_list);
923         g_string_free(out_string, TRUE);
924 }
925
926
927 static void gr_filelist(const gchar *text, GIOChannel *channel, gpointer data)
928 {
929         get_filelist(text, channel, FALSE);
930 }
931
932 static void gr_filelist_recurse(const gchar *text, GIOChannel *channel, gpointer data)
933 {
934         get_filelist(text, channel, TRUE);
935 }
936
937 static void gr_file_tell(const gchar *text, GIOChannel *channel, gpointer data)
938 {
939         gchar *out_string;
940         gchar *collection_name = NULL;
941
942         if (!layout_valid(&lw_id)) return;
943
944         if (image_get_path(lw_id->image))
945                 {
946                 if (lw_id->image->collection && lw_id->image->collection->name)
947                         {
948                         collection_name = remove_extension_from_path(lw_id->image->collection->name);
949                         out_string = g_strconcat(image_get_path(lw_id->image), "    Collection: ", collection_name, NULL);
950                         }
951                 else
952                         {
953                         out_string = g_strconcat(image_get_path(lw_id->image), NULL);
954                         }
955
956                 g_io_channel_write_chars(channel, out_string, -1, NULL, NULL);
957                 g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
958
959                 g_free(collection_name);
960                 g_free(out_string);
961                 }
962 }
963
964 static void gr_config_load(const gchar *text, GIOChannel *channel, gpointer data)
965 {
966         gchar *filename = expand_tilde(text);
967
968         if (isfile(filename))
969                 {
970                 load_config_from_file(filename, FALSE);
971                 }
972         else
973                 {
974                 log_printf("remote sent filename that does not exist:\"%s\"\n", filename);
975                 layout_set_path(NULL, homedir());
976                 }
977
978         g_free(filename);
979 }
980
981 static void gr_get_sidecars(const gchar *text, GIOChannel *channel, gpointer data)
982 {
983         gchar *filename = expand_tilde(text);
984         FileData *fd = file_data_new_group(filename);
985
986         GList *work;
987         if (fd->parent) fd = fd->parent;
988
989         g_io_channel_write_chars(channel, fd->path, -1, NULL, NULL);
990         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
991
992         work = fd->sidecar_files;
993
994         while (work)
995                 {
996                 fd = work->data;
997                 work = work->next;
998                 g_io_channel_write_chars(channel, fd->path, -1, NULL, NULL);
999                 g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
1000                 }
1001         g_free(filename);
1002 }
1003
1004 static void gr_get_destination(const gchar *text, GIOChannel *channel, gpointer data)
1005 {
1006         gchar *filename = expand_tilde(text);
1007         FileData *fd = file_data_new_group(filename);
1008
1009         if (fd->change && fd->change->dest)
1010                 {
1011                 g_io_channel_write_chars(channel, fd->change->dest, -1, NULL, NULL);
1012                 g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
1013                 }
1014         g_free(filename);
1015 }
1016
1017 static void gr_file_view(const gchar *text, GIOChannel *channel, gpointer data)
1018 {
1019         gchar *filename;
1020         gchar *tilde_filename = expand_tilde(text);
1021
1022         filename = set_pwd(tilde_filename);
1023
1024         view_window_new(file_data_new_group(filename));
1025         g_free(filename);
1026         g_free(tilde_filename);
1027 }
1028
1029 static void gr_list_clear(const gchar *text, GIOChannel *channel, gpointer data)
1030 {
1031         RemoteData *remote_data = data;
1032
1033         if (remote_data->command_collection)
1034                 {
1035                 collection_unref(remote_data->command_collection);
1036                 remote_data->command_collection = NULL;
1037                 }
1038 }
1039
1040 static void gr_list_add(const gchar *text, GIOChannel *channel, gpointer data)
1041 {
1042         RemoteData *remote_data = data;
1043         gboolean new = TRUE;
1044
1045         if (!remote_data->command_collection)
1046                 {
1047                 CollectionData *cd;
1048
1049                 cd = collection_new("");
1050
1051                 g_free(cd->path);
1052                 cd->path = NULL;
1053                 g_free(cd->name);
1054                 cd->name = g_strdup(_("Command line"));
1055
1056                 remote_data->command_collection = cd;
1057                 }
1058         else
1059                 {
1060                 new = (!collection_get_first(remote_data->command_collection));
1061                 }
1062
1063         if (collection_add(remote_data->command_collection, file_data_new_group(text), FALSE) && new)
1064                 {
1065                 layout_image_set_collection(NULL, remote_data->command_collection,
1066                                             collection_get_first(remote_data->command_collection));
1067                 }
1068 }
1069
1070 static void gr_raise(const gchar *text, GIOChannel *channel, gpointer data)
1071 {
1072         LayoutWindow *lw = NULL;
1073
1074         if (layout_valid(&lw_id))
1075                 {
1076                 gtk_window_present(GTK_WINDOW(lw_id->window));
1077                 }
1078 }
1079
1080 static void gr_pwd(const gchar *text, GIOChannel *channel, gpointer data)
1081 {
1082         LayoutWindow *lw = NULL;
1083
1084         g_free(pwd);
1085         pwd = g_strdup(text);
1086 }
1087
1088 #ifdef HAVE_LUA
1089 static void gr_lua(const gchar *text, GIOChannel *channel, gpointer data)
1090 {
1091         gchar *result = NULL;
1092         gchar **lua_command;
1093
1094         lua_command = g_strsplit(text, ",", 2);
1095
1096         if (lua_command[0] && lua_command[1])
1097                 {
1098                 FileData *fd = file_data_new_group(lua_command[0]);
1099                 result = g_strdup(lua_callvalue(fd, lua_command[1], NULL));
1100                 if (result)
1101                         {
1102                         g_io_channel_write_chars(channel, result, -1, NULL, NULL);
1103                         }
1104                 else
1105                         {
1106                         g_io_channel_write_chars(channel, N_("lua error: no data"), -1, NULL, NULL);
1107                         }
1108                 }
1109         else
1110                 {
1111                 g_io_channel_write_chars(channel, N_("lua error: no data"), -1, NULL, NULL);
1112                 }
1113
1114         g_io_channel_write_chars(channel, "\n", -1, NULL, NULL);
1115
1116         g_strfreev(lua_command);
1117         g_free(result);
1118 }
1119 #endif
1120
1121 typedef struct _RemoteCommandEntry RemoteCommandEntry;
1122 struct _RemoteCommandEntry {
1123         gchar *opt_s;
1124         gchar *opt_l;
1125         void (*func)(const gchar *text, GIOChannel *channel, gpointer data);
1126         gboolean needs_extra;
1127         gboolean prefer_command_line;
1128         gchar *parameter;
1129         gchar *description;
1130 };
1131
1132 static RemoteCommandEntry remote_commands[] = {
1133         /* short, long                  callback,               extra, prefer, parameter, description */
1134         { "-n", "--next",               gr_image_next,          FALSE, FALSE, NULL, N_("next image") },
1135         { "-b", "--back",               gr_image_prev,          FALSE, FALSE, NULL, N_("previous image") },
1136         { NULL, "--first",              gr_image_first,         FALSE, FALSE, NULL, N_("first image") },
1137         { NULL, "--last",               gr_image_last,          FALSE, FALSE, NULL, N_("last image") },
1138         { "-f", "--fullscreen",         gr_fullscreen_toggle,   FALSE, TRUE,  NULL, N_("toggle full screen") },
1139         { "-fs","--fullscreen-start",   gr_fullscreen_start,    FALSE, FALSE, NULL, N_("start full screen") },
1140         { "-fS","--fullscreen-stop",    gr_fullscreen_stop,     FALSE, FALSE, NULL, N_("stop full screen") },
1141         { "-s", "--slideshow",          gr_slideshow_toggle,    FALSE, TRUE,  NULL, N_("toggle slide show") },
1142         { "-ss","--slideshow-start",    gr_slideshow_start,     FALSE, FALSE, NULL, N_("start slide show") },
1143         { "-sS","--slideshow-stop",     gr_slideshow_stop,      FALSE, FALSE, NULL, N_("stop slide show") },
1144         { NULL, "--slideshow-recurse:", gr_slideshow_start_rec, TRUE,  FALSE, N_("<FOLDER>"), N_("start recursive slide show in FOLDER") },
1145         { "-d", "--delay=",             gr_slideshow_delay,     TRUE,  FALSE, N_("<[H:][M:][N][.M]>"), N_("set slide show delay to Hrs Mins N.M seconds") },
1146         { "+t", "--tools-show",         gr_tools_show,          FALSE, TRUE,  NULL, N_("show tools") },
1147         { "-t", "--tools-hide",         gr_tools_hide,          FALSE, TRUE,  NULL, N_("hide tools") },
1148         { "-q", "--quit",               gr_quit,                FALSE, FALSE, NULL, N_("quit") },
1149         { NULL, "--config-load:",       gr_config_load,         TRUE,  FALSE, N_("<FILE>"), N_("load configuration from FILE") },
1150         { NULL, "--get-sidecars:",      gr_get_sidecars,        TRUE,  FALSE, N_("<FILE>"), N_("get list of sidecars of FILE") },
1151         { NULL, "--get-destination:",   gr_get_destination,     TRUE,  FALSE, N_("<FILE>"), N_("get destination path of FILE") },
1152         { NULL, "file:",                gr_file_load,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE, bring Geeqie window to the top") },
1153         { NULL, "--file:",              gr_file_load,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE, bring Geeqie window to the top") },
1154         { NULL, "File:",                gr_file_load_no_raise,  TRUE,  FALSE, N_("<FILE>"), N_("open FILE, do not bring Geeqie window to the top") },
1155         { NULL, "--File:",              gr_file_load_no_raise,  TRUE,  FALSE, N_("<FILE>"), N_("open FILE, do not bring Geeqie window to the top") },
1156         { NULL, "--tell",               gr_file_tell,           FALSE, FALSE, NULL, N_("print filename [and Collection] of current image") },
1157         { NULL, "--pixel-info",         gr_pixel_info,          FALSE, FALSE, NULL, N_("print pixel info of mouse pointer on current image") },
1158         { NULL, "--get-rectangle",      gr_rectangle,           FALSE, FALSE, NULL, N_("get rectangle co-ordinates") },
1159         { NULL, "--get-render-intent",  gr_render_intent,       FALSE, FALSE, NULL, N_("get render intent") },
1160         { NULL, "--get-filelist:",      gr_filelist,            TRUE,  FALSE, N_("[<FOLDER>]"), N_("get list of files and class") },
1161         { NULL, "--get-filelist-recurse:", gr_filelist_recurse, TRUE,  FALSE, N_("[<FOLDER>]"), N_("get list of files and class recursive") },
1162         { NULL, "--get-collection:",    gr_collection,          TRUE,  FALSE, N_("<COLLECTION>"), N_("get collection content") },
1163         { NULL, "--get-collection-list", gr_collection_list,    FALSE, FALSE, NULL, N_("get collection list") },
1164         { NULL, "view:",                gr_file_view,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE in new window") },
1165         { NULL, "--view:",              gr_file_view,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE in new window") },
1166         { NULL, "--list-clear",         gr_list_clear,          FALSE, FALSE, NULL, N_("clear command line collection list") },
1167         { NULL, "--list-add:",          gr_list_add,            TRUE,  FALSE, N_("<FILE>"), N_("add FILE to command line collection list") },
1168         { NULL, "raise",                gr_raise,               FALSE, FALSE, NULL, N_("bring the Geeqie window to the top") },
1169         { NULL, "--raise",              gr_raise,               FALSE, FALSE, NULL, N_("bring the Geeqie window to the top") },
1170         { NULL, "--id:",                gr_lw_id,               TRUE, FALSE, N_("<ID>"), N_("window id for following commands") },
1171         { NULL, "--new-window",         gr_new_window,          FALSE, FALSE, NULL, N_("new window") },
1172         { NULL, "--close-window",       gr_close_window,        FALSE, FALSE, NULL, N_("close window") },
1173         { "-ct:", "--cache-thumbs:",    gr_cache_thumb,         TRUE, FALSE, N_("clear|clean"), N_("clear or clean thumbnail cache") },
1174         { "-cs:", "--cache-shared:",    gr_cache_shared,        TRUE, FALSE, N_("clear|clean"), N_("clear or clean shared thumbnail cache") },
1175         { "-cm","--cache-metadata",      gr_cache_metadata,               FALSE, FALSE, NULL, N_("    clean the metadata cache") },
1176         { "-cr:", "--cache-render:",    gr_cache_render,        TRUE, FALSE, N_("<folder>  "), N_(" render thumbnails") },
1177         { "-crr:", "--cache-render-recurse:", gr_cache_render_recurse, TRUE, FALSE, N_("<folder> "), N_("render thumbnails recursively") },
1178         { "-crs:", "--cache-render-shared:", gr_cache_render_standard, TRUE, FALSE, N_("<folder> "), N_(" render thumbnails (see Help)") },
1179         { "-crsr:", "--cache-render-shared-recurse:", gr_cache_render_standard_recurse, TRUE, FALSE, N_("<folder>"), N_(" render thumbnails recursively (see Help)") },
1180 #ifdef HAVE_LUA
1181         { NULL, "--lua:",               gr_lua,                 TRUE, FALSE, N_("<FILE>,<lua script>"), N_("run lua script on FILE") },
1182 #endif
1183         { NULL, "--PWD:",               gr_pwd,                 TRUE, FALSE, N_("<PWD>"), N_("use PWD as working directory for following commands") },
1184         { NULL, NULL, NULL, FALSE, FALSE, NULL, NULL }
1185 };
1186
1187 static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar **offset)
1188 {
1189         gboolean match = FALSE;
1190         gint i;
1191
1192         i = 0;
1193         while (!match && remote_commands[i].func != NULL)
1194                 {
1195                 if (remote_commands[i].needs_extra)
1196                         {
1197                         if (remote_commands[i].opt_s &&
1198                             strncmp(remote_commands[i].opt_s, text, strlen(remote_commands[i].opt_s)) == 0)
1199                                 {
1200                                 if (offset) *offset = text + strlen(remote_commands[i].opt_s);
1201                                 return &remote_commands[i];
1202                                 }
1203                         else if (remote_commands[i].opt_l &&
1204                                  strncmp(remote_commands[i].opt_l, text, strlen(remote_commands[i].opt_l)) == 0)
1205                                 {
1206                                 if (offset) *offset = text + strlen(remote_commands[i].opt_l);
1207                                 return &remote_commands[i];
1208                                 }
1209                         }
1210                 else
1211                         {
1212                         if ((remote_commands[i].opt_s && strcmp(remote_commands[i].opt_s, text) == 0) ||
1213                             (remote_commands[i].opt_l && strcmp(remote_commands[i].opt_l, text) == 0))
1214                                 {
1215                                 if (offset) *offset = text;
1216                                 return &remote_commands[i];
1217                                 }
1218                         }
1219
1220                 i++;
1221                 }
1222
1223         return NULL;
1224 }
1225
1226 static void remote_cb(RemoteConnection *rc, const gchar *text, GIOChannel *channel, gpointer data)
1227 {
1228         RemoteCommandEntry *entry;
1229         const gchar *offset;
1230
1231         entry = remote_command_find(text, &offset);
1232         if (entry && entry->func)
1233                 {
1234                 entry->func(offset, channel, data);
1235                 }
1236         else
1237                 {
1238                 log_printf("unknown remote command:%s\n", text);
1239                 }
1240 }
1241
1242 void remote_help(void)
1243 {
1244         gint i;
1245         gchar *s_opt_param;
1246         gchar *l_opt_param;
1247
1248         print_term(FALSE, _("Remote command list:\n"));
1249
1250         i = 0;
1251         while (remote_commands[i].func != NULL)
1252                 {
1253                 if (remote_commands[i].description)
1254                         {
1255                         s_opt_param = g_strconcat(remote_commands[i].opt_s, remote_commands[i].parameter, NULL);
1256                         l_opt_param = g_strconcat(remote_commands[i].opt_l, remote_commands[i].parameter, NULL);
1257                         printf_term(FALSE, "  %-11s%-1s %-30s%-s\n",
1258                                     (remote_commands[i].opt_s) ? s_opt_param : "",
1259                                     (remote_commands[i].opt_s && remote_commands[i].opt_l) ? "," : " ",
1260                                     (remote_commands[i].opt_l) ? l_opt_param : "",
1261                                     _(remote_commands[i].description));
1262                         g_free(s_opt_param);
1263                         g_free(l_opt_param);
1264                         }
1265                 i++;
1266                 }
1267         printf_term(FALSE, N_("\n  All other command line parameters are used as plain files if they exists.\n"));
1268 }
1269
1270 GList *remote_build_list(GList *list, gint argc, gchar *argv[], GList **errors)
1271 {
1272         gint i;
1273
1274         i = 1;
1275         while (i < argc)
1276                 {
1277                 RemoteCommandEntry *entry;
1278
1279                 entry = remote_command_find(argv[i], NULL);
1280                 if (entry)
1281                         {
1282                         list = g_list_append(list, argv[i]);
1283                         }
1284                 else if (errors && !isfile(argv[i]))
1285                         {
1286                         *errors = g_list_append(*errors, argv[i]);
1287                         }
1288                 i++;
1289                 }
1290
1291         return list;
1292 }
1293
1294 /**
1295  * \param arg_exec Binary (argv0)
1296  * \param remote_list Evaluated and recognized remote commands
1297  * \param path The current path
1298  * \param cmd_list List of all non collections in Path
1299  * \param collection_list List of all collections in argv
1300  */
1301 void remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path,
1302                     GList *cmd_list, GList *collection_list)
1303 {
1304         RemoteConnection *rc;
1305         gboolean started = FALSE;
1306         gchar *buf;
1307
1308         buf = g_build_filename(get_rc_dir(), ".command", NULL);
1309         rc = remote_client_open(buf);
1310         if (!rc)
1311                 {
1312                 GString *command;
1313                 GList *work;
1314                 gint retry_count = 12;
1315                 gboolean blank = FALSE;
1316
1317                 printf_term(FALSE, _("Remote %s not running, starting..."), GQ_APPNAME);
1318
1319                 command = g_string_new(arg_exec);
1320
1321                 work = remote_list;
1322                 while (work)
1323                         {
1324                         gchar *text;
1325                         RemoteCommandEntry *entry;
1326
1327                         text = work->data;
1328                         work = work->next;
1329
1330                         entry = remote_command_find(text, NULL);
1331                         if (entry)
1332                                 {
1333                                 if (entry->prefer_command_line)
1334                                         {
1335                                         remote_list = g_list_remove(remote_list, text);
1336                                         g_string_append(command, " ");
1337                                         g_string_append(command, text);
1338                                         }
1339                                 if (entry->opt_l && strcmp(entry->opt_l, "file:") == 0)
1340                                         {
1341                                         blank = TRUE;
1342                                         }
1343                                 }
1344                         }
1345
1346                 if (blank || cmd_list || path) g_string_append(command, " --blank");
1347                 if (get_debug_level()) g_string_append(command, " --debug");
1348
1349                 g_string_append(command, " &");
1350                 runcmd(command->str);
1351                 g_string_free(command, TRUE);
1352
1353                 while (!rc && retry_count > 0)
1354                         {
1355                         usleep((retry_count > 10) ? 500000 : 1000000);
1356                         rc = remote_client_open(buf);
1357                         if (!rc) print_term(FALSE, ".");
1358                         retry_count--;
1359                         }
1360
1361                 print_term(FALSE, "\n");
1362
1363                 started = TRUE;
1364                 }
1365         g_free(buf);
1366
1367         if (rc)
1368                 {
1369                 GList *work;
1370                 const gchar *prefix;
1371                 gboolean use_path = TRUE;
1372                 gboolean sent = FALSE;
1373
1374                 work = remote_list;
1375                 while (work)
1376                         {
1377                         gchar *text;
1378                         RemoteCommandEntry *entry;
1379
1380                         text = work->data;
1381                         work = work->next;
1382
1383                         entry = remote_command_find(text, NULL);
1384                         if (entry &&
1385                             entry->opt_l &&
1386                             strcmp(entry->opt_l, "file:") == 0) use_path = FALSE;
1387
1388                         remote_client_send(rc, text);
1389
1390                         sent = TRUE;
1391                         }
1392
1393                 if (cmd_list && cmd_list->next)
1394                         {
1395                         prefix = "--list-add:";
1396                         remote_client_send(rc, "--list-clear");
1397                         }
1398                 else
1399                         {
1400                         prefix = "file:";
1401                         }
1402
1403                 work = cmd_list;
1404                 while (work)
1405                         {
1406                         FileData *fd;
1407                         gchar *text;
1408
1409                         fd = work->data;
1410                         work = work->next;
1411
1412                         text = g_strconcat(prefix, fd->path, NULL);
1413                         remote_client_send(rc, text);
1414                         g_free(text);
1415
1416                         sent = TRUE;
1417                         }
1418
1419                 if (path && !cmd_list && use_path)
1420                         {
1421                         gchar *text;
1422
1423                         text = g_strdup_printf("file:%s", path);
1424                         remote_client_send(rc, text);
1425                         g_free(text);
1426
1427                         sent = TRUE;
1428                         }
1429
1430                 work = collection_list;
1431                 while (work)
1432                         {
1433                         const gchar *name;
1434                         gchar *text;
1435
1436                         name = work->data;
1437                         work = work->next;
1438
1439                         text = g_strdup_printf("file:%s", name);
1440                         remote_client_send(rc, text);
1441                         g_free(text);
1442
1443                         sent = TRUE;
1444                         }
1445
1446                 if (!started && !sent)
1447                         {
1448                         remote_client_send(rc, "raise");
1449                         }
1450                 }
1451         else
1452                 {
1453                 print_term(TRUE, _("Remote not available\n"));
1454                 }
1455
1456         _exit(0);
1457 }
1458
1459 RemoteConnection *remote_server_init(gchar *path, CollectionData *command_collection)
1460 {
1461         RemoteConnection *remote_connection = remote_server_open(path);
1462         RemoteData *remote_data = g_new(RemoteData, 1);
1463
1464         remote_data->command_collection = command_collection;
1465
1466         remote_server_subscribe(remote_connection, remote_cb, remote_data);
1467         return remote_connection;
1468 }
1469 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */