Adds a `--selection-add` command to the remote API.
[geeqie.git] / src / remote.cc
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 "exif.h"
29 #include "filedata.h"
30 #include "filefilter.h"
31 #include "image.h"
32 #include "img-view.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 #include "view-file.h"
41
42 #include <sys/socket.h>
43 #include <sys/un.h>
44 #include <signal.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         GList *file_list;
75         gboolean single_dir;
76 };
77
78 /* To enable file names containing newlines to be processed correctly,
79  * the --print0 remote option sets returned data to be terminated with a null
80  * character rather a newline
81  */
82 static gboolean print0 = FALSE;
83
84 /* Remote commands from main.cc are prepended with the current dir the remote
85  * command was made from. Some remote commands require this. The
86  * value is stored here
87  */
88 static gchar *pwd = NULL;
89
90 /**
91  * @brief Ensures file path is absolute.
92  * @param[in] filename Filepath, absolute or relative to calling directory
93  * @returns absolute path
94  * 
95  * If first character of input filepath is not the directory
96  * separator, assume it as a relative path and prepend
97  * the directory the remote command was initiated from
98  * 
99  * Return value must be freed with g_free()
100  */
101 static gchar *set_pwd(gchar *filename)
102 {
103         gchar *temp;
104
105         if (strncmp(filename, G_DIR_SEPARATOR_S, 1) != 0)
106                 {
107                 temp = g_build_filename(pwd, filename, NULL);
108                 }
109         else
110                 {
111                 temp = g_strdup(filename);
112                 }
113
114         return temp;
115 }
116
117 static gboolean remote_server_client_cb(GIOChannel *source, GIOCondition condition, gpointer data)
118 {
119         RemoteClient *client = data;
120         RemoteConnection *rc;
121         GIOStatus status = G_IO_STATUS_NORMAL;
122
123         lw_id = NULL;
124         rc = client->rc;
125
126         if (condition & G_IO_IN)
127                 {
128                 gchar *buffer = NULL;
129                 GError *error = NULL;
130                 gsize termpos;
131                 /** @FIXME it should be possible to terminate the command with a null character */
132                 g_io_channel_set_line_term(source, "<gq_end_of_command>", -1);
133                 while ((status = g_io_channel_read_line(source, &buffer, NULL, &termpos, &error)) == G_IO_STATUS_NORMAL)
134                         {
135                         if (buffer)
136                                 {
137                                 buffer[termpos] = '\0';
138
139                                 if (strlen(buffer) > 0)
140                                         {
141                                         if (rc->read_func) rc->read_func(rc, buffer, source, rc->read_data);
142                                         g_io_channel_write_chars(source, "<gq_end_of_command>", -1, NULL, NULL); /* empty line finishes the command */
143                                         g_io_channel_flush(source, NULL);
144                                         }
145                                 g_free(buffer);
146
147                                 buffer = NULL;
148                                 }
149                         }
150
151                 if (error)
152                         {
153                         log_printf("error reading socket: %s\n", error->message);
154                         g_error_free(error);
155                         }
156                 }
157
158         if (condition & G_IO_HUP || status == G_IO_STATUS_EOF || status == G_IO_STATUS_ERROR)
159                 {
160                 rc->clients = g_list_remove(rc->clients, client);
161
162                 DEBUG_1("HUP detected, closing client.");
163                 DEBUG_1("client count %d", g_list_length(rc->clients));
164
165                 g_source_remove(client->channel_id);
166                 close(client->fd);
167                 g_free(client);
168                 }
169
170         return TRUE;
171 }
172
173 static void remote_server_client_add(RemoteConnection *rc, gint fd)
174 {
175         RemoteClient *client;
176         GIOChannel *channel;
177
178         if (g_list_length(rc->clients) > SERVER_MAX_CLIENTS)
179                 {
180                 log_printf("maximum remote clients of %d exceeded, closing connection\n", SERVER_MAX_CLIENTS);
181                 close(fd);
182                 return;
183                 }
184
185         client = g_new0(RemoteClient, 1);
186         client->rc = rc;
187         client->fd = fd;
188
189         channel = g_io_channel_unix_new(fd);
190         client->channel_id = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, G_IO_IN | G_IO_HUP,
191                                                  remote_server_client_cb, client, NULL);
192         g_io_channel_unref(channel);
193
194         rc->clients = g_list_append(rc->clients, client);
195         DEBUG_1("client count %d", g_list_length(rc->clients));
196 }
197
198 static void remote_server_clients_close(RemoteConnection *rc)
199 {
200         while (rc->clients)
201                 {
202                 RemoteClient *client = rc->clients->data;
203
204                 rc->clients = g_list_remove(rc->clients, client);
205
206                 g_source_remove(client->channel_id);
207                 close(client->fd);
208                 g_free(client);
209                 }
210 }
211
212 static gboolean remote_server_read_cb(GIOChannel *UNUSED(source), GIOCondition UNUSED(condition), gpointer data)
213 {
214         RemoteConnection *rc = data;
215         gint fd;
216         guint alen;
217
218         fd = accept(rc->fd, NULL, &alen);
219         if (fd == -1)
220                 {
221                 log_printf("error accepting socket: %s\n", strerror(errno));
222                 return TRUE;
223                 }
224
225         remote_server_client_add(rc, fd);
226
227         return TRUE;
228 }
229
230 gboolean remote_server_exists(const gchar *path)
231 {
232         RemoteConnection *rc;
233
234         /* verify server up */
235         rc = remote_client_open(path);
236         remote_close(rc);
237
238         if (rc) return TRUE;
239
240         /* unable to connect, remove socket file to free up address */
241         unlink(path);
242         return FALSE;
243 }
244
245 static RemoteConnection *remote_server_open(const gchar *path)
246 {
247         RemoteConnection *rc;
248         struct sockaddr_un addr;
249         gint sun_path_len;
250         gint fd;
251         GIOChannel *channel;
252
253         if (remote_server_exists(path))
254                 {
255                 log_printf("Address already in use: %s\n", path);
256                 return NULL;
257                 }
258
259         fd = socket(PF_UNIX, SOCK_STREAM, 0);
260         if (fd == -1) return NULL;
261
262         addr.sun_family = AF_UNIX;
263         sun_path_len = MIN(strlen(path) + 1, UNIX_PATH_MAX);
264         strncpy(addr.sun_path, path, sun_path_len);
265         if (bind(fd, (const struct sockaddr*)&addr, sizeof(addr)) == -1 ||
266             listen(fd, REMOTE_SERVER_BACKLOG) == -1)
267                 {
268                 log_printf("error subscribing to socket: %s\n", strerror(errno));
269                 close(fd);
270                 return NULL;
271                 }
272
273         rc = g_new0(RemoteConnection, 1);
274
275         rc->server = TRUE;
276         rc->fd = fd;
277         rc->path = g_strdup(path);
278
279         channel = g_io_channel_unix_new(rc->fd);
280         g_io_channel_set_flags(channel, G_IO_FLAG_NONBLOCK, NULL);
281
282         rc->channel_id = g_io_add_watch_full(channel, G_PRIORITY_DEFAULT, G_IO_IN,
283                                              remote_server_read_cb, rc, NULL);
284         g_io_channel_unref(channel);
285
286         return rc;
287 }
288
289 static void remote_server_subscribe(RemoteConnection *rc, RemoteReadFunc *func, gpointer data)
290 {
291         if (!rc || !rc->server) return;
292
293         rc->read_func = func;
294         rc->read_data = data;
295 }
296
297
298 static RemoteConnection *remote_client_open(const gchar *path)
299 {
300         RemoteConnection *rc;
301         struct stat st;
302         struct sockaddr_un addr;
303         gint sun_path_len;
304         gint fd;
305
306         if (stat(path, &st) != 0 || !S_ISSOCK(st.st_mode)) return NULL;
307
308         fd = socket(PF_UNIX, SOCK_STREAM, 0);
309         if (fd == -1) return NULL;
310
311         addr.sun_family = AF_UNIX;
312         sun_path_len = MIN(strlen(path) + 1, UNIX_PATH_MAX);
313         strncpy(addr.sun_path, path, sun_path_len);
314         if (connect(fd, (struct sockaddr*)&addr, sizeof(addr)) == -1)
315                 {
316                 DEBUG_1("error connecting to socket: %s", strerror(errno));
317                 close(fd);
318                 return NULL;
319                 }
320
321         rc = g_new0(RemoteConnection, 1);
322         rc->server = FALSE;
323         rc->fd = fd;
324         rc->path = g_strdup(path);
325
326         return rc;
327 }
328
329 static sig_atomic_t sigpipe_occurred = FALSE;
330
331 static void sighandler_sigpipe(gint UNUSED(sig))
332 {
333         sigpipe_occurred = TRUE;
334 }
335
336 static gboolean remote_client_send(RemoteConnection *rc, const gchar *text)
337 {
338         struct sigaction new_action, old_action;
339         gboolean ret = FALSE;
340         GError *error = NULL;
341         GIOChannel *channel;
342
343         if (!rc || rc->server) return FALSE;
344         if (!text) return TRUE;
345
346         sigpipe_occurred = FALSE;
347
348         new_action.sa_handler = sighandler_sigpipe;
349         sigemptyset(&new_action.sa_mask);
350         new_action.sa_flags = 0;
351
352         /* setup our signal handler */
353         sigaction(SIGPIPE, &new_action, &old_action);
354
355         channel = g_io_channel_unix_new(rc->fd);
356
357         g_io_channel_write_chars(channel, text, -1, NULL, &error);
358         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, &error);
359         g_io_channel_flush(channel, &error);
360
361         if (error)
362                 {
363                 log_printf("error reading socket: %s\n", error->message);
364                 g_error_free(error);
365                 ret = FALSE;;
366                 }
367         else
368                 {
369                 ret = TRUE;
370                 }
371
372         if (ret)
373                 {
374                 gchar *buffer = NULL;
375                 gsize termpos;
376                 g_io_channel_set_line_term(channel, "<gq_end_of_command>", -1);
377                 while (g_io_channel_read_line(channel, &buffer, NULL, &termpos, &error) == G_IO_STATUS_NORMAL)
378                         {
379                         if (buffer)
380                                 {
381                                 if (g_strstr_len(buffer, -1, "<gq_end_of_command>") == buffer) /* empty line finishes the command */
382                                         {
383                                         g_free(buffer);
384                                         fflush(stdout);
385                                         break;
386                                         }
387                                 buffer[termpos] = '\0';
388                                 if (g_strstr_len(buffer, -1, "print0") != 0)
389                                         {
390                                         print0 = TRUE;
391                                         }
392                                 else
393                                         {
394                                         if (print0)
395                                                 {
396                                                 printf("%s%c", buffer, 0);
397                                                 }
398                                         else
399                                                 {
400                                                 printf("%s\n", buffer);
401                                                 }
402                                         }
403                                 g_free(buffer);
404                                 buffer = NULL;
405                                 }
406                         }
407
408                 if (error)
409                         {
410                         log_printf("error reading socket: %s\n", error->message);
411                         g_error_free(error);
412                         ret = FALSE;
413                         }
414                 }
415
416
417         /* restore the original signal handler */
418         sigaction(SIGPIPE, &old_action, NULL);
419         g_io_channel_unref(channel);
420         return ret;
421 }
422
423 void remote_close(RemoteConnection *rc)
424 {
425         if (!rc) return;
426
427         if (rc->server)
428                 {
429                 remote_server_clients_close(rc);
430
431                 g_source_remove(rc->channel_id);
432                 unlink(rc->path);
433                 }
434
435         if (rc->read_data)
436                 g_free(rc->read_data);
437
438         close(rc->fd);
439
440         g_free(rc->path);
441         g_free(rc);
442 }
443
444 /*
445  *-----------------------------------------------------------------------------
446  * remote functions
447  *-----------------------------------------------------------------------------
448  */
449
450 static void gr_image_next(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
451 {
452         layout_image_next(lw_id);
453 }
454
455 static void gr_new_window(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
456 {
457         LayoutWindow *lw = NULL;
458
459         if (!layout_valid(&lw)) return;
460
461         lw_id = layout_new_from_default();
462
463         layout_set_path(lw_id, pwd);
464 }
465
466 static gboolean gr_close_window_cb()
467 {
468         if (!layout_valid(&lw_id)) return FALSE;
469
470         layout_menu_close_cb(NULL, lw_id);
471
472         return FALSE;
473 }
474
475 static void gr_close_window(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
476 {
477         g_idle_add(gr_close_window_cb, NULL);
478 }
479
480 static void gr_image_prev(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
481 {
482         layout_image_prev(lw_id);
483 }
484
485 static void gr_image_first(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
486 {
487         layout_image_first(lw_id);
488 }
489
490 static void gr_image_last(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
491 {
492         layout_image_last(lw_id);
493 }
494
495 static void gr_fullscreen_toggle(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
496 {
497         layout_image_full_screen_toggle(lw_id);
498 }
499
500 static void gr_fullscreen_start(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
501 {
502         layout_image_full_screen_start(lw_id);
503 }
504
505 static void gr_fullscreen_stop(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
506 {
507         layout_image_full_screen_stop(lw_id);
508 }
509
510 static void gr_lw_id(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
511 {
512         lw_id = layout_find_by_layout_id(text);
513         if (!lw_id)
514                 {
515                 log_printf("remote sent window ID that does not exist:\"%s\"\n",text);
516                 }
517         layout_valid(&lw_id);
518 }
519
520 static void gr_slideshow_start_rec(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
521 {
522         GList *list;
523         gchar *tilde_filename;
524
525         tilde_filename = expand_tilde(text);
526
527         FileData *dir_fd = file_data_new_dir(tilde_filename);
528         g_free(tilde_filename);
529
530         layout_valid(&lw_id);
531         list = filelist_recursive_full(dir_fd, lw_id->sort_method, lw_id->sort_ascend);
532         file_data_unref(dir_fd);
533         if (!list) return;
534 //printf("length: %d\n", g_list_length(list));
535         layout_image_slideshow_stop(lw_id);
536         layout_image_slideshow_start_from_list(lw_id, list);
537 }
538
539 static void gr_cache_thumb(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
540 {
541         if (!g_strcmp0(text, "clear"))
542                 {
543                 cache_maintain_home_remote(FALSE, TRUE, NULL);
544                 }
545         else if (!g_strcmp0(text, "clean"))
546                 {
547                 cache_maintain_home_remote(FALSE, FALSE, NULL);
548                 }
549 }
550
551 static void gr_cache_shared(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
552 {
553         if (!g_strcmp0(text, "clear"))
554                 cache_manager_standard_process_remote(TRUE);
555         else if (!g_strcmp0(text, "clean"))
556                 cache_manager_standard_process_remote(FALSE);
557 }
558
559 static void gr_cache_metadata(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
560 {
561         cache_maintain_home_remote(TRUE, FALSE, NULL);
562 }
563
564 static void gr_cache_render(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
565 {
566         cache_manager_render_remote(text, FALSE, FALSE, NULL);
567 }
568
569 static void gr_cache_render_recurse(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
570 {
571         cache_manager_render_remote(text, TRUE, FALSE, NULL);
572 }
573
574 static void gr_cache_render_standard(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
575 {
576         if(options->thumbnails.spec_standard)
577                 {
578                 cache_manager_render_remote(text, FALSE, TRUE, NULL);
579                 }
580 }
581
582 static void gr_cache_render_standard_recurse(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
583 {
584         if(options->thumbnails.spec_standard)
585                 {
586                 cache_manager_render_remote(text, TRUE, TRUE, NULL);
587                 }
588 }
589
590 static void gr_slideshow_toggle(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
591 {
592         layout_image_slideshow_toggle(lw_id);
593 }
594
595 static void gr_slideshow_start(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
596 {
597         layout_image_slideshow_start(lw_id);
598 }
599
600 static void gr_slideshow_stop(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
601 {
602         layout_image_slideshow_stop(lw_id);
603 }
604
605 static void gr_slideshow_delay(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
606 {
607         gdouble t1, t2, t3, n;
608         gint res;
609
610         res = sscanf(text, "%lf:%lf:%lf", &t1, &t2, &t3);
611         if (res == 3)
612                 {
613                 n = (t1 * 3600) + (t2 * 60) + t3;
614                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS ||
615                                 t1 >= 24 || t2 >= 60 || t3 >= 60)
616                         {
617                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
618                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
619                         return;
620                         }
621                 }
622         else if (res == 2)
623                 {
624                 n = t1 * 60 + t2;
625                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS ||
626                                 t1 >= 60 || t2 >= 60)
627                         {
628                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
629                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
630                         return;
631                         }
632                 }
633         else if (res == 1)
634                 {
635                 n = t1;
636                 if (n < SLIDESHOW_MIN_SECONDS || n > SLIDESHOW_MAX_SECONDS)
637                         {
638                         printf_term(TRUE, "Remote slideshow delay out of range (%.1f to %.1f)\n",
639                                                                 SLIDESHOW_MIN_SECONDS, SLIDESHOW_MAX_SECONDS);
640                         return;
641                         }
642                 }
643         else
644                 {
645                 n = 0;
646                 }
647
648         options->slideshow.delay = (gint)(n * 10.0 + 0.01);
649 }
650
651 static void gr_tools_show(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
652 {
653         gboolean popped;
654         gboolean hidden;
655
656         if (layout_tools_float_get(lw_id, &popped, &hidden) && hidden)
657                 {
658                 layout_tools_float_set(lw_id, popped, FALSE);
659                 }
660 }
661
662 static void gr_tools_hide(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
663 {
664         gboolean popped;
665         gboolean hidden;
666
667         if (layout_tools_float_get(lw_id, &popped, &hidden) && !hidden)
668                 {
669                 layout_tools_float_set(lw_id, popped, TRUE);
670                 }
671 }
672
673 static gboolean gr_quit_idle_cb(gpointer UNUSED(data))
674 {
675         exit_program();
676
677         return FALSE;
678 }
679
680 static void gr_quit(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
681 {
682         /* schedule exit when idle, if done from within a
683          * remote handler remote_close will crash
684          */
685         g_idle_add(gr_quit_idle_cb, NULL);
686 }
687
688 static void gr_file_load_no_raise(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
689 {
690         gchar *filename;
691         gchar *tilde_filename;
692
693         if (!download_web_file(text, TRUE, NULL))
694                 {
695                 tilde_filename = expand_tilde(text);
696                 filename = set_pwd(tilde_filename);
697
698                 if (isfile(filename))
699                         {
700                         if (file_extension_match(filename, GQ_COLLECTION_EXT))
701                                 {
702                                 collection_window_new(filename);
703                                 }
704                         else
705                                 {
706                                 layout_set_path(lw_id, filename);
707                                 }
708                         }
709                 else if (isdir(filename))
710                         {
711                         layout_set_path(lw_id, filename);
712                         }
713                 else
714                         {
715                         log_printf("remote sent filename that does not exist:\"%s\"\n", filename);
716                         layout_set_path(lw_id, homedir());
717                         }
718
719                 g_free(filename);
720                 g_free(tilde_filename);
721                 }
722 }
723
724 static void gr_file_load(const gchar *text, GIOChannel *channel, gpointer data)
725 {
726         gr_file_load_no_raise(text, channel, data);
727
728         gr_raise(text, channel, data);
729 }
730
731 static void gr_pixel_info(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
732 {
733         gchar *pixel_info;
734         gint x_pixel, y_pixel;
735         gint width, height;
736         gint r_mouse, g_mouse, b_mouse;
737         PixbufRenderer *pr;
738
739         if (!layout_valid(&lw_id)) return;
740
741         pr = (PixbufRenderer*)lw_id->image->pr;
742
743         if (pr)
744                 {
745                 pixbuf_renderer_get_image_size(pr, &width, &height);
746                 if (width < 1 || height < 1) return;
747
748                 pixbuf_renderer_get_mouse_position(pr, &x_pixel, &y_pixel);
749
750                 if (x_pixel >= 0 && y_pixel >= 0)
751                         {
752                         pixbuf_renderer_get_pixel_colors(pr, x_pixel, y_pixel,
753                                                          &r_mouse, &g_mouse, &b_mouse);
754
755                         pixel_info = g_strdup_printf(_("[%d,%d]: RGB(%3d,%3d,%3d)"),
756                                                  x_pixel, y_pixel,
757                                                  r_mouse, g_mouse, b_mouse);
758
759                         g_io_channel_write_chars(channel, pixel_info, -1, NULL, NULL);
760                         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
761
762                         g_free(pixel_info);
763                         }
764                 else
765                         {
766                         return;
767                         }
768                 }
769         else
770                 {
771                 return;
772                 }
773 }
774
775 static void gr_rectangle(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
776 {
777         gchar *rectangle_info;
778         PixbufRenderer *pr;
779         gint x1, y1, x2, y2;
780
781         if (!options->draw_rectangle) return;
782         if (!layout_valid(&lw_id)) return;
783
784         pr = (PixbufRenderer*)lw_id->image->pr;
785
786         if (pr)
787                 {
788                 image_get_rectangle(&x1, &y1, &x2, &y2);
789                 rectangle_info = g_strdup_printf(_("%dx%d+%d+%d"),
790                                         (x2 > x1) ? x2 - x1 : x1 - x2,
791                                         (y2 > y1) ? y2 - y1 : y1 - y2,
792                                         (x2 > x1) ? x1 : x2,
793                                         (y2 > y1) ? y1 : y2);
794
795                 g_io_channel_write_chars(channel, rectangle_info, -1, NULL, NULL);
796                 g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
797
798                 g_free(rectangle_info);
799                 }
800 }
801
802 static void gr_render_intent(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
803 {
804         gchar *render_intent;
805
806         switch (options->color_profile.render_intent)
807                 {
808                 case 0:
809                         render_intent = g_strdup("Perceptual");
810                         break;
811                 case 1:
812                         render_intent = g_strdup("Relative Colorimetric");
813                         break;
814                 case 2:
815                         render_intent = g_strdup("Saturation");
816                         break;
817                 case 3:
818                         render_intent = g_strdup("Absolute Colorimetric");
819                         break;
820                 default:
821                         render_intent = g_strdup("none");
822                         break;
823                 }
824
825         g_io_channel_write_chars(channel, render_intent, -1, NULL, NULL);
826         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
827
828         g_free(render_intent);
829 }
830
831 static void get_filelist(const gchar *text, GIOChannel *channel, gboolean recurse)
832 {
833         GList *list = NULL;
834         FileFormatClass format_class;
835         FileData *dir_fd;
836         FileData *fd;
837         GString *out_string = g_string_new(NULL);
838         GList *work;
839         gchar *tilde_filename;
840
841         if (strcmp(text, "") == 0)
842                 {
843                 if (layout_valid(&lw_id))
844                         {
845                         dir_fd = file_data_new_dir(lw_id->dir_fd->path);
846                         }
847                 else
848                         {
849                         return;
850                         }
851                 }
852         else
853                 {
854                 tilde_filename = expand_tilde(text);
855                 if (isdir(tilde_filename))
856                         {
857                         dir_fd = file_data_new_dir(tilde_filename);
858                         }
859                 else
860                         {
861                         g_free(tilde_filename);
862                         return;
863                         }
864                 g_free(tilde_filename);
865                 }
866
867         if (recurse)
868                 {
869                 list = filelist_recursive(dir_fd);
870                 }
871         else
872                 {
873                 filelist_read(dir_fd, &list, NULL);
874                 }
875
876         work = list;
877         while (work)
878                 {
879                 fd = work->data;
880                 g_string_append_printf(out_string, "%s", fd->path);
881                 format_class = filter_file_get_class(fd->path);
882
883                 switch (format_class)
884                         {
885                         case FORMAT_CLASS_IMAGE:
886                                 out_string = g_string_append(out_string, "    Class: Image");
887                                 break;
888                         case FORMAT_CLASS_RAWIMAGE:
889                                 out_string = g_string_append(out_string, "    Class: RAW image");
890                                 break;
891                         case FORMAT_CLASS_META:
892                                 out_string = g_string_append(out_string, "    Class: Metadata");
893                                 break;
894                         case FORMAT_CLASS_VIDEO:
895                                 out_string = g_string_append(out_string, "    Class: Video");
896                                 break;
897                         case FORMAT_CLASS_COLLECTION:
898                                 out_string = g_string_append(out_string, "    Class: Collection");
899                                 break;
900                         case FORMAT_CLASS_DOCUMENT:
901                                 out_string = g_string_append(out_string, "    Class: Document");
902                                 break;
903                         case FORMAT_CLASS_ARCHIVE:
904                                 out_string = g_string_append(out_string, "    Class: Archive");
905                                 break;
906                         case FORMAT_CLASS_UNKNOWN:
907                                 out_string = g_string_append(out_string, "    Class: Unknown");
908                                 break;
909                         default:
910                                 out_string = g_string_append(out_string, "    Class: Unknown");
911                                 break;
912                         }
913                 out_string = g_string_append(out_string, "\n");
914                 work = work->next;
915                 }
916
917         g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
918         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
919
920         g_string_free(out_string, TRUE);
921         filelist_free(list);
922         file_data_unref(dir_fd);
923 }
924
925 static void gr_get_selection(const gchar *UNUSED(text), GIOChannel *channel, gboolean UNUSED(data))
926 {
927         if (!layout_valid(&lw_id)) return;
928
929         GList *selected = layout_selection_list(lw_id);  // Keep copy to free.
930         GString *out_string = g_string_new(NULL);
931
932         GList *work = selected;
933         while (work)
934                 {
935                 FileData *fd = work->data;
936                 g_assert(fd->magick == FD_MAGICK);
937
938                 g_string_append_printf(out_string, "%s    %s\n",
939                                        fd->path,
940                                        format_class_list[filter_file_get_class(fd->path)]);
941
942                 work = work->next;
943                 }
944
945         g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
946         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
947
948         filelist_free(selected);
949         g_string_free(out_string, TRUE);
950 }
951
952 static void gr_selection_add(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
953 {
954         if (!layout_valid(&lw_id)) return;
955
956         FileData *fd_to_select = NULL;
957         if (strcmp(text, "") == 0)
958                 {
959                 // No file specified, use current fd.
960                 fd_to_select = layout_image_get_fd(lw_id);
961                 }
962         else
963                 {
964                 // Search through the current file list for a file matching the specified path.
965                 // "Match" is either a basename match or a file path match.
966                 gchar *path = expand_tilde(text);
967                 gchar *filename = g_path_get_basename(path);
968                 gchar *slash_plus_filename = g_strdup_printf("%s%s", G_DIR_SEPARATOR_S, filename);
969
970                 GList *file_list = layout_list(lw_id);
971                 for (GList *work = file_list; work && !fd_to_select; work = work->next)
972                         {
973                         FileData *fd = work->data;
974                         if (!strcmp(path, fd->path) || g_str_has_suffix(fd->path, slash_plus_filename))
975                                 {
976                                 fd_to_select = file_data_ref(fd);
977                                 continue;  // will exit loop.
978                                 }
979
980                         for (GList *sidecar = fd->sidecar_files; sidecar && !fd_to_select; sidecar = sidecar->next)
981                                 {
982                                 FileData *side_fd = sidecar->data;
983                                 if (!strcmp(path, side_fd->path)
984                                     || g_str_has_suffix(side_fd->path, slash_plus_filename))
985                                         {
986                                         fd_to_select = file_data_ref(side_fd);
987                                         continue;  // will exit both nested loops.
988                                         }
989                                 }
990                         }
991
992                 if (!fd_to_select)
993                         {
994                         log_printf("remote sent --selection-add filename that could not be found: \"%s\"\n",
995                                    filename);
996                         }
997
998                 filelist_free(file_list);
999                 g_free(slash_plus_filename);
1000                 g_free(filename);
1001                 g_free(path);
1002                 }
1003
1004         if (fd_to_select)
1005                 {
1006                 GList *to_select = g_list_append(NULL, fd_to_select);
1007                 // Using the "_list" variant doesn't clear the existing selection.
1008                 layout_select_list(lw_id, to_select);
1009                 filelist_free(to_select);
1010                 }
1011 }
1012
1013 static void gr_collection(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1014 {
1015         GString *contents = g_string_new(NULL);
1016
1017         if (is_collection(text))
1018                 {
1019                 collection_contents(text, &contents);
1020                 }
1021         else
1022                 {
1023                 return;
1024                 }
1025
1026         g_io_channel_write_chars(channel, contents->str, -1, NULL, NULL);
1027         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1028
1029         g_string_free(contents, TRUE);
1030 }
1031
1032 static void gr_collection_list(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
1033 {
1034
1035         GList *collection_list = NULL;
1036         GList *work;
1037         GString *out_string = g_string_new(NULL);
1038
1039         collect_manager_list(&collection_list, NULL, NULL);
1040
1041         work = collection_list;
1042         while (work)
1043                 {
1044                 const gchar *collection_name = work->data;
1045                 out_string = g_string_append(out_string, g_strdup(collection_name));
1046                 out_string = g_string_append(out_string, "\n");
1047
1048                 work = work->next;
1049                 }
1050
1051         g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
1052         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1053
1054         string_list_free(collection_list);
1055         g_string_free(out_string, TRUE);
1056 }
1057
1058 static gboolean wait_cb(const gpointer data)
1059 {
1060         gint position = GPOINTER_TO_INT(data);
1061         gint x = position >> 16;
1062         gint y = position - (x << 16);
1063
1064         gtk_window_move(GTK_WINDOW(lw_id->window), x, y);
1065
1066         return FALSE;
1067 }
1068
1069 static void gr_geometry(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
1070 {
1071         gchar **geometry;
1072
1073         if (!layout_valid(&lw_id) || !text)
1074                 {
1075                 return;
1076                 }
1077
1078         if (text[0] == '+')
1079                 {
1080                 geometry = g_strsplit_set(text, "+", 3);
1081                 if (geometry[1] != NULL && geometry[2] != NULL )
1082                         {
1083                         gtk_window_move(GTK_WINDOW(lw_id->window), atoi(geometry[1]), atoi(geometry[2]));
1084                         }
1085                 }
1086         else
1087                 {
1088                 geometry = g_strsplit_set(text, "+x", 4);
1089                 if (geometry[0] != NULL && geometry[1] != NULL)
1090                         {
1091                         gtk_window_resize(GTK_WINDOW(lw_id->window), atoi(geometry[0]), atoi(geometry[1]));
1092                         }
1093                 if (geometry[2] != NULL && geometry[3] != NULL)
1094                         {
1095                         /* There is an occasional problem with a window_move immediately after a window_resize */
1096                         g_idle_add(wait_cb, GINT_TO_POINTER((atoi(geometry[2]) << 16) + atoi(geometry[3])));
1097                         }
1098                 }
1099         g_strfreev(geometry);
1100 }
1101
1102 static void gr_filelist(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1103 {
1104         get_filelist(text, channel, FALSE);
1105 }
1106
1107 static void gr_filelist_recurse(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1108 {
1109         get_filelist(text, channel, TRUE);
1110 }
1111
1112 static void gr_file_tell(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
1113 {
1114         gchar *out_string;
1115         gchar *collection_name = NULL;
1116
1117         if (!layout_valid(&lw_id)) return;
1118
1119         if (image_get_path(lw_id->image))
1120                 {
1121                 if (lw_id->image->collection && lw_id->image->collection->name)
1122                         {
1123                         collection_name = remove_extension_from_path(lw_id->image->collection->name);
1124                         out_string = g_strconcat(image_get_path(lw_id->image), "    Collection: ", collection_name, NULL);
1125                         }
1126                 else
1127                         {
1128                         out_string = g_strconcat(image_get_path(lw_id->image), NULL);
1129                         }
1130                 }
1131         else
1132                 {
1133                 out_string = g_strconcat(lw_id->dir_fd->path, G_DIR_SEPARATOR_S, NULL);
1134                 }
1135
1136         g_io_channel_write_chars(channel, out_string, -1, NULL, NULL);
1137         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1138
1139         g_free(collection_name);
1140         g_free(out_string);
1141 }
1142
1143 static void gr_file_info(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
1144 {
1145         gchar *filename;
1146         FileData *fd;
1147         gchar *country_name;
1148         gchar *country_code;
1149         gchar *timezone;
1150         gchar *local_time;
1151         GString *out_string;
1152         FileFormatClass format_class;
1153
1154         if (!layout_valid(&lw_id)) return;
1155
1156         if (image_get_path(lw_id->image))
1157                 {
1158                 filename = g_strdup(image_get_path(lw_id->image));
1159                 fd = file_data_new_group(filename);
1160                 out_string = g_string_new(NULL);
1161
1162                 format_class = filter_file_get_class(image_get_path(lw_id->image));
1163                 if (format_class)
1164                         {
1165                         g_string_append_printf(out_string, _("Class: %s\n"), format_class_list[format_class]);
1166                         }
1167
1168                 if (fd->page_total > 1)
1169                         {
1170                         g_string_append_printf(out_string, _("Page no: %d/%d\n"), fd->page_num + 1, fd->page_total);
1171                         }
1172
1173                 if (fd->exif)
1174                         {
1175                         country_name = exif_get_data_as_text(fd->exif, "formatted.countryname");
1176                         if (country_name)
1177                                 {
1178                                 g_string_append_printf(out_string, _("Country name: %s\n"), country_name);
1179                                 g_free(country_name);
1180                                 }
1181
1182                         country_code = exif_get_data_as_text(fd->exif, "formatted.countrycode");
1183                         if (country_name)
1184                                 {
1185                                 g_string_append_printf(out_string, _("Country code: %s\n"), country_code);
1186                                 g_free(country_code);
1187                                 }
1188
1189                         timezone = exif_get_data_as_text(fd->exif, "formatted.timezone");
1190                         if (timezone)
1191                                 {
1192                                 g_string_append_printf(out_string, _("Timezone: %s\n"), timezone);
1193                                 g_free(timezone);
1194                                 }
1195
1196                         local_time = exif_get_data_as_text(fd->exif, "formatted.localtime");
1197                         if (local_time)
1198                                 {
1199                                 g_string_append_printf(out_string, ("Local time: %s\n"), local_time);
1200                                 g_free(local_time);
1201                                 }
1202                         }
1203
1204                 g_io_channel_write_chars(channel, out_string->str, -1, NULL, NULL);
1205                 g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1206
1207                 g_string_free(out_string, TRUE);
1208                 file_data_unref(fd);
1209                 g_free(filename);
1210                 }
1211 }
1212
1213 static gchar *config_file_path(const gchar *param)
1214 {
1215         gchar *path = NULL;
1216         gchar *full_name = NULL;
1217
1218         if (file_extension_match(param, ".xml"))
1219                 {
1220                 path = g_build_filename(get_window_layouts_dir(), param, NULL);
1221                 }
1222         else if (file_extension_match(param, NULL))
1223                 {
1224                 full_name = g_strconcat(param, ".xml", NULL);
1225                 path = g_build_filename(get_window_layouts_dir(), full_name, NULL);
1226                 }
1227
1228         if (!isfile(path))
1229                 {
1230                 g_free(path);
1231                 path = NULL;
1232                 }
1233
1234         g_free(full_name);
1235         return path;
1236 }
1237
1238 static gboolean is_config_file(const gchar *param)
1239 {
1240         gchar *name = NULL;
1241
1242         name = config_file_path(param);
1243         if (name)
1244                 {
1245                 g_free(name);
1246                 return TRUE;
1247                 }
1248         return FALSE;
1249 }
1250
1251 static void gr_config_load(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
1252 {
1253         gchar *filename = expand_tilde(text);
1254
1255         if (!g_strstr_len(filename, -1, G_DIR_SEPARATOR_S))
1256                 {
1257                 if (is_config_file(filename))
1258                         {
1259                         gchar *tmp = config_file_path(filename);
1260                         g_free(filename);
1261                         filename = tmp;
1262                         }
1263                 }
1264
1265         if (isfile(filename))
1266                 {
1267                 load_config_from_file(filename, FALSE);
1268                 }
1269         else
1270                 {
1271                 log_printf("remote sent filename that does not exist:\"%s\"\n", filename);
1272                 layout_set_path(NULL, homedir());
1273                 }
1274
1275         g_free(filename);
1276 }
1277
1278 static void gr_get_sidecars(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1279 {
1280         gchar *filename = expand_tilde(text);
1281         FileData *fd = file_data_new_group(filename);
1282
1283         GList *work;
1284         if (fd->parent) fd = fd->parent;
1285
1286         g_io_channel_write_chars(channel, fd->path, -1, NULL, NULL);
1287         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1288
1289         work = fd->sidecar_files;
1290
1291         while (work)
1292                 {
1293                 fd = work->data;
1294                 work = work->next;
1295                 g_io_channel_write_chars(channel, fd->path, -1, NULL, NULL);
1296                 g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1297                 }
1298         g_free(filename);
1299 }
1300
1301 static void gr_get_destination(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1302 {
1303         gchar *filename = expand_tilde(text);
1304         FileData *fd = file_data_new_group(filename);
1305
1306         if (fd->change && fd->change->dest)
1307                 {
1308                 g_io_channel_write_chars(channel, fd->change->dest, -1, NULL, NULL);
1309                 g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1310                 }
1311         g_free(filename);
1312 }
1313
1314 static void gr_file_view(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
1315 {
1316         gchar *filename;
1317         gchar *tilde_filename = expand_tilde(text);
1318
1319         filename = set_pwd(tilde_filename);
1320
1321         view_window_new(file_data_new_group(filename));
1322         g_free(filename);
1323         g_free(tilde_filename);
1324 }
1325
1326 static void gr_list_clear(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer data)
1327 {
1328         RemoteData *remote_data = data;
1329
1330         remote_data->command_collection = NULL;
1331         remote_data->file_list = NULL;
1332         remote_data->single_dir = TRUE;
1333 }
1334
1335 static void gr_list_add(const gchar *text, GIOChannel *UNUSED(channel), gpointer data)
1336 {
1337         RemoteData *remote_data = data;
1338         gboolean is_new = TRUE;
1339         gchar *path = NULL;
1340         FileData *fd;
1341         FileData *first;
1342
1343         /** @FIXME Should check if file is in current dir, has tilde or is relative */
1344         if (!isfile(text))
1345                 {
1346                 log_printf("Warning: File does not exist --remote --list-add:%s", text);
1347
1348                 return;
1349                 }
1350
1351         /* If there is a files list on the command line
1352          * check if they are all in the same folder
1353          */
1354         if (remote_data->single_dir)
1355                 {
1356                 GList *work;
1357                 work = remote_data->file_list;
1358                 while (work && remote_data->single_dir)
1359                         {
1360                         gchar *dirname;
1361                         dirname = g_path_get_dirname(((FileData *)work->data)->path);
1362                         if (!path)
1363                                 {
1364                                 path = g_strdup(dirname);
1365                                 }
1366                         else
1367                                 {
1368                                 if (g_strcmp0(path, dirname) != 0)
1369                                         {
1370                                         remote_data->single_dir = FALSE;
1371                                         }
1372                                 }
1373                         g_free(dirname);
1374                         work = work->next;
1375                         }
1376                 g_free(path);
1377                 }
1378
1379         gchar *pathname = g_path_get_dirname(text);
1380         layout_set_path(lw_id, pathname);
1381         g_free(pathname);
1382
1383         fd = file_data_new_simple(text);
1384         remote_data->file_list = g_list_append(remote_data->file_list, fd);
1385         file_data_unref(fd);
1386
1387         vf_select_none(lw_id->vf);
1388         remote_data->file_list = g_list_reverse(remote_data->file_list);
1389
1390         layout_select_list(lw_id, remote_data->file_list);
1391         layout_refresh(lw_id);
1392         first = (FileData *)(g_list_first(vf_selection_get_list(lw_id->vf))->data);
1393         layout_set_fd(lw_id, first);
1394
1395                 CollectionData *cd;
1396                 CollectWindow *cw;
1397
1398         if (!remote_data->command_collection && !remote_data->single_dir)
1399                 {
1400                 cw = collection_window_new(NULL);
1401                 cd = cw->cd;
1402
1403                 collection_path_changed(cd);
1404
1405                 remote_data->command_collection = cd;
1406                 }
1407         else if (!remote_data->single_dir)
1408                 {
1409                 is_new = (!collection_get_first(remote_data->command_collection));
1410                 }
1411
1412         if (!remote_data->single_dir)
1413                 {
1414                 layout_image_set_collection(lw_id, remote_data->command_collection, collection_get_first(remote_data->command_collection));
1415                 if (collection_add(remote_data->command_collection, file_data_new_group(text), FALSE) && is_new)
1416                         {
1417                         layout_image_set_collection(lw_id, remote_data->command_collection, collection_get_first(remote_data->command_collection));
1418                         }
1419                 }
1420 }
1421
1422 static void gr_raise(const gchar *UNUSED(text), GIOChannel *UNUSED(channel), gpointer UNUSED(data))
1423 {
1424         if (layout_valid(&lw_id))
1425                 {
1426                 gtk_window_present(GTK_WINDOW(lw_id->window));
1427                 }
1428 }
1429
1430 static void gr_pwd(const gchar *text, GIOChannel *UNUSED(channel), gpointer UNUSED(data))
1431 {
1432         LayoutWindow *lw = NULL;
1433
1434         layout_valid(&lw);
1435
1436         g_free(pwd);
1437         pwd = g_strdup(text);
1438         lw_id = lw;
1439 }
1440
1441 static void gr_print0(const gchar *UNUSED(text), GIOChannel *channel, gpointer UNUSED(data))
1442 {
1443         g_io_channel_write_chars(channel, "print0", -1, NULL, NULL);
1444         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1445 }
1446
1447 #ifdef HAVE_LUA
1448 static void gr_lua(const gchar *text, GIOChannel *channel, gpointer UNUSED(data))
1449 {
1450         gchar *result = NULL;
1451         gchar **lua_command;
1452
1453         lua_command = g_strsplit(text, ",", 2);
1454
1455         if (lua_command[0] && lua_command[1])
1456                 {
1457                 FileData *fd = file_data_new_group(lua_command[0]);
1458                 result = g_strdup(lua_callvalue(fd, lua_command[1], NULL));
1459                 if (result)
1460                         {
1461                         g_io_channel_write_chars(channel, result, -1, NULL, NULL);
1462                         }
1463                 else
1464                         {
1465                         g_io_channel_write_chars(channel, N_("lua error: no data"), -1, NULL, NULL);
1466                         }
1467                 }
1468         else
1469                 {
1470                 g_io_channel_write_chars(channel, N_("lua error: no data"), -1, NULL, NULL);
1471                 }
1472
1473         g_io_channel_write_chars(channel, "<gq_end_of_command>", -1, NULL, NULL);
1474
1475         g_strfreev(lua_command);
1476         g_free(result);
1477 }
1478 #endif
1479
1480 typedef struct _RemoteCommandEntry RemoteCommandEntry;
1481 struct _RemoteCommandEntry {
1482         gchar *opt_s;
1483         gchar *opt_l;
1484         void (*func)(const gchar *text, GIOChannel *channel, gpointer data);
1485         gboolean needs_extra;
1486         gboolean prefer_command_line;
1487         gchar *parameter;
1488         gchar *description;
1489 };
1490
1491 static RemoteCommandEntry remote_commands[] = {
1492         /* short, long                  callback,               extra, prefer, parameter, description */
1493         { "-b", "--back",               gr_image_prev,          FALSE, FALSE, NULL, N_("previous image") },
1494         { NULL, "--close-window",       gr_close_window,        FALSE, FALSE, NULL, N_("close window") },
1495         { NULL, "--config-load:",       gr_config_load,         TRUE,  FALSE, N_("<FILE>|layout ID"), N_("load configuration from FILE") },
1496         { "-cm","--cache-metadata",      gr_cache_metadata,               FALSE, FALSE, NULL, N_("clean the metadata cache") },
1497         { "-cr:", "--cache-render:",    gr_cache_render,        TRUE, FALSE, N_("<folder>  "), N_(" render thumbnails") },
1498         { "-crr:", "--cache-render-recurse:", gr_cache_render_recurse, TRUE, FALSE, N_("<folder> "), N_("render thumbnails recursively") },
1499         { "-crs:", "--cache-render-shared:", gr_cache_render_standard, TRUE, FALSE, N_("<folder> "), N_(" render thumbnails (see Help)") },
1500         { "-crsr:", "--cache-render-shared-recurse:", gr_cache_render_standard_recurse, TRUE, FALSE, N_("<folder>"), N_(" render thumbnails recursively (see Help)") },
1501         { "-cs:", "--cache-shared:",    gr_cache_shared,        TRUE, FALSE, N_("clear|clean"), N_("clear or clean shared thumbnail cache") },
1502         { "-ct:", "--cache-thumbs:",    gr_cache_thumb,         TRUE, FALSE, N_("clear|clean"), N_("clear or clean thumbnail cache") },
1503         { "-d", "--delay=",             gr_slideshow_delay,     TRUE,  FALSE, N_("<[H:][M:][N][.M]>"), N_("set slide show delay to Hrs Mins N.M seconds") },
1504         { NULL, "--first",              gr_image_first,         FALSE, FALSE, NULL, N_("first image") },
1505         { "-f", "--fullscreen",         gr_fullscreen_toggle,   FALSE, TRUE,  NULL, N_("toggle full screen") },
1506         { NULL, "--file:",              gr_file_load,           TRUE,  FALSE, N_("<FILE>|<URL>"), N_("open FILE or URL, bring Geeqie window to the top") },
1507         { NULL, "file:",                gr_file_load,           TRUE,  FALSE, N_("<FILE>|<URL>"), N_("open FILE or URL, bring Geeqie window to the top") },
1508         { NULL, "--File:",              gr_file_load_no_raise,  TRUE,  FALSE, N_("<FILE>|<URL>"), N_("open FILE or URL, do not bring Geeqie window to the top") },
1509         { NULL, "File:",                gr_file_load_no_raise,  TRUE,  FALSE, N_("<FILE>|<URL>"), N_("open FILE or URL, do not bring Geeqie window to the top") },
1510         { "-fs","--fullscreen-start",   gr_fullscreen_start,    FALSE, FALSE, NULL, N_("start full screen") },
1511         { "-fS","--fullscreen-stop",    gr_fullscreen_stop,     FALSE, FALSE, NULL, N_("stop full screen") },
1512         { NULL, "--geometry=",          gr_geometry,            TRUE, FALSE, N_("<GEOMETRY>"), N_("set window geometry") },
1513         { NULL, "--get-collection:",    gr_collection,          TRUE,  FALSE, N_("<COLLECTION>"), N_("get collection content") },
1514         { NULL, "--get-collection-list", gr_collection_list,    FALSE, FALSE, NULL, N_("get collection list") },
1515         { NULL, "--get-destination:",   gr_get_destination,     TRUE,  FALSE, N_("<FILE>"), N_("get destination path of FILE (See Plugins Configuration)") },
1516         { NULL, "--get-file-info",      gr_file_info,           FALSE, FALSE, NULL, N_("get file info") },
1517         { NULL, "--get-filelist:",      gr_filelist,            TRUE,  FALSE, N_("[<FOLDER>]"), N_("get list of files and class") },
1518         { NULL, "--get-filelist-recurse:", gr_filelist_recurse, TRUE,  FALSE, N_("[<FOLDER>]"), N_("get list of files and class recursive") },
1519         { NULL, "--get-rectangle",      gr_rectangle,           FALSE, FALSE, NULL, N_("get rectangle co-ordinates") },
1520         { NULL, "--get-render-intent",  gr_render_intent,       FALSE, FALSE, NULL, N_("get render intent") },
1521         { NULL, "--get-selection",      gr_get_selection,       FALSE, FALSE, NULL, N_("get list of selected files") },
1522         { NULL, "--get-sidecars:",      gr_get_sidecars,        TRUE,  FALSE, N_("<FILE>"), N_("get list of sidecars of FILE") },
1523         { NULL, "--id:",                gr_lw_id,               TRUE, FALSE, N_("<ID>"), N_("window id for following commands") },
1524         { NULL, "--last",               gr_image_last,          FALSE, FALSE, NULL, N_("last image") },
1525         { NULL, "--list-add:",          gr_list_add,            TRUE,  FALSE, N_("<FILE>"), N_("add FILE to command line collection list") },
1526         { NULL, "--list-clear",         gr_list_clear,          FALSE, FALSE, NULL, N_("clear command line collection list") },
1527 #ifdef HAVE_LUA
1528         { NULL, "--lua:",               gr_lua,                 TRUE, FALSE, N_("<FILE>,<lua script>"), N_("run lua script on FILE") },
1529 #endif
1530         { NULL, "--new-window",         gr_new_window,          FALSE, FALSE, NULL, N_("new window") },
1531         { "-n", "--next",               gr_image_next,          FALSE, FALSE, NULL, N_("next image") },
1532         { NULL, "--pixel-info",         gr_pixel_info,          FALSE, FALSE, NULL, N_("print pixel info of mouse pointer on current image") },
1533         { NULL, "--print0",             gr_print0,              TRUE, FALSE, NULL, N_("terminate returned data with null character instead of newline") },
1534         { NULL, "--PWD:",               gr_pwd,                 TRUE, FALSE, N_("<PWD>"), N_("use PWD as working directory for following commands") },
1535         { "-q", "--quit",               gr_quit,                FALSE, FALSE, NULL, N_("quit") },
1536         { NULL, "--raise",              gr_raise,               FALSE, FALSE, NULL, N_("bring the Geeqie window to the top") },
1537         { NULL, "raise",                gr_raise,               FALSE, FALSE, NULL, N_("bring the Geeqie window to the top") },
1538         { NULL, "--selection-add:",     gr_selection_add,       TRUE,  FALSE, N_("[<FILE>]"), N_("adds the current file (or the specified file) to the current selection") },
1539         { "-s", "--slideshow",          gr_slideshow_toggle,    FALSE, TRUE,  NULL, N_("toggle slide show") },
1540         { NULL, "--slideshow-recurse:", gr_slideshow_start_rec, TRUE,  FALSE, N_("<FOLDER>"), N_("start recursive slide show in FOLDER") },
1541         { "-ss","--slideshow-start",    gr_slideshow_start,     FALSE, FALSE, NULL, N_("start slide show") },
1542         { "-sS","--slideshow-stop",     gr_slideshow_stop,      FALSE, FALSE, NULL, N_("stop slide show") },
1543         { NULL, "--tell",               gr_file_tell,           FALSE, FALSE, NULL, N_("print filename [and Collection] of current image") },
1544         { "+t", "--tools-show",         gr_tools_show,          FALSE, TRUE,  NULL, N_("show tools") },
1545         { "-t", "--tools-hide",         gr_tools_hide,          FALSE, TRUE,  NULL, N_("hide tools") },
1546         { NULL, "--view:",              gr_file_view,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE in new window") },
1547         { NULL, "view:",                gr_file_view,           TRUE,  FALSE, N_("<FILE>"), N_("open FILE in new window") },
1548         { NULL, NULL, NULL, FALSE, FALSE, NULL, NULL }
1549 };
1550
1551 static RemoteCommandEntry *remote_command_find(const gchar *text, const gchar **offset)
1552 {
1553         gboolean match = FALSE;
1554         gint i;
1555
1556         i = 0;
1557         while (!match && remote_commands[i].func != NULL)
1558                 {
1559                 if (remote_commands[i].needs_extra)
1560                         {
1561                         if (remote_commands[i].opt_s &&
1562                             strncmp(remote_commands[i].opt_s, text, strlen(remote_commands[i].opt_s)) == 0)
1563                                 {
1564                                 if (offset) *offset = text + strlen(remote_commands[i].opt_s);
1565                                 return &remote_commands[i];
1566                                 }
1567                         else if (remote_commands[i].opt_l &&
1568                                  strncmp(remote_commands[i].opt_l, text, strlen(remote_commands[i].opt_l)) == 0)
1569                                 {
1570                                 if (offset) *offset = text + strlen(remote_commands[i].opt_l);
1571                                 return &remote_commands[i];
1572                                 }
1573                         }
1574                 else
1575                         {
1576                         if ((remote_commands[i].opt_s && strcmp(remote_commands[i].opt_s, text) == 0) ||
1577                             (remote_commands[i].opt_l && strcmp(remote_commands[i].opt_l, text) == 0))
1578                                 {
1579                                 if (offset) *offset = text;
1580                                 return &remote_commands[i];
1581                                 }
1582                         }
1583
1584                 i++;
1585                 }
1586
1587         return NULL;
1588 }
1589
1590 static void remote_cb(RemoteConnection *UNUSED(rc), const gchar *text, GIOChannel *channel, gpointer data)
1591 {
1592         RemoteCommandEntry *entry;
1593         const gchar *offset;
1594
1595         entry = remote_command_find(text, &offset);
1596         if (entry && entry->func)
1597                 {
1598                 entry->func(offset, channel, data);
1599                 }
1600         else
1601                 {
1602                 log_printf("unknown remote command:%s\n", text);
1603                 }
1604 }
1605
1606 void remote_help(void)
1607 {
1608         gint i;
1609         gchar *s_opt_param;
1610         gchar *l_opt_param;
1611
1612         print_term(FALSE, _("Remote command list:\n"));
1613
1614         i = 0;
1615         while (remote_commands[i].func != NULL)
1616                 {
1617                 if (remote_commands[i].description)
1618                         {
1619                         s_opt_param = g_strdup(remote_commands[i].opt_s  ? remote_commands[i].opt_s : "" );
1620                         l_opt_param = g_strconcat(remote_commands[i].opt_l, remote_commands[i].parameter, NULL);
1621                         printf_term(FALSE, "  %-4s %-40s%-s\n",
1622                                         s_opt_param,
1623                                         l_opt_param,
1624                                         _(remote_commands[i].description));
1625                         g_free(s_opt_param);
1626                         g_free(l_opt_param);
1627                         }
1628                 i++;
1629                 }
1630         printf_term(FALSE, _("\n\n  All other command line parameters are used as plain files if they exist.\n\n  The name of a collection, with or without either path or extension (.gqv) may be used.\n"));
1631 }
1632
1633 GList *remote_build_list(GList *list, gint argc, gchar *argv[], GList **errors)
1634 {
1635         gint i;
1636
1637         i = 1;
1638         while (i < argc)
1639                 {
1640                 RemoteCommandEntry *entry;
1641
1642                 entry = remote_command_find(argv[i], NULL);
1643                 if (entry)
1644                         {
1645                         list = g_list_append(list, argv[i]);
1646                         }
1647                 else if (errors && !isname(argv[i]))
1648                         {
1649                         *errors = g_list_append(*errors, argv[i]);
1650                         }
1651                 i++;
1652                 }
1653
1654         return list;
1655 }
1656
1657 /**
1658  * @param arg_exec Binary (argv0)
1659  * @param remote_list Evaluated and recognized remote commands
1660  * @param path The current path
1661  * @param cmd_list List of all non collections in Path (gchar *path)
1662  * @param collection_list List of all collections in argv
1663  */
1664 void remote_control(const gchar *arg_exec, GList *remote_list, const gchar *path,
1665                     GList *cmd_list, GList *collection_list)
1666 {
1667         RemoteConnection *rc;
1668         gboolean started = FALSE;
1669         gchar *buf;
1670
1671         buf = g_build_filename(get_rc_dir(), ".command", NULL);
1672         rc = remote_client_open(buf);
1673         if (!rc)
1674                 {
1675                 GString *command;
1676                 GList *work;
1677                 gint retry_count = 12;
1678                 gboolean blank = FALSE;
1679
1680                 printf_term(FALSE, _("Remote %s not running, starting..."), GQ_APPNAME);
1681
1682                 command = g_string_new(arg_exec);
1683
1684                 work = remote_list;
1685                 while (work)
1686                         {
1687                         gchar *text;
1688                         RemoteCommandEntry *entry;
1689
1690                         text = work->data;
1691                         work = work->next;
1692
1693                         entry = remote_command_find(text, NULL);
1694                         if (entry)
1695                                 {
1696                                 /* If Geeqie is not running, stop the --new-window command opening a second window */
1697                                 if (g_strcmp0(text, "--new-window") == 0)
1698                                         {
1699                                         remote_list = g_list_remove(remote_list, text);
1700                                         }
1701                                 if (entry->prefer_command_line)
1702                                         {
1703                                         remote_list = g_list_remove(remote_list, text);
1704                                         g_string_append(command, " ");
1705                                         g_string_append(command, text);
1706                                         }
1707                                 if (entry->opt_l && strcmp(entry->opt_l, "file:") == 0)
1708                                         {
1709                                         blank = TRUE;
1710                                         }
1711                                 }
1712                         }
1713
1714                 if (blank || cmd_list || path) g_string_append(command, " --blank");
1715                 if (get_debug_level()) g_string_append(command, " --debug");
1716
1717                 g_string_append(command, " &");
1718                 runcmd(command->str);
1719                 g_string_free(command, TRUE);
1720
1721                 while (!rc && retry_count > 0)
1722                         {
1723                         usleep((retry_count > 10) ? 500000 : 1000000);
1724                         rc = remote_client_open(buf);
1725                         if (!rc) print_term(FALSE, ".");
1726                         retry_count--;
1727                         }
1728
1729                 print_term(FALSE, "\n");
1730
1731                 started = TRUE;
1732                 }
1733         g_free(buf);
1734
1735         if (rc)
1736                 {
1737                 GList *work;
1738                 const gchar *prefix;
1739                 gboolean use_path = TRUE;
1740                 gboolean sent = FALSE;
1741
1742                 work = remote_list;
1743                 while (work)
1744                         {
1745                         gchar *text;
1746                         RemoteCommandEntry *entry;
1747
1748                         text = work->data;
1749                         work = work->next;
1750
1751                         entry = remote_command_find(text, NULL);
1752                         if (entry &&
1753                             entry->opt_l &&
1754                             strcmp(entry->opt_l, "file:") == 0) use_path = FALSE;
1755
1756                         remote_client_send(rc, text);
1757
1758                         sent = TRUE;
1759                         }
1760
1761                 if (cmd_list && cmd_list->next)
1762                         {
1763                         prefix = "--list-add:";
1764                         remote_client_send(rc, "--list-clear");
1765                         }
1766                 else
1767                         {
1768                         prefix = "file:";
1769                         }
1770
1771                 work = cmd_list;
1772                 while (work)
1773                         {
1774                         gchar *text;
1775
1776                         text = g_strconcat(prefix, work->data, NULL);
1777                         remote_client_send(rc, text);
1778                         g_free(text);
1779                         work = work->next;
1780
1781                         sent = TRUE;
1782                         }
1783
1784                 if (path && !cmd_list && use_path)
1785                         {
1786                         gchar *text;
1787
1788                         text = g_strdup_printf("file:%s", path);
1789                         remote_client_send(rc, text);
1790                         g_free(text);
1791
1792                         sent = TRUE;
1793                         }
1794
1795                 work = collection_list;
1796                 while (work)
1797                         {
1798                         const gchar *name;
1799                         gchar *text;
1800
1801                         name = work->data;
1802                         work = work->next;
1803
1804                         text = g_strdup_printf("file:%s", name);
1805                         remote_client_send(rc, text);
1806                         g_free(text);
1807
1808                         sent = TRUE;
1809                         }
1810
1811                 if (!started && !sent)
1812                         {
1813                         remote_client_send(rc, "raise");
1814                         }
1815                 }
1816         else
1817                 {
1818                 print_term(TRUE, _("Remote not available\n"));
1819                 }
1820
1821         _exit(0);
1822 }
1823
1824 RemoteConnection *remote_server_init(gchar *path, CollectionData *command_collection)
1825 {
1826         RemoteConnection *remote_connection = remote_server_open(path);
1827         RemoteData *remote_data = g_new(RemoteData, 1);
1828
1829         remote_data->command_collection = command_collection;
1830
1831         remote_server_subscribe(remote_connection, remote_cb, remote_data);
1832         return remote_connection;
1833 }
1834 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */