forked from iden3/circom_old
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
executable file
·119 lines (100 loc) · 3.64 KB
/
Copy pathcli.js
File metadata and controls
executable file
·119 lines (100 loc) · 3.64 KB
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
#!/usr/bin/env node
/*
Copyright 2018 0KIMS association.
This file is part of circom (Zero Knowledge Circuit Compiler).
circom is a 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 3 of the License, or
(at your option) any later version.
circom 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 circom. If not, see <https://www.gnu.org/licenses/>.
*/
/* eslint-disable no-console */
const fs = require("node:fs");
const path = require("node:path");
const compiler = require("./src/compiler");
function parseArgs(usageInfo, ...def){
function processDef(...def){
const res = {};
for (const d of def) {
if (d.full) {
res['-'+d.full] = d;
res['--'+d.full] = d;
}
if (d.short) {
res['-'+d.short] = d;
res['--'+d.short] = d;
}
}
return res;
}
function usage(){
console.log(usageInfo)
process.exit(1);
}
def = processDef(...def);
const args = process.argv.slice(2);
const rest = [];
const data = {};
for (let i=0; i<args.length; i++) {
const a = args[i];
if (a==='-h' || a==='--help') usage();
const d = def[a];
if (d) {
if (d.type==='boolean') data[d.full] = true
else data[d.full] = args[++i];
continue;
} else {
if (a.startsWith('-')) throw new Error('Unknown flag: '+a);
rest.push(a);
}
}
return {...data, _: rest};
}
const argv = parseArgs(`circom [input source circuit file] -o [output definition circuit file]
Options:
--version Show version number [boolean]
-h, --help Show help [boolean]
--verbose, -v Run with verbose logging [boolean]
--fast, -f Do not optimize constraints [boolean]
Copyright (C) 2018 0kims association
This program comes with ABSOLUTELY NO WARRANTY;
This is free software, and you are welcome to redistribute it
under certain conditions; see the COPYING file in the official
repo directory at https://github.com/iden3/circom`,
{ full: 'output', short: 'o' },
{ full: 'verbose', short: 'v', type: 'boolean' },
{ full: 'fast', short: 'f', type: 'boolean' }
);
let inputFile;
if (argv._.length == 0) {
inputFile = "circuit.circom";
} else if (argv._.length == 1) {
inputFile = argv._[0];
} else {
console.log("Only one circuit at a time is permited");
process.exit(1);
}
const fullFileName = path.resolve(process.cwd(), inputFile);
const outName = argv.output ? argv.output : "circuit.json";
compiler(fullFileName, {reduceConstraints: !argv.fast, verbose: argv.verbose}).then( (cir) => {
fs.writeFileSync(outName, JSON.stringify(cir, null, 1), "utf8");
process.exit(0);
}, (err) => {
// console.log(err);
console.log(err.stack);
if (err.pos) {
console.error(`ERROR at ${err.errFile}:${err.pos.first_line},${err.pos.first_column}-${err.pos.last_line},${err.pos.last_column} ${err.errStr}`);
} else {
console.log(err.message);
if (argv.verbose) console.log(err.stack);
}
if (err.ast) {
console.error(JSON.stringify(err.ast, null, 1));
}
process.exit(1);
});