snarkvm_circuit_environment/helpers/
updatable_count.rs

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
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
// Copyright 2024 Aleo Network Foundation
// This file is part of the snarkVM library.

// 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.

use crate::{Constant, Constraints, Measurement, Private, Public};

use core::fmt::Debug;
use once_cell::sync::{Lazy, OnceCell};
use std::{
    cmp::Ordering,
    collections::{BTreeSet, HashMap},
    env,
    fmt::Display,
    fs,
    ops::Range,
    path::{Path, PathBuf},
    sync::Mutex,
};

static FILES: Lazy<Mutex<HashMap<&'static str, FileUpdates>>> = Lazy::new(Default::default);
static WORKSPACE_ROOT: OnceCell<PathBuf> = OnceCell::new();

/// To update the arguments to `count_is!`, run cargo test with the `UPDATE_COUNT` flag set to the name of the file containing the macro invocation.
/// e.g. `UPDATE_COUNT=boolean cargo test
/// See https://github.com/AleoNet/snarkVM/pull/1688 for more details.
#[macro_export]
macro_rules! count_is {
    ($num_constants:literal, $num_public:literal, $num_private:literal, $num_constraints:literal) => {
        $crate::UpdatableCount {
            constant: $crate::Measurement::Exact($num_constants),
            public: $crate::Measurement::Exact($num_public),
            private: $crate::Measurement::Exact($num_private),
            constraints: $crate::Measurement::Exact($num_constraints),
            file: file!(),
            line: line!(),
            column: column!(),
        }
    };
}

/// To update the arguments to `count_less_than!`, run cargo test with the `UPDATE_COUNT` flag set to the name of the file containing the macro invocation.
/// e.g. `UPDATE_COUNT=boolean cargo test
/// See https://github.com/AleoNet/snarkVM/pull/1688 for more details.
#[macro_export]
macro_rules! count_less_than {
    ($num_constants:literal, $num_public:literal, $num_private:literal, $num_constraints:literal) => {
        $crate::UpdatableCount {
            constant: $crate::Measurement::UpperBound($num_constants),
            public: $crate::Measurement::UpperBound($num_public),
            private: $crate::Measurement::UpperBound($num_private),
            constraints: $crate::Measurement::UpperBound($num_constraints),
            file: file!(),
            line: line!(),
            column: column!(),
        }
    };
}

/// A helper struct for tracking the number of constants, public inputs, private inputs, and constraints.
/// Warning: Do not construct this struct directly. Instead, use the `count_is!` and `count_less_than!` macros.
#[derive(Copy, Clone, Debug)]
pub struct UpdatableCount {
    pub constant: Constant,
    pub public: Public,
    pub private: Private,
    pub constraints: Constraints,
    #[doc(hidden)]
    pub file: &'static str,
    #[doc(hidden)]
    pub line: u32,
    #[doc(hidden)]
    pub column: u32,
}

impl Display for UpdatableCount {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(
            f,
            "Constants: {}, Public: {}, Private: {}, Constraints: {}",
            self.constant, self.public, self.private, self.constraints
        )
    }
}

impl UpdatableCount {
    /// Returns `true` if the values matches the `Measurement`s in `UpdatableCount`.
    ///
    /// For an `Exact` metric, `value` must be equal to the exact value defined by the metric.
    /// For a `Range` metric, `value` must be satisfy lower bound and the upper bound.
    /// For an `UpperBound` metric, `value` must be satisfy the upper bound.
    pub fn matches(&self, num_constants: u64, num_public: u64, num_private: u64, num_constraints: u64) -> bool {
        self.constant.matches(num_constants)
            && self.public.matches(num_public)
            && self.private.matches(num_private)
            && self.constraints.matches(num_constraints)
    }

