summaryrefslogtreecommitdiff
path: root/src/mdso.c
blob: 3370f5800e27e8b2565bdd24df11a9114886dfae (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
/****************************************************************/
/*  mdso: midipix dso scavenger                                 */
/*  Copyright (C) 2015  Z. Gilboa                               */
/*  Released under GPLv2 and GPLv3; see COPYING.MDSO.           */
/****************************************************************/

#include <stdio.h>
#include <unistd.h>
#include <mdso/mdso.h>
#include "mdso_version.h"

#ifndef MDSO_DRIVER_FLAGS
#define MDSO_DRIVER_FLAGS	MDSO_DRIVER_VERBOSITY_ERRORS \
				| MDSO_DRIVER_VERBOSITY_USAGE
#endif

static const char vermsg[] = "%s (git://midipix.org/mdso): commit %s.\n";

static ssize_t mdso_version(struct mdso_driver_ctx * dctx)
{
	return fprintf(stdout,vermsg,dctx->program,MDSO_GIT_VERSION);
}

static void mdso_perform_unit_actions(struct mdso_unit_ctx * uctx)
{
}

static int mdso_exit(struct mdso_driver_ctx * dctx, int nerrors)
{
	mdso_free_driver_ctx(dctx);
	return nerrors ? 2 : 0;
}

int mdso_main(int argc, const char ** argv, const char ** envp)
{
	int				ret;
	struct mdso_driver_ctx *	dctx;
	struct mdso_unit_ctx *		uctx;
	const char **			unit;

	if ((ret = mdso_get_driver_ctx(argv,envp,MDSO_DRIVER_FLAGS,&dctx)))
		return (ret == MDSO_USAGE) ? !--argc : 2;

	if (dctx->cctx->drvflags & MDSO_DRIVER_VERSION)
		if ((mdso_version(dctx)) < 0)
			return mdso_exit(dctx,2);

	for (unit=dctx->units; *unit; unit++) {
		if (!(mdso_get_unit_ctx(dctx,*unit,&uctx))) {
			mdso_perform_unit_actions(uctx);
			ret += uctx->nerrors;
			mdso_free_unit_ctx(uctx);
		}
	}

	return mdso_exit(dctx,ret);
}

#ifndef MDSO_IN_A_BOX

int main(int argc, const char ** argv, const char ** envp)
{
	return mdso_main(argc,argv,envp);
}

#endif