summaryrefslogtreecommitdiff
path: root/src/upstart-bridge/plymouth-upstart-bridge.c
blob: 7fe1f422755cf031e6d71c53ff05a2f27d635eea (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
/* plymouth-upstart-bridge.c - bridge Upstart job state changes to Plymouth
 *
 * Copyright (C) 2010, 2011 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 *
 * Written by: Colin Watson <cjwatson@ubuntu.com>
 */
#include "config.h"

#include <stdbool.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>

#if defined(HAVE_NCURSESW_TERM_H)
#include <ncursesw/term.h>
#elif defined(HAVE_NCURSES_TERM_H)
#include <ncurses/term.h>
#else
#include <term.h>
#endif

#include "ply-boot-client.h"
#include "ply-command-parser.h"
#include "ply-event-loop.h"
#include "ply-logger.h"
#include "ply-upstart-monitor.h"

typedef struct
{
  ply_event_loop_t      *loop;
  ply_boot_client_t     *client;
  ply_upstart_monitor_t *upstart;
  ply_command_parser_t  *command_parser;
} state_t;

#ifndef TERMINAL_COLOR_RED
#define TERMINAL_COLOR_RED 1
#endif

/* We don't care about the difference between "not a string capability" and
 * "cancelled or absent".
 */
static const char *
get_string_capability (const char *name)
{
  const char *value;

  value = tigetstr ((char *) name);
  if (value == (const char *) -1)
    value = NULL;

  return value;
}

static bool
terminal_ignores_new_line_after_80_chars (void)
{
  return tigetflag ((char *) "xenl") != 0;
}

static int
get_number_of_columns (void)
{
  int number_of_columns;

  number_of_columns = tigetnum ((char *) "cols");

  return number_of_columns;
}

static bool
can_set_cursor_column (void)
{
  const char *capability;

  capability = get_string_capability ("hpa");

  return capability != NULL;
}

static void
set_cursor_column (int column)
{
  const char *capability;
  const char *terminal_string;

  capability = get_string_capability ("hpa");
  terminal_string = tiparm (capability, column);
  fputs (terminal_string, stdout);
}

static bool
can_set_fg_color (void)
{
  const char *capability;

  capability = get_string_capability ("setaf");

  return capability != NULL;
}

static void
set_fg_color (int color)
{
  const char *capability;
  const char *terminal_string;

  capability = get_string_capability ("setaf");
  terminal_string = tiparm (capability, color);
  fputs (terminal_string, stdout);
}

static void
unset_fg_color (void)
{
  const char *terminal_string;

  terminal_string = get_string_capability ("op");

  if (terminal_string == NULL)
    return;

  fputs (terminal_string, stdout);
}

static void
update_status (state_t                                   *state,
               ply_upstart_monitor_job_properties_t      *job,
               ply_upstart_monitor_instance_properties_t *instance,
               const char                                *action,
               bool                                       is_okay)
{
  ply_boot_client_update_daemon (state->client, job->name, NULL, NULL, state);

  if (job->description == NULL)
    return;

  printf (" * %s%s%s",
          action ? action : "", action ? " " : "", job->description);

  if (terminal_ignores_new_line_after_80_chars () && can_set_cursor_column ())
    {
      int number_of_columns, column;

      number_of_columns = get_number_of_columns ();

      if (number_of_columns < (int) strlen("[fail]"))
        number_of_columns = 80;

      column = number_of_columns - strlen ("[fail]") - 1;

      set_cursor_column (column);

      if (is_okay)
        puts ("[ OK ]");
      else
        {
          bool supports_color;

          supports_color = can_set_fg_color ();

          fputs ("[", stdout);

          if (supports_color)
            set_fg_color (TERMINAL_COLOR_RED);

          fputs ("fail", stdout);

          if (supports_color)
            unset_fg_color ();

          puts ("]");
        }
    }
  else
    {
      if (is_okay)
        puts ("   ...done.");
      else
        puts ("   ...fail!");
    }
}

static void
on_failed (void                                      *data,
           ply_upstart_monitor_job_properties_t      *job,
           ply_upstart_monitor_instance_properties_t *instance,
           int                                        status)
{
  state_t *state = data;

  if (job->is_task)
    update_status (state, job, instance, NULL, false);
  else
    {
      if (strcmp (instance->goal, "start") == 0)
        update_status (state, job, instance, "Starting", false);
      else if (strcmp (instance->goal, "stop") == 0)
        update_status (state, job, instance, "Stopping", false);
    }
}

static void
on_state_changed (state_t                                   *state,
                  const char                                *old_state,
                  ply_upstart_monitor_job_properties_t      *job,
                  ply_upstart_monitor_instance_properties_t *instance)
{
  if (instance->failed)
    return;

  if (job->is_task)
    {
      if (strcmp (instance->state, "waiting") == 0)
        update_status (state, job, instance, NULL, true);
    }
  else
    {
      if (strcmp (instance->goal, "start") == 0)
        {
          if (strcmp (instance->state, "running") == 0)
            update_status (state, job, instance, "Starting", true);
        }
      else if (strcmp (instance->goal, "stop") == 0)
        {
          if (strcmp (instance->state, "waiting") == 0)
            update_status (state, job, instance, "Stopping", true);
        }
    }
}

static void
on_disconnect (state_t *state)
{
  ply_trace ("disconnected from boot status daemon");
  ply_event_loop_exit (state->loop, 0);
}

int
main (int    argc,
      char **argv)
{
  state_t state = { 0 };
  bool should_help, should_be_verbose;
  bool is_connected;
  int exit_code;

  exit_code = 0;

  signal (SIGPIPE, SIG_IGN);

  state.loop = ply_event_loop_new ();
  state.client = ply_boot_client_new ();
  state.command_parser = ply_command_parser_new ("plymouth-upstart-bridge", "Upstart job state bridge");

  ply_command_parser_add_options (state.command_parser,
                                  "help", "This help message", PLY_COMMAND_OPTION_TYPE_FLAG,
                                  "debug", "Enable verbose debug logging", PLY_COMMAND_OPTION_TYPE_FLAG,
                                  NULL);

  if (!ply_command_parser_parse_arguments (state.command_parser, state.loop, argv, argc))
    {
      char *help_string;

      help_string = ply_command_parser_get_help_string (state.command_parser);

      ply_error ("%s", help_string);

      free (help_string);
      return 1;
    }

  ply_command_parser_get_options (state.command_parser,
                                  "help", &should_help,
                                  "debug", &should_be_verbose,
                                  NULL);

  if (should_help)
    {
      char *help_string;

      help_string = ply_command_parser_get_help_string (state.command_parser);

      puts (help_string);

      free (help_string);
      return 0;
    }

  if (should_be_verbose && !ply_is_tracing ())
    ply_toggle_tracing ();

  setupterm (NULL, STDOUT_FILENO, NULL);

  is_connected = ply_boot_client_connect (state.client,
                                          (ply_boot_client_disconnect_handler_t)
                                          on_disconnect, &state);
  if (!is_connected)
    {
      ply_trace ("daemon not running");
      return 1;
    }

  ply_boot_client_attach_to_event_loop (state.client, state.loop);
  state.upstart = ply_upstart_monitor_new (state.loop);
  if (!state.upstart)
    return 1;
  ply_upstart_monitor_add_state_changed_handler (state.upstart,
                                                 (ply_upstart_monitor_state_changed_handler_t)
                                                 on_state_changed, &state);
  ply_upstart_monitor_add_failed_handler (state.upstart, on_failed, &state);

  exit_code = ply_event_loop_run (state.loop);

  ply_upstart_monitor_free (state.upstart);
  ply_boot_client_free (state.client);

  ply_event_loop_free (state.loop);

  return exit_code;
}
/* vim: set ts=4 sw=4 expandtab autoindent cindent cino={.5s,(0: */