[Claude Code Desktop 자동 설치 환경]
- setup/CLAUDE.md: 트리거 키워드 + 설치 패키지 설명
- setup/.claude/skills/guardia-install/SKILL.md: 6단계 설치 오케스트레이터
Phase 0: 의도 파악 → Phase 1: OS 감지 → Phase 2: 사전 확인
Phase 3: 설치 실행 → Phase 4: 라이선스 발급 → Phase 5: 검증 → Phase 6: 완료보고
[통합 자동 설치 스크립트]
- setup/install_auto.sh: Linux 통합 (OS 자동 감지 ubuntu/centos/rhel)
- --license trial30|trial7|<key> 파라미터
- 설치 완료 후 GUARDiA 자동 실행 + 브라우저 자동 열기
- --test 검증 모드
- setup/install_auto.ps1: Windows 통합 (ASCII 전용, PS 5.1 호환)
- 설치 후 NSSM 서비스 자동 시작 + 브라우저 자동 열기
- -Test 파라미터로 검증 전용 실행
[라이선스 엔진 개선]
- core/license.py: generate_trial_key(days=None) 파라미터 추가
- TRIAL_DURATION_DAYS = TRIAL_DURATION_DAYS 환경변수로 조정 가능
- routers/license.py: TrialRequest.days 필드 + 30일 체험판 지원
POST /api/license/trial {"days": 30} 로 30일 발급
사용자 경험:
1. setup/ 폴더를 새 PC에 복사
2. Claude Code Desktop 열고 해당 폴더 open
3. "GUARDiA 시스템 1달 사용자로 설치해 줘" 입력
4. 자동으로 OS 감지 → 설치 → 30일 라이선스 → 브라우저 열림
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
196 lines
5.5 KiB
JavaScript
196 lines
5.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.TokenMap = void 0;
|
|
var _t = require("@babel/types");
|
|
const {
|
|
traverseFast,
|
|
VISITOR_KEYS
|
|
} = _t;
|
|
class TokenMap {
|
|
constructor(ast, tokens, source) {
|
|
this._tokens = void 0;
|
|
this._source = void 0;
|
|
this._nodesToTokenIndexes = new Map();
|
|
this._nodesOccurrencesCountCache = new Map();
|
|
this._tokensCache = new Map();
|
|
this._tokens = tokens;
|
|
this._source = source;
|
|
traverseFast(ast, node => {
|
|
const indexes = this._getTokensIndexesOfNode(node);
|
|
if (indexes.length > 0) this._nodesToTokenIndexes.set(node, indexes);
|
|
});
|
|
this._tokensCache.clear();
|
|
}
|
|
has(node) {
|
|
return this._nodesToTokenIndexes.has(node);
|
|
}
|
|
getIndexes(node) {
|
|
return this._nodesToTokenIndexes.get(node);
|
|
}
|
|
find(node, condition) {
|
|
const indexes = this._nodesToTokenIndexes.get(node);
|
|
if (indexes) {
|
|
for (let k = 0; k < indexes.length; k++) {
|
|
const index = indexes[k];
|
|
const tok = this._tokens[index];
|
|
if (condition(tok, index)) return tok;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
findLastIndex(node, condition) {
|
|
const indexes = this._nodesToTokenIndexes.get(node);
|
|
if (indexes) {
|
|
for (let k = indexes.length - 1; k >= 0; k--) {
|
|
const index = indexes[k];
|
|
const tok = this._tokens[index];
|
|
if (condition(tok, index)) return index;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
findMatching(node, test, occurrenceCount = 0) {
|
|
const indexes = this._nodesToTokenIndexes.get(node);
|
|
if (indexes) {
|
|
if (typeof test === "number") {
|
|
test = String.fromCharCode(test);
|
|
}
|
|
let i = 0;
|
|
const count = occurrenceCount;
|
|
if (count > 1) {
|
|
const cache = this._nodesOccurrencesCountCache.get(node);
|
|
if ((cache == null ? void 0 : cache.test) === test && cache.count < count) {
|
|
i = cache.i + 1;
|
|
occurrenceCount -= cache.count + 1;
|
|
}
|
|
}
|
|
for (; i < indexes.length; i++) {
|
|
const tok = this._tokens[indexes[i]];
|
|
if (this.matchesOriginal(tok, test)) {
|
|
if (occurrenceCount === 0) {
|
|
if (count > 0) {
|
|
this._nodesOccurrencesCountCache.set(node, {
|
|
test,
|
|
count,
|
|
i
|
|
});
|
|
}
|
|
return tok;
|
|
}
|
|
occurrenceCount--;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
matchesOriginal(token, test) {
|
|
if (token.end - token.start !== test.length) return false;
|
|
if (token.value != null) return token.value === test;
|
|
return this._source.startsWith(test, token.start);
|
|
}
|
|
startMatches(node, test) {
|
|
const indexes = this._nodesToTokenIndexes.get(node);
|
|
if (!indexes) return false;
|
|
const tok = this._tokens[indexes[0]];
|
|
if (tok.start !== node.start) return false;
|
|
return this.matchesOriginal(tok, test);
|
|
}
|
|
endMatches(node, test) {
|
|
const indexes = this._nodesToTokenIndexes.get(node);
|
|
if (!indexes) return false;
|
|
const tok = this._tokens[indexes[indexes.length - 1]];
|
|
if (tok.end !== node.end) return false;
|
|
return this.matchesOriginal(tok, test);
|
|
}
|
|
_getTokensIndexesOfNode(node) {
|
|
var _node$declaration;
|
|
if (node.start == null || node.end == null) return [];
|
|
const {
|
|
first,
|
|
last
|
|
} = this._findTokensOfNode(node, 0, this._tokens.length - 1);
|
|
let low = first;
|
|
const children = childrenIterator(node);
|
|
if ((node.type === "ExportNamedDeclaration" || node.type === "ExportDefaultDeclaration") && ((_node$declaration = node.declaration) == null ? void 0 : _node$declaration.type) === "ClassDeclaration") {
|
|
children.next();
|
|
}
|
|
const indexes = [];
|
|
for (const child of children) {
|
|
if (child == null) continue;
|
|
if (child.start == null || child.end == null) continue;
|
|
const childTok = this._findTokensOfNode(child, low, last);
|
|
const high = childTok.first;
|
|
for (let k = low; k < high; k++) indexes.push(k);
|
|
low = childTok.last + 1;
|
|
}
|
|
for (let k = low; k <= last; k++) indexes.push(k);
|
|
return indexes;
|
|
}
|
|
_findTokensOfNode(node, low, high) {
|
|
const cached = this._tokensCache.get(node);
|
|
if (cached) return cached;
|
|
const first = this._findFirstTokenOfNode(node.start, low, high);
|
|
const last = this._findLastTokenOfNode(node.end, first, high);
|
|
this._tokensCache.set(node, {
|
|
first,
|
|
last
|
|
});
|
|
return {
|
|
first,
|
|
last
|
|
};
|
|
}
|
|
_findFirstTokenOfNode(start, low, high) {
|
|
while (low <= high) {
|
|
const mid = high + low >> 1;
|
|
if (start < this._tokens[mid].start) {
|
|
high = mid - 1;
|
|
} else if (start > this._tokens[mid].start) {
|
|
low = mid + 1;
|
|
} else {
|
|
return mid;
|
|
}
|
|
}
|
|
return low;
|
|
}
|
|
_findLastTokenOfNode(end, low, high) {
|
|
while (low <= high) {
|
|
const mid = high + low >> 1;
|
|
if (end < this._tokens[mid].end) {
|
|
high = mid - 1;
|
|
} else if (end > this._tokens[mid].end) {
|
|
low = mid + 1;
|
|
} else {
|
|
return mid;
|
|
}
|
|
}
|
|
return high;
|
|
}
|
|
}
|
|
exports.TokenMap = TokenMap;
|
|
function* childrenIterator(node) {
|
|
if (node.type === "TemplateLiteral") {
|
|
yield node.quasis[0];
|
|
for (let i = 1; i < node.quasis.length; i++) {
|
|
yield node.expressions[i - 1];
|
|
yield node.quasis[i];
|
|
}
|
|
return;
|
|
}
|
|
const keys = VISITOR_KEYS[node.type];
|
|
for (const key of keys) {
|
|
const child = node[key];
|
|
if (!child) continue;
|
|
if (Array.isArray(child)) {
|
|
yield* child;
|
|
} else {
|
|
yield child;
|
|
}
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=token-map.js.map
|