summaryrefslogtreecommitdiff
path: root/src/rc-depend.c
blob: 190d5c8cb19264fdc5dc9fb938aa014702ce161f (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
/*
   rc-depend
   rc service dependency and ordering
   Copyright 2006-2007 Gentoo Foundation
   Released under the GPLv2
   */

#define APPLET "rc-depend"

#include <sys/types.h>
#include <sys/stat.h>

#include <getopt.h>
#include <errno.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "builtins.h"
#include "einfo.h"
#include "rc.h"
#include "rc-misc.h"
#include "strlist.h"

rc_depinfo_t *_rc_deptree_load (void) {
	if (rc_deptree_update_needed ()) {
		int retval;

		ebegin ("Caching service dependencies");
		retval = rc_deptree_update ();
		eend (retval ? 0 : -1, "Failed to update the dependency tree");
	}

	return (rc_deptree_load ());
}

static char *applet = NULL;

#include "_usage.h"
#define getoptstring "t:suT" getoptstring_COMMON
static struct option longopts[] = {
	{ "type",     1, NULL, 't'},
	{ "notrace",  0, NULL, 'T'},
	{ "strict",   0, NULL, 's'},
	{ "update",   0, NULL, 'u'},
	longopts_COMMON
};
static const char * const longopts_help[] = {
	"Type(s) of dependency to list",
	"Don't trace service dependencies",
	"Only use what is in the runlevels",
	"Force an update of the dependency tree",
	longopts_help_COMMON
};
#include "_usage.c"

int rc_depend (int argc, char **argv)
{
	char **types = NULL;
	char **services = NULL;
	char **depends = NULL;
	char **list;
	rc_depinfo_t *deptree = NULL;
	char *service;
	int options = RC_DEP_TRACE;
	bool first = true;
	int i;
	bool update = false;
	char *runlevel = xstrdup( getenv ("RC_SOFTLEVEL"));
	int opt;
	char *token;

	applet = argv[0];

	while ((opt = getopt_long (argc, argv, getoptstring,
							   longopts, (int *) 0)) != -1)
	{
		switch (opt) {
			case 's':
				options |= RC_DEP_STRICT;
				break;
			case 't':
				while ((token = strsep (&optarg, ",")))
					rc_strlist_addu (&types, token);
				break;
			case 'u':
				update = true;
				break;
			case 'T':
				options &= RC_DEP_TRACE;
				break;

			case_RC_COMMON_GETOPT
		}
	}

	if (update) {
		bool u = false;
		ebegin ("Caching service dependencies");
		u = rc_deptree_update ();
		eend (u ? 0 : -1, "%s: %s", applet, strerror (errno));
		if (! u)
			eerrorx ("Failed to update the dependency tree");
	}

	if (! (deptree = _rc_deptree_load ()))
		eerrorx ("failed to load deptree");

	if (! runlevel)
		runlevel = rc_runlevel_get ();

	while (optind < argc) {
		list = NULL;
		rc_strlist_add (&list, argv[optind]);
		errno = 0;
		depends = rc_deptree_depends (deptree, NULL, (const char **) list,
									  runlevel, 0);
		if (! depends && errno == ENOENT)
			eerror ("no dependency info for service `%s'", argv[optind]);
		else
			rc_strlist_add (&services, argv[optind]);

		rc_strlist_free (depends);
		rc_strlist_free (list);
		optind++;
	}

	if (! services) {
		rc_strlist_free (types);
		rc_deptree_free (deptree);
		free (runlevel);
		if (update)
			return (EXIT_SUCCESS);
		eerrorx ("no services specified");
	}

	/* If we don't have any types, then supply some defaults */
	if (! types) {
		rc_strlist_add (&types, "ineed");
		rc_strlist_add (&types, "iuse");
	}

	depends = rc_deptree_depends (deptree, (const char **) types,
								  (const char **) services, runlevel, options);

	if (depends) {
		STRLIST_FOREACH (depends, service, i) {
			if (first)
				first = false;
			else
				printf (" ");

			if (service)
				printf ("%s", service);

		}
		printf ("\n");
	}

	rc_strlist_free (types);
	rc_strlist_free (services);
	rc_strlist_free (depends);
	rc_deptree_free (deptree);
	free (runlevel);
	return (EXIT_SUCCESS);
}