51 lines
1,008 B
C
51 lines
1,008 B
C
/***
|
|
* The structures to commands
|
|
*/
|
|
|
|
#ifndef __COMMANDS_COMMAND_H__
|
|
#define __COMMANDS_COMMAND_H__
|
|
|
|
#include "ipfs/commands/argument.h"
|
|
//#include "ipfs/commands/request.h"
|
|
#include "command_option.h"
|
|
|
|
// forward declaration
|
|
struct Request;
|
|
|
|
struct HelpText {
|
|
char* tagline;
|
|
char* short_description;
|
|
char** synopsis_options_values;
|
|
|
|
// optional
|
|
char* usage;
|
|
char* long_description;
|
|
char* options;
|
|
char* subcommands;
|
|
char* synopsis;
|
|
};
|
|
|
|
struct Command {
|
|
struct CommandOption** options;
|
|
int option_count;
|
|
struct Argument** arguments;
|
|
int argument_count;
|
|
int (*pre_run)(struct Request*);
|
|
int (*run)(struct Request*);
|
|
int (*post_run)(struct Request*);
|
|
//struct marshaller** marshallers;
|
|
struct HelpText help_text;
|
|
|
|
// a boolean to determine if this is an external
|
|
// binary.
|
|
int external;
|
|
|
|
//struct type return_type;
|
|
char** subcommands;
|
|
};
|
|
|
|
// construction/destruction
|
|
int commands_command_init(struct Command* cmd);
|
|
int commands_command_free(struct Command* cmd);
|
|
|
|
#endif // command.h
|