- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
210 lines
6.3 KiB
JavaScript
210 lines
6.3 KiB
JavaScript
"use strict";
|
|
|
|
const Symbolication = require("./Symbolication.js");
|
|
const fs = require("fs");
|
|
const SourceMapConsumer = require("source-map").SourceMapConsumer;
|
|
const through2 = require("through2");
|
|
function printHelp() {
|
|
const usages = [
|
|
"Usage: " + __filename + " <source-map-file>",
|
|
" " + __filename + " <source-map-file> <line> [column]",
|
|
" " + __filename + " <source-map-file> <moduleId>.js <line> [column]",
|
|
" " + __filename + " <source-map-file> <mapfile>.profmap",
|
|
" " +
|
|
__filename +
|
|
" <source-map-file> --attribution < in.jsonl > out.jsonl",
|
|
" " + __filename + " <source-map-file> <tracefile>.cpuprofile",
|
|
" Optional flags:",
|
|
" --no-function-names",
|
|
" --hermes-crash (mutually exclusive with --hermes-coverage)",
|
|
" --hermes-coverage (mutually exclusive with --hermes-crash)",
|
|
" --input-line-start <line> (default: 1)",
|
|
" --input-column-start <column> (default: 0)",
|
|
" --output-line-start <line> (default: 1)",
|
|
" --output-column-start <column> (default: 0)",
|
|
];
|
|
console.error(usages.join("\n"));
|
|
}
|
|
async function main(
|
|
argvInput = process.argv.slice(2),
|
|
{ stdin, stderr, stdout } = process
|
|
) {
|
|
const argv = argvInput.slice();
|
|
function checkAndRemoveArg(arg, valuesPerArg = 0) {
|
|
let values = null;
|
|
for (let idx = argv.indexOf(arg); idx !== -1; idx = argv.indexOf(arg)) {
|
|
argv.splice(idx, 1);
|
|
values = values || [];
|
|
values.push(argv.splice(idx, valuesPerArg));
|
|
}
|
|
return values;
|
|
}
|
|
function checkAndRemoveArgWithValue(arg) {
|
|
const values = checkAndRemoveArg(arg, 1);
|
|
return values ? values[0][0] : null;
|
|
}
|
|
try {
|
|
const noFunctionNames = checkAndRemoveArg("--no-function-names");
|
|
const isHermesCrash = checkAndRemoveArg("--hermes-crash");
|
|
const isCoverage = checkAndRemoveArg("--hermes-coverage");
|
|
const inputLineStart = Number.parseInt(
|
|
checkAndRemoveArgWithValue("--input-line-start") || "1",
|
|
10
|
|
);
|
|
const inputColumnStart = Number.parseInt(
|
|
checkAndRemoveArgWithValue("--input-column-start") || "0",
|
|
10
|
|
);
|
|
const outputLineStart = Number.parseInt(
|
|
checkAndRemoveArgWithValue("--output-line-start") || "1",
|
|
10
|
|
);
|
|
const outputColumnStart = Number.parseInt(
|
|
checkAndRemoveArgWithValue("--output-column-start") || "0",
|
|
10
|
|
);
|
|
if (argv.length < 1 || argv.length > 4) {
|
|
printHelp();
|
|
return 1;
|
|
}
|
|
if (isHermesCrash && isCoverage) {
|
|
console.error(
|
|
"Pass either --hermes-crash or --hermes-coverage, not both"
|
|
);
|
|
printHelp();
|
|
return 1;
|
|
}
|
|
const sourceMapFileName = argv.shift();
|
|
const options = {
|
|
nameSource: noFunctionNames ? "identifier_names" : "function_names",
|
|
inputLineStart,
|
|
inputColumnStart,
|
|
outputLineStart,
|
|
outputColumnStart,
|
|
};
|
|
let context;
|
|
if (fs.lstatSync(sourceMapFileName).isDirectory()) {
|
|
context = Symbolication.unstable_createDirectoryContext(
|
|
SourceMapConsumer,
|
|
sourceMapFileName,
|
|
options
|
|
);
|
|
} else {
|
|
const content = fs.readFileSync(sourceMapFileName, "utf8");
|
|
context = Symbolication.createContext(
|
|
SourceMapConsumer,
|
|
content,
|
|
options
|
|
);
|
|
}
|
|
if (argv.length === 0) {
|
|
const stackTrace = await readAll(stdin);
|
|
if (isHermesCrash) {
|
|
const stackTraceJSON = JSON.parse(stackTrace);
|
|
const symbolicatedTrace =
|
|
context.symbolicateHermesMinidumpTrace(stackTraceJSON);
|
|
stdout.write(JSON.stringify(symbolicatedTrace));
|
|
} else if (isCoverage) {
|
|
const stackTraceJSON = JSON.parse(stackTrace);
|
|
const symbolicatedTrace =
|
|
context.symbolicateHermesCoverageTrace(stackTraceJSON);
|
|
stdout.write(JSON.stringify(symbolicatedTrace));
|
|
} else {
|
|
stdout.write(context.symbolicate(stackTrace));
|
|
}
|
|
} else if (argv[0].endsWith(".profmap")) {
|
|
stdout.write(context.symbolicateProfilerMap(argv[0]));
|
|
} else if (
|
|
argv[0].endsWith(".heapsnapshot") ||
|
|
argv[0].endsWith(".heaptimeline")
|
|
) {
|
|
stdout.write(
|
|
JSON.stringify(
|
|
context.symbolicateHeapSnapshot(fs.readFileSync(argv[0], "utf8"))
|
|
)
|
|
);
|
|
} else if (argv[0] === "--attribution") {
|
|
let buffer = "";
|
|
await waitForStream(
|
|
stdin
|
|
.pipe(
|
|
through2(function (data, enc, callback) {
|
|
buffer += data;
|
|
const lines = buffer.split("\n");
|
|
for (let i = 0, e = lines.length - 1; i < e; i++) {
|
|
this.push(lines[i]);
|
|
}
|
|
buffer = lines[lines.length - 1];
|
|
callback();
|
|
})
|
|
)
|
|
.pipe(
|
|
through2.obj(function (data, enc, callback) {
|
|
const obj = JSON.parse(data);
|
|
context.symbolicateAttribution(obj);
|
|
this.push(JSON.stringify(obj) + "\n");
|
|
callback();
|
|
})
|
|
)
|
|
.pipe(stdout)
|
|
);
|
|
} else if (argv[0].endsWith(".cpuprofile")) {
|
|
context.symbolicateChromeTrace(argv[0], {
|
|
stdout,
|
|
stderr,
|
|
});
|
|
} else {
|
|
let moduleIds;
|
|
if (argv[0].endsWith(".js")) {
|
|
moduleIds = context.parseFileName(argv[0]);
|
|
argv.shift();
|
|
} else {
|
|
moduleIds = null;
|
|
}
|
|
const lineNumber = argv.shift();
|
|
const columnNumber = argv.shift() || 0;
|
|
const original = context.getOriginalPositionFor(
|
|
+lineNumber,
|
|
+columnNumber,
|
|
moduleIds
|
|
);
|
|
stdout.write(
|
|
[
|
|
original.source ?? "null",
|
|
original.line ?? "null",
|
|
original.name ?? "null",
|
|
].join(":") + "\n"
|
|
);
|
|
}
|
|
} catch (error) {
|
|
stderr.write(error + "\n");
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
function readAll(stream) {
|
|
return new Promise((resolve) => {
|
|
let data = "";
|
|
if (stream.isTTY === true) {
|
|
resolve(data);
|
|
return;
|
|
}
|
|
stream.setEncoding("utf8");
|
|
stream.on("readable", () => {
|
|
let chunk;
|
|
while ((chunk = stream.read())) {
|
|
data += chunk.toString();
|
|
}
|
|
});
|
|
stream.on("end", () => {
|
|
resolve(data);
|
|
});
|
|
});
|
|
}
|
|
function waitForStream(stream) {
|
|
return new Promise((resolve) => {
|
|
stream.on("finish", resolve);
|
|
});
|
|
}
|
|
module.exports = main;
|