-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathanonsymbolobj.c
111 lines (95 loc) · 3.33 KB
/
anonsymbolobj.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
/*
$Id: anonsymbolobj.c 3086 2023-09-03 06:23:08Z soci $
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.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "anonsymbolobj.h"
#include <string.h>
#include "eval.h"
#include "values.h"
#include "typeobj.h"
#include "strobj.h"
static Type obj;
Type *const ANONSYMBOL_OBJ = &obj;
Obj *new_anonsymbol(ssize_t count) {
Anonsymbol *anonsymbol = Anonsymbol(val_alloc(ANONSYMBOL_OBJ));
anonsymbol->count = count;
return Obj(anonsymbol);
}
static FAST_CALL bool same(const Obj *o1, const Obj *o2) {
const Anonsymbol *v1 = Anonsymbol(o1), *v2 = Anonsymbol(o2);
return o1->obj == o2->obj && v1->count == v2->count;
}
static MUST_CHECK Obj *hash(Obj *o1, int *hs, linepos_t UNUSED(epoint)) {
Anonsymbol *v1 = Anonsymbol(o1);
unsigned int h = v1->count < 0 ? 1U + ~(unsigned int)-v1->count : (unsigned int)v1->count;
*hs = h & ((~0U) >> 1);
return NULL;
}
static MUST_CHECK Obj *repr(Obj *o1, linepos_t UNUSED(epoint), size_t maxsize) {
Anonsymbol *v1 = Anonsymbol(o1);
Str *v;
size_t len = v1->count < 0 ? (size_t)(1 - v1->count) : ((size_t)v1->count + 2U);
if (len > maxsize) return NULL;
v = new_str2(len);
if (v == NULL) return NULL;
v->chars = len;
v->data[0] = '.';
memset(v->data + 1, (v1->count >= 0) ? '+' : '-', len - 1);
return Obj(v);
}
static MUST_CHECK Obj *str(Obj *o1, linepos_t UNUSED(epoint), size_t maxsize) {
Anonsymbol *v1 = Anonsymbol(o1);
Str *v;
size_t len = v1->count < 0 ? -(size_t)v1->count : ((size_t)v1->count + 1U);
if (len > maxsize) return NULL;
v = new_str2(len);
if (v == NULL) return NULL;
v->chars = len;
memset(v->data, (v1->count >= 0) ? '+' : '-', len);
return Obj(v);
}
static inline int icmp(oper_t op) {
const ssize_t v1 = Anonsymbol(op->v1)->count, v2 = Anonsymbol(op->v2)->count;
return (v1 > v2) ? 1 : (v1 < v2) ? -1 : 0;
}
static MUST_CHECK Obj *calc2(oper_t op) {
Obj *o2 = op->v2;
switch (o2->obj->type) {
case T_ANONSYMBOL:
return obj_oper_compare(op, icmp(op));
case T_NONE:
case T_ERROR:
return val_reference(o2);
default:
if (o2->obj->iterable && op->op != O_MEMBER && op->op != O_X) {
return o2->obj->rcalc2(op);
}
break;
}
return obj_oper_error(op);
}
static MUST_CHECK Obj *rcalc2(oper_t op) {
if (op->op == O_MEMBER) {
return op->v1->obj->calc2(op);
}
return obj_oper_error(op);
}
void anonsymbolobj_init(void) {
Type *type = new_type(&obj, T_ANONSYMBOL, "anonsymbol", sizeof(Anonsymbol));
type->same = same;
type->hash = hash;
type->repr = repr;
type->str = str;
type->calc2 = calc2;
type->rcalc2 = rcalc2;
}