aboutsummaryrefslogblamecommitdiffstats
path: root/src/actions.h
blob: e462e74c8eba3a97792a16144d0f0a646a1f9111 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                


                                             
                                                                                
  

                                          
  




                                                                                


                 
                   







                                                 
                                                 



                                              









                                    
                       



                
 



                                

          















                                        
                      
/* 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)
 *
 * -----------------------------------------------------------------------------
 *
 *
 *
 * -------------------------------------------------------------------------- */
#ifndef ACTIONS_H
#define ACTIONS_H

#include "ckutil.h"
#include "actionparser.h"
#include "confparser.h"

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

#define X(ACTION)                               \
  extern void print_##ACTION##_result(int ok);
CK_ACTIONS
#undef X

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

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

typedef enum ListTypes ListType;
enum ListTypes {
  LT_PATH,
  LT_PROGRAM,
  LT_TREE,
  LT_NONE,
};

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

typedef struct ListOptions ListOpt;
struct ListOptions {
  ListType _lt;
  ListShowType _lst;
  int err;
};

#endif /* ACTIONS_H */