-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathbigint_js.mbt
387 lines (338 loc) · 8.8 KB
/
bigint_js.mbt
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
// Copyright 2025 International Digital Economy Academy
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///|
extern type BigInt
///|
pub fn BigInt::from_string(str : String) -> BigInt {
if str.length() == 0 {
abort("empty string")
}
BigInt::js_from_string(str)
}
///|
extern "js" fn BigInt::js_from_string(str : String) -> BigInt =
#|(x) => BigInt(x)
///|
pub impl Show for BigInt with output(self, logger) {
logger.write_string(self.to_string())
}
///|
pub extern "js" fn BigInt::to_string(self : BigInt) -> String =
#|(x) => String(x)
///|
pub extern "js" fn BigInt::from_hex(str : String) -> BigInt =
#|(x) => x.startsWith('-') ? -BigInt(`0x${x.slice(1)}`) : BigInt(`0x${x}`)
///|
pub extern "js" fn BigInt::to_hex(
self : BigInt,
uppercase~ : Bool = true
) -> String =
#|(x, uppercase) => {
#| const r = x.toString(16);
#| return uppercase ? r.toUpperCase() : r;
#|}
///|
extern "js" fn hex2(b : Byte) -> String =
#|(x) => x.toString(16).padStart(2, '0')
///|
pub fn BigInt::from_octets(octets : Bytes, signum~ : Int = 1) -> BigInt {
if signum < 0 {
return -1N * BigInt::from_octets(octets, signum=1)
}
if signum == 0 {
return 0N
}
let str = StringBuilder::new()
str.write_string("0x")
for octet in octets {
str.write_string(hex2(octet))
}
BigInt::from_string(str.to_string())
}
///|
pub fn BigInt::to_octets(self : BigInt, length? : Int) -> Bytes {
if self < 0 {
abort("negative BigInt")
}
if self == 0 {
return match length {
Some(len) => Bytes::make(len, 0)
None => [0]
}
}
let buf = []
loop self {
v =>
if v > 0 {
buf.push(v.to_byte())
continue v >> 8
}
}
let buf_len = buf.length()
match length {
Some(len) => {
if len <= 0 {
abort("negative length")
}
if len > buf_len {
Bytes::makei(len, fn(i) {
let padding = len - buf_len
if i < padding {
0
} else {
buf[buf_len - (i - padding) - 1]
}
})
} else {
Bytes::makei(buf_len, fn(i) { buf[buf_len - i - 1] })
}
}
None => Bytes::makei(buf_len, fn(i) { buf[buf_len - i - 1] })
}
}
///|
extern "js" fn BigInt::compare(self : BigInt, other : BigInt) -> Int =
#|(x, y) => x < y ? -1 : x > y ? 1 : 0
///|
pub impl Compare for BigInt with compare(self, other) {
self.compare(other)
}
///|
extern "js" fn BigInt::equal(self : BigInt, other : BigInt) -> Bool =
#|(x, y) => x === y
///|
pub impl Eq for BigInt with op_equal(self, other) {
self.equal(other)
}
///|
pub extern "js" fn BigInt::from_int(x : Int) -> BigInt =
#|(x) => BigInt(x)
///|
pub extern "js" fn BigInt::from_uint(x : UInt) -> BigInt =
#|(x) => BigInt(x >>> 0)
///|
pub extern "js" fn BigInt::from_int64(x : Int64) -> BigInt =
#|(x) => BigInt(x.hi) * 0x100000000n + BigInt(x.lo >>> 0)
///|
pub extern "js" fn BigInt::from_uint64(x : UInt64) -> BigInt =
#|(x) => BigInt(x.hi >>> 0) * 0x100000000n + BigInt(x.lo >>> 0)
///|
pub extern "js" fn BigInt::is_zero(self : BigInt) -> Bool =
#|(x) => x === 0n
///|
extern "js" fn BigInt::op_neg_ffi(self : BigInt) -> BigInt =
#|(x) => -x
///|
pub impl Neg for BigInt with op_neg(self) {
self.op_neg_ffi()
}
///|
extern "js" fn BigInt::op_add_ffi(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x + y
///|
pub impl Add for BigInt with op_add(self, other) {
self.op_add_ffi(other)
}
///|
extern "js" fn BigInt::op_sub_ffi(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x - y
///|
pub impl Sub for BigInt with op_sub(self, other) {
self.op_sub_ffi(other)
}
///|
extern "js" fn BigInt::op_mul_ffi(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x * y
///|
pub impl Mul for BigInt with op_mul(self, other) {
self.op_mul_ffi(other)
}
///|
extern "js" fn BigInt::op_div_ffi(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x / y
///|
pub impl Div for BigInt with op_div(self, other) {
self.op_div_ffi(other)
}
///|
extern "js" fn BigInt::op_mod_ffi(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x % y
///|
pub impl Mod for BigInt with op_mod(self, other) {
self.op_mod_ffi(other)
}
///|
extern "js" fn BigInt::modpow_ffi(
self : BigInt,
exponent : BigInt,
modulus : BigInt
) -> BigInt =
#|(x, y, z) => x ** y % z
///|
extern "js" fn BigInt::pow_ffi(self : BigInt, exponent : BigInt) -> BigInt =
#|(x, y) => x ** y
///|
pub fn BigInt::pow(
self : BigInt,
exponent : BigInt,
modulus? : BigInt
) -> BigInt {
if exponent < 0 {
abort("negative exponent")
}
match modulus {
Some(modulus) =>
if modulus <= 0 {
abort("non-positive modulus")
} else {
self.modpow_ffi(exponent, modulus)
}
None => self.pow_ffi(exponent)
}
}
///|
extern "js" fn BigInt::to_byte(self : BigInt) -> Byte =
#|(x) => Number(BigInt.asUintN(8, x)) | 0
///|
pub impl Shl for BigInt with op_shl(self : BigInt, n : Int) -> BigInt {
if n < 0 {
abort("negative shift count")
}
self.js_shl(n)
}
///|
pub impl Shr for BigInt with op_shr(self : BigInt, n : Int) -> BigInt {
if n < 0 {
abort("negative shift count")
}
self.js_shr(n)
}
///|
extern "js" fn BigInt::js_shl(self : BigInt, other : Int) -> BigInt =
#|(x, y) => x << BigInt(y)
///|
extern "js" fn BigInt::js_shr(self : BigInt, other : Int) -> BigInt =
#|(x, y) => x >> BigInt(y)
///|
extern "js" fn BigInt::js_land(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x & y
///|
pub impl BitAnd for BigInt with land(self, other) {
self.js_land(other)
}
///|
extern "js" fn BigInt::js_lor(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x | y
///|
pub impl BitOr for BigInt with lor(self, other) {
self.js_lor(other)
}
///|
extern "js" fn BigInt::js_lxor(self : BigInt, other : BigInt) -> BigInt =
#|(x, y) => x ^ y
///|
pub impl BitXOr for BigInt with lxor(self, other) {
self.js_lxor(other)
}
///|
/// Converts a `BigInt` to an unsigned 32-bit integer (`UInt`).
///
/// Parameters:
///
/// * `self` : The `BigInt` value to be converted.
///
/// Returns a `UInt` value representing the lower 32 bits of the input `BigInt`.
///
/// Example:
///
/// ```moonbit
/// test "BigInt::to_uint" {
/// let n = 42N
/// inspect!(n.to_uint(), content="42")
/// let neg = -1N
/// inspect!(neg.to_uint(), content="4294967295") // 2^32 - 1
/// }
/// ```
pub extern "js" fn BigInt::to_uint(self : BigInt) -> UInt =
#|(x) => Number(BigInt.asUintN(32, x))
///|
/// Converts a `BigInt` to a 32-bit signed integer (`Int`).
///
/// Parameters:
///
/// * `self` : The `BigInt` value to be converted.
///
/// Returns a 32-bit signed integer representing the lower 32 bits of the input
/// `BigInt`.
///
/// Example:
///
/// ```moonbit
/// test "BigInt::to_int" {
/// let big = 2147483648N // 2^31
/// inspect!(big.to_int(), content="-2147483648") // Overflow to Int.min_value
/// }
/// ```
pub extern "js" fn BigInt::to_int(self : BigInt) -> Int =
#|(x) => Number(BigInt.asIntN(32, x))
///|
/// Converts a `BigInt` to an unsigned 64-bit integer (`UInt64`).
///
/// Parameters:
///
/// * `self` : The `BigInt` value to be converted.
///
/// Returns a `UInt64` value representing the lower 64 bits of the input
/// `BigInt`.
///
/// Example:
///
/// ```moonbit
/// test "BigInt::to_uint64" {
/// let n = 12345678901234567890N
/// inspect!(n.to_uint64(), content="12345678901234567890")
/// let neg = -1N
/// inspect!(neg.to_uint64(), content="18446744073709551615") // 2^64 - 1
/// }
/// ```
pub fn BigInt::to_uint64(self : BigInt) -> UInt64 {
let hi = (self >> 32).to_uint().reinterpret_as_int()
let lo = self.to_uint().reinterpret_as_int()
MyInt64::{ hi, lo }.to_uint64()
}
///|
/// Converts a `BigInt` to a signed 64-bit integer (`Int64`).
///
/// Parameters:
///
/// * `value` : The `BigInt` value to be converted.
///
/// Returns a 64-bit signed integer (`Int64`) representing the lower 64 bits of
/// the input `BigInt`.
///
/// Example:
///
/// ```moonbit
/// test "BigInt::to_int64" {
/// let big = 9223372036854775807N // max value of Int64
/// inspect!(big.to_int64(), content="9223372036854775807")
/// let bigger = big + 1
/// inspect!(bigger.to_int64(), content="-9223372036854775808") // Overflow to Int64.min_value
/// }
/// ```
pub fn BigInt::to_int64(self : BigInt) -> Int64 {
let hi = (self >> 32).to_int()
let lo = self.to_uint().reinterpret_as_int()
MyInt64::{ hi, lo }.to_int64()
}