aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
blob: 0a8f41223019be44551d3667cac08b2352382298 (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
#ifndef COMMAND_H
#define COMMAND_H

#include <stdio.h>
#include "common.h"

/*
 * the current command system polecat uses is simple and depends on
 * int (*)(int, char**) function pointers, exactly the same as main
 * because keeping track of all of those is rather tedious making 
 * macros was an easier solution to get rid of the redundancy
 * for the sake of less readability.
 * argc and argv are marked as UNUSED (defined in common.h)
 * because the functions defined using this macro might not
 * actually use either of them so this is required to
 * supress warnings
 */
#define COMMAND(GROUP, COMMAND) \
    int GROUP##_##COMMAND(UNUSED int argc, UNUSED char** argv)


/*
 * all help functions in polecat look the same invoking the print_help
 * helper function defined in common.c with the command groups list
 * of available commands.
 * This also exists to reduce redundancy. 
 */
#define COMMAND_HELP(GROUP, MSG) \
    COMMAND(GROUP, help) \
    { \
        fprintf(stderr, USAGE_STR MSG " <command>\n"); \
        print_help(GROUP##_commands, ARRAY_LEN(GROUP##_commands), GROUP##_flags, ARRAY_LEN(GROUP##_flags)); \
        return 0; \
    }

/*
 * This is the same as the COMMAND macro except dedicated to the actual
 * command group name, which is the thing called from the actual main
 * function. 
 */
#define COMMAND_GROUP(GROUP) \
    int GROUP(int argc, char** argv)


/*
 * the body is split up so we can construct our own group function for
 * e.g. ARGV0 parsing
 */
#define COMMAND_GROUP_BODY(GROUP) \
    if (argc > 1) \
    { \
        for (unsigned long i = 0; i < ARRAY_LEN(GROUP##_commands); ++i) \
            if (!strcmp(GROUP##_commands[i].name, argv[1])) return GROUP##_commands[i].func(argc-1, argv+1); \
        \
        for (int j = 1; j < argc; ++j) \
        { \
            if (argv[j][0] != '-') continue; \
            \
            for (unsigned long i = 0; i < ARRAY_LEN(GROUP##_flags); ++i) \
            { \
                if ((GROUP##_flags[i].variant & ONE && argv[j][1] == GROUP##_flags[i].name[0]) || \
                    (GROUP##_flags[i].variant & TWO && argv[j][1] == '-' \
                     && !strcmp(GROUP##_flags[i].name, argv[j]+2))) \
                { \
                  return GROUP##_flags[i].func(0, NULL); \
                } \
            } \
        } \
        \
        fprintf(stderr, NAME ": '%s' is not a command or flag\n", argv[1]); \
        return 0; \
    } \
    return GROUP##_help(argc-1, argv+1);

/*
 * the main command group function is only suppose to find given command
 * by the name and then invoke it.
 *
 * If the desired command is not found we should tell the user that.
 *
 * If no command is provided we should just print the list of commands by
 * calling the groups help command.
 */
#define COMMAND_GROUP_FUNC(GROUP) \
    COMMAND_GROUP(GROUP) \
    { \
        COMMAND_GROUP_BODY(GROUP) \
    } \


#endif