summaryrefslogtreecommitdiff
path: root/typing-break/egg-spawn.c
blob: a1e0389b5ebabaa54dc99518ab99540c47dc1f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/* egg-spawn.c:
 *
 * Copyright (C) 2002 Sun Microsystems Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Mark McLoughlin <mark@skynet.ie>
 */

#include <config.h>
#include <string.h>

#include "egg-spawn.h"

#include <glib.h>
#include <gdk/gdk.h>

extern char **environ;

/**
 * egg_make_spawn_environment_for_screen:
 * @screen: A #GdkScreen
 * @envp: program environment to copy, or NULL to use current environment.
 *
 * Returns a modified copy of the program environment @envp (or the current
 * environment if @envp is NULL) with $DISPLAY set such that a launched 
 * application (which calls gdk_display_open()) inheriting this environment
 * would have @screen as its default screen..
 *
 * Returns: a newly-allocated %NULL-terminated array of strings or
 * %NULL on error. Use g_strfreev() to free it.
 **/
gchar **
egg_make_spawn_environment_for_screen (GdkScreen  *screen,
				       gchar     **envp)
{
  gchar **retval = NULL;
  gchar  *display_name;
  gint    display_index = -1;
  gint    i, env_len;

  g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);

  if (envp == NULL)
    envp = environ;

  for (env_len = 0; envp [env_len]; env_len++)
    if (!strncmp (envp [env_len], "DISPLAY", strlen ("DISPLAY")))
      display_index = env_len;

  if (display_index == -1)
    display_index = env_len++;

  retval = g_new (char *, env_len + 1);
  retval [env_len] = NULL;

  display_name = gdk_screen_make_display_name (screen);

  for (i = 0; i < env_len; i++)
    if (i == display_index)
      retval [i] = g_strconcat ("DISPLAY=", display_name, NULL);
    else
      retval [i] = g_strdup (envp [i]);

  g_assert (i == env_len);

  g_free (display_name);

  return retval;
}

/**
 * egg_spawn_async_on_screen:
 * @working_directory: child's current working directory, or %NULL to inherit parent's
 * @argv: child's argument vector
 * @envp: child's environment, or %NULL to inherit parent's
 * @flags: flags from #GSpawnFlags
 * @child_setup: function to run in the child just before <function>exec()</function>
 * @user_data: user data for @child_setup
 * @screen: a #GdkScreen
 * @child_pid: return location for child process ID, or %NULL
 * @error: return location for error
 *
 * Like g_spawn_async(), except the child process is spawned in such
 * an environment that on calling gdk_display_open() it would be
 * returned a #GdkDisplay with @screen as the default screen.
 *
 * This is useful for applications which wish to launch an application
 * on a specific screen.
 *
 * Return value: %TRUE on success, %FALSE if error is set
 **/
gboolean
egg_spawn_async_on_screen (const gchar           *working_directory,
			   gchar                **argv,
			   gchar                **envp,
			   GSpawnFlags            flags,
			   GSpawnChildSetupFunc   child_setup,
			   gpointer               user_data,
			   GdkScreen             *screen,
			   gint                  *child_pid,
			   GError               **error)
{
  GdkScreen  *default_screen;
  gchar     **new_envp = NULL;
  gboolean    retval;

  g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);

  default_screen = gdk_display_get_default_screen (
				gdk_screen_get_display (screen));
  if (screen != default_screen)
    new_envp = egg_make_spawn_environment_for_screen (screen, envp);

  retval = g_spawn_async (working_directory, argv,
			  new_envp ? new_envp : envp,
			  flags, child_setup, user_data,
			  child_pid, error);

  g_strfreev (new_envp);

  return retval;
}

/**
 * egg_spawn_async_with_pipes_on_screen:
 * @working_directory: child's current working directory, or %NULL to inherit parent's
 * @argv: child's argument vector
 * @envp: child's environment, or %NULL to inherit parent's
 * @flags: flags from #GSpawnFlags
 * @child_setup: function to run in the child just before <function>exec()</function>
 * @user_data: user data for @child_setup
 * @screen: a #GdkScreen
 * @child_pid: return location for child process ID, or %NULL
 * @standard_input: return location for file descriptor to write to child's stdin, or %NULL
 * @standard_output: return location for file descriptor to read child's stdout, or %NULL
 * @standard_error: return location for file descriptor to read child's stderr, or %NULL
 * @error: return location for error
 *
 * Like g_spawn_async_with_pipes(), except the child process is
 * spawned in such an environment that on calling gdk_display_open()
 * it would be returned a #GdkDisplay with @screen as the default
 * screen.
 *
 * This is useful for applications which wish to launch an application
 * on a specific screen.
 *
 * Return value: %TRUE on success, %FALSE if an error was set
 **/
