2 Util for external clipboard.
4 Copyright (C) 2009-2016
5 Free Software Foundation, Inc.
8 Ilia Maslakov <il.smind@gmail.com>, 2010.
9 Andrew Borodin <aborodin@vmail.ru>, 2014.
11 This file is part of the Midnight Commander.
13 The Midnight Commander is free software: you can redistribute it
14 and/or modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation, either version 3 of the License,
16 or (at your option) any later version.
18 The Midnight Commander is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 #include <sys/types.h>
33 #include "lib/global.h"
34 #include "lib/fileloc.h"
35 #include "lib/mcconfig.h"
37 #include "lib/event.h"
39 #include "lib/vfs/vfs.h"
41 #include "src/execute.h"
43 #include "clipboard.h"
45 /*** global variables ****************************************************************************/
47 /* path to X clipboard utility */
48 char *clipboard_store_path
= NULL
;
49 char *clipboard_paste_path
= NULL
;
51 /*** file scope macro definitions ****************************************************************/
53 /*** file scope type declarations ****************************************************************/
55 /*** file scope variables ************************************************************************/
57 static const int clip_open_flags
= O_CREAT
| O_WRONLY
| O_TRUNC
| O_BINARY
;
58 static const mode_t clip_open_mode
= S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
;
60 /* --------------------------------------------------------------------------------------------- */
61 /*** file scope functions ************************************************************************/
62 /* --------------------------------------------------------------------------------------------- */
64 /* --------------------------------------------------------------------------------------------- */
65 /*** public functions ****************************************************************************/
66 /* --------------------------------------------------------------------------------------------- */
70 clipboard_file_to_ext_clip (const gchar
* event_group_name
, const gchar
* event_name
,
71 gpointer init_data
, gpointer data
)
74 const char *d
= getenv ("DISPLAY");
76 (void) event_group_name
;
81 if (d
== NULL
|| clipboard_store_path
== NULL
|| clipboard_store_path
[0] == '\0')
84 tmp
= mc_config_get_full_path (EDIT_CLIP_FILE
);
85 cmd
= g_strconcat (clipboard_store_path
, " ", tmp
, " 2>/dev/null", (char *) NULL
);
88 my_system (EXECUTE_AS_SHELL
, mc_global
.shell
->path
, cmd
);
95 /* --------------------------------------------------------------------------------------------- */
99 clipboard_file_from_ext_clip (const gchar
* event_group_name
, const gchar
* event_name
,
100 gpointer init_data
, gpointer data
)
104 const char *d
= getenv ("DISPLAY");
106 (void) event_group_name
;
111 if (d
== NULL
|| clipboard_paste_path
== NULL
|| clipboard_paste_path
[0] == '\0')
114 p
= mc_popen (clipboard_paste_path
, NULL
);
116 return TRUE
; /* don't show error message */
118 p
->out
.null_term
= FALSE
;
119 p
->err
.null_term
= TRUE
;
123 GError
*error
= NULL
;
125 p
->out
.len
= MC_PIPE_BUFSIZE
;
126 p
->err
.len
= MC_PIPE_BUFSIZE
;
128 mc_pread (p
, &error
);
132 /* don't show error message */
133 g_error_free (error
);
137 /* ignore stderr and get stdout */
138 if (p
->out
.len
== MC_PIPE_STREAM_EOF
|| p
->out
.len
== MC_PIPE_ERROR_READ
)
147 vfs_path_t
*fname_vpath
;
149 fname_vpath
= mc_config_get_full_vpath (EDIT_CLIP_FILE
);
150 file
= mc_open (fname_vpath
, clip_open_flags
, clip_open_mode
);
151 vfs_path_free (fname_vpath
);
157 nwrite
= mc_write (file
, p
->out
.buf
, p
->out
.len
);
170 /* --------------------------------------------------------------------------------------------- */
174 clipboard_text_to_file (const gchar
* event_group_name
, const gchar
* event_name
,
175 gpointer init_data
, gpointer data
)
178 vfs_path_t
*fname_vpath
= NULL
;
180 const char *text
= (const char *) data
;
182 (void) event_group_name
;
189 fname_vpath
= mc_config_get_full_vpath (EDIT_CLIP_FILE
);
190 file
= mc_open (fname_vpath
, clip_open_flags
, clip_open_mode
);
191 vfs_path_free (fname_vpath
);
196 str_len
= strlen (text
);
200 ret
= mc_write (file
, text
, str_len
);
207 /* --------------------------------------------------------------------------------------------- */
211 clipboard_text_from_file (const gchar
* event_group_name
, const gchar
* event_name
,
212 gpointer init_data
, gpointer data
)
217 gboolean first
= TRUE
;
218 ev_clipboard_text_from_file_t
*event_data
= (ev_clipboard_text_from_file_t
*) data
;
220 (void) event_group_name
;
224 fname
= mc_config_get_full_path (EDIT_CLIP_FILE
);
225 f
= fopen (fname
, "r");
230 event_data
->ret
= FALSE
;
234 *(event_data
->text
) = NULL
;
236 while (fgets (buf
, sizeof (buf
), f
))
243 if (buf
[len
- 1] == '\n')
249 *(event_data
->text
) = g_strdup (buf
);
253 /* remove \n on EOL */
256 tmp
= g_strconcat (*(event_data
->text
), " ", buf
, (char *) NULL
);
257 g_free (*(event_data
->text
));
258 *(event_data
->text
) = tmp
;
264 event_data
->ret
= (*(event_data
->text
) != NULL
);
268 /* --------------------------------------------------------------------------------------------- */