summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 7cc52235f2dfb29bd291fee585b7d719ee662d5e (plain)
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
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
#![warn(missing_docs)]
//! This top level package provides necessary functions for Emacs to
//! call.

extern crate chain;
extern crate grammar;

use chain::{atom::DefaultAtom, default::DefaultChain, Chain};
use grammar::Grammar;

// For printing forests
use chain::item::{default::DefaultForest, ForestLabel};
use grammar::GrammarLabel;
use graph::LabelGraph;

/// This struct is the representation of a parser.
///
/// When the user constructs a parser, an instance of this struct will
/// be constructed and the user will receive an opaque pointer to this
/// struct.
#[derive(Debug, Clone)]
#[repr(C)]
pub struct Parser {
    chain: DefaultChain,
}

impl Parser {
    /// Construct a parser from the grammar string.
    ///
    /// The grammar is supposed to conform to the Augmented
    /// Backus-Naur Format.  See RFC 5234 for exact details of this
    /// format.
    pub fn new(s: &str) -> Result<Self, String> {
        let grammar: Grammar = s.parse().map_err(|err| format!("{err}"))?;

        println!("grammar: {grammar}");

        let atom: DefaultAtom =
            DefaultAtom::from_grammar(grammar).map_err(|err| format!("{err}"))?;

        DefaultChain::unit(atom)
            .map_err(|err| format!("{err}"))
            .map(|chain| Self { chain })
    }
}

/// Actual function that is called through C ABI.
///
/// The parameter `ERROR_LEN` is supposed to point to an integer,
/// which will be set to the length of the error message, if and only
/// if an error occurs, in which case the `ERROR_STR` will be set to
/// point to the actual error message.
///
/// It is expected that `*ERROR_STR` should hold the value `NULL` .
#[no_mangle]
extern "C" fn new_parser(
    grammar_string: *mut std::os::raw::c_char,
    error_vec: *mut LenVec<std::os::raw::c_char>,
) -> *mut Parser {
    let parsed_str;

    let error_len = unsafe { (*error_vec).len };
    let error_cap = unsafe { (*error_vec).capacity };

    unsafe {
        match std::ffi::CStr::from_ptr(grammar_string).to_str() {
            Ok(ccstr) => {
                parsed_str = ccstr.to_string();
            }
            Err(e) => {
                let mut e_string = format!("error: {e}");

                let e_string_len_slice = e_string.len().to_be_bytes();
                let e_string_cap_slice = e_string.capacity().to_be_bytes();

                for i in 0..8 {
                    *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                    *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                }

                (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;

                std::mem::forget(e_string);

                return std::ptr::null_mut();
            }
        }
    }

    match Parser::new(&parsed_str) {
        Ok(result) => unsafe {
            for i in 0..8 {
                *(error_len.add(i)) = 0;
            }

            Box::into_raw(Box::new(result))
        },
        Err(e) => unsafe {
            let mut e_string = format!("error: {e}");

            let e_string_len_slice = e_string.len().to_be_bytes();
            let e_string_cap_slice = e_string.capacity().to_be_bytes();

            for i in 0..8 {
                *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
            }

            (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;

            std::mem::forget(e_string);

            std::ptr::null_mut()
        },
    }
}

#[no_mangle]
extern "C" fn clean_parser(parser: *const std::ffi::c_void) {
    unsafe {
        drop(Box::from_raw(parser as *mut Parser));
    }
}

/// To make it easier to pass arrays to and from C.
#[repr(C)]
pub struct LenVec<T> {
    /// This must be an array of unsigned char of length 8.
    ///
    /// A less length leads to access to invalid memory location,
    /// while a longer length will be ignored, possibly leading to
    /// wrong length.
    ///
    /// The length will be interpreted as a 64-bits integer stored in
    /// big endian format.
    pub len: *mut std::os::raw::c_uchar,
    /// This must be an array of unsigned chars of length 8.
    ///
    /// This is only used so that Rust knows how to reconstruct the
    /// data from C, in order for Rust to deallocate the objects
    /// exposed by this library.
    pub capacity: *mut std::os::raw::c_uchar,
    /// The actual pointer to the data.
    ///
    /// In case this should be set by the function on the Rust end,
    /// this field should be `NULL`.
    pub data: *mut T,
}

#[no_mangle]
extern "C" fn clean_signed(vec: *mut LenVec<std::os::raw::c_char>, flag: std::os::raw::c_uchar) {
    let len = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*vec).len, 8) }
            .try_into()
            .unwrap(),
    );
    let capacity = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*vec).capacity, 8) }
            .try_into()
            .unwrap(),
    );

    if (flag & 1) != 0 {
        drop(unsafe { Vec::from_raw_parts((*vec).len, 8, 8) });
    }

    if (flag & 2) != 0 {
        drop(unsafe { Vec::from_raw_parts((*vec).capacity, 8, 8) });
    }

    if (flag & 4) != 0 {
        drop(unsafe { String::from_raw_parts((*vec).data as *mut u8, len, capacity) });
    }

    if (flag & 8) != 0 {
        drop(unsafe { Box::from_raw(vec) });
    }
}

#[no_mangle]
extern "C" fn clean_unsigned(vec: *mut LenVec<std::os::raw::c_uchar>, flag: std::os::raw::c_uchar) {
    let len = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*vec).len, 8) }
            .try_into()
            .unwrap(),
    );
    let capacity = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*vec).capacity, 8) }
            .try_into()
            .unwrap(),
    );

    if (flag & 1) != 0 {
        drop(unsafe { Vec::from_raw_parts((*vec).len, 8, 8) });
    }

    if (flag & 2) != 0 {
        drop(unsafe { Vec::from_raw_parts((*vec).capacity, 8, 8) });
    }

    if (flag & 4) != 0 {
        drop(unsafe { Vec::<u8>::from_raw_parts((*vec).data, len, capacity) });
    }

    if (flag & 8) != 0 {
        drop(unsafe { Box::from_raw(vec) });
    }
}

#[no_mangle]
extern "C" fn parser_recognize(
    parser: *mut Parser,
    input_vec: *mut LenVec<std::os::raw::c_uchar>,
    error_vec: *mut LenVec<std::os::raw::c_char>,
    reset_p: std::os::raw::c_uchar,
) -> std::os::raw::c_int {
    let input_len = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*input_vec).len, 8) }
            .try_into()
            .unwrap(),
    );

    let mut parser_box;
    let input_array_len = input_len;
    let input_array;

    let error_len = unsafe { (*error_vec).len };
    let error_cap = unsafe { (*error_vec).capacity };

    unsafe {
        parser_box = Box::from_raw(parser);

        input_array = std::slice::from_raw_parts((*input_vec).data, input_array_len);
    }

    // If the parser has already been used before, reset it to the
    // initial state.

    if reset_p != 0 && !parser_box.chain.history().is_empty() {
        match DefaultChain::unit(parser_box.chain.atom().clone()) {
            Ok(chain) => {
                parser_box.chain = chain;
            }
            Err(e) => {
                let mut e_string = format!("error: {e}");

                Box::leak(parser_box);

                let e_string_len_slice = e_string.len().to_be_bytes();
                let e_string_cap_slice = e_string.capacity().to_be_bytes();

                unsafe {
                    for i in 0..8 {
                        *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                        *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                    }

                    (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
                }

                std::mem::forget(e_string);

                return 0;
            }
        }
    }

    if input_array_len.rem_euclid(8) != 0 {
        let mut e_string =
            format!("error: input length should be divisible by 8, but got {input_array_len}");

        let e_string_len_slice = e_string.len().to_be_bytes();
        let e_string_cap_slice = e_string.capacity().to_be_bytes();

        Box::leak(parser_box);

        unsafe {
            for i in 0..8 {
                *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
            }

            (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
        }

        std::mem::forget(e_string);

        return 0;
    }

    #[cfg(target_pointer_width = "64")]
    let input_iter = input_array
        .chunks_exact(8)
        .map(|chunk| usize::from_be_bytes(<[u8; 8]>::try_from(chunk).unwrap()));

    #[cfg(not(target_pointer_width = "64"))]
    compile_error!("this program assumes to be run on 64-bits machines");

    for (index, token) in input_iter.enumerate() {
        let chain_result = parser_box.chain.chain(token, index, true);

        if let Err(e) = chain_result {
            let mut e_string = format!("error: {e}");

            let e_string_len_slice = e_string.len().to_be_bytes();
            let e_string_cap_slice = e_string.capacity().to_be_bytes();

            Box::leak(parser_box);

            unsafe {
                for i in 0..8 {
                    *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                    *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                }

                (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
            }

            std::mem::forget(e_string);

            return 0;
        }
    }

    match parser_box.chain.epsilon() {
        Ok(result) => {
            Box::leak(parser_box);

            result as std::os::raw::c_int
        }
        Err(e) => {
            let mut e_string = format!("error: {e}");

            let e_string_len_slice = e_string.len().to_be_bytes();
            let e_string_cap_slice = e_string.capacity().to_be_bytes();

            Box::leak(parser_box);

            unsafe {
                for i in 0..8 {
                    *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                    *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                }

                (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
            }

            std::mem::forget(e_string);

            0
        }
    }
}

#[no_mangle]
extern "C" fn parser_parse(
    parser: *mut Parser,
    input_vec: *mut LenVec<std::os::raw::c_uchar>,
    error_vec: *mut LenVec<std::os::raw::c_char>,
    reset_p: std::os::raw::c_uchar,
) -> *mut LenVec<std::os::raw::c_uchar> {
    let input_len = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts((*input_vec).len, 8) }
            .try_into()
            .unwrap(),
    );

    let mut parser_box;
    let input_array;

    let error_len = unsafe { (*error_vec).len };
    let error_cap = unsafe { (*error_vec).capacity };

    unsafe {
        parser_box = Box::from_raw(parser);

        input_array = std::slice::from_raw_parts((*input_vec).data, input_len);
    }

    // If the parser has already been used before, reset it to the
    // initial state.

    if reset_p != 0 && !parser_box.chain.history().is_empty() {
        match DefaultChain::unit(parser_box.chain.atom().clone()) {
            Ok(chain) => {
                parser_box.chain = chain;
            }
            Err(e) => {
                let mut e_string = format!("error: {e}");

                Box::leak(parser_box);

                let e_string_len_slice = e_string.len().to_be_bytes();
                let e_string_cap_slice = e_string.capacity().to_be_bytes();

                unsafe {
                    for i in 0..8 {
                        *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                        *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                    }

                    (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
                }

                std::mem::forget(e_string);

                return std::ptr::null_mut();
            }
        }
    }

    if input_len.rem_euclid(8) != 0 {
        let mut e_string =
            format!("error: input length should be divisible by 8, but got {input_len}");

        let e_string_len_slice = e_string.len().to_be_bytes();
        let e_string_cap_slice = e_string.capacity().to_be_bytes();

        Box::leak(parser_box);

        unsafe {
            for i in 0..8 {
                *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
            }

            (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
        }

        std::mem::forget(e_string);

        return std::ptr::null_mut();
    } else if input_len == 0 {
        Box::leak(parser_box);

        return std::ptr::null_mut();
    }

    #[cfg(target_pointer_width = "64")]
    let input_iter = input_array
        .chunks_exact(8)
        .map(|chunk| usize::from_be_bytes(<[u8; 8]>::try_from(chunk).unwrap()));

    #[cfg(not(target_pointer_width = "64"))]
    compile_error!("this program assumes to be run on 64-bits machines");

    let mut last_pos: usize = 0;
    let mut last_token: usize = 0;

    for (index, token) in input_iter.enumerate() {
        last_pos = index;
        last_token = token;

        let chain_result = parser_box.chain.chain(token, index, false);

        if let Err(e) = chain_result {
            let mut e_string = format!("error: {e}");

            let e_string_len_slice = e_string.len().to_be_bytes();
            let e_string_cap_slice = e_string.capacity().to_be_bytes();

            Box::leak(parser_box);

            unsafe {
                for i in 0..8 {
                    *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                    *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                }

                (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
            }

            std::mem::forget(e_string);

            return std::ptr::null_mut();
        }
    }

    match parser_box.chain.epsilon() {
        Ok(result) => {
            if result {
                let forest = parser_box.chain.end_of_input(last_pos + 1, last_token);

                match forest {
                    Ok(forest) => {
                        use graph::Graph;
                        forest.print_viz("test forest.gv").unwrap();

                        Box::leak(parser_box);

                        let mut bytes = bytes::forest_to_bytes(&forest);

                        let bytes_len = bytes.len().to_be_bytes().to_vec();

                        let bytes_capacity = bytes.capacity().to_be_bytes().to_vec();

                        let bytes_vec: LenVec<std::os::raw::c_uchar> = LenVec {
                            len: Box::leak(bytes_len.into_boxed_slice()).as_mut_ptr(),
                            capacity: Box::leak(bytes_capacity.into_boxed_slice()).as_mut_ptr(),
                            data: bytes.as_mut_ptr(),
                        };

                        std::mem::forget(bytes);

                        Box::into_raw(Box::new(bytes_vec))
                    }
                    Err(e) => {
                        let mut e_string = format!("error: {e}");

                        let e_string_len_slice = e_string.len().to_be_bytes();
                        let e_string_cap_slice = e_string.capacity().to_be_bytes();

                        Box::leak(parser_box);

                        unsafe {
                            for i in 0..8 {
                                *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                                *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                            }

                            (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
                        }

                        std::mem::forget(e_string);

                        std::ptr::null_mut()
                    }
                }
            } else {
                Box::leak(parser_box);

                std::ptr::null_mut()
            }
        }
        Err(e) => {
            let mut e_string = format!("error: {e}");

            let e_string_len_slice = e_string.len().to_be_bytes();
            let e_string_cap_slice = e_string.capacity().to_be_bytes();

            Box::leak(parser_box);

            unsafe {
                for i in 0..8 {
                    *(error_len.add(i)) = e_string_len_slice.get(i).copied().unwrap();
                    *(error_cap.add(i)) = e_string_cap_slice.get(i).copied().unwrap();
                }

                (*error_vec).data = e_string.as_mut_ptr() as *mut std::os::raw::c_char;
            }

            std::mem::forget(e_string);

            std::ptr::null_mut()
        }
    }
}

// TODO: Write a function to print the node label of a forest and
// expose it to C ABI.
//
// This can be used in LLDB.

/// This struct is a wrapper around the forest.
///
/// This is used so that we can call a C function receiving a pointer
/// to a forest struct.
#[derive(Debug, Clone)]
#[repr(C)]
pub struct CForest {
    forest: DefaultForest<ForestLabel<GrammarLabel>>,
}

/// Print the label of the node with id `node` in the forest `forest`.
///
/// The parameter `node` should point to 8 bytes of unsigned
/// characters, which forms a number in 64 bits, in the *big endian*
/// format.
#[no_mangle]
extern "C" fn print_forest_node(forest: *mut CForest, node: *mut std::os::raw::c_uchar) {
    let node = usize::from_be_bytes(
        unsafe { std::slice::from_raw_parts(node, 8) }
            .try_into()
            .unwrap(),
    );

    let forest = unsafe { (*forest).forest.clone() };

    let Ok(Some(label)) = forest.vertex_label(node) else {
        return;
    };

    println!("node {node} has label {label}");
}

pub mod bytes;