aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions.h
blob: 4550d4ceddc49e9361f25c707b65dcae61744c56 (plain) (blame)
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
/* actions.h - ck actions ----------------------------------------------*- C -*-
 *
 * This file is part of ck, the config keeper
 *
 * -----------------------------------------------------------------------------
 *
 * Copyright (C) 2018  Anastasis Grammenos
 * GPLv3 (see LICENCE for the full notice)
 *
 * -----------------------------------------------------------------------------
 *
 * The various structs actions use to keep track of their
 * specific options and the run_ACTION routines.
 *
 * -------------------------------------------------------------------------- */
#ifndef ACTIONS_H
#define ACTIONS_H

#include "ckutil.h"
#include "clparser.h"
#include "confparser.h"

#define X(ACTION, MIN, MAX)                               \
  int run_##ACTION(UserOpt *, Conf *);
CK_ACTIONS
#undef X

enum AddOptErrors {
  ADD_NO_ERR = 0,
  ADD_ERR_WRONG_CONFIG,
  ADD_ERR_WRONG_FLAGS
};
typedef enum AddOptErrors AddOptErr;

typedef struct AddOptions AddOpt;
struct AddOptions {
  char *progName;
  char confPath[STR_L];
  int secret;
  int prime;
  AddOptErr err;
};

enum ListTypes {
  LT_PATH,
  LT_PROGRAM,
  LT_TREE,
  LT_CKCONF,
  LT_PROG_CONFS
};
typedef enum ListTypes ListType;

enum ListShowTypes {
   LST_PLAIN,
   LST_LISP,
   LST_PYTHON,
};
typedef enum ListShowTypes ListShowType;

typedef struct ListOptions ListOpt;
struct ListOptions {
  ListType _lt;
  ListShowType _lst;
  char *pName;
  int attr;
  int bName;
  int err;
};

/* init.c */
int init_create_config_file(UserOpt *opt);

/* add.c */
AddOpt add_make_options(cklist *args);
void add_print_opts(AddOpt *opt);
int add_make_link(const AddOpt *opt, const Conf *conf);

/* list.c */
ListOpt list_make_options(cklist *args);

/* restore.c */
int restore_make_links(cklist *from, cklist *to);

/************************/
/* PRINT RESULTS & HELP */
/************************/
#define X(ACTION, MIN, MAX)                        \
  void print_##ACTION##_help(void);
CK_ACTIONS
#undef X

void print_conf_help(void);
void print_verbose_help(void);

#endif /* ACTIONS_H */