Pārlūkot izejas kodu

Remember last compiled file.

Avoid recompiling multiple times same file.
Marcelo Fornet 5 gadi atpakaļ
vecāks
revīzija
ffd4e45bbb
5 mainītis faili ar 43 papildinājumiem un 10 dzēšanām
  1. 2 1
      README.md
  2. 14 3
      package-lock.json
  3. 3 1
      package.json
  4. 24 1
      src/core.ts
  5. 0 4
      todo.md

+ 2 - 1
README.md

@@ -93,7 +93,7 @@ Yes, of course, and any other language you want. Just make sure to update your [
 
 ## This problem has multiple correct answers, what can I do
 
-TODO: Coming soon. Read minitutorial on configuring custom checker.
+Set checker properly for this problemm via **ACMX: Set Checker**. Checkers can use [testlib.h](https://github.com/MikeMirzayanov/testlib) which is recommended.
 
 ## Commands
 
@@ -106,6 +106,7 @@ Call this commands from the command pallete (`Ctrl + Shift + P`).
 * acmx.addTestcase (**ACMX: Add Test Case**): Add a new testcase.
 * acmx.coding (**ACMX: View: Code**): Return to 1 column layout (better to code).
 * acmx.stress (**ACMX: Stress**): Run the solution against correct program using testcases from generator. Useful to find failing and corner cases. Must call upgrade first.
+* acmx.setChecker (**ACMX: Set Checker**): Create checker file. Allow to select a checker among a pool of custom checkers.
 * acmx.upgrade (**ACMX: Upgrade**): Create aditionals files before calling `Stress`.
 * acmx.compile (**ACMX: Compile**): Compile `sol.cpp`.
 

+ 14 - 3
package-lock.json

@@ -1,6 +1,6 @@
 {
     "name": "acmx",
-    "version": "0.1.8",
+    "version": "0.2.0",
     "lockfileVersion": 1,
     "requires": true,
     "dependencies": {
@@ -43,6 +43,12 @@
                 "@types/tough-cookie": "*"
             }
         },
+        "@types/md5-file": {
+            "version": "4.0.0",
+            "resolved": "https://registry.npmjs.org/@types/md5-file/-/md5-file-4.0.0.tgz",
+            "integrity": "sha512-t+qg7R25oYo6z3iWI+9CRky2mgQ51RGvLqlCPV+xa6dKp0YDomv0TArLK/CdcReFZwQHn/YMNRZx+4AUWXPtlg==",
+            "dev": true
+        },
         "@types/mocha": {
             "version": "2.2.48",
             "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-2.2.48.tgz",
@@ -998,6 +1004,11 @@
             "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
             "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="
         },
+        "md5-file": {
+            "version": "4.0.0",
+            "resolved": "https://registry.npmjs.org/md5-file/-/md5-file-4.0.0.tgz",
+            "integrity": "sha512-UC0qFwyAjn4YdPpKaDNw6gNxRf7Mcx7jC1UGCY4boCzgvU2Aoc1mOGzTtrjjLKhM5ivsnhoKpQVxKPp+1j1qwg=="
+        },
         "media-typer": {
             "version": "0.3.0",
             "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
@@ -1047,13 +1058,13 @@
         },
         "minimist": {
             "version": "0.0.8",
-            "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
+            "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
             "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=",
             "dev": true
         },
         "mkdirp": {
             "version": "0.5.1",
-            "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
+            "resolved": "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
             "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
             "dev": true,
             "requires": {

+ 3 - 1
package.json

@@ -159,6 +159,7 @@
         "@types/got": "^9.3.0",
         "@types/mocha": "^2.2.42",
         "@types/node": "^8.10.25",
+        "@types/md5-file": "^4.0.0",
         "tslint": "^5.8.0",
         "typescript": "^3.1.4",
         "vscode": "^1.1.33"
@@ -169,6 +170,7 @@
         "sync-request": "^6.0.0",
         "unescape": "^1.0.1",
         "express": "^4.16.4",
-        "body-parser": "^1.18.3"
+        "body-parser": "^1.18.3",
+        "md5-file": "^4.0.0"
     }
 }

+ 24 - 1
src/core.ts

@@ -5,6 +5,7 @@ import { dirname, join, extname, basename } from "path";
 import * as child_process from 'child_process';
 import * as gwen from './gwen';
 import { TestcaseResult, Veredict, SolutionResult, Problem, Contest, SiteDescription } from "./types";
+const md5File = require('md5-file');
 
 export const TESTCASES = 'testcases';
 export const ATTIC = 'attic';
@@ -320,7 +321,6 @@ function get_checker_path() {
 
     if (existsSync(potential_checker_path)) {
         let checker_output = join(path, ATTIC, 'checker.exe');
-        // TODO: Only compile on changes.
         compileCode(potential_checker_path, checker_output);
         return checker_output;
     }
@@ -386,6 +386,29 @@ export function timedRun(path: string, tcName: string, timeout: number){
 }
 
 export function compileCode(pathCode: string, pathOutput: string){
+    let pathCodeMD5 = pathCode + '.md5';
+    let md5data = "";
+
+    if (existsSync(pathCodeMD5)) {
+        let codeMD5fd = openSync(pathCodeMD5, 'r');
+        let buffer = new Buffer(getMaxSizeInput());
+        readSync(codeMD5fd, buffer, 0, 32, 0);
+        md5data = buffer.toString().slice(0, 32);
+        closeSync(codeMD5fd);
+    }
+
+    let codeMD5 = md5File.sync(pathCode);
+
+    if (codeMD5 === md5data) {
+        return {
+            'status' : 0
+        };
+    }
+
+    let codeMD5fd = openSync(pathCodeMD5, 'w');
+    writeSync(codeMD5fd, codeMD5 + '\n');
+    closeSync(codeMD5fd);
+
     let instruction: string | undefined = vscode.workspace.getConfiguration('acmx.execution', null).get('compile');
     let splitedInstruction = instruction!.split(' ');
 

+ 0 - 4
todo.md

@@ -23,9 +23,5 @@ This can be done creating such configurations globally and udpating them per wor
 
 * Make a new command to open particular settings of a problem
 
-* [ ] Checker
-  * [ ] Allow custom checker implemented with testlib.
-  * [ ] Try to figure out correct checker.
-  * [ ] Create few cool checkers such as only first token or accept everything.
 * [ ] Allow multiple solutions. (Don't check on this case. Try to figure out if this is the case)
 * [ ] Is interactive (Don't check on this case. Try to figure out if this is the case)