gboolean
egg_spawn_async_with_pipes_on_screen (const gchar          *working_directory,
				      gchar               **argv,
				      gchar               **envp,
				      GSpawnFlags           flags,
				      GSpawnChildSetupFunc  child_setup,
				      gpointer              user_data,
				      GdkScreen            *screen,
				      gint                 *child_pid,
				      gint                 *standard_input,
				      gint                 *standard_output,
				      gint                 *standard_error,
				      GError              **error)
{
  GdkScreen  *default_screen;
  gchar     **new_envp = NULL;
  gboolean    retval;

  g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);

  default_screen = gdk_display_get_default_screen (
				gdk_screen_get_display (screen));
  if (screen != default_screen)
    new_envp = egg_make_spawn_environment_for_screen (screen, envp);

  retval = g_spawn_async_with_pipes (working_directory, argv,
				     new_envp ? new_envp : envp,
				     flags, child_setup, user_data,
				     child_pid, standard_input,
				     standard_output, standard_error,
				     error);

  g_strfreev (new_envp);

  return retval;
}

/**
 * egg_spawn_sync_on_screen:
 * @working_directory: child's current working directory, or %NULL to inherit parent's
 * @argv: child's argument vector
 * @envp: child's environment, or %NULL to inherit parent's
 * @flags: flags from #GSpawnFlags
 * @child_setup: function to run in the child just before <function>exec()</function>
 * @user_data: user data for @child_setup
 * @screen: a #GdkScreen
 * @standard_output: return location for child output
 * @standard_error: return location for child error messages
 * @exit_status: child exit status, as returned by <function>waitpid()</function>
 * @error: return location for error
 *
 * Like g_spawn_sync(), except the child process is spawned in such
 * an environment that on calling gdk_display_open() it would be
 * returned a #GdkDisplay with @screen as the default screen.
 *
 * This is useful for applications which wish to launch an application
 * on a specific screen.
 *
 * Return value: %TRUE on success, %FALSE if an error was set.
 **/
gboolean
egg_spawn_sync_on_screen (const gchar          *working_directory,
			  gchar               **argv,
			  gchar               **envp,
			  GSpawnFlags           flags,
			  GSpawnChildSetupFunc  child_setup,
			  gpointer              user_data,
			  GdkScreen            *screen,
			  gchar               **standard_output,
			  gchar               **standard_error,
			  gint                 *exit_status,
			  GError              **error)
{
  GdkScreen  *default_screen;
  gchar     **new_envp = NULL;
  gboolean    retval;

  g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);

  default_screen = gdk_display_get_default_screen (
				gdk_screen_get_display (screen));
  if (screen != default_screen)
    new_envp = egg_make_spawn_environment_for_screen (screen, envp);

  retval = g_spawn_sync (working_directory, argv,
			 new_envp ? new_envp : envp,
			 flags, child_setup, user_data,
			 standard_output, standard_error,
			 exit_status, error);

  g_strfreev (new_envp);

  return retval;
}

/**
 * egg_spawn_command_line_sync_on_screen:
 * @command_line: a command line
 * @screen: a #GdkScreen
 * @standard_output: return location for child output
 * @standard_error: return location for child errors
 * @exit_status: return location for child exit status
 * @error: return location for errors
 *
 * Like g_spawn_command_line_sync(), except the child process is
 * spawned in such an environment that on calling gdk_display_open()
 * it would be returned a #GdkDisplay with @screen as the default
 * screen.
 *
 * This is useful for applications which wish to launch an application
 * on a specific screen.
 *
 * Return value: %TRUE on success, %FALSE if an error was set
 **/
gboolean
egg_spawn_command_line_sync_on_screen  (const gchar  *command_line,
					GdkScreen    *screen,
					gchar       **standard_output,
					gchar       **standard_error,
					gint         *exit_status,
					GError      **error)
{
  gchar    **argv = NULL;
  gboolean   retval;

  g_return_val_if_fail (command_line != NULL, FALSE);

  if (!g_shell_parse_argv (command_line,
			   NULL, &argv,
			   error))
    return FALSE;

  retval = egg_spawn_sync_on_screen (NULL,
				     argv,
				     NULL,
				     G_SPAWN_SEARCH_PATH,
				     NULL,
				     NULL,
				     screen,
				     standard_output,
				     standard_error,
				     exit_status,
				     error);

  g_strfreev (argv);

  return retval;
}

/**
 * egg_spawn_command_line_async_on_screen:
 * @command_line: a command line
 * @screen: a #GdkScreen
 * @error: return location for errors
 *
 * Like g_spawn_command_line_async(), except the child process is
 * spawned in such an environment that on calling gdk_display_open()
 * it would be returned a #GdkDisplay with @screen as the default
 * screen.
 *
 * This is useful for applications which wish to launch an application
 * on a specific screen.
 *
 * Return value: %TRUE on success, %FALSE if error is set.
 **/
gboolean
egg_spawn_command_line_async_on_screen (const gchar  *command_line,
					GdkScreen    *screen,
					GError      **error)
{
  gchar    **argv = NULL;
  gboolean   retval;

  g_return_val_if_fail (command_line != NULL, FALSE);

  if (!g_shell_parse_argv (command_line,
			   NULL, &argv,
			   error))
    return FALSE;

  retval = egg_spawn_async_on_screen (NULL,
				      argv,
				      NULL,
				      G_SPAWN_SEARCH_PATH,
				      NULL,
				      NULL,
				      screen,
				      NULL,
				      error);
  g_strfreev (argv);

  return retval;
}