aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds-kbdc/functions.c
blob: 0d608f11a014093f5d3ad382ba67348d0f37fac9 (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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
/**
 * mds — A micro-display server
 * Copyright © 2014  Mattias Andrée (maandree@member.fsf.org)
 * 
 * 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 3 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/>.
 */
#include "functions.h"

#include <stdlib.h>



/**
 * Define useful data for built-in function with 2 parameters.
 */
#define define_2						\
  const char32_t* restrict a = va_arg(args, const char32_t*);	\
  const char32_t* restrict b = va_arg(args, const char32_t*);	\
  size_t an = string_length(a);					\
  size_t bn = string_length(b);					\
  size_t i, n = an > bn ? an : bn;				\
  char32_t* restrict rc = malloc((n + 1) * sizeof(char32_t));	\
  if (rc == NULL)						\
    return NULL;						\
  rc[n] = -1

/**
 * Define useful data for built-in function with 1 parameter.
 */
#define define_1						\
  const char32_t* restrict a = va_arg(args, const char32_t*);	\
  size_t i, n = string_length(a);				\
  char32_t* restrict rc = malloc((n + 1) * sizeof(char32_t));	\
  if (rc == NULL)						\
    return NULL;						\
  rc[n] = -1


/**
 * Definition of the built-in function add/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_add_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] + b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function sub/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_sub_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] - b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function mul/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_mul_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] * b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function div/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_div_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] / b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function mod/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_mod_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] % b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function rsh/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_rsh_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] << b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function lsh/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_lsh_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] >> b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function or/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_or_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] | b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function and/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_and_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] & b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function xor/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_xor_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] ^ b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function not/1.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_not_1(va_list args)
{
  define_1;
  for (i = 0; i < n; i++)
    rc[i] = !a[i];
  return rc;
}


/**
 * Definition of the built-in function equals/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_equals_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] == b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function greater/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_greater_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] > b[i % bn];
  return rc;
}


/**
 * Definition of the built-in function less/2.
 * 
 * @param   args  The arguments passed to the function.
 * @return        The return value of the function, `NULL` on error.
 */
static char32_t* function_builtin_less_2(va_list args)
{
  define_2;
  for (i = 0; i < n; i++)
    rc[i] = a[i % an] < b[i % bn];
  return rc;
}


/* static char32_t* function_builtin_set_2(va_list args);  (variable index value) */
/* static char32_t* function_builtin_get_2(va_list args);  (variable index) */


#undef define_1
#undef define_2


/**
 * Check whether a function is defined.
 * 
 * @param   name       The name of the function.
 * @param   arg_count  The number of arguments to pass to the function.
 * @return             Whether the function is defined for the selected number of arguments.
 */
int function_check_defined(const char32_t* restrict name, size_t arg_count)
{
  return 0; /* TODO */
}


/**
 * Invoke a function defined in the keyboard layout source code, or that is builtin.
 * 
 * @param   name           The name of the function.
 * @param   arg_count      The number of arguments to pass to the function.
 * @param   ...:char32_t*  The arguments to pass, do not end with a sentinel.
 * @return                 The return value of the function, `NULL` on error.
 */
char32_t* function_invoke(const char32_t* restrict name, size_t arg_count, ...)
{
  return NULL; /* TODO */
}