    /// If all values match, do nothing.
    /// If all values metrics do not match:
    ///    - If the update condition is satisfied, then update the macro invocation that constructed this `UpdatableCount`.
    ///    - Otherwise, panic.
    pub fn assert_matches(&self, num_constants: u64, num_public: u64, num_private: u64, num_constraints: u64) {
        if !self.matches(num_constants, num_public, num_private, num_constraints) {
            let mut files = FILES.lock().unwrap_or_else(|poisoned| poisoned.into_inner());
            match env::var("UPDATE_COUNT") {
                // If `UPDATE_COUNT` is set and the `query_string` matches the file containing the macro invocation
                // that constructed this `UpdatableCount`, then update the macro invocation.
                Ok(query_string) if self.file.contains(&query_string) => {
                    files.entry(self.file).or_insert_with(|| FileUpdates::new(self)).update_count(
                        self,
                        num_constants,
                        num_public,
                        num_private,
                        num_constraints,
                    );
                }
                // Otherwise, error.
                _ => {
                    println!(
                        "\n
\x1b[1m\x1b[91merror\x1b[97m: Count does not match\x1b[0m
   \x1b[1m\x1b[34m-->\x1b[0m {}:{}:{}
\x1b[1mExpected\x1b[0m:
----
{}
----
\x1b[1mActual\x1b[0m:
----
Constants: {}, Public: {}, Private: {}, Constraints: {}
----
",
                        self.file,
                        self.line,
                        self.column,
                        self,
                        num_constants,
                        num_public,
                        num_private,
                        num_constraints,
                    );
                    // Use resume_unwind instead of panic!() to prevent a backtrace, which is unnecessary noise.
                    snarkvm_utilities::panic::resume_unwind(Box::new(()));
                }
            }
        }
    }

    /// Given a string containing the contents of a file, `locate` returns a range delimiting the arguments
    /// to the macro invocation that constructed this `UpdatableCount`.
    /// The beginning of the range corresponds to the opening parenthesis of the macro invocation.
    /// The end of the range corresponds to the closing parenthesis of the macro invocation.
    /// ```ignore
    ///              count_is!(0, 1, 2, 3)
    /// ```                   ^          ^
    ///           starting_index     ending_index
    ///
    /// Note: This function must always invoked with the file contents of the same file as the macro invocation.
    fn locate(&self, file: &str) -> Range<usize> {
        // `line_start` is the absolute byte offset from the beginning of the file to the beginning of the current line.
        let mut line_start = 0;
        let mut starting_index = None;
        let mut ending_index = None;
        for (i, line) in LinesWithEnds::from(file).enumerate() {
            if i == self.line as usize - 1 {
                // Seek past the exclamation point, then skip any whitespace and the macro delimiter to get to the opening parentheses.
                let mut argument_character_indices = line.char_indices().skip((self.column - 1).try_into().unwrap())
                    .skip_while(|&(_, c)| c != '!') // Skip up to the exclamation point.
                    .skip(1) // Skip `!`.
                    .skip_while(|(_, c)| c.is_whitespace()); // Skip any whitespace.

                // Set `starting_index` to the absolute position of the opening parenthesis in `file`.
                starting_index = Some(
                    line_start
                        + argument_character_indices
                            .next()
                            .expect("Could not find the beginning of the macro invocation.")
                            .0,
                );
            }

            if starting_index.is_some() {
                // At this point, we have found the opening parentheses, so we continue to skip all characters until the closing parentheses.
                match line.char_indices().find(|&(_, c)| c == ')') {
                    None => (), // Do nothing. This means that the closing parentheses was not found on the same line as the opening parentheses.
                    Some((offset, _)) => {
                        // Note that the `+ 1` is to account for the fact that `std::ops::Range` is exclusive on the upper bound.
                        ending_index = Some(line_start + offset + 1);
                        break;
                    }
                }
            }
            line_start += line.len();
        }

        Range {
            start: starting_index.expect("Could not find the beginning of the macro invocation."),
            end: ending_index.expect("Could not find the ending of the macro invocation."),
        }
    }

    /// Computes the difference between the number of constants, public, private, and constraints of `self` and those of `other`.
    pub fn difference_between(&self, other: &Self) -> (i64, i64, i64, i64) {
        let difference = |self_measurement, other_measurement| match (self_measurement, other_measurement) {
            (Measurement::Exact(self_value), Measurement::Exact(other_value))
            | (Measurement::UpperBound(self_value), Measurement::UpperBound(other_value)) => {
                // Note: This assumes that the number of constants, public, private, and constraints do not exceed `i64::MAX`.
                (self_value as i64) - (other_value as i64)
            }
            _ => panic!(
                "Cannot compute difference for `Measurement::Range` or if both measurements are of different types."
            ),
        };
        (
            difference(self.constant, other.constant),
            difference(self.public, other.public),
            difference(self.private, other.private),
            difference(self.constraints, other.constraints),
        )
    }

    /// Initializes an `UpdatableCount` without a specified location.
    /// This is only used to store intermediate counts as the source file is updated.
    fn dummy(constant: Constant, public: Public, private: Private, constraints: Constraints) -> Self {
        Self {
            constant,
            public,
            private,
            constraints,
            file: Default::default(),
            line: Default::default(),
            column: Default::default(),
        }
    }

    /// Returns a string that is intended to replace the arguments to `count_is` or `count_less_than` in the source file.
    fn as_argument_string(&self) -> String {
        let generate_arg = |measurement| match measurement {
            Measurement::Exact(value) => value,
            Measurement::UpperBound(bound) => bound,
            Measurement::Range(..) => panic!(
                "Cannot create an argument string from an `UpdatableCount` that contains a `Measurement::Range`."
            ),
        };
        format!(
            "({}, {}, {}, {})",
            generate_arg(self.constant),
            generate_arg(self.public),
            generate_arg(self.private),
            generate_arg(self.constraints)
        )
    }
}

/// This struct is used to track updates to the `UpdatableCount`s in a file.
/// It is used to ensure that the updates are written to the appropriate location in the file as the file is modified.
/// This design avoids having to re-read the source file in the event that it has been modified.
struct FileUpdates {
    absolute_path: PathBuf,
    original_text: String,
    modified_text: String,
    /// An ordered set of `Update`s.
    /// `Update`s are ordered by their starting location.
    /// We assume that all `Updates` are made to disjoint ranges in the original file.
    /// This assumption is valid since invocations of `count_is` and `count_less_than` cannot be nested.
    updates: BTreeSet<Update>,
}

impl FileUpdates {
    /// Initializes a new instance of `FileUpdates`.
    /// This function will read the contents of the file at the specified path and store it in the `original_text` field.
    /// This function will also initialize the `updates` field to an empty vector.
    fn new(count: &UpdatableCount) -> Self {
        let path = Path::new(count.file);
        let absolute_path = match path.is_absolute() {
            true => path.to_owned(),
            false => {
                // Append `path` to the workspace root.
                WORKSPACE_ROOT
                    .get_or_try_init(|| {
                        // Heuristic, see https://github.com/rust-lang/cargo/issues/3946
                        let workspace_root = Path::new(&env!("CARGO_MANIFEST_DIR"))
                            .ancestors()
                            .filter(|it| it.join("Cargo.toml").exists())
                            .last()
                            .unwrap()
                            .to_path_buf();

                        Ok(workspace_root)
                    })
                    .unwrap_or_else(|_: env::VarError| {
                        panic!("No CARGO_MANIFEST_DIR env var and the path is relative: {}", path.display())
                    })
                    .join(path)
            }
        };
        let original_text = fs::read_to_string(&absolute_path).unwrap();
        let modified_text = original_text.clone();
        let updates = Default::default();
        Self { absolute_path, original_text, modified_text, updates }
    }

    /// This function will update the `modified_text` field with the new text that is being inserted.
    /// The resulting `modified_text` is written to the file at the specified path.
    /// This implementation allows us to avoid re-reading the source file in the case where multiple updates
    /// are being made to the same location in the source code.
    fn update_count(
        &mut self,
        count: &UpdatableCount,
        num_constants: u64,
        num_public: u64,
        num_private: u64,
        num_constraints: u64,
    ) {
        // Get the location of arguments in the macro invocation.
        let range = count.locate(&self.original_text);

        let mut new_range = range.clone();
        let mut update_with_same_start = None;

        // Shift the range to account for changes made to the original file.
        // Note that the `Update`s in self.updates are ordered by their starting location.
        for previous_update in &self.updates {
            let amount_deleted = previous_update.end - previous_update.start;
            let amount_inserted = previous_update.argument_string.len();

            match previous_update.start.cmp(&range.start) {
                // If an update was made in a location preceding the range in the original file, we need to shift the range by the length of the text that was changed.
                Ordering::Less => {
                    new_range.start = new_range.start - amount_deleted + amount_inserted;
                    new_range.end = new_range.end - amount_deleted + amount_inserted;
                }
                // If an update was made at the same location as the range in the original file, we need to shift the end of the range by the amount of text that was changed.
                Ordering::Equal => {
                    new_range.end = new_range.end - amount_deleted + amount_inserted;
                    update_with_same_start = Some(previous_update);
                }
                // We do not need to shift the range if an update was made in a location following the range in the original file.
                Ordering::Greater => {
                    break;
                }
            }
        }

        // If the original `UpdatableCount` has been modified, then check if the counts satisfy the most recent `UpdatableCount`.
        // If so, then there is no need to write to update the file and we can return early.
        if let Some(update) = update_with_same_start {
            if update.count.matches(num_constants, num_public, num_private, num_constraints) {
                return;
            }
        }

        // Construct the new update.
        let new_update = match update_with_same_start {
            None => Update::new(&range, count, num_constants, num_public, num_private, num_constraints),
            Some(update) => Update::new(&range, &update.count, num_constants, num_public, num_private, num_constraints),
        };

        // Apply the update at the adjusted location.
        self.modified_text.replace_range(new_range, &new_update.argument_string);

        // Print the difference between the original and updated counts.
        let difference = new_update.count.difference_between(count);
        println!(
            "\n
\x1b[1m\x1b[33mwarning\x1b[97m: Updated count\x1b[0m
   \x1b[1m\x1b[34m-->\x1b[0m {}:{}:{}
\x1b[1mOriginal count\x1b[0m:
----
{}
----
\x1b[1mUpdated count\x1b[0m:
----
{}
----
\x1b[1mDifference between updated and original\x1b[0m:
----
Constants: {}, Public: {}, Private: {}, Constraints: {}
----
",
            count.file,
            count.line,
            count.column,
            count,
            new_update.count,
            difference.0,
            difference.1,
            difference.2,
            difference.3
        );

        // Add the new update to the set of updates.
        self.updates.replace(new_update);

        // Update the original file with the modified text.
        fs::write(&self.absolute_path, &self.modified_text).unwrap()
    }
}

/// Helper struct to keep track of updates to the original file.
#[derive(Debug)]
struct Update {
    /// Starting location in the original file.
    start: usize,
    /// Ending location in the original file.
    end: usize,
    /// A dummy count with the new `Measurement`s.
    count: UpdatableCount,
    /// A string representation of `count`.
    argument_string: String,
}

impl Update {
    fn new(
        range: &Range<usize>,
        old_count: &UpdatableCount,
        num_constants: u64,
        num_public: u64,
        num_private: u64,
        num_constraints: u64,
    ) -> Self {
        // Helper function to determine the new `Measurement` based on the expected value.
        let generate_new_measurement = |measurement: Measurement<u64>, expected: u64| match measurement {
            Measurement::Exact(..) => Measurement::Exact(expected),
            Measurement::Range(..) => panic!("UpdatableCount does not support ranges."),
            Measurement::UpperBound(bound) => Measurement::UpperBound(std::cmp::max(expected, bound)),
        };
        let count = UpdatableCount::dummy(
            generate_new_measurement(old_count.constant, num_constants),
            generate_new_measurement(old_count.public, num_public),
            generate_new_measurement(old_count.private, num_private),
            generate_new_measurement(old_count.constraints, num_constraints),
        );
        Self { start: range.start, end: range.end, count, argument_string: count.as_argument_string() }
    }
}

impl PartialEq for Update {
    fn eq(&self, other: &Self) -> bool {
        self.start == other.start
    }
}
impl Eq for Update {}
impl PartialOrd for Update {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}
impl Ord for Update {
    fn cmp(&self, other: &Self) -> Ordering {
        self.start.cmp(&other.start)
    }
}

/// A struct that provides an iterator over the lines in a string, while preserving the original line endings.
/// This is necessary as `str::lines` does not preserve the original line endings.
struct LinesWithEnds<'a> {
    text: &'a str,
}

impl<'a> Iterator for LinesWithEnds<'a> {
    type Item = &'a str;

    fn next(&mut self) -> Option<&'a str> {
        match self.text.is_empty() {
            true => None,
            false => {
                let idx = self.text.find('\n').map_or(self.text.len(), |it| it + 1);
                let (res, next) = self.text.split_at(idx);
                self.text = next;
                Some(res)
            }
        }
    }
}

impl<'a> From<&'a str> for LinesWithEnds<'a> {
    fn from(text: &'a str) -> Self {
        LinesWithEnds { text }
    }
}

#[cfg(test)]
mod test {
    use serial_test::serial;
    use std::env;

    #[test]
    fn check_position() {
        let count = count_is!(0, 0, 0, 0);
        assert_eq!(count.file, "circuit/environment/src/helpers/updatable_count.rs");
        assert_eq!(count.line, 500);
        assert_eq!(count.column, 21);
    }

    // Note: The below tests must be run serially since the behavior `assert_matches` depends on whether or not
    // the environment variable `UPDATE_COUNT` is set.

    #[test]
    #[serial]
    fn check_count_passes() {
        let count = count_is!(1, 2, 3, 4);
        let num_constants = 1;
        let num_public = 2;
        let num_private = 3;
        let num_inputs = 4;
        count.assert_matches(num_constants, num_public, num_private, num_inputs);
    }

    #[test]
    #[serial]
    #[should_panic]
    fn check_count_fails() {
        let count = count_is!(1, 2, 3, 4);
        let num_constants = 5;
        let num_public = 6;
        let num_private = 7;
        let num_inputs = 8;

        count.assert_matches(num_constants, num_public, num_private, num_inputs);
    }

    #[test]
    #[serial]
    #[should_panic]
    fn check_count_does_not_update_if_env_var_is_not_set_correctly() {
        let count = count_is!(1, 2, 3, 4);
        let num_constants = 5;
        let num_public = 6;
        let num_private = 7;
        let num_inputs = 8;

        // Set the environment variable to update the file.
        env::set_var("UPDATE_COUNT", "1");

        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        env::remove_var("UPDATE_COUNT");
    }

    #[test]
    #[serial]
    fn check_count_updates_correctly() {
        // `count` is originally `count_is!(1, 2, 3, 4)`. Replace `original_count` to demonstrate replacement.
        let count = count_is!(11, 12, 13, 14);
        let num_constants = 11;
        let num_public = 12;
        let num_private = 13;
        let num_inputs = 14;

        // Set the environment variable to update the file.
        env::set_var("UPDATE_COUNT", "updatable_count.rs");

        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        env::remove_var("UPDATE_COUNT");
    }

    #[test]
    #[serial]
    fn check_count_updates_correctly_multiple_times() {
        // `count` is originally `count_is!(1, 2, 3, 4)`. Replace `original_count` to demonstrate replacement.
        let count = count_is!(17, 18, 19, 20);

        env::set_var("UPDATE_COUNT", "updatable_count.rs");

        let (num_constants, num_public, num_private, num_inputs) = (5, 6, 7, 8);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (9, 10, 11, 12);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (13, 14, 15, 16);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (17, 18, 19, 20);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        env::remove_var("UPDATE_COUNT");
    }

    #[test]
    #[serial]
    fn check_count_less_than_selects_maximum() {
        // `count` is initially `count_less_than!(1, 2, 3, 4)`.
        // After counts are updated, `original_count` is `count_less_than!(17, 18, 19, 20)`.
        // In other words, count is updated to be the maximum of the original and updated counts.
        let count = count_less_than!(17, 18, 19, 20);

        // Set the environment variable to update the file.
        env::set_var("UPDATE_COUNT", "updatable_count.rs");

        let (num_constants, num_public, num_private, num_inputs) = (5, 18, 7, 8);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (17, 10, 11, 12);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (13, 6, 19, 16);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        let (num_constants, num_public, num_private, num_inputs) = (9, 18, 15, 20);
        count.assert_matches(num_constants, num_public, num_private, num_inputs);

        env::remove_var("UPDATE_COUNT");
    }
}