forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort.c
224 lines (187 loc) · 5.35 KB
/
sort.c
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
/**
* @file
* Type representing a sort option
*
* @authors
* Copyright (C) 2017-2018 Richard Russon <[email protected]>
*
* @copyright
* 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, see <http://www.gnu.org/licenses/>.
*/
/**
* @page config_sort Type: Sorting
*
* Config type representing a sort option.
*
* - Backed by `short`
* - Validator is passed `short`
* - Implementation: #CstSort
*/
#include "config.h"
#include <stdint.h>
#include <string.h>
#include "mutt/lib.h"
#include "set.h"
#include "sort2.h"
#include "types.h"
#define PREFIX_REVERSE "reverse-"
#define PREFIX_LAST "last-"
/**
* sort_string_set - Set a Sort by string - Implements ConfigSetType::string_set() - @ingroup cfg_type_string_set
*/
static int sort_string_set(const struct ConfigSet *cs, void *var, struct ConfigDef *cdef,
const char *value, struct Buffer *err)
{
intptr_t id = -1;
uint16_t flags = 0;
if (!value || (value[0] == '\0'))
{
mutt_buffer_printf(err, _("Option %s may not be empty"), cdef->name);
return CSR_ERR_INVALID | CSR_INV_TYPE;
}
size_t plen = 0;
if (cdef->type & DT_SORT_REVERSE)
{
plen = mutt_str_startswith(value, PREFIX_REVERSE);
if (plen != 0)
{
flags |= SORT_REVERSE;
value += plen;
}
}
if (cdef->type & DT_SORT_LAST)
{
plen = mutt_str_startswith(value, PREFIX_LAST);
if (plen != 0)
{
flags |= SORT_LAST;
value += plen;
}
}
id = mutt_map_get_value(value, (struct Mapping *) cdef->data);
if (id < 0)
{
mutt_buffer_printf(err, _("Invalid sort name: %s"), value);
return CSR_ERR_INVALID | CSR_INV_TYPE;
}
id |= flags;
if (var)
{
if (id == (*(short *) var))
return CSR_SUCCESS | CSR_SUC_NO_CHANGE;
if (cdef->validator)
{
int rc = cdef->validator(cs, cdef, (intptr_t) id, err);
if (CSR_RESULT(rc) != CSR_SUCCESS)
return rc | CSR_INV_VALIDATOR;
}
*(short *) var = id;
}
else
{
cdef->initial = id;
}
return CSR_SUCCESS;
}
/**
* sort_string_get - Get a Sort as a string - Implements ConfigSetType::string_get() - @ingroup cfg_type_string_get
*/
static int sort_string_get(const struct ConfigSet *cs, void *var,
const struct ConfigDef *cdef, struct Buffer *result)
{
int sort;
if (var)
sort = *(short *) var;
else
sort = (int) cdef->initial;
if (sort & SORT_REVERSE)
mutt_buffer_addstr(result, PREFIX_REVERSE);
if (sort & SORT_LAST)
mutt_buffer_addstr(result, PREFIX_LAST);
sort &= SORT_MASK;
const char *str = NULL;
str = mutt_map_get_name(sort, (struct Mapping *) cdef->data);
if (!str)
{
mutt_debug(LL_DEBUG1, "Variable has an invalid value: %d/%d\n",
cdef->type & DT_SUBTYPE_MASK, sort);
return CSR_ERR_INVALID | CSR_INV_TYPE;
}
mutt_buffer_addstr(result, str);
return CSR_SUCCESS;
}
/**
* sort_native_set - Set a Sort config item by int - Implements ConfigSetType::native_set() - @ingroup cfg_type_native_set
*/
static int sort_native_set(const struct ConfigSet *cs, void *var,
const struct ConfigDef *cdef, intptr_t value, struct Buffer *err)
{
const char *str = NULL;
str = mutt_map_get_name((value & SORT_MASK), (struct Mapping *) cdef->data);
if (!str)
{
mutt_buffer_printf(err, _("Invalid sort type: %ld"), value);
return CSR_ERR_INVALID | CSR_INV_TYPE;
}
if (value == (*(short *) var))
return CSR_SUCCESS | CSR_SUC_NO_CHANGE;
if (cdef->validator)
{
int rc = cdef->validator(cs, cdef, value, err);
if (CSR_RESULT(rc) != CSR_SUCCESS)
return rc | CSR_INV_VALIDATOR;
}
*(short *) var = value;
return CSR_SUCCESS;
}
/**
* sort_native_get - Get an int from a Sort config item - Implements ConfigSetType::native_get() - @ingroup cfg_type_native_get
*/
static intptr_t sort_native_get(const struct ConfigSet *cs, void *var,
const struct ConfigDef *cdef, struct Buffer *err)
{
return *(short *) var;
}
/**
* sort_reset - Reset a Sort to its initial value - Implements ConfigSetType::reset() - @ingroup cfg_type_reset
*/
static int sort_reset(const struct ConfigSet *cs, void *var,
const struct ConfigDef *cdef, struct Buffer *err)
{
if (cdef->initial == (*(short *) var))
return CSR_SUCCESS | CSR_SUC_NO_CHANGE;
if (cdef->validator)
{
int rc = cdef->validator(cs, cdef, cdef->initial, err);
if (CSR_RESULT(rc) != CSR_SUCCESS)
return rc | CSR_INV_VALIDATOR;
}
*(short *) var = cdef->initial;
return CSR_SUCCESS;
}
/**
* CstSort - Config type representing a sort option
*/
const struct ConfigSetType CstSort = {
DT_SORT,
"sort",
sort_string_set,
sort_string_get,
sort_native_set,
sort_native_get,
NULL, // string_plus_equals
NULL, // string_minus_equals
sort_reset,
NULL, // destroy
};