-
Notifications
You must be signed in to change notification settings - Fork 0
/
tdl.h
188 lines (153 loc) · 5.39 KB
/
tdl.h
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
/*
$Header: /cvs/src/tdl/tdl.h,v 1.22.2.1 2004/01/07 00:09:05 richard Exp $
tdl - A console program for managing to-do lists
Copyright (C) 2001-2004 Richard P. Curnow
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifndef TDL_H
#define TDL_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <limits.h>
enum Priority {
PRI_UNKNOWN = 0,
PRI_VERYLOW = 1,
PRI_LOW = 2,
PRI_NORMAL = 3,
PRI_HIGH = 4,
PRI_URGENT = 5
};
/* Magic time_t value used in the 'done' field to signify an ignored item */
#define IGNORED_TIME 1
#define POSTPONED_TIME LONG_MAX
struct node;
struct links {
struct node *next;
struct node *prev;
};
struct node {
struct links chain;
struct links kids;
char *text;
struct node *parent;
enum Priority priority;
long arrived;
long required_by;
long done;
char *scratch; /* For functions to attach stuff to nodes */
int iscratch; /* More scratch space */
int idx; /* Keep your number, even after having been sorted. */
char flag;
};
extern struct links top;
/* Memory macros */
#define new_string(s) strcpy((char *) malloc(1+strlen(s)), (s))
#define extend_string(x,s) (strcat(realloc(x, (strlen(x)+strlen(s)+1)), s))
#define new(T) (T *) malloc(sizeof(T))
#define new_array(T, n) (T *) malloc(sizeof(T) * (n))
#define grow_array(T, n, oldX) (T *) ((oldX) ? realloc(oldX, (sizeof(T) * (n))) : malloc(sizeof(T) * (n)))
typedef char** (*Completer)(char *, int);
/* Command table (shared between dispatcher and readline completer) */
struct command {/*{{{*/
char *name; /* add, remove etc */
char *shortcut; /* tdla etc */
int (*func)(char **); /* ptr to function that actually does the work for this cmd */
char *descrip; /* One line description */
char *synopsis; /* Description of parameters */
char ** (*completer)(char *, int); /* Function to generate completions */
unsigned char dirty; /* 1 if operation can dirty the database, 0 if it leaves it clean */
unsigned char load_db; /* 1 if cmd requires current database to be loaded first */
unsigned char matchlen; /* number of characters to make command unambiguous */
unsigned char interactive_ok; /* 1 if OK to use interactively. */
unsigned char non_interactive_ok; /* 1 if OK to use from command line */
};
/*}}}*/
extern struct command cmds[];
extern int n_cmds;
/* Function prototypes. */
/* In io.c */
int read_database(FILE *in, struct links *to);
void write_database(FILE *out, struct links *from);
struct node *new_node(void);
void append_node(struct node *n, struct links *l);
void append_child(struct node *child, struct node *parent);
void clear_flags(struct links *x);
int has_kids(struct node *x);
/* In list.c */
void do_indent(int indent);
void do_bullet_indent(int indent);
int process_list(char **x);
/* In report.c */
int process_report(char **x);
long read_interval(char *xx);
/* In util.c */
int count_args(char **x);
int include_descendents(char *x);
struct node *lookup_node(char *path, int allow_zero_index, struct node **parent);
enum Priority parse_priority(char *priority, int *error);
void clear_flags(struct links *x);
void mark_all_descendents(struct node *n);
int has_kids(struct node *x);
struct node *new_node(void);
void free_node(struct node *x);
void append_node(struct node *n, struct links *l);
void prepend_node(struct node *n, struct links *l);
void prepend_child(struct node *child, struct node *parent);
/* In done.c */
int has_open_child(struct node *y);
int process_done(char **x);
int process_ignore(char **x);
int process_undo(char **x);
/* In add.c */
int process_add(char **x);
int process_log(char **x);
int process_edit(char **x);
int process_postpone(char **x);
int process_open(char **x);
int process_defer(char **x);
/* In remove.c */
int process_remove(char **x);
/* In purge.c */
int process_purge(char **x);
/* In move.c */
int process_above(char **x);
int process_below(char **x);
int process_into(char **x);
/* In impexp.c */
int process_export(char **x);
int process_import(char **x);
int process_clone(char **x);
int process_copyto(char **x);
/* In dates.c */
time_t parse_date(char *d, time_t ref, int default_positive, int *error);
/* In main.c */
void dispatch(char **argv);
void free_database(struct links *x);
void load_database_if_not_loaded(void);
/* In inter.c */
void interactive(void);
char *interactive_text(char *prompt, char *initval, int *is_blank, int *error);
char **complete_help(char *, int);
char **complete_list(char *, int);
char **complete_priority(char *, int);
char **complete_postpone(char *, int);
char **complete_open(char *, int);
char **complete_done(char *, int);
/* In narrow.c */
struct node *get_narrow_top(void);
char *get_narrow_prefix(void);
int process_narrow(char **x);
int process_widen(char **x);
#endif /* TDL_H */