Files
claudetools/projects/dataforth-dos/datasheet-pipeline/implementation/parsers/multiline.js
Mike Swanson 45083f4735 Add SCMVAS/SCMHVAS datasheet pipeline extension (Dataforth)
Extends the Test Datasheet Pipeline on AD2:C:\Shares\testdatadb to
generate web-published datasheets for the SCMVAS-Mxxx (obsolete) and
SCMHVAS-Mxxxx (replacement) High Voltage Input Module product lines.
Both are tested either with the existing TESTHV3 software (production
VASLOG .DAT logs) or in Engineering with plain .txt output.

Key changes on AD2 (all deployed 2026-04-12 with dated backups):

- parsers/spec-reader.js: getSpecs() returns a `{_family:'SCMVAS',
  _noSpecs:true}` sentinel for SCMVAS/SCMHVAS/VAS-M/HVAS-M model prefixes
  so the export pipeline does not silently skip them for missing specs.
- templates/datasheet-exact.js: new Accuracy-only template branch
  (generateSCMVASDatasheet + helpers) that mirrors the existing shipped
  format byte-for-byte. Extraction regex covers both QuickBASIC STR$()
  output formats: scientific-with-trailing-status-digit (98.4% of
  records) and plain-decimal (1.6% of records above QB's threshold).
- parsers/vaslog-engtxt.js (new): parses the Engineering-Tested .txt
  files in TS-3R\LOGS\VASLOG\VASLOG - Engineering Tested\. Filename SN
  regex strips optional trailing 14-digit timestamp; in-file "SN:"
  header is the authoritative source when the filename is malformed.
- database/import.js: LOG_TYPES grows a VASLOG_ENG entry with
  subfolder + recursive flags. Pre-existing 7 log types keep their
  implicit recursive=true behaviour (config.recursive !== false).
  importFiles() routes VASLOG_ENG paths before the generic loop so a
  VASLOG - Engineering Tested/*.txt path does not mis-dispatch to the
  multiline parser.
- database/export-datasheets.js: VASLOG_ENG records are written
  verbatim via fs.copyFileSync(source_file, For_Web/<SN>.TXT) for true
  byte-level pass-through, with a graceful raw_data fallback when the
  source file is no longer on disk.

Deploy outcome:
- 27,503 SCMVAS/SCMHVAS datasheets rendered (27,065 from scientific +
  438 from plain-decimal PASS lines, post-patch rerun)
- 434 Engineering-Tested .txt files pass-through-copied to For_Web
- 0 errors across both batches

Repo layout added here:
- scmvas-hvas-research/: discovery artifacts (source .BAS, hvin.dat,
  sample .DAT + .txt, binary-format notes, IMPLEMENTATION_PLAN.md)
- implementation/: staged final code + deploy helpers + local test
  harness + per-step verification scripts
- backups/pre-deploy-20260412/: independent local snapshot of the 4
  AD2 files replaced, pulled byte-for-byte before deploy

All helper scripts fetch the AD2 password at runtime from the SOPS
vault (clients/dataforth/ad2.sops.yaml). None of the committed files
contain the plaintext credential. Known vault-entry hygiene issue
(stale shell-escape backslash before the `!`) is documented in the
fetcher comments and stripped at read-time; flagged separately for
cleanup.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 07:36:45 -07:00

120 lines
4.0 KiB
JavaScript

/**
* Parser for multi-line DAT files (DSCLOG, 5BLOG, 8BLOG, PWRLOG, SCTLOG, VASLOG)
*
* Format:
* "MODEL_NUMBER "
* measurement1,measurement2,measurement3,measurement4,"PASS/FAIL"
* ... (test data lines)
* 0
* "summary line 1"
* ...
* "SERIAL-NUM","MM-DD-YYYY"
*/
const fs = require('fs');
const path = require('path');
/**
* Parse a multi-line DAT file and extract test records
* @param {string} filePath - Path to the DAT file
* @param {string} logType - Type of log (DSCLOG, 5BLOG, etc.)
* @param {string} testStation - Test station identifier (TS-1L, etc.)
* @returns {Array} Array of parsed records
*/
function parseMultilineFile(filePath, logType, testStation = null) {
const records = [];
try {
const content = fs.readFileSync(filePath, 'utf8');
const lines = content.split('\n').map(l => l.trim());
let currentRecord = [];
let modelNumber = null;
for (let i = 0; i < lines.length; i++) {
const line = lines[i];
// Skip empty lines
if (!line) continue;
// Check if it's a serial/date line (format: "SERIAL","DATE")
const serialDateMatch = line.match(/^"(\d+-\d+[A-Za-z]?)","(\d{2}-\d{2}-\d{4})"$/);
if (serialDateMatch) {
// This is the end of a record
const serialNumber = serialDateMatch[1];
const dateStr = serialDateMatch[2];
if (modelNumber && currentRecord.length > 0) {
// Parse date from MM-DD-YYYY to YYYY-MM-DD
const [month, day, year] = dateStr.split('-');
const testDate = `${year}-${month}-${day}`;
// Determine overall result from raw data
const rawData = currentRecord.join('\n');
const overallResult = determineResult(rawData);
records.push({
log_type: logType,
model_number: modelNumber.trim(),
serial_number: serialNumber,
test_date: testDate,
test_station: testStation,
overall_result: overallResult,
raw_data: rawData,
source_file: filePath
});
}
// Reset for next record
currentRecord = [];
modelNumber = null;
}
// Check if this is a model number line
// Model numbers: single quoted string with product code (letters+numbers, possibly with dash)
// Examples: "DSCA38-1793 ", "SCM5B30-01 ", "8B30-01 "
else if (/^"[A-Z0-9]+[A-Z0-9-]*\s*"$/.test(line) && !line.includes(',') && !line.includes('PASS') && !line.includes('FAIL')) {
// This is a model number line - start new record
if (currentRecord.length > 0 && modelNumber) {
// Previous record didn't have serial/date - skip it
currentRecord = [];
}
modelNumber = line.replace(/"/g, '').trim();
currentRecord.push(line);
} else {
// Add line to current record
currentRecord.push(line);
}
}
} catch (err) {
console.error(`Error parsing ${filePath}: ${err.message}`);
}
return records;
}
/**
* Determine overall PASS/FAIL result from raw data
*/
function determineResult(rawData) {
const failCount = (rawData.match(/"FAIL/gi) || []).length;
const passCount = (rawData.match(/"PASS/gi) || []).length;
if (failCount > 0) return 'FAIL';
if (passCount > 0) return 'PASS';
return 'UNKNOWN';
}
/**
* Extract test station from file path
*/
function extractTestStation(filePath) {
const match = filePath.match(/TS-\d+[LR]/i);
return match ? match[0].toUpperCase() : null;
}
module.exports = {
parseMultilineFile,
extractTestStation
};