You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.6 KiB

5 years ago
5 years ago
  1. #!/usr/bin/env node
  2. /*
  3. Copyright 2018 0KIMS association.
  4. This file is part of circom (Zero Knowledge Circuit Compiler).
  5. circom is a free software: you can redistribute it and/or modify it
  6. under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. circom is distributed in the hope that it will be useful, but WITHOUT
  10. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  12. License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with circom. If not, see <https://www.gnu.org/licenses/>.
  15. */
  16. /* eslint-disable no-console */
  17. const fs = require("fs");
  18. const path = require("path");
  19. const compiler = require("./src/compiler");
  20. const version = require("./package").version;
  21. const argv = require("yargs")
  22. .version(version)
  23. .usage("circom [input source circuit file] -o [output definition circuit file]")
  24. .alias("o", "output")
  25. .help("h")
  26. .alias("h", "help")
  27. .option("verbose", {
  28. alias: "v",
  29. type: "boolean",
  30. description: "Run with verbose logging"
  31. })
  32. .option("fast", {
  33. alias: "f",
  34. type: "boolean",
  35. description: "Do not optimize constraints"
  36. })
  37. .epilogue(`Copyright (C) 2018 0kims association
  38. This program comes with ABSOLUTELY NO WARRANTY;
  39. This is free software, and you are welcome to redistribute it
  40. under certain conditions; see the COPYING file in the official
  41. repo directory at https://github.com/iden3/circom `)
  42. .argv;
  43. let inputFile;
  44. if (argv._.length == 0) {
  45. inputFile = "circuit.circom";
  46. } else if (argv._.length == 1) {
  47. inputFile = argv._[0];
  48. } else {
  49. console.log("Only one circuit at a time is permited");
  50. process.exit(1);
  51. }
  52. const fullFileName = path.resolve(process.cwd(), inputFile);
  53. const outName = argv.output ? argv.output : "circuit.json";
  54. compiler(fullFileName, {reduceConstraints: !argv.fast, verbose: argv.verbose}).then( (cir) => {
  55. fs.writeFileSync(outName, JSON.stringify(cir, null, 1), "utf8");
  56. process.exit(0);
  57. }, (err) => {
  58. // console.log(err);
  59. console.log(err.stack);
  60. if (err.pos) {
  61. console.error(`ERROR at ${err.errFile}:${err.pos.first_line},${err.pos.first_column}-${err.pos.last_line},${err.pos.last_column} ${err.errStr}`);
  62. } else {
  63. console.log(err.message);
  64. if (argv.verbose) console.log(err.stack);
  65. }
  66. if (err.ast) {
  67. console.error(JSON.stringify(err.ast, null, 1));
  68. }
  69. process.exit(1);
  70. });