-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuffer.lua
195 lines (177 loc) · 4.97 KB
/
buffer.lua
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
-- 'buffer' metatable:
__buffmetatable__ = {
__concat = function(a, b)
return tobuffer(tostring(a) .. tostring(b))
end,
__len = function(self)
return #self.__buff__
end,
__eq = function(a, b)
return isbuffer(a) and isbuffer(b) and a.__buff__ == b.__buff__
end,
__index = function(self, k)
-- Mimic string behavior: return the character at position k if k is a number
if type(k) == 'number' then
return string.sub(self.__buff__, k, k) -- return a string
elseif type(k) == 'string' then
-- Allow access to string methods, e.g., bufferObj:find(...)
local strFunc = string[k]
if strFunc and type(strFunc) == 'function' then
-- Return a function that, when called, applies the string function to the buffer's content
return function(_, ...)
return strFunc(self.__buff__, ...) -- return a string
end
end
end
-- Optional: handle other keys or throw an error
error('attempt to index a buffer value with an unsupported key')
end,
__newindex = function(self, k)
error('attempt to modify a buffer value')
end,
__tostring = function(self)
return self.__buff__
end,
__tocbor = function(self)
return cbor.TYPE.BIN(self.__buff__)
end,
newobj = function(txt)
if __buffmetatable__.isinstance(txt) then return txt end
return setmetatable({__buff__ = tostring(txt)}, __buffmetatable__)
end,
isinstance = function(obj)
return getmetatable(obj) == __buffmetatable__
end,
}
-- 'buffer' interface:
function isbuffer(obj)
if auxFunc('useBuffers') then
return __buffmetatable__.isinstance(obj)
else
sim.addLog(sim.verbosity_warnings, 'called isbuffer() with useBuffers = false')
end
end
function tobuffer(txt)
if auxFunc('useBuffers') then
return __buffmetatable__.newobj(txt)
else
return tostring(txt)
end
end
-- 'buffer' integration with common functions:
tonumber = wrap(tonumber, function(origFunc)
return function(s)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s)
end
end)
string.byte = wrap(string.byte, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.sub = wrap(string.sub, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.gsub = wrap(string.gsub, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.match = wrap(string.match, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.gmatch = wrap(string.gmatch, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.find = wrap(string.find, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.len = wrap(string.len, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.rep = wrap(string.rep, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.reverse = wrap(string.reverse, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.upper = wrap(string.upper, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
string.lower = wrap(string.lower, function(origFunc)
return function(s, ...)
if isbuffer(s) then
s = tostring(s)
end
return origFunc(s, ...)
end
end)
require = wrap(require, function(origRequire)
return function(...)
local arg = ({...})[1]
local first = not package.loaded[arg]
local ret = {origRequire(...)}
if first and arg == 'org.conman.cbor' then
(function(cbor)
cbor.decode = wrap(cbor.decode, function(origFunc)
return function(b, ...)
if isbuffer(b) then
b = tostring(b)
end
return origFunc(b, ...)
end
end)
end)(ret[1])
end
return table.unpack(ret)
end
end)