openrc/src/rc-status.c

133 lines
3.3 KiB
C
Raw Normal View History

/*
rc-status
Display the status of the services in runlevels
Copyright 2007 Gentoo Foundation
Released under the GPLv2
*/
2007-04-17 18:14:32 +05:30
#define APPLET "rc-status"
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "einfo.h"
#include "rc.h"
#include "rc-misc.h"
#include "strlist.h"
static void print_level (char *level)
{
2007-04-17 15:02:18 +05:30
printf ("Runlevel: %s%s%s\n",
ecolor (ecolor_hilite),
level,
ecolor (ecolor_normal));
}
static void print_service (char *service)
{
2007-04-11 18:14:47 +05:30
char status[10];
int cols = printf (" %s\n", service);
2007-04-17 15:02:18 +05:30
einfo_color_t color = ecolor_bad;
2007-04-11 18:14:47 +05:30
if (rc_service_state (service, rc_service_stopping))
snprintf (status, sizeof (status), "stopping ");
else if (rc_service_state (service, rc_service_starting)) {
snprintf (status, sizeof (status), "starting ");
2007-04-17 15:02:18 +05:30
color = ecolor_warn;
2007-04-11 18:14:47 +05:30
} else if (rc_service_state (service, rc_service_inactive)) {
snprintf (status, sizeof (status), "inactive ");
2007-04-17 15:02:18 +05:30
color = ecolor_warn;
2007-04-11 18:14:47 +05:30
} else if (geteuid () == 0 && rc_service_state (service, rc_service_crashed))
snprintf (status, sizeof (status), " crashed ");
else if (rc_service_state (service, rc_service_started)) {
snprintf (status, sizeof (status), " started ");
2007-04-17 15:02:18 +05:30
color = ecolor_good;
2007-04-11 18:14:47 +05:30
} else if (rc_service_state (service, rc_service_scheduled)) {
snprintf (status, sizeof (status), "scheduled");
2007-04-17 15:02:18 +05:30
color = ecolor_warn;
2007-04-11 18:14:47 +05:30
} else
snprintf (status, sizeof (status), " stopped ");
ebracket (cols, color, status);
}
2007-04-17 18:14:32 +05:30
#define getoptstring "alsuh"
const struct option longopts[] = {
{"all", 0, NULL, 'a'},
{"list", 0, NULL, 'l'},
{"servicelist", 0, NULL, 's'},
{"unused", 0, NULL, 'u'},
{"help", 0, NULL, 'h'},
{NULL, 0, NULL, 0}
};
#include "_usage.c"
int main (int argc, char **argv)
{
2007-04-17 18:14:32 +05:30
char **levels = NULL;
2007-04-11 18:14:47 +05:30
char **services = NULL;
char *level;
char *service;
char c;
int option_index = 0;
int i;
int j;
2007-04-17 18:14:32 +05:30
while ((c = getopt_long(argc, argv, getoptstring, longopts, &option_index)) != -1)
2007-04-11 18:14:47 +05:30
switch (c) {
case 'a':
levels = rc_get_runlevels ();
break;
case 'l':
levels = rc_get_runlevels ();
STRLIST_FOREACH (levels, level, i)
printf ("%s\n", level);
rc_strlist_free (levels);
exit (EXIT_SUCCESS);
case 's':
services = rc_services_in_runlevel (NULL);
STRLIST_FOREACH (services, service, i)
print_service (service);
rc_strlist_free (services);
exit (EXIT_SUCCESS);
case 'u':
services = rc_services_in_runlevel (NULL);
levels = rc_get_runlevels ();
STRLIST_FOREACH (services, service, i) {
bool found = false;
STRLIST_FOREACH (levels, level, j)
if (rc_service_in_runlevel (service, level)) {
found = true;
break;
}
if (! found)
print_service (service);
}
rc_strlist_free (levels);
rc_strlist_free (services);
exit (EXIT_SUCCESS);
2007-04-17 18:14:32 +05:30
case_RC_COMMON_GETOPT
2007-04-11 18:14:47 +05:30
}
2007-04-11 18:14:47 +05:30
while (optind < argc)
levels = rc_strlist_add (levels, argv[optind++]);
2007-04-11 18:14:47 +05:30
if (! levels)
levels = rc_strlist_add (NULL, rc_get_runlevel ());
2007-04-11 18:14:47 +05:30
STRLIST_FOREACH (levels, level, i) {
print_level (level);
services = rc_services_in_runlevel (level);
STRLIST_FOREACH (services, service, j)
print_service (service);
rc_strlist_free (services);
}
2007-04-11 18:14:47 +05:30
rc_strlist_free (levels);
2007-04-11 18:14:47 +05:30
return (EXIT_SUCCESS);
}