@yinsen/deveco-cli 1.3.1 → 1.3.3-Test.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -1,72 +1,95 @@
1
1
  #!/usr/bin/env node
2
- var Dg=Object.defineProperty;var Rg=(n,e)=>{for(var t in e)Dg(n,t,{get:e[t],enumerable:!0})};import*as ma from"path";import{program as ae}from"commander";import{red as MR}from"colorette";var Vr={LOGIN_TIMEOUT_MS:6e5,HTTP_TIMEOUT_MS:2e4,TOKEN_VALIDITY_DAYS:30},Gi={USER_AGENT:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",ACCEPT_LANGUAGE:"zh-CN"};var ve={APP_ID:"1009",CONFIG_DIR_NAME:".config",APP_NAME:"deveco-cli",TOKEN_FILE_NAME:"token.enc",KEY_FILE_NAME:"token.dek",API_VERSION:"1.0.0",AUTH_SOURCE_DEVECO_CODE:"deveco-code"},G={LOGIN_URL:"https://devecostudio.huawei.com",CN_LOGIN_URL:"https://cn.devecostudio.huawei.com",AUTH_APPLY_PATH:"console/DevEcoIDE/apply",TEMP_TOKEN_CHECK_PATH:"authrouter/auth/api/temptoken/check",JWT_TOKEN_CHECK_PATH:"authrouter/auth/api/jwToken/check",LOGIN_SUCCESS_PATH:"console/DevEcoCLI/loginSuccess",LOGIN_FAILED_PATH:"console/DevEcoCLI/loginFailed",LOGOUT_PATH:"authrouter/auth/api/logout",AGC_TEAM_LIST_URL:"https://connect-api.cloud.huawei.com/api/ups/user-permission-service/v1/user-team-list"},kn={ALGORITHM:"aes-256-gcm",KEY_LENGTH:32,IV_LENGTH:12,KEK_VERSIONS:["kek-v1","kek-v2","kek-v3"]},qr={TMS_URL:"https://terms-drcn.platform.dbankcloud.cn/agreementservice/user",PRIVACY_ID:"20000257",PRIVACY_URL:"https://legal.cloud.huawei.com/terms/scope/huawei/deveco-cli/privacy-statement.htm?code=CN&language=zh-CN&branchid=0&contenttag=default"},Gr={baseUrl:G.LOGIN_URL,authUrl:G.AUTH_APPLY_PATH,tempTokenCheckUrl:G.TEMP_TOKEN_CHECK_PATH,jwtTokenCheckUrl:G.JWT_TOKEN_CHECK_PATH,successRedirectUrl:G.LOGIN_SUCCESS_PATH,failedRedirectUrl:G.LOGIN_FAILED_PATH,logoutUrl:G.LOGOUT_PATH,agcTeamListUrl:G.AGC_TEAM_LIST_URL,appId:ve.APP_ID,timeout:Vr.LOGIN_TIMEOUT_MS,countryCode:"CN"};import{Command as mv}from"commander";import{green as Ha,red as iu,yellow as Ua}from"colorette";import J from"fs";import*as j from"path";import ht from"json5";import*as ha from"fs";import*as we from"path";function p(n){if(process.env.DEVECO_CLI_DEBUG){let e=typeof n=="function"?n():n;console.log(`[DEBUG] ${e}`)}}var S=class n{static ASCII_CONTROL_MAX=31;static ASCII_DELETE=127;static parsePositiveInteger(e,t="value"){let r=e.trim();if(!/^\d+$/.test(r))throw new Error(`${t} must be a positive integer`);let i=Number.parseInt(r,10);if(!Number.isInteger(i)||i<=0)throw new Error(`${t} must be a positive integer`);return i}static getLastLines(e,t){return!t||t<=0?e:e.split(/\r?\n/).slice(-t).join(`
3
- `)}static parseDurationToSeconds(e,t="value"){let i=e.trim().toLowerCase().match(/^(\d+(?:\.\d+)?)([sm])?$/);if(!i)throw new Error(`${t} must be like 30s, 5m or 2.5m (only s/m supported).`);let o=i[1];if((i[2]??"s")==="s")return n.parsePositiveInteger(o,t);if(!/^\d+(?:\.\d)?$/.test(o))throw new Error(`${t} supports a maximum of 1 decimal place for minutes (e.g. 2.5m).`);let a=Number.parseFloat(o);if(!Number.isFinite(a)||a<=0)throw new Error(`${t} must be a positive duration.`);return Math.round(a*60)}static filterLogsByRelativeWindow(e,t,r,i=new Date){if(!t&&!r)return e;let[o,s]=n.resolveTimeBounds(t,r,i),a=e.split(/\r?\n/),c=[],l=!1;for(let d of a){let g=n.extractTimestampFromLogLine(d,i);g&&(l=n.isWithinBounds(g,o,s)),l&&c.push(d)}return c.join(`
4
- `)}static resolveTimeBounds(e,t,r){let i=e?new Date(r.getTime()-e*1e3):null,o=t?new Date(r.getTime()-t*1e3):null;return i&&o?i<o?[i,o]:[o,i]:i?[i,r]:o?[null,o]:[null,null]}static isWithinBounds(e,t,r){let i=e.getTime(),o=t?Math.floor(t.getTime()/1e3)*1e3:null,s=r?Math.floor(r.getTime()/1e3)*1e3+999:null;return!(o!==null&&i<o||s!==null&&i>s)}static extractTimestampFromLogLine(e,t){let r=e.match(/(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})(?:\.(\d{1,6}))?/);if(!r)return null;let i=t.getFullYear(),o=Number.parseInt(r[1],10)-1,s=Number.parseInt(r[2],10),a=Number.parseInt(r[3],10),c=Number.parseInt(r[4],10),l=Number.parseInt(r[5],10),d=r[6]??"0",g=Number.parseInt(d.padEnd(3,"0").slice(0,3),10),v=new Date(i,o,s,a,c,l,g);return v.getTime()>t.getTime()+1440*60*1e3&&v.setFullYear(i-1),v}static assertBundleName(e){if(!/^[A-Za-z0-9_.]{1,128}$/.test(e))throw new Error(`Invalid bundleName: ${JSON.stringify(e)}`)}static assertBundleNameStrict(e){if(e.length<7||e.length>128)throw new Error(`Bundle name length must be 7-128 characters. Current: ${e.length}`);if(e.includes(".."))throw new Error('Bundle name cannot contain consecutive dots (e.g., "com..example").');let t=e.split(".");if(t.length<3)throw new Error("Bundle name must contain at least 3 dot-separated segments.");let r=/^[a-zA-Z0-9_]+$/;for(let i=0;i<t.length;i++){let o=t[i];if(!r.test(o))throw new Error(`Segment "${o}" contains invalid characters. Only letters, digits, and underscores allowed.`);if(i===0){if(!/^[a-zA-Z]/.test(o))throw new Error(`First segment "${o}" must start with a letter (a-z, A-Z).`)}else if(!/^[a-zA-Z0-9]/.test(o))throw new Error(`Segment "${o}" must start with a letter or digit.`);if(!/[a-zA-Z0-9]$/.test(o))throw new Error(`Segment "${o}" must end with a letter or digit.`)}}static assertModuleName(e){this.assertSafeName(e,"module name")}static assertAbilityName(e){this.assertSafeName(e,"ability name")}static assertSafeName(e,t){if(!/^[A-Za-z0-9_.]+$/.test(e))throw new Error(`Invalid ${t}: ${JSON.stringify(e)}`)}static assertHilogToken(e,t){if(!/^[A-Za-z0-9_.:\\-]{1,64}$/.test(e))throw new Error(`Invalid ${t}: ${JSON.stringify(e)}`)}static assertHilogKeyword(e){if(e.length===0||e.length>128)throw new Error(`Invalid keyword: ${JSON.stringify(e)}`);if([...e].some(r=>{let i=r.charCodeAt(0);return i<=n.ASCII_CONTROL_MAX||i===n.ASCII_DELETE}))throw new Error(`Invalid keyword: ${JSON.stringify(e)}`)}static quotePosixShellArg(e){let r=`'${e.replace(/'/g,"'\\''")}'`;return p(`quotePosixShellArg: ${e} -> ${r}`),r}static assertCrashFilename(e){if(!/^\w+-[\w.]+-\d+-\d+$/.test(e))throw new Error(`Invalid crash log filename: ${JSON.stringify(e)}`)}static assertHilogLevel(e){if(!/^[DIWEF]$/.test(e))throw new Error(`Invalid log level: ${e}`)}static resolvePathWithinRoot(e,t){if(we.isAbsolute(t))throw new Error(`Absolute paths are not allowed: ${t}`);let r=we.resolve(we.normalize(e),t);return n.ensurePathWithinRoot(e,r)}static ensurePathWithinRoot(e,t){let r=we.normalize(e),i=we.relative(r,t);if(i.split(we.sep)[0]===".."||we.isAbsolute(i))throw new Error(`Path escapes project root: ${t}`);return t}static isPathEscaping(e){let t=e.replace(/\\/g,"/");return t===".."||t.startsWith("../")||we.isAbsolute(e)}static isPathContained(e,t){let r=we.resolve(t,e),i=we.relative(t,r);return n.isPathEscaping(i)?{contained:!1,reason:`Path traversal project root directory: ${e}`}:{contained:!0}}static isPathContainedWithSymlink(e,t){let r=n.isPathContained(e,t);if(!r.contained)return r;let i;try{i=ha.realpathSync(t)}catch{return{contained:!1,reason:`Project root directory does not exist or cannot be resolved: ${t}`}}let o=we.resolve(i,e),s;try{s=ha.realpathSync(o)}catch{return{contained:!1,reason:`Path does not exist or cannot be resolved: ${o}`}}return n.isPathContained(s,i)}};import Cd from"crypto";import Ye from"fs";import Aa from"os";import Tn from"path";import xg from"https";var Zl={devecoApiTraceUpload:"https://cn.devecostudio.huawei.com/codeGenie/cli/trace/upload"};var zi=class n{static ENDPOINT=Zl.devecoApiTraceUpload;static SENDER="deveco-cli";async upload(e,t){let r={"Content-Type":"application/json",sender:n.SENDER,deviceid:t.replace(/-/g,""),"Content-Length":String(Buffer.byteLength(e,"utf8"))};try{let{body:i}=await this.httpPost(n.ENDPOINT,r,Buffer.from(e,"utf8"),6e4);return n.isSuccess(i)}catch{return!1}}static isSuccess(e){try{let t=JSON.parse(e),r=t?.code??t?.errorCode;return String(r)==="200"}catch{return!1}}async httpPost(e,t,r,i){let o=new URL(e);return new Promise((s,a)=>{let c=xg.request({protocol:o.protocol,hostname:o.hostname,port:o.port||(o.protocol==="https:"?443:80),path:o.pathname+o.search,method:"POST",headers:t,timeout:i},l=>{let d=[];l.on("data",g=>d.push(g)),l.on("end",()=>{s({code:l.statusCode??0,body:Buffer.concat(d).toString("utf8")})})});c.on("timeout",()=>{c.destroy(new Error("request timeout"))}),c.on("error",a),c.write(r),c.end()})}};var Ql={identity:n=>n,camelCase:n=>n,snakeCase:n=>n.replace(/([a-z0-9])([A-Z])/g,"$1_$2").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").toLowerCase()},ga=class{constructor(e={}){this.config=e}config;serialize(e){let t=this.transform(e);return this.config.pretty?JSON.stringify(t,null,2):JSON.stringify(t)}toObject(e){return this.transform(e)}transform(e){if(e==null)return e;if(Array.isArray(e))return e.map(o=>this.transform(o));if(typeof e!="object")return e;let t=this.config.namingStrategy??Ql.identity,r=this.config.fieldNames??{},i={};for(let[o,s]of Object.entries(e)){let a=r[o]??t(o);i[a]=this.transform(s)}return i}},ed=new ga({namingStrategy:Ql.snakeCase,fieldNames:{}});import zr from"crypto";import Ji from"fs";import Lg from"path";var Yi="aes-256-gcm",Ng=12,Og="deveco-cli-trace-file",Mg="trace-file-secret",nd=32;function td(n){try{let e=Ji.readFileSync(n,"utf8").trim();return e&&Buffer.from(e,"base64").length===nd?e:null}catch{return null}}function rd(n){let e=Lg.join(n,Mg),t=td(e);if(t)return ya(t);let r=zr.randomBytes(nd).toString("base64");try{Ji.mkdirSync(n,{recursive:!0});try{Ji.writeFileSync(e,r,{flag:"wx"})}catch{let i=td(e);if(i)return ya(i);Ji.writeFileSync(e,r)}}catch{}return ya(r)}function ya(n){return zr.createHash("sha256").update(Og).update(n).digest()}function va(n,e){let t=zr.randomBytes(Ng),r=zr.createCipheriv(Yi,e,t),i=Buffer.concat([r.update(n,"utf8"),r.final()]),o={version:1,algorithm:Yi,ciphertext:i.toString("base64"),iv:t.toString("base64"),authTag:r.getAuthTag().toString("base64")};return JSON.stringify(o)}function id(n,e){let t;try{t=JSON.parse(n)}catch{return null}if(!_g(t))return n;try{let r=zr.createDecipheriv(Yi,e,Buffer.from(t.iv,"base64"));return r.setAuthTag(Buffer.from(t.authTag,"base64")),Buffer.concat([r.update(Buffer.from(t.ciphertext,"base64")),r.final()]).toString("utf8")}catch{return null}}function _g(n){if(!n||typeof n!="object")return!1;let e=n;return e.version===1&&e.algorithm===Yi&&typeof e.ciphertext=="string"&&typeof e.iv=="string"&&typeof e.authTag=="string"}import*as F from"fs";import*as no from"path";import z from"fs";import*as Ki from"os";import*as M from"path";import jg from"json5";var wa="Huawei";var ad=3;function Xi(n){if(!z.existsSync(n)||!z.statSync(n).isDirectory())return!1;let e=z.existsSync(M.join(n,"build-profile.json5")),t=z.existsSync(M.join(n,"hvigorfile.js"))||z.existsSync(M.join(n,"hvigorfile.ts"));if(!e||!t)return!1;try{let r=z.readFileSync(M.join(n,"build-profile.json5"),"utf-8");return jg.parse(r).app!==void 0}catch{return!1}}function ba(n,e,t){if(e>=t)return null;let r=Fg(n),i=$g(r);if(i)return i;for(let o of r){let s=ba(o,e+1,t);if(s)return s}return null}function Fg(n){try{let e=z.readdirSync(n,{withFileTypes:!0}),t=[];for(let r of e)r.isDirectory()&&t.push(M.join(n,r.name));return t}catch{return[]}}function $g(n){for(let e of n)if(Xi(e))return e;return null}function Ct(n){if(!n||n.trim()==="")return null;let e=M.resolve(n),t;try{t=z.realpathSync(e)}catch{t=e}if(!z.existsSync(t))return null;if(Xi(t))return t;let r=t;for(let i=1;i<=3;i++){let o=M.dirname(r);if(o===r)break;if(Xi(o))return o;r=o}if(z.statSync(t).isDirectory()){let i=ba(t,0,ad);if(i)return i}return null}function Zi(n){if(!n||n.trim()==="")return null;let e=M.resolve(n),t;try{t=z.realpathSync(e)}catch{t=e}return!z.existsSync(t)||!z.statSync(t).isDirectory()?null:Xi(t)?t:ba(t,0,ad)}var od="DevEco Studio";function cd(){if(process.platform==="win32"){let n=[M.join("C:\\Program Files",wa,od),M.join("C:\\Program Files (x86)",wa,od)];return sd(n)}if(process.platform==="darwin"){let n=["/Applications/DevEco Studio.app",M.join(process.env.HOME??"","Applications","DevEco Studio.app")];return sd(n)}return null}function sd(n){for(let e of n)if(z.existsSync(e))return e;return null}function Jr(n,e){let t=e?M.join("standardIndex","index.js"):"index.js";return z.existsSync(M.join(n,"ace-server"))?M.join(n,"ace-server","out",t):M.join(n,"out",t)}function Qi(n){return z.existsSync(Jr(n,!0))}var Hg=[".idea",".deveco","cxx","compile_commands.json"];function In(n){return M.join(n,...Hg)}function ld(n){return new Promise(e=>setTimeout(e,n))}var Ug=new Set(["c","cc","cpp","cxx","h","hh","hpp","hxx"]);function An(n){let e=M.extname(n).replace(/^\./,"").toLowerCase();return e.length>0&&Ug.has(e)}function eo(n){return M.extname(n).replace(/^\./,"").toLowerCase()==="c"?"c":"cpp"}function fe(n){let e=n.replace(/\\/g,"/");return process.platform==="win32"&&/^[a-zA-Z]:/.test(e)&&(e=e[0].toUpperCase()+e.slice(1)),e}function Wg(n){return fe(n)}function Dn(n){let e=Wg(n);return e.startsWith("/")?`file://${e}`:`file:///${e}`}function Wt(){if(process.platform==="win32"){let n=process.env.LOCALAPPDATA??M.join(Ki.homedir(),"AppData","Local");return M.join(n,"devecocli-mcp-server","logs")}return process.platform==="darwin"?M.join(Ki.homedir(),"Library","Logs","devecocli-mcp-server"):M.join(Ki.homedir(),".local","share","devecocli-mcp-server","logs")}function dd(n,e){let t=Bg(e),r=Vg(t,n);if(r!==null)return r;let i=Date.now(),s=`${n.replace(/:/g,"\\:")}=${i}`,a=qg(t,n,s);return Gg(e,a),i}function Bg(n){let e;try{e=z.readFileSync(n,"utf8")}catch{e=""}return e.length>0?e.split(/\r?\n/):[]}function Vg(n,e){for(let t of n){let r=t.indexOf("=");if(r<=0||t.slice(0,r).replace(/\\:/g,":")!==e)continue;let o=parseInt(t.slice(r+1),10);return Number.isFinite(o)&&o>0?o:null}return null}function qg(n,e,t){let r=!1,i=n.map(o=>{if(r)return o;let s=o.indexOf("=");return s<=0?o:o.slice(0,s).replace(/\\:/g,":")===e?(r=!0,t):o});return r||i.push(t),i}function Gg(n,e){try{z.mkdirSync(M.dirname(n),{recursive:!0})}catch{}try{z.writeFileSync(n,e.join(`
2
+ var Cy=Object.defineProperty;var ky=(r,e)=>{for(var t in e)Cy(r,t,{get:e[t],enumerable:!0})};import*as Na from"path";import{program as le}from"commander";import{red as ox}from"colorette";var Zn={LOGIN_TIMEOUT_MS:6e5,HTTP_TIMEOUT_MS:2e4,TOKEN_VALIDITY_DAYS:30},li={USER_AGENT:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",ACCEPT_LANGUAGE:"zh-CN"};var be={APP_ID:"1009",CONFIG_DIR_NAME:".config",APP_NAME:"deveco-cli",TOKEN_FILE_NAME:"token.enc",KEY_FILE_NAME:"token.dek",API_VERSION:"1.0.0",AUTH_SOURCE_DEVECO_CODE:"deveco-code"},Y={LOGIN_URL:"https://devecostudio.huawei.com",CN_LOGIN_URL:"https://cn.devecostudio.huawei.com",AUTH_APPLY_PATH:"console/DevEcoIDE/apply",TEMP_TOKEN_CHECK_PATH:"authrouter/auth/api/temptoken/check",JWT_TOKEN_CHECK_PATH:"authrouter/auth/api/jwToken/check",LOGIN_SUCCESS_PATH:"console/DevEcoCLI/loginSuccess",LOGIN_FAILED_PATH:"console/DevEcoCLI/loginFailed",LOGOUT_PATH:"authrouter/auth/api/logout",AGC_TEAM_LIST_URL:"https://connect-api.cloud.huawei.com/api/ups/user-permission-service/v1/user-team-list"},Tr={ALGORITHM:"aes-256-gcm",KEY_LENGTH:32,IV_LENGTH:12,KEK_VERSIONS:["kek-v1","kek-v2","kek-v3"]},Qn={TMS_URL:"https://terms-drcn.platform.dbankcloud.cn/agreementservice/user",PRIVACY_ID:"20000257",PRIVACY_URL:"https://legal.cloud.huawei.com/terms/scope/huawei/deveco-cli/privacy-statement.htm?code=CN&language=zh-CN&branchid=0&contenttag=default"},eo={baseUrl:Y.LOGIN_URL,authUrl:Y.AUTH_APPLY_PATH,tempTokenCheckUrl:Y.TEMP_TOKEN_CHECK_PATH,jwtTokenCheckUrl:Y.JWT_TOKEN_CHECK_PATH,successRedirectUrl:Y.LOGIN_SUCCESS_PATH,failedRedirectUrl:Y.LOGIN_FAILED_PATH,logoutUrl:Y.LOGOUT_PATH,agcTeamListUrl:Y.AGC_TEAM_LIST_URL,appId:be.APP_ID,timeout:Zn.LOGIN_TIMEOUT_MS,countryCode:"CN"};import{Command as lw}from"commander";import{green as cc,red as Ou,yellow as lc}from"colorette";import X from"fs";import*as j from"path";import Pt from"json5";import*as _a from"fs";import*as Se from"path";function u(r){if(process.env.DEVECO_CLI_DEBUG){let e=typeof r=="function"?r():r;console.log(`[DEBUG] ${e}`)}}var S=class r{static ASCII_CONTROL_MAX=31;static ASCII_DELETE=127;static parsePositiveInteger(e,t="value"){let n=e.trim();if(!/^\d+$/.test(n))throw new Error(`${t} must be a positive integer`);let o=Number.parseInt(n,10);if(!Number.isInteger(o)||o<=0)throw new Error(`${t} must be a positive integer`);return o}static getLastLines(e,t){return!t||t<=0?e:e.split(/\r?\n/).slice(-t).join(`
3
+ `)}static parseDurationToSeconds(e,t="value"){let o=e.trim().toLowerCase().match(/^(\d+(?:\.\d+)?)([sm])?$/);if(!o)throw new Error(`${t} must be like 30s, 5m or 2.5m (only s/m supported).`);let i=o[1];if((o[2]??"s")==="s")return r.parsePositiveInteger(i,t);if(!/^\d+(?:\.\d)?$/.test(i))throw new Error(`${t} supports a maximum of 1 decimal place for minutes (e.g. 2.5m).`);let a=Number.parseFloat(i);if(!Number.isFinite(a)||a<=0)throw new Error(`${t} must be a positive duration.`);return Math.round(a*60)}static filterLogsByRelativeWindow(e,t,n,o=new Date){if(!t&&!n)return e;let[i,s]=r.resolveTimeBounds(t,n,o),a=e.split(/\r?\n/),c=[],l=!1;for(let d of a){let g=r.extractTimestampFromLogLine(d,o);g&&(l=r.isWithinBounds(g,i,s)),l&&c.push(d)}return c.join(`
4
+ `)}static resolveTimeBounds(e,t,n){let o=e?new Date(n.getTime()-e*1e3):null,i=t?new Date(n.getTime()-t*1e3):null;return o&&i?o<i?[o,i]:[i,o]:o?[o,n]:i?[null,i]:[null,null]}static isWithinBounds(e,t,n){let o=e.getTime(),i=t?Math.floor(t.getTime()/1e3)*1e3:null,s=n?Math.floor(n.getTime()/1e3)*1e3+999:null;return!(i!==null&&o<i||s!==null&&o>s)}static extractTimestampFromLogLine(e,t){let n=e.match(/(\d{2})-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})(?:\.(\d{1,6}))?/);if(!n)return null;let o=t.getFullYear(),i=Number.parseInt(n[1],10)-1,s=Number.parseInt(n[2],10),a=Number.parseInt(n[3],10),c=Number.parseInt(n[4],10),l=Number.parseInt(n[5],10),d=n[6]??"0",g=Number.parseInt(d.padEnd(3,"0").slice(0,3),10),v=new Date(o,i,s,a,c,l,g);return v.getTime()>t.getTime()+1440*60*1e3&&v.setFullYear(o-1),v}static assertBundleName(e){if(!/^[A-Za-z0-9_.]{1,128}$/.test(e))throw new Error(`Invalid bundleName: ${JSON.stringify(e)}`)}static assertBundleNameStrict(e){if(e.length<7||e.length>128)throw new Error(`Bundle name length must be 7-128 characters. Current: ${e.length}`);if(e.includes(".."))throw new Error('Bundle name cannot contain consecutive dots (e.g., "com..example").');let t=e.split(".");if(t.length<3)throw new Error("Bundle name must contain at least 3 dot-separated segments.");let n=/^[a-zA-Z0-9_]+$/;for(let o=0;o<t.length;o++){let i=t[o];if(!n.test(i))throw new Error(`Segment "${i}" contains invalid characters. Only letters, digits, and underscores allowed.`);if(o===0){if(!/^[a-zA-Z]/.test(i))throw new Error(`First segment "${i}" must start with a letter (a-z, A-Z).`)}else if(!/^[a-zA-Z0-9]/.test(i))throw new Error(`Segment "${i}" must start with a letter or digit.`);if(!/[a-zA-Z0-9]$/.test(i))throw new Error(`Segment "${i}" must end with a letter or digit.`)}}static assertModuleName(e){this.assertSafeName(e,"module name")}static assertAbilityName(e){this.assertSafeName(e,"ability name")}static assertSafeName(e,t){if(!/^[A-Za-z0-9_.]+$/.test(e))throw new Error(`Invalid ${t}: ${JSON.stringify(e)}`)}static assertHilogToken(e,t){if(!/^[A-Za-z0-9_.:\\-]{1,64}$/.test(e))throw new Error(`Invalid ${t}: ${JSON.stringify(e)}`)}static assertHilogKeyword(e){if(e.length===0||e.length>128)throw new Error(`Invalid keyword: ${JSON.stringify(e)}`);if([...e].some(n=>{let o=n.charCodeAt(0);return o<=r.ASCII_CONTROL_MAX||o===r.ASCII_DELETE}))throw new Error(`Invalid keyword: ${JSON.stringify(e)}`)}static quotePosixShellArg(e){let n=`'${e.replace(/'/g,"'\\''")}'`;return u(`quotePosixShellArg: ${e} -> ${n}`),n}static assertCrashFilename(e){if(!/^\w+-[\w.]+-\d+-\d+$/.test(e))throw new Error(`Invalid crash log filename: ${JSON.stringify(e)}`)}static assertHilogLevel(e){if(!/^[DIWEF]$/.test(e))throw new Error(`Invalid log level: ${e}`)}static resolvePathWithinRoot(e,t){if(Se.isAbsolute(t))throw new Error(`Absolute paths are not allowed: ${t}`);let n=Se.resolve(Se.normalize(e),t);return r.ensurePathWithinRoot(e,n)}static ensurePathWithinRoot(e,t){let n=Se.normalize(e),o=Se.relative(n,t);if(o.split(Se.sep)[0]===".."||Se.isAbsolute(o))throw new Error(`Path escapes project root: ${t}`);return t}static isPathEscaping(e){let t=e.replace(/\\/g,"/");return t===".."||t.startsWith("../")||Se.isAbsolute(e)}static isPathContained(e,t){let n=Se.resolve(t,e),o=Se.relative(t,n);return r.isPathEscaping(o)?{contained:!1,reason:`Path traversal project root directory: ${e}`}:{contained:!0}}static isPathContainedWithSymlink(e,t){let n=r.isPathContained(e,t);if(!n.contained)return n;let o;try{o=_a.realpathSync(t)}catch{return{contained:!1,reason:`Project root directory does not exist or cannot be resolved: ${t}`}}let i=Se.resolve(o,e),s;try{s=_a.realpathSync(i)}catch{return{contained:!1,reason:`Path does not exist or cannot be resolved: ${i}`}}return r.isPathContained(s,o)}};import tu from"crypto";import et from"fs";import Ja from"os";import Or from"path";import Ay from"https";var Rd={devecoApiTraceUpload:"https://cn.devecostudio.huawei.com/codeGenie/cli/trace/upload"};var di=class r{static ENDPOINT=Rd.devecoApiTraceUpload;static SENDER="deveco-cli";async upload(e,t){let n={"Content-Type":"application/json",sender:r.SENDER,deviceid:t.replace(/-/g,""),"Content-Length":String(Buffer.byteLength(e,"utf8"))};try{let{body:o}=await this.httpPost(r.ENDPOINT,n,Buffer.from(e,"utf8"),6e4);return r.isSuccess(o)}catch{return!1}}static isSuccess(e){try{let t=JSON.parse(e),n=t?.code??t?.errorCode;return String(n)==="200"}catch{return!1}}async httpPost(e,t,n,o){let i=new URL(e);return new Promise((s,a)=>{let c=Ay.request({protocol:i.protocol,hostname:i.hostname,port:i.port||(i.protocol==="https:"?443:80),path:i.pathname+i.search,method:"POST",headers:t,timeout:o},l=>{let d=[];l.on("data",g=>d.push(g)),l.on("end",()=>{s({code:l.statusCode??0,body:Buffer.concat(d).toString("utf8")})})});c.on("timeout",()=>{c.destroy(new Error("request timeout"))}),c.on("error",a),c.write(n),c.end()})}};var Td={identity:r=>r,camelCase:r=>r,snakeCase:r=>r.replace(/([a-z0-9])([A-Z])/g,"$1_$2").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").toLowerCase()},ja=class{constructor(e={}){this.config=e}serialize(e){let t=this.transform(e);return this.config.pretty?JSON.stringify(t,null,2):JSON.stringify(t)}toObject(e){return this.transform(e)}transform(e){if(e==null)return e;if(Array.isArray(e))return e.map(i=>this.transform(i));if(typeof e!="object")return e;let t=this.config.namingStrategy??Td.identity,n=this.config.fieldNames??{},o={};for(let[i,s]of Object.entries(e)){let a=n[i]??t(i);o[a]=this.transform(s)}return o}},xd=new ja({namingStrategy:Td.snakeCase,fieldNames:{}});import to from"crypto";import ui from"fs";import Dy from"path";var pi="aes-256-gcm",Ry=12,Ty="deveco-cli-trace-file",xy="trace-file-secret",Nd=32;function Ld(r){try{let e=ui.readFileSync(r,"utf8").trim();return e&&Buffer.from(e,"base64").length===Nd?e:null}catch{return null}}function Md(r){let e=Dy.join(r,xy),t=Ld(e);if(t)return Fa(t);let n=to.randomBytes(Nd).toString("base64");try{ui.mkdirSync(r,{recursive:!0});try{ui.writeFileSync(e,n,{flag:"wx"})}catch{let o=Ld(e);if(o)return Fa(o);ui.writeFileSync(e,n)}}catch{}return Fa(n)}function Fa(r){return to.createHash("sha256").update(Ty).update(r).digest()}function $a(r,e){let t=to.randomBytes(Ry),n=to.createCipheriv(pi,e,t),o=Buffer.concat([n.update(r,"utf8"),n.final()]),i={version:1,algorithm:pi,ciphertext:o.toString("base64"),iv:t.toString("base64"),authTag:n.getAuthTag().toString("base64")};return JSON.stringify(i)}function Od(r,e){let t;try{t=JSON.parse(r)}catch{return null}if(!Ly(t))return r;try{let n=to.createDecipheriv(pi,e,Buffer.from(t.iv,"base64"));return n.setAuthTag(Buffer.from(t.authTag,"base64")),Buffer.concat([n.update(Buffer.from(t.ciphertext,"base64")),n.final()]).toString("utf8")}catch{return null}}function Ly(r){if(!r||typeof r!="object")return!1;let e=r;return e.version===1&&e.algorithm===pi&&typeof e.ciphertext=="string"&&typeof e.iv=="string"&&typeof e.authTag=="string"}import*as F from"fs";import*as wi from"path";import K from"fs";import*as fi from"os";import*as O from"path";import Ny from"json5";var Ha="Huawei";var Fd=3;function mi(r){if(!K.existsSync(r)||!K.statSync(r).isDirectory())return!1;let e=K.existsSync(O.join(r,"build-profile.json5")),t=K.existsSync(O.join(r,"hvigorfile.js"))||K.existsSync(O.join(r,"hvigorfile.ts"));if(!e||!t)return!1;try{let n=K.readFileSync(O.join(r,"build-profile.json5"),"utf-8");return Ny.parse(n).app!==void 0}catch{return!1}}function Ua(r,e,t){if(e>=t)return null;let n=My(r),o=Oy(n);if(o)return o;for(let i of n){let s=Ua(i,e+1,t);if(s)return s}return null}function My(r){try{let e=K.readdirSync(r,{withFileTypes:!0}),t=[];for(let n of e)n.isDirectory()&&t.push(O.join(r,n.name));return t}catch{return[]}}function Oy(r){for(let e of r)if(mi(e))return e;return null}function Lt(r){if(!r||r.trim()==="")return null;let e=O.resolve(r),t;try{t=K.realpathSync(e)}catch{t=e}if(!K.existsSync(t))return null;if(mi(t))return t;let n=t;for(let o=1;o<=3;o++){let i=O.dirname(n);if(i===n)break;if(mi(i))return i;n=i}if(K.statSync(t).isDirectory()){let o=Ua(t,0,Fd);if(o)return o}return null}function hi(r){if(!r||r.trim()==="")return null;let e=O.resolve(r),t;try{t=K.realpathSync(e)}catch{t=e}return!K.existsSync(t)||!K.statSync(t).isDirectory()?null:mi(t)?t:Ua(t,0,Fd)}var _d="DevEco Studio";function $d(){if(process.platform==="win32"){let r=[O.join("C:\\Program Files",Ha,_d),O.join("C:\\Program Files (x86)",Ha,_d)];return jd(r)}if(process.platform==="darwin"){let r=["/Applications/DevEco Studio.app",O.join(process.env.HOME??"","Applications","DevEco Studio.app")];return jd(r)}return null}function jd(r){for(let e of r)if(K.existsSync(e))return e;return null}function ro(r,e){let t=e?O.join("standardIndex","index.js"):"index.js";return K.existsSync(O.join(r,"ace-server"))?O.join(r,"ace-server","out",t):O.join(r,"out",t)}function gi(r){return K.existsSync(ro(r,!0))}var _y=[".idea",".deveco","cxx","compile_commands.json"];function xr(r){return O.join(r,..._y)}function Hd(r){return new Promise(e=>setTimeout(e,r))}var jy=new Set(["c","cc","cpp","cxx","h","hh","hpp","hxx"]);function Lr(r){let e=O.extname(r).replace(/^\./,"").toLowerCase();return e.length>0&&jy.has(e)}function yi(r){return O.extname(r).replace(/^\./,"").toLowerCase()==="c"?"c":"cpp"}function ge(r){let e=r.replace(/\\/g,"/");return process.platform==="win32"&&/^[a-zA-Z]:/.test(e)&&(e=e[0].toUpperCase()+e.slice(1)),e}function Fy(r){return ge(r)}function Nr(r){let e=Fy(r);return e.startsWith("/")?`file://${e}`:`file:///${e}`}function Kt(){if(process.platform==="win32"){let r=process.env.LOCALAPPDATA??O.join(fi.homedir(),"AppData","Local");return O.join(r,"devecocli-mcp-server","logs")}return process.platform==="darwin"?O.join(fi.homedir(),"Library","Logs","devecocli-mcp-server"):O.join(fi.homedir(),".local","share","devecocli-mcp-server","logs")}function Ud(r,e){let t=$y(e),n=Hy(t,r);if(n!==null)return n;let o=Date.now(),s=`${r.replace(/:/g,"\\:")}=${o}`,a=Uy(t,r,s);return By(e,a),o}function $y(r){let e;try{e=K.readFileSync(r,"utf8")}catch{e=""}return e.length>0?e.split(/\r?\n/):[]}function Hy(r,e){for(let t of r){let n=t.indexOf("=");if(n<=0||t.slice(0,n).replace(/\\:/g,":")!==e)continue;let i=parseInt(t.slice(n+1),10);return Number.isFinite(i)&&i>0?i:null}return null}function Uy(r,e,t){let n=!1,o=r.map(i=>{if(n)return i;let s=i.indexOf("=");return s<=0?i:i.slice(0,s).replace(/\\:/g,":")===e?(n=!0,t):i});return n||o.push(t),o}function By(r,e){try{K.mkdirSync(O.dirname(r),{recursive:!0})}catch{}try{K.writeFileSync(r,e.join(`
5
5
  `)+`
6
- `,"utf8")}catch{}}function Sa(n,e,t="[Cleanup]"){try{let r=M.dirname(n);if(!z.existsSync(r))return;let i=Date.now();for(let o of z.readdirSync(r,{withFileTypes:!0}))o.isDirectory()&&zg(M.join(r,o.name),i,e,t)}catch{}}function zg(n,e,t,r){try{let{mtimeMs:i}=z.statSync(n);if(e-i<=t)return;z.rmSync(n,{recursive:!0,force:!0});let o=Math.floor((e-i)/1e3);console.error(`${r} Removed expired dir (age ${Math.floor(o/86400)}d ${Math.floor(o%86400/3600)}h): ${n}`)}catch(i){console.error(`${r} Failed to remove expired dir ${n}: ${i}`)}}var ud="mcp-server.log",Jg="mcp-server",Yg={maxSize:10*1024*1024,maxFiles:4},Ea=class n{fd=null;logDir=null;currentLogFile=null;mode;rotationOptions;currentFileSize=0;currentDate="";isRotating=!1;minLevel;static LEVEL_ORDER={debug:0,info:1,warn:2,error:3};constructor(e,t){this.rotationOptions={...Yg,...t},this.minLevel=e?"debug":"info",e?(this.mode="console",this.logDir=null,this.currentLogFile=null):(this.mode="file",this.logDir=Wt(),this.currentLogFile=no.join(this.logDir,ud),F.existsSync(this.logDir)||F.mkdirSync(this.logDir,{recursive:!0}),this.cleanupOrphanLogFiles(),this.openLogFile())}getCurrentDateString(){let e=new Date,t=e.getFullYear(),r=String(e.getMonth()+1).padStart(2,"0"),i=String(e.getDate()).padStart(2,"0");return`${t}-${r}-${i}`}getRotatedFileName(e,t){return no.join(this.logDir,`${Jg}-${e}.log.${t}`)}fileExists(e){try{return F.accessSync(e,F.constants.F_OK),!0}catch{return!1}}cleanupOrphanLogFiles(){if(this.logDir)try{let e=F.readdirSync(this.logDir),t=[];for(let i of e)if(i===ud||/^mcp-server-\d{4}-\d{2}-\d{2}\.log\.\d+$/.test(i)){let o=no.join(this.logDir,i),s=F.statSync(o);t.push({name:i,mtime:s.mtime,path:o})}t.sort((i,o)=>o.mtime.getTime()-i.mtime.getTime());let r=1+this.rotationOptions.maxFiles;for(let i=r;i<t.length;i++)try{F.unlinkSync(t[i].path)}catch{}}catch{}}rotateLog(){if(!(this.isRotating||!this.logDir||!this.currentLogFile)){this.isRotating=!0;try{if(this.closeLogFile(),!this.fileExists(this.currentLogFile)){this.isRotating=!1,this.openLogFile();return}let e=this.getCurrentDateString(),t=this.getRotatedFileName(e,this.rotationOptions.maxFiles);this.fileExists(t)&&F.unlinkSync(t);for(let i=this.rotationOptions.maxFiles-1;i>=1;i--){let o=this.getRotatedFileName(e,i),s=this.getRotatedFileName(e,i+1);this.fileExists(o)&&F.renameSync(o,s)}let r=this.getRotatedFileName(e,1);F.renameSync(this.currentLogFile,r),this.cleanupOrphanLogFiles(),this.openLogFile()}catch{this.openLogFile()}finally{this.isRotating=!1}}}openLogFile(){if(this.currentLogFile){this.currentDate=this.getCurrentDateString();try{if(this.fileExists(this.currentLogFile)){let e=F.statSync(this.currentLogFile);this.currentFileSize=e.size}else this.currentFileSize=0}catch{this.currentFileSize=0}try{this.fd=F.openSync(this.currentLogFile,"a")}catch{this.fd=null}}}closeLogFile(){if(this.fd!==null){try{F.closeSync(this.fd)}catch{}this.fd=null}}checkRotation(e){let t=this.getCurrentDateString();this.currentDate&&this.currentDate!==t&&(this.rotateLog(),this.currentDate=t),this.currentFileSize+=e,this.currentFileSize>=this.rotationOptions.maxSize&&this.rotateLog()}write(e,t,...r){if(this.mode==="silent"||n.LEVEL_ORDER[e]<n.LEVEL_ORDER[this.minLevel])return;let i=r.map(c=>c instanceof Error?`${c.name}: ${c.message}`:typeof c=="object"?JSON.stringify(c,null,2):String(c)).join(" "),o=i?`${t} ${i}`:t,a=`[${new Date().toLocaleString("sv-SE",{timeZone:"Asia/Shanghai",hour12:!1})+"."+String(new Date().getMilliseconds()).padStart(3,"0")}] [MCP/${e.toUpperCase()}] ${o}
7
- `;if(this.mode==="file"&&this.currentLogFile){if(this.fd===null&&this.openLogFile(),this.fd!==null)try{let c=Buffer.from(a);F.writeSync(this.fd,c),this.checkRotation(c.byteLength)}catch{this.closeLogFile(),this.openLogFile()}}else this.mode==="console"&&process.stderr.write(a)}debug(e,...t){this.write("debug",e,...t)}info(e,...t){this.write("info",e,...t)}warn(e,...t){this.write("warn",e,...t)}error(e,...t){this.write("error",e,...t)}dispose(){this.closeLogFile()}flush(){if(!(this.mode!=="file"||this.fd===null))try{F.fsyncSync(this.fd)}catch{}}getLogFilePath(){return this.currentLogFile}getLogDirectory(){return this.logDir}},Je=null;function Rn(n=!1){Je&&Je.dispose(),Je=new Ea(n)}function pd(){Je&&(Je.dispose(),Je=null)}function fd(){Je&&Je.flush()}function md(){return Je?.getLogFilePath()??null}function hd(){return Je?.getLogDirectory()??null}function to(){return Je||Rn(!1),Je}var h={debug:(n,...e)=>to().debug(n,...e),info:(n,...e)=>to().info(n,...e),warn:(n,...e)=>to().warn(n,...e),error:(n,...e)=>to().error(n,...e)};import Pa from"fs";import gd from"path";var Yr=300*1e3,Kr=3600*1e3,Ca=10080*60*1e3;function Bt(){let n=process.env.DEVECO_CLI_DISABLE_TELEMETRY;return n==="1"||n==="true"}var Kg="upload-state.json";function yd(n){return gd.join(n,Kg)}function Xg(){return{firstEventAt:null,lastUploadAt:null,lastRetryAt:null}}function ro(n){try{let e=Pa.readFileSync(yd(n),"utf8"),t=JSON.parse(e);return{firstEventAt:typeof t.firstEventAt=="number"?t.firstEventAt:null,lastUploadAt:typeof t.lastUploadAt=="number"?t.lastUploadAt:null,lastRetryAt:typeof t.lastRetryAt=="number"?t.lastRetryAt:null}}catch{return Xg()}}function ka(n,e){try{Pa.writeFileSync(yd(n),JSON.stringify(e),"utf8")}catch{}}function vd(n){let e=ro(n);e.firstEventAt===null&&(e.firstEventAt=Date.now(),ka(n,e))}function wd(n){let e=ro(n);e.lastUploadAt=Date.now(),e.firstEventAt=null,ka(n,e)}function bd(n){let e=ro(n);e.lastRetryAt=Date.now(),ka(n,e)}function Ia(n){let e=n.match(/^telemetry-(\d{4})-(\d{2})-(\d{2})\.txt$/);if(!e)return null;let t=Date.parse(`${e[1]}-${e[2]}-${e[3]}T00:00:00`);return Number.isFinite(t)?t:null}function Zg(n,e=Date.now()){let t=gd.join(n,"failed"),r;try{r=Pa.readdirSync(t)}catch{return!1}for(let i of r){if(!i.startsWith("telemetry-")||!i.endsWith(".txt"))continue;let o=Ia(i);if(o!==null&&e-o<=Ca)return!0}return!1}function Sd(n,e=Date.now()){let t=ro(n);return!!(t.firstEventAt!==null&&e-t.firstEventAt>=Yr||Zg(n,e)&&(t.lastRetryAt===null||e-t.lastRetryAt>=Kr))}import Qg from"crypto";import io from"fs";import ey from"path";var ty="install-id";function ny(n){return ey.join(n,ty)}function Ed(n){try{let e=io.readFileSync(n,"utf8").trim();return ry(e)?e:null}catch{return null}}function ry(n){return/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(n)}function Pd(n){let e=ny(n),t=Ed(e);if(t)return t;let r=Qg.randomUUID();try{io.mkdirSync(n,{recursive:!0});try{io.writeFileSync(e,r,{flag:"wx"})}catch{let i=Ed(e);if(i)return i;io.writeFileSync(e,r)}}catch{}return r}var Xr=class n{static MAX_BATCH=200;static MAX_PAYLOAD_BYTES=Math.floor(1.7*1024*1024);static TRACE_OS_VERSION="1.0";static COUNTRY_CODE="CN";static EVENT_PREFIX="devecocli_";uploader=new zi;storageDir="";failedDir="";installId="";disabled=Bt();traceFileKey=Buffer.alloc(0);sessionId=Cd.randomUUID();cliVersion="";devecoStudioVersion=null;sourceType="";cltVersion=null;nodeVersion="";initialTimer=null;intervalTimer=null;retryInitialTimer=null;retryTimer=null;flushChain=Promise.resolve();constructor(){h.info(`[telemetry] instance created, sessionId=${this.sessionId}`)}init(e){this.storageDir=e,this.failedDir=Tn.join(e,"failed"),this.cliVersion="1.3.1",this.nodeVersion=process.version,this.installId=Pd(e).replace(/-/g,""),this.traceFileKey=rd(e),Ye.mkdirSync(e,{recursive:!0}),Ye.mkdirSync(this.failedDir,{recursive:!0}),h.info(`[telemetry] init: dir=${e}, failedDir=${this.failedDir}, cliVersion=${this.cliVersion}, os=${this.resolveOsName()}, arch=${this.resolveOsArch()}, node=${this.nodeVersion}`)}setStudioVersion(e){this.devecoStudioVersion=e,h.info(`[telemetry] studio version set: ${e}`)}setSourceType(e){this.sourceType=e,h.info(`[telemetry] sourceType set: ${e}`)}setCltVersion(e){this.cltVersion=e,h.info(`[telemetry] CLT version set: ${e}`)}async track(e,t){if(this.disabled)return typeof t=="function"?t():void 0;if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");if(!t){await this.record(e,0,!0,null);return}if(typeof t!="function"){let o=t;await this.record(e,o.duration_ms,o.success,o.error_code);return}let r=t,i=Date.now();try{let o=await r(),s=Date.now()-i;return await this.record(e,s,!0,null),o}catch(o){let s=Date.now()-i,a=this.toErrorCode(o);throw await this.record(e,s,!1,a),o}}async record(e,t,r,i){let o=this.buildTraceEvent(e,t,r,i);try{let s=va(JSON.stringify(o),this.traceFileKey);await Ye.promises.appendFile(this.currentFile(),s+`
8
- `,"utf8"),vd(this.storageDir)}catch{}}buildTraceEvent(e,t,r,i){let o=`${n.EVENT_PREFIX}${e.event}`,s=ed.toObject(e);return s&&typeof s=="object"&&delete s.event,{countryCode:n.COUNTRY_CODE,event:o,eventtime:String(Date.now()),properties:{uid:this.installId,trace_uuid:Cd.randomUUID(),trace_os_version:n.TRACE_OS_VERSION,os_arch:this.resolveOsArch(),action:o,trace_os_name:this.resolveOsName(),version:`${this.cliVersion}_${this.resolveOsSuffix()}`,deveco_studio_version:this.formatVersion(this.devecoStudioVersion),command_line_version:this.formatVersion(this.cltVersion),source_type:this.sourceType,session_id:this.sessionId,node_version:this.nodeVersion,duration_ms:t,success:r,error_code:i,event_detail:s}}}toErrorCode(e){return e instanceof Error?e.code??e.name:"UnknownError"}resolveOsArch(){let e=Aa.arch();return e==="x64"?"amd64":e}resolveOsName(){switch(process.platform){case"win32":{let e=Aa.release().split(".");return(parseInt(e[e.length-1],10)||0)>=22e3?"Windows 11":"Windows 10"}case"darwin":return"macOS";case"linux":return"Linux";default:return process.platform}}resolveOsSuffix(){switch(process.platform){case"win32":return"windows";case"darwin":return Aa.arch()==="arm64"?"mac_arm":"mac";default:return"linux"}}formatVersion(e){return e?`${e}_${this.resolveOsSuffix()}`:""}dateString(){let e=new Date,t=String(e.getMonth()+1).padStart(2,"0"),r=String(e.getDate()).padStart(2,"0");return`${e.getFullYear()}-${t}-${r}`}currentFile(){return Tn.join(this.storageDir,`telemetry-${this.dateString()}.txt`)}startScheduler(){if(this.stopScheduler(),this.disabled){h.info("[telemetry] scheduler not started (telemetry disabled)");return}h.info(`[telemetry] scheduler started (flush every ${Yr/1e3}s, retry failed every ${Kr/1e3}s)`),this.initialTimer=setTimeout(()=>{this.flush().catch(()=>{}),this.intervalTimer=setInterval(()=>{this.flush().catch(()=>{})},Yr)},Yr),this.retryInitialTimer=setTimeout(()=>{this.retryFailed().catch(()=>{}),this.retryTimer=setInterval(()=>{this.retryFailed().catch(()=>{})},Kr)},Kr)}stopScheduler(){this.initialTimer&&(clearTimeout(this.initialTimer),this.initialTimer=null),this.intervalTimer&&(clearInterval(this.intervalTimer),this.intervalTimer=null),this.retryInitialTimer&&(clearTimeout(this.retryInitialTimer),this.retryInitialTimer=null),this.retryTimer&&(clearInterval(this.retryTimer),this.retryTimer=null),h.info("[telemetry] scheduler stopped")}async flush(){return this.disabled?!0:this.runExclusive(()=>this.performFlush())}async performFlush(){if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");let e=await this.listPendingFiles(),t=!0;for(let r of e)await this.flushFile(r)||(t=!1);return wd(this.storageDir),t}async retryFailed(){return this.disabled?!0:this.runExclusive(()=>this.performRetryFailed())}async performRetryFailed(){if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");let e=Date.now(),t;try{t=await Ye.promises.readdir(this.failedDir)}catch{return!0}let r=t.filter(o=>o.startsWith("telemetry-")&&o.endsWith(".txt")).map(o=>Tn.join(this.failedDir,o)),i=!0;for(let o of r){let s=Tn.basename(o),a=Ia(s);if(a!==null){if(e-a>Ca){try{await Ye.promises.unlink(o)}catch{}continue}await this.flushFile(o)||(i=!1)}}return i||h.warn("[telemetry] retry failed"),bd(this.storageDir),i}runExclusive(e){let t=()=>e(),r=this.flushChain.then(t,t);return this.flushChain=r.then(()=>{},()=>{}),r}async listPendingFiles(){let e;try{e=await Ye.promises.readdir(this.storageDir)}catch{return[]}return e.filter(t=>t.startsWith("telemetry-")&&t.endsWith(".txt")).map(t=>Tn.join(this.storageDir,t)).sort()}async flushFile(e){let t=e+".pending";try{await Ye.promises.rename(e,t)}catch{return!1}let r;try{r=await Ye.promises.readFile(t,"utf8")}catch{return!1}let i=r.split(`
9
- `).map(s=>s.trim()).filter(Boolean),o=[];for(let s of i){let a=id(s,this.traceFileKey);a!==null&&o.push(a)}if(o.length===0){try{await Ye.promises.unlink(t)}catch{}return!0}return this.uploadInBatches(t,o)}async uploadInBatches(e,t){let r=0;for(;r<t.length;){let i=r,o=[],s=16;for(;r<t.length&&o.length<n.MAX_BATCH;){let d=t[r],g=Buffer.byteLength(d,"utf8")+1;if(o.length>0&&s+g>n.MAX_PAYLOAD_BYTES)break;o.push(d),s+=g,r++}let a=this.buildPayloadItems(o),c=JSON.stringify(a),l=!1;try{l=await this.uploader.upload(c,this.installId)}catch{}if(!l){h.warn("[telemetry] upload failed");let d=t.slice(i).join(`
6
+ `,"utf8")}catch{}}function Ba(r,e,t="[Cleanup]"){try{let n=O.dirname(r);if(!K.existsSync(n))return;let o=Date.now();for(let i of K.readdirSync(n,{withFileTypes:!0}))i.isDirectory()&&Wy(O.join(n,i.name),o,e,t)}catch{}}function Wy(r,e,t,n){try{let{mtimeMs:o}=K.statSync(r);if(e-o<=t)return;K.rmSync(r,{recursive:!0,force:!0});let i=Math.floor((e-o)/1e3);console.error(`${n} Removed expired dir (age ${Math.floor(i/86400)}d ${Math.floor(i%86400/3600)}h): ${r}`)}catch(o){console.error(`${n} Failed to remove expired dir ${r}: ${o}`)}}var Bd="mcp-server.log",Vy="mcp-server",Gy={maxSize:10*1024*1024,maxFiles:4},Wa=class r{fd=null;logDir=null;currentLogFile=null;mode;rotationOptions;currentFileSize=0;currentDate="";isRotating=!1;minLevel;static LEVEL_ORDER={debug:0,info:1,warn:2,error:3};constructor(e,t){this.rotationOptions={...Gy,...t},this.minLevel=e?"debug":"info",e?(this.mode="console",this.logDir=null,this.currentLogFile=null):(this.mode="file",this.logDir=Kt(),this.currentLogFile=wi.join(this.logDir,Bd),F.existsSync(this.logDir)||F.mkdirSync(this.logDir,{recursive:!0}),this.cleanupOrphanLogFiles(),this.openLogFile())}getCurrentDateString(){let e=new Date,t=e.getFullYear(),n=String(e.getMonth()+1).padStart(2,"0"),o=String(e.getDate()).padStart(2,"0");return`${t}-${n}-${o}`}getRotatedFileName(e,t){return wi.join(this.logDir,`${Vy}-${e}.log.${t}`)}fileExists(e){try{return F.accessSync(e,F.constants.F_OK),!0}catch{return!1}}cleanupOrphanLogFiles(){if(this.logDir)try{let e=F.readdirSync(this.logDir),t=[];for(let o of e)if(o===Bd||/^mcp-server-\d{4}-\d{2}-\d{2}\.log\.\d+$/.test(o)){let i=wi.join(this.logDir,o),s=F.statSync(i);t.push({name:o,mtime:s.mtime,path:i})}t.sort((o,i)=>i.mtime.getTime()-o.mtime.getTime());let n=1+this.rotationOptions.maxFiles;for(let o=n;o<t.length;o++)try{F.unlinkSync(t[o].path)}catch{}}catch{}}rotateLog(){if(!(this.isRotating||!this.logDir||!this.currentLogFile)){this.isRotating=!0;try{if(this.closeLogFile(),!this.fileExists(this.currentLogFile)){this.isRotating=!1,this.openLogFile();return}let e=this.getCurrentDateString(),t=this.getRotatedFileName(e,this.rotationOptions.maxFiles);this.fileExists(t)&&F.unlinkSync(t);for(let o=this.rotationOptions.maxFiles-1;o>=1;o--){let i=this.getRotatedFileName(e,o),s=this.getRotatedFileName(e,o+1);this.fileExists(i)&&F.renameSync(i,s)}let n=this.getRotatedFileName(e,1);F.renameSync(this.currentLogFile,n),this.cleanupOrphanLogFiles(),this.openLogFile()}catch{this.openLogFile()}finally{this.isRotating=!1}}}openLogFile(){if(this.currentLogFile){this.currentDate=this.getCurrentDateString();try{if(this.fileExists(this.currentLogFile)){let e=F.statSync(this.currentLogFile);this.currentFileSize=e.size}else this.currentFileSize=0}catch{this.currentFileSize=0}try{this.fd=F.openSync(this.currentLogFile,"a")}catch{this.fd=null}}}closeLogFile(){if(this.fd!==null){try{F.closeSync(this.fd)}catch{}this.fd=null}}checkRotation(e){let t=this.getCurrentDateString();this.currentDate&&this.currentDate!==t&&(this.rotateLog(),this.currentDate=t),this.currentFileSize+=e,this.currentFileSize>=this.rotationOptions.maxSize&&this.rotateLog()}write(e,t,...n){if(this.mode==="silent"||r.LEVEL_ORDER[e]<r.LEVEL_ORDER[this.minLevel])return;let o=n.map(c=>c instanceof Error?`${c.name}: ${c.message}`:typeof c=="object"?JSON.stringify(c,null,2):String(c)).join(" "),i=o?`${t} ${o}`:t,a=`[${new Date().toLocaleString("sv-SE",{timeZone:"Asia/Shanghai",hour12:!1})+"."+String(new Date().getMilliseconds()).padStart(3,"0")}] [MCP/${e.toUpperCase()}] ${i}
7
+ `;if(this.mode==="file"&&this.currentLogFile){if(this.fd===null&&this.openLogFile(),this.fd!==null)try{let c=Buffer.from(a);F.writeSync(this.fd,c),this.checkRotation(c.byteLength)}catch{this.closeLogFile(),this.openLogFile()}}else this.mode==="console"&&process.stderr.write(a)}debug(e,...t){this.write("debug",e,...t)}info(e,...t){this.write("info",e,...t)}warn(e,...t){this.write("warn",e,...t)}error(e,...t){this.write("error",e,...t)}dispose(){this.closeLogFile()}flush(){if(!(this.mode!=="file"||this.fd===null))try{F.fsyncSync(this.fd)}catch{}}getLogFilePath(){return this.currentLogFile}getLogDirectory(){return this.logDir}},Qe=null;function Mr(r=!1){Qe&&Qe.dispose(),Qe=new Wa(r)}function Wd(){Qe&&(Qe.dispose(),Qe=null)}function Vd(){Qe&&Qe.flush()}function Gd(){return Qe?.getLogFilePath()??null}function qd(){return Qe?.getLogDirectory()??null}function vi(){return Qe||Mr(!1),Qe}var h={debug:(r,...e)=>vi().debug(r,...e),info:(r,...e)=>vi().info(r,...e),warn:(r,...e)=>vi().warn(r,...e),error:(r,...e)=>vi().error(r,...e)};import Va from"fs";import zd from"path";var no=300*1e3,oo=3600*1e3,Ga=10080*60*1e3;function Et(){let r=process.env.DEVECO_CLI_DISABLE_TELEMETRY;return r==="1"||r==="true"}var qy="upload-state.json";function Jd(r){return zd.join(r,qy)}function zy(){return{firstEventAt:null,lastUploadAt:null,lastRetryAt:null}}function bi(r){try{let e=Va.readFileSync(Jd(r),"utf8"),t=JSON.parse(e);return{firstEventAt:typeof t.firstEventAt=="number"?t.firstEventAt:null,lastUploadAt:typeof t.lastUploadAt=="number"?t.lastUploadAt:null,lastRetryAt:typeof t.lastRetryAt=="number"?t.lastRetryAt:null}}catch{return zy()}}function qa(r,e){try{Va.writeFileSync(Jd(r),JSON.stringify(e),"utf8")}catch{}}function Yd(r){let e=bi(r);e.firstEventAt===null&&(e.firstEventAt=Date.now(),qa(r,e))}function Kd(r){let e=bi(r);e.lastUploadAt=Date.now(),e.firstEventAt=null,qa(r,e)}function Xd(r){let e=bi(r);e.lastRetryAt=Date.now(),qa(r,e)}function za(r){let e=r.match(/^telemetry-(\d{4})-(\d{2})-(\d{2})\.txt$/);if(!e)return null;let t=Date.parse(`${e[1]}-${e[2]}-${e[3]}T00:00:00`);return Number.isFinite(t)?t:null}function Jy(r,e=Date.now()){let t=zd.join(r,"failed"),n;try{n=Va.readdirSync(t)}catch{return!1}for(let o of n){if(!o.startsWith("telemetry-")||!o.endsWith(".txt"))continue;let i=za(o);if(i!==null&&e-i<=Ga)return!0}return!1}function Zd(r,e=Date.now()){let t=bi(r);return!!(t.firstEventAt!==null&&e-t.firstEventAt>=no||Jy(r,e)&&(t.lastRetryAt===null||e-t.lastRetryAt>=oo))}import Yy from"crypto";import Si from"fs";import Ky from"path";var Xy="install-id";function Zy(r){return Ky.join(r,Xy)}function Qd(r){try{let e=Si.readFileSync(r,"utf8").trim();return Qy(e)?e:null}catch{return null}}function Qy(r){return/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/i.test(r)}function eu(r){let e=Zy(r),t=Qd(e);if(t)return t;let n=Yy.randomUUID();try{Si.mkdirSync(r,{recursive:!0});try{Si.writeFileSync(e,n,{flag:"wx"})}catch{let o=Qd(e);if(o)return o;Si.writeFileSync(e,n)}}catch{}return n}var io=class r{static MAX_BATCH=200;static MAX_PAYLOAD_BYTES=Math.floor(1.7*1024*1024);static TRACE_OS_VERSION="1.0";static COUNTRY_CODE="CN";static EVENT_PREFIX="devecocli_";uploader=new di;storageDir="";failedDir="";installId="";disabled=Et();traceFileKey=Buffer.alloc(0);sessionId=tu.randomUUID();cliVersion="";devecoStudioVersion=null;sourceType="";cltVersion=null;nodeVersion="";initialTimer=null;intervalTimer=null;retryInitialTimer=null;retryTimer=null;flushChain=Promise.resolve();constructor(){h.info(`[telemetry] instance created, sessionId=${this.sessionId}`)}init(e){this.storageDir=e,this.failedDir=Or.join(e,"failed"),this.cliVersion="1.3.3-Test.3",this.nodeVersion=process.version,this.installId=eu(e).replace(/-/g,""),this.traceFileKey=Md(e),et.mkdirSync(e,{recursive:!0}),et.mkdirSync(this.failedDir,{recursive:!0}),h.info(`[telemetry] init: dir=${e}, failedDir=${this.failedDir}, cliVersion=${this.cliVersion}, os=${this.resolveOsName()}, arch=${this.resolveOsArch()}, node=${this.nodeVersion}`)}setStudioVersion(e){this.devecoStudioVersion=e,h.info(`[telemetry] studio version set: ${e}`)}setSourceType(e){this.sourceType=e,h.info(`[telemetry] sourceType set: ${e}`)}setCltVersion(e){this.cltVersion=e,h.info(`[telemetry] CLT version set: ${e}`)}async track(e,t){if(this.disabled)return typeof t=="function"?t():void 0;if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");if(!t){await this.record(e,0,!0,null);return}if(typeof t!="function"){let i=t;await this.record(e,i.duration_ms,i.success,i.error_code);return}let n=t,o=Date.now();try{let i=await n(),s=Date.now()-o;return await this.record(e,s,!0,null),i}catch(i){let s=Date.now()-o,a=this.toErrorCode(i);throw await this.record(e,s,!1,a),i}}async record(e,t,n,o){let i=this.buildTraceEvent(e,t,n,o);try{let s=$a(JSON.stringify(i),this.traceFileKey);await et.promises.appendFile(this.currentFile(),s+`
8
+ `,"utf8"),Yd(this.storageDir)}catch{}}buildTraceEvent(e,t,n,o){let i=`${r.EVENT_PREFIX}${e.event}`,s=xd.toObject(e);return s&&typeof s=="object"&&delete s.event,{countryCode:r.COUNTRY_CODE,event:i,eventtime:String(Date.now()),properties:{uid:this.installId,trace_uuid:tu.randomUUID(),trace_os_version:r.TRACE_OS_VERSION,os_arch:this.resolveOsArch(),action:i,trace_os_name:this.resolveOsName(),version:`${this.cliVersion}_${this.resolveOsSuffix()}`,deveco_studio_version:this.formatVersion(this.devecoStudioVersion),command_line_version:this.formatVersion(this.cltVersion),source_type:this.sourceType,session_id:this.sessionId,node_version:this.nodeVersion,duration_ms:t,success:n,error_code:o,event_detail:s}}}toErrorCode(e){return e instanceof Error?e.code??e.name:"UnknownError"}resolveOsArch(){let e=Ja.arch();return e==="x64"?"amd64":e}resolveOsName(){switch(process.platform){case"win32":{let e=Ja.release().split(".");return(parseInt(e[e.length-1],10)||0)>=22e3?"Windows 11":"Windows 10"}case"darwin":return"macOS";case"linux":return"Linux";default:return process.platform}}resolveOsSuffix(){switch(process.platform){case"win32":return"windows";case"darwin":return Ja.arch()==="arm64"?"mac_arm":"mac";default:return"linux"}}formatVersion(e){return e?`${e}_${this.resolveOsSuffix()}`:""}dateString(){let e=new Date,t=String(e.getMonth()+1).padStart(2,"0"),n=String(e.getDate()).padStart(2,"0");return`${e.getFullYear()}-${t}-${n}`}currentFile(){return Or.join(this.storageDir,`telemetry-${this.dateString()}.txt`)}startScheduler(){if(this.stopScheduler(),this.disabled){h.info("[telemetry] scheduler not started (telemetry disabled)");return}h.info(`[telemetry] scheduler started (flush every ${no/1e3}s, retry failed every ${oo/1e3}s)`),this.initialTimer=setTimeout(()=>{this.flush().catch(()=>{}),this.intervalTimer=setInterval(()=>{this.flush().catch(()=>{})},no)},no),this.retryInitialTimer=setTimeout(()=>{this.retryFailed().catch(()=>{}),this.retryTimer=setInterval(()=>{this.retryFailed().catch(()=>{})},oo)},oo)}stopScheduler(){this.initialTimer&&(clearTimeout(this.initialTimer),this.initialTimer=null),this.intervalTimer&&(clearInterval(this.intervalTimer),this.intervalTimer=null),this.retryInitialTimer&&(clearTimeout(this.retryInitialTimer),this.retryInitialTimer=null),this.retryTimer&&(clearInterval(this.retryTimer),this.retryTimer=null),h.info("[telemetry] scheduler stopped")}async flush(){return this.disabled?!0:this.runExclusive(()=>this.performFlush())}async performFlush(){if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");let e=await this.listPendingFiles(),t=!0;for(let n of e)await this.flushFile(n)||(t=!1);return Kd(this.storageDir),t}async retryFailed(){return this.disabled?!0:this.runExclusive(()=>this.performRetryFailed())}async performRetryFailed(){if(!this.storageDir)throw new Error("Telemetry not initialized. Call init() first.");let e=Date.now(),t;try{t=await et.promises.readdir(this.failedDir)}catch{return!0}let n=t.filter(i=>i.startsWith("telemetry-")&&i.endsWith(".txt")).map(i=>Or.join(this.failedDir,i)),o=!0;for(let i of n){let s=Or.basename(i),a=za(s);if(a!==null){if(e-a>Ga){try{await et.promises.unlink(i)}catch{}continue}await this.flushFile(i)||(o=!1)}}return o||h.warn("[telemetry] retry failed"),Xd(this.storageDir),o}runExclusive(e){let t=()=>e(),n=this.flushChain.then(t,t);return this.flushChain=n.then(()=>{},()=>{}),n}async listPendingFiles(){let e;try{e=await et.promises.readdir(this.storageDir)}catch{return[]}return e.filter(t=>t.startsWith("telemetry-")&&t.endsWith(".txt")).map(t=>Or.join(this.storageDir,t)).sort()}async flushFile(e){let t=e+".pending";try{await et.promises.rename(e,t)}catch{return!1}let n;try{n=await et.promises.readFile(t,"utf8")}catch{return!1}let o=n.split(`
9
+ `).map(s=>s.trim()).filter(Boolean),i=[];for(let s of o){let a=Od(s,this.traceFileKey);a!==null&&i.push(a)}if(i.length===0){try{await et.promises.unlink(t)}catch{}return!0}return this.uploadInBatches(t,i)}async uploadInBatches(e,t){let n=0;for(;n<t.length;){let o=n,i=[],s=16;for(;n<t.length&&i.length<r.MAX_BATCH;){let d=t[n],g=Buffer.byteLength(d,"utf8")+1;if(i.length>0&&s+g>r.MAX_PAYLOAD_BYTES)break;i.push(d),s+=g,n++}let a=this.buildPayloadItems(i),c=JSON.stringify(a),l=!1;try{l=await this.uploader.upload(c,this.installId)}catch{}if(!l){h.warn("[telemetry] upload failed");let d=t.slice(o).join(`
10
10
  `)+`
11
- `;return await this.moveToFailed(e,d),!1}}try{await Ye.promises.unlink(e)}catch{}return!0}buildPayloadItems(e){let t=[];for(let r of e)try{let i=JSON.parse(r);t.push({action:i.event,detail:JSON.stringify(i.properties),timestamp:Number(i.eventtime)||Date.now()})}catch{}return t}async moveToFailed(e,t){let r=Tn.basename(e,".pending"),i=Tn.join(this.failedDir,r);try{let o=t.split(`
12
- `).filter(Boolean).map(s=>va(s,this.traceFileKey)).join(`
11
+ `;return await this.moveToFailed(e,d),!1}}try{await et.promises.unlink(e)}catch{}return!0}buildPayloadItems(e){let t=[];for(let n of e)try{let o=JSON.parse(n);t.push({action:o.event,detail:JSON.stringify(o.properties),timestamp:Number(o.eventtime)||Date.now()})}catch{}return t}async moveToFailed(e,t){let n=Or.basename(e,".pending"),o=Or.join(this.failedDir,n);try{let i=t.split(`
12
+ `).filter(Boolean).map(s=>$a(s,this.traceFileKey)).join(`
13
13
  `)+`
14
- `;await Ye.promises.appendFile(i,o,"utf8")}catch{return}try{await Ye.promises.unlink(e)}catch{}}};var I=new Xr;import{spawn as iy}from"child_process";import{existsSync as oy}from"fs";import{dirname as sy,join as ay}from"path";import{fileURLToPath as cy}from"url";function ly(){let n=sy(cy(import.meta.url)),e=ay(n,"internal","telemetry-upload-background.js");return oy(e)?e:null}function Da(n){if(Bt()||!Sd(n))return;let e=ly();if(!e){h.warn("[telemetry] background upload script not found, skipping spawn");return}try{iy(process.execPath,[e],{detached:!0,stdio:["ignore","ignore","ignore"],env:{...process.env,DEVECO_CLI_SKIP_VERSION_CHECK:"1",DEVECO_CLI_TELEMETRY_UPLOAD:"1"}}).unref()}catch(t){h.warn("[telemetry] failed to spawn background upload:",t)}}var w=class extends Error{traceMessage;constructor(e,t,r){super(e,r),this.name="TraceError",this.traceMessage=t??e}};function B(n){if(n instanceof w)return n.traceMessage;if(n instanceof Error){let e=n.code;return typeof e=="string"&&e!==""?e:n.name}return"UnknownError"}var b={CommandExecuted:"Command_executed",McpToolCall:"serve_mcp",SkillOperation:"skills",Init:"mcp_config_operation",SkillConfigOperation:"skill_config_operation",DocOperation:"docs",ServeLsp:"serve_lsp",CheckCommand:"check"};var Ce={OH_PACKAGE_JSON5:"oh-package.json5",BUILD_PROFILE_JSON5:"build-profile.json5",SYNC_OUTPUT_PATH:".hvigor/outputs/sync/output.json",LOCK_JSON5_PATH:"oh_modules/.ohpm/lock.json5"};var Y=class n{rootDir;profile;constructor(e,t){this.rootDir=e,this.profile=t}static discover(e){let t=e;for(;;){let r=n.tryLoadProjectProfile(t);if(r)return new n(t,r);let i=j.dirname(t);if(i===t)break;t=i}throw new Error("Not in a valid project directory (project-level build-profile.json5 not found).")}static tryLoadProjectProfile(e){let t=j.join(e,"build-profile.json5");if(!J.existsSync(t))return null;try{let r=J.readFileSync(t,"utf-8"),i=ht.parse(r);return i.app?i:null}catch(r){return console.error(`Error parsing ${t}:`,r),null}}getRunnableModuleNames(){return this.profile.modules.map(e=>e.name).filter(e=>this.getModuleType(e)!=="har").join(", ")}getModuleType(e){let t=this.profile.modules.find(o=>o.name===e);if(!t)throw new w(`Module '${e}' not found in project-level build-profile.json5.`,"Module not found in project-level build-profile.json5.");let r=S.resolvePathWithinRoot(this.rootDir,t.srcPath),i=j.join(r,"src","main","module.json5");if(!J.existsSync(i))return"entry";try{let o=J.readFileSync(i,"utf-8");return ht.parse(o)?.module?.type||"entry"}catch(o){return console.warn(`Warning: Failed to parse ${i}:`,o),"entry"}}findOwningModule(e){let t=j.normalize(e);for(let r of this.profile.modules){let i=j.normalize(j.join(this.rootDir,r.srcPath)),o=i+j.sep;if(t.startsWith(o)||t===i)return r.name}return null}getModuleProfile(e){let t=this.profile.modules.find(o=>o.name===e);if(!t)throw new w(`Module '${e}' not found in project-level build-profile.json5.`,"Module not found in project-level build-profile.json5.");let r=S.resolvePathWithinRoot(this.rootDir,t.srcPath),i=j.join(r,"build-profile.json5");if(!J.existsSync(i))throw new w(`Build profile for module '${e}' not found at ${i}.`,"Build profile for module not found at ${profilePath}.");try{let o=J.readFileSync(i,"utf-8");return ht.parse(o)}catch(o){throw new Error(`Failed to parse module build profile at ${i}: ${o instanceof Error?o.message:String(o)}`,{cause:o})}}getBundleName(e){if(e){let r=this.profile.app.products?.find(i=>i.name===e);if(r?.bundleName)return r.bundleName}let t=j.join(this.rootDir,"AppScope","app.json5");if(J.existsSync(t))try{let r=J.readFileSync(t,"utf-8"),i=ht.parse(r);if(i?.app?.bundleName)return i.app.bundleName}catch(r){console.warn(`Warning: Failed to parse ${t}:`,r)}throw new Error("Could not find bundleName in AppScope/app.json5.")}isAtomicService(){let e=j.join(this.rootDir,"AppScope","app.json5");if(!J.existsSync(e))return!1;try{let t=J.readFileSync(e,"utf-8");return ht.parse(t)?.app?.bundleType==="atomicService"}catch{return!1}}getMainAbility(e,t){if(t)return t;let r=this.profile.modules.find(s=>s.name===e);if(!r)return"EntryAbility";let i=S.resolvePathWithinRoot(this.rootDir,r.srcPath),o=j.join(i,"src","main","module.json5");if(!J.existsSync(o))return"EntryAbility";try{let s=J.readFileSync(o,"utf-8"),c=ht.parse(s)?.module?.abilities||[];if(c.length===0)return"EntryAbility";let l=c.find(d=>d.name==="EntryAbility");return l?l.name:c[0].name}catch(s){return console.warn(`Warning: Failed to parse ${o}:`,s),"EntryAbility"}}validateProduct(e){if(!/^[\da-zA-Z_-]+$/.test(e))throw new w(`Invalid product name '${e}'. Product names must only contain letters, digits, underscores, and hyphens.`,"Invalid product name.");if(!this.profile.app.products?.some(r=>r.name===e)){let r=this.profile.app.products?.map(i=>i.name).join(", ")||"none";throw new w(`Product '${e}' not found in project configuration. Available products: ${r}`,"Productnot found in project configuration.")}}getModuleDependencies(e){let t=this.profile.modules.find(i=>i.name===e);if(!t)return[];let r=this.readLockFinalLocalModuleDeps(e);return r!==null?r:this.readOhPackageLocalModuleDeps(t)}readLockFinalLocalModuleDeps(e){let t=j.join(this.rootDir,Ce.LOCK_JSON5_PATH);if(!J.existsSync(t))return null;let r;try{r=ht.parse(J.readFileSync(t,"utf-8"))}catch(d){return p(`Failed to parse lock.json5: ${d instanceof Error?d.message:String(d)}`),null}let i=r,o=i?.modules;if(!o||typeof o!="object")return null;let s=Object.values(o).find(d=>typeof d=="object"&&d!==null&&d.name===e);if(!s)return null;let a=this.buildOverrideMap(i.overrides),c=[],l=new Set;for(let d of["dependencies","dynamicDependencies"]){let g=s[d];!g||typeof g!="object"||this.collectLocalDeps(g,a,v=>this.resolveLockDepByVersion(v),c,l)}return c}resolveLockDepByVersion(e){if(typeof e!="object"||e===null)return null;let t=e.version;return typeof t=="string"?this.resolveLocalDepToModule(t):null}resolveDepModule(e,t,r){if(t?.has(e)){let i=t.get(e);if(i){let o=this.resolveLocalDepToModule(i);if(o)return o}}return r()}buildOverrideMap(e){if(!e||typeof e!="object")return null;let t=new Map;for(let[r,i]of Object.entries(e))typeof i=="string"&&t.set(r,i);return t.size>0?t:null}resolveLocalDepToModule(e){let t=n.stripLocalDep(e);if(!t)return null;let r=j.resolve(this.rootDir,t),i;try{i=S.ensurePathWithinRoot(this.rootDir,r)}catch{return null}let o=this.profile.modules.find(s=>j.resolve(this.rootDir,s.srcPath)===i);return o?o.name:null}static stripLocalDep(e){return!e.startsWith("file:")&&!e.startsWith(".")&&!e.startsWith("..")?null:e.startsWith("file:")?e.substring(5):e}readOhPackageLocalModuleDeps(e){let t=j.join(S.resolvePathWithinRoot(this.rootDir,e.srcPath),Ce.OH_PACKAGE_JSON5);if(!J.existsSync(t))return[];let r=this.readRootOverrideMap(),i=[],o=new Set;try{let s=ht.parse(J.readFileSync(t,"utf-8"));for(let a of["dependencies","dynamicDependencies"]){let c=s?.[a];!c||typeof c!="object"||this.collectLocalDeps(c,r,l=>this.resolveOhPackageDepByValue(l,e),i,o)}}catch(s){p(`Failed to get module dependencies: ${s instanceof Error?s.message:String(s)}`)}return i}readRootOverrideMap(){let e=j.join(this.rootDir,Ce.OH_PACKAGE_JSON5);if(!J.existsSync(e))return null;try{let t=ht.parse(J.readFileSync(e,"utf-8"));return this.buildOverrideMap(t?.overrides)}catch{return null}}resolveOhPackageDepByValue(e,t){return typeof e=="string"?this.resolveLocalDepModuleName(e,t):null}collectLocalDeps(e,t,r,i,o){for(let[s,a]of Object.entries(e)){let c=this.resolveDepModule(s,t,()=>r(a));c&&!o.has(c)&&(o.add(c),i.push(c))}}resolveLocalDepModuleName(e,t){let r=n.stripLocalDep(e);if(!r)return null;let i=j.join(t.srcPath,r),o=S.resolvePathWithinRoot(this.rootDir,i),s=this.profile.modules.find(a=>j.resolve(this.rootDir,a.srcPath)===o);return s?s.name:null}collectNonHarDependentModuleList(e){let t=[],r=[],i=new Set;for(r.push(e),i.add(e);r.length>0;){let o=r.shift();this.getModuleType(o)!=="har"&&t.push(o);let a=this.getModuleDependencies(o);for(let c of a)i.has(c)||(r.push(c),i.add(c))}return t}resolveModuleMetadata(e,t,r){this.validateProduct(r);let i=this.profile.modules.find(l=>l.name===e);if(!i){let l=this.getRunnableModuleNames();throw new w(`Module '${e}' not found. Available modules: ${l}`,"Module not found.")}let o=this.getModuleType(e)==="shared",s=o?"hspName":"hapName",a=this.buildOutputPath(i.srcPath,r,["intermediates",o?"hsp_metadata":"hap_metadata",t,"output_metadata.json"]);if(!J.existsSync(a))throw new w(`Build metadata not found for module '${e}' at ${a}. Build the project first.`,"Build metadata not found for module. Build the project first.");let c=this.parseOutputMetadata(a,s);return{moduleNode:i,isShared:o,metadataPath:a,metadata:c}}findArtifactPath(e,t,r,i="default"){let{moduleNode:o,isShared:s,metadata:a}=this.resolveModuleMetadata(e,t,i),{packageName:c,isSigned:l}=a,d=c;if(!l){let D=this.getSignedHapName(c,o.srcPath,i,t);D&&(d=D)}let g=s?"-signed.hsp":"-signed.hap";if(!r&&!d.endsWith(g))throw new w(`Target device is a real device, but the artifact for '${e}' is not signed. Real devices cannot install unsigned packages.`,"Target device is a real device, but the artifact is not signed.");let v=this.buildOutputPath(o.srcPath,i,["outputs",t,d]);if(!J.existsSync(v))throw new w(`Generated package file not found in ${v}.`,"Generated package file not found.");return v}findRemoteHspPaths(e,t,r="default"){let{moduleNode:i,metadata:o}=this.resolveModuleMetadata(e,t,r),s=[],a=new Set;for(let{hspPath:c}of o.dependRemoteHsps){if(a.has(c))continue;a.add(c);let l=j.isAbsolute(c)?c:this.buildOutputPath(i.srcPath,r,["outputs",t,c]);if(!J.existsSync(l))throw new w(`Remote HSP dependency not found: ${l}`,"Remote HSP dependency not found.");s.push(l)}return s}getSignedHapName(e,t,r,i){let o=null;if(e.endsWith("-unsigned.hap")?o=e.replace("-unsigned.hap","-signed.hap"):e.endsWith("-unsigned.hsp")&&(o=e.replace("-unsigned.hsp","-signed.hsp")),!o)return null;let s=this.buildOutputPath(t,r,["outputs",i,o]);return J.existsSync(s)?o:null}buildOutputPath(e,t,r){let i=S.resolvePathWithinRoot(this.rootDir,e),o=j.resolve(i,"build",t,...r);return S.ensurePathWithinRoot(this.rootDir,o)}collectRemoteHsps(e){return e.flatMap(t=>{let r=t.dependRemoteHsps;return Array.isArray(r)?r.filter(i=>!!(i.hspName&&i.hspPath)).map(i=>({hspName:i.hspName,hspPath:i.hspPath})):[]})}parseOutputMetadata(e,t){let r;try{let c=J.readFileSync(e,"utf-8");r=ht.parse(c)}catch(c){throw new Error(`Failed to parse output metadata at ${e}: ${c instanceof Error?c.message:String(c)}`,{cause:c})}let i,o=!1,s=Array.isArray(r)?r:[r];for(let c of s)i||(i=c[t]),o||(o=c.isSigned===!0);if(!i)throw new w(`Could not find ${t} in output_metadata.json at ${e}`,"Could not find metadataKey in output_metadata.json at metadataPath.");this.validatePackageName(i);let a=this.collectRemoteHsps(s);return{packageName:i,isSigned:o,dependRemoteHsps:a}}validatePackageName(e){let t=j.basename(e);if(t!==e)throw new w(`Invalid traversal name: '${e}'. It must contain path characters.`,"Invalid traversal name.");if(!t.endsWith(".hap")&&!t.endsWith(".hsp"))throw new w(`Invalid package name '${t}'.It must be a .hap or .hsp file.`,"Invalid package name.")}};import ke from"fs";import*as We from"os";import*as P from"path";import so from"fs";import*as ao from"os";import*as Zr from"path";import fy from"regedit";import{execFileSync as uy}from"child_process";import Id from"fs";import*as Ad from"os";import*as Ra from"path";import{compare as dy}from"semver";function kd(n,e){return dy(n,e)}function Zn(n,e){let t=Math.max(n.split(".").length,e.split(".").length);for(let r=0;r<t;r++){let i=Number(n.split(".")[r]??0)-Number(e.split(".")[r]??0);if(i)return i}return 0}function oo(n,e){let t=Ra.join(n,"Contents","Info.plist");if(!Id.existsSync(t)){p(`[ToolProvider] Info.plist not found at: ${t}`);return}for(let[r,i]of[["/usr/libexec/PlistBuddy",["-c",`Print :${e}`,t]],["plutil",["-extract",e,"raw","-o","-",t]]])try{let o=uy(r,i,{encoding:"utf8",stdio:["ignore","pipe","ignore"]}).trim();if(o&&!o.includes("Does Not Exist"))return o}catch{}}function py(n){let e=oo(n,"CFBundleShortVersionString");if(!e)return oo(n,"CFBundleVersion");let t=e.split(".").slice(0,3).join(""),r=[oo(n,"CFBundleVersion"),oo(n,"CFBundleGetInfoString")?.match(/DS-[\d.]+/)?.[0]];for(let i of r){let o=i?.split(".").at(-1)?.replace(new RegExp(`^${t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}`),"");if(o&&/^\d+$/.test(o))return`${e}.${o}`}return e}function Vt(n){if(Ad.platform()==="darwin")return py(n);let e=Ra.join(n,"product-info.json");try{let t=JSON.parse(Id.readFileSync(e,"utf8")).version;return typeof t=="string"&&t.trim()?t.trim():void 0}catch{return}}var my="DevEco Studio",hy=["Contents","Resources","product-info.json"],gy="name";function yy(n){return n.filter(e=>{try{return so.statSync(e).isDirectory()}catch{return!1}})}function vy(n){let e=Zr.join(n,...hy);if(so.existsSync(e))try{let r=JSON.parse(so.readFileSync(e,"utf8"))[gy];return typeof r=="string"&&r.trim()?r.trim():void 0}catch{return}}function wy(n){return vy(n)===my}function by(){let n=[];for(let e of[Zr.join(ao.homedir(),"Applications"),"/Applications"])try{n.push(...so.readdirSync(e).filter(t=>t.endsWith(".app")).map(t=>Zr.join(e,t)).filter(wy))}catch{}return n}function Dd(n){return new Promise((e,t)=>fy.list(n,(r,i)=>r?t(r):e(i)))}async function Rd(n,e,t){let i=((await Dd([n]))[n]?.keys??[]).filter(e).map(s=>`${n}\\${s}`);if(i.length===0)return[];let o=await Dd(i);return i.flatMap(s=>{let a=o[s]?.values?.[t]?.value;return a?[a]:[]})}async function Sy(){let n=[Zr.join("C:","Program Files","Huawei","DevEco Studio")];for(let e of["HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall","HKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall"])try{n.push(...await Rd(e,t=>t.normalize("NFKC").trim().toLowerCase().startsWith("deveco studio"),"InstallLocation"))}catch{}for(let e of["HKLM\\SOFTWARE\\Huawei\\DevEco Studio","HKLM\\SOFTWARE\\WOW6432Node\\Huawei\\DevEco Studio"])try{n.push(...await Rd(e,()=>!0,""))}catch{}return n}async function Td(){let n=ao.platform();if(n==="linux")throw new Error("DevEco Studio is not available on Linux. Set DEVECO_CLI_CLT_PATH to a Command Line Tools installation.");let e=n==="darwin"?by():await Sy(),t=yy(e).flatMap(r=>{let i=Vt(r);return i?(p(`[ToolProvider] ${r} => version ${i}`),[{root:r,version:i}]):(p(`[ToolProvider] Skipping ${r}: could not read version`),[])});if(!t.length)throw new Error("DevEco Studio installation not found in default locations. Set DEVECO_CLI_STUDIO_PATH to a DevEco Studio installation, or set DEVECO_CLI_CLT_PATH to a Command Line Tools installation.");return t.reduce((r,i)=>Zn(i.version,r.version)>0?i:r)}import*as xd from"fs";import*as xe from"path";function Ey(n,e){let t=xe.relative(e,n);return t===""||!xe.isAbsolute(t)&&!t.startsWith(`..${xe.sep}`)&&t!==".."}function qt(n){let e=xe.resolve(n),t=[],r=e;for(;;)try{let i=xd.realpathSync(r);return t.length===0?i:xe.join(i,...t.reverse())}catch(i){if(i.code!=="ENOENT")throw i;let o=xe.dirname(r);if(o===r)return e;t.push(xe.basename(r)),r=o}}function Ld(n,e){let t=qt(e),r=qt(n);return Ey(r,t)?r:null}function Ta(n){let e=n.trim();return(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))&&(e=e.slice(1,-1).trim()),e}function co(n){let e=Ta(n);if(!e)throw new Error("Path must not be empty.");return qt(e)}var xa="https://matrix.openharmony.cn",Ke={TAGS_API_URL:`${xa}/api/model_base/model/tags?serviceType=skill`,SKILLS_API_URL:`${xa}/api/registry/skill/skills`,SKILL_API_BASE:`${xa}/api/registry/skill`,DEFAULT_PAGE_SIZE:20,DEFAULT_MAX_PAGES:100,SUCCESS_CODE:"20000"},ct={"trae-cn":{path:".trae-cn/skills",displayName:"trae-cn"},opencode:{path:".config/opencode/skills",displayName:"opencode"},deveco:{path:".config/deveco/skills",displayName:"deveco"},cursor:{path:".cursor/skills",displayName:"cursor"},codebuddy:{path:".codebuddy/skills",displayName:"codebuddy"},qoder:{path:".qoder/skills",displayName:"qoder"},"claude-code":{path:".claude/skills",projectPath:".claude/skills",displayName:"claude-code"},codex:{path:".codex/skills",displayName:"codex"},atomcode:{path:".atomcode/skills",displayName:"atomcode"}};import{homedir as kt}from"os";import Ue from"path";var gt="deveco-mcp";var Gt={opencode:{name:"opencode",displayName:"OpenCode",supportsGlobal:!0,globalConfigPath:Ue.join(kt(),".config","opencode","opencode.json"),projectConfigPath:".opencode/opencode.json",mcpServersKey:"mcp",format:"opencode"},"trae-cn":{name:"trae-cn",displayName:"Trae-CN",supportsGlobal:!0,globalConfigPath:Ue.join(process.platform==="win32"?Ue.join(process.env.APPDATA??Ue.join(kt(),"AppData","Roaming"),"Trae CN","User"):Ue.join(kt(),"Library","Application Support","Trae CN","User"),"mcp.json"),projectConfigPath:".trae/mcp.json",mcpServersKey:"mcpServers",format:"standard"},cursor:{name:"cursor",displayName:"Cursor",supportsGlobal:!0,globalConfigPath:Ue.join(kt(),".cursor","mcp.json"),projectConfigPath:".cursor/mcp.json",mcpServersKey:"mcpServers",format:"standard"},codebuddy:{name:"codebuddy",displayName:"Codebuddy",supportsGlobal:!0,globalConfigPath:Ue.join(kt(),".codebuddy","mcp.json"),projectConfigPath:".codebuddy/mcp.json",mcpServersKey:"mcpServers",format:"standard"},qoder:{name:"qoder",displayName:"Qoder",supportsGlobal:!0,globalConfigPath:Ue.join(process.platform==="win32"?Ue.join(process.env.APPDATA??Ue.join(kt(),"AppData","Roaming"),"Qoder","SharedClientCache"):Ue.join(kt(),"Library","Application Support","Qoder","SharedClientCache"),"mcp.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"standard"},"claude-code":{name:"claude-code",displayName:"Claude Code",supportsGlobal:!0,globalConfigPath:Ue.join(kt(),".claude.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"claude-code"},codex:{name:"codex",displayName:"Codex",supportsGlobal:!0,globalConfigPath:Ue.join(kt(),".codex","config.toml"),projectConfigPath:".codex/config.toml",mcpServersKey:"mcp_servers",format:"codex"}};function Od(n){return{type:"local",command:["devecocli","serve","mcp"],environment:{PROJECT_PATH:n??"."},enabled:!0}}function Nd(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"."},enabled:!0}}function Md(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"${workspaceFolder}"}}}function lo(n,e){return n.format==="opencode"?Od(e):n.format==="claude-code"||n.format==="codex"?Nd(e):Md(e)}var La="https://developer.huawei.com/consumer/cn/download/";var Py=/^#\s*Version:\s*(\S+)/,Cy="26.0.0.810";function ky(n){try{let e=JSON.parse(ke.readFileSync(n,"utf8")),t=Number(e.apiVersion??e.data?.apiVersion);return Number.isInteger(t)&&t>=17?t:void 0}catch(e){p(`[ToolProvider] Failed to parse API level from ${n}: ${e instanceof Error?e.message:String(e)}`);return}}function Iy(n){let e=P.join(n,"default","openharmony");return[P.join(n,"default","sdk-pkg.json"),...["toolchains","native","previewer"].map(t=>P.join(e,t,"oh-uni-package.json"))]}var A=class n{constructor(e,t,r,i,o,s,a,c,l,d){this._sourceType=e;this._toolchainRoot=t;this._devecoStudioPath=r;this._nodePath=i;this._ohpmJsPath=o;this._hvigorJsPath=s;this._javaPath=a;this._sdkPath=c;this._hdcPath=l;this._emulatorPath=d}_sourceType;_toolchainRoot;_devecoStudioPath;_nodePath;_ohpmJsPath;_hvigorJsPath;_javaPath;_sdkPath;_hdcPath;_emulatorPath;static installSourcePromise;get sourceType(){return this._sourceType}get toolchainRoot(){return this._toolchainRoot}get devecoStudioPath(){return this._devecoStudioPath}get nodePath(){return this._nodePath}get ohpmJsPath(){return this._ohpmJsPath}get hvigorJsPath(){return this._hvigorJsPath}get codelinterPath(){return n.resolveCodelinterPath(this._toolchainRoot,this._sourceType)}get arktsLangServerPath(){let e=n.buildToolPaths(this._toolchainRoot,this._sourceType).arktsLangServerCandidates;for(let t of e)if(ke.existsSync(t.marker))return t.root;return null}get clangdPath(){let e=n.buildToolPaths(this._toolchainRoot,this._sourceType).clangdPath;return ke.existsSync(e)?e:null}get javaPath(){return this._javaPath??""}get sdkPath(){return this._sdkPath}get hdcPath(){return this._hdcPath}get emulatorPath(){return this._emulatorPath}get emulatorLauncherPath(){return this.emulatorPath}assertJava(){if(this._sourceType==="clt"&&!this._javaPath&&(this._javaPath=n.resolveCltJava(!0)),!this._javaPath)throw new Error("Java runtime is required to run hvigor. Set JAVA_HOME or add Java to PATH.")}assertStudio(){if(this._sourceType==="clt")throw new Error("This operation requires DevEco Studio. Set DEVECO_CLI_STUDIO_PATH to a DevEco Studio installation.")}assertLsp(){this.assertStudio()}static compareVersion(e,t){return Zn(e,t)}static async checkVersion(){let e=await n.resolveInstallSource();(e.sourceType==="clt"?n.fromCLT(e.toolchainRoot):n.fromIDE(e.toolchainRoot,e.sourceType)).assertVersion()}static async getStudioVersion(){try{let e=await n.resolveInstallSource();return Vt(e.toolchainRoot)}catch{return}}static async getCltVersion(){try{let e=await n.resolveInstallSource();return n.readCltVersion(e.toolchainRoot)}catch{return}}static async new(){let e=await n.resolveInstallSource();return e.sourceType==="clt"?n.fromCLT(e.toolchainRoot):n.fromIDE(e.toolchainRoot,e.sourceType)}static fromCLT(e){let t=n.buildToolPaths(e,"clt");return n.assertBuiltPathsInsideRoot(e,t,!1),new n("clt",e,void 0,t.nodePath,t.ohpmJsPath,t.hvigorJsPath,n.resolveCltJava(!1),t.sdkPath,t.hdcPath,t.emulatorPath)}static fromIDE(e,t="studio"){let r=n.buildToolPaths(e,"studio");return n.assertBuiltPathsInsideRoot(e,r,!0),new n(t,e,e,r.nodePath,r.ohpmJsPath,r.hvigorJsPath,r.javaPath,r.sdkPath,r.hdcPath,r.emulatorPath)}assertVersion(){if(this._sourceType==="clt"){this.assertCltVersion();return}this.assertIdeVersion()}assertCltVersion(e="26.0.0"){if(this._sourceType!=="clt")throw new Error("This operation requires Command Line Tools.");n.assertMinimumVersion(n.readCltVersion(this._toolchainRoot),"Command Line Tools","version.txt",e,this._toolchainRoot)}assertIdeVersion(e="6.0.0"){this.assertStudio(),n.assertMinimumVersion(Vt(this._toolchainRoot),"DevEco Studio","product-info.json / Info.plist",e,this._toolchainRoot)}require(e){if(this._sourceType==="clt"){this.requireClt(e.clt);return}this.requireIde(e.studio)}requireClt(e){if(e===!1)throw new Error("This operation is not supported in Command Line Tools mode.");typeof e=="string"&&this.assertCltVersion(e)}requireIde(e){if(e===!1)throw new Error("This operation is not supported in DevEco Studio mode.");typeof e=="string"&&this.assertIdeVersion(e)}static assertMinimumVersion(e,t,r,i,o){if(!e)throw new w(`Failed to determine ${t} version from ${r} at ${o}`,`Failed to determine ${t} version from ${r}`);if(!/^\d+(?:\.\d+){1,3}$/.test(e))throw new w(`Invalid ${t} version "${e}" from ${r} at ${o}`,`Invalid ${t} version "${e}" from ${r}`);if(Zn(e,i)<0)throw new Error(`The detected ${t} version is ${e}, which is below the minimum required version ${i}. Upgrade before using deveco-cli:
15
- ${La}`)}static resolveCodelinterPath(e,t){let r=n.buildToolPaths(e,t).codelinterCandidates,i=r.find(n.isFile);if(!i){let a=t==="studio"?"Code Linter not found in DevEco Studio.":"Code Linter not found in DevEco Command Line Tools.";throw new w(`${a}
14
+ `;await et.promises.appendFile(o,i,"utf8")}catch{return}try{await et.promises.unlink(e)}catch{}}};var I=new io;import{spawn as ev}from"child_process";import{existsSync as tv}from"fs";import{dirname as rv,join as nv}from"path";import{fileURLToPath as ov}from"url";function iv(){let r=rv(ov(import.meta.url)),e=nv(r,"internal","telemetry-upload-background.js");return tv(e)?e:null}function Ya(r){if(Et()||!Zd(r))return;let e=iv();if(!e){h.warn("[telemetry] background upload script not found, skipping spawn");return}try{ev(process.execPath,[e],{detached:!0,stdio:["ignore","ignore","ignore"],env:{...process.env,DEVECO_CLI_SKIP_VERSION_CHECK:"1",DEVECO_CLI_TELEMETRY_UPLOAD:"1"}}).unref()}catch(t){h.warn("[telemetry] failed to spawn background upload:",t)}}var w=class extends Error{traceMessage;constructor(e,t,n){super(e,n),this.name="TraceError",this.traceMessage=t??e}};function q(r){if(r instanceof w)return r.traceMessage;if(r instanceof Error){let e=r.code;return typeof e=="string"&&e!==""?e:r.name}return"UnknownError"}var b={CommandExecuted:"Command_executed",McpToolCall:"serve_mcp",SkillOperation:"skills",Init:"mcp_config_operation",SkillConfigOperation:"skill_config_operation",DocOperation:"docs",ServeLsp:"serve_lsp",CheckCommand:"check"};var De={OH_PACKAGE_JSON5:"oh-package.json5",BUILD_PROFILE_JSON5:"build-profile.json5",SYNC_OUTPUT_PATH:".hvigor/outputs/sync/output.json",LOCK_JSON5_PATH:"oh_modules/.ohpm/lock.json5"};var W=class r{rootDir;profile;constructor(e,t){this.rootDir=e,this.profile=t}static discover(e){let t=e;for(;;){let n=r.tryLoadProjectProfile(t);if(n)return new r(t,n);let o=j.dirname(t);if(o===t)break;t=o}throw new Error("Not in a valid project directory (project-level build-profile.json5 not found).")}static tryLoadProjectProfile(e){let t=j.join(e,"build-profile.json5");if(!X.existsSync(t))return null;try{let n=X.readFileSync(t,"utf-8"),o=Pt.parse(n);return o.app?o:null}catch(n){return console.error(`Error parsing ${t}:`,n),null}}getRunnableModuleNames(){return this.profile.modules.map(e=>e.name).filter(e=>this.getModuleType(e)!=="har").join(", ")}getModuleType(e){let t=this.profile.modules.find(i=>i.name===e);if(!t)throw new w(`Module '${e}' not found in project-level build-profile.json5.`,"Module not found in project-level build-profile.json5.");let n=S.resolvePathWithinRoot(this.rootDir,t.srcPath),o=j.join(n,"src","main","module.json5");if(!X.existsSync(o))return"entry";try{let i=X.readFileSync(o,"utf-8");return Pt.parse(i)?.module?.type||"entry"}catch(i){return console.warn(`Warning: Failed to parse ${o}:`,i),"entry"}}findOwningModule(e){let t=j.normalize(e);for(let n of this.profile.modules){let o=j.normalize(j.join(this.rootDir,n.srcPath)),i=o+j.sep;if(t.startsWith(i)||t===o)return n.name}return null}getModuleProfile(e){let t=this.profile.modules.find(i=>i.name===e);if(!t)throw new w(`Module '${e}' not found in project-level build-profile.json5.`,"Module not found in project-level build-profile.json5.");let n=S.resolvePathWithinRoot(this.rootDir,t.srcPath),o=j.join(n,"build-profile.json5");if(!X.existsSync(o))throw new w(`Build profile for module '${e}' not found at ${o}.`,"Build profile for module not found at ${profilePath}.");try{let i=X.readFileSync(o,"utf-8");return Pt.parse(i)}catch(i){throw new Error(`Failed to parse module build profile at ${o}: ${i instanceof Error?i.message:String(i)}`,{cause:i})}}getBundleName(e){if(e){let n=this.profile.app.products?.find(o=>o.name===e);if(n?.bundleName)return n.bundleName}let t=j.join(this.rootDir,"AppScope","app.json5");if(X.existsSync(t))try{let n=X.readFileSync(t,"utf-8"),o=Pt.parse(n);if(o?.app?.bundleName)return o.app.bundleName}catch(n){console.warn(`Warning: Failed to parse ${t}:`,n)}throw new Error("Could not find bundleName in AppScope/app.json5.")}isAtomicService(){let e=j.join(this.rootDir,"AppScope","app.json5");if(!X.existsSync(e))return!1;try{let t=X.readFileSync(e,"utf-8");return Pt.parse(t)?.app?.bundleType==="atomicService"}catch{return!1}}getMainAbility(e,t){if(t)return t;let n=this.profile.modules.find(s=>s.name===e);if(!n)return"EntryAbility";let o=S.resolvePathWithinRoot(this.rootDir,n.srcPath),i=j.join(o,"src","main","module.json5");if(!X.existsSync(i))return"EntryAbility";try{let s=X.readFileSync(i,"utf-8"),c=Pt.parse(s)?.module?.abilities||[];if(c.length===0)return"EntryAbility";let l=c.find(d=>d.name==="EntryAbility");return l?l.name:c[0].name}catch(s){return console.warn(`Warning: Failed to parse ${i}:`,s),"EntryAbility"}}validateProduct(e){if(!/^[\da-zA-Z_-]+$/.test(e))throw new w(`Invalid product name '${e}'. Product names must only contain letters, digits, underscores, and hyphens.`,"Invalid product name.");if(!this.profile.app.products?.some(n=>n.name===e)){let n=this.profile.app.products?.map(o=>o.name).join(", ")||"none";throw new w(`Product '${e}' not found in project configuration. Available products: ${n}`,"Productnot found in project configuration.")}}getModuleDependencies(e){let t=this.profile.modules.find(o=>o.name===e);if(!t)return[];let n=this.readLockFinalLocalModuleDeps(e);return n!==null?n:this.readOhPackageLocalModuleDeps(t)}readLockFinalLocalModuleDeps(e){let t=j.join(this.rootDir,De.LOCK_JSON5_PATH);if(!X.existsSync(t))return null;let n;try{n=Pt.parse(X.readFileSync(t,"utf-8"))}catch(d){return u(`Failed to parse lock.json5: ${d instanceof Error?d.message:String(d)}`),null}let o=n,i=o?.modules;if(!i||typeof i!="object")return null;let s=Object.values(i).find(d=>typeof d=="object"&&d!==null&&d.name===e);if(!s)return null;let a=this.buildOverrideMap(o.overrides),c=[],l=new Set;for(let d of["dependencies","dynamicDependencies"]){let g=s[d];!g||typeof g!="object"||this.collectLocalDeps(g,a,v=>this.resolveLockDepByVersion(v),c,l)}return c}resolveLockDepByVersion(e){if(typeof e!="object"||e===null)return null;let t=e.version;return typeof t=="string"?this.resolveLocalDepToModule(t):null}resolveDepModule(e,t,n){if(t?.has(e)){let o=t.get(e);if(o){let i=this.resolveLocalDepToModule(o);if(i)return i}}return n()}buildOverrideMap(e){if(!e||typeof e!="object")return null;let t=new Map;for(let[n,o]of Object.entries(e))typeof o=="string"&&t.set(n,o);return t.size>0?t:null}resolveLocalDepToModule(e){let t=r.stripLocalDep(e);if(!t)return null;let n=j.resolve(this.rootDir,t),o;try{o=S.ensurePathWithinRoot(this.rootDir,n)}catch{return null}let i=this.profile.modules.find(s=>j.resolve(this.rootDir,s.srcPath)===o);return i?i.name:null}static stripLocalDep(e){return!e.startsWith("file:")&&!e.startsWith(".")&&!e.startsWith("..")?null:e.startsWith("file:")?e.substring(5):e}readOhPackageLocalModuleDeps(e){let t=j.join(S.resolvePathWithinRoot(this.rootDir,e.srcPath),De.OH_PACKAGE_JSON5);if(!X.existsSync(t))return[];let n=this.readRootOverrideMap(),o=[],i=new Set;try{let s=Pt.parse(X.readFileSync(t,"utf-8"));for(let a of["dependencies","dynamicDependencies"]){let c=s?.[a];!c||typeof c!="object"||this.collectLocalDeps(c,n,l=>this.resolveOhPackageDepByValue(l,e),o,i)}}catch(s){u(`Failed to get module dependencies: ${s instanceof Error?s.message:String(s)}`)}return o}readRootOverrideMap(){let e=j.join(this.rootDir,De.OH_PACKAGE_JSON5);if(!X.existsSync(e))return null;try{let t=Pt.parse(X.readFileSync(e,"utf-8"));return this.buildOverrideMap(t?.overrides)}catch{return null}}resolveOhPackageDepByValue(e,t){return typeof e=="string"?this.resolveLocalDepModuleName(e,t):null}collectLocalDeps(e,t,n,o,i){for(let[s,a]of Object.entries(e)){let c=this.resolveDepModule(s,t,()=>n(a));c&&!i.has(c)&&(i.add(c),o.push(c))}}resolveLocalDepModuleName(e,t){let n=r.stripLocalDep(e);if(!n)return null;let o=j.join(t.srcPath,n),i=S.resolvePathWithinRoot(this.rootDir,o),s=this.profile.modules.find(a=>j.resolve(this.rootDir,a.srcPath)===i);return s?s.name:null}collectNonHarDependentModuleList(e){let t=[],n=[],o=new Set;for(n.push(e),o.add(e);n.length>0;){let i=n.shift();this.getModuleType(i)!=="har"&&t.push(i);let a=this.getModuleDependencies(i);for(let c of a)o.has(c)||(n.push(c),o.add(c))}return t}resolveModuleMetadata(e,t,n){this.validateProduct(n);let o=this.profile.modules.find(l=>l.name===e);if(!o){let l=this.getRunnableModuleNames();throw new w(`Module '${e}' not found. Available modules: ${l}`,"Module not found.")}let i=this.getModuleType(e)==="shared",s=i?"hspName":"hapName",a=this.buildOutputPath(o.srcPath,n,["intermediates",i?"hsp_metadata":"hap_metadata",t,"output_metadata.json"]);if(!X.existsSync(a))throw new w(`Build metadata not found for module '${e}' at ${a}. Build the project first.`,"Build metadata not found for module. Build the project first.");let c=this.parseOutputMetadata(a,s);return{moduleNode:o,isShared:i,metadataPath:a,metadata:c}}findArtifactPath(e,t,n,o="default"){let{moduleNode:i,isShared:s,metadata:a}=this.resolveModuleMetadata(e,t,o),{packageName:c,isSigned:l}=a,d=c;if(!l){let P=this.getSignedHapName(c,i.srcPath,o,t);P&&(d=P)}let g=s?"-signed.hsp":"-signed.hap";if(!n&&!d.endsWith(g))throw new w(`Target device is a real device, but the artifact for '${e}' is not signed. Real devices cannot install unsigned packages.`,"Target device is a real device, but the artifact is not signed.");let v=this.buildOutputPath(i.srcPath,o,["outputs",t,d]);if(!X.existsSync(v))throw new w(`Generated package file not found in ${v}.`,"Generated package file not found.");return v}findRemoteHspPaths(e,t,n="default"){let{moduleNode:o,metadata:i}=this.resolveModuleMetadata(e,t,n),s=[],a=new Set;for(let{hspPath:c}of i.dependRemoteHsps){if(a.has(c))continue;a.add(c);let l=j.isAbsolute(c)?c:this.buildOutputPath(o.srcPath,n,["outputs",t,c]);if(!X.existsSync(l))throw new w(`Remote HSP dependency not found: ${l}`,"Remote HSP dependency not found.");s.push(l)}return s}getSignedHapName(e,t,n,o){let i=null;if(e.endsWith("-unsigned.hap")?i=e.replace("-unsigned.hap","-signed.hap"):e.endsWith("-unsigned.hsp")&&(i=e.replace("-unsigned.hsp","-signed.hsp")),!i)return null;let s=this.buildOutputPath(t,n,["outputs",o,i]);return X.existsSync(s)?i:null}buildOutputPath(e,t,n){let o=S.resolvePathWithinRoot(this.rootDir,e),i=j.resolve(o,"build",t,...n);return S.ensurePathWithinRoot(this.rootDir,i)}collectRemoteHsps(e){return e.flatMap(t=>{let n=t.dependRemoteHsps;return Array.isArray(n)?n.filter(o=>!!(o.hspName&&o.hspPath)).map(o=>({hspName:o.hspName,hspPath:o.hspPath})):[]})}parseOutputMetadata(e,t){let n;try{let c=X.readFileSync(e,"utf-8");n=Pt.parse(c)}catch(c){throw new Error(`Failed to parse output metadata at ${e}: ${c instanceof Error?c.message:String(c)}`,{cause:c})}let o,i=!1,s=Array.isArray(n)?n:[n];for(let c of s)o||(o=c[t]),i||(i=c.isSigned===!0);if(!o)throw new w(`Could not find ${t} in output_metadata.json at ${e}`,"Could not find metadataKey in output_metadata.json at metadataPath.");this.validatePackageName(o);let a=this.collectRemoteHsps(s);return{packageName:o,isSigned:i,dependRemoteHsps:a}}validatePackageName(e){let t=j.basename(e);if(t!==e)throw new w(`Invalid traversal name: '${e}'. It must contain path characters.`,"Invalid traversal name.");if(!t.endsWith(".hap")&&!t.endsWith(".hsp"))throw new w(`Invalid package name '${t}'.It must be a .hap or .hsp file.`,"Invalid package name.")}};import Re from"fs";import*as qe from"os";import*as C from"path";import Pi from"fs";import*as Ci from"os";import*as so from"path";import lv from"regedit";import{execFileSync as av}from"child_process";import nu from"fs";import*as ou from"os";import*as Ka from"path";import{compare as sv}from"semver";function ru(r,e){return sv(r,e)}function sn(r,e){let t=Math.max(r.split(".").length,e.split(".").length);for(let n=0;n<t;n++){let o=Number(r.split(".")[n]??0)-Number(e.split(".")[n]??0);if(o)return o}return 0}function Ei(r,e){let t=Ka.join(r,"Contents","Info.plist");if(!nu.existsSync(t)){u(`[ToolProvider] Info.plist not found at: ${t}`);return}for(let[n,o]of[["/usr/libexec/PlistBuddy",["-c",`Print :${e}`,t]],["plutil",["-extract",e,"raw","-o","-",t]]])try{let i=av(n,o,{encoding:"utf8",stdio:["ignore","pipe","ignore"]}).trim();if(i&&!i.includes("Does Not Exist"))return i}catch{}}function cv(r){let e=Ei(r,"CFBundleShortVersionString");if(!e)return Ei(r,"CFBundleVersion");let t=e.split(".").slice(0,3).join(""),n=[Ei(r,"CFBundleVersion"),Ei(r,"CFBundleGetInfoString")?.match(/DS-[\d.]+/)?.[0]];for(let o of n){let i=o?.split(".").at(-1)?.replace(new RegExp(`^${t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}`),"");if(i&&/^\d+$/.test(i))return`${e}.${i}`}return e}function Xt(r){if(ou.platform()==="darwin")return cv(r);let e=Ka.join(r,"product-info.json");try{let t=JSON.parse(nu.readFileSync(e,"utf8")).version;return typeof t=="string"&&t.trim()?t.trim():void 0}catch{return}}var dv="DevEco Studio",uv=["Contents","Resources","product-info.json"],pv="name";function fv(r){return r.filter(e=>{try{return Pi.statSync(e).isDirectory()}catch{return!1}})}function mv(r){let e=so.join(r,...uv);if(Pi.existsSync(e))try{let n=JSON.parse(Pi.readFileSync(e,"utf8"))[pv];return typeof n=="string"&&n.trim()?n.trim():void 0}catch{return}}function hv(r){return mv(r)===dv}function gv(){let r=[];for(let e of[so.join(Ci.homedir(),"Applications"),"/Applications"])try{r.push(...Pi.readdirSync(e).filter(t=>t.endsWith(".app")).map(t=>so.join(e,t)).filter(hv))}catch{}return r}function iu(r){return new Promise((e,t)=>lv.list(r,(n,o)=>n?t(n):e(o)))}async function su(r,e,t){let o=((await iu([r]))[r]?.keys??[]).filter(e).map(s=>`${r}\\${s}`);if(o.length===0)return[];let i=await iu(o);return o.flatMap(s=>{let a=i[s]?.values?.[t]?.value;return a?[a]:[]})}async function yv(){let r=[so.join("C:","Program Files","Huawei","DevEco Studio")];for(let e of["HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall","HKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall"])try{r.push(...await su(e,t=>t.normalize("NFKC").trim().toLowerCase().startsWith("deveco studio"),"InstallLocation"))}catch{}for(let e of["HKLM\\SOFTWARE\\Huawei\\DevEco Studio","HKLM\\SOFTWARE\\WOW6432Node\\Huawei\\DevEco Studio"])try{r.push(...await su(e,()=>!0,""))}catch{}return r}async function au(){let r=Ci.platform();if(r==="linux")throw new Error("DevEco Studio is not available on Linux. Set DEVECO_CLI_CLT_PATH to a Command Line Tools installation.");let e=r==="darwin"?gv():await yv(),t=fv(e).flatMap(n=>{let o=Xt(n);return o?(u(`[ToolProvider] ${n} => version ${o}`),[{root:n,version:o}]):(u(`[ToolProvider] Skipping ${n}: could not read version`),[])});if(!t.length)throw new Error("DevEco Studio installation not found in default locations. Set DEVECO_CLI_STUDIO_PATH to a DevEco Studio installation, or set DEVECO_CLI_CLT_PATH to a Command Line Tools installation.");return t.reduce((n,o)=>sn(o.version,n.version)>0?o:n)}import*as cu from"fs";import*as Oe from"path";function Xa(r,e){let t=Oe.relative(e,r);return t===""||!Oe.isAbsolute(t)&&!t.startsWith(`..${Oe.sep}`)&&t!==".."}function Zt(r){let e=Oe.resolve(r),t=[],n=e;for(;;)try{let o=cu.realpathSync(n);return t.length===0?o:Oe.join(o,...t.reverse())}catch(o){if(o.code!=="ENOENT")throw o;let i=Oe.dirname(n);if(i===n)return e;t.push(Oe.basename(n)),n=i}}function lu(r,e){let t=Zt(e),n=Zt(r);return Xa(n,t)?n:null}function Za(r){let e=r.trim();return(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))&&(e=e.slice(1,-1).trim()),e}function ki(r){let e=Za(r);if(!e)throw new Error("Path must not be empty.");return Zt(e)}var Qa="https://matrix.openharmony.cn",tt={TAGS_API_URL:`${Qa}/api/model_base/model/tags?serviceType=skill`,SKILLS_API_URL:`${Qa}/api/registry/skill/skills`,SKILL_API_BASE:`${Qa}/api/registry/skill`,DEFAULT_PAGE_SIZE:20,DEFAULT_MAX_PAGES:100,SUCCESS_CODE:"20000"},ft={"trae-cn":{path:".trae-cn/skills",displayName:"trae-cn"},opencode:{path:".config/opencode/skills",displayName:"opencode"},pi:{path:".pi/agent/skills",displayName:"pi"},deveco:{path:".config/deveco/skills",displayName:"deveco"},cursor:{path:".cursor/skills",displayName:"cursor"},codebuddy:{path:".codebuddy/skills",displayName:"codebuddy"},qoder:{path:".qoder/skills",displayName:"qoder"},"claude-code":{path:".claude/skills",projectPath:".claude/skills",displayName:"claude-code"},codex:{path:".codex/skills",displayName:"codex"},atomcode:{path:".atomcode/skills",displayName:"atomcode"},dsh:{path:".dsh/skills",projectPath:".dsh/skills",displayName:"deepseek harness"}};import{homedir as Ct}from"os";import _e from"path";var kt="deveco-mcp";var Qt={opencode:{name:"opencode",displayName:"OpenCode",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".config","opencode","opencode.json"),projectConfigPath:".opencode/opencode.json",mcpServersKey:"mcp",format:"opencode"},pi:{name:"pi",displayName:"Pi Coding Agent",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".pi","agent","mcp.json"),projectConfigPath:".pi/mcp.json",mcpServersKey:"mcpServers",format:"standard"},"trae-cn":{name:"trae-cn",displayName:"Trae-CN",supportsGlobal:!0,globalConfigPath:_e.join(process.platform==="win32"?_e.join(process.env.APPDATA??_e.join(Ct(),"AppData","Roaming"),"Trae CN","User"):_e.join(Ct(),"Library","Application Support","Trae CN","User"),"mcp.json"),projectConfigPath:".trae/mcp.json",mcpServersKey:"mcpServers",format:"standard"},cursor:{name:"cursor",displayName:"Cursor",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".cursor","mcp.json"),projectConfigPath:".cursor/mcp.json",mcpServersKey:"mcpServers",format:"standard"},codebuddy:{name:"codebuddy",displayName:"Codebuddy",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".codebuddy","mcp.json"),projectConfigPath:".codebuddy/mcp.json",mcpServersKey:"mcpServers",format:"standard"},qoder:{name:"qoder",displayName:"Qoder",supportsGlobal:!0,globalConfigPath:_e.join(process.platform==="win32"?_e.join(process.env.APPDATA??_e.join(Ct(),"AppData","Roaming"),"Qoder","SharedClientCache"):_e.join(Ct(),"Library","Application Support","Qoder","SharedClientCache"),"mcp.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"standard"},"claude-code":{name:"claude-code",displayName:"Claude Code",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".claude.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"claude-code"},codex:{name:"codex",displayName:"Codex",supportsGlobal:!0,globalConfigPath:_e.join(Ct(),".codex","config.toml"),projectConfigPath:".codex/config.toml",mcpServersKey:"mcp_servers",format:"codex"}};function uu(r){return{type:"local",command:["devecocli","serve","mcp"],environment:{PROJECT_PATH:r??"."},enabled:!0}}function du(r){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:r??"."},enabled:!0}}function pu(r){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:r??"${workspaceFolder}"}}}function Ii(r,e){return r.format==="opencode"?uu(e):r.format==="claude-code"||r.format==="codex"?du(e):pu(e)}var ec="https://developer.huawei.com/consumer/cn/download/";var vv=/^#\s*Version:\s*(\S+)/,wv="26.0.0.810";function bv(r){try{let e=JSON.parse(Re.readFileSync(r,"utf8")),t=Number(e.apiVersion??e.data?.apiVersion);return Number.isInteger(t)&&t>=17?t:void 0}catch(e){u(`[ToolProvider] Failed to parse API level from ${r}: ${e instanceof Error?e.message:String(e)}`);return}}function Sv(r){let e=C.join(r,"default","openharmony");return[C.join(r,"default","sdk-pkg.json"),...["toolchains","native","previewer"].map(t=>C.join(e,t,"oh-uni-package.json"))]}var A=class r{constructor(e,t,n,o,i,s,a,c,l,d){this._sourceType=e;this._toolchainRoot=t;this._devecoStudioPath=n;this._nodePath=o;this._ohpmJsPath=i;this._hvigorJsPath=s;this._javaPath=a;this._sdkPath=c;this._hdcPath=l;this._emulatorPath=d}static installSourcePromise;get sourceType(){return this._sourceType}get toolchainRoot(){return this._toolchainRoot}get devecoStudioPath(){return this._devecoStudioPath}get nodePath(){return this._nodePath}get ohpmJsPath(){return this._ohpmJsPath}get hvigorJsPath(){return this._hvigorJsPath}get codelinterPath(){return r.resolveCodelinterPath(this._toolchainRoot,this._sourceType)}get arktsLangServerPath(){let e=r.buildToolPaths(this._toolchainRoot,this._sourceType).arktsLangServerCandidates;for(let t of e)if(Re.existsSync(t.marker))return t.root;return null}get clangdPath(){let e=r.buildToolPaths(this._toolchainRoot,this._sourceType).clangdPath;return Re.existsSync(e)?e:null}get javaPath(){return this._javaPath??""}get sdkPath(){return this._sdkPath}get hdcPath(){return this._hdcPath}get emulatorPath(){return this._emulatorPath}get emulatorLauncherPath(){return this.emulatorPath}assertJava(){if(this._sourceType==="clt"&&!this._javaPath&&(this._javaPath=r.resolveCltJava(!0)),!this._javaPath)throw new Error("Java runtime is required to run hvigor. Set JAVA_HOME or add Java to PATH.")}assertStudio(){if(this._sourceType==="clt")throw new Error("This operation requires DevEco Studio. Set DEVECO_CLI_STUDIO_PATH to a DevEco Studio installation.")}assertLsp(){this.assertStudio()}static compareVersion(e,t){return sn(e,t)}static async checkVersion(){let e=await r.resolveInstallSource();(e.sourceType==="clt"?r.fromCLT(e.toolchainRoot):r.fromIDE(e.toolchainRoot,e.sourceType)).assertVersion()}static async getStudioVersion(){try{let e=await r.resolveInstallSource();return Xt(e.toolchainRoot)}catch{return}}static async getCltVersion(){try{let e=await r.resolveInstallSource();return r.readCltVersion(e.toolchainRoot)}catch{return}}static async new(){let e=await r.resolveInstallSource();return e.sourceType==="clt"?r.fromCLT(e.toolchainRoot):r.fromIDE(e.toolchainRoot,e.sourceType)}static fromCLT(e){let t=r.buildToolPaths(e,"clt");return r.assertBuiltPathsInsideRoot(e,t,!1),new r("clt",e,void 0,t.nodePath,t.ohpmJsPath,t.hvigorJsPath,r.resolveCltJava(!1),t.sdkPath,t.hdcPath,t.emulatorPath)}static fromIDE(e,t="studio"){let n=r.buildToolPaths(e,"studio");return r.assertBuiltPathsInsideRoot(e,n,!0),new r(t,e,e,n.nodePath,n.ohpmJsPath,n.hvigorJsPath,n.javaPath,n.sdkPath,n.hdcPath,n.emulatorPath)}assertVersion(){if(this._sourceType==="clt"){this.assertCltVersion();return}this.assertIdeVersion()}assertCltVersion(e="26.0.0"){if(this._sourceType!=="clt")throw new Error("This operation requires Command Line Tools.");r.assertMinimumVersion(r.readCltVersion(this._toolchainRoot),"Command Line Tools","version.txt",e,this._toolchainRoot)}assertIdeVersion(e="6.0.0"){this.assertStudio(),r.assertMinimumVersion(Xt(this._toolchainRoot),"DevEco Studio","product-info.json / Info.plist",e,this._toolchainRoot)}require(e){if(this._sourceType==="clt"){this.requireClt(e.clt);return}this.requireIde(e.studio)}requireClt(e){if(e===!1)throw new Error("This operation is not supported in Command Line Tools mode.");typeof e=="string"&&this.assertCltVersion(e)}requireIde(e){if(e===!1)throw new Error("This operation is not supported in DevEco Studio mode.");typeof e=="string"&&this.assertIdeVersion(e)}static assertMinimumVersion(e,t,n,o,i){if(!e)throw new w(`Failed to determine ${t} version from ${n} at ${i}`,`Failed to determine ${t} version from ${n}`);if(!/^\d+(?:\.\d+){1,3}$/.test(e))throw new w(`Invalid ${t} version "${e}" from ${n} at ${i}`,`Invalid ${t} version "${e}" from ${n}`);if(sn(e,o)<0)throw new Error(`The detected ${t} version is ${e}, which is below the minimum required version ${o}. Upgrade before using deveco-cli:
15
+ ${ec}`)}static resolveCodelinterPath(e,t){let n=r.buildToolPaths(e,t).codelinterCandidates,o=n.find(r.isFile);if(!o){let a=t==="studio"?"Code Linter not found in DevEco Studio.":"Code Linter not found in DevEco Command Line Tools.";throw new w(`${a}
16
16
  Searched paths:
17
- ${r.join(`
18
- `)}`,a)}let o=qt(e),s=qt(i);return n.assertInsideRoot(s,o,"codelinter"),s}static isValidRoot(e,t){if(!n.isDirectory(e))return!1;if(t==="clt")return ke.existsSync(P.join(e,"version.txt"));let r=We.platform()==="darwin"?P.join(e,"Contents"):e,i=We.platform()==="darwin"?P.join(r,"Info.plist"):P.join(r,"product-info.json");if(!ke.existsSync(i))return!1;let o=n.buildToolPaths(e,"studio");return[o.nodePath,o.ohpmJsPath,o.hvigorJsPath].every(ke.existsSync)}static buildToolPaths(e,t){return t==="clt"?n.buildCltToolPaths(e):n.buildStudioToolPaths(e)}static buildCltToolPaths(e){let t=We.platform()==="win32",r=t?".exe":"",i=P.join(e,"sdk");return{nodePath:t?P.join(e,"tool","node","node.exe"):P.join(e,"tool","node","bin","node"),ohpmJsPath:P.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:P.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:i,hdcPath:P.join(i,"default","openharmony","toolchains",`hdc${r}`),emulatorPath:P.join(e,"emulator",t?"Emulator.exe":"Emulator"),clangdPath:n.clangdPathFor(i),arktsLangServerCandidates:[{root:P.join(e,"arkts-lsp","lib"),marker:P.join(e,"arkts-lsp","lib","out","index.js")}],codelinterCandidates:n.codelinterCandidatesFor(e,"clt")}}static buildStudioToolPaths(e){let t=We.platform()==="darwin",r=We.platform()==="win32",i=t?P.join(e,"Contents"):e,o=P.join(i,"tools"),s=P.join(i,"sdk"),a=r?".exe":"";return{nodePath:r?P.join(o,"node","node.exe"):P.join(o,"node","bin","node"),ohpmJsPath:P.join(o,"ohpm","bin","pm-cli.js"),hvigorJsPath:P.join(o,"hvigor","bin","hvigorw.js"),javaPath:r?P.join(e,"jbr","bin","java.exe"):t?P.join(i,"jbr","Contents","Home","bin","java"):P.join(i,"jbr","bin","java"),sdkPath:s,hdcPath:P.join(s,"default","openharmony","toolchains",`hdc${a}`),emulatorPath:P.join(o,"emulator",r?"Emulator.exe":"Emulator"),clangdPath:n.clangdPathFor(s),arktsLangServerCandidates:n.studioArktsLangServerCandidates(e),codelinterCandidates:n.codelinterCandidatesFor(e,"studio")}}static codelinterCandidatesFor(e,t){if(t==="clt")return[P.join(e,"codelinter","index.js"),P.join(e,"codelinter","run","index.js"),P.join(e,"tool","codelinter","bin","codelinter.js"),P.join(e,"tool","codelinter","codelinter.js")];let r=We.platform()==="darwin"?["Contents"]:[];return[P.join(e,...r,"plugins","codelinter","run","index.js"),P.join(e,...r,"plugins","codelinter","index.js"),P.join(e,...r,"tools","codelinter","bin","codelinter.js"),P.join(e,...r,"tools","codelinter","codelinter.js")]}static studioArktsLangServerCandidates(e){if(We.platform()==="linux")return[];let t=We.platform()==="darwin"?["Contents"]:[],r=P.join(e,...t,"plugins","openharmony");return[{root:r,marker:P.join(r,"ace-server","out","index.js")}]}static clangdPathFor(e){return P.join(e,"default","openharmony","native","llvm","bin",We.platform()==="win32"?"clangd.exe":"clangd")}static isFile(e){try{return ke.statSync(e).isFile()}catch{return!1}}static isDirectory(e){try{return ke.existsSync(e)&&ke.statSync(e).isDirectory()}catch{return!1}}static resolveInstallSource(){return n.installSourcePromise||(n.installSourcePromise=n.resolveInstallSourceUncached()),n.installSourcePromise}static async resolveInstallSourceUncached(){let e=[["DEVECO_CLI_STUDIO_PATH","studio","studio"],["DEVECO_CLI_CLT_PATH","clt","clt"],["DEVECO_HOME","studio","studio"],["DEVECO_PATH","studio","studio"]];for(let[r,i,o]of e){let s=process.env[r]?.trim();if(s){let a=n.resolveExplicitRoot(s,i,r);return p(`[ToolProvider] Using ${r} \u2192 ${a}`),{sourceType:o,toolchainRoot:a}}}let t=await Td();return p(`[ToolProvider] Using auto \u2192 ${t.root} (${t.version})`),{sourceType:"studio",toolchainRoot:t.root}}static resolveExplicitRoot(e,t,r){let i;try{i=co(e)}catch(o){throw new Error(`Invalid ${r}: ${o instanceof Error?o.message:String(o)}`,{cause:o})}return t==="studio"&&We.platform()==="darwin"&&(i=n.normalizeMacStudioRoot(i)),n.isValidRoot(i,t)?i:n.throwInvalidSource(i,t,r,e)}static assertBuiltPathsInsideRoot(e,t,r){let i=qt(e),o=[["node",t.nodePath],["ohpm",t.ohpmJsPath],["hvigor",t.hvigorJsPath],["sdk",t.sdkPath],["hdc",t.hdcPath],["emulator",t.emulatorPath]];r&&t.javaPath&&o.push(["java",t.javaPath]);for(let[s,a]of o)n.assertInsideRoot(a,i,s)}static assertInsideRoot(e,t,r){if(Ld(e,t)===null)throw new Error(`Unsafe toolchain path: ${r} resolves outside the toolchain root`)}static throwInvalidSource(e,t,r,i){throw t==="clt"&&n.isValidRoot(e,"studio")?new Error(`${r} must point to Command Line Tools, not a DevEco Studio installation; use DEVECO_CLI_STUDIO_PATH instead`):t==="studio"&&n.isValidRoot(e,"clt")?new Error(`${r} must point to a DevEco Studio installation, not Command Line Tools; use DEVECO_CLI_CLT_PATH instead`):new Error(`Invalid ${r}: ${i}`)}static normalizeMacStudioRoot(e){let t=`${P.sep}Contents`,r=P.normalize(e);return r.endsWith(t)?r.slice(0,-t.length):r}static readCltVersion(e){try{return ke.readFileSync(P.join(e,"version.txt"),"utf-8").split(/\r?\n/).map(t=>t.match(Py)?.[1]?.trim()).find(Boolean)}catch{return}}static resolveCltJava(e){let t=process.env.JAVA_HOME?.trim(),r=t&&(n.javaIn(P.join(t,"bin"))??n.javaIn(t)),i=(process.env.Path??process.env.PATH??"").split(P.delimiter).map(s=>n.javaIn(s.trim())).find(Boolean),o=r??i;if(o)return ke.realpathSync(o);if(e)throw new Error("No Java runtime found in CLT mode. Set JAVA_HOME to a JDK/JBR installation directory (or point JAVA_HOME at the JDK bin directory), or add the JDK bin directory to PATH.");return""}static javaIn(e){return(We.platform()==="win32"?["java.exe","java.cmd"]:["java"]).map(r=>P.join(e,r)).find(ke.existsSync)}getMaxApiLevel(){for(let e of Iy(this.sdkPath)){let t=ky(e);if(t!==void 0)return t}return 23}getSdkPlatformVersion(){let e=P.join(this.sdkPath,"default","sdk-pkg.json"),t;try{t=JSON.parse(ke.readFileSync(e,"utf8"))}catch(o){throw new Error(`Failed to read SDK metadata: ${e}`,{cause:o})}let r=t.data?.platformVersion,i=typeof r=="string"?r.trim():"";if(!i)throw new Error(`Missing data.platformVersion in SDK metadata: ${e}`);return i}detectApiLevel(){return this.getMaxApiLevel()}_apiscanPaths;getApiscanPaths(){if(this._apiscanPaths)return this._apiscanPaths;let e=We.platform();if(e!=="darwin"&&e!=="win32")throw new Error(`Unsupported platform: ${e}. compat only supports macOS and Windows.`);if(!this._devecoStudioPath)throw new Error("DevEco Studio is required for compatibility checking. Set DEVECO_CLI_STUDIO_PATH or install DevEco Studio.");let t=e==="darwin"?"Contents":"",r=P.join(this._devecoStudioPath,t,"plugins","harmony","arkanalyzer-apiscan"),i=P.join(r,"resources","apiChange"),o=P.join(r,"api-change-scan.js");if(!ke.existsSync(i)||!ke.existsSync(o)){let s=Vt(this._toolchainRoot)??"unknown";throw new Error(`A required component is missing. The detected DevEco Studio version is ${s}. The minimum required version is ${Cy}. Upgrade before using 'check compat' at ${La}`)}return this._apiscanPaths={apiChangeDir:i,scriptPath:o},this._apiscanPaths}};import{execa as Ly}from"execa";import*as Hd from"net";import*as zt from"path";import*as po from"fs";import*as Ud from"os";import{execFile as jd}from"child_process";import{existsSync as Ay}from"fs";var Fd="C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",Na;function Dy(){return Na===void 0&&(Na=Ay(Fd)),Na}function Xe(n){return new Promise(e=>{let t=process.platform==="win32",r=t?"tasklist":"ps",i=t?["/fi",`PID eq ${n}`,"/fo","csv","/nh"]:["-o","rss=","-p",String(n)];p(`Executing: ${r} ${i.join(" ")}`),jd(r,i,{timeout:5e3,windowsHide:!0},(o,s)=>{if(o){e(null);return}e(t?xy(s):Ty(s))})})}async function Ry(n){return new Promise(e=>{let t=process.platform==="win32",r,i;if(t){if(!Dy()){e([]);return}r=Fd,i=["-NoProfile","-Command",`Get-CimInstance Win32_Process | Where-Object { $_.ParentProcessId -eq ${n} } | Select-Object -ExpandProperty ProcessId`]}else r="ps",i=["-o","pid=","--ppid",String(n)];jd(r,i,{timeout:5e3,windowsHide:!0},(o,s)=>{if(o){e([]);return}let a=[],c=s.trim().split(`
19
- `);for(let l of c){let d=l.trim();d&&/^\d+$/.test(d)&&a.push(Number(d))}e(a)})})}async function $d(n){let e=0,t=await Xe(n);t&&(e+=Number(t)*1024);let r=await Ry(n);for(let i of r)e+=await $d(i);return e}function ce(n){return`${(n/1024/1024).toFixed(2)}MB`}async function _d(n,e){if(!n)return process.memoryUsage().rss;if(e)return $d(n);let t=await Xe(n);return t?Number(t)*1024:0}function uo(n,e=500,t=!1){let r=0,i=!1,o=setInterval(async()=>{if(i)return;let s=await _d(n,t);s>r&&(r=s)},e);return{stop:async()=>{i=!0,clearInterval(o);let s=await _d(n,t);return Math.max(r,s)}}}function Ty(n){let e=n.trim().match(/^(\d+)$/);return e?e[1]:null}function xy(n){let e=n.match(/"([^"]+?)\s*K"/i);return e&&e[1].replace(/\D/g,"")||null}var Be=class{toolProvider;projectRoot;env;silent;constructor(e,t,r=!1){this.toolProvider=e,this.projectRoot=t,this.silent=r;let i=zt.dirname(e.javaPath),o=`${i}${zt.delimiter}${process.env.PATH||""}`,s={...process.env,PATH:o,DEVECO_SDK_HOME:e.sdkPath};e.sourceType==="clt"&&e.javaPath&&(s.JAVA_HOME=zt.dirname(i)),this.env=s}async sync(e,t){let r=["--sync","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(r)}async buildProduct(e,t){let r=["assembleApp","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(r)}async buildModules(e,t,r,i){let o=[...Array.from(i),"--mode","module","-p",`module=${r.join(",")}`,"-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(o)}async clean(){let e=["clean","--analyze=normal","--parallel","--no-daemon"];return this.runHvigor(e)}async stopDaemon(){return this.runHvigor(["--stop-daemon"])}async ensureDaemonRunning(){if(this.findProjectDaemon()){p("[HvigorAdapter] Daemon already running.");return}p("[HvigorAdapter] No daemon running, starting via --sync --daemon (no hap build)."),await this.runHvigor(["--sync","--daemon"])}isDaemonRunning(e){return this.findProjectDaemon(e)!==null}async isDaemonAlive(e){let t=this.findProjectDaemon(e);return t?this.isPortListening(t.port):!1}isPortListening(e){return new Promise(t=>{let r=new Hd.Socket;r.setTimeout(2e3),r.once("connect",()=>{r.destroy(),t(!0)}),r.once("error",()=>t(!1)),r.once("timeout",()=>{r.destroy(),t(!1)}),r.connect(e,"127.0.0.1")})}findProjectDaemon(e){let t=this.getDaemonRegistryPath();if(!po.existsSync(t))return null;try{let r=po.readFileSync(t,"utf-8"),i=JSON.parse(r),o=e??this.projectRoot,s=Object.values(i).filter(a=>a.cwdPath===o&&(a.state==="idle"||a.state==="half_busy"||a.state==="busy")&&this.isProcessAlive(a.pid));return s.length>0?s[s.length-1]:null}catch{return null}}getDaemonRegistryPath(){let e=process.env.HVIGOR_USER_HOME||zt.join(Ud.homedir(),".hvigor");return zt.join(e,"daemon","cache","daemon-sec.json")}isProcessAlive(e){try{return process.kill(e,0),!0}catch{return!1}}async compileNative(e,t){let r=["--mode","module"];return t&&r.push("-p",`module=${t}`),r.push("-p",`product=${e}`,"compileNative","--analyze=normal"),this.runHvigor(r)}async runHvigor(e){let t=this.toolProvider.nodePath,r=[this.toolProvider.hvigorJsPath,...e];p(`Executing: ${t} ${r.join(" ")}`);let i=this.silent&&!process.env.DEVECO_CLI_DEBUG?"pipe":"inherit",o=Ly(t,r,{cwd:this.projectRoot,env:this.env,stdout:i,stderr:i}),s=uo(o.pid,500,!0),a="";try{await o}finally{let c=await s.stop();c>0&&(a=ce(c),p(`Hvigor peak memory: ${a}`))}return a}};import{execa as Ny}from"execa";var Qn=class{toolProvider;projectRoot;peakMemoryMb="";constructor(e,t){this.toolProvider=e,this.projectRoot=t}async installAll(){let e=this.toolProvider.nodePath,t=[this.toolProvider.ohpmJsPath,"install","--all"];p(`Executing: ${e} ${t.join(" ")}`);let r=Ny(e,t,{cwd:this.projectRoot,env:{...process.env,DEVECO_SDK_HOME:this.toolProvider.sdkPath},stdout:"inherit",stderr:"inherit"}),i=uo(r.pid);try{await r}finally{let o=await i.stop();o>0&&(this.peakMemoryMb=ce(o))}}};import{mkdir as Oy}from"fs/promises";import{dirname as My,resolve as _y}from"path";import{execa as jy}from"execa";import{lock as Oa,check as TL}from"proper-lockfile";function Ma(n){return _y(n,".hvigor",".build-lock")}function Fy(n){let e=!1;return()=>{e||(e=!0,n?.())}}async function Wd(n){let e=My(Ma(n));if(await Oy(e,{recursive:!0}),process.platform==="win32")try{await jy("attrib",["+h",e])}catch{}}async function $y(n,e){let t=new AbortController,r=Fy(e);await Wd(n);let i={lockfilePath:Ma(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()};try{return{release:await Oa(n,{...i,retries:0}),signal:t.signal}}catch(s){if(s&&typeof s=="object"&&"code"in s&&s.code!=="ELOCKED")throw s}return r(),{release:await Oa(n,{...i,retries:{forever:!0,minTimeout:1e3,maxTimeout:1e3}}),signal:t.signal}}async function xn(n,e,t){let{release:r,signal:i}=await $y(n,t);try{return await e(i)}finally{await r()}}async function fo(n,e){let t=new AbortController;await Wd(n);let r={lockfilePath:Ma(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()},i;try{i=await Oa(n,{...r,retries:0})}catch(o){if(o&&typeof o=="object"&&"code"in o&&o.code==="ELOCKED")return{acquired:!1};throw o}try{return{acquired:!0,result:await e(t.signal)}}finally{await i()}}import*as Jt from"fs";import*as Ln from"path";import Hy from"json5";var Uy=1e3;function ho(n){p(`[ProjectCheck] Checking sync required at project root: ${n}`);let e=Ln.join(n,Ce.SYNC_OUTPUT_PATH);if(!Jt.existsSync(e)){let l={required:!0,reason:`sync baseline file not found: ${e}`};return p(`[ProjectCheck] ${l.reason}`),l}let t=Jt.statSync(e).mtimeMs;p(`[ProjectCheck] Sync baseline: ${new Date(t).toISOString()} (${e})`);let r=Wy(n);if(r===null){let l={required:!0,reason:"failed to parse build-profile.json5"};return p(`[ProjectCheck] ${l.reason}`),l}let i=Ln.join(n,Ce.OH_PACKAGE_JSON5),o=mo(i,t,"root");if(o.required)return p(`[ProjectCheck] Root check: ${o.reason}`),o;let s=Ln.join(n,Ce.BUILD_PROFILE_JSON5),a=mo(s,t,"build-profile");if(a.required)return p(`[ProjectCheck] Build profile check: ${a.reason}`),a;for(let l of r){let d=Ln.join(n,l.srcPath,Ce.OH_PACKAGE_JSON5),g=mo(d,t,l.name);if(g.required)return p(`[ProjectCheck] Module '${l.name}' check: ${g.reason}`),g;let v=Ln.join(n,l.srcPath,Ce.BUILD_PROFILE_JSON5),D=mo(v,t,l.name);if(D.required)return p(`[ProjectCheck] Module '${l.name}' build-profile check: ${D.reason}`),D}let c=`all configuration files are up-to-date (sync baseline: ${new Date(t).toISOString()})`;return p(`[ProjectCheck] ${c}`),{required:!1,reason:c}}function mo(n,e,t){if(!Jt.existsSync(n))return{required:!1,reason:`${t}: source not found, skip`};let r=Jt.statSync(n).mtimeMs;return r-e>Uy?{required:!0,reason:`${t}: source mtime (${new Date(r).toISOString()}) is newer than sync baseline (${new Date(e).toISOString()})`}:{required:!1,reason:`${t}: up-to-date`}}function Wy(n){let e=Ln.join(n,Ce.BUILD_PROFILE_JSON5);try{let t=Jt.readFileSync(e,"utf-8");if(!t.trim())return null;let r=Hy.parse(t);if(typeof r!="object"||r===null)return null;let i=r.modules;return Array.isArray(i)?i.filter(o=>{if(typeof o!="object"||o===null)return!1;let s=o;return typeof s.name=="string"&&typeof s.srcPath=="string"}):null}catch{return null}}import*as K from"fs";import*as te from"path";import*as Bd from"util";var _a="";function yo(n){if(!n||n==="auto"||n==="stdout"||n==="none"){_a="";return}_a=n}function Vd(){return _a||(hd()??"")}function go(n,...e){if(e.length===0)return n;try{return Bd.format(n,...e)}catch{return[n,...e.map(t=>typeof t=="string"?t:JSON.stringify(t))].join(" ")}}var u={info(n,...e){h.info(`[lsp] ${go(n,...e)}`)},warn(n,...e){h.warn(`[lsp] ${go(n,...e)}`)},error(n,...e){h.error(`[lsp] ${go(n,...e)}`)},debug(n,...e){h.debug(`[lsp] ${go(n,...e)}`)}};import*as Qr from"fs";import*as ei from"os";import*as er from"path";import By from"json5";var y={INITIALIZE:"initialize",INITIALIZED:"initialized",SHUTDOWN:"shutdown",EXIT:"exit",DID_OPEN:"textDocument/didOpen",DID_CHANGE:"textDocument/didChange",DID_CLOSE:"textDocument/didClose",PUBLISH_DIAGNOSTICS:"textDocument/publishDiagnostics",HOVER:"textDocument/hover",DEFINITION:"textDocument/definition",DECLARATION:"textDocument/declaration",REFERENCES:"textDocument/references",IMPLEMENTATION:"textDocument/implementation",COMPLETION:"textDocument/completion",COMPLETION_ITEM_RESOLVE:"completionItem/resolve",SIGNATURE_HELP:"textDocument/signatureHelp",CODE_ACTION:"textDocument/codeAction",PREPARE_RENAME:"textDocument/prepareRename",RENAME:"textDocument/rename",DOCUMENT_HIGHLIGHT:"textDocument/documentHighlight",DOCUMENT_LINK:"textDocument/documentLink",INLAY_HINT:"textDocument/inlayHint",DOCUMENT_SYMBOL:"textDocument/documentSymbol",WORKSPACE_SYMBOL:"workspace/symbol",DIAGNOSTIC:"textDocument/diagnostic",WORKSPACE_DIAGNOSTIC:"workspace/diagnostic",PREPARE_CALL_HIERARCHY:"textDocument/prepareCallHierarchy",INCOMING_CALLS:"callHierarchy/incomingCalls",OUTGOING_CALLS:"callHierarchy/outgoingCalls",PREPARE_TYPE_HIERARCHY:"textDocument/prepareTypeHierarchy",SUPERTYPES:"typeHierarchy/supertypes",SUBTYPES:"typeHierarchy/subtypes",WORKSPACE_DID_CHANGE_CONFIGURATION:"workspace/didChangeConfiguration",WORKSPACE_DID_CHANGE_WATCHED_FILES:"workspace/didChangeWatchedFiles",DID_CREATE_FILES:"workspace/didCreateFiles",DID_DELETE_FILES:"workspace/didDeleteFiles",PROGRESS:"$/progress",WINDOW_SHOW_MESSAGE:"window/showMessage",WINDOW_LOG_MESSAGE:"window/logMessage",ARKTS_INITIALIZED:"arkts/initialized",ARKTS_INITIALIZATION_FAILED:"arkts/initializationFailed",ARKTS_INDEXING_PROGRESS:"arkts/indexingProgress",ARKTS_SYNC_PROJECT:"arkts/syncProject",ARKTS_SYNC_COMPLETED:"arkts/syncCompleted",ARKTS_REINITIALIZING:"arkts/reinitializing",ARKTS_ERROR:"arkts/error",CPP_INITIALIZED:"cpp/initialized",CPP_INITIALIZATION_FAILED:"cpp/initializationFailed",CPP_INDEXING_PROGRESS:"cpp/indexingProgress",CPP_SYNC_PROJECT:"cpp/syncProject",CPP_SYNC_COMPLETED:"cpp/syncCompleted",CPP_REINITIALIZING:"cpp/reinitializing",CPP_ERROR:"cpp/error",BROADCAST:"lsp/broadcast"},T="2.0";var qd=8192,ja=100,Gd=.03,zd=.7,Ze=900*1e3;function Ve(n){if(!Qr.existsSync(n))return null;try{let e=Qr.readFileSync(n,"utf-8");return e.trim()?By.parse(e):null}catch{return null}}function vo(n,e){let t=Math.floor(ei.totalmem()/1048576),r=Math.floor(t*zd),i,o;e!==void 0&&Number.isFinite(e)&&e>0?(i=e,o=`override(${e})`):(i=qd,n>ja&&(i+=(n-ja)*Gd*1024),o=`formula(moduleCount=${n})`);let s=r>0&&i>r;s&&(i=r);let a=Math.round(i);return u.info(`[computeLspServerMaxSize] source=${o}, physicalTotal=${t}MB, physicalCap(70%)=${r}MB, finalSize=${a}MB${s?" (capped)":""}`),a}function lt(n){if(n.startsWith("file:"))return n;try{let e=er.resolve(n),t=new URL(`file://${e}`).toString();if(ei.platform()==="win32"){let r=t.match(/^file:\/\/\/([A-Za-z]):/);if(r){let i=r[1].toUpperCase(),o=t.substring(`file:///${r[1]}:`.length);t=`file:///${i}%3A${o}`}}return t}catch{return n}}function tr(n){return n&&n.replace(/\\/g,"/")}function V(n){let e=er.normalize(n).replace(/\\/g,"/");if(ei.platform()==="win32"){let t=e.match(/^([A-Za-z]):/);t&&(e=`${t[1].toUpperCase()}:${e.substring(2)}`)}return e}function Jd(n){return er.join(n,"build-profile.json5")}var It=class{constructor(e){this.projectRoot=e}projectRoot;getAllModuleInfo(){let e=Jd(this.projectRoot);try{let t=Ve(e);if(typeof t!="object"||t===null)return[];let r=t.modules;return Array.isArray(r)?r.filter(i=>{if(typeof i!="object"||i===null)return!1;let o=i;return typeof o.name=="string"&&typeof o.srcPath=="string"}):[]}catch(t){return u.warn(`[ConfigFileWatcher] Failed to parse build-profile.json5: ${t instanceof Error?t.message:String(t)}`),[]}}};import{spawn as Vy}from"child_process";import*as bo from"fs";var qy=600*1e3;function Gy(n,e,t){let r=t.split(/\s+/).filter(i=>i.length>0);return[n,[e,...r]]}function zy(n){let e=[],t=[];return n.stdout?.on("data",r=>{e.push(r.toString())}),n.stderr?.on("data",r=>{let i=r.toString();t.push(i),i.split(/\r?\n/).filter(Boolean).forEach(o=>u.info("[hvigor:err] %s",o))}),{stdout:e,stderr:t}}function wo(n){return n.join("")}function Jy(n,e,t){if(e)return{success:!1,output:"Build process killed by signal "+e+`.
17
+ ${n.join(`
18
+ `)}`,a)}let i=Zt(e),s=Zt(o);return r.assertInsideRoot(s,i,"codelinter"),s}static isValidRoot(e,t){if(!r.isDirectory(e))return!1;if(t==="clt")return Re.existsSync(C.join(e,"version.txt"));let n=qe.platform()==="darwin"?C.join(e,"Contents"):e,o=qe.platform()==="darwin"?C.join(n,"Info.plist"):C.join(n,"product-info.json");if(!Re.existsSync(o))return!1;let i=r.buildToolPaths(e,"studio");return[i.nodePath,i.ohpmJsPath,i.hvigorJsPath].every(Re.existsSync)}static buildToolPaths(e,t){return t==="clt"?r.buildCltToolPaths(e):r.buildStudioToolPaths(e)}static buildCltToolPaths(e){let t=qe.platform()==="win32",n=t?".exe":"",o=C.join(e,"sdk");return{nodePath:t?C.join(e,"tool","node","node.exe"):C.join(e,"tool","node","bin","node"),ohpmJsPath:C.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:C.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:o,hdcPath:C.join(o,"default","openharmony","toolchains",`hdc${n}`),emulatorPath:C.join(e,"emulator",t?"Emulator.exe":"Emulator"),clangdPath:r.clangdPathFor(o),arktsLangServerCandidates:[{root:C.join(e,"arkts-lsp","lib"),marker:C.join(e,"arkts-lsp","lib","out","index.js")}],codelinterCandidates:r.codelinterCandidatesFor(e,"clt")}}static buildStudioToolPaths(e){let t=qe.platform()==="darwin",n=qe.platform()==="win32",o=t?C.join(e,"Contents"):e,i=C.join(o,"tools"),s=C.join(o,"sdk"),a=n?".exe":"";return{nodePath:n?C.join(i,"node","node.exe"):C.join(i,"node","bin","node"),ohpmJsPath:C.join(i,"ohpm","bin","pm-cli.js"),hvigorJsPath:C.join(i,"hvigor","bin","hvigorw.js"),javaPath:n?C.join(e,"jbr","bin","java.exe"):t?C.join(o,"jbr","Contents","Home","bin","java"):C.join(o,"jbr","bin","java"),sdkPath:s,hdcPath:C.join(s,"default","openharmony","toolchains",`hdc${a}`),emulatorPath:C.join(i,"emulator",n?"Emulator.exe":"Emulator"),clangdPath:r.clangdPathFor(s),arktsLangServerCandidates:r.studioArktsLangServerCandidates(e),codelinterCandidates:r.codelinterCandidatesFor(e,"studio")}}static codelinterCandidatesFor(e,t){if(t==="clt")return[C.join(e,"codelinter","index.js"),C.join(e,"codelinter","run","index.js"),C.join(e,"tool","codelinter","bin","codelinter.js"),C.join(e,"tool","codelinter","codelinter.js")];let n=qe.platform()==="darwin"?["Contents"]:[];return[C.join(e,...n,"plugins","codelinter","run","index.js"),C.join(e,...n,"plugins","codelinter","index.js"),C.join(e,...n,"tools","codelinter","bin","codelinter.js"),C.join(e,...n,"tools","codelinter","codelinter.js")]}static studioArktsLangServerCandidates(e){if(qe.platform()==="linux")return[];let t=qe.platform()==="darwin"?["Contents"]:[],n=C.join(e,...t,"plugins","openharmony");return[{root:n,marker:C.join(n,"ace-server","out","index.js")}]}static clangdPathFor(e){return C.join(e,"default","openharmony","native","llvm","bin",qe.platform()==="win32"?"clangd.exe":"clangd")}static isFile(e){try{return Re.statSync(e).isFile()}catch{return!1}}static isDirectory(e){try{return Re.existsSync(e)&&Re.statSync(e).isDirectory()}catch{return!1}}static resolveInstallSource(){return r.installSourcePromise||(r.installSourcePromise=r.resolveInstallSourceUncached()),r.installSourcePromise}static async resolveInstallSourceUncached(){let e=[["DEVECO_CLI_STUDIO_PATH","studio","studio"],["DEVECO_CLI_CLT_PATH","clt","clt"],["DEVECO_HOME","studio","studio"],["DEVECO_PATH","studio","studio"]];for(let[n,o,i]of e){let s=process.env[n]?.trim();if(s){let a=r.resolveExplicitRoot(s,o,n);return u(`[ToolProvider] Using ${n} \u2192 ${a}`),{sourceType:i,toolchainRoot:a}}}let t=await au();return u(`[ToolProvider] Using auto \u2192 ${t.root} (${t.version})`),{sourceType:"studio",toolchainRoot:t.root}}static resolveExplicitRoot(e,t,n){let o;try{o=ki(e)}catch(i){throw new Error(`Invalid ${n}: ${i instanceof Error?i.message:String(i)}`,{cause:i})}return t==="studio"&&qe.platform()==="darwin"&&(o=r.normalizeMacStudioRoot(o)),r.isValidRoot(o,t)?o:r.throwInvalidSource(o,t,n,e)}static assertBuiltPathsInsideRoot(e,t,n){let o=Zt(e),i=[["node",t.nodePath],["ohpm",t.ohpmJsPath],["hvigor",t.hvigorJsPath],["sdk",t.sdkPath],["hdc",t.hdcPath],["emulator",t.emulatorPath]];n&&t.javaPath&&i.push(["java",t.javaPath]);for(let[s,a]of i)r.assertInsideRoot(a,o,s)}static assertInsideRoot(e,t,n){if(lu(e,t)===null)throw new Error(`Unsafe toolchain path: ${n} resolves outside the toolchain root`)}static throwInvalidSource(e,t,n,o){throw t==="clt"&&r.isValidRoot(e,"studio")?new Error(`${n} must point to Command Line Tools, not a DevEco Studio installation; use DEVECO_CLI_STUDIO_PATH instead`):t==="studio"&&r.isValidRoot(e,"clt")?new Error(`${n} must point to a DevEco Studio installation, not Command Line Tools; use DEVECO_CLI_CLT_PATH instead`):new Error(`Invalid ${n}: ${o}`)}static normalizeMacStudioRoot(e){let t=`${C.sep}Contents`,n=C.normalize(e);return n.endsWith(t)?n.slice(0,-t.length):n}static readCltVersion(e){try{return Re.readFileSync(C.join(e,"version.txt"),"utf-8").split(/\r?\n/).map(t=>t.match(vv)?.[1]?.trim()).find(Boolean)}catch{return}}static resolveCltJava(e){let t=process.env.JAVA_HOME?.trim(),n=t&&(r.javaIn(C.join(t,"bin"))??r.javaIn(t)),o=(process.env.Path??process.env.PATH??"").split(C.delimiter).map(s=>r.javaIn(s.trim())).find(Boolean),i=n??o;if(i)return Re.realpathSync(i);if(e)throw new Error("No Java runtime found in CLT mode. Set JAVA_HOME to a JDK/JBR installation directory (or point JAVA_HOME at the JDK bin directory), or add the JDK bin directory to PATH.");return""}static javaIn(e){return(qe.platform()==="win32"?["java.exe","java.cmd"]:["java"]).map(n=>C.join(e,n)).find(Re.existsSync)}getMaxApiLevel(){for(let e of Sv(this.sdkPath)){let t=bv(e);if(t!==void 0)return t}return 23}getSdkPlatformVersion(){let e=C.join(this.sdkPath,"default","sdk-pkg.json"),t;try{t=JSON.parse(Re.readFileSync(e,"utf8"))}catch(i){throw new Error(`Failed to read SDK metadata: ${e}`,{cause:i})}let n=t.data?.platformVersion,o=typeof n=="string"?n.trim():"";if(!o)throw new Error(`Missing data.platformVersion in SDK metadata: ${e}`);return o}detectApiLevel(){return this.getMaxApiLevel()}_apiscanPaths;getApiscanPaths(){if(this._apiscanPaths)return this._apiscanPaths;let e=qe.platform();if(e!=="darwin"&&e!=="win32")throw new Error(`Unsupported platform: ${e}. compat only supports macOS and Windows.`);if(!this._devecoStudioPath)throw new Error("DevEco Studio is required for compatibility checking. Set DEVECO_CLI_STUDIO_PATH or install DevEco Studio.");let t=e==="darwin"?"Contents":"",n=C.join(this._devecoStudioPath,t,"plugins","harmony","arkanalyzer-apiscan"),o=C.join(n,"resources","apiChange"),i=C.join(n,"api-change-scan.js");if(!Re.existsSync(o)||!Re.existsSync(i)){let s=Xt(this._toolchainRoot)??"unknown";throw new Error(`A required component is missing. The detected DevEco Studio version is ${s}. The minimum required version is ${wv}. Upgrade before using 'check compat' at ${ec}`)}return this._apiscanPaths={apiChangeDir:o,scriptPath:i},this._apiscanPaths}};import{execa as Av}from"execa";import*as yu from"net";import*as er from"path";import*as Ai from"fs";import*as vu from"os";import{execFile as mu}from"child_process";import{existsSync as Ev}from"fs";var hu="C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",tc;function Pv(){return tc===void 0&&(tc=Ev(hu)),tc}function je(r){return new Promise(e=>{let t=process.platform==="win32",n=t?"tasklist":"ps",o=t?["/fi",`PID eq ${r}`,"/fo","csv","/nh"]:["-o","rss=","-p",String(r)];u(`Executing: ${n} ${o.join(" ")}`),mu(n,o,{timeout:5e3,windowsHide:!0},(i,s)=>{if(i){e(null);return}e(t?Iv(s):kv(s))})})}async function Cv(r){return new Promise(e=>{let t=process.platform==="win32",n,o;if(t){if(!Pv()){e([]);return}n=hu,o=["-NoProfile","-Command",`Get-CimInstance Win32_Process | Where-Object { $_.ParentProcessId -eq ${r} } | Select-Object -ExpandProperty ProcessId`]}else n="ps",o=["-o","pid=","--ppid",String(r)];mu(n,o,{timeout:5e3,windowsHide:!0},(i,s)=>{if(i){e([]);return}let a=[],c=s.trim().split(`
19
+ `);for(let l of c){let d=l.trim();d&&/^\d+$/.test(d)&&a.push(Number(d))}e(a)})})}async function gu(r){let e=0,t=await je(r);t&&(e+=Number(t)*1024);let n=await Cv(r);for(let o of n)e+=await gu(o);return e}function Q(r){return`${(r/1024/1024).toFixed(2)}MB`}async function fu(r,e){if(!r)return process.memoryUsage().rss;if(e)return gu(r);let t=await je(r);return t?Number(t)*1024:0}function an(r,e=500,t=!1){let n=0,o=!1,i=setInterval(async()=>{if(o)return;let s=await fu(r,t);s>n&&(n=s)},e);return{stop:async()=>{o=!0,clearInterval(i);let s=await fu(r,t);return Math.max(n,s)}}}function kv(r){let e=r.trim().match(/^(\d+)$/);return e?e[1]:null}function Iv(r){let e=r.match(/"([^"]+?)\s*K"/i);return e&&e[1].replace(/\D/g,"")||null}var ze=class{toolProvider;projectRoot;env;silent;constructor(e,t,n=!1){this.toolProvider=e,this.projectRoot=t,this.silent=n;let o=er.dirname(e.javaPath),i=`${o}${er.delimiter}${process.env.PATH||""}`,s={...process.env,PATH:i,DEVECO_SDK_HOME:e.sdkPath};e.sourceType==="clt"&&e.javaPath&&(s.JAVA_HOME=er.dirname(o)),this.env=s}async sync(e,t){let n=["--sync","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(n)}async buildProduct(e,t){let n=["assembleApp","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(n)}async buildModules(e,t,n,o){let i=[...Array.from(o),"--mode","module","-p",`module=${n.join(",")}`,"-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];return this.runHvigor(i)}async clean(){let e=["clean","--analyze=normal","--parallel","--no-daemon"];return this.runHvigor(e)}async stopDaemon(){return this.runHvigor(["--stop-daemon"])}async ensureDaemonRunning(){if(this.findProjectDaemon()){u("[HvigorAdapter] Daemon already running.");return}u("[HvigorAdapter] No daemon running, starting via --sync --daemon (no hap build)."),await this.runHvigor(["--sync","--daemon"])}isDaemonRunning(e){return this.findProjectDaemon(e)!==null}async isDaemonAlive(e){let t=this.findProjectDaemon(e);return t?this.isPortListening(t.port):!1}isPortListening(e){return new Promise(t=>{let n=new yu.Socket;n.setTimeout(2e3),n.once("connect",()=>{n.destroy(),t(!0)}),n.once("error",()=>t(!1)),n.once("timeout",()=>{n.destroy(),t(!1)}),n.connect(e,"127.0.0.1")})}findProjectDaemon(e){let t=this.getDaemonRegistryPath();if(!Ai.existsSync(t))return null;try{let n=Ai.readFileSync(t,"utf-8"),o=JSON.parse(n),i=e??this.projectRoot,s=Object.values(o).filter(a=>a.cwdPath===i&&(a.state==="idle"||a.state==="half_busy"||a.state==="busy")&&this.isProcessAlive(a.pid));return s.length>0?s[s.length-1]:null}catch{return null}}getDaemonRegistryPath(){let e=process.env.HVIGOR_USER_HOME||er.join(vu.homedir(),".hvigor");return er.join(e,"daemon","cache","daemon-sec.json")}isProcessAlive(e){try{return process.kill(e,0),!0}catch{return!1}}async compileNative(e,t){let n=["--mode","module"];return t&&n.push("-p",`module=${t}`),n.push("-p",`product=${e}`,"compileNative","--analyze=normal"),this.runHvigor(n)}async runHvigor(e){let t=this.toolProvider.nodePath,n=[this.toolProvider.hvigorJsPath,...e];u(`Executing: ${t} ${n.join(" ")}`);let o=this.silent&&!process.env.DEVECO_CLI_DEBUG?"pipe":"inherit",i=Av(t,n,{cwd:this.projectRoot,env:this.env,stdout:o,stderr:o}),s=an(i.pid,500,!0),a="";try{await i}finally{let c=await s.stop();c>0&&(a=Q(c),u(`Hvigor peak memory: ${a}`))}return a}};import{execa as Dv}from"execa";var cn=class{toolProvider;projectRoot;peakMemoryMb="";constructor(e,t){this.toolProvider=e,this.projectRoot=t}async installAll(){let e=this.toolProvider.nodePath,t=[this.toolProvider.ohpmJsPath,"install","--all"];u(`Executing: ${e} ${t.join(" ")}`);let n=Dv(e,t,{cwd:this.projectRoot,env:{...process.env,DEVECO_SDK_HOME:this.toolProvider.sdkPath},stdout:"inherit",stderr:"inherit"}),o=an(n.pid);try{await n}finally{let i=await o.stop();i>0&&(this.peakMemoryMb=Q(i))}}};import{mkdir as Rv}from"fs/promises";import{dirname as Tv,resolve as xv}from"path";import{execa as Lv}from"execa";import{lock as rc,check as ZN}from"proper-lockfile";function nc(r){return xv(r,".hvigor",".build-lock")}function Nv(r){let e=!1;return()=>{e||(e=!0,r?.())}}async function wu(r){let e=Tv(nc(r));if(await Rv(e,{recursive:!0}),process.platform==="win32")try{await Lv("attrib",["+h",e])}catch{}}async function Mv(r,e){let t=new AbortController,n=Nv(e);await wu(r);let o={lockfilePath:nc(r),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()};try{return{release:await rc(r,{...o,retries:0}),signal:t.signal}}catch(s){if(s&&typeof s=="object"&&"code"in s&&s.code!=="ELOCKED")throw s}return n(),{release:await rc(r,{...o,retries:{forever:!0,minTimeout:1e3,maxTimeout:1e3}}),signal:t.signal}}async function _r(r,e,t){let{release:n,signal:o}=await Mv(r,t);try{return await e(o)}finally{await n()}}async function Di(r,e){let t=new AbortController;await wu(r);let n={lockfilePath:nc(r),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()},o;try{o=await rc(r,{...n,retries:0})}catch(i){if(i&&typeof i=="object"&&"code"in i&&i.code==="ELOCKED")return{acquired:!1};throw i}try{return{acquired:!0,result:await e(t.signal)}}finally{await o()}}import*as tr from"fs";import*as jr from"path";import Ov from"json5";var _v=1e3;function Ti(r){u(`[ProjectCheck] Checking sync required at project root: ${r}`);let e=jr.join(r,De.SYNC_OUTPUT_PATH);if(!tr.existsSync(e)){let l={required:!0,reason:`sync baseline file not found: ${e}`};return u(`[ProjectCheck] ${l.reason}`),l}let t=tr.statSync(e).mtimeMs;u(`[ProjectCheck] Sync baseline: ${new Date(t).toISOString()} (${e})`);let n=jv(r);if(n===null){let l={required:!0,reason:"failed to parse build-profile.json5"};return u(`[ProjectCheck] ${l.reason}`),l}let o=jr.join(r,De.OH_PACKAGE_JSON5),i=Ri(o,t,"root");if(i.required)return u(`[ProjectCheck] Root check: ${i.reason}`),i;let s=jr.join(r,De.BUILD_PROFILE_JSON5),a=Ri(s,t,"build-profile");if(a.required)return u(`[ProjectCheck] Build profile check: ${a.reason}`),a;for(let l of n){let d=jr.join(r,l.srcPath,De.OH_PACKAGE_JSON5),g=Ri(d,t,l.name);if(g.required)return u(`[ProjectCheck] Module '${l.name}' check: ${g.reason}`),g;let v=jr.join(r,l.srcPath,De.BUILD_PROFILE_JSON5),P=Ri(v,t,l.name);if(P.required)return u(`[ProjectCheck] Module '${l.name}' build-profile check: ${P.reason}`),P}let c=`all configuration files are up-to-date (sync baseline: ${new Date(t).toISOString()})`;return u(`[ProjectCheck] ${c}`),{required:!1,reason:c}}function Ri(r,e,t){if(!tr.existsSync(r))return{required:!1,reason:`${t}: source not found, skip`};let n=tr.statSync(r).mtimeMs;return n-e>_v?{required:!0,reason:`${t}: source mtime (${new Date(n).toISOString()}) is newer than sync baseline (${new Date(e).toISOString()})`}:{required:!1,reason:`${t}: up-to-date`}}function jv(r){let e=jr.join(r,De.BUILD_PROFILE_JSON5);try{let t=tr.readFileSync(e,"utf-8");if(!t.trim())return null;let n=Ov.parse(t);if(typeof n!="object"||n===null)return null;let o=n.modules;return Array.isArray(o)?o.filter(i=>{if(typeof i!="object"||i===null)return!1;let s=i;return typeof s.name=="string"&&typeof s.srcPath=="string"}):null}catch{return null}}import*as Z from"fs";import*as se from"path";import*as bu from"util";var oc="";function Li(r){if(!r||r==="auto"||r==="stdout"||r==="none"){oc="";return}oc=r}function Su(){return oc||(qd()??"")}function xi(r,...e){if(e.length===0)return r;try{return bu.format(r,...e)}catch{return[r,...e.map(t=>typeof t=="string"?t:JSON.stringify(t))].join(" ")}}var m={info(r,...e){h.info(`[lsp] ${xi(r,...e)}`)},warn(r,...e){h.warn(`[lsp] ${xi(r,...e)}`)},error(r,...e){h.error(`[lsp] ${xi(r,...e)}`)},debug(r,...e){h.debug(`[lsp] ${xi(r,...e)}`)}};import*as ao from"fs";import*as co from"os";import*as ln from"path";import Fv from"json5";var y={INITIALIZE:"initialize",INITIALIZED:"initialized",SHUTDOWN:"shutdown",EXIT:"exit",DID_OPEN:"textDocument/didOpen",DID_CHANGE:"textDocument/didChange",DID_CLOSE:"textDocument/didClose",PUBLISH_DIAGNOSTICS:"textDocument/publishDiagnostics",HOVER:"textDocument/hover",DEFINITION:"textDocument/definition",DECLARATION:"textDocument/declaration",REFERENCES:"textDocument/references",IMPLEMENTATION:"textDocument/implementation",COMPLETION:"textDocument/completion",COMPLETION_ITEM_RESOLVE:"completionItem/resolve",SIGNATURE_HELP:"textDocument/signatureHelp",CODE_ACTION:"textDocument/codeAction",PREPARE_RENAME:"textDocument/prepareRename",RENAME:"textDocument/rename",DOCUMENT_HIGHLIGHT:"textDocument/documentHighlight",DOCUMENT_LINK:"textDocument/documentLink",INLAY_HINT:"textDocument/inlayHint",DOCUMENT_SYMBOL:"textDocument/documentSymbol",WORKSPACE_SYMBOL:"workspace/symbol",DIAGNOSTIC:"textDocument/diagnostic",WORKSPACE_DIAGNOSTIC:"workspace/diagnostic",PREPARE_CALL_HIERARCHY:"textDocument/prepareCallHierarchy",INCOMING_CALLS:"callHierarchy/incomingCalls",OUTGOING_CALLS:"callHierarchy/outgoingCalls",PREPARE_TYPE_HIERARCHY:"textDocument/prepareTypeHierarchy",SUPERTYPES:"typeHierarchy/supertypes",SUBTYPES:"typeHierarchy/subtypes",WORKSPACE_DID_CHANGE_CONFIGURATION:"workspace/didChangeConfiguration",WORKSPACE_DID_CHANGE_WATCHED_FILES:"workspace/didChangeWatchedFiles",DID_CREATE_FILES:"workspace/didCreateFiles",DID_DELETE_FILES:"workspace/didDeleteFiles",PROGRESS:"$/progress",WINDOW_SHOW_MESSAGE:"window/showMessage",WINDOW_LOG_MESSAGE:"window/logMessage",ARKTS_INITIALIZED:"arkts/initialized",ARKTS_INITIALIZATION_FAILED:"arkts/initializationFailed",ARKTS_INDEXING_PROGRESS:"arkts/indexingProgress",ARKTS_SYNC_PROJECT:"arkts/syncProject",ARKTS_SYNC_COMPLETED:"arkts/syncCompleted",ARKTS_REINITIALIZING:"arkts/reinitializing",ARKTS_ERROR:"arkts/error",CPP_INITIALIZED:"cpp/initialized",CPP_INITIALIZATION_FAILED:"cpp/initializationFailed",CPP_INDEXING_PROGRESS:"cpp/indexingProgress",CPP_SYNC_PROJECT:"cpp/syncProject",CPP_SYNC_COMPLETED:"cpp/syncCompleted",CPP_REINITIALIZING:"cpp/reinitializing",CPP_ERROR:"cpp/error",BROADCAST:"lsp/broadcast"},T="2.0";var Eu=8192,ic=100,Pu=.03,Cu=.7,rt=900*1e3;function Je(r){if(!ao.existsSync(r))return null;try{let e=ao.readFileSync(r,"utf-8");return e.trim()?Fv.parse(e):null}catch{return null}}function Ni(r,e){let t=Math.floor(co.totalmem()/1048576),n=Math.floor(t*Cu),o,i;e!==void 0&&Number.isFinite(e)&&e>0?(o=e,i=`override(${e})`):(o=Eu,r>ic&&(o+=(r-ic)*Pu*1024),i=`formula(moduleCount=${r})`);let s=n>0&&o>n;s&&(o=n);let a=Math.round(o);return m.info(`[computeLspServerMaxSize] source=${i}, physicalTotal=${t}MB, physicalCap(70%)=${n}MB, finalSize=${a}MB${s?" (capped)":""}`),a}function mt(r){if(r.startsWith("file:"))return r;try{let e=ln.resolve(r),t=new URL(`file://${e}`).toString();if(co.platform()==="win32"){let n=t.match(/^file:\/\/\/([A-Za-z]):/);if(n){let o=n[1].toUpperCase(),i=t.substring(`file:///${n[1]}:`.length);t=`file:///${o}%3A${i}`}}return t}catch{return r}}function dn(r){return r&&r.replace(/\\/g,"/")}function z(r){let e=ln.normalize(r).replace(/\\/g,"/");if(co.platform()==="win32"){let t=e.match(/^([A-Za-z]):/);t&&(e=`${t[1].toUpperCase()}:${e.substring(2)}`)}return e}function ku(r){return ln.join(r,"build-profile.json5")}var Nt=class{constructor(e){this.projectRoot=e}getAllModuleInfo(){let e=ku(this.projectRoot);try{let t=Je(e);if(typeof t!="object"||t===null)return[];let n=t.modules;return Array.isArray(n)?n.filter(o=>{if(typeof o!="object"||o===null)return!1;let i=o;return typeof i.name=="string"&&typeof i.srcPath=="string"}):[]}catch(t){return m.warn(`[ConfigFileWatcher] Failed to parse build-profile.json5: ${t instanceof Error?t.message:String(t)}`),[]}}};import{spawn as $v}from"child_process";import*as Oi from"fs";var Hv=600*1e3;function Uv(r,e,t){let n=t.split(/\s+/).filter(o=>o.length>0);return[r,[e,...n]]}function Bv(r){let e=[],t=[];return r.stdout?.on("data",n=>{e.push(n.toString())}),r.stderr?.on("data",n=>{let o=n.toString();t.push(o),o.split(/\r?\n/).filter(Boolean).forEach(i=>m.info("[hvigor:err] %s",i))}),{stdout:e,stderr:t}}function Mi(r){return r.join("")}function Wv(r,e,t){if(e)return{success:!1,output:"Build process killed by signal "+e+`.
20
20
  Output so far:
21
- `+t,exitCode:-1};let r=n??-1;return{success:r===0,output:t,exitCode:r}}function Yy(n,e,t){return new Promise(r=>{let i=Vy(n[0],n[1],{cwd:e,env:t,windowsHide:!0,stdio:["ignore","pipe","pipe"]}),{stdout:o,stderr:s}=zy(i),a=setTimeout(()=>{i.kill();let c=[wo(o),wo(s)].filter(Boolean).join(`
22
- `).trim();r({success:!1,output:`Build process timeout after 10 minutes.
21
+ `+t,exitCode:-1};let n=r??-1;return{success:n===0,output:t,exitCode:n}}function Vv(r,e,t){return new Promise(n=>{let o=$v(r[0],r[1],{cwd:e,env:t,windowsHide:!0,stdio:["ignore","pipe","pipe"]}),{stdout:i,stderr:s}=Bv(o),a=setTimeout(()=>{o.kill();let c=[Mi(i),Mi(s)].filter(Boolean).join(`
22
+ `).trim();n({success:!1,output:`Build process timeout after 10 minutes.
23
23
  Output so far:
24
- `+c,exitCode:-1})},qy);i.on("close",(c,l)=>{clearTimeout(a);let d=[wo(o),wo(s)].filter(Boolean).join(`
25
- `).trim()||"";r(Jy(c,l,d))}),i.on("error",c=>{clearTimeout(a),r({success:!1,output:`Build execution exception: ${c.message}`,exitCode:-1})})})}async function Fa(n,e,t,r,i){let o={...process.env,DEVECO_SDK_HOME:r},s=Gy(e,t,i);return await Yy(s,n,o)}function Ky(n,e,t){return{node_path:e,hvigor_path:t,sdk_path:n}}function Xy(n){return!n.node_path||!bo.existsSync(n.node_path)?`Node path not found or invalid: ${n.node_path}`:!n.hvigor_path||!bo.existsSync(n.hvigor_path)?`Hvigor path not found or invalid: ${n.hvigor_path}`:!n.sdk_path||!bo.existsSync(n.sdk_path)?`SDK path not found or invalid: ${n.sdk_path}`:null}var Zy="--sync -p product=default --analyze=normal --parallel --incremental --no-daemon";async function Yd(n,e,t,r){try{let i=Ky(e,t,r),o=Xy(i);if(o!=null)return u.info(`Config validation failed: ${o}`),!1;let s=await Fa(n,i.node_path,i.hvigor_path,e,Zy);return u.info(`[hvigor] sync finished: success=${s.success}, exitCode=${s.exitCode}`),s.success}catch(i){return u.info(`syncProject failed: ${JSON.stringify(i)}`),!1}}function Qy(n){let e=te.extname(n).replace(/^\./,"").toLowerCase();return["c","cpp","cxx","cc","h","hpp","hxx","hh"].includes(e)}function ev(n,e){let t=te.join(n,e.name);return e.isDirectory()?e.name===".cxx"||Xd(t):Qy(t)}function Xd(n){if(!K.existsSync(n))return!1;try{return K.readdirSync(n,{withFileTypes:!0}).some(t=>ev(n,t))}catch{}return!1}function Yt(n){try{let t=new It(n).getAllModuleInfo(),r=[];for(let i of t){let o=te.resolve(n,i.srcPath);Xd(o)&&r.push(i)}return r}catch(e){throw h.error(`[CppCompile] findCppModules threw: ${e instanceof Error?e.message:String(e)}`),e}}function tv(n){let e=[],r=new It(n).getAllModuleInfo();for(let i of r){let o=te.resolve(n,i.srcPath),s=te.join(o,".cxx");K.existsSync(s)&&Zd(s,e)}return e}function Zd(n,e){try{let t=K.readdirSync(n,{withFileTypes:!0});for(let r of t){let i=te.join(n,r.name);r.isDirectory()?Zd(i,e):r.name==="compile_commands.json"&&e.push(i)}}catch{}}function nv(n){let e=[];for(let t of n)try{let r=K.readFileSync(t,"utf8"),i=JSON.parse(r);e.push(...i)}catch{}return e}function rv(n,e){let t=te.join(n,...iv.slice(0,-1));K.mkdirSync(t,{recursive:!0});let r=te.join(t,"compile_commands.json");K.writeFileSync(r,JSON.stringify(e,null,2),"utf8")}function $a(n){let e=tv(n);if(e.length>0){let t=nv(e);rv(n,t),h.info(`[CppCompile] compile_commands.json generated, ${t.length} compile commands`)}else h.warn("[CppCompile] No compile_commands.json files found")}var iv=[".idea",".deveco","cxx","compile_commands.json"];async function ov(n,e,t,r,i){if(!r){h.warn(`[CppCompile] hvigorw.js path not injected (sdk '${e}')`);return}h.info(`[CppCompile] sdkPath: ${e}, hvigorPath: ${r}`);for(let o of i){let s=o.name;try{S.assertModuleName(s)}catch{h.warn(`[CppCompile] Skipping module with invalid name: ${s}`);continue}let a=["--mode","module","-p",`module=${o.name}`,"-p","product=default","compileNative","--analyze=normal","--parallel","--incremental","--no-daemon"].join(" ");h.info(`[CppCompile] Running compileNative for module: ${o.name}`);let c=await Fa(n,t,r,e,a);c.success?h.info(`[CppCompile] compileNative ${o.name} succeeded`):h.warn(`[CppCompile] compileNative ${o.name} failed: ${c.output}`)}}async function Qd(n,e,t,r){let i=Yt(n);if(i.length===0){h.info("[CppCompile] No C++ modules found, skipping initialization");return}h.info(`[CppCompile] Found ${i.length} C++ module(s): ${i.map(o=>o.name).join(", ")}`),await ov(n,e,t,r,i),$a(n),pv(n,i)}var sv=1e3,av=["src","main","cpp","CMakeLists.txt"],cv=new Set([".cxx","build","node_modules",".preview",".hvigor",".idea"]),lv=new Set(["c","cpp","cxx","cc"]),dv="cpp-source-manifest.json";function uv(n){let e=te.extname(n).replace(/^\./,"").toLowerCase();return lv.has(e)}function Kd(n,e){return K.existsSync(n)?K.statSync(n).mtimeMs-e>sv:!1}function eu(n){return te.join(te.dirname(In(n)),dv)}function tu(n,e,t){let r;try{r=K.readdirSync(n,{withFileTypes:!0})}catch{return}for(let i of r){let o=te.join(n,i.name);if(i.isDirectory()){if(cv.has(i.name))continue;tu(o,e,t)}else uv(i.name)&&t.push(te.relative(e,o).replace(/\\/g,"/"))}}function nu(n,e){let t=[];for(let r of e){let i=S.resolvePathWithinRoot(n,r.srcPath);tu(i,n,t)}return t.sort()}function pv(n,e){let t=nu(n,e),r={files:t,updatedAt:Date.now()},i=eu(n);try{K.mkdirSync(te.dirname(i),{recursive:!0}),K.writeFileSync(i,JSON.stringify(r,null,2),"utf8"),h.info(`[CppCompile] C++ source manifest written, ${t.length} files`)}catch(o){h.warn(`[CppCompile] Failed to write C++ source manifest: ${o}`)}}function fv(n,e){let t=eu(n);if(!K.existsSync(t))return{required:!0,reason:"C++ source manifest not found, needs initialization"};let r;try{let o=JSON.parse(K.readFileSync(t,"utf8"));r=Array.isArray(o.files)?o.files:[]}catch{return{required:!0,reason:"C++ source manifest corrupted, needs initialization"}}let i=nu(n,e);return i.length!==r.length||i.some((o,s)=>o!==r[s])?{required:!0,reason:`C++ source file set changed (recorded=${r.length}, actual=${i.length})`}:null}function ru(n){let e=In(n);if(!K.existsSync(e))return{required:!0,reason:"C++ baseline (compile_commands.json) not found, needs initialization"};let t=K.statSync(e).mtimeMs,r=Yt(n);if(r.length===0)return{required:!1,reason:"no C++ modules, skip compileNative"};for(let o of r){let s=S.resolvePathWithinRoot(n,o.srcPath);if(Kd(te.join(s,"build-profile.json5"),t))return{required:!0,reason:`module '${o.name}': build-profile.json5 newer than baseline`};let a=te.join(s,...av);if(Kd(a,t))return{required:!0,reason:`module '${o.name}': CMakeLists.txt newer than baseline`}}let i=fv(n,r);return i||{required:!1,reason:`C++ project up-to-date (baseline: ${new Date(t).toISOString()})`}}function hv(n,e){if(e.product&&n.validateProduct(e.product),e.buildMode){let t=["debug","release"],r=(n.profile.app.buildModeSet?.map(o=>o.name)??[]).filter(o=>!t.includes(o)),i=[...t,...r];if(!i.includes(e.buildMode))throw new Error(`Build mode '${e.buildMode}' not found. Available modes: ${i.join(", ")}`)}}function gv(n,e){let t=n.profile.modules.map(i=>i.name),r=new Set(t);for(let i of e){let o=i.split("@",1)[0];if(!r.has(o))throw new Error(`Module '${o}' not found in project-level build-profile.json5. Available modules: ${t.join(", ")||"none"}`)}}function yv(n,e){let t;if(e.modules&&e.modules.length>0)t=e.modules,gv(n,t);else{let i=n.profile.modules,o=i.filter(s=>n.getModuleType(s.name)==="entry");if(i.length===1)t=[i[0].name];else if(o.length===1)t=[o[0].name];else throw o.length>1?new w(`Multiple entry modules found (${o.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`,"Multiple entry modules found."):new w(`No entry module found and multiple modules available (${i.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`,"No entry module found and multiple modules available.")}let r=new Set;for(let i of t){let o=i.indexOf("@"),s=o!==-1?i.substring(0,o):i,a=o!==-1?i.substring(o+1):"default";r.add(`${s}@${a}`)}return Array.from(r)}function Wa(n,e){let t=new Set;for(let r of e){let i=r.indexOf("@"),o=i!==-1?r.substring(0,i):r,s=n.getModuleType(o);s==="shared"?t.add("assembleHsp"):s==="har"?t.add("assembleHar"):t.add("assembleHap")}return t}function ti(n,e){let t=e,r=`${n} failed`;console.error(iu(r));let i=t.stdout||t.message;throw i&&console.error(i),t.stderr&&console.error(t.stderr),new Error(r,{cause:e})}async function Ba(n,e,t,r,i,o){let s=ho(o);console.log(`
26
- [ohpm install] Running...`);try{await n.installAll()}catch(l){ti("ohpm install",l)}let a="";if(s.required){console.log(`
27
- [hvigor sync] Running...`);try{a=await e.sync(t,r)}catch(l){ti("hvigor sync",l)}}else console.log(`
24
+ `+c,exitCode:-1})},Hv);o.on("close",(c,l)=>{clearTimeout(a);let d=[Mi(i),Mi(s)].filter(Boolean).join(`
25
+ `).trim()||"";n(Wv(c,l,d))}),o.on("error",c=>{clearTimeout(a),n({success:!1,output:`Build execution exception: ${c.message}`,exitCode:-1})})})}async function sc(r,e,t,n,o){let i={...process.env,DEVECO_SDK_HOME:n},s=Uv(e,t,o);return await Vv(s,r,i)}function Gv(r,e,t){return{node_path:e,hvigor_path:t,sdk_path:r}}function qv(r){return!r.node_path||!Oi.existsSync(r.node_path)?`Node path not found or invalid: ${r.node_path}`:!r.hvigor_path||!Oi.existsSync(r.hvigor_path)?`Hvigor path not found or invalid: ${r.hvigor_path}`:!r.sdk_path||!Oi.existsSync(r.sdk_path)?`SDK path not found or invalid: ${r.sdk_path}`:null}var zv="--sync -p product=default --analyze=normal --parallel --incremental --no-daemon";async function Iu(r,e,t,n){try{let o=Gv(e,t,n),i=qv(o);if(i!=null)return m.info(`Config validation failed: ${i}`),!1;let s=await sc(r,o.node_path,o.hvigor_path,e,zv);return m.info(`[hvigor] sync finished: success=${s.success}, exitCode=${s.exitCode}`),s.success}catch(o){return m.info(`syncProject failed: ${JSON.stringify(o)}`),!1}}function Jv(r){let e=se.extname(r).replace(/^\./,"").toLowerCase();return["c","cpp","cxx","cc","h","hpp","hxx","hh"].includes(e)}function Yv(r,e){let t=se.join(r,e.name);return e.isDirectory()?e.name===".cxx"||Du(t):Jv(t)}function Du(r){if(!Z.existsSync(r))return!1;try{return Z.readdirSync(r,{withFileTypes:!0}).some(t=>Yv(r,t))}catch{}return!1}function rr(r){try{let t=new Nt(r).getAllModuleInfo(),n=[];for(let o of t){let i=se.resolve(r,o.srcPath);Du(i)&&n.push(o)}return n}catch(e){throw h.error(`[CppCompile] findCppModules threw: ${e instanceof Error?e.message:String(e)}`),e}}function Kv(r){let e=[],n=new Nt(r).getAllModuleInfo();for(let o of n){let i=se.resolve(r,o.srcPath),s=se.join(i,".cxx");Z.existsSync(s)&&Ru(s,e)}return e}function Ru(r,e){try{let t=Z.readdirSync(r,{withFileTypes:!0});for(let n of t){let o=se.join(r,n.name);n.isDirectory()?Ru(o,e):n.name==="compile_commands.json"&&e.push(o)}}catch{}}function Xv(r){let e=[];for(let t of r)try{let n=Z.readFileSync(t,"utf8"),o=JSON.parse(n);e.push(...o)}catch{}return e}function Zv(r,e){let t=se.join(r,...Qv.slice(0,-1));Z.mkdirSync(t,{recursive:!0});let n=se.join(t,"compile_commands.json");Z.writeFileSync(n,JSON.stringify(e,null,2),"utf8")}function ac(r){let e=Kv(r);if(e.length>0){let t=Xv(e);Zv(r,t),h.info(`[CppCompile] compile_commands.json generated, ${t.length} compile commands`)}else h.warn("[CppCompile] No compile_commands.json files found")}var Qv=[".idea",".deveco","cxx","compile_commands.json"];async function ew(r,e,t,n,o){if(!n){h.warn(`[CppCompile] hvigorw.js path not injected (sdk '${e}')`);return}h.info(`[CppCompile] sdkPath: ${e}, hvigorPath: ${n}`);for(let i of o){let s=i.name;try{S.assertModuleName(s)}catch{h.warn(`[CppCompile] Skipping module with invalid name: ${s}`);continue}let a=["--mode","module","-p",`module=${i.name}`,"-p","product=default","compileNative","--analyze=normal","--parallel","--incremental","--no-daemon"].join(" ");h.info(`[CppCompile] Running compileNative for module: ${i.name}`);let c=await sc(r,t,n,e,a);c.success?h.info(`[CppCompile] compileNative ${i.name} succeeded`):h.warn(`[CppCompile] compileNative ${i.name} failed: ${c.output}`)}}async function Tu(r,e,t,n){let o=rr(r);if(o.length===0){h.info("[CppCompile] No C++ modules found, skipping initialization");return}h.info(`[CppCompile] Found ${o.length} C++ module(s): ${o.map(i=>i.name).join(", ")}`),await ew(r,e,t,n,o),ac(r),aw(r,o)}var tw=1e3,rw=["src","main","cpp","CMakeLists.txt"],nw=new Set([".cxx","build","node_modules",".preview",".hvigor",".idea"]),ow=new Set(["c","cpp","cxx","cc"]),iw="cpp-source-manifest.json";function sw(r){let e=se.extname(r).replace(/^\./,"").toLowerCase();return ow.has(e)}function Au(r,e){return Z.existsSync(r)?Z.statSync(r).mtimeMs-e>tw:!1}function xu(r){return se.join(se.dirname(xr(r)),iw)}function Lu(r,e,t){let n;try{n=Z.readdirSync(r,{withFileTypes:!0})}catch{return}for(let o of n){let i=se.join(r,o.name);if(o.isDirectory()){if(nw.has(o.name))continue;Lu(i,e,t)}else sw(o.name)&&t.push(se.relative(e,i).replace(/\\/g,"/"))}}function Nu(r,e){let t=[];for(let n of e){let o=S.resolvePathWithinRoot(r,n.srcPath);Lu(o,r,t)}return t.sort()}function aw(r,e){let t=Nu(r,e),n={files:t,updatedAt:Date.now()},o=xu(r);try{Z.mkdirSync(se.dirname(o),{recursive:!0}),Z.writeFileSync(o,JSON.stringify(n,null,2),"utf8"),h.info(`[CppCompile] C++ source manifest written, ${t.length} files`)}catch(i){h.warn(`[CppCompile] Failed to write C++ source manifest: ${i}`)}}function cw(r,e){let t=xu(r);if(!Z.existsSync(t))return{required:!0,reason:"C++ source manifest not found, needs initialization"};let n;try{let i=JSON.parse(Z.readFileSync(t,"utf8"));n=Array.isArray(i.files)?i.files:[]}catch{return{required:!0,reason:"C++ source manifest corrupted, needs initialization"}}let o=Nu(r,e);return o.length!==n.length||o.some((i,s)=>i!==n[s])?{required:!0,reason:`C++ source file set changed (recorded=${n.length}, actual=${o.length})`}:null}function Mu(r){let e=xr(r);if(!Z.existsSync(e))return{required:!0,reason:"C++ baseline (compile_commands.json) not found, needs initialization"};let t=Z.statSync(e).mtimeMs,n=rr(r);if(n.length===0)return{required:!1,reason:"no C++ modules, skip compileNative"};for(let i of n){let s=S.resolvePathWithinRoot(r,i.srcPath);if(Au(se.join(s,"build-profile.json5"),t))return{required:!0,reason:`module '${i.name}': build-profile.json5 newer than baseline`};let a=se.join(s,...rw);if(Au(a,t))return{required:!0,reason:`module '${i.name}': CMakeLists.txt newer than baseline`}}let o=cw(r,n);return o||{required:!1,reason:`C++ project up-to-date (baseline: ${new Date(t).toISOString()})`}}function dw(r,e){if(e.product&&r.validateProduct(e.product),e.buildMode){let t=["debug","release"],n=(r.profile.app.buildModeSet?.map(i=>i.name)??[]).filter(i=>!t.includes(i)),o=[...t,...n];if(!o.includes(e.buildMode))throw new Error(`Build mode '${e.buildMode}' not found. Available modes: ${o.join(", ")}`)}}function uw(r,e){let t=r.profile.modules.map(o=>o.name),n=new Set(t);for(let o of e){let i=o.split("@",1)[0];if(!n.has(i))throw new Error(`Module '${i}' not found in project-level build-profile.json5. Available modules: ${t.join(", ")||"none"}`)}}function pw(r,e){let t;if(e.modules&&e.modules.length>0)t=e.modules,uw(r,t);else{let o=r.profile.modules,i=o.filter(s=>r.getModuleType(s.name)==="entry");if(o.length===1)t=[o[0].name];else if(i.length===1)t=[i[0].name];else throw i.length>1?new w(`Multiple entry modules found (${i.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`,"Multiple entry modules found."):new w(`No entry module found and multiple modules available (${o.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`,"No entry module found and multiple modules available.")}let n=new Set;for(let o of t){let i=o.indexOf("@"),s=i!==-1?o.substring(0,i):o,a=i!==-1?o.substring(i+1):"default";n.add(`${s}@${a}`)}return Array.from(n)}function dc(r,e){let t=new Set;for(let n of e){let o=n.indexOf("@"),i=o!==-1?n.substring(0,o):n,s=r.getModuleType(i);s==="shared"?t.add("assembleHsp"):s==="har"?t.add("assembleHar"):t.add("assembleHap")}return t}function lo(r,e){let t=e,n=`${r} failed`;console.error(Ou(n));let o=t.stdout||t.message;throw o&&console.error(o),t.stderr&&console.error(t.stderr),new Error(n,{cause:e})}async function uc(r,e,t,n,o,i){let s=Ti(i);console.log(`
26
+ [ohpm install] Running...`);try{await r.installAll()}catch(l){lo("ohpm install",l)}let a="";if(s.required){console.log(`
27
+ [hvigor sync] Running...`);try{a=await e.sync(t,n)}catch(l){lo("hvigor sync",l)}}else console.log(`
28
28
  [hvigor sync] Skipped (configurations unchanged)`);console.log(`
29
- [hvigor build] Running...`);let c="";try{i.type==="product"?c=await e.buildProduct(t,r):c=await e.buildModules(t,r,i.modulesToBuild,i.moduleTasks)}catch(l){ti("hvigor build",l)}return vv(o),{ohpmMemoryMb:n.peakMemoryMb,syncMemoryMb:a,buildMemoryMb:c}}function vv(n){try{if(Yt(n).length===0)return;$a(n),console.log(Ha(`
30
- Merged central compile_commands.json for C++ language server.`))}catch(e){console.warn(Ua(`
31
- Failed to merge compile_commands.json: ${e.message}`))}}async function ou(n,e){let t=Date.now(),r=!0,i=null;try{await e()}catch(o){r=!1,i=B(o),console.error(iu(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(n,o)}}function wv(n){let e={event:b.CommandExecuted,args:["build",...n.product?["--product"]:[],...n.modules?["--modules"]:[],...n.buildMode?["--build-mode"]:[]]};return n.buildMode&&(e.build_mode=n.buildMode),n.modules&&(e.module_count=n.modules.length),e}function bv(){return{event:b.CommandExecuted,args:["build","clean"]}}async function Sv(n){let e=process.cwd(),t=Y.discover(e);console.warn(Ua("Ensure the project source is trustworthy before proceeding."));let r=await A.new();r.assertJava(),hv(t,n);let i=n.product||"default",o=n.buildMode||"debug",s;if(n.product&&!n.modules)s={type:"product"};else{let d=yv(t,n),g=Wa(t,d);s={type:"modules",modulesToBuild:d,moduleTasks:g}}let a=new Qn(r,t.rootDir),c=new Be(r,t.rootDir),l=await xn(t.rootDir,async()=>Ba(a,c,i,o,s,t.rootDir),()=>{console.log("Another build is already running for this project. Waiting for completion...")});return console.log(`
32
- `+Ha("Build completed successfully")),{bundleName:t.getBundleName(),ohpmMemoryMb:l.ohpmMemoryMb,syncMemoryMb:l.syncMemoryMb,buildMemoryMb:l.buildMemoryMb}}async function Ev(){let n=process.cwd(),e=Y.discover(n);console.warn(Ua("Ensure the project source is trusted before proceeding."));let t=await A.new();t.assertJava();let r=new Be(t,e.rootDir);return await xn(e.rootDir,async()=>{console.log(`
33
- [1/2] Running hvigor clean...`);try{await r.clean()}catch(i){ti("hvigor clean",i)}console.log(`
34
- [2/2] Running hvigor --stop-daemon...`);try{await r.stopDaemon()}catch(i){ti("hvigor --stop-daemon",i)}},()=>{console.log("Another build is already running for this project. Waiting for it to finish...")}),console.log(`
35
- `+Ha("Clean completed successfully.")),e.getBundleName()}var su=new mv("build").description("Build HarmonyOS project").option("--product <product>","Product name defined in build-profile.json5 (default: default)").option("--modules <modules...>","Modules to build (format: module or module@target)").option("--build-mode <mode>","Build mode (buildModeSet in build-profile.json5; e.g. debug, release; default: debug)").action(async n=>{let e=wv(n);await ou(e,async()=>{let t=await Sv(n);e.bundle_name=t.bundleName,t.ohpmMemoryMb&&(e.ohpm_install_memory=t.ohpmMemoryMb),t.syncMemoryMb&&(e.hvigor_sync_memory=t.syncMemoryMb),t.buildMemoryMb&&(e.hvigor_build_memory=t.buildMemoryMb)})});su.command("clean").description("Clean HarmonyOS project build outputs").action(async()=>{let n=bv();await ou(n,async()=>{n.bundle_name=await Ev()})});var au=su;import{Command as aw}from"commander";import{green as oi,red as cw,yellow as Ro}from"colorette";import*as si from"path";import{randomUUID as Mv}from"crypto";import{execa as _v}from"execa";import{execa as Ov}from"execa";import{execFile as Pv,spawn as Cv}from"child_process";import{promisify as kv}from"util";var Iv=kv(Pv);function cu(n,e,t){let i=n.replace(/\r\n/g,`
29
+ [hvigor build] Running...`);let c="";try{o.type==="product"?c=await e.buildProduct(t,n):c=await e.buildModules(t,n,o.modulesToBuild,o.moduleTasks)}catch(l){lo("hvigor build",l)}return fw(i),{ohpmMemoryMb:r.peakMemoryMb,syncMemoryMb:a,buildMemoryMb:c}}function fw(r){try{if(rr(r).length===0)return;ac(r),console.log(cc(`
30
+ Merged central compile_commands.json for C++ language server.`))}catch(e){console.warn(lc(`
31
+ Failed to merge compile_commands.json: ${e.message}`))}}async function _u(r,e){let t=Date.now(),n=!0,o=null;try{await e()}catch(i){n=!1,o=q(i),console.error(Ou(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(r,i)}}function mw(r){let e={event:b.CommandExecuted,args:["build",...r.product?["--product"]:[],...r.modules?["--modules"]:[],...r.buildMode?["--build-mode"]:[]]};return r.buildMode&&(e.build_mode=r.buildMode),r.modules&&(e.module_count=r.modules.length),e}function hw(){return{event:b.CommandExecuted,args:["build","clean"]}}async function gw(r){let e=process.cwd(),t=W.discover(e);console.warn(lc("Ensure the project source is trustworthy before proceeding."));let n=await A.new();n.assertJava(),dw(t,r);let o=r.product||"default",i=r.buildMode||"debug",s;if(r.product&&!r.modules)s={type:"product"};else{let d=pw(t,r),g=dc(t,d);s={type:"modules",modulesToBuild:d,moduleTasks:g}}let a=new cn(n,t.rootDir),c=new ze(n,t.rootDir),l=await _r(t.rootDir,async()=>uc(a,c,o,i,s,t.rootDir),()=>{console.log("Another build is already running for this project. Waiting for completion...")});return console.log(`
32
+ `+cc("Build completed successfully")),{bundleName:t.getBundleName(),ohpmMemoryMb:l.ohpmMemoryMb,syncMemoryMb:l.syncMemoryMb,buildMemoryMb:l.buildMemoryMb}}async function yw(){let r=process.cwd(),e=W.discover(r);console.warn(lc("Ensure the project source is trusted before proceeding."));let t=await A.new();t.assertJava();let n=new ze(t,e.rootDir);return await _r(e.rootDir,async()=>{console.log(`
33
+ [1/2] Running hvigor clean...`);try{await n.clean()}catch(o){lo("hvigor clean",o)}console.log(`
34
+ [2/2] Running hvigor --stop-daemon...`);try{await n.stopDaemon()}catch(o){lo("hvigor --stop-daemon",o)}},()=>{console.log("Another build is already running for this project. Waiting for it to finish...")}),console.log(`
35
+ `+cc("Clean completed successfully.")),e.getBundleName()}var ju=new lw("build").description("Build HarmonyOS project").option("--product <product>","Product name defined in build-profile.json5 (default: default)").option("--modules <modules...>","Modules to build (format: module or module@target)").option("--build-mode <mode>","Build mode (buildModeSet in build-profile.json5; e.g. debug, release; default: debug)").action(async r=>{let e=mw(r);await _u(e,async()=>{let t=await gw(r);e.bundle_name=t.bundleName,t.ohpmMemoryMb&&(e.ohpm_install_memory=t.ohpmMemoryMb),t.syncMemoryMb&&(e.hvigor_sync_memory=t.syncMemoryMb),t.buildMemoryMb&&(e.hvigor_build_memory=t.buildMemoryMb)})});ju.command("clean").description("Clean HarmonyOS project build outputs").action(async()=>{let r=hw();await _u(r,async()=>{r.bundle_name=await yw()})});var Fu=ju;import{Command as Mb}from"commander";import{green as wo,red as Ob,yellow as es}from"colorette";import*as bo from"path";import{randomUUID as xw}from"crypto";import{execa as qu}from"execa";import{execa as Tw}from"execa";import{execFile as vw,spawn as ww}from"child_process";import{promisify as bw}from"util";var Sw=bw(vw);function $u(r,e,t){let o=r.replace(/\r\n/g,`
36
36
  `).split(`
37
- `),o=i.pop()??"",s=i.map(a=>a.endsWith("\r")?a.slice(0,-1):a).filter(a=>a.length>0);return s.length>0&&t.onData(s,e),o}function lu(n,e,t){let r=n.endsWith("\r")?n.slice(0,-1):n;r.length>0&&t.onData([r],e)}function Av(n,e){return{stdout:n.stdoutChunks.join(""),stderr:n.stderrChunks.join(""),exitCode:e??-1}}function Dv(){return{stdoutChunks:[],stderrChunks:[],stdoutLineBuffer:"",stderrLineBuffer:"",settled:!1}}function Rv(n,e,t,r,i){n.stdout?.on("data",o=>{let s=o.toString();e.stdoutChunks.push(s),e.stdoutLineBuffer=cu(e.stdoutLineBuffer+s,"stdout",t)}),n.stderr?.on("data",o=>{let s=o.toString();e.stderrChunks.push(s),e.stderrLineBuffer=cu(e.stderrLineBuffer+s,"stderr",t)}),n.on("error",o=>{e.settled||(e.settled=!0,t.onError(o),i(o))}),n.on("close",o=>{if(e.settled)return;e.settled=!0,lu(e.stdoutLineBuffer,"stdout",t),lu(e.stderrLineBuffer,"stderr",t),t.onClose(o);let s=Av(e,o);r(s)})}async function ni(n,e=[],t={}){try{let{stdout:r,stderr:i}=await Iv(n,e,t);return{stdout:typeof r=="string"?r.trim():"",stderr:typeof i=="string"?i.trim():"",exitCode:0}}catch(r){let i=r;return{stdout:i.stdout?.trim()||"",stderr:i.stderr?.trim()||i.message,exitCode:typeof i.code=="number"?i.code:1}}}async function du(n,e,t){return await new Promise((r,i)=>{let o=Cv(n,e,{stdio:["inherit","pipe","pipe"]}),s=Dv();Rv(o,s,t,r,i)})}function uu(n){let e=n.trim(),t=e.indexOf("=");return t!==-1?e.slice(t+1).trim():e}var Tv=[/communication channel is being established/i,/please wait for several seconds and try again/i,/device offline/i,/\[E0+04\]/i,/not connected/i],xv=[/\[fail\]/i,/\bfail!/i,/not found/i,/permission denied/i,/device unauthorized/i];function nr(n){return n?Tv.some(e=>e.test(n))?"transient":xv.some(e=>e.test(n))?"fatal":"ok":"ok"}var Va=[800,1500,2500];function Lv(n){return new Promise(e=>setTimeout(e,n))}async function ie(n,e){let t=1+Va.length,r={stdout:"",stderr:"",exitCode:-1};for(let i=0;i<t;i++){if(r=await ni(n,e),r.exitCode===0||nr(r.stderr)!=="transient"||i>=t-1)return r;p(`hdc transient failure on \`${e.join(" ")}\`: retrying in ${Va[i]}ms`),await Lv(Va[i])}return r}var pu=/^[\w.-]+$/;async function So(n,e,t){if(!pu.test(t)){p(`Skipping invalid param key: ${JSON.stringify(t)}`);return}let r=["-t",e,"shell","param","get",t];p(`Executing: ${n} ${r.join(" ")}`);let i=await ie(n,r);if(i.exitCode!==0)return;let o=i.stdout.trim();if(!(!o||nr(o)!=="ok"))return uu(o)}var qa="__DEVECO_PARAM_DELIM__";function Nv(n,e){let t=new Map,r=n.split(qa);for(let i=0;i<e.length;i++){let o=(r[i]??"").trim();if(!o||nr(o)!=="ok")continue;let s=uu(o);s&&t.set(e[i],s)}return t}async function rr(n,e,t){let r=t.filter(a=>pu.test(a)?!0:(p(`Skipping invalid param key: ${JSON.stringify(a)}`),!1));if(r.length===0)return new Map;if(r.length===1){let a=new Map,c=await So(n,e,r[0]);return c&&a.set(r[0],c),a}let i=r.map(a=>`param get ${a}`).join(`; echo ${qa}; `)+`; echo ${qa}`,o=await ie(n,["-t",e,"shell",i]);if(o.exitCode===0){let a=Nv(o.stdout,r);if(a.size>0)return a}p(`Batched param fetch failed (exit=${o.exitCode}), falling back to individual calls for ${e}`);let s=new Map;for(let a of r){let c=await So(n,e,a);c&&s.set(a,c)}return s}function yt(n){return n.startsWith("127.0.0.1:")}var fu=["ohos.qemu.hvd.name","const.product.name","const.product.model","const.product.brand","const.product.devicetype","const.build.product"],oe=class n{hdcPath;constructor(e){this.hdcPath=e}static from(e){return new n(e.hdcPath)}static withHdcPath(e){return new n(e)}escapeRegExp(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}stripBrandPrefix(e,t){let r=e.trim(),i=t?.trim();if(!r||!i)return r;let o=new RegExp(`^${this.escapeRegExp(i)}(\\s+|[-_]+)?`,"i");return r.replace(o,"").trim()||r}async executeHdc(e){return p(`Executing: ${this.hdcPath} ${e.join(" ")}`),Ov(this.hdcPath,e,{stdio:["ignore","pipe","pipe"]})}async listDevices(){let{stdout:e}=await this.executeHdc(["list","targets"]),t=[];for(let r of e.split(`
38
- `)){let i=r.trim();if(!i||i.startsWith("[Empty]"))continue;let o=i.split(/\s+/),s=o[0];if(!s||s.startsWith("[Empty]"))continue;let a=o.length>=2?o[1]:"device";if(a.toLowerCase()==="unauthorized"){p(`[DeviceManager] Skipping unauthorized device: ${s}`);continue}t.push({serial:s,status:a})}return t}extractDisplayName(e){let t=e.get("ohos.qemu.hvd.name");if(t)return t;let r=e.get("const.product.name");if(r&&r!=="emulator")return r;let i=e.get("const.product.model");if(i&&i!=="emulator"){let s=e.get("const.product.brand");return this.stripBrandPrefix(i,s)}let o=e.get("const.build.product");if(o&&o!=="emulator")return o}async getDeviceName(e){let t=await rr(this.hdcPath,e,[...fu]);return this.extractDisplayName(t)??e}async getDeviceInfo(e,t){if(e.length===0)return null;if(t){let r=e.find(s=>s.serial===t);if(r)return r;let i=t.toLowerCase(),o=[];for(let s of e){let a=await this.getDeviceName(s.serial);a.toLowerCase()===i&&o.push({device:s,name:a})}if(o.length===1)return o[0].device;throw o.length>1?new w(`Multiple devices match "${t}". Use a serial instead:
39
- `+o.map(s=>` - ${s.name} (${s.device.serial})`).join(`
40
- `),"Multiple devices match."):new w(`Device "${t}" not found. Use \`devecocli device list\` to see available targets.`,"Device not found.")}return e[0]}async getDeviceDetail(e){let t={serial:e,status:"device"};try{let r=await rr(this.hdcPath,e,["const.product.devicetype","const.ohos.apiversion","const.ohos.releasetype"]);t.deviceType=r.get("const.product.devicetype");let i=r.get("const.ohos.apiversion"),o=r.get("const.ohos.releasetype");i&&(t.osVersion=o?`API ${i} (${o})`:`API ${i}`)}catch{}return t}async listDevicesWithName(){let e=await this.listDevices();return Promise.all(e.map(async t=>({serial:t.serial,name:await this.getDeviceName(t.serial)})))}async getConnectedEntries(){let e=await this.listDevices();return Promise.all(e.map(t=>this.buildConnectedEntry(t.serial)))}async buildConnectedEntry(e){let t=yt(e),r,i;try{let o=await rr(this.hdcPath,e,[...fu]);r=this.extractDisplayName(o),i=o.get("const.product.devicetype")}catch{}return{serial:e,name:r,isEmulator:t,deviceType:i}}};var Kt=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=oe.from(e)}async runHdc(e,t=!0){let r=this.toolProvider.hdcPath;p(`Executing: ${r} ${e.join(" ")}`);try{let{stdout:i}=await _v(r,e,{env:{...process.env}});return i}catch(i){if(t)throw i;return i.stdout||""}}async listTargets(){return(await this.deviceManager.listDevicesWithName()).map(t=>({name:t.name,id:t.serial}))}async uninstallApp(e,t){S.assertBundleNameStrict(t);let r=await this.runHdc(["-t",e,"shell","bm","uninstall","-n",t],!1);if(r.includes("uninstall bundle successfully"))return!0;if(r.includes("uninstall missing installed bundle"))return!1;throw new Error(`Uninstall failed: ${r}`)}async installApp(e,t){if(t.length===0)return;let i=`/data/local/tmp/${Mv()}`;try{await this.runHdc(["-t",e,"shell","mkdir",i]);for(let s of t){let a=await this.runHdc(["-t",e,"file","send",s,i+"/"]);if(!a.startsWith("FileTransfer finish"))throw new Error(a)}let o=await this.runHdc(["-t",e,"shell","bm","install","-p",i]);if(!o.includes("install bundle successfully."))throw new Error(o);console.log("App installed successfully")}finally{await this.runHdc(["-t",e,"shell","rm","-rf",i],!1)}}async launchApp(e,t,r){S.assertBundleNameStrict(t),S.assertAbilityName(r);let i=["-t",e,"shell","aa","start","-a",r,"-b",t];return await this.runHdc(i)}async forceStopApp(e,t){S.assertBundleNameStrict(t);let r=["-t",e,"shell","aa","force-stop",t];return await this.runHdc(r,!1)}};import Ga from"fs";import*as Nn from"path";function ri(n,e){if(!Ga.existsSync(n))throw new Error(`Apply file list not found: ${n}`);let r=Ga.readFileSync(n,"utf-8").split(/\r?\n/).map(a=>a.trim()).filter(a=>a.length>0&&!a.startsWith("#"));if(r.length===0)throw new Error("Apply file list is empty (no valid entries)");let i=Nn.resolve(e),o=new Set,s=[];for(let a of r){let c=Nn.resolve(i,a),l=Nn.isAbsolute(a)?Nn.relative(i,a):a;if(l.startsWith(".."))throw new Error(`File path is outside the project directory: ${a}`);let d=S.isPathContainedWithSymlink(l,i);if(!d.contained){if(!Ga.existsSync(c))throw new Error(`File not found: ${a}`);let g=d.reason?`; ${d.reason}`:"";throw new Error(`File path is outside the project directory: ${a}${g}`)}o.has(c)||(o.add(c),s.push(c))}return s}import za from"fs";import ii from"path";import{execa as $v}from"execa";import mu from"fs";import*as hu from"path";import jv from"json5";function Fv(n,e){try{let r=jv.parse(mu.readFileSync(n,"utf-8")).modules?.find(i=>i.name===e);return r?.srcPath?r.srcPath.replace(/^\.\//,""):null}catch(t){return p(`[apply] resolveModuleSrcPath fallback (module=${e}): ${t.message}`),null}}function vt(n,e){let t=hu.join(n,"build-profile.json5");return mu.existsSync(t)?Fv(t,e)??e:e}async function gu(n,e,t,r){let i=ii.dirname(n.javaPath),o={...process.env,PATH:`${i}${ii.delimiter}${process.env.PATH||""}`,DEVECO_SDK_HOME:n.sdkPath},s=[n.hvigorJsPath,"--mode","module","-p",`module=${t.join(",")}@${r}`,"-p",`product=${r}`,"-p","debuggable=true","assembleDevHqf","--analyze=normal","--parallel","--incremental","--no-daemon"];p(`[buildSignedHqf] ${n.nodePath} ${s.join(" ")}`);let a=await $v(n.nodePath,s,{cwd:e,env:o,stdout:"inherit",stderr:"inherit",reject:!1}),c=(a.exitCode??0)|0;if(c===-1)throw new Error("hvigor hot compile produced invalid abc (exit code -1)");if(c!==0)throw new Error(`hvigor assembleDevHqf failed with exit code ${a.exitCode}`);return t.map(l=>Uv(e,l,r))}function yu(n,e,t){let r=vt(n,e);return ii.join(n,r,"build",t,"outputs")}function Hv(n,e,t){return ii.join(yu(n,e,t),`${e}-${t}-signed.hqf`)}function Uv(n,e,t){let r=yu(n,e,t),i=Hv(n,e,t);if(za.existsSync(i))return i;let o=Ja(r,"-signed.hqf")??Ja(r,".hqf");if(!o)throw new Error(`Signed hqf not found at ${i} (and no *.hqf under ${r})`);return p(`[buildSignedHqf] signed hqf not at exact path, using fallback: ${o}`),o}function Ja(n,e){if(!za.existsSync(n))return null;for(let t of za.readdirSync(n,{withFileTypes:!0})){let r=ii.join(n,t.name);if(t.isDirectory()){let i=Ja(r,e);if(i)return i}else if(t.isFile()&&t.name.endsWith(e))return r}return null}import X from"fs";import*as N from"path";import Ya from"json5";var vu="default",ir=class n{static writeChangedFileLists(e,t,r,i){let o=t||vu,s=n.loadBuildProfile(e);if(!s)return{writtenModules:[],skippedFiles:r};let a=s.modules,c=n.filterRunnableModules(e,a);if(c.length===0)return{writtenModules:[],skippedFiles:r};let l=n.buildReverseDependencyMap(e,a),d=n.createCollectors(c),g=n.collectChanges(r,e,a,l,d);return{writtenModules:n.flushCollectors(e,o,c,d,i),skippedFiles:g}}static initEmptyChangedFileLists(e,t,r){let i=t||vu,o=n.loadBuildProfile(e);if(!o)return[];let s=o.modules,a=[];for(let c of s){let l=n.getModuleType(e,c.srcPath);if(l!=="entry"&&l!=="shared")continue;let d=!r||c.name===r;n.initEmptyForModule(e,i,c.srcPath,d),a.push(c.name)}return a}static filterRunnableModules(e,t){return t.filter(r=>{let i=n.getModuleType(e,r.srcPath);return i==="entry"||i==="shared"})}static createCollectors(e){let t=new Map;for(let r of e)t.set(r.name,{hotReloadEntries:[],patchEtsFiles:[],patchRawFiles:[],patchResFiles:[],nativeFiles:[]});return t}static collectChanges(e,t,r,i,o){let s=[];for(let a of e){let c=N.normalize(a),l=n.classifyFile(c,t,r);if(l.fileClass==="unknown"){s.push(c);continue}let d=n.findModuleByFilePath(c,t,r);if(!d){s.push(c);continue}let g=n.resolveTargetModules(d,t,r,i);if(g.length===0){s.push(c);continue}n.dispatchToCollectors(g,o,c,l,d.srcPath,t)}return s}static resolveTargetModules(e,t,r,i){let o=n.getModuleType(t,e.srcPath);return o==="entry"||o==="shared"?[e.name]:Array.from(n.findTopLevelConsumers(e.name,i,t,r))}static dispatchToCollectors(e,t,r,i,o,s){for(let a of e){let c=t.get(a);c&&n.addFileToCollector(c,r,i.fileClass,o,s)}}static flushCollectors(e,t,r,i,o){let s=[];for(let a of r){let c=i.get(a.name);if(!c||!n.hasAnyChange(c))continue;(!o||a.name===o)&&c.hotReloadEntries.length>0&&n.writeApplyFile(e,a.srcPath,t,c.hotReloadEntries),n.writePatchFile(e,a.srcPath,t,c.patchEtsFiles,c.patchRawFiles,c.patchResFiles),s.push(a.name)}return s}static hasAnyChange(e){return e.hotReloadEntries.length>0||e.patchEtsFiles.length>0||e.patchRawFiles.length>0||e.patchResFiles.length>0||e.nativeFiles.length>0}static initEmptyForModule(e,t,r,i){let o=N.join(e,r,"build",t,"intermediates","patch","default"),s=N.join(o,"changedFileList.json");if(X.existsSync(s)||(X.mkdirSync(o,{recursive:!0}),X.writeFileSync(s,JSON.stringify({resources:{resFile:[],rawFile:[]},modifiedFiles:[]}),"utf-8")),!i)return;let a=N.join(e,r,"build",t,"intermediates","hotReload"),c=N.join(a,"changedFileList.json");X.existsSync(c)||(X.mkdirSync(a,{recursive:!0}),X.writeFileSync(c,JSON.stringify({modifiedFilesV2:[]},null,2),"utf-8"))}static loadBuildProfile(e){let t=N.join(e,"build-profile.json5");if(!X.existsSync(t))return null;try{let r=X.readFileSync(t,"utf-8");return Ya.parse(r)}catch{return null}}static classifyFile(e,t,r){let i=N.extname(e).toLowerCase();if(i===".ets"||i===".ts")return{fileClass:"ets_ts",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};if(i===".cpp"||i===".cc"||i===".c"||i===".h"||i===".hpp")return{fileClass:"native",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};let o=e.replace(/\\/g,"/");return o.includes("/resources/rawfile/")?{fileClass:"raw_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:o.includes("/resources/resfile/")?{fileClass:"res_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:{fileClass:"unknown",moduleSrcPath:""}}static findModuleByFilePath(e,t,r){let i=N.normalize(e);for(let o of r){let s=N.normalize(N.join(t,o.srcPath)),a=s+N.sep;if(i.startsWith(a)||i===s)return o}return null}static getModuleType(e,t){let r=N.join(e,t,"src","main","module.json5");if(!X.existsSync(r))return"entry";try{let i=X.readFileSync(r,"utf-8");return Ya.parse(i)?.module?.type||"entry"}catch{return"entry"}}static buildReverseDependencyMap(e,t){let r=new Map;for(let i of t){let o=n.readLocalDependencies(e,i.srcPath);for(let s of o){let a=r.get(s)||[];a.includes(i.name)||a.push(i.name),r.set(s,a)}}return r}static readLocalDependencies(e,t){let r=N.join(e,t,"oh-package.json5");if(!X.existsSync(r))return[];try{let i=X.readFileSync(r,"utf-8"),o=Ya.parse(i);return n.resolveDepModuleNames(e,t,o.dependencies||{})}catch{return[]}}static resolveDepModuleNames(e,t,r){let i=n.loadBuildProfile(e);if(!i)return[];let o=i.modules,s=[];for(let a of Object.values(r)){if(typeof a!="string")continue;let c=n.tryResolveDepModule(e,t,a,o);c&&s.push(c)}return s}static tryResolveDepModule(e,t,r,i){let o=r;if(!(o.startsWith("file:")||o.startsWith(".")||o.startsWith("..")))return null;o.startsWith("file:")&&(o=o.substring(5));let a=N.resolve(e,t,o);return i.find(l=>N.resolve(e,l.srcPath)===a)?.name??null}static findTopLevelConsumers(e,t,r,i){let o=new Set,s=new Set,a=[e];for(;a.length>0;){let c=a.shift();s.has(c)||(s.add(c),n.processDependents(c,t,r,i,o,a))}return o}static processDependents(e,t,r,i,o,s){let a=t.get(e)||[];for(let c of a){let l=i.find(g=>g.name===c);if(!l)continue;let d=n.getModuleType(r,l.srcPath);(d==="entry"||d==="shared")&&o.add(c),d==="har"&&s.push(c)}}static addFileToCollector(e,t,r,i,o){let s=N.join(o,i,"src","main","resources");r==="ets_ts"?(e.hotReloadEntries.push({filePath:t,belongProjectPath:o}),e.patchEtsFiles.push(t)):r==="raw_file"?e.patchRawFiles.push({filePath:t,resourcePath:s}):r==="res_file"?e.patchResFiles.push({filePath:t,resourcePath:s}):r==="native"&&e.nativeFiles.push(t)}static writeApplyFile(e,t,r,i){let o=t.replace(/^\.\//,""),s=N.join(e,o,"build",r,"intermediates","hotReload","changedFileList.json"),a=n.readExistingApply(s),c=n.mergeApplyEntries(a,i),l=N.dirname(s);X.existsSync(l)||X.mkdirSync(l,{recursive:!0}),X.writeFileSync(s,JSON.stringify({modifiedFilesV2:c},null,2),"utf-8"),p(`[ChangedFileListWriter] Written hotReload: ${s} (${c.length} entries)`)}static readExistingApply(e){if(!X.existsSync(e))return[];try{let t=X.readFileSync(e,"utf-8");return JSON.parse(t)?.modifiedFilesV2||[]}catch{return[]}}static writePatchFile(e,t,r,i,o,s){let a=t.replace(/^\.\//,""),c=N.join(e,a,"build",r,"intermediates","patch","default","changedFileList.json"),l=n.readExistingPatch(c),d=N.join(e,a,"src","main","ets"),g=i.map(ze=>n.resolveRelativePathForPatch(ze,d)),v=n.mergeStrings(l.modifiedFiles,g),D=n.mergePatchResources(l.rawFile,o),He=n.mergePatchResources(l.resFile,s),ye=N.dirname(c);X.existsSync(ye)||X.mkdirSync(ye,{recursive:!0}),X.writeFileSync(c,JSON.stringify({resources:{resFile:He,rawFile:D},modifiedFiles:v}),"utf-8"),p(`[ChangedFileListWriter] Written patch: ${c}`)}static readExistingPatch(e){if(!X.existsSync(e))return{modifiedFiles:[],rawFile:[],resFile:[]};try{let t=X.readFileSync(e,"utf-8"),r=JSON.parse(t);return{modifiedFiles:r?.modifiedFiles||[],rawFile:r?.resources?.rawFile||[],resFile:r?.resources?.resFile||[]}}catch{return{modifiedFiles:[],rawFile:[],resFile:[]}}}static resolveRelativePathForPatch(e,t){return N.relative(N.normalize(t),N.normalize(e)).replace(/\\/g,"/")}static mergeApplyEntries(e,t){let r=new Set,i=[];for(let o of[...e,...t])r.has(o.filePath)||(r.add(o.filePath),i.push(o));return i}static mergeStrings(e,t){let r=new Set,i=[];for(let o of[...e,...t])r.has(o)||(r.add(o),i.push(o));return i}static mergePatchResources(e,t){let r=new Set,i=[];for(let o of[...e,...t])r.has(o.filePath)||(r.add(o.filePath),i.push(o));return i}};import Wv from"fs";import{randomUUID as Bv}from"crypto";import{execa as Vv}from"execa";var or=class{toolProvider;constructor(e){this.toolProvider=e}async install(e,t,r){for(let a of t)if(!Wv.existsSync(a)){let c=`Signed hqf file not found: ${a}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}S.assertBundleName(r);let o=`/data/local/tmp/${Bv()}`,s=[];try{for(let a=0;a<t.length;a++){let c=`${o}/${r}_${a}.hqf`;s.push(c),await this.pushHqf(e,t[a],o,c)}return await this.executeQuickfix(e,s)}catch(a){let c=`hqf install error: ${a.message}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}finally{await this.runHdc(["-t",e,"shell","rm","-rf",o],!1)}}async pushHqf(e,t,r,i){console.log(`[Apply] Pushing hqf to device ${e}: ${t}`),await this.runHdc(["-t",e,"shell","mkdir","-p",r]);let o=await this.runHdc(["-t",e,"file","send",t,i]);if(!o.startsWith("FileTransfer finish"))throw new Error(`Failed to send hqf: ${o}`)}async executeQuickfix(e,t){console.log(`[Apply] Installing ${t.length} hqf patch(es) via quickfix...`);let r=["-t",e,"shell","bm","quickfix","-a","-f",...t,"-d"];await this.getApiVersion(e)>17&&r.push("-o");let o=await this.runHdc(r,!1);if(p(`[InstallHqf] quickfix output: ${o}`),/succe(?:ed|ss)/i.test(o))return console.log("[Apply] hqf installed successfully."),{success:!0,message:"hqf quickfix installed successfully."};let s=`hqf quickfix install failed. Device response: ${o||"(empty)"}. Please try reinstalling the application.`;return console.error(`[Apply] ${s}`),{success:!1,message:s}}async getApiVersion(e){try{let t=await this.runHdc(["-t",e,"shell","param","get","const.ohos.apiversion"],!1),r=parseInt(t.trim(),10);if(!isNaN(r))return console.log(`[InstallHqf] device API version: ${r}`),r}catch{}return 0}async runHdc(e,t=!0){let r=this.toolProvider.hdcPath;p(`[InstallHqf] Executing: ${r} ${e.join(" ")}`);try{let{stdout:i}=await Vv(r,e,{env:{...process.env}});return i}catch(i){if(t)throw i;return i.stdout||""}}};var qv="6.1.1",Eo=class{constructor(e,t){this.toolProvider=e;this.projectRoot=t}toolProvider;projectRoot;async execute(e){await xn(this.projectRoot,()=>this.executeSteps(e),()=>console.log("[Apply] Waiting for another build to finish..."))}async executeSteps(e){this.toolProvider.assertIdeVersion(qv);let t=ri(e.applyFile,this.projectRoot);console.log(`[Apply] Parsed ${t.length} changed file(s)`);let r=this.writeChangeFileList(e,t);await this.stopApp(e);let i=await this.buildHqf(e,r);await this.installHqf(e,i),await this.launchApp(e),console.log("[Apply] Apply complete")}writeChangeFileList(e,t){let r=ir.writeChangedFileLists(this.projectRoot,e.productName,t);if(r.writtenModules.length===0)throw new Error("No changed files belong to a runnable module");return console.log(`[Apply] changeFileList written for: ${r.writtenModules.join(", ")}`),r.writtenModules}async buildHqf(e,t){return p(`[Apply] hvigor assembleDevHqf --no-daemon (modules=${t.join(",")})`),await gu(this.toolProvider,this.projectRoot,t,e.productName)}async installHqf(e,t){console.log(`[Apply] Installing ${t.length} hqf(s) to ${e.targetDeviceId}`);let i=await new or(this.toolProvider).install(e.targetDeviceId,t,e.bundleName);if(!i.success)throw new Error(`hqf install failed: ${i.message}`);console.log("[Apply] hqf installed")}async stopApp(e){let t=new Kt(this.toolProvider);try{await t.forceStopApp(e.targetDeviceId,e.bundleName),console.log("[Apply] app stopped")}catch(r){console.warn(`[Apply] stop app failed: ${r.message}`)}}async launchApp(e){let t=new Kt(this.toolProvider);try{await t.launchApp(e.targetDeviceId,e.bundleName,e.abilityName),console.log("[Apply] app launched")}catch(r){console.warn(`[Apply] launch app failed: ${r.message}`)}}};import Ka from"fs";import*as $ from"path";var Po=class n{static generate(e,t,r,i){let o=vt(e,t),s=$.join(e,o),a=$.join(s,"build","config"),c=n.buildConfig(e,s,r,i);Ka.mkdirSync(a,{recursive:!0}),Ka.writeFileSync($.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),p(`[BuildConfigManager] buildConfig.json written to ${a}`);let l=$.join(s,"build",r,"intermediates","loader_out",r,"ets");Ka.mkdirSync(l,{recursive:!0})}static buildConfig(e,t,r,i){let o=$.dirname(i.nodePath)+$.sep,s=$.join(t,"build",r),a=$.join(s,"intermediates"),c=$.join(a,"loader_out",r),l=$.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:o,projectProfilePath:$.join(e,"build-profile.json5"),localPropertiesPath:$.join(e,"local.properties"),appResource:$.join(l,"ResourceTable.txt"),cachePath:$.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:$.join(a,"loader",r,"loader.json"),aceModuleJsonPath:$.join(l,"module.json"),aceSoPath:$.join(c,"nativeDependencies.txt"),aceModuleRoot:$.join(t,"src","main","ets"),aceModuleBuild:$.join(c,"ets"),aceProfilePath:$.join(l,"resources","base","profile"),aceSuperVisualPath:$.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"false",mode:"hotReload",oldMapFilePath:$.join(c,"ets"),changedFileList:$.join(a,"patch",r,"changedFileList.json"),patchAbcPath:$.join(a,"patch",r,"ets"),removeChangedFileListInSdk:"true"}}}};import wu from"fs";import*as U from"path";var Co=class n{static generate(e,t,r,i){let o=vt(e,t),s=U.join(e,o),a=U.join(s,"build","config"),c=n.buildConfig(e,s,r,i);wu.mkdirSync(a,{recursive:!0}),wu.writeFileSync(U.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),p(`[HotReloadBuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,r,i){let o=U.dirname(i.nodePath)+U.sep,s=U.join(t,"build",r),a=U.join(s,"intermediates"),c=U.join(a,"loader_out",r),l=U.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:o,projectProfilePath:U.join(e,"build-profile.json5"),localPropertiesPath:U.join(e,"local.properties"),appResource:U.join(l,"ResourceTable.txt"),cachePath:U.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:U.join(a,"loader",r,"loader.json"),aceModuleJsonPath:U.join(l,"module.json"),aceSoPath:U.join(c,"nativeDependencies.txt"),aceModuleRoot:U.join(t,"src","main","ets"),aceModuleBuild:U.join(c,"ets"),aceProfilePath:U.join(l,"resources","base","profile"),aceSuperVisualPath:U.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:U.join(c,"ets"),changedFileList:U.join(a,"hotReload","changedFileList.json"),patchAbcPath:U.join(a,"hotReload","patchAbcPath","ets"),removeChangedFileListInSdk:"true"}}}};import bu from"crypto";import Qe from"fs";import et from"path";import Su from"os";import{io as Gv}from"socket.io-client";var zv=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),sr=class n{projectRoot;toolProvider;cachedSocket=null;cachedDaemonPort=0;constructor(e,t){this.projectRoot=e,this.toolProvider=t}async sendHotCompile(e){await this.waitForDaemonReady();let t=this.findProjectDaemon();if(!t?.sessionId)throw new Error("No running hvigor daemon with sessionId found. Run `devecocli run --hotreload` first.");return this.sendViaSocket(t,e)}async startWatchSession(e){await this.waitForDaemonReady(),console.log(`[DaemonClient] Compiling, build with: ${JSON.stringify(e)}`);let t=this.findProjectDaemon();if(!t?.sessionId)throw new Error("No running hvigor daemon with sessionId found. Build the hap first.");let r=await this.getOrCreateSocket(t),i=this.watchLogPath;Qe.mkdirSync(et.dirname(i),{recursive:!0}),Qe.writeFileSync(i,"");let o=this.createWatchLogBuffer(i);r.on("WatchLog",o.onWatchLog),r.on("WatchResult",o.onWatchResult),await this.awaitInitialBuild(r,e)}createWatchLogBuffer(e){let r=[];return{onWatchLog:s=>{let a=n.extractText(s);a.trim()&&(r.push(a.endsWith(`
37
+ `),i=o.pop()??"",s=o.map(a=>a.endsWith("\r")?a.slice(0,-1):a).filter(a=>a.length>0);return s.length>0&&t.onData(s,e),i}function Hu(r,e,t){let n=r.endsWith("\r")?r.slice(0,-1):r;n.length>0&&t.onData([n],e)}function Ew(r,e){return{stdout:r.stdoutChunks.join(""),stderr:r.stderrChunks.join(""),exitCode:e??-1}}function Pw(){return{stdoutChunks:[],stderrChunks:[],stdoutLineBuffer:"",stderrLineBuffer:"",settled:!1}}function Cw(r,e,t,n,o){r.stdout?.on("data",i=>{let s=i.toString();e.stdoutChunks.push(s),e.stdoutLineBuffer=$u(e.stdoutLineBuffer+s,"stdout",t)}),r.stderr?.on("data",i=>{let s=i.toString();e.stderrChunks.push(s),e.stderrLineBuffer=$u(e.stderrLineBuffer+s,"stderr",t)}),r.on("error",i=>{e.settled||(e.settled=!0,t.onError(i),o(i))}),r.on("close",i=>{if(e.settled)return;e.settled=!0,Hu(e.stdoutLineBuffer,"stdout",t),Hu(e.stderrLineBuffer,"stderr",t),t.onClose(i);let s=Ew(e,i);n(s)})}async function uo(r,e=[],t={}){try{let{stdout:n,stderr:o}=await Sw(r,e,t);return{stdout:typeof n=="string"?n.trim():"",stderr:typeof o=="string"?o.trim():"",exitCode:0}}catch(n){let o=n;return{stdout:o.stdout?.trim()||"",stderr:o.stderr?.trim()??o.message,exitCode:typeof o.code=="number"?o.code:1}}}async function Uu(r,e,t){return await new Promise((n,o)=>{let i=ww(r,e,{stdio:["inherit","pipe","pipe"]}),s=Pw();Cw(i,s,t,n,o)})}function Bu(r){let e=r.trim(),t=e.indexOf("=");return t!==-1?e.slice(t+1).trim():e}var kw=[/communication channel is being established/i,/please wait for several seconds and try again/i,/device offline/i,/\[E0+04\]/i,/not connected/i],Iw=[/\[fail\]/i,/\bfail!/i,/not found/i,/permission denied/i,/device unauthorized/i];function nr(r){return r?kw.some(e=>e.test(r))?"transient":Iw.some(e=>e.test(r))?"fatal":"ok":"ok"}var Aw=/(?:^|\s)(\d{2,})(?:\s|$)/;function Wu(r){let e=r.stdout.trim(),t=r.stderr.trim();return nr(e)!=="ok"||nr(t)!=="ok"?"query-failed":r.exitCode===0?e&&Aw.test(e)?"alive":"dead":r.exitCode===1&&!e&&!t?"dead":"query-failed"}var pc=[800,1500,2500];function Dw(r){return new Promise(e=>setTimeout(e,r))}async function ee(r,e){let t=1+pc.length,n={stdout:"",stderr:"",exitCode:-1};for(let o=0;o<t;o++){if(n=await uo(r,e),n.exitCode===0||nr(n.stderr)!=="transient"||o>=t-1)return n;u(`hdc transient failure on \`${e.join(" ")}\`: retrying in ${pc[o]}ms`),await Dw(pc[o])}return n}var Vu=/^[\w.-]+$/;async function _i(r,e,t){if(!Vu.test(t)){u(`Skipping invalid param key: ${JSON.stringify(t)}`);return}let n=["-t",e,"shell","param","get",t];u(`Executing: ${r} ${n.join(" ")}`);let o=await ee(r,n);if(o.exitCode!==0)return;let i=o.stdout.trim();if(!(!i||nr(i)!=="ok"))return Bu(i)}var fc="__DEVECO_PARAM_DELIM__";function Rw(r,e){let t=new Map,n=r.split(fc);for(let o=0;o<e.length;o++){let i=(n[o]??"").trim();if(!i||nr(i)!=="ok")continue;let s=Bu(i);s&&t.set(e[o],s)}return t}async function un(r,e,t){let n=t.filter(a=>Vu.test(a)?!0:(u(`Skipping invalid param key: ${JSON.stringify(a)}`),!1));if(n.length===0)return new Map;if(n.length===1){let a=new Map,c=await _i(r,e,n[0]);return c&&a.set(n[0],c),a}let o=n.map(a=>`param get ${a}`).join(`; echo ${fc}; `)+`; echo ${fc}`,i=await ee(r,["-t",e,"shell",o]);if(i.exitCode===0){let a=Rw(i.stdout,n);if(a.size>0)return a}u(`Batched param fetch failed (exit=${i.exitCode}), falling back to individual calls for ${e}`);let s=new Map;for(let a of n){let c=await _i(r,e,a);c&&s.set(a,c)}return s}function It(r){return r.startsWith("127.0.0.1:")}var Gu=["ohos.qemu.hvd.name","const.product.name","const.product.model","const.product.brand","const.product.devicetype","const.build.product"],de=class r{hdcPath;constructor(e){this.hdcPath=e}static from(e){return new r(e.hdcPath)}static withHdcPath(e){return new r(e)}escapeRegExp(e){return e.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}stripBrandPrefix(e,t){let n=e.trim(),o=t?.trim();if(!n||!o)return n;let i=new RegExp(`^${this.escapeRegExp(o)}(\\s+|[-_]+)?`,"i");return n.replace(i,"").trim()||n}async executeHdc(e){return u(`Executing: ${this.hdcPath} ${e.join(" ")}`),Tw(this.hdcPath,e,{stdio:["ignore","pipe","pipe"]})}async listDevices(){let{stdout:e}=await this.executeHdc(["list","targets"]),t=[];for(let n of e.split(`
38
+ `)){let o=n.trim();if(!o||o.startsWith("[Empty]"))continue;let i=o.split(/\s+/),s=i[0];if(!s||s.startsWith("[Empty]"))continue;let a=i.length>=2?i[1]:"device";if(a.toLowerCase()==="unauthorized"){u(`[DeviceManager] Skipping unauthorized device: ${s}`);continue}t.push({serial:s,status:a})}return t}extractDisplayName(e){let t=e.get("ohos.qemu.hvd.name");if(t)return t;let n=e.get("const.product.name");if(n&&n!=="emulator")return n;let o=e.get("const.product.model");if(o&&o!=="emulator"){let s=e.get("const.product.brand");return this.stripBrandPrefix(o,s)}let i=e.get("const.build.product");if(i&&i!=="emulator")return i}async getDeviceName(e){let t=await un(this.hdcPath,e,[...Gu]);return this.extractDisplayName(t)??e}async getDeviceInfo(e,t){if(e.length===0)return null;if(t){let n=e.find(s=>s.serial===t);if(n)return n;let o=t.toLowerCase(),i=[];for(let s of e){let a=await this.getDeviceName(s.serial);a.toLowerCase()===o&&i.push({device:s,name:a})}if(i.length===1)return i[0].device;throw i.length>1?new w(`Multiple devices match "${t}". Use a serial instead:
39
+ `+i.map(s=>` - ${s.name} (${s.device.serial})`).join(`
40
+ `),"Multiple devices match."):new w(`Device "${t}" not found. Use \`devecocli device list\` to see available targets.`,"Device not found.")}return e[0]}async getDeviceDetail(e){let t={serial:e,status:"device"};try{let n=await un(this.hdcPath,e,["const.product.devicetype","const.ohos.apiversion","const.ohos.releasetype"]);t.deviceType=n.get("const.product.devicetype");let o=n.get("const.ohos.apiversion"),i=n.get("const.ohos.releasetype");o&&(t.osVersion=i?`API ${o} (${i})`:`API ${o}`)}catch{}return t}async listDevicesWithName(){let e=await this.listDevices();return Promise.all(e.map(async t=>({serial:t.serial,name:await this.getDeviceName(t.serial)})))}async getConnectedEntries(){let e=await this.listDevices();return Promise.all(e.map(t=>this.buildConnectedEntry(t.serial)))}async buildConnectedEntry(e){let t=It(e),n,o;try{let i=await un(this.hdcPath,e,[...Gu]);n=this.extractDisplayName(i),o=i.get("const.product.devicetype")}catch{}return{serial:e,name:n,isEmulator:t,deviceType:o}}};var Ye=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=de.from(e)}async runHdc(e,t=!0){let n=this.toolProvider.hdcPath;u(`Executing: ${n} ${e.join(" ")}`);try{let{stdout:o}=await qu(n,e,{env:{...process.env}});return o}catch(o){if(t)throw o;return o.stdout||""}}async listTargets(){return(await this.deviceManager.listDevicesWithName()).map(t=>({name:t.name,id:t.serial}))}async uninstallApp(e,t){S.assertBundleNameStrict(t);let n=await this.runHdc(["-t",e,"shell","bm","uninstall","-n",t],!1);if(n.includes("uninstall bundle successfully"))return!0;if(n.includes("uninstall missing installed bundle"))return!1;throw new Error(`Uninstall failed: ${n}`)}async installApp(e,t){if(t.length===0)return;let o=`/data/local/tmp/${xw()}`;try{await this.runHdc(["-t",e,"shell","mkdir",o]);for(let s of t){let a=await this.runHdc(["-t",e,"file","send",s,o+"/"]);if(!a.startsWith("FileTransfer finish"))throw new Error(a)}let i=await this.runHdc(["-t",e,"shell","bm","install","-p",o]);if(!i.includes("install bundle successfully."))throw new Error(i);console.log("App installed successfully")}finally{await this.runHdc(["-t",e,"shell","rm","-rf",o],!1)}}async launchApp(e,t,n){S.assertBundleNameStrict(t),S.assertAbilityName(n);let o=["-t",e,"shell","aa","start","-a",n,"-b",t];return await this.runHdc(o)}async pidofBundle(e,t){S.assertBundleNameStrict(t);let n=["-t",e,"shell","pidof",t],o=this.toolProvider.hdcPath;u(`Executing: ${o} ${n.join(" ")}`);let i=await ee(o,n),s=Wu(i);if(s==="query-failed"){let a=[i.stdout,i.stderr].map(c=>c.trim()).filter(Boolean).join(" ");throw new Error(`pidof query failed for '${t}': ${a||`exit ${i.exitCode}`}`)}return s==="alive"}async forceStopApp(e,t){S.assertBundleNameStrict(t);let n=["-t",e,"shell","aa","force-stop",t];return await this.runHdc(n,!1)}async transferFile(e,t,n,o){let i=["-t",e,"file",t,n,o],s=await this.runHdc(i,!1);if(!s.includes("FileTransfer finish"))throw new Error(`File ${t} failed: ${s.trim()||"hdc returned no output"}`);return s.trim()}async runSqlite3(e,t,n=[]){let o=["-t",e,"shell","sqlite3",t,...n];await qu(this.toolProvider.hdcPath,o,{stdio:"inherit",env:{...process.env}})}};import mc from"fs";import*as Fr from"path";function po(r,e){if(!mc.existsSync(r))throw new Error(`Apply file list not found: ${r}`);let n=mc.readFileSync(r,"utf-8").split(/\r?\n/).map(a=>a.trim()).filter(a=>a.length>0&&!a.startsWith("#"));if(n.length===0)throw new Error("Apply file list is empty (no valid entries)");let o=Fr.resolve(e),i=new Set,s=[];for(let a of n){let c=Fr.resolve(o,a),l=Fr.isAbsolute(a)?Fr.relative(o,a):a;if(l.startsWith(".."))throw new Error(`File path is outside the project directory: ${a}`);let d=S.isPathContainedWithSymlink(l,o);if(!d.contained){if(!mc.existsSync(c))throw new Error(`File not found: ${a}`);let g=d.reason?`; ${d.reason}`:"";throw new Error(`File path is outside the project directory: ${a}${g}`)}i.has(c)||(i.add(c),s.push(c))}return s}import hc from"fs";import fo from"path";import{execa as Mw}from"execa";import zu from"fs";import*as Ju from"path";import Lw from"json5";function Nw(r,e){try{let n=Lw.parse(zu.readFileSync(r,"utf-8")).modules?.find(o=>o.name===e);return n?.srcPath?n.srcPath.replace(/^\.\//,""):null}catch(t){return u(`[apply] resolveModuleSrcPath fallback (module=${e}): ${t.message}`),null}}function At(r,e){let t=Ju.join(r,"build-profile.json5");return zu.existsSync(t)?Nw(t,e)??e:e}async function Yu(r,e,t,n){let o=fo.dirname(r.javaPath),i={...process.env,PATH:`${o}${fo.delimiter}${process.env.PATH||""}`,DEVECO_SDK_HOME:r.sdkPath},s=[r.hvigorJsPath,"--mode","module","-p",`module=${t.join(",")}@${n}`,"-p",`product=${n}`,"-p","debuggable=true","assembleDevHqf","--analyze=normal","--parallel","--incremental","--no-daemon"];u(`[buildSignedHqf] ${r.nodePath} ${s.join(" ")}`);let a=await Mw(r.nodePath,s,{cwd:e,env:i,stdout:"inherit",stderr:"inherit",reject:!1}),c=(a.exitCode??0)|0;if(c===-1)throw new Error("hvigor hot compile produced invalid abc (exit code -1)");if(c!==0)throw new Error(`hvigor assembleDevHqf failed with exit code ${a.exitCode}`);return t.map(l=>_w(e,l,n))}function Ku(r,e,t){let n=At(r,e);return fo.join(r,n,"build",t,"outputs")}function Ow(r,e,t){return fo.join(Ku(r,e,t),`${e}-${t}-signed.hqf`)}function _w(r,e,t){let n=Ku(r,e,t),o=Ow(r,e,t);if(hc.existsSync(o))return o;let i=gc(n,"-signed.hqf")??gc(n,".hqf");if(!i)throw new Error(`Signed hqf not found at ${o} (and no *.hqf under ${n})`);return u(`[buildSignedHqf] signed hqf not at exact path, using fallback: ${i}`),i}function gc(r,e){if(!hc.existsSync(r))return null;for(let t of hc.readdirSync(r,{withFileTypes:!0})){let n=fo.join(r,t.name);if(t.isDirectory()){let o=gc(n,e);if(o)return o}else if(t.isFile()&&t.name.endsWith(e))return n}return null}import te from"fs";import*as N from"path";import yc from"json5";var Xu="default",pn=class r{static writeChangedFileLists(e,t,n,o){let i=t||Xu,s=r.loadBuildProfile(e);if(!s)return{writtenModules:[],skippedFiles:n};let a=s.modules,c=r.filterRunnableModules(e,a);if(c.length===0)return{writtenModules:[],skippedFiles:n};let l=r.buildReverseDependencyMap(e,a),d=r.createCollectors(c),g=r.collectChanges(n,e,a,l,d);return{writtenModules:r.flushCollectors(e,i,c,d,o),skippedFiles:g}}static initEmptyChangedFileLists(e,t,n){let o=t||Xu,i=r.loadBuildProfile(e);if(!i)return[];let s=i.modules,a=[];for(let c of s){let l=r.getModuleType(e,c.srcPath);if(l!=="entry"&&l!=="shared")continue;let d=!n||c.name===n;r.initEmptyForModule(e,o,c.srcPath,d),a.push(c.name)}return a}static filterRunnableModules(e,t){return t.filter(n=>{let o=r.getModuleType(e,n.srcPath);return o==="entry"||o==="shared"})}static createCollectors(e){let t=new Map;for(let n of e)t.set(n.name,{hotReloadEntries:[],patchEtsFiles:[],patchRawFiles:[],patchResFiles:[],nativeFiles:[]});return t}static collectChanges(e,t,n,o,i){let s=[];for(let a of e){let c=N.normalize(a),l=r.classifyFile(c,t,n);if(l.fileClass==="unknown"){s.push(c);continue}let d=r.findModuleByFilePath(c,t,n);if(!d){s.push(c);continue}let g=r.resolveTargetModules(d,t,n,o);if(g.length===0){s.push(c);continue}r.dispatchToCollectors(g,i,c,l,d.srcPath,t)}return s}static resolveTargetModules(e,t,n,o){let i=r.getModuleType(t,e.srcPath);return i==="entry"||i==="shared"?[e.name]:Array.from(r.findTopLevelConsumers(e.name,o,t,n))}static dispatchToCollectors(e,t,n,o,i,s){for(let a of e){let c=t.get(a);c&&r.addFileToCollector(c,n,o.fileClass,i,s)}}static flushCollectors(e,t,n,o,i){let s=[];for(let a of n){let c=o.get(a.name);if(!c||!r.hasAnyChange(c))continue;(!i||a.name===i)&&c.hotReloadEntries.length>0&&r.writeApplyFile(e,a.srcPath,t,c.hotReloadEntries),r.writePatchFile(e,a.srcPath,t,c.patchEtsFiles,c.patchRawFiles,c.patchResFiles),s.push(a.name)}return s}static hasAnyChange(e){return e.hotReloadEntries.length>0||e.patchEtsFiles.length>0||e.patchRawFiles.length>0||e.patchResFiles.length>0||e.nativeFiles.length>0}static initEmptyForModule(e,t,n,o){let i=N.join(e,n,"build",t,"intermediates","patch","default"),s=N.join(i,"changedFileList.json");if(te.existsSync(s)||(te.mkdirSync(i,{recursive:!0}),te.writeFileSync(s,JSON.stringify({resources:{resFile:[],rawFile:[]},modifiedFiles:[]}),"utf-8")),!o)return;let a=N.join(e,n,"build",t,"intermediates","hotReload"),c=N.join(a,"changedFileList.json");te.existsSync(c)||(te.mkdirSync(a,{recursive:!0}),te.writeFileSync(c,JSON.stringify({modifiedFilesV2:[]},null,2),"utf-8"))}static loadBuildProfile(e){let t=N.join(e,"build-profile.json5");if(!te.existsSync(t))return null;try{let n=te.readFileSync(t,"utf-8");return yc.parse(n)}catch{return null}}static classifyFile(e,t,n){let o=N.extname(e).toLowerCase();if(o===".ets"||o===".ts")return{fileClass:"ets_ts",moduleSrcPath:r.findModuleByFilePath(e,t,n)?.srcPath??""};if(o===".cpp"||o===".cc"||o===".c"||o===".h"||o===".hpp")return{fileClass:"native",moduleSrcPath:r.findModuleByFilePath(e,t,n)?.srcPath??""};let i=e.replace(/\\/g,"/");return i.includes("/resources/rawfile/")?{fileClass:"raw_file",moduleSrcPath:r.findModuleByFilePath(e,t,n)?.srcPath??""}:i.includes("/resources/resfile/")?{fileClass:"res_file",moduleSrcPath:r.findModuleByFilePath(e,t,n)?.srcPath??""}:{fileClass:"unknown",moduleSrcPath:""}}static findModuleByFilePath(e,t,n){let o=N.normalize(e);for(let i of n){let s=N.normalize(N.join(t,i.srcPath)),a=s+N.sep;if(o.startsWith(a)||o===s)return i}return null}static getModuleType(e,t){let n=N.join(e,t,"src","main","module.json5");if(!te.existsSync(n))return"entry";try{let o=te.readFileSync(n,"utf-8");return yc.parse(o)?.module?.type||"entry"}catch{return"entry"}}static buildReverseDependencyMap(e,t){let n=new Map;for(let o of t){let i=r.readLocalDependencies(e,o.srcPath);for(let s of i){let a=n.get(s)||[];a.includes(o.name)||a.push(o.name),n.set(s,a)}}return n}static readLocalDependencies(e,t){let n=N.join(e,t,"oh-package.json5");if(!te.existsSync(n))return[];try{let o=te.readFileSync(n,"utf-8"),i=yc.parse(o);return r.resolveDepModuleNames(e,t,i.dependencies||{})}catch{return[]}}static resolveDepModuleNames(e,t,n){let o=r.loadBuildProfile(e);if(!o)return[];let i=o.modules,s=[];for(let a of Object.values(n)){if(typeof a!="string")continue;let c=r.tryResolveDepModule(e,t,a,i);c&&s.push(c)}return s}static tryResolveDepModule(e,t,n,o){let i=n;if(!(i.startsWith("file:")||i.startsWith(".")||i.startsWith("..")))return null;i.startsWith("file:")&&(i=i.substring(5));let a=N.resolve(e,t,i);return o.find(l=>N.resolve(e,l.srcPath)===a)?.name??null}static findTopLevelConsumers(e,t,n,o){let i=new Set,s=new Set,a=[e];for(;a.length>0;){let c=a.shift();s.has(c)||(s.add(c),r.processDependents(c,t,n,o,i,a))}return i}static processDependents(e,t,n,o,i,s){let a=t.get(e)||[];for(let c of a){let l=o.find(g=>g.name===c);if(!l)continue;let d=r.getModuleType(n,l.srcPath);(d==="entry"||d==="shared")&&i.add(c),d==="har"&&s.push(c)}}static addFileToCollector(e,t,n,o,i){let s=N.join(i,o,"src","main","resources");n==="ets_ts"?(e.hotReloadEntries.push({filePath:t,belongProjectPath:i}),e.patchEtsFiles.push(t)):n==="raw_file"?e.patchRawFiles.push({filePath:t,resourcePath:s}):n==="res_file"?e.patchResFiles.push({filePath:t,resourcePath:s}):n==="native"&&e.nativeFiles.push(t)}static writeApplyFile(e,t,n,o){let i=t.replace(/^\.\//,""),s=N.join(e,i,"build",n,"intermediates","hotReload","changedFileList.json"),a=r.readExistingApply(s),c=r.mergeApplyEntries(a,o),l=N.dirname(s);te.existsSync(l)||te.mkdirSync(l,{recursive:!0}),te.writeFileSync(s,JSON.stringify({modifiedFilesV2:c},null,2),"utf-8"),u(`[ChangedFileListWriter] Written hotReload: ${s} (${c.length} entries)`)}static readExistingApply(e){if(!te.existsSync(e))return[];try{let t=te.readFileSync(e,"utf-8");return JSON.parse(t)?.modifiedFilesV2||[]}catch{return[]}}static writePatchFile(e,t,n,o,i,s){let a=t.replace(/^\.\//,""),c=N.join(e,a,"build",n,"intermediates","patch","default","changedFileList.json"),l=r.readExistingPatch(c),d=N.join(e,a,"src","main","ets"),g=o.map(Ae=>r.resolveRelativePathForPatch(Ae,d)),v=r.mergeStrings(l.modifiedFiles,g),P=r.mergePatchResources(l.rawFile,i),ie=r.mergePatchResources(l.resFile,s),B=N.dirname(c);te.existsSync(B)||te.mkdirSync(B,{recursive:!0}),te.writeFileSync(c,JSON.stringify({resources:{resFile:ie,rawFile:P},modifiedFiles:v}),"utf-8"),u(`[ChangedFileListWriter] Written patch: ${c}`)}static readExistingPatch(e){if(!te.existsSync(e))return{modifiedFiles:[],rawFile:[],resFile:[]};try{let t=te.readFileSync(e,"utf-8"),n=JSON.parse(t);return{modifiedFiles:n?.modifiedFiles||[],rawFile:n?.resources?.rawFile||[],resFile:n?.resources?.resFile||[]}}catch{return{modifiedFiles:[],rawFile:[],resFile:[]}}}static resolveRelativePathForPatch(e,t){return N.relative(N.normalize(t),N.normalize(e)).replace(/\\/g,"/")}static mergeApplyEntries(e,t){let n=new Set,o=[];for(let i of[...e,...t])n.has(i.filePath)||(n.add(i.filePath),o.push(i));return o}static mergeStrings(e,t){let n=new Set,o=[];for(let i of[...e,...t])n.has(i)||(n.add(i),o.push(i));return o}static mergePatchResources(e,t){let n=new Set,o=[];for(let i of[...e,...t])n.has(i.filePath)||(n.add(i.filePath),o.push(i));return o}};import jw from"fs";import{randomUUID as Fw}from"crypto";import{execa as $w}from"execa";var fn=class{toolProvider;constructor(e){this.toolProvider=e}async install(e,t,n){for(let a of t)if(!jw.existsSync(a)){let c=`Signed hqf file not found: ${a}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}S.assertBundleName(n);let i=`/data/local/tmp/${Fw()}`,s=[];try{for(let a=0;a<t.length;a++){let c=`${i}/${n}_${a}.hqf`;s.push(c),await this.pushHqf(e,t[a],i,c)}return await this.executeQuickfix(e,s)}catch(a){let c=`hqf install error: ${a.message}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}finally{await this.runHdc(["-t",e,"shell","rm","-rf",i],!1)}}async pushHqf(e,t,n,o){console.log(`[Apply] Pushing hqf to device ${e}: ${t}`),await this.runHdc(["-t",e,"shell","mkdir","-p",n]);let i=await this.runHdc(["-t",e,"file","send",t,o]);if(!i.startsWith("FileTransfer finish"))throw new Error(`Failed to send hqf: ${i}`)}async executeQuickfix(e,t){console.log(`[Apply] Installing ${t.length} hqf patch(es) via quickfix...`);let n=["-t",e,"shell","bm","quickfix","-a","-f",...t,"-d"];await this.getApiVersion(e)>17&&n.push("-o");let i=await this.runHdc(n,!1);if(u(`[InstallHqf] quickfix output: ${i}`),/succe(?:ed|ss)/i.test(i))return console.log("[Apply] hqf installed successfully."),{success:!0,message:"hqf quickfix installed successfully."};let s=`hqf quickfix install failed. Device response: ${i||"(empty)"}. Please try reinstalling the application.`;return console.error(`[Apply] ${s}`),{success:!1,message:s}}async getApiVersion(e){try{let t=await this.runHdc(["-t",e,"shell","param","get","const.ohos.apiversion"],!1),n=parseInt(t.trim(),10);if(!isNaN(n))return console.log(`[InstallHqf] device API version: ${n}`),n}catch{}return 0}async runHdc(e,t=!0){let n=this.toolProvider.hdcPath;u(`[InstallHqf] Executing: ${n} ${e.join(" ")}`);try{let{stdout:o}=await $w(n,e,{env:{...process.env}});return o}catch(o){if(t)throw o;return o.stdout||""}}};var Hw="6.1.1",ji=class{constructor(e,t){this.toolProvider=e;this.projectRoot=t}async execute(e){await _r(this.projectRoot,()=>this.executeSteps(e),()=>console.log("[Apply] Waiting for another build to finish..."))}async executeSteps(e){this.toolProvider.assertIdeVersion(Hw);let t=po(e.applyFile,this.projectRoot);console.log(`[Apply] Parsed ${t.length} changed file(s)`);let n=this.writeChangeFileList(e,t);await this.stopApp(e);let o=await this.buildHqf(e,n);await this.installHqf(e,o),await this.launchApp(e),console.log("[Apply] Apply complete")}writeChangeFileList(e,t){let n=pn.writeChangedFileLists(this.projectRoot,e.productName,t);if(n.writtenModules.length===0)throw new Error("No changed files belong to a runnable module");return console.log(`[Apply] changeFileList written for: ${n.writtenModules.join(", ")}`),n.writtenModules}async buildHqf(e,t){return u(`[Apply] hvigor assembleDevHqf --no-daemon (modules=${t.join(",")})`),await Yu(this.toolProvider,this.projectRoot,t,e.productName)}async installHqf(e,t){console.log(`[Apply] Installing ${t.length} hqf(s) to ${e.targetDeviceId}`);let o=await new fn(this.toolProvider).install(e.targetDeviceId,t,e.bundleName);if(!o.success)throw new Error(`hqf install failed: ${o.message}`);console.log("[Apply] hqf installed")}async stopApp(e){let t=new Ye(this.toolProvider);try{await t.forceStopApp(e.targetDeviceId,e.bundleName),console.log("[Apply] app stopped")}catch(n){console.warn(`[Apply] stop app failed: ${n.message}`)}}async launchApp(e){let t=new Ye(this.toolProvider);try{await t.launchApp(e.targetDeviceId,e.bundleName,e.abilityName),console.log("[Apply] app launched")}catch(n){throw new Error(`[Apply] launch app failed: ${n.message}`,{cause:n})}}};import vc from"fs";import*as $ from"path";var Fi=class r{static generate(e,t,n,o){let i=At(e,t),s=$.join(e,i),a=$.join(s,"build","config"),c=r.buildConfig(e,s,n,o);vc.mkdirSync(a,{recursive:!0}),vc.writeFileSync($.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),u(`[BuildConfigManager] buildConfig.json written to ${a}`);let l=$.join(s,"build",n,"intermediates","loader_out",n,"ets");vc.mkdirSync(l,{recursive:!0})}static buildConfig(e,t,n,o){let i=$.dirname(o.nodePath)+$.sep,s=$.join(t,"build",n),a=$.join(s,"intermediates"),c=$.join(a,"loader_out",n),l=$.join(a,"res",n);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:$.join(e,"build-profile.json5"),localPropertiesPath:$.join(e,"local.properties"),appResource:$.join(l,"ResourceTable.txt"),cachePath:$.join(s,"cache",n,`${n}@CompileArkTS`,"esmodule","debug"),aceBuildJson:$.join(a,"loader",n,"loader.json"),aceModuleJsonPath:$.join(l,"module.json"),aceSoPath:$.join(c,"nativeDependencies.txt"),aceModuleRoot:$.join(t,"src","main","ets"),aceModuleBuild:$.join(c,"ets"),aceProfilePath:$.join(l,"resources","base","profile"),aceSuperVisualPath:$.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"false",mode:"hotReload",oldMapFilePath:$.join(c,"ets"),changedFileList:$.join(a,"patch",n,"changedFileList.json"),patchAbcPath:$.join(a,"patch",n,"ets"),removeChangedFileListInSdk:"true"}}}};import Zu from"fs";import*as U from"path";var $i=class r{static generate(e,t,n,o){let i=At(e,t),s=U.join(e,i),a=U.join(s,"build","config"),c=r.buildConfig(e,s,n,o);Zu.mkdirSync(a,{recursive:!0}),Zu.writeFileSync(U.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),u(`[HotReloadBuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,n,o){let i=U.dirname(o.nodePath)+U.sep,s=U.join(t,"build",n),a=U.join(s,"intermediates"),c=U.join(a,"loader_out",n),l=U.join(a,"res",n);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:U.join(e,"build-profile.json5"),localPropertiesPath:U.join(e,"local.properties"),appResource:U.join(l,"ResourceTable.txt"),cachePath:U.join(s,"cache",n,`${n}@CompileArkTS`,"esmodule","debug"),aceBuildJson:U.join(a,"loader",n,"loader.json"),aceModuleJsonPath:U.join(l,"module.json"),aceSoPath:U.join(c,"nativeDependencies.txt"),aceModuleRoot:U.join(t,"src","main","ets"),aceModuleBuild:U.join(c,"ets"),aceProfilePath:U.join(l,"resources","base","profile"),aceSuperVisualPath:U.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:U.join(c,"ets"),changedFileList:U.join(a,"hotReload","changedFileList.json"),patchAbcPath:U.join(a,"hotReload","patchAbcPath","ets"),removeChangedFileListInSdk:"true"}}}};import Qu from"crypto";import nt from"fs";import ot from"path";import ep from"os";import{io as Uw}from"socket.io-client";var Bw=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),mn=class r{projectRoot;toolProvider;cachedSocket=null;cachedDaemonPort=0;constructor(e,t){this.projectRoot=e,this.toolProvider=t}async sendHotCompile(e){await this.waitForDaemonReady();let t=this.findProjectDaemon();if(!t?.sessionId)throw new Error("No running hvigor daemon with sessionId found. Run `devecocli run --hotreload` first.");return this.sendViaSocket(t,e)}async startWatchSession(e){await this.waitForDaemonReady(),console.log(`[DaemonClient] Compiling, build with: ${JSON.stringify(e)}`);let t=this.findProjectDaemon();if(!t?.sessionId)throw new Error("No running hvigor daemon with sessionId found. Build the hap first.");let n=await this.getOrCreateSocket(t),o=this.watchLogPath;nt.mkdirSync(ot.dirname(o),{recursive:!0}),nt.writeFileSync(o,"");let i=this.createWatchLogBuffer(o);n.on("WatchLog",i.onWatchLog),n.on("WatchResult",i.onWatchResult),await this.awaitInitialBuild(n,e)}createWatchLogBuffer(e){let n=[];return{onWatchLog:s=>{let a=r.extractText(s);a.trim()&&(n.push(a.endsWith(`
41
41
  `)?a:a+`
42
- `),r.length>100&&r.shift())},onWatchResult:s=>{let a=n.extractText(s);if(!a.trim())return;let c=`[WatchResult] ${a}`;console.log(c),Qe.writeFileSync(e,[...r,c+`
43
- `].join("")),r.length=0}}}awaitInitialBuild(e,t){return new Promise((r,i)=>{let o=!1,s=this.createOutputHandler(),a=l=>{!l?.status||o||(l.status==="finish"?(o=!0,e.off("disconnect",c),e.off("Output",s),e.off("BuildStatus",a),r()):(l.status==="reject"||l.status==="close")&&(o=!0,e.off("disconnect",c),e.off("Output",s),e.off("BuildStatus",a),this.invalidateSocket(),i(new Error(l.reason||`Watch-session build ${l.status}`))))},c=l=>{o||(o=!0,i(new Error(`Socket disconnected: ${l}`)))};e.on("disconnect",c),e.on("Output",s),e.on("BuildStatus",a),e.emit("CommonBuild",this.buildStartOptions(t)),console.log("[DaemonClient] Compiling, waiting for build to finish...")})}getWatchLogPath(){return this.watchLogPath}get watchLogPath(){return et.join(this.projectRoot,".hvigor","hotreload-watch.log")}buildStartOptions(e){let t={_:["assembleHap"],daemon:!0,watch:!0,hotReloadBuild:!0,mode:"module",prop:[`module=${e.moduleSpecs.join(",")}`,`product=${e.productName}`,"debuggable=true","hotReload=true","requiredDeviceType=phone"],parallel:!0,incremental:!0,analyze:"normal",env:{DEVECO_SDK_HOME:this.toolProvider.sdkPath}};return console.log("[DaemonClient] buildStartOptions:",JSON.stringify(t,null,2)),t}disconnect(){this.invalidateSocket()}onSocketDisconnect(e){this.cachedSocket&&this.cachedSocket.on("disconnect",e)}async getOrCreateSocket(e){if(this.cachedSocket&&this.cachedDaemonPort===e.port){if(this.cachedSocket.connected)return this.cachedSocket;this.invalidateSocket()}let t=this.decryptSessionId(e.sessionId);console.log(`[DaemonClient] Socket.IO connect: ws://127.0.0.1:${e.port} (${e.state})`);let r=Gv(`ws://127.0.0.1:${e.port}`,{transports:["websocket"],path:`/${t}`});return await new Promise((i,o)=>{let s=setTimeout(()=>{o(new Error("Socket connect timeout (10s)"))},1e4);r.once("connect",()=>{clearTimeout(s),i()}),r.once("connect_error",a=>{clearTimeout(s),o(new Error(`Socket connect error: ${a.message}`))})}),this.cachedSocket=r,this.cachedDaemonPort=e.port,r}invalidateSocket(){this.cachedSocket&&(this.cachedSocket.removeAllListeners(),this.cachedSocket.disconnect(),this.cachedSocket=null,this.cachedDaemonPort=0)}async sendViaSocket(e,t){let r=await this.getOrCreateSocket(e);return new Promise((i,o)=>{let s=!1,a=Date.now(),c=this.createHotCompileHandlers(r,()=>s,d=>s=d,o),l=d=>{!d?.status||s||(d.status==="finish"?(s=!0,c.detach(),r.off("BuildStatus",l),console.log(`[Timing] abc compile: ${Date.now()-a}ms`),i(d.exitCode??0)):(d.status==="reject"||d.status==="close")&&(s=!0,c.detach(),r.off("BuildStatus",l),this.invalidateSocket(),o(new Error(`Hot compile ${d.status}: ${d.reason||"see WatchLog/Output above for compile errors"}`))))};r.on("disconnect",c.onDisconnect),r.on("Output",c.onOutput),r.on("BuildStatus",l),r.on("WatchLog",c.onWatchLog),r.on("WatchResult",c.onWatchResult),r.on("WatchCompileResult",c.onWatchCompileResult),r.on("WatchCompileData",c.onWatchCompileData),r.emit("CommonBuild",this.buildCompileOptions(t)),console.log("[DaemonClient] Compiling, waiting for hot compile to finish...")})}static extractText(e){if(e==null)return"";if(typeof e=="string")return e;if(typeof e=="object"){let t=e;if(typeof t.text=="string")return t.text;if(typeof t.msg=="string")return t.msg;if(typeof t.message=="string")return t.message}return JSON.stringify(e)}createHotCompileHandlers(e,t,r,i){let o=v=>{t()||(r(!0),g(),this.invalidateSocket(),i(new Error(`Socket disconnected: ${v}`)))},s=this.createOutputHandler(),{onWatchLog:a,onWatchResult:c,onWatchCompileResult:l,onWatchCompileData:d}=this.getDataHandler(),g=()=>{e.off("disconnect",o),e.off("Output",s),e.off("WatchLog",a),e.off("WatchResult",c),e.off("WatchCompileResult",l),e.off("WatchCompileData",d)};return{onDisconnect:o,onOutput:s,onWatchLog:a,onWatchResult:c,onWatchCompileResult:l,onWatchCompileData:d,detach:g}}getDataHandler(){let e=n.extractText;return{onWatchLog:s=>{let a=e(s);a.trim()&&process.stdout.write(a+(a.endsWith(`
42
+ `),n.length>100&&n.shift())},onWatchResult:s=>{let a=r.extractText(s);if(!a.trim())return;let c=`[WatchResult] ${a}`;console.log(c),nt.writeFileSync(e,[...n,c+`
43
+ `].join("")),n.length=0}}}awaitInitialBuild(e,t){return new Promise((n,o)=>{let i=!1,s=this.createOutputHandler(),a=l=>{!l?.status||i||(l.status==="finish"?(i=!0,e.off("disconnect",c),e.off("Output",s),e.off("BuildStatus",a),n()):(l.status==="reject"||l.status==="close")&&(i=!0,e.off("disconnect",c),e.off("Output",s),e.off("BuildStatus",a),this.invalidateSocket(),o(new Error(l.reason||`Watch-session build ${l.status}`))))},c=l=>{i||(i=!0,o(new Error(`Socket disconnected: ${l}`)))};e.on("disconnect",c),e.on("Output",s),e.on("BuildStatus",a),e.emit("CommonBuild",this.buildStartOptions(t)),console.log("[DaemonClient] Compiling, waiting for build to finish...")})}getWatchLogPath(){return this.watchLogPath}get watchLogPath(){return ot.join(this.projectRoot,".hvigor","hotreload-watch.log")}buildStartOptions(e){let t={_:["assembleHap"],daemon:!0,watch:!0,hotReloadBuild:!0,mode:"module",prop:[`module=${e.moduleSpecs.join(",")}`,`product=${e.productName}`,"debuggable=true","hotReload=true","requiredDeviceType=phone"],parallel:!0,incremental:!0,analyze:"normal",env:{DEVECO_SDK_HOME:this.toolProvider.sdkPath}};return console.log("[DaemonClient] buildStartOptions:",JSON.stringify(t,null,2)),t}disconnect(){this.invalidateSocket()}onSocketDisconnect(e){this.cachedSocket&&this.cachedSocket.on("disconnect",e)}async getOrCreateSocket(e){if(this.cachedSocket&&this.cachedDaemonPort===e.port){if(this.cachedSocket.connected)return this.cachedSocket;this.invalidateSocket()}let t=this.decryptSessionId(e.sessionId);console.log(`[DaemonClient] Socket.IO connect: ws://127.0.0.1:${e.port} (${e.state})`);let n=Uw(`ws://127.0.0.1:${e.port}`,{transports:["websocket"],path:`/${t}`});return await new Promise((o,i)=>{let s=setTimeout(()=>{i(new Error("Socket connect timeout (10s)"))},1e4);n.once("connect",()=>{clearTimeout(s),o()}),n.once("connect_error",a=>{clearTimeout(s),i(new Error(`Socket connect error: ${a.message}`))})}),this.cachedSocket=n,this.cachedDaemonPort=e.port,n}invalidateSocket(){this.cachedSocket&&(this.cachedSocket.removeAllListeners(),this.cachedSocket.disconnect(),this.cachedSocket=null,this.cachedDaemonPort=0)}async sendViaSocket(e,t){let n=await this.getOrCreateSocket(e);return new Promise((o,i)=>{let s=!1,a=Date.now(),c=this.createHotCompileHandlers(n,()=>s,d=>s=d,i),l=d=>{!d?.status||s||(d.status==="finish"?(s=!0,c.detach(),n.off("BuildStatus",l),console.log(`[Timing] abc compile: ${Date.now()-a}ms`),o(d.exitCode??0)):(d.status==="reject"||d.status==="close")&&(s=!0,c.detach(),n.off("BuildStatus",l),this.invalidateSocket(),i(new Error(`Hot compile ${d.status}: ${d.reason||"see WatchLog/Output above for compile errors"}`))))};n.on("disconnect",c.onDisconnect),n.on("Output",c.onOutput),n.on("BuildStatus",l),n.on("WatchLog",c.onWatchLog),n.on("WatchResult",c.onWatchResult),n.on("WatchCompileResult",c.onWatchCompileResult),n.on("WatchCompileData",c.onWatchCompileData),n.emit("CommonBuild",this.buildCompileOptions(t)),console.log("[DaemonClient] Compiling, waiting for hot compile to finish...")})}static extractText(e){if(e==null)return"";if(typeof e=="string")return e;if(typeof e=="object"){let t=e;if(typeof t.text=="string")return t.text;if(typeof t.msg=="string")return t.msg;if(typeof t.message=="string")return t.message}return JSON.stringify(e)}createHotCompileHandlers(e,t,n,o){let i=v=>{t()||(n(!0),g(),this.invalidateSocket(),o(new Error(`Socket disconnected: ${v}`)))},s=this.createOutputHandler(),{onWatchLog:a,onWatchResult:c,onWatchCompileResult:l,onWatchCompileData:d}=this.getDataHandler(),g=()=>{e.off("disconnect",i),e.off("Output",s),e.off("WatchLog",a),e.off("WatchResult",c),e.off("WatchCompileResult",l),e.off("WatchCompileData",d)};return{onDisconnect:i,onOutput:s,onWatchLog:a,onWatchResult:c,onWatchCompileResult:l,onWatchCompileData:d,detach:g}}getDataHandler(){let e=r.extractText;return{onWatchLog:s=>{let a=e(s);a.trim()&&process.stdout.write(a+(a.endsWith(`
44
44
  `)?"":`
45
- `))},onWatchResult:s=>{let a=e(s);a.trim()&&console.log(`[WatchResult] ${a}`)},onWatchCompileResult:s=>{let a=e(s);a.trim()&&console.log(`[WatchCompileResult] ${a}`)},onWatchCompileData:s=>{let a=e(s);a.trim()&&console.log(`[WatchCompileData] ${a}`)}}}createOutputHandler(){return e=>{let t=typeof e.text=="string"?e.text:Buffer.from(e.text).toString(e.encoding??"utf-8");t.trim()&&(e.type==="stderr"?process.stderr.write(t):process.stdout.write(t))}}buildCompileOptions(e){let t={_:["assembleDevHqf"],daemon:!0,hotCompile:!0,mode:"module",prop:[`module=${e.moduleSpecs.join(",")}`,`product=${e.productName}`,"debuggable=true","hotReload=true","requiredDeviceType=phone"],parallel:!0,incremental:!0,analyze:"normal",env:{DEVECO_SDK_HOME:this.toolProvider.sdkPath}};return console.log("[DaemonClient] buildCompileOptions:",JSON.stringify(t,null,2)),t}async waitForDaemonReady(){let r=Date.now();for(;Date.now()-r<3e4;){let i=this.findProjectDaemon();if(i&&(i.state==="half_busy"||i.state==="idle"))return;await new Promise(o=>setTimeout(o,1e3))}throw new Error("No running hvigor daemon found. Run `devecocli run --hotreload` first.")}findProjectDaemon(){let e=this.getRegistryPath();if(!Qe.existsSync(e))return null;try{let t=Qe.readFileSync(e,"utf-8"),r=JSON.parse(t),i=Object.values(r).filter(o=>o.cwdPath===this.projectRoot&&(o.state==="idle"||o.state==="half_busy"||o.state==="busy")&&this.isProcessAlive(o.pid));return i.length>0?i[i.length-1]:null}catch{return null}}decryptSessionId(e){let t=this.getMetaDir(),r=et.join(t,"fd"),i=et.join(t,"ac"),o=et.join(t,"ce"),s=this.readComponents(r),a=this.xorBuffers([s[0],s[1],s[2],Buffer.from(zv)]),c=this.readSingleFile(i),l=bu.pbkdf2Sync(Buffer.from(a).toString(),c,1e4,16,"sha256"),d=this.readSingleFile(o),g=this.aesGcmDecrypt(l,d),v=Buffer.from(e,"hex");return this.aesGcmDecrypt(g,v).toString("utf-8")}aesGcmDecrypt(e,t){let r=0,i=t.readUInt32BE(r);r+=4;let o=t.subarray(r,r+12);r+=12;let s=i-16,a=t.subarray(r,r+s);r+=s;let c=t.subarray(r,r+16),l=bu.createDecipheriv("aes-128-gcm",e,o);return l.setAuthTag(c),Buffer.concat([l.update(a),l.final()])}readComponents(e){let t=Qe.readdirSync(e).map(r=>et.join(e,r)).filter(r=>Qe.statSync(r).isDirectory()).sort();if(t.length<3)throw new Error(`Expected 3 subdirectories in ${e}, found ${t.length}`);return t.slice(0,3).map(r=>{let i=Qe.readdirSync(r);if(i.length===0)throw new Error(`No file in ${r}`);return Qe.readFileSync(et.join(r,i[0]))})}readSingleFile(e){let t=Qe.readdirSync(e).map(r=>et.join(e,r)).filter(r=>Qe.statSync(r).isFile());if(t.length===0)throw new Error(`No file in ${e}`);return Qe.readFileSync(t[0])}xorBuffers(e){let t=Buffer.alloc(e[0].length);t.set(e[0]);for(let r=1;r<e.length;r++){let i=Buffer.isBuffer(e[r])?e[r]:Buffer.from(e[r]);for(let o=0;o<t.length;o++)t[o]^=i[o]}return t}getRegistryPath(){let e=process.env.HVIGOR_USER_HOME||et.join(Su.homedir(),".hvigor");return et.join(e,"daemon","cache","daemon-sec.json")}getMetaDir(){let e=process.env.HVIGOR_USER_HOME||et.join(Su.homedir(),".hvigor");return et.join(e,"meta")}isProcessAlive(e){try{return process.kill(e,0),!0}catch{return!1}}};import Cu from"fs";import*as At from"path";import{green as Do,yellow as Xa}from"colorette";import On from"fs";import*as Mn from"path";import Jv from"json5";var Yv=2e6,Kv=1e6,Xv="hotreload",ko=class n{static generateOrUpdate(e,t,r){let i=n.readAppConfig(e),o=Mn.resolve(e,t),s=Mn.join(o,"patch.json"),a;return On.existsSync(s)?(p(`[PatchManager] patch.json found at ${s}, incrementing patchVersionCode`),a=n.readExistingPatch(s),a.app.patchVersionCode+=1):(p(`[PatchManager] patch.json not found, generating new one at ${s}`),a={app:{bundleName:i.bundleName,patchVersionCode:Yv,versionCode:i.versionCode},module:{name:r,type:Xv}}),n.writePatchJson(s,a),a}static readAppConfig(e){let t=Mn.join(e,"AppScope","app.json5");if(!On.existsSync(t))throw new Error(`AppScope/app.json5 not found at ${t}. Unable to read bundleName and versionCode.`);let r=On.readFileSync(t,"utf-8"),i=Jv.parse(r),o=i?.app?.bundleName;if(!o)throw new Error("bundleName is missing in AppScope/app.json5");let s=i?.app?.versionCode??Kv;return{bundleName:o,versionCode:s}}static readExistingPatch(e){let t=On.readFileSync(e,"utf-8"),r=JSON.parse(t);if(!r?.app?.patchVersionCode)throw new Error(`Invalid patch.json at ${e}: missing app.patchVersionCode`);return r}static writePatchJson(e,t){let r=Mn.dirname(e);On.existsSync(r)||On.mkdirSync(r,{recursive:!0});let i=JSON.stringify(t,null,2);On.writeFileSync(e,i,"utf-8"),p(`[PatchManager] patch.json written to ${e}`),p(`[PatchManager] Content: ${i}`)}};import me from"fs";import*as W from"path";import Eu from"crypto";import Zv from"json5";import{execa as Pu}from"execa";var Io=class n{static COMPONENT=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]);static DIRS=["fd","ac","ce"];static decryptPwd(e,t,r){if(t.length<32||t.length%2!==0)throw new Error(`Invalid encrypted password for ${r}`);p(`[DecipherUtil] Decrypting ${r}, encrypted length: ${t.length}`);let i=W.resolve(e,"material"),o=n.getKey(i,r),s=new Int8Array(Buffer.from(t,"hex"));return p(`[DecipherUtil] Data length: ${s.length}, key length: ${o.length}`),n.decrypt(o,s).toString("utf-8")}static getKey(e,t){let r=W.resolve(e,n.DIRS[0]),i=n.readFd(r,t),o=n.readDirBytes(W.resolve(e,n.DIRS[1]),t),s=n.getRootKey(i,o,t),a=n.readDirBytes(W.resolve(e,n.DIRS[2]),t);return new Int8Array(n.decrypt(s,a))}static getRootKey(e,t,r){if(!e.every(a=>a.length===16))throw new Error(`Signing material data error for ${r}`);let i=[...e,n.COMPONENT],o=n.xor(i[0],i[1],r);for(let a=2;a<i.length;a++)o=n.xor(o,i[a],r);let s=Eu.pbkdf2Sync(Buffer.from(o).toString(),Buffer.from(t),1e4,16,"sha256");return new Int8Array(s)}static xor(e,t,r){if(e.byteLength!==t.byteLength)throw new Error(`Signing material data error for ${r}`);let i=new Int8Array(e.byteLength);for(let o=0;o<e.byteLength;o++)i[o]=e[o]^t[o];return i}static decrypt(e,t){let r=(255&t[0])<<24|(255&t[1])<<16|(255&t[2])<<8|255&t[3],i=t.length-4-r,o=t.slice(4,4+i),s=t.slice(t.length-16),a=Eu.createDecipheriv("aes-128-gcm",Buffer.from(e),Buffer.from(o));a.setAuthTag(Buffer.from(s));let c=a.update(Buffer.from(t.subarray(4+i,t.length-16))),l=a.final();return Buffer.concat([c,l])}static readFd(e,t){let r=me.readdirSync(e).filter(o=>o!==".DS_Store");if(r.length!==3)throw new Error(`fd directory must have 3 entries for ${t}`);let i=[];for(let o of r){let s=W.join(e,o);i.push(n.readDirBytes(s,t))}return i}static readDirBytes(e,t){if(me.statSync(e).isDirectory()){let i=me.readdirSync(e).filter(o=>o!==".DS_Store");if(i.length!==1)throw new Error(`Expected exactly 1 file in ${e} for ${t}`);return new Int8Array(me.readFileSync(W.join(e,i[0])))}return new Int8Array(me.readFileSync(e))}},Ao=class{toolProvider;projectRoot;env;constructor(e,t){this.toolProvider=e,this.projectRoot=t;let i=`${W.dirname(e.javaPath)}${W.delimiter}${process.env.PATH||""}`;this.env={...process.env,PATH:i,DEVECO_SDK_HOME:e.sdkPath}}async generateAndSign(e,t,r,i,o=!1){let s=this.checkAbcExists(t);if(!s.exists)return{signedHqfPaths:[],message:s.message};let a=this.resolveHqfPaths(e,i);return await this.generateHqf(r,s.abcPath,a.unsignedHqfPath)?o?{success:!0,signedHqfPaths:[a.unsignedHqfPath],unsignedHqfPath:a.unsignedHqfPath,message:"Unsigned hqf generated (signing skipped for emulator)."}:this.signHqfDirect(a.unsignedHqfPath,a.signedHqfPath):{signedHqfPaths:[],unsignedHqfPath:a.unsignedHqfPath,message:"Failed to generate unsigned hqf."}}checkAbcExists(e){let t=W.join(e,"ets","modules.abc");if(me.existsSync(t))return{exists:!0,abcPath:t,message:"abc file exists."};let r=this.findFirstAbc(e);return r?{exists:!0,abcPath:r,message:"abc file exists."}:{exists:!1,abcPath:"",message:`abc file not found in ${e}.`}}findFirstAbc(e){if(!me.existsSync(e))return null;let t=me.readdirSync(e,{withFileTypes:!0});for(let r of t){let i=W.join(e,r.name);if(r.isDirectory()){let o=this.findFirstAbc(i);if(o)return o}else if(r.isFile()&&r.name.endsWith(".abc"))return i}return null}resolveHqfPaths(e,t){let r=vt(this.projectRoot,e),i=W.join(this.projectRoot,r,"build",t,"outputs","default");return me.existsSync(i)||me.mkdirSync(i,{recursive:!0}),{unsignedHqfPath:W.join(i,`${e}-default-unsigned.hqf`),signedHqfPath:W.join(i,`${e}-default-signed.hqf`)}}async generateHqf(e,t,r){let i=this.resolvePackingTool();if(!i)return console.error("[HotReload] app_packing_tool.jar not found in SDK."),!1;let o=W.dirname(t),s=this.toolProvider.javaPath,a=["-jar",i,"--mode","hqf","--json-path",e,"--ets-path",o,"--out-path",r,"--force","true"];p(`[GenSignHqf] Packing: ${s} ${a.join(" ")}`);try{let c=Date.now(),l=await Pu(s,a,{cwd:this.projectRoot,stdout:"pipe",stderr:"pipe",reject:!1});return console.log(`[Timing] pack (JVM#1): ${Date.now()-c}ms`),l.stdout&&console.log(l.stdout),l.stderr&&console.error(l.stderr),l.exitCode!==0?(console.error(`[HotReload] app_packing_tool failed with exit code ${l.exitCode}`),!1):me.existsSync(r)?(console.log(`[HotReload] Unsigned hqf generated: ${r}`),!0):(console.error(`[HotReload] hqf not generated at ${r}`),!1)}catch(c){return console.error(`[HotReload] Packing hqf failed: ${c.message}`),!1}}async signHqfDirect(e,t){let r=this.resolveSignConfig();if(!r)return this.signFailResult(e,"Signing prerequisites not met.");let i=this.buildSignArgs(r,e,t),o=this.toolProvider.javaPath,s=i.map((a,c)=>c>0&&["-keyPwd","-keystorePwd"].includes(i[c-1])?"******":a);p(`[GenSignHqf] Signing: ${o} ${s.join(" ")}`);try{let a=Date.now(),c=await Pu(o,i,{cwd:this.projectRoot,stdout:"pipe",stderr:"pipe",reject:!1});return console.log(`[Timing] sign (JVM#2): ${Date.now()-a}ms`),c.stdout&&console.log(c.stdout),c.stderr&&console.error(c.stderr),c.exitCode!==0?this.signFailResult(e,`hqf signing failed with exit code ${c.exitCode}`):me.existsSync(t)?(console.log(`[HotReload] Signed hqf generated: ${t}`),{success:!0,signedHqfPaths:[t],unsignedHqfPath:e,message:"hqf generated and signed successfully."}):this.signFailResult(e,`Signed hqf not generated at ${t}`)}catch(a){return this.signFailResult(e,`hqf signing failed: ${a.message}`)}}resolveSignConfig(){let e=this.resolveSignTool();if(!e)return null;let t=this.readSigningConfig("default");if(!t?.storeFile||!t?.certpath||!t?.profile)return null;let r=this.resolveMaterialDir();if(!r)return null;try{let i=Io.decryptPwd(r,t.storePassword,"storePassword"),o=Io.decryptPwd(r,t.keyPassword,"keyPassword");return{signToolPath:e,storePwd:i,keyPwd:o,signingConfig:t}}catch{return null}}buildSignArgs(e,t,r){return["-jar",e.signToolPath,"sign-app","-mode","localSign","-keyAlias",e.signingConfig.keyAlias||"debugKey","-keyPwd",e.keyPwd,"-keystoreFile",e.signingConfig.storeFile,"-keystorePwd",e.storePwd,"-appCertFile",e.signingConfig.certpath,"-profileFile",e.signingConfig.profile,"-inFile",t,"-outFile",r,"-signAlg",e.signingConfig.signAlg||"SHA256withECDSA"]}resolveMaterialDir(){let e=this.readSigningConfig("default");if(!e?.storeFile)return null;let t=W.resolve(e.storeFile,".."),r=W.join(t,"material");return me.existsSync(r)?t:null}readSigningConfig(e){let t=W.join(this.projectRoot,"build-profile.json5");if(!me.existsSync(t))return null;try{let r=me.readFileSync(t,"utf-8"),i=Zv.parse(r),s=i.app?.products?.find(a=>a.name===e)?.signingConfig;return s?i.app?.signingConfigs?.find(a=>a.name===s)?.material??null:null}catch{return null}}resolveSignTool(){let e=this.toolProvider.sdkPath,t=[W.join(e,"default","openharmony","toolchains","lib","hap-sign-tool.jar"),W.join(e,"toolchains","lib","hap-sign-tool.jar")];for(let r of t)if(me.existsSync(r))return r;return null}signFailResult(e,t){return console.error(`[HotReload] ${t}`),{success:!1,signedHqfPaths:[],unsignedHqfPath:e,message:t}}resolvePackingTool(){let e=this.toolProvider.sdkPath,t=[W.join(e,"default","openharmony","toolchains","lib","app_packing_tool.jar"),W.join(e,"toolchains","lib","app_packing_tool.jar")];for(let r of t)if(me.existsSync(r))return r;return null}};async function ku(n){let e=Date.now(),t=vt(n.projectPath,n.moduleName),r=Qv(n);console.log(Xa("[HotReload] Ensure the project source is trusted before proceeding."));let i=ew(n),o=ri(r,n.projectPath);console.log(`[HotReload] Parsed ${o.length} changed file(s) from ${n.applyFileName}`),tw(n,o),nw(n,t),await rw(n,i);let s=At.join(n.projectPath,t,"patch.json"),a=await ow(n,t,s);return await sw(n,a),console.log(Do("[HotReload] hot reload applied successfully (app not restarted).")),console.log(`[Timing] TOTAL executeHotReloadApply: ${Date.now()-e}ms`),{success:!0,message:"Hot reload applied successfully."}}function Qv(n){if(At.basename(n.applyFileName)!==n.applyFileName)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${n.applyFileName}`);return At.join(n.projectPath,".hvigor",n.applyFileName)}function ew(n){let{projectPath:e,toolProvider:t}=n,r=new sr(e,t);if(!r.findProjectDaemon())throw new Error("No running hvigor daemon found. Run `devecocli run --hotreload` first to start the daemon.");return r}function tw(n,e){let t=ir.writeChangedFileLists(n.projectPath,n.productName,e,n.moduleName);if(t.writtenModules.length===0)throw new Error("No changed files belong to a runnable module");console.log(Do(`[HotReload] changedFileList written for: ${t.writtenModules.join(", ")}`)),t.skippedFiles.length>0&&console.warn(Xa(`[HotReload] skipped ${t.skippedFiles.length} file(s)`))}function nw(n,e){let t=ko.generateOrUpdate(n.projectPath,e,n.moduleName);console.log(Do(`[HotReload] patch.json ready (patchVersionCode=${t.app.patchVersionCode})`))}async function rw(n,e){let t=Date.now(),r=e.getWatchLogPath();try{console.log("[HotReload] Daemon hot compile (socket short connection)...");let i=await e.sendHotCompile({moduleSpecs:n.moduleSpecs,productName:n.productName});if(i!==0){let o=iw(r);throw new Error(`Daemon hot compile exited with code ${i}`+(o?`
45
+ `))},onWatchResult:s=>{let a=e(s);a.trim()&&console.log(`[WatchResult] ${a}`)},onWatchCompileResult:s=>{let a=e(s);a.trim()&&console.log(`[WatchCompileResult] ${a}`)},onWatchCompileData:s=>{let a=e(s);a.trim()&&console.log(`[WatchCompileData] ${a}`)}}}createOutputHandler(){return e=>{let t=typeof e.text=="string"?e.text:Buffer.from(e.text).toString(e.encoding??"utf-8");t.trim()&&(e.type==="stderr"?process.stderr.write(t):process.stdout.write(t))}}buildCompileOptions(e){let t={_:["assembleDevHqf"],daemon:!0,hotCompile:!0,mode:"module",prop:[`module=${e.moduleSpecs.join(",")}`,`product=${e.productName}`,"debuggable=true","hotReload=true","requiredDeviceType=phone"],parallel:!0,incremental:!0,analyze:"normal",env:{DEVECO_SDK_HOME:this.toolProvider.sdkPath}};return console.log("[DaemonClient] buildCompileOptions:",JSON.stringify(t,null,2)),t}async waitForDaemonReady(){let n=Date.now();for(;Date.now()-n<3e4;){let o=this.findProjectDaemon();if(o&&(o.state==="half_busy"||o.state==="idle"))return;await new Promise(i=>setTimeout(i,1e3))}throw new Error("No running hvigor daemon found. Run `devecocli run --hotreload` first.")}findProjectDaemon(){let e=this.getRegistryPath();if(!nt.existsSync(e))return null;try{let t=nt.readFileSync(e,"utf-8"),n=JSON.parse(t),o=Object.values(n).filter(i=>i.cwdPath===this.projectRoot&&(i.state==="idle"||i.state==="half_busy"||i.state==="busy")&&this.isProcessAlive(i.pid));return o.length>0?o[o.length-1]:null}catch{return null}}decryptSessionId(e){let t=this.getMetaDir(),n=ot.join(t,"fd"),o=ot.join(t,"ac"),i=ot.join(t,"ce"),s=this.readComponents(n),a=this.xorBuffers([s[0],s[1],s[2],Buffer.from(Bw)]),c=this.readSingleFile(o),l=Qu.pbkdf2Sync(Buffer.from(a).toString(),c,1e4,16,"sha256"),d=this.readSingleFile(i),g=this.aesGcmDecrypt(l,d),v=Buffer.from(e,"hex");return this.aesGcmDecrypt(g,v).toString("utf-8")}aesGcmDecrypt(e,t){let n=0,o=t.readUInt32BE(n);n+=4;let i=t.subarray(n,n+12);n+=12;let s=o-16,a=t.subarray(n,n+s);n+=s;let c=t.subarray(n,n+16),l=Qu.createDecipheriv("aes-128-gcm",e,i);return l.setAuthTag(c),Buffer.concat([l.update(a),l.final()])}readComponents(e){let t=nt.readdirSync(e).map(n=>ot.join(e,n)).filter(n=>nt.statSync(n).isDirectory()).sort();if(t.length<3)throw new Error(`Expected 3 subdirectories in ${e}, found ${t.length}`);return t.slice(0,3).map(n=>{let o=nt.readdirSync(n);if(o.length===0)throw new Error(`No file in ${n}`);return nt.readFileSync(ot.join(n,o[0]))})}readSingleFile(e){let t=nt.readdirSync(e).map(n=>ot.join(e,n)).filter(n=>nt.statSync(n).isFile());if(t.length===0)throw new Error(`No file in ${e}`);return nt.readFileSync(t[0])}xorBuffers(e){let t=Buffer.alloc(e[0].length);t.set(e[0]);for(let n=1;n<e.length;n++){let o=Buffer.isBuffer(e[n])?e[n]:Buffer.from(e[n]);for(let i=0;i<t.length;i++)t[i]^=o[i]}return t}getRegistryPath(){let e=process.env.HVIGOR_USER_HOME||ot.join(ep.homedir(),".hvigor");return ot.join(e,"daemon","cache","daemon-sec.json")}getMetaDir(){let e=process.env.HVIGOR_USER_HOME||ot.join(ep.homedir(),".hvigor");return ot.join(e,"meta")}isProcessAlive(e){try{return process.kill(e,0),!0}catch{return!1}}};import np from"fs";import*as Mt from"path";import{green as Wi,yellow as wc}from"colorette";import $r from"fs";import*as Hr from"path";import Ww from"json5";var Vw=2e6,Gw=1e6,qw="hotreload",Hi=class r{static generateOrUpdate(e,t,n){let o=r.readAppConfig(e),i=Hr.resolve(e,t),s=Hr.join(i,"patch.json"),a;return $r.existsSync(s)?(u(`[PatchManager] patch.json found at ${s}, incrementing patchVersionCode`),a=r.readExistingPatch(s),a.app.patchVersionCode+=1):(u(`[PatchManager] patch.json not found, generating new one at ${s}`),a={app:{bundleName:o.bundleName,patchVersionCode:Vw,versionCode:o.versionCode},module:{name:n,type:qw}}),r.writePatchJson(s,a),a}static readAppConfig(e){let t=Hr.join(e,"AppScope","app.json5");if(!$r.existsSync(t))throw new Error(`AppScope/app.json5 not found at ${t}. Unable to read bundleName and versionCode.`);let n=$r.readFileSync(t,"utf-8"),o=Ww.parse(n),i=o?.app?.bundleName;if(!i)throw new Error("bundleName is missing in AppScope/app.json5");let s=o?.app?.versionCode??Gw;return{bundleName:i,versionCode:s}}static readExistingPatch(e){let t=$r.readFileSync(e,"utf-8"),n=JSON.parse(t);if(!n?.app?.patchVersionCode)throw new Error(`Invalid patch.json at ${e}: missing app.patchVersionCode`);return n}static writePatchJson(e,t){let n=Hr.dirname(e);$r.existsSync(n)||$r.mkdirSync(n,{recursive:!0});let o=JSON.stringify(t,null,2);$r.writeFileSync(e,o,"utf-8"),u(`[PatchManager] patch.json written to ${e}`),u(`[PatchManager] Content: ${o}`)}};import ye from"fs";import*as V from"path";import tp from"crypto";import zw from"json5";import{execa as rp}from"execa";var Ui=class r{static COMPONENT=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]);static DIRS=["fd","ac","ce"];static decryptPwd(e,t,n){if(t.length<32||t.length%2!==0)throw new Error(`Invalid encrypted password for ${n}`);u(`[DecipherUtil] Decrypting ${n}, encrypted length: ${t.length}`);let o=V.resolve(e,"material"),i=r.getKey(o,n),s=new Int8Array(Buffer.from(t,"hex"));return u(`[DecipherUtil] Data length: ${s.length}, key length: ${i.length}`),r.decrypt(i,s).toString("utf-8")}static getKey(e,t){let n=V.resolve(e,r.DIRS[0]),o=r.readFd(n,t),i=r.readDirBytes(V.resolve(e,r.DIRS[1]),t),s=r.getRootKey(o,i,t),a=r.readDirBytes(V.resolve(e,r.DIRS[2]),t);return new Int8Array(r.decrypt(s,a))}static getRootKey(e,t,n){if(!e.every(a=>a.length===16))throw new Error(`Signing material data error for ${n}`);let o=[...e,r.COMPONENT],i=r.xor(o[0],o[1],n);for(let a=2;a<o.length;a++)i=r.xor(i,o[a],n);let s=tp.pbkdf2Sync(Buffer.from(i).toString(),Buffer.from(t),1e4,16,"sha256");return new Int8Array(s)}static xor(e,t,n){if(e.byteLength!==t.byteLength)throw new Error(`Signing material data error for ${n}`);let o=new Int8Array(e.byteLength);for(let i=0;i<e.byteLength;i++)o[i]=e[i]^t[i];return o}static decrypt(e,t){let n=(255&t[0])<<24|(255&t[1])<<16|(255&t[2])<<8|255&t[3],o=t.length-4-n,i=t.slice(4,4+o),s=t.slice(t.length-16),a=tp.createDecipheriv("aes-128-gcm",Buffer.from(e),Buffer.from(i));a.setAuthTag(Buffer.from(s));let c=a.update(Buffer.from(t.subarray(4+o,t.length-16))),l=a.final();return Buffer.concat([c,l])}static readFd(e,t){let n=ye.readdirSync(e).filter(i=>i!==".DS_Store");if(n.length!==3)throw new Error(`fd directory must have 3 entries for ${t}`);let o=[];for(let i of n){let s=V.join(e,i);o.push(r.readDirBytes(s,t))}return o}static readDirBytes(e,t){if(ye.statSync(e).isDirectory()){let o=ye.readdirSync(e).filter(i=>i!==".DS_Store");if(o.length!==1)throw new Error(`Expected exactly 1 file in ${e} for ${t}`);return new Int8Array(ye.readFileSync(V.join(e,o[0])))}return new Int8Array(ye.readFileSync(e))}},Bi=class{toolProvider;projectRoot;env;constructor(e,t){this.toolProvider=e,this.projectRoot=t;let o=`${V.dirname(e.javaPath)}${V.delimiter}${process.env.PATH||""}`;this.env={...process.env,PATH:o,DEVECO_SDK_HOME:e.sdkPath}}async generateAndSign(e,t,n,o,i=!1){let s=this.checkAbcExists(t);if(!s.exists)return{signedHqfPaths:[],message:s.message};let a=this.resolveHqfPaths(e,o);return await this.generateHqf(n,s.abcPath,a.unsignedHqfPath)?i?{success:!0,signedHqfPaths:[a.unsignedHqfPath],unsignedHqfPath:a.unsignedHqfPath,message:"Unsigned hqf generated (signing skipped for emulator)."}:this.signHqfDirect(a.unsignedHqfPath,a.signedHqfPath):{signedHqfPaths:[],unsignedHqfPath:a.unsignedHqfPath,message:"Failed to generate unsigned hqf."}}checkAbcExists(e){let t=V.join(e,"ets","modules.abc");if(ye.existsSync(t))return{exists:!0,abcPath:t,message:"abc file exists."};let n=this.findFirstAbc(e);return n?{exists:!0,abcPath:n,message:"abc file exists."}:{exists:!1,abcPath:"",message:`abc file not found in ${e}.`}}findFirstAbc(e){if(!ye.existsSync(e))return null;let t=ye.readdirSync(e,{withFileTypes:!0});for(let n of t){let o=V.join(e,n.name);if(n.isDirectory()){let i=this.findFirstAbc(o);if(i)return i}else if(n.isFile()&&n.name.endsWith(".abc"))return o}return null}resolveHqfPaths(e,t){let n=At(this.projectRoot,e),o=V.join(this.projectRoot,n,"build",t,"outputs","default");return ye.existsSync(o)||ye.mkdirSync(o,{recursive:!0}),{unsignedHqfPath:V.join(o,`${e}-default-unsigned.hqf`),signedHqfPath:V.join(o,`${e}-default-signed.hqf`)}}async generateHqf(e,t,n){let o=this.resolvePackingTool();if(!o)return console.error("[HotReload] app_packing_tool.jar not found in SDK."),!1;let i=V.dirname(t),s=this.toolProvider.javaPath,a=["-jar",o,"--mode","hqf","--json-path",e,"--ets-path",i,"--out-path",n,"--force","true"];u(`[GenSignHqf] Packing: ${s} ${a.join(" ")}`);try{let c=Date.now(),l=await rp(s,a,{cwd:this.projectRoot,stdout:"pipe",stderr:"pipe",reject:!1});return console.log(`[Timing] pack (JVM#1): ${Date.now()-c}ms`),l.stdout&&console.log(l.stdout),l.stderr&&console.error(l.stderr),l.exitCode!==0?(console.error(`[HotReload] app_packing_tool failed with exit code ${l.exitCode}`),!1):ye.existsSync(n)?(console.log(`[HotReload] Unsigned hqf generated: ${n}`),!0):(console.error(`[HotReload] hqf not generated at ${n}`),!1)}catch(c){return console.error(`[HotReload] Packing hqf failed: ${c.message}`),!1}}async signHqfDirect(e,t){let n=this.resolveSignConfig();if(!n)return this.signFailResult(e,"Signing prerequisites not met.");let o=this.buildSignArgs(n,e,t),i=this.toolProvider.javaPath,s=o.map((a,c)=>c>0&&["-keyPwd","-keystorePwd"].includes(o[c-1])?"******":a);u(`[GenSignHqf] Signing: ${i} ${s.join(" ")}`);try{let a=Date.now(),c=await rp(i,o,{cwd:this.projectRoot,stdout:"pipe",stderr:"pipe",reject:!1});return console.log(`[Timing] sign (JVM#2): ${Date.now()-a}ms`),c.stdout&&console.log(c.stdout),c.stderr&&console.error(c.stderr),c.exitCode!==0?this.signFailResult(e,`hqf signing failed with exit code ${c.exitCode}`):ye.existsSync(t)?(console.log(`[HotReload] Signed hqf generated: ${t}`),{success:!0,signedHqfPaths:[t],unsignedHqfPath:e,message:"hqf generated and signed successfully."}):this.signFailResult(e,`Signed hqf not generated at ${t}`)}catch(a){return this.signFailResult(e,`hqf signing failed: ${a.message}`)}}resolveSignConfig(){let e=this.resolveSignTool();if(!e)return null;let t=this.readSigningConfig("default");if(!t?.storeFile||!t?.certpath||!t?.profile)return null;let n=this.resolveMaterialDir();if(!n)return null;try{let o=Ui.decryptPwd(n,t.storePassword,"storePassword"),i=Ui.decryptPwd(n,t.keyPassword,"keyPassword");return{signToolPath:e,storePwd:o,keyPwd:i,signingConfig:t}}catch{return null}}buildSignArgs(e,t,n){return["-jar",e.signToolPath,"sign-app","-mode","localSign","-keyAlias",e.signingConfig.keyAlias||"debugKey","-keyPwd",e.keyPwd,"-keystoreFile",e.signingConfig.storeFile,"-keystorePwd",e.storePwd,"-appCertFile",e.signingConfig.certpath,"-profileFile",e.signingConfig.profile,"-inFile",t,"-outFile",n,"-signAlg",e.signingConfig.signAlg||"SHA256withECDSA"]}resolveMaterialDir(){let e=this.readSigningConfig("default");if(!e?.storeFile)return null;let t=V.resolve(e.storeFile,".."),n=V.join(t,"material");return ye.existsSync(n)?t:null}readSigningConfig(e){let t=V.join(this.projectRoot,"build-profile.json5");if(!ye.existsSync(t))return null;try{let n=ye.readFileSync(t,"utf-8"),o=zw.parse(n),s=o.app?.products?.find(a=>a.name===e)?.signingConfig;return s?o.app?.signingConfigs?.find(a=>a.name===s)?.material??null:null}catch{return null}}resolveSignTool(){let e=this.toolProvider.sdkPath,t=[V.join(e,"default","openharmony","toolchains","lib","hap-sign-tool.jar"),V.join(e,"toolchains","lib","hap-sign-tool.jar")];for(let n of t)if(ye.existsSync(n))return n;return null}signFailResult(e,t){return console.error(`[HotReload] ${t}`),{success:!1,signedHqfPaths:[],unsignedHqfPath:e,message:t}}resolvePackingTool(){let e=this.toolProvider.sdkPath,t=[V.join(e,"default","openharmony","toolchains","lib","app_packing_tool.jar"),V.join(e,"toolchains","lib","app_packing_tool.jar")];for(let n of t)if(ye.existsSync(n))return n;return null}};async function op(r){let e=Date.now(),t=At(r.projectPath,r.moduleName),n=Jw(r);console.log(wc("[HotReload] Ensure the project source is trusted before proceeding."));let o=Yw(r),i=po(n,r.projectPath);console.log(`[HotReload] Parsed ${i.length} changed file(s) from ${r.applyFileName}`),Kw(r,i),Xw(r,t),await Zw(r,o);let s=Mt.join(r.projectPath,t,"patch.json"),a=await eb(r,t,s);return await tb(r,a),console.log(Wi("[HotReload] hot reload applied successfully (app not restarted).")),console.log(`[Timing] TOTAL executeHotReloadApply: ${Date.now()-e}ms`),{success:!0,message:"Hot reload applied successfully."}}function Jw(r){if(Mt.basename(r.applyFileName)!==r.applyFileName)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${r.applyFileName}`);return Mt.join(r.projectPath,".hvigor",r.applyFileName)}function Yw(r){let{projectPath:e,toolProvider:t}=r,n=new mn(e,t);if(!n.findProjectDaemon())throw new Error("No running hvigor daemon found. Run `devecocli run --hotreload` first to start the daemon.");return n}function Kw(r,e){let t=pn.writeChangedFileLists(r.projectPath,r.productName,e,r.moduleName);if(t.writtenModules.length===0)throw new Error("No changed files belong to a runnable module");console.log(Wi(`[HotReload] changedFileList written for: ${t.writtenModules.join(", ")}`)),t.skippedFiles.length>0&&console.warn(wc(`[HotReload] skipped ${t.skippedFiles.length} file(s)`))}function Xw(r,e){let t=Hi.generateOrUpdate(r.projectPath,e,r.moduleName);console.log(Wi(`[HotReload] patch.json ready (patchVersionCode=${t.app.patchVersionCode})`))}async function Zw(r,e){let t=Date.now(),n=e.getWatchLogPath();try{console.log("[HotReload] Daemon hot compile (socket short connection)...");let o=await e.sendHotCompile({moduleSpecs:r.moduleSpecs,productName:r.productName});if(o!==0){let i=Qw(n);throw new Error(`Daemon hot compile exited with code ${o}`+(i?`
46
46
  --- compile output (from watch session) ---
47
- ${o}`:""))}}finally{e.disconnect()}console.log(`[Timing] daemon hot compile: ${Date.now()-t}ms`)}function iw(n){try{return Cu.existsSync(n)?Cu.readFileSync(n,"utf8").split(/\r?\n/).filter(t=>t.trim()).slice(-40).join(`
48
- `):""}catch{return""}}async function ow(n,e,t){let r=At.join(n.projectPath,e,"build",n.productName,"intermediates"),i=[At.join(r,"hotReload","patchAbcPath"),At.join(r,"patch","default")],o=Date.now(),s=new Ao(n.toolProvider,n.projectPath),a=n.targetDeviceId.includes("127.0.0.1")||n.targetDeviceId.includes("localhost"),c=null;for(let l of i){let d=await s.generateAndSign(n.moduleName,l,t,n.productName,a);if(d.success&&d.signedHqfPaths.length>0){c=d;break}c=d}if(console.log(`[Timing] gen+sign hqf: ${Date.now()-o}ms`),!c?.success||c.signedHqfPaths.length===0)throw new Error(`hqf generation/signing failed (no abc found in any candidate). Last: ${c?.message??"unknown"}`);return c.signedHqfPaths}async function sw(n,e){let t=Date.now(),i=await new or(n.toolProvider).install(n.targetDeviceId,e,n.bundleName);if(console.log(`[Timing] quickfix install: ${Date.now()-t}ms`),!i.success)throw new Error(`hqf install failed: ${i.message}`)}function Za(n,e){if(!n||n.length===0)throw new Error(`Hot reload requires --module <name> (a single target module; har deps are fine). Got: '${e??""}' (no --module passed).`)}function Iu(n,e,t){let r=At.join(n.rootDir,".hvigor",t),i;try{i=ri(r,n.rootDir)}catch{return}let o=new Set;for(let s of i){let a=n.findOwningModule(s);if(!a||a===e)continue;let c=n.getModuleType(a);(c==="feature"||c==="shared")&&o.add(`${a} (${c})`)}o.size>0&&console.warn(Xa(`[HotReload] Changed files belong to feature/hsp dependency module(s): ${[...o].join(", ")}. These are NOT hot-reloadable \u2014 run \`devecocli run\` (full redeploy) for them. Only the target module (+ har deps) will be hot-reloaded this time.`))}function Au(n,e,t,r,i){let o=new Set,s=n.collectNonHarDependentModuleList(e);for(let a of s)o.add(n.findArtifactPath(a,t,r,i));return o.add(n.findArtifactPath(e,t,r,i)),[...o]}async function Du(n,e){await new Be(n,e.rootDir).stopDaemon(),console.log(Do("Hvigor daemon stopped."))}function Qa(n){let e=n.indexOf("@"),t=e!==-1?n.substring(0,e):n,r=e!==-1?n.substring(e+1):"default";return{moduleName:t,targetName:r}}async function To(n,e){let t=await n.listDevices();if(t.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");if(!e&&t.length>1){let i=await n.listDevicesWithName();throw new w("Multiple devices found. Specify a target device using `--device <Name>` or `--device <ID>`.\nAvailable devices:\n"+i.map(o=>` - ${o.name} (${o.serial})`).join(`
49
- `),"Multiple devices found.")}let r=await n.getDeviceInfo(t,e);if(!r)throw new Error("No active devices found.");if(!e){let i=await n.getDeviceName(r.serial);console.log(`Auto-selected device: ${i} (${r.serial})`)}return r.serial}function ec(n,e){if(e&&e.length>0)return e;let t=n.profile.modules.filter(r=>{let i=n.getModuleType(r.name);return i==="entry"||i==="feature"||i==="shared"});if(t.length===1){let r=t[0].name;return console.log(`Auto-selected module: ${r}`),[r]}throw new w(`Specify module(s) using --module <name> [<name>...].
47
+ ${i}`:""))}}finally{e.disconnect()}console.log(`[Timing] daemon hot compile: ${Date.now()-t}ms`)}function Qw(r){try{return np.existsSync(r)?np.readFileSync(r,"utf8").split(/\r?\n/).filter(t=>t.trim()).slice(-40).join(`
48
+ `):""}catch{return""}}async function eb(r,e,t){let n=Mt.join(r.projectPath,e,"build",r.productName,"intermediates"),o=[Mt.join(n,"hotReload","patchAbcPath"),Mt.join(n,"patch","default")],i=Date.now(),s=new Bi(r.toolProvider,r.projectPath),a=r.targetDeviceId.includes("127.0.0.1")||r.targetDeviceId.includes("localhost"),c=null;for(let l of o){let d=await s.generateAndSign(r.moduleName,l,t,r.productName,a);if(d.success&&d.signedHqfPaths.length>0){c=d;break}c=d}if(console.log(`[Timing] gen+sign hqf: ${Date.now()-i}ms`),!c?.success||c.signedHqfPaths.length===0)throw new Error(`hqf generation/signing failed (no abc found in any candidate). Last: ${c?.message??"unknown"}`);return c.signedHqfPaths}async function tb(r,e){let t=Date.now(),o=await new fn(r.toolProvider).install(r.targetDeviceId,e,r.bundleName);if(console.log(`[Timing] quickfix install: ${Date.now()-t}ms`),!o.success)throw new Error(`hqf install failed: ${o.message}`)}function bc(r,e){if(!r||r.length===0)throw new Error(`Hot reload requires --module <name> (a single target module; har deps are fine). Got: '${e??""}' (no --module passed).`)}function ip(r,e,t){let n=Mt.join(r.rootDir,".hvigor",t),o;try{o=po(n,r.rootDir)}catch{return}let i=new Set;for(let s of o){let a=r.findOwningModule(s);if(!a||a===e)continue;let c=r.getModuleType(a);(c==="feature"||c==="shared")&&i.add(`${a} (${c})`)}i.size>0&&console.warn(wc(`[HotReload] Changed files belong to feature/hsp dependency module(s): ${[...i].join(", ")}. These are NOT hot-reloadable \u2014 run \`devecocli run\` (full redeploy) for them. Only the target module (+ har deps) will be hot-reloaded this time.`))}function sp(r,e,t,n,o){let i=new Set,s=r.collectNonHarDependentModuleList(e);for(let a of s)i.add(r.findArtifactPath(a,t,n,o));return i.add(r.findArtifactPath(e,t,n,o)),[...i]}async function ap(r,e){await new ze(r,e.rootDir).stopDaemon(),console.log(Wi("Hvigor daemon stopped."))}var Vi=class{formatPass(e){return e.evidence.processCheckSkipped?"Smoke: PASS (process check unavailable, smoke skipped)":e.evidence.phashBlank===null?"Smoke: PASS (screenshot unavailable, blank check skipped)":"Smoke: PASS"}formatFailure(e,t){let{status:n,reason:o,evidence:i}=e,s=[`Smoke: ${n}`,`${o} (bundle=${t.bundleName}, device=${t.targetDeviceId}).`];return n==="FAIL_CRASH"&&i.crashLogPath&&s.push(`crash_log: ${i.crashLogPath}`),n==="FAIL_BLANK"&&i.screenshotPath&&s.push(`screenshot: ${i.screenshotPath}`),s.join(`
49
+ `)}toTraceError(e,t){return new w(this.formatFailure(e,t),e.status)}};import Ki from"fs";import Lb from"path";import{yellow as vo}from"colorette";import{cyan as Gi}from"colorette";function Ur(r,e){if(r.exitCode===0)return null;let t=r.stderr||r.stdout,n=nr(t);return n==="transient"?new Error(`${e}: Device communication channel unavailable. Retry in a few seconds.`):n==="fatal"?new Error(`${e}: ${t.trim()}`):null}var Sc=[800,1500,2500];function nb(r){return new Promise(e=>setTimeout(e,r))}var or=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=de.from(e)}createFollowLineHandler(){return(e,t)=>{if(t==="stderr"){for(let n of e)console.error(n);return}for(let n of e)console.log(n)}}findDeviceByArg(e,t){return e.find(n=>n.serial===t||n.name===t)}formatConnectedDeviceList(e){return e.map(t=>` - ${t.name} (${t.serial})`).join(`
50
+ `)}async loadConnectedDevicesByName(){return this.getConnectedDevices()}async selectDevice(e){let t=await this.getConnectedDeviceSerials();if(!e&&t.length===1){let o=t[0];return u(Gi(`Using device serial: ${o}`)),o}if(e&&t.includes(e))return u(Gi(`Using device serial: ${e}`)),e;let n=await this.loadConnectedDevicesByName();if(e){let o=this.findDeviceByArg(n,e);if(o)return u(Gi(`Using device: ${o.name} (${o.serial})`)),o.serial;let i=this.formatConnectedDeviceList(n);throw new w(`Device '${e}' not found.
51
+ Available devices:
52
+ ${i}`,"Device not found.")}if(n.length===1){let o=n[0];return u(Gi(`Using device: ${o.name} (${o.serial})`)),o.serial}throw new w("Multiple devices found. Specify a target device using `--device <name>` or `--device <serial>`.\nAvailable devices:\n"+this.formatConnectedDeviceList(n),"Multiple devices found.")}async getConnectedDeviceSerials(){let e=await this.deviceManager.listDevices();if(e.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");return e.map(t=>t.serial)}async getConnectedDevices(){let e=await this.deviceManager.listDevicesWithName();if(e.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");return e}async getPidForBundle(e,t,n){u(`Retrieving PID for bundle ${n}`),S.assertBundleNameStrict(n);let o=await ee(e,["-t",t,"shell","pidof",n]),i=Ur(o,"Failed to look up PID");if(i)throw i;if(o.exitCode===0&&o.stdout.trim()){let s=o.stdout.trim(),a=s.split(/\s+/)[0]||s;return u(`Found PID for ${n}: ${a}`),a}return u(`No PID found for bundle: ${n}`),null}async resizeHilogBuffer(e,t,n){if(u(`Setting hilog buffer size to: ${n}`),!/^\d+[KMG]?$/.test(n))throw new Error(`Invalid hilog buffer size: ${JSON.stringify(n)}. Expected format: <number>[K|M|G], e.g. "4M", "16M"`);let o=await ee(e,["-t",t,"shell","hilog","-G",n]),i=Ur(o,"Failed to resize hilog buffer");if(i)throw i;o.exitCode!==0&&console.error(`Failed to resize hilog buffer: ${o.stderr||o.stdout}`)}buildHilogCommand(e,t,n,o){let i=this.buildHilogShellCommand(n,o);return[e,["-t",t,"shell",i]]}buildHilogShellCommand(e,t){let n=["hilog"];return e.isFollow||n.push("-x"),e.tag&&(S.assertHilogToken(e.tag,"tag"),n.push("-T",e.tag)),e.level&&(S.assertHilogLevel(e.level),n.push("-L",e.level)),e.domain&&(S.assertHilogToken(e.domain,"domain"),n.push("-D",e.domain)),t&&n.push("-P",t),e.keyword&&(S.assertHilogKeyword(e.keyword),n.push("-e",S.quotePosixShellArg(e.keyword))),n.join(" ")}async followHilog(e,t,n,o,i){let a=await Uu(e,t,{onData:n,onError:o,onClose:i});return{stdout:a.stdout,stderr:a.stderr,exitCode:a.exitCode}}async runHilogWithSpawnRetry(e,t,n,o,i){let s=1+Sc.length,a={stdout:"",stderr:"",exitCode:-1};for(let c=0;c<s;c++){if(a=await this.followHilog(e,t,n,o,i),a.exitCode===0||nr(a.stderr)!=="transient"||c>=s-1)return a;u(`hdc transient failure on \`${t.join(" ")}\`: retrying in ${Sc[c]}ms`),await nb(Sc[c])}return a}async runHilogStreamingCollect(e,t,n){return this.runHilogWithSpawnRetry(e,t,()=>{},o=>{u(`Callback triggered when an error occurs during ${n}: ${o.message}`)},()=>{})}async printTailSnapshotIfNeeded(e,t,n,o){if(!n.tail&&!n.fromSeconds&&!n.toSeconds)return;let i={...n,isFollow:!1},[s,a]=this.buildHilogCommand(e,t,i,o);u(`Ready to run hilog snapshot command: ${s} ${a.join(" ")}`);let c=await this.runHilogStreamingCollect(s,a,"a hilog snapshot streaming read"),l=Ur(c,"Failed to get hilog");if(l)throw l;if(c.exitCode!==0&&c.stderr)throw new Error(`Failed to get hilog: ${c.stderr}`);let d=S.filterLogsByRelativeWindow(c.stdout||c.stderr,n.fromSeconds,n.toSeconds);d=S.getLastLines(d,n.tail),d.trim()&&console.log(d)}async getHilogOnce(e,t,n,o){let[i,s]=this.buildHilogCommand(e,t,n,o);u(`Ready to run hilog command: ${i} ${s.join(" ")}`);let a=await this.runHilogStreamingCollect(i,s,"a single hilog streaming read"),c=Ur(a,"Failed to get hilog");if(c)throw c;if(a.exitCode!==0&&a.stderr)throw new Error(`Failed to get hilog: ${a.stderr}`);let l=a.stdout||a.stderr,d=S.filterLogsByRelativeWindow(l,n.fromSeconds,n.toSeconds);return d=S.getLastLines(d,n.tail),d}async runHilogFollow(e,t,n,o){try{await this.printTailSnapshotIfNeeded(e,t,n,o)}catch(l){console.error(`Warning: Failed to fetch log snapshot, continuing with live stream: ${l.message}`)}let[i,s]=this.buildHilogCommand(e,t,n,o);u(`Ready to run hilog command which contain \`follow\` and \`tail\`: ${i} ${s.join(" ")}`);let a=await this.runHilogWithSpawnRetry(i,s,this.createFollowLineHandler(),l=>{u(`Spawn error during hilog follow: ${l.message}`)},()=>{}),c=Ur(a,"Failed to follow hilog");if(c)throw c;if(a.exitCode!==0&&a.stderr)throw new Error(`Failed to follow hilog: ${a.stderr}`);return""}async getHilog(e,t){let n=this.toolProvider.hdcPath,o=t.bundleName?await this.getPidForBundle(n,e,t.bundleName):void 0;if(t.bundleName&&!o)throw new w(`No running process found for bundle '${t.bundleName}'. Ensure the app is launched on the device before fetching logs.`,"No running process found for bundle.");return t.logSize&&await this.resizeHilogBuffer(n,e,t.logSize),t.isFollow?await this.runHilogFollow(n,e,t,o||""):await this.getHilogOnce(n,e,t,o||"")}async getLatestCrashLog(e,t){u(`Fetching crash logs from device: ${e}`);let n=this.toolProvider.hdcPath,o=await this.listCrashLogs(n,e,t);if(o.length===0)return;let s=[...o].sort((c,l)=>{let d=c.split("-").pop()||"";return(l.split("-").pop()||"").localeCompare(d)})[0],a=await this.fetchCrashLogContent(n,e,s);return`--- Latest Crash Log File: ${s} ---${a}`}async getCrashLog(e,t){let n=await this.getLatestCrashLog(e,t);return n!==void 0?n:t?`No crash logs found for bundle '${t}'.`:"No crash logs found."}async listCrashLogs(e,t,n){let o=["-t",t,"shell","hidumper","-s","1201","-a","-p Faultlogger"];u(`Running command: ${e} ${o.join(" ")}`);let i=await this.runHilogStreamingCollect(e,o,"a crash log list streaming read"),s=Ur(i,"Failed to list crash logs");if(s)throw s;if(i.exitCode!==0)throw new Error(`Failed to list crash logs: ${i.stderr||i.stdout}`);return u(`Crash logs list output:
53
+ ${i.stdout}`),this.parseCrashLogFilenames(i.stdout,n)}parseCrashLogFilenames(e,t){return e.split(`
54
+ `).map(n=>n.trim()).filter(n=>n.length>0).filter(n=>{try{return S.assertCrashFilename(n),!0}catch{return!1}}).filter(n=>t?n.toLowerCase().includes(t.toLowerCase()):!0)}async fetchCrashLogContent(e,t,n){u(`Fetching latest crash log file: ${n}`);let o=["-t",t,"shell","hidumper","-s","1201","-a",`-p Faultlogger -f ${n}`];u(`Executing command: ${e} ${o.join(" ")}`);let i=await this.runHilogStreamingCollect(e,o,"a crash log streaming read"),s=Ur(i,"Failed to fetch crash log content");if(s)throw s;return i.exitCode!==0&&i.stderr&&console.error(`Warning: Failed to fetch crash logs: ${i.stderr}`),i.stdout+i.stderr}};import{readFileSync as ib,unlinkSync as sb}from"fs";import{tmpdir as ab}from"os";import{join as cb}from"path";var Ot=class{constructor(e,t){this.hdcPath=e;this.serial=t}async listWindows(e){let t=await this.fetchDump(),n=ob(t);return e?.all||(n=n.filter(o=>o.type===1)),n}async fetchDump(){let e=["-t",this.serial,"shell","hidumper","-s","WindowManagerService","-a","-a"];u(`Executing: ${this.hdcPath} ${e.join(" ")}`);let t=await ee(this.hdcPath,e);if(t.exitCode!==0)throw new Error(`Failed to query windows: ${(t.stderr||t.stdout).trim()}`);return t.stdout}};function ob(r){let e=r.split(`
55
+ `),t=e.findIndex(s=>s.trimStart().startsWith("WindowName"));if(t===-1)return[];let n=[];for(let s=t+1;s<e.length;s++){let a=e[s].trim();if(!a||/^-+$/.test(a)||a.startsWith("Focus window")||a.startsWith("total window"))break;let c=a.split(/\s+/);if(c.length<5)continue;let l=c[0],d=Number(c[1]),g=Number(c[2]),v=Number(c[3]),P=Number(c[4]);Number.isFinite(v)&&Number.isFinite(d)&&Number.isFinite(g)&&n.push({id:v,name:l,pid:g,displayId:d,type:P})}let o=e.find(s=>s.trim().startsWith("Focus window")),i=o?Number(o.replace(/.*:\s*/,"").trim()):NaN;return n.map(s=>({...s,focused:s.id===i}))}function cp(r){if(!(!r||r==="HitTestMode.Default"))return r.startsWith("HitTestMode.")?r.slice(12):r}function mo(r){if(!(r==null||r==="")){if(typeof r=="boolean")return r;if(r==="true")return!0;if(r==="false")return!1}}function lp(r){if(typeof r!="string")return;let e=r.match(/-?\d+/g);if(!(!e||e.length<4))return[Number(e[0]),Number(e[1]),Number(e[2]),Number(e[3])]}function dp(r){return r.originalText||void 0}function hn(r,e){let t=[],n=[...r].reverse();for(;n.length>0;){let o=n.pop();o.id===e&&t.push(o);for(let i=o.children.length-1;i>=0;i--)n.push(o.children[i])}return t}function up(r,e){let t=[],n=[{current:r,parent:null,depth:0}];for(;n.length>0;){let{current:o,parent:i,depth:s}=n.pop(),a=i===null,c=!o.id&&!o.text&&!o.clickable&&!o.longClickable&&!o.scrollable&&!o.checkable,l=a||!c,d=i;if(l){let v={...o,children:[]};if(a?t.push(v):i.children.push(v),d=v,e>0&&s+1>=e)continue}if(process.env.DEVECO_CLI_DEBUG){let v=o.type?o.id?`${o.type}#${o.id}`:o.type:"#";u(`collapse ${v} depth=${s} -> ${a?"root":c?"collapsed":"emitted"}`)}let g=l?s+1:s;for(let v=o.children.length-1;v>=0;v--)n.push({current:o.children[v],parent:d,depth:g})}return t}function lb(r){let e=ib(r,"utf-8").trim();if(!e)throw new Error("Empty dumpLayout response from device");return JSON.parse(e)}function db(r){return r.attributes??{}}function qi(r,e,t){let n=db(r),o={id:n.id||void 0,type:n.type||void 0,text:dp(n),bounds:lp(n.bounds),clickable:mo(n.clickable)||void 0,longClickable:mo(n.longClickable)||void 0,scrollable:mo(n.scrollable)||void 0,checkable:mo(n.checkable)||void 0,hitTestBehavior:cp(n.hitTestBehavior),children:[]};return e>0&&t+1>=e||r.children&&(o.children=r.children.map(i=>qi(i,e,t+1))),o}function ub(r,e){if(e){let n=r.find(o=>String(o.id)===e);if(!n){let o=r.map(i=>`${i.id} (${i.name})`).join(", ");throw new w(`Window '${e}' not found. Available windows: ${o||"none"}`,"Window not found.")}return n}let t=r.find(n=>n.focused);if(t)return t;throw new Error("No window id specified and could not detect focused window")}var Br=class{hdcPath;constructor(e){this.hdcPath=e}buildRemoteDumpPath(){return`/data/local/tmp/deveco_cli_dump_${Date.now()}_${process.pid}.json`}async fetchRawDump(e,t,n){let o=this.buildRemoteDumpPath(),i=["-t",e,"shell","uitest","dumpLayout","-p",o];n!==void 0&&i.push("-d",String(n)),t&&i.push("-w",t),u(`Executing: ${this.hdcPath} ${i.join(" ")}`);let s=await ee(this.hdcPath,i);if(s.exitCode!==0)throw new Error(`Failed to dump layout: ${(s.stderr||s.stdout).trim()}`);return this.recvAndParseDump(e,o)}async recvAndParseDump(e,t){let n=cb(ab(),`deveco_cli_dump_${Date.now()}_${process.pid}.json`);try{return await this.recvDumpFile(e,t,n),lb(n)}finally{await this.cleanupDumpArtifacts(e,n,t)}}async recvDumpFile(e,t,n){let o=["-t",e,"file","recv",t,n];u(`Executing: ${this.hdcPath} ${o.join(" ")}`);let i=await ee(this.hdcPath,o);if(i.exitCode!==0)throw new Error(`Failed to recv dump file: ${(i.stderr||i.stdout).trim()}`)}async cleanupDumpArtifacts(e,t,n){try{u(`Removing local dump file: ${t}`),sb(t)}catch(i){u(`Failed to clean local dump file ${t}: ${i.message}`)}let o=["-t",e,"shell","rm","-f",n];u(`Executing: ${this.hdcPath} ${o.join(" ")}`),await ee(this.hdcPath,o).catch(i=>{u(`Failed to clean remote dump file ${n}: ${i.message}`)})}async dumpRawNodes(e,t,n){let i=await new Ot(this.hdcPath,e).listWindows({all:!0});if(n){let a=[...new Set(i.map(l=>l.displayId))],c=[];for(let l of a)c.push(await this.fetchRawDump(e,void 0,l));return c}let s=ub(i,t);return[await this.fetchRawDump(e,String(s.id),s.displayId)]}async dumpFullTree(e,t,n,o){return(await this.dumpRawNodes(e,n,o)).map(s=>qi(s,t,0))}async dumpFullTreeByDisplays(e,t,n){let o=[];for(let i of n){let s=await this.fetchRawDump(e,void 0,i);o.push({displayId:i,tree:qi(s,t,0)})}return o}async dumpCollapsedTree(e,t,n,o){return(await this.dumpRawNodes(e,n,o)).flatMap(s=>up(qi(s,0,0),t))}};import Fe from"fs";import Ee from"path";import{randomUUID as pb}from"crypto";function pp(r,e){let t=["-t",r.serial,"shell","snapshot_display"];return r.display!==void 0&&t.push("-i",r.display),t.push("-f",r.remotePath),e&&t.push("-t",e),t}function fp(r,e){return[r,e].filter(Boolean).join(`
56
+ `).trim()}function mp(r){return r.replace(/(Tips:\s*supported\s+displayIds)\s*:?[ \t]*(?:\r?\n[ \t]*)?(\d+(?:(?:[ \t]*,[ \t]*|[ \t]+|\r?\n[ \t]*)\d+)*)/gi,(e,t,n)=>`${t}: ${n.match(/\d+/g)?.join(", ")??n}`)}function hp(r){let e=String.raw`invalid|not found|not exist|does not exist|out of range|unsupported`;return new RegExp(String.raw`display(?:\s*id)?.*(?:${e})`,"is").test(r)||new RegExp(String.raw`(?:${e}).*display(?:\s*id)?`,"is").test(r)}function gp(r){let e=r.trim();if(!e||/No such file|not found|cannot access/i.test(e))return;let t=e.split(/\s+/),n=Number(t[4]);return Number.isFinite(n)?n:void 0}function fb(){return String(Date.now())}function Ec(r){let e;try{e=Fe.statSync(r)}catch(t){let n=t.code;throw n==="ENOENT"?new Error(`Screenshot directory does not exist: ${r}`,{cause:t}):n==="EACCES"||n==="EPERM"?new Error(`Screenshot directory is not writable: ${r}`,{cause:t}):new Error(`Invalid screenshot path: ${t.message}${n?` (${n})`:""}`,{cause:t})}if(!e.isDirectory())throw new Error(`Screenshot parent path is not a directory: ${r}`);try{Fe.accessSync(r,Fe.constants.W_OK|Fe.constants.X_OK)}catch(t){throw new Error(`Screenshot directory is not writable: ${r}`,{cause:t})}}function Pc(r,e){try{throw Fe.lstatSync(r),new Error(`Screenshot file already exists: ${r}`)}catch(t){let n=t.code;if(n==="ENOENT")return;throw n==="EACCES"||n==="EPERM"?new Error(`Screenshot directory is not writable: ${e}`,{cause:t}):t instanceof Error&&!n?t:new Error(`Invalid screenshot path: ${t.message}${n?` (${n})`:""}`,{cause:t})}}function yp(r){if(!Fe.existsSync(r))throw new Error(`Screenshot file was not created: ${r}`);let e=Fe.statSync(r);if(!e.isFile()||e.size===0)throw new Error(`Screenshot file is empty: ${r}`);let t=Fe.readFileSync(r).subarray(0,8),n=Buffer.from([137,80,78,71,13,10,26,10]);if(!t.equals(n))throw new Error(`Screenshot file is not a valid PNG: ${r}`)}function vp(r){try{return yp(r),!0}catch{return!1}}function wp(r){let e=[];for(let t of Fe.readdirSync(r,{withFileTypes:!0})){let n=Ee.join(r,t.name);if(t.isDirectory()){e.push(...wp(n));continue}t.isFile()&&vp(n)&&e.push(n)}return e}function mb(r,e){let t=Ee.join(r,Ee.basename(e));if(vp(t))return t;let n=wp(r);if(n.length===1)return n[0];if(n.length>1)throw new Error(`Multiple screenshot files were received in ${r}.`)}function hb(r,e){try{Fe.copyFileSync(r,e,Fe.constants.COPYFILE_EXCL)}catch(t){throw t.code==="EEXIST"?new Error(`Screenshot file already exists: ${e}`,{cause:t}):t}yp(e)}var Wr=class{constructor(e){this.toolProvider=e}resolveDestinationPath(e){if(!e?.trim())throw new Error("--path is required.");let t=e.trim(),n=Ee.resolve(t);try{if(Fe.statSync(n).isDirectory()){Ec(n);let i=Ee.join(n,`screenshot-${fb()}.png`);return Pc(i,n),i}}catch(i){if(i.code!=="ENOENT")throw i}if(Ee.extname(n).toLowerCase()!==".png")throw new Error(`Screenshot path must be an existing directory or a PNG file: ${n}`);let o=Ee.dirname(n);return Ec(o),Pc(n,o),n}async captureToPath(e,t,n){let o=Ee.dirname(Ee.resolve(t));Ec(o),Pc(Ee.resolve(t),o);let i=`/data/local/tmp/devecocli-${pb()}.png`;await this.capture({hdcPath:this.toolProvider.hdcPath,serial:e,localPath:Ee.resolve(t),remotePath:i,display:n})}async capture(e){try{await this.createRemoteScreenshot(e),await this.receiveScreenshotFile(e)}finally{await this.removeRemoteScreenshot(e)}}async getRemoteScreenshotSize(e){let t=["-t",e.serial,"shell","ls","-l",e.remotePath];u(`Executing: ${e.hdcPath} ${t.join(" ")}`);let n=await ee(e.hdcPath,t);return n.exitCode===0?gp(n.stdout):void 0}async tryCreateRemoteScreenshot(e,t){let n=pp(e,t);u(`Executing: ${e.hdcPath} ${n.join(" ")}`);let o=await ee(e.hdcPath,n),i=await this.getRemoteScreenshotSize(e);return{created:i!==void 0&&i>0,output:mp(fp(o.stdout,o.stderr))}}async createRemoteScreenshot(e){let t="";for(let n of[void 0,"png"]){let o=await this.tryCreateRemoteScreenshot(e,n);if(o.created)return;if(e.display!==void 0&&hp(o.output))throw new Error(`Screenshot was not created on device: ${e.remotePath}.
57
+ snapshot_display output:
58
+ ${o.output}`);o.output&&(t=o.output)}throw new Error(t?`Screenshot was not created on device: ${e.remotePath}.
59
+ snapshot_display output:
60
+ ${t}`:`Screenshot was not created on device: ${e.remotePath}.`)}async tryReceiveScreenshot(e,t,n){let o=["-t",e.serial,"file","recv",e.remotePath,n];u(`Executing: ${e.hdcPath} ${o.join(" ")}`);let i=await ee(e.hdcPath,o);return i.exitCode!==0&&u(`hdc file recv failed: ${i.stderr||i.stdout||`exit code ${i.exitCode}`}`),mb(t,e.remotePath)}async receiveScreenshotFile(e){let t=Fe.mkdtempSync(Ee.join(Ee.dirname(e.localPath),".devecocli-screenshot-"));try{let n=await this.tryReceiveScreenshot(e,t,Ee.join(t,Ee.basename(e.remotePath)))??await this.tryReceiveScreenshot(e,t,t)??await this.tryReceiveScreenshot(e,t,Ee.join(t,"screenshot.png"));if(!n)throw new Error(`Screenshot file was not created in ${t}.`);hb(n,e.localPath)}finally{Fe.rmSync(t,{recursive:!0,force:!0})}}async removeRemoteScreenshot(e){let t=["-t",e.serial,"shell","rm","-f",e.remotePath];u(`Executing: ${e.hdcPath} ${t.join(" ")}`),await ee(e.hdcPath,t)}};var zi={left:"0",right:"1",up:"2",down:"3"};function Te(r,e){let t=Number(r);if(!Number.isInteger(t)||t<=0)throw new Error(`${e} must be a positive integer`)}function Cc(r,e){r!==void 0&&Te(r,e)}function bp(r,e){if(r===void 0!=(e===void 0))throw new Error("x and y must be provided together")}function Ji(r,e){if(r!==void 0&&r.length===0)throw new Error(`${e} must not be empty`)}function ho(r){if(r===void 0)return;let e=Number(r);if(!Number.isInteger(e)||e<200||e>4e4)throw new Error("--speed must be an integer between 200 and 40000");return r}function Sp(r){if(r!==void 0&&!/^[a-zA-Z0-9_-]+$/.test(r))throw new Error("--window must consist of letters, digits, - or _")}function Ep(r,e,t,n=!0){if(t&&!e)throw new Error("--window must be used with --id");if(r&&e)throw new Error("Coordinates and --id are mutually exclusive");if(n&&!r&&!e)throw new Error("Either provide x y coordinates or use --id")}function gn(r,e,t,n,o=!0){bp(r,e),Ji(t,"--id"),Cc(r,"x"),Cc(e,"y"),Sp(n),Ep(r!==void 0,!!t,!!n,o)}async function ht(r,e){let n=await new or(r).selectDevice(e);if(!n)throw new Error("No device selected. Use `devecocli device list` to see targets.");return n}async function Dt(r){let e=await A.new(),t=await ht(e,r);return{hdcPath:e.hdcPath,deviceId:t}}async function yn(r,e,t,n,o,i){if(t!==void 0&&n!==void 0)return{x:t,y:n};if(o===void 0)throw new Error("Either provide x y coordinates or use --id");let a=await new Ot(r,e).listWindows({all:!0}),c=new Br(r);return gb(c,e,a,o,i)}async function gb(r,e,t,n,o){if(o!==void 0){let i=t.find(a=>String(a.id)===o);if(i&&i.displayId!==0)throw new w(`Window "${o}" is on display ${i.displayId}. The current command only supports operations on the primary display.`,"The current command only supports operations on the primary display.");let s=await r.dumpFullTree(e,0,o,!1);return vb(s,n)}return yb(r,e,t,n)}async function yb(r,e,t,n){let o=[...new Set(t.map(a=>a.displayId))],i=await r.dumpFullTreeByDisplays(e,0,o),s=[];for(let{displayId:a,tree:c}of i)for(let l of hn([c],n))s.push({node:l,displayId:a});if(s.length===0)throw new w(`Node "${n}" not found.`,"Node not found.");if(s.length>1)throw new w(`Multiple nodes found with id "${n}".`,"Multiple nodes found");if(s[0].displayId!==0)throw new w(`Node "${n}" is on display ${s[0].displayId}. The current command only supports operations on the primary display.`,"The current command only supports operations on the primary display.");return Pp(s[0].node,n)}function vb(r,e){let t=hn(r,e);if(t.length===0)throw new w(`Node "${e}" not found.`,"Node not found.");if(t.length>1)throw new w(`Multiple nodes found with id "${e}".`,"Multiple nodes found");return Pp(t[0],e)}function Pp(r,e){let t=r.bounds;if(!t)throw new w(`Node "${e}" has no bounds.`,"Node has no bounds.");let[n,o,i,s]=t;return{x:Math.ceil((n+i)/2),y:Math.ceil((o+s)/2)}}async function it(r,e,t){let n=["-t",e,"shell",...t];u(`Executing: ${r} ${n.join(" ")}`);let o=await ee(r,n);if(o.exitCode!==0)throw new Error(o.stderr||o.stdout||`uitest exited with code ${o.exitCode}`);let i=o.stdout.toLowerCase();if(["illegal","fail","error","incorrect","please confirm that the coordinate values are correct"].some(a=>i.includes(a))&&!i.includes("no error"))throw new Error(o.stdout.trim()||"uitest command failed")}import{deflateSync as wb,inflateSync as bb}from"zlib";import Sb from"fs";var Cp=8,kp=32,Eb=.06,Pb=.04,kc=10,Yi=class r{whiteBits=null;blackBits=null;analyzeRgb(e,t,n){if(e<8||t<8||n.length<e*t*3)return null;let o=this.cropChrome(e,t,n),i=this.hashBits(o.width,o.height,o.rgb),s=Math.min(this.hammingDistance(i,this.solidRefBits(255)),this.hammingDistance(i,this.solidRefBits(0)));return{phash:this.bitsToHex(i),hamming:s,isBlank:s<=kc}}analyzeFile(e){let t;try{t=Sb.readFileSync(e)}catch{return null}let n=this.decodePngRgb(t);return n?this.analyzeRgb(n.width,n.height,n.rgb):null}static encodePngRgb(e,t,n){let o=r.pngCrcTable(),i=[Buffer.from(`\x89PNG\r
61
+ 
62
+ `,"binary")],s=Buffer.alloc(13);s.writeUInt32BE(e,0),s.writeUInt32BE(t,4),s[8]=8,s[9]=2,i.push(r.pngChunk("IHDR",s,o));let a=Buffer.alloc((e*3+1)*t);for(let c=0;c<t;c++)a[c*(e*3+1)]=0,Buffer.from(n.buffer,n.byteOffset+c*e*3,e*3).copy(a,c*(e*3+1)+1);return i.push(r.pngChunk("IDAT",wb(a),o)),i.push(r.pngChunk("IEND",Buffer.alloc(0),o)),Buffer.concat(i)}cropChrome(e,t,n){let o=Math.floor(t*Eb),i=Math.floor(t*(1-Pb));if(i<=o+8)return{width:e,height:t,rgb:n};let s=i-o,a=new Uint8Array(e*s*3);for(let c=0;c<s;c++){let l=(o+c)*e*3;a.set(n.subarray(l,l+e*3),c*e*3)}return{width:e,height:s,rgb:a}}hashBits(e,t,n){let o=this.toGray(e,t,n),i=this.resizeGray(o,kp,kp),s=this.dct2(i),a=[];for(let d=0;d<Cp;d++)a.push(s[d].slice(0,Cp));let c=this.stabilizeDct(a),l=this.median(c);return c.map(d=>d>l)}solidRefBits(e){return e===255?this.whiteBits??=this.solidBits(255,255,255):this.blackBits??=this.solidBits(0,0,0)}solidBits(e,t,n){let i=new Uint8Array(12288);for(let s=0;s<4096;s++)i[s*3]=e,i[s*3+1]=t,i[s*3+2]=n;return this.hashBits(64,64,i)}hammingDistance(e,t){let n=Math.min(e.length,t.length),o=Math.abs(e.length-t.length);for(let i=0;i<n;i++)e[i]!==t[i]&&o++;return o}bitsToHex(e){let t=0n;for(let o of e)t=t<<1n|(o?1n:0n);let n=Math.max(1,Math.ceil(e.length/4));return t.toString(16).padStart(n,"0")}toGray(e,t,n){let o=[];for(let i=0;i<t;i++){let s=[];for(let a=0;a<e;a++){let c=(i*e+a)*3;s.push(.299*n[c]+.587*n[c+1]+.114*n[c+2])}o.push(s)}return o}resizeGray(e,t,n){let o=e.length,i=e[0]?.length??0;if(i===t&&o===n)return e;let s=[];for(let a=0;a<n;a++){let c=(a+.5)*o/n-.5,l=Math.max(0,Math.min(o-1,Math.floor(c))),d=Math.max(0,Math.min(o-1,l+1)),g=c-l,v=[];for(let P=0;P<t;P++){let ie=(P+.5)*i/t-.5,B=Math.max(0,Math.min(i-1,Math.floor(ie))),Ae=Math.max(0,Math.min(i-1,B+1)),Ze=ie-B,St=e[l][B],Dd=e[l][Ae],Ma=e[d][B],Oa=e[d][Ae];v.push(St*(1-Ze)*(1-g)+Dd*Ze*(1-g)+Ma*(1-Ze)*g+Oa*Ze*g)}s.push(v)}return s}stabilizeDct(e){let t=e.flat(),n=Math.abs(t[0]??0),o=Math.max(.001,n*1e-8);return t.map(i=>Math.abs(i)<o?0:i)}median(e){if(e.length===0)return 0;let t=[...e].sort((o,i)=>o-i),n=Math.floor(t.length/2);return t.length%2?t[n]:.5*(t[n-1]+t[n])}dct2(e){let t=e.length,n=a=>{let c=new Array(t).fill(0);for(let l=0;l<t;l++){let d=0;for(let g=0;g<t;g++)d+=a[g]*Math.cos(Math.PI*(g+.5)*l/t);c[l]=d}return c},o=e.map(n),i=[];for(let a=0;a<t;a++)i.push(n(o.map(c=>c[a])));let s=[];for(let a=0;a<t;a++){let c=[];for(let l=0;l<t;l++)c.push(i[l][a]);s.push(c)}return s}decodePngRgb(e){let t=this.parsePngChunks(e);if(!t)return null;let n;try{n=bb(Buffer.concat(t.idat))}catch{return null}let o=this.pngScanlinesToRgb(n,t.width,t.height,t.colorType);return{width:t.width,height:t.height,rgb:o}}parsePngChunks(e){if(e.length<8||e.subarray(0,8).toString("binary")!==`\x89PNG\r
63
+ 
64
+ `)return null;let t=8,n=0,o=0,i=0,s=0,a=[];for(;t+8<=e.length;){let c=e.readUInt32BE(t),l=e.subarray(t+4,t+8).toString("ascii"),d=e.subarray(t+8,t+8+c);if(t+=12+c,l==="IHDR")n=d.readUInt32BE(0),o=d.readUInt32BE(4),i=d[8],s=d[9];else if(l==="IDAT")a.push(d);else if(l==="IEND")break}return!n||!o||i!==8||s!==2&&s!==6?null:{width:n,height:o,colorType:s,idat:a}}pngScanlinesToRgb(e,t,n,o){let i=o===6?4:3,s=t*i,a=new Uint8Array(t*n*3),c=0,l=new Uint8Array(s),d=new Uint8Array(s);for(let g=0;g<n;g++){let v=e[c++];d.set(e.subarray(c,c+s)),c+=s,this.applyPngFilter(v,d,l,i);for(let P=0;P<t;P++){let ie=(g*t+P)*3,B=P*i;a[ie]=d[B],a[ie+1]=d[B+1],a[ie+2]=d[B+2]}l.set(d)}return a}applyPngFilter(e,t,n,o){for(let i=0;i<t.length;i++){let s=i>=o?t[i-o]:0,a=n[i],c=i>=o?n[i-o]:0;e===1?t[i]=t[i]+s&255:e===2?t[i]=t[i]+a&255:e===3?t[i]=t[i]+Math.floor((s+a)/2)&255:e===4&&(t[i]=t[i]+this.paeth(s,a,c)&255)}}paeth(e,t,n){let o=e+t-n,i=Math.abs(o-e),s=Math.abs(o-t),a=Math.abs(o-n);return i<=s&&i<=a?e:s<=a?t:n}static pngChunk(e,t,n){let o=Buffer.concat([Buffer.from(e,"ascii"),t]),i=Buffer.alloc(12+t.length);return i.writeUInt32BE(t.length,0),o.copy(i,4),i.writeUInt32BE(r.pngCrc(o,n),8+t.length),i}static pngCrcTable(){let e=new Uint32Array(256);for(let t=0;t<256;t++){let n=t;for(let o=0;o<8;o++)n=n&1?3988292384^n>>>1:n>>>1;e[t]=n>>>0}return e}static pngCrc(e,t){let n=4294967295;for(let o=0;o<e.length;o++)n=t[(n^e[o])&255]^n>>>8;return(n^4294967295)>>>0}};import _t from"fs";import gt from"path";import{randomUUID as Rb}from"crypto";var Cb=/^smoke-screenshot-\d+\.png$/,kb=/^smoke-crash-\d+\.log$/,Ib=/^run-\d+-\d+-[0-9a-f]{4}$/;function Ip(r){return`smoke-screenshot-${r}.png`}function Ap(r){return`smoke-crash-${r}.log`}function Dp(r){return Cb.test(r)||kb.test(r)}var go="RUNNING",Ic="ENDED",Ab=1440*60*1e3,Db=1440*60*1e3;function Rp(r,e,t){return`run-${r}-${e}-${t}`}function Tp(r){return Ib.test(r)}function xp(r){try{let e=JSON.parse(r);if(typeof e.pid!="number"||typeof e.startedAt!="number"||!Number.isFinite(e.pid)||!Number.isFinite(e.startedAt))return null;let t={pid:e.pid,startedAt:e.startedAt};return typeof e.endedAt=="number"&&Number.isFinite(e.endedAt)&&(t.endedAt=e.endedAt),t}catch{}return null}function Lp(r,e,t){return r===null?!0:r==="ended"?e?.endedAt===void 0?!0:t.now-e.endedAt>=Ab:!e||!Number.isInteger(e.pid)||e.pid<=0||t.now-e.startedAt>=Db?!0:!t.isPidAlive(e.pid)}var Tb="smoke";function xb(r){try{return process.kill(r,0),!0}catch(e){return e.code==="EPERM"}}var yo=class{constructor(e,t=xb){this.baseDir=e;this.isPidAlive=t;this.runsRoot=gt.join(e,Tb)}runsRoot;static resolveBaseDir(e,t){return t??gt.join(e,".hvigor")}createRun(){let e=gt.join(this.runsRoot,Rp(Date.now(),process.pid,Rb().slice(0,4)));_t.mkdirSync(e,{recursive:!0});let t={pid:process.pid,startedAt:Date.now()};return _t.writeFileSync(gt.join(e,go),JSON.stringify(t),"utf8"),e}prune(e,t=Date.now()){this.pruneLegacyFlatArtifacts(),this.pruneEndedRuns(e,t)}finalize(e){try{let t=this.readMarker(e,go),n={pid:t?.pid??process.pid,startedAt:t?.startedAt??Date.now(),endedAt:Date.now()};_t.writeFileSync(gt.join(e,Ic),JSON.stringify(n),"utf8"),_t.rmSync(gt.join(e,go),{force:!0})}catch(t){u(`Smoke: finalize run failed (${e}): ${t.message}`)}}discard(e){try{_t.rmSync(e,{recursive:!0,force:!0})}catch(t){u(`Smoke: discard run failed (${e}): ${t.message}`)}}pruneLegacyFlatArtifacts(){let e;try{e=_t.readdirSync(this.baseDir,{withFileTypes:!0})}catch{return}for(let t of e)!t.isFile()||!Dp(t.name)||this.removeQuietly(gt.join(this.baseDir,t.name))}pruneEndedRuns(e,t){let n;try{n=_t.readdirSync(this.runsRoot,{withFileTypes:!0})}catch{return}for(let o of n){if(!o.isDirectory()||!Tp(o.name))continue;let i=gt.join(this.runsRoot,o.name);if(gt.resolve(i)===gt.resolve(e))continue;let s=this.readMarkerState(i);Lp(s.kind,s.marker,{now:t,isPidAlive:this.isPidAlive})&&this.removeQuietly(i)}}readMarkerState(e){let t=this.readMarker(e,Ic);if(t!==void 0)return{kind:"ended",marker:t};let n=this.readMarker(e,go);return n!==void 0?{kind:"running",marker:n}:{kind:null,marker:null}}readMarker(e,t){try{return xp(_t.readFileSync(gt.join(e,t),"utf8"))}catch(n){return n.code==="ENOENT"?void 0:null}}removeQuietly(e){try{_t.rmSync(e,{recursive:!0,force:!0})}catch(t){u(`Smoke: prune artifact failed (${e}): ${t.message}`)}}};var Np=1e3;function Nb(){let r=process.env.DEVECO_CLI_SMOKE_WAIT_MS;if(r===void 0||r==="")return Np;let e=Number(r);return Number.isFinite(e)&&e>=0?Math.floor(e):Np}var Xi=class{constructor(e,t,n){this.hdc=t;this.projectRoot=n;this.hilog=new or(e),this.screenshots=new Wr(e)}phash=new Yi;hilog;screenshots;runDir;runStore;async collect(e){this.openRun(e);let t=Nb();t>0&&await new Promise(o=>setTimeout(o,t));let n;try{n=await this.hdc.pidofBundle(e.targetDeviceId,e.bundleName)}catch(o){return console.warn(vo(`Smoke: process check failed (${o.message}); smoke skipped.`)),{processAlive:!0,phashBlank:null,processCheckSkipped:!0}}return n?this.collectScreenshotEvidence(e):{processAlive:!1,phashBlank:null,crashLogPath:await this.writeCrashLogFile(e)}}openRun(e){let t=new yo(yo.resolveBaseDir(this.projectRoot,e.screenshotDir)),n=t.createRun();t.prune(n),this.runStore=t,this.runDir=n}artifactPath(e){return Lb.join(this.runDir??"",e)}discardEvidence(e){for(let t of[e.screenshotPath,e.crashLogPath])if(t)try{Ki.rmSync(t,{force:!0})}catch(n){u(`Smoke: discard artifact failed (${t}): ${n.message}`)}this.runStore&&this.runDir&&this.runStore.discard(this.runDir)}finalizeRun(){this.runStore&&this.runDir&&this.runStore.finalize(this.runDir)}async collectScreenshotEvidence(e){let t=this.artifactPath(Ip(Date.now()));try{await this.screenshots.captureToPath(e.targetDeviceId,t)}catch(o){return this.skipBlank(`screenshot failed (${o.message})`)}if(!Ki.existsSync(t)||Ki.statSync(t).size<=32)return this.skipBlank("screenshot file missing or empty");let n=this.phash.analyzeFile(t);return n?{processAlive:!0,phashBlank:n.isBlank,phash:n.phash,phashHamming:n.hamming,screenshotPath:t}:this.skipBlank("failed to analyze screenshot",t)}skipBlank(e,t){return console.warn(vo(`Smoke: ${e}; blank check skipped.`)),{processAlive:!0,phashBlank:null,screenshotPath:t,screenshotSkipped:!0}}async writeCrashLogFile(e){let t;try{t=await this.hilog.getLatestCrashLog(e.targetDeviceId,e.bundleName)}catch(n){console.warn(vo(`Smoke: crash log query failed (${n.message}).`));return}if(!t?.trim()){console.warn(vo("Smoke: no crash log found on device."));return}try{let n=this.artifactPath(Ap(Date.now()));return Ki.writeFileSync(n,t,"utf8"),n}catch(n){console.warn(vo(`Smoke: failed to save crash log (${n.message}).`));return}}};var Zi=class{judge(e){if(!e.processAlive)return this.verdict("FAIL_CRASH","Application process died after launch (possible crash).",e);if(e.phashBlank===!0)return this.verdict("FAIL_BLANK",`Blank/solid screen after launch (hamming ${e.phashHamming} \u2264 ${kc}, hash=${e.phash||"-"}).`,e);let t=e.phashBlank===null?"Process alive; screenshot unavailable, blank check skipped.":"Process alive; screenshot is not a solid blank screen.";return this.verdict("PASS",t,e)}verdict(e,t,n){return{status:e,reason:t,evidence:n,passed:e==="PASS"}}};var Qi=class{inspector;judge=new Zi;formatter=new Vi;constructor(e,t,n){let o=n??new Ye(e);this.inspector=new Xi(e,o,t)}async execute(e){let t=await this.inspector.collect(e),n=this.judge.judge(t);if(n.passed){this.inspector.discardEvidence(t),console.log(this.formatter.formatPass(n));return}throw this.inspector.finalizeRun(),this.formatter.toTraceError(n,e)}};async function Ac(r){await new Qi(r.toolProvider,r.projectRoot,r.hdcAdapter).execute(r)}function Dc(r){let e=r.indexOf("@"),t=e!==-1?r.substring(0,e):r,n=e!==-1?r.substring(e+1):"default";return{moduleName:t,targetName:n}}async function ts(r,e){let t=await r.listDevices();if(t.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");if(!e&&t.length>1){let o=await r.listDevicesWithName();throw new w("Multiple devices found. Specify a target device using `--device <Name>` or `--device <ID>`.\nAvailable devices:\n"+o.map(i=>` - ${i.name} (${i.serial})`).join(`
65
+ `),"Multiple devices found.")}let n=await r.getDeviceInfo(t,e);if(!n)throw new Error("No active devices found.");if(!e){let o=await r.getDeviceName(n.serial);console.log(`Auto-selected device: ${o} (${n.serial})`)}return n.serial}function Rc(r,e){if(e&&e.length>0)return e;let t=r.profile.modules.filter(n=>{let o=r.getModuleType(n.name);return o==="entry"||o==="feature"||o==="shared"});if(t.length===1){let n=t[0].name;return console.log(`Auto-selected module: ${n}`),[n]}throw new w(`Specify module(s) using --module <name> [<name>...].
50
66
  Available runnable modules:
51
- `+t.map(r=>` - ${r.name}`).join(`
52
- `),"Specify module error.")}function Ru(n,e,t){if(t)return t;let r=e.find(({moduleName:o})=>n.getModuleType(o)==="entry");if(r)return n.getMainAbility(r.moduleName);let i=e.find(({moduleName:o})=>n.getModuleType(o)==="feature");if(i)return n.getMainAbility(i.moduleName)}async function Tu(n,e,t,r,i,o){if(o&&(console.log(`Uninstalling ${t}...`),await n.uninstallApp(e,t)||console.log(`App ${t} not installed; skipping uninstallation.`)),console.log(`
53
- Installing artifacts to device ${e}...`),await n.installApp(e,r),i){console.log(`Launching ${t}/${i}...`);let s=await n.launchApp(e,t,i);console.log(oi(`
67
+ `+t.map(n=>` - ${n.name}`).join(`
68
+ `),"Specify module error.")}function Mp(r,e,t){if(t)return t;let n=e.find(({moduleName:i})=>r.getModuleType(i)==="entry");if(n)return r.getMainAbility(n.moduleName);let o=e.find(({moduleName:i})=>r.getModuleType(i)==="feature");if(o)return r.getMainAbility(o.moduleName)}async function Op(r,e,t,n,o,i){if(i&&(console.log(`Uninstalling ${t}...`),await r.uninstallApp(e,t)||console.log(`App ${t} not installed; skipping uninstallation.`)),console.log(`
69
+ Installing artifacts to device ${e}...`),await r.installApp(e,n),o){console.log(`Launching ${t}/${o}...`);let s=await r.launchApp(e,t,o);console.log(wo(`
54
70
  Application '${t}': ${s}`))}else console.log(`
55
- Application '${t}' installed successfully (no ability to launch).`)}function lw(n){let e={event:b.CommandExecuted,args:["run",...n.module?["--module"]:[],...n.device?["--device"]:[],...n.product?["--product"]:[],...n.buildMode?["--build-mode"]:[],...n.ability?["--ability"]:[],...n.uninstall?["--uninstall"]:[],...n.skipBuild?["--skip-build"]:[],...n.apply?["--apply"]:[],...n.hotreload?["--hotreload"]:[],...n.hotreloadApply?["--hotreload-apply"]:[]]};return n.buildMode&&(e.build_mode=n.buildMode),n.module&&(e.module_count=n.module.length),e}var dw=new aw("run").description("Build and run the project on a connected device").option("--module <modules...>","Module(s) to run (format: module or module@target)").option("--device <device>","Target device name or serial").option("--product <product>","Product name (default: default)").option("--build-mode <mode>","Build mode (options: debug, release; default: debug)").option("--ability <ability>","Ability name to launch").option("--uninstall","Uninstall existing app before installation").option("--skip-build","Skip build step and deploy existing artifacts").option("--apply <fileName>","Quick-apply changed files via quickfix (incremental hqf) and restart. <fileName> under project .hvigor/").option("--hotreload [action]",'Start hot-reload mode (build+deploy with daemon, then exit). Use "stop" to shut down the hvigor daemon.').option("--hotreload-apply <fileName>","Hot-reload changed files (.hvigor/<fileName> list) via daemon hot compile + signed hqf + quickfix, without restarting the app.").action(async n=>{let e=lw(n),t=Date.now(),r=!0,i=null;try{let o=await pw(n,e);o&&(o.ohpmMemoryMb&&(e.ohpm_install_memory=o.ohpmMemoryMb),o.syncMemoryMb&&(e.hvigor_sync_memory=o.syncMemoryMb),o.buildMemoryMb&&(e.hvigor_build_memory=o.buildMemoryMb))}catch(o){r=!1,i=B(o),console.error(cw(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(e,o)}});async function uw(n,e,t,r,i){let o=new Qn(e,n.rootDir),s=new Be(e,n.rootDir),a=new Set,c=new Set;for(let{moduleName:D,targetName:He}of t)for(let ye of n.collectNonHarDependentModuleList(D))a.add(`${ye}@${He}`),c.add(ye);let l=[...a],d=Wa(n,l),g={type:"modules",modulesToBuild:l,moduleTasks:d};for(let D of c)Po.generate(n.rootDir,D,r,e);let v=await xn(n.rootDir,()=>Ba(o,s,r,i,g,n.rootDir),()=>console.log("Another build is already running for this project. Waiting for completion..."));return console.log(`
56
- `+oi("Build completed successfully.")),v}async function pw(n,e){let t=Y.discover(process.cwd());console.warn(Ro("Ensure the project source is trusted before proceeding."));let r=await A.new();if(n.skipBuild||r.assertJava(),e.bundle_name=t.getBundleName(),n.hotreloadApply){await hw(n,t,r);return}if(n.hotreload){await mw(n,t,r);return}if(n.apply){await yw(n,t,r);return}return xu(n,t,r)}async function fw(n,e,t){n.onSocketDisconnect(()=>{console.log("Daemon disconnected (likely via --hotreload stop). Exiting watch session."),process.exit(0)});let r=new Be(e,t.rootDir),i=setInterval(async()=>{await r.isDaemonAlive()||(clearInterval(i),console.log("Daemon stopped (via --hotreload stop). Exiting watch session."),process.exit(0))},3e3);await new Promise(()=>{})}async function mw(n,e,t){if(n.hotreload==="stop"){await Du(t,e);return}let i=ec(e,n.module).map(Qa),{moduleName:o,targetName:s}=i[0];Za(n.module,o);let a=new Kt(t),c=oe.from(t),l=await To(c,n.device),d=l.includes("127.0.0.1")||l.includes("localhost"),g=n.product||"default";e.validateProduct(g);let v=e.getBundleName(g),D=Ru(e,i,n.ability);Co.generate(e.rootDir,o,g,t);let He=new Be(t,e.rootDir);console.log(oi("Ensuring hvigor daemon is running (via --sync --daemon, no hap build)...")),await He.ensureDaemonRunning();let ye=[`${o}@${g}`];for(let Ut of e.collectNonHarDependentModuleList(o))ye.includes(`${Ut}@${g}`)||ye.push(`${Ut}@${g}`);console.log(oi("Building hap + starting watch session (socket -> CommonBuild assembleHap --hot-reload-build --watch, kept open)..."));let ze=new sr(e.rootDir,t);await ze.startWatchSession({moduleSpecs:ye,productName:g});let Cn=Au(e,o,s,d,g);await Tu(a,l,v,Cn,D,!!n.uninstall),console.log(oi("Hot-reload watch session active (socket persistent). Edit code, write .hvigor/<file>, then `devecocli run --hotreload-apply <file>` in another terminal. Ctrl+C here to stop.")),await fw(ze,t,e)}async function hw(n,e,t){let r=n.hotreloadApply;if(!r)throw new Error("hotreload-apply requires --hotreload-apply <fileName> (under .hvigor/)");if(si.basename(r)!==r)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${r}`);let i=ec(e,n.module),{moduleName:o}=Qa(i[0]);Za(n.module,o);let s=oe.from(t),a=await To(s,n.device),c=n.product||"default";e.validateProduct(c);let l=e.getBundleName(c);Iu(e,o,r);let d=[`${o}@${c}`],g=await ku({applyFileName:r,projectPath:e.rootDir,moduleName:o,productName:c,bundleName:l,toolProvider:t,targetDeviceId:a,moduleSpecs:d});if(!g.success)throw new Error(g.message)}function gw(n,e,t,r){let i=new Set;for(let{moduleName:o,targetName:s}of e)for(let a of n.collectNonHarDependentModuleList(o)){i.add(n.findArtifactPath(a,s,t,r));for(let c of n.findRemoteHspPaths(a,s,r))i.add(c)}return[...i]}async function xu(n,e,t){let i=ec(e,n.module).map(Qa);for(let{moduleName:ye}of i){let ze=e.getModuleType(ye);if(ze!=="entry"&&ze!=="feature"&&ze!=="shared")throw new w(`Module '${ye}' '${ze}' is not runnable. Specify an entry or feature module.`,"Module is not runnable.")}let o=new Kt(t),s=oe.from(t),a=await To(s,n.device),c=a.includes("127.0.0.1")||a.includes("localhost"),l=n.product||"default";e.validateProduct(l);let d=n.buildMode||"debug",g;n.skipBuild||(g=await uw(e,t,i,l,d));let v=gw(e,i,c,l),D=e.getBundleName(l),He=Ru(e,i,n.ability);return await Tu(o,a,D,v,He,!!n.uninstall),g}async function yw(n,e,t){let r=n.apply;if(!r)throw new Error("apply requires --apply <fileName> (under .hvigor/)");if(si.basename(r)!==r)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${r}`);let i=si.join(e.rootDir,".hvigor",r),o=oe.from(t),s=await To(o,n.device),a=n.product||"default";e.validateProduct(a);let c=e.getBundleName(a),l=e.profile.modules.find(v=>e.getModuleType(v.name)==="entry")?.name,d=l?e.getMainAbility(l,n.ability):n.ability||"EntryAbility",g=new Eo(t,e.rootDir);try{await g.execute({applyFile:i,productName:a,targetDeviceId:s,bundleName:c,abilityName:d}),console.log(Ro("[Apply] \u5B8C\u6210\u3002\u82E5\u6539\u52A8\u672A\u751F\u6548\uFF0C\u8BF7\u68C0\u67E5 <module>/build/config/buildConfig.json \u662F\u5426\u6709\u5185\u5BB9\uFF0C\u6216\u6267\u884C devecocli run \u5168\u91CF\u6784\u5EFA\u3002"));return}catch(v){console.warn(Ro(`[Apply] \u5931\u8D25\uFF1A${v.message}`)),console.warn(Ro("[Apply] \u81EA\u52A8\u56DE\u9000\u5230\u5168\u91CF devecocli run..."))}await xu(n,e,t)}var Lu=dw;import{Command as Nw}from"commander";import*as Bu from"path";import{green as Hu,red as Uu,cyan as rc}from"colorette";import{execa as oc}from"execa";import{spawn as Ew}from"child_process";import*as Mu from"fs";import*as Lo from"path";import{yellow as Pw}from"colorette";import Cw from"proper-lockfile";import*as ai from"fs";import*as Ou from"path";import{homedir as vw}from"os";var ww="deveco-cli",Nu,tc=class extends Error{constructor(e){super(e),this.name="CliDataDirError"}};function bw(){let n=process.env.DEVECO_CLI_DATA_DIR,t=(n===void 0||n===""?"":Ta(n))||Ou.join(vw(),".local","share",ww);try{return co(t)}catch(r){throw new tc(r instanceof Error?r.message:String(r))}}function be(){if(Nu!==void 0)return Nu;let n=bw();try{if(ai.existsSync(n))return ai.realpathSync(n)}catch{}return n}function xo(){return"@yinsen/deveco-cli"}function Xt(){return"1.3.1"}function ar(){return"latest"}function cr(){let n=process.env.DEVECO_CLI_DISABLE_UPDATE;return n==="check"||n==="all"?n:"off"}import*as ci from"fs";import*as li from"path";var Sw={lastCheckedTimestamp:null,latestVersion:null,blockedVersions:[],checkError:null},nc=new Map,Zt=class n{static CHECK_WINDOW_HOUR=21;static ONE_DAY_MS=1440*60*1e3;cacheFilePath;lockFilePath;constructor(e){this.cacheFilePath=li.join(e,"cache.json"),this.lockFilePath=li.join(e,"check.lock")}async writeSuccess(e,t=[],r,i){await this.write({lastCheckedTimestamp:Date.now(),latestVersion:e,blockedVersions:t,checkError:null,checkedAgainstVersion:r,checkedAgainstTag:i})}async writeError(e){let t=this.read();await this.write({...t,lastCheckedTimestamp:Date.now(),checkError:e})}getLatestVersion(){return this.read().latestVersion}getBlockedVersions(){return[...this.read().blockedVersions]}getCheckedAgainstVersion(){return this.read().checkedAgainstVersion}getCheckedAgainstTag(){return this.read().checkedAgainstTag}isCheckNeeded(){let{lastCheckedTimestamp:e}=this.read();if(!e||e>Date.now())return!0;let t=new Date().setHours(n.CHECK_WINDOW_HOUR,0,0,0),r=t>Date.now()?t-n.ONE_DAY_MS:t;return e<r}getLockPath(){return this.lockFilePath}read(){let e=nc.get(this.cacheFilePath);if(e)return e;try{let t=ci.readFileSync(this.cacheFilePath,"utf-8"),r=JSON.parse(t);return nc.set(this.cacheFilePath,r),r}catch{return{...Sw}}}async write(e){p(()=>`Writing update cache: lastChecked=${e.lastCheckedTimestamp}, latest=${e.latestVersion}, blocked=[${e.blockedVersions.join(",")}], error=${e.checkError}`),await ci.promises.mkdir(li.dirname(this.cacheFilePath),{recursive:!0}),await ci.promises.writeFile(this.cacheFilePath,JSON.stringify(e,null,2),"utf-8"),nc.set(this.cacheFilePath,e)}};var di=class{constructor(e){this.actionCommand=e}actionCommand;cache=new Zt(Lo.join(be(),"update"));async checkAndNotify(){if(!this.shouldSkip())try{let e=Xt(),t=ar(),r=this.cache.getCheckedAgainstVersion(),i=this.cache.getCheckedAgainstTag(),o=i!=null&&i!==t,s=r!=null&&r!==e,a=o?null:this.cache.getLatestVersion();a&&kd(a,e)>0&&(console.log(),console.log(Pw(`New version ${a} available, run \`devecocli update\` to upgrade`))),(o||s||this.cache.isCheckNeeded())&&await this.spawnBackgroundCheck()}catch(e){p(`Update check failed: ${e instanceof Error?e.message:String(e)}`)}}shouldSkip(){let e=this.actionCommand;for(;e;){if(e.name()==="update")return!0;e=e.parent}return!1}async spawnBackgroundCheck(){if(!process.argv[1]?.endsWith(".ts"))try{await kw(this.cache.getLockPath(),()=>{let e=[process.argv[1],"update","_check"];p(`Executing: ${process.execPath} ${e.join(" ")}`),Ew(process.execPath,e,{detached:!0,stdio:["ignore","ignore","ignore"],env:{...process.env,DEVECO_CLI_SKIP_VERSION_CHECK:"1"}}).unref()})}catch{p("Update check lock held by another process, skipping")}}};async function kw(n,e){await Mu.promises.mkdir(Lo.dirname(n),{recursive:!0});let t=await Cw.lock(n,{stale:6e4,retries:0,realpath:!1});try{await e()}finally{await t()}}import{Command as Iw}from"commander";import{green as _u,cyan as No}from"colorette";import{execa as ui}from"execa";import*as tt from"path";import*as Z from"fs/promises";import*as Fu from"crypto";var Qt="@yinsen/deveco-cli-docs-zh",ju=1;async function Aw(n,e){let t=`${n}.tmp.${process.pid}`;await Z.writeFile(t,JSON.stringify(e,null,2),"utf-8"),await Z.rename(t,n)}function Dw(n,e){let t=e.indexOf("-");if(t<0)return!1;let r=e.slice(0,t),i=e.slice(t+1);if(r!=="sha512")return!1;let o=Buffer.from(i,"base64");return Fu.createHash(r).update(n).digest().equals(o)}async function Rw(){p(`Executing: npm view ${Qt} --json`);let{stdout:n}=await ui("npm",["view",Qt,"--json"]),e=JSON.parse(n);if((e.apiVersion??0)<=ju)return e;p(`Executing: npm view ${Qt} versions --json`);let{stdout:t}=await ui("npm",["view",Qt,"versions","--json"]),r=JSON.parse(t);for(let i=r.length-1;i>=0;i--){let o=r[i];p(`Checking: npm view ${Qt}@${o} --json`);let{stdout:s}=await ui("npm",["view",`${Qt}@${o}`,"--json"]),a=JSON.parse(s);if((a.apiVersion??0)<=ju)return console.log(No(`\u6700\u65B0\u7248 v${e.version} \u4E0D\u517C\u5BB9\u5F53\u524D CLI\uFF0C\u4F7F\u7528\u517C\u5BB9\u7248 v${a.version}`)),a}throw new Error(`\u6587\u6863\u5305\u6700\u65B0\u7248 v${e.version} (apiVersion ${e.apiVersion??0}) \u4E0D\u517C\u5BB9\u5F53\u524D CLI\uFF0C\u4E14\u65E0\u517C\u5BB9\u5386\u53F2\u7248\u672C\uFF0C\u8BF7\u5347\u7EA7 CLI`)}async function Tw(n,e,t){p(`Executing: npm pack ${Qt}@${n}`);let{stdout:r}=await ui("npm",["pack",`${Qt}@${n}`],{cwd:t}),i=r.trim().split(`
57
- `).pop(),o=tt.join(t,i),s=await Z.readFile(o);if(!Dw(s,e))throw await Z.unlink(o).catch(()=>{}),new Error("\u6587\u6863\u5305\u5B8C\u6574\u6027\u6821\u9A8C\u5931\u8D25");return o}async function xw(n,e,t){let r=tt.join(t,e),i=tt.join(t,`.tmp-${e}-${process.pid}`);return await Z.rm(r,{recursive:!0,force:!0}),await Z.rm(i,{recursive:!0,force:!0}),await Z.mkdir(i,{recursive:!0}),p(`Executing: tar -xzf ${tt.basename(n)} -C ${i}`),await ui("tar",["-xzf",n,"-C",i]),await Z.rename(tt.join(i,"package"),r),await Z.rm(i,{recursive:!0,force:!0}),await Z.unlink(n).catch(()=>{}),await Z.access(tt.join(r,"dist","engine","index.js")),await Z.access(tt.join(r,"docs.zip")),await Z.access(tt.join(r,"index.zip")),r}var Lw=new Iw("docs").description("Update documentation to the latest compatible version").option("--lang <lang>","Language (zh, en)","zh").option("--force","Force re-download even if up to date").option("--check","Check for updates without installing").action(async n=>{if(n.lang==="en")throw new Error("\u82F1\u6587\u6587\u6863\u5C1A\u672A\u542F\u7528\u591A\u8BED\u8A00\u652F\u6301");let e=be(),t=tt.join(e,"doc-data");await Z.mkdir(t,{recursive:!0}),console.log(No("Checking for documentation updates..."));let r=await Rw(),i=r.version,o=r.apiVersion??0,s=tt.join(t,"current.json"),a=null;try{a=JSON.parse(await Z.readFile(s,"utf-8"))}catch{}if(!n.force&&a?.version===i){console.log(_u(`\u6587\u6863\u5DF2\u662F\u6700\u65B0\u7248\u672C v${i}`));return}if(n.check){console.log(No(`\u53D1\u73B0\u65B0\u7248\u672C v${i}\uFF08\u5F53\u524D v${a?.version??"\u65E0"}\uFF09`));return}console.log(No(`\u6B63\u5728\u4E0B\u8F7D\u6587\u6863\u5305 v${i}...`));let c=await Tw(i,r.dist.integrity,t);await xw(c,i,t),await Aw(s,{version:i,apiVersion:o,installedAt:Date.now(),installedBy:"update-docs"}),console.log(_u(`\u6587\u6863\u5DF2\u66F4\u65B0\u5230 v${i}`))}),$u=Lw;var Oo=new Nw("update").description("Update deveco-cli to latest");Oo.command("_check",{hidden:!0}).action(async()=>{let n=Date.now(),e=new Zt(Bu.join(be(),"update"));try{let t=ar(),r=xo();p(`Executing: npm view ${r}@${t} --json`);let{stdout:i}=await oc("npm",["view",`${r}@${t}`,"--json"]),o=JSON.parse(i),s=typeof o.version=="string"?o.version.trim():null,a=Array.isArray(o.blockedVersions)?o.blockedVersions:[];await e.writeSuccess(s,a,Xt(),t),await Wu(n,!0,null)}catch(t){await e.writeError(t instanceof Error?t.message:String(t));let r=t,i=r.code??r.name??"UnknownError";await Wu(n,!1,i)}});var Ow={event:b.CommandExecuted,args:["update"]},Mw={event:b.CommandExecuted,args:["update","_check"]};async function ic(n,e,t){let r={duration_ms:Date.now()-n,success:e,error_code:t};await I.track(Ow,r).catch(()=>{})}async function Wu(n,e,t){let r={duration_ms:Date.now()-n,success:e,error_code:t};await I.track(Mw,r).catch(()=>{})}Oo.action(async()=>{if(cr()==="all")throw new Error("devecocli update is disabled (DEVECO_CLI_DISABLE_UPDATE=all).");let n=Date.now(),e=Xt(),t=ar();console.log(rc("Checking for updates..."));let r=xo();try{let{stdout:i}=await oc("npm",["view",r,`dist-tags.${t}`]),o=i.trim();if(!o||o===e){console.log(Hu(`
58
- ${r} is already up to date (v${e}, tag: ${t})`)),await ic(n,!0,null);return}console.log(rc(`
59
- New version found: ${o} (current: ${e})`)),console.log(rc(`Updating ${r}...`)),await oc("npm",["install","-g",`${r}@${t}`],{stdio:"inherit"}),console.log(`
60
- `+Hu(`${r} updated successfully to version ${o}.`)),await ic(n,!0,null)}catch(i){let o=i,s=o.code??o.name??"UnknownError";console.error(Uu(`Failed to update ${r}`)),o.message&&console.error(Uu(o.message)),await ic(n,!1,s),process.exit(1)}});Oo.addCommand($u);var Vu=Oo;import{Command as db,Option as op}from"commander";import{execa as Mo}from"execa";function Se(n){return n.normalize("NFKC").replace(/\s+/g," ").trim()}function qu(n){let e=n.normalize("NFKC").match(/\((\d+)(?:\.\d+)*\)/)?.[1];return e!==void 0&&Number(e)>=26}import{spawn as _w}from"child_process";var jw=2500;function Fw(n,e,t,r,i,o){n.once("exit",s=>{if(o())return;clearTimeout(e);let a=t();s===0||s===null?r():i(a||`Emulator process exited with code ${s}`)})}function $w(n,e,t,r){let i=!1,o=()=>i,s=()=>Buffer.concat(e).toString("utf8").trim(),a=()=>{i||(i=!0,clearTimeout(l),n.removeAllListeners(),n.stderr?.removeAllListeners(),n.stderr?.destroy(),n.unref(),t())},c=d=>{if(!i){i=!0,clearTimeout(l),n.removeAllListeners(),n.stderr?.removeAllListeners();try{n.kill()}catch{}r(new Error(d))}},l=setTimeout(a,jw);n.once("error",d=>c(d.message)),Fw(n,l,s,a,c,o)}function Gu(n,e,t){return p(`Spawning emulator: ${n} ${t.join(" ")}`),new Promise((r,i)=>{let o=[],s=_w(n,t,{detached:!0,stdio:["ignore","ignore","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},windowsHide:!0});s.stderr?.on("data",a=>o.push(a)),$w(s,o,r,i)})}import*as lr from"path";function Hw(n){let e=new Set,t=[];for(let r of n){let i=JSON.stringify(r);e.has(i)||(e.add(i),t.push(r))}return t}function Uw(n){let e=n.instancePath?.trim();if(e)return lr.dirname(lr.normalize(e)).replace(/\\/g,"/");let t=n.path?.trim();return t?lr.dirname(lr.normalize(t)).replace(/\\/g,"/"):""}function Ww(n){let e=[];return n&&e.push(["-imageRoot",n]),e.push([]),e}function zu(n,e){return e?[...n,"-bootmode",e]:n}function Bw(n,e,t){let r=[zu(["-start",n],t)],i=Uw(e);if(i)for(let o of Ww(e.imageRoot))r.push(zu(["-hvd",n,"-path",i,...o],t));return Hw(r)}async function Ju(n,e,t,r){let i=new Error("No start strategy ran"),o=Bw(n,e,r);for(let s of o)try{return await t(s),{ok:!0}}catch(a){i=a}return{ok:!1,lastError:i}}function Vw(n){let e=n.normalize("NFKC").match(/^\s*chargingStatus\s*:\s*(\d+)\s*$/im);if(!e)return;let t=Number(e[1]);if(t===1||t===3)return!0;if(t===0||t===2)return!1}async function sc(n){return(await oe.withHdcPath(n).listDevices()).map(t=>t.serial).filter(yt)}async function ac(n){let e=await sc(n);return e.length===0?[]:(await Promise.all(e.map(r=>So(n,r,"ohos.qemu.hvd.name")))).filter(r=>!!r)}async function Yu(n,e){return(await ac(n)).includes(e)}async function Ku(n,e){let t=await oe.withHdcPath(n).listDevicesWithName(),r=e.normalize("NFKC").replace(/\s+/g," ").trim(),i=t.find(a=>a.name.normalize("NFKC").replace(/\s+/g," ").trim()===r);if(!i||!yt(i.serial))throw new Error(`Cannot resolve the running emulator serial for "${e}".`);let o=["-t",i.serial,"shell","hidumper","-s","3302","-a","-i"];p(`Executing: ${n} ${o.join(" ")}`);let s=await ie(n,o);if(s.exitCode===0){let a=Vw(s.stdout);if(a!==void 0)return a}throw new Error(`Cannot determine the battery charging state for emulator "${e}".`)}import*as ur from"path";import{existsSync as qw,statSync as Gw}from"fs";function dr(n,e){for(let t of e){let r=n[t];if(typeof r=="string"&&r.trim())return r.trim()}return""}function zw(n){let e=dr(n,["instancePath","instance_path","InstancePath","instancepath","instanceDir","instance_dir","InstanceDir","deployPath","deploy_path","deployedPath","deployed_path","workPath","work_path","dataPath","data_path"]);if(e)return e;for(let[t,r]of Object.entries(n)){if(typeof r!="string"||!r.trim())continue;let i=t.toLowerCase();if(i.includes("instance")&&(i.includes("path")||i.includes("dir"))||i==="deployedpath")return r.trim()}return""}function Jw(n){return dr(n,["uuid","UUID","Uuid","instanceUuid","instance_uuid","InstanceUuid"])}function Yw(n){let e=n.find(r=>r.instancePath?.trim());if(!e?.instancePath?.trim())return;let t=ur.dirname(ur.normalize(e.instancePath));for(let r of n){if(r.instancePath?.trim())continue;let i=S.ensurePathWithinRoot(t,ur.join(t,r.name));qw(i)&&Gw(i).isDirectory()&&(r.instancePath=i.replace(/\\/g,"/"))}}function Kw(n){try{let e=JSON.parse(n);return Array.isArray(e)?e.map(t=>{let r=Jw(t),i=dr(t,["deviceType","DeviceType","devicetype"]),o=dr(t,["os.osVersion","osVersion","OsVersion","OSVersion"]);return{name:t.name||t.Name||"",isRunning:t.isRunning===!0||String(t.isRunning).toLowerCase()==="true",instancePath:zw(t),path:dr(t,["path","Path","hvdPath","hvd_path"]),imageRoot:dr(t,["imageRoot","image_root","ImageRoot"]),uuid:r||void 0,deviceType:i||void 0,osVersion:o||void 0}}).filter(t=>t.name):null}catch{return null}}function Xw(n){let e=[],t=/^(name|isrunning|instancepath|path|imageroot|devicetype|os\.osversion)\s*:\s*(.+)/gim,r=null,i;for(;(i=t.exec(n))!==null;){let[,o,s]=i;if(o.toLowerCase()==="name")r&&e.push(r),r={name:s.trim()};else if(r){let a=o.toLowerCase();a==="isrunning"?r.isRunning=s.trim().toLowerCase()==="true":a==="instancepath"?r.instancePath=s.trim():a==="path"?r.path=s.trim():a==="imageroot"?r.imageRoot=s.trim():a==="devicetype"?r.deviceType=s.trim():a==="os.osversion"&&(r.osVersion=s.trim())}}return r&&e.push(r),e}function Xu(n){let t=Kw(n)??Xw(n);return Yw(t),t}function cc(n,e){for(let t of e){let r=n[t];if(typeof r=="string"&&r.trim())return r.trim()}return""}function Zw(n){let e=n.downloaded??n.Downloaded;return e===!0||String(e).toLowerCase()==="true"}function Qw(n){let e=cc(n,["osVersion","OsVersion","OSVersion"]),t=cc(n,["SoftWareVersion","SoftwareVersion","softwareVersion"]),r=cc(n,["deviceType","DeviceType"]);return!e&&!t?null:{osVersion:e,softwareVersion:t,deviceType:r}}function Zu(n,e=()=>!0){let t=n.trim();if(!t)return[];try{let r=JSON.parse(t);if(!Array.isArray(r))return[];let i=[];for(let o of r){if(!o||typeof o!="object")continue;let s=o;if(!e(s))continue;let a=Qw(s);a&&i.push(a)}return i}catch{return[]}}function Qu(n){return Zu(n)}function lc(n){return Zu(n,Zw)}function ep(n){let t=lc(n).map(r=>r.osVersion).filter(Boolean);return[...new Set(t)]}var tp=/no images are available/i,eb=/Scenario simulation failed\s*[::]/i,tb="7.0.0";function Dt(n){return n.normalize("NFKC").trim().toLowerCase()}function nb(n){let e=n.message||"";return tp.test(e)}function rb(n){return n.normalize("NFKC").match(/(\d+(?:\.\d+){1,3})/)?.[1]}function pi(n,e){return`${n} ${e.join(" ")}`.trim()}function ib(n){switch(n.type){case"gps":return`${n.type}:${n.key}=${n.value}`;case"sensor":return`${n.type}:${n.key}=${n.value}`;case"rotation":case"volume":return`${n.type}:${n.direction}`;case"folded-state":return`${n.type}:${n.state}`;case"battery":return`${n.type}:${n.level}`;case"battery-status":return`${n.type}:${n.status}`;default:return n.type}}var pr=class n{static supportedControlPaths=new Set;emulatorPath;sdkPath;hdcPath;constructor(e,t,r){this.emulatorPath=e,this.sdkPath=t,this.hdcPath=r}static from(e){return new n(e.emulatorPath,e.sdkPath,e.hdcPath)}async executeEmulator(e){return p(`Executing: ${pi(this.emulatorPath,e)}`),Mo(this.emulatorPath,e,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath}})}executeEmulatorDetached(e){return Gu(this.emulatorPath,this.sdkPath,e)}async listEmulators(){let{stdout:e}=await this.executeEmulator(["-list","-details"]);return Xu(e)}async getDeviceTypeByName(){let e=new Map;try{let t=await this.listEmulators();for(let r of t)r.name&&r.deviceType&&e.set(Se(r.name),r.deviceType)}catch{}return e}async startEmulator(e){let t=await this.listEmulators(),r=Se(e),i=t.find(a=>Se(a.name)===r);if(!i)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let o=i.name;if(await this.isAlreadyRunning(o,i))return"already-running";let s=await Ju(o,i,a=>this.executeEmulatorDetached(a),"snapshot");if(s.ok)return"started";if(await this.isAlreadyRunning(o))return"already-running";throw new w(`Unable to start emulator "${e}". All methods failed.
71
+ Application '${t}' installed successfully (no ability to launch).`)}function _b(r){let e={event:b.CommandExecuted,args:["run",...r.module?["--module"]:[],...r.device?["--device"]:[],...r.product?["--product"]:[],...r.buildMode?["--build-mode"]:[],...r.ability?["--ability"]:[],...r.uninstall?["--uninstall"]:[],...r.skipBuild?["--skip-build"]:[],...r.apply?["--apply"]:[],...r.hotreload?["--hotreload"]:[],...r.hotreloadApply?["--hotreload-apply"]:[]]};return r.buildMode&&(e.build_mode=r.buildMode),r.module&&(e.module_count=r.module.length),e}var jb=new Mb("run").description("Build and run the project on a connected device").option("--module <modules...>","Module(s) to run (format: module or module@target)").option("--device <device>","Target device name or serial").option("--product <product>","Product name (default: default)").option("--build-mode <mode>","Build mode (options: debug, release; default: debug)").option("--ability <ability>","Ability name to launch").option("--uninstall","Uninstall existing app before installation").option("--skip-build","Skip build step and deploy existing artifacts").option("--apply <fileName>","Quick-apply changed files via quickfix (incremental hqf) and restart. <fileName> under project .hvigor/").option("--hotreload [action]",'Start hot-reload mode (build+deploy with daemon, then exit). Use "stop" to shut down the hvigor daemon.').option("--hotreload-apply <fileName>","Hot-reload changed files (.hvigor/<fileName> list) via daemon hot compile + signed hqf + quickfix, without restarting the app.").action(async r=>{let e=_b(r),t=Date.now(),n=!0,o=null;try{let i=await $b(r,e);i&&(i.ohpmMemoryMb&&(e.ohpm_install_memory=i.ohpmMemoryMb),i.syncMemoryMb&&(e.hvigor_sync_memory=i.syncMemoryMb),i.buildMemoryMb&&(e.hvigor_build_memory=i.buildMemoryMb))}catch(i){n=!1,o=q(i),console.error(Ob(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(e,i)}});async function Fb(r,e,t,n,o){let i=new cn(e,r.rootDir),s=new ze(e,r.rootDir),a=new Set,c=new Set;for(let{moduleName:P,targetName:ie}of t)for(let B of r.collectNonHarDependentModuleList(P))a.add(`${B}@${ie}`),c.add(B);let l=[...a],d=dc(r,l),g={type:"modules",modulesToBuild:l,moduleTasks:d};for(let P of c)Fi.generate(r.rootDir,P,n,e);let v=await _r(r.rootDir,()=>uc(i,s,n,o,g,r.rootDir),()=>console.log("Another build is already running for this project. Waiting for completion..."));return console.log(`
72
+ `+wo("Build completed successfully.")),v}async function $b(r,e){let t=W.discover(process.cwd());console.warn(es("Ensure the project source is trusted before proceeding."));let n=await A.new();if(r.skipBuild||n.assertJava(),e.bundle_name=t.getBundleName(),r.hotreloadApply){await Bb(r,t,n);return}if(r.hotreload){await Ub(r,t,n);return}if(r.apply){await Vb(r,t,n);return}return _p(r,t,n)}async function Hb(r,e,t){r.onSocketDisconnect(()=>{console.log("Daemon disconnected (likely via --hotreload stop). Exiting watch session."),process.exit(0)});let n=new ze(e,t.rootDir),o=setInterval(async()=>{await n.isDaemonAlive()||(clearInterval(o),console.log("Daemon stopped (via --hotreload stop). Exiting watch session."),process.exit(0))},3e3);await new Promise(()=>{})}async function Ub(r,e,t){if(r.hotreload==="stop"){await ap(t,e);return}let o=Rc(e,r.module).map(Dc),{moduleName:i,targetName:s}=o[0];bc(r.module,i);let a=new Ye(t),c=de.from(t),l=await ts(c,r.device),d=l.includes("127.0.0.1")||l.includes("localhost"),g=r.product||"default";e.validateProduct(g);let v=e.getBundleName(g),P=Mp(e,o,r.ability);$i.generate(e.rootDir,i,g,t);let ie=new ze(t,e.rootDir);console.log(wo("Ensuring hvigor daemon is running (via --sync --daemon, no hap build)...")),await ie.ensureDaemonRunning();let B=[`${i}@${g}`];for(let St of e.collectNonHarDependentModuleList(i))B.includes(`${St}@${g}`)||B.push(`${St}@${g}`);console.log(wo("Building hap + starting watch session (socket -> CommonBuild assembleHap --hot-reload-build --watch, kept open)..."));let Ae=new mn(e.rootDir,t);await Ae.startWatchSession({moduleSpecs:B,productName:g});let Ze=sp(e,i,s,d,g);await Op(a,l,v,Ze,P,!!r.uninstall),console.log(wo("Hot-reload watch session active (socket persistent). Edit code, write .hvigor/<file>, then `devecocli run --hotreload-apply <file>` in another terminal. Ctrl+C here to stop.")),await Hb(Ae,t,e)}async function Bb(r,e,t){let n=r.hotreloadApply;if(!n)throw new Error("hotreload-apply requires --hotreload-apply <fileName> (under .hvigor/)");if(bo.basename(n)!==n)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${n}`);let o=Rc(e,r.module),{moduleName:i}=Dc(o[0]);bc(r.module,i);let s=de.from(t),a=await ts(s,r.device),c=r.product||"default";e.validateProduct(c);let l=e.getBundleName(c);ip(e,i,n);let d=[`${i}@${c}`],g=await op({applyFileName:n,projectPath:e.rootDir,moduleName:i,productName:c,bundleName:l,toolProvider:t,targetDeviceId:a,moduleSpecs:d});if(!g.success)throw new Error(g.message)}function Wb(r,e,t,n){let o=new Set;for(let{moduleName:i,targetName:s}of e)for(let a of r.collectNonHarDependentModuleList(i)){o.add(r.findArtifactPath(a,s,t,n));for(let c of r.findRemoteHspPaths(a,s,n))o.add(c)}return[...o]}async function _p(r,e,t){let o=Rc(e,r.module).map(Dc);for(let{moduleName:B}of o){let Ae=e.getModuleType(B);if(Ae!=="entry"&&Ae!=="feature"&&Ae!=="shared")throw new w(`Module '${B}' '${Ae}' is not runnable. Specify an entry or feature module.`,"Module is not runnable.")}let i=new Ye(t),s=de.from(t),a=await ts(s,r.device),c=a.includes("127.0.0.1")||a.includes("localhost"),l=r.product||"default";e.validateProduct(l);let d=r.buildMode||"debug",g;r.skipBuild||(g=await Fb(e,t,o,l,d));let v=Wb(e,o,c,l),P=e.getBundleName(l),ie=Mp(e,o,r.ability);return await Op(i,a,P,v,ie,!!r.uninstall),ie&&await Ac({toolProvider:t,projectRoot:e.rootDir,hdcAdapter:i,targetDeviceId:a,bundleName:P}),g}async function Vb(r,e,t){let n=r.apply;if(!n)throw new Error("apply requires --apply <fileName> (under .hvigor/)");if(bo.basename(n)!==n)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${n}`);let o=bo.join(e.rootDir,".hvigor",n),i=de.from(t),s=await ts(i,r.device),a=r.product||"default";e.validateProduct(a);let c=e.getBundleName(a),l=e.profile.modules.find(v=>e.getModuleType(v.name)==="entry")?.name,d=l?e.getMainAbility(l,r.ability):r.ability||"EntryAbility",g=new ji(t,e.rootDir);try{await g.execute({applyFile:o,productName:a,targetDeviceId:s,bundleName:c,abilityName:d})}catch(v){console.warn(es(`[Apply] failed: ${v.message}`)),console.warn(es('[Apply] Falling back to full "devecocli run"...')),await _p(r,e,t);return}console.log(es('[Apply] Done. If changes did not take effect, check <module>/build/config/buildConfig.json for content, or run "devecocli run" for a full build.')),await Ac({toolProvider:t,projectRoot:e.rootDir,targetDeviceId:s,bundleName:c})}var jp=jb;import{Command as fS}from"commander";import*as Jp from"path";import{green as Gp,red as qp,cyan as Nc}from"colorette";import{execa as Oc}from"execa";import{spawn as Yb}from"child_process";import*as Hp from"fs";import*as rs from"path";import{yellow as Kb}from"colorette";import Xb from"proper-lockfile";import*as So from"fs";import*as $p from"path";import{homedir as Gb}from"os";var qb="deveco-cli",Fp,Tc=class extends Error{constructor(e){super(e),this.name="CliDataDirError"}};function zb(){let r=process.env.DEVECO_CLI_DATA_DIR,t=(r===void 0||r===""?"":Za(r))||$p.join(Gb(),".local","share",qb);try{return ki(t)}catch(n){throw new Tc(n instanceof Error?n.message:String(n))}}function Pe(){if(Fp!==void 0)return Fp;let r=zb();try{if(So.existsSync(r))return So.realpathSync(r)}catch{}return r}function Eo(){return"@yinsen/deveco-cli"}function ir(){return"1.3.3-Test.3"}function vn(){return"test"}function wn(){let r=process.env.DEVECO_CLI_DISABLE_UPDATE;return r==="check"||r==="all"?r:"off"}import*as Po from"fs";import*as Co from"path";var Jb={lastCheckedTimestamp:null,latestVersion:null,blockedVersions:[],checkError:null},xc=new Map,sr=class r{static CHECK_WINDOW_HOUR=21;static ONE_DAY_MS=1440*60*1e3;cacheFilePath;lockFilePath;constructor(e){this.cacheFilePath=Co.join(e,"cache.json"),this.lockFilePath=Co.join(e,"check.lock")}async writeSuccess(e,t=[],n,o){await this.write({lastCheckedTimestamp:Date.now(),latestVersion:e,blockedVersions:t,checkError:null,checkedAgainstVersion:n,checkedAgainstTag:o})}async writeError(e){let t=this.read();await this.write({...t,lastCheckedTimestamp:Date.now(),checkError:e})}getLatestVersion(){return this.read().latestVersion}getBlockedVersions(){return[...this.read().blockedVersions]}getCheckedAgainstVersion(){return this.read().checkedAgainstVersion}getCheckedAgainstTag(){return this.read().checkedAgainstTag}isCheckNeeded(){let{lastCheckedTimestamp:e}=this.read();if(!e||e>Date.now())return!0;let t=new Date().setHours(r.CHECK_WINDOW_HOUR,0,0,0),n=t>Date.now()?t-r.ONE_DAY_MS:t;return e<n}getLockPath(){return this.lockFilePath}read(){let e=xc.get(this.cacheFilePath);if(e)return e;try{let t=Po.readFileSync(this.cacheFilePath,"utf-8"),n=JSON.parse(t);return xc.set(this.cacheFilePath,n),n}catch{return{...Jb}}}async write(e){u(()=>`Writing update cache: lastChecked=${e.lastCheckedTimestamp}, latest=${e.latestVersion}, blocked=[${e.blockedVersions.join(",")}], error=${e.checkError}`),await Po.promises.mkdir(Co.dirname(this.cacheFilePath),{recursive:!0}),await Po.promises.writeFile(this.cacheFilePath,JSON.stringify(e,null,2),"utf-8"),xc.set(this.cacheFilePath,e)}};var ko=class{constructor(e){this.actionCommand=e}cache=new sr(rs.join(Pe(),"update"));async checkAndNotify(){if(!this.shouldSkip())try{let e=ir(),t=vn(),n=this.cache.getCheckedAgainstVersion(),o=this.cache.getCheckedAgainstTag(),i=o!=null&&o!==t,s=n!=null&&n!==e,a=i?null:this.cache.getLatestVersion();a&&ru(a,e)>0&&(console.log(),console.log(Kb(`New version ${a} available, run \`devecocli update\` to upgrade`))),(i||s||this.cache.isCheckNeeded())&&await this.spawnBackgroundCheck()}catch(e){u(`Update check failed: ${e instanceof Error?e.message:String(e)}`)}}shouldSkip(){let e=this.actionCommand;for(;e;){if(e.name()==="update")return!0;e=e.parent}return!1}async spawnBackgroundCheck(){if(!process.argv[1]?.endsWith(".ts"))try{await Zb(this.cache.getLockPath(),()=>{let e=[process.argv[1],"update","_check"];u(`Executing: ${process.execPath} ${e.join(" ")}`),Yb(process.execPath,e,{detached:!0,stdio:["ignore","ignore","ignore"],env:{...process.env,DEVECO_CLI_SKIP_VERSION_CHECK:"1"}}).unref()})}catch{u("Update check lock held by another process, skipping")}}};async function Zb(r,e){await Hp.promises.mkdir(rs.dirname(r),{recursive:!0});let t=await Xb.lock(r,{stale:6e4,retries:0,realpath:!1});try{await e()}finally{await t()}}import*as ns from"fs";import*as bn from"path";import{execa as Qb}from"execa";import{yellow as eS}from"colorette";function tS(r){return r?r.endsWith(".ts"):!0}function rS(r,e){let t=bn.join(r,"package.json");try{return JSON.parse(ns.readFileSync(t,"utf8")).name===e}catch{return!1}}function nS(r,e){let t;try{t=bn.dirname(ns.realpathSync(r))}catch{return null}for(let n=0;n<20&&t&&t!==bn.dirname(t);n++){if(rS(t,e))return t;t=bn.dirname(t)}return null}async function oS(){try{u("Executing: npm root -g");let{stdout:r}=await Qb("npm",["root","-g"]);return r.trim()||null}catch(r){return u(`[install-check] npm root -g failed: ${r instanceof Error?r.message:String(r)}`),null}}function iS(r,e){return Xa(r,e)}async function Lc(r){if(process.env.DEVECO_CLI_SKIP_INSTALL_CHECK)return;let e=process.argv[1];if(tS(e))return;let t=await oS();if(!t)return;let n=nS(e,r);if(!n){u("[install-check] running package root not found, skipping");return}iS(n,t)||(console.log(),console.log(eS(`Warning: devecocli is running from
73
+ ${n}
74
+ but \`npm\` in PATH installs global packages to
75
+ ${t}
76
+ The devecocli binary in PATH does not match the npm that \`devecocli update\` uses.
77
+ The update would land in the wrong place and would not reach the binary you are running.
78
+ Continuing with update \u2014 abort if this is unexpected.
79
+ Fix: run \`which -a devecocli\` (Windows: \`where devecocli\`) to list all shims, remove the stale one, or reinstall with the matching npm: \`npm install -g ${r}@latest\`.`)))}import{Command as sS}from"commander";import{green as Up,cyan as os}from"colorette";import{execa as Io}from"execa";import*as st from"path";import*as re from"fs/promises";import*as Wp from"crypto";var ar="@yinsen/deveco-cli-docs-zh",Bp=1;async function aS(r,e){let t=`${r}.tmp.${process.pid}`;await re.writeFile(t,JSON.stringify(e,null,2),"utf-8"),await re.rename(t,r)}function cS(r,e){let t=e.indexOf("-");if(t<0)return!1;let n=e.slice(0,t),o=e.slice(t+1);if(n!=="sha512")return!1;let i=Buffer.from(o,"base64");return Wp.createHash(n).update(r).digest().equals(i)}async function lS(){u(`Executing: npm view ${ar} --json`);let{stdout:r}=await Io("npm",["view",ar,"--json"]),e=JSON.parse(r);if((e.apiVersion??0)<=Bp)return e;u(`Executing: npm view ${ar} versions --json`);let{stdout:t}=await Io("npm",["view",ar,"versions","--json"]),n=JSON.parse(t);for(let o=n.length-1;o>=0;o--){let i=n[o];u(`Checking: npm view ${ar}@${i} --json`);let{stdout:s}=await Io("npm",["view",`${ar}@${i}`,"--json"]),a=JSON.parse(s);if((a.apiVersion??0)<=Bp)return console.log(os(`Latest v${e.version} is incompatible with current CLI, using compatible v${a.version}`)),a}throw new Error(`Documentation package latest v${e.version} (apiVersion ${e.apiVersion??0}) is incompatible with current CLI, and no compatible historical version found, please upgrade CLI`)}async function dS(r,e,t){u(`Executing: npm pack ${ar}@${r}`);let{stdout:n}=await Io("npm",["pack",`${ar}@${r}`],{cwd:t}),o=n.trim().split(`
80
+ `).pop(),i=st.join(t,o),s=await re.readFile(i);if(!cS(s,e))throw await re.unlink(i).catch(()=>{}),new Error("Documentation package integrity verification failed");return i}async function uS(r,e,t){let n=st.join(t,e),o=st.join(t,`.tmp-${e}-${process.pid}`);return await re.rm(n,{recursive:!0,force:!0}),await re.rm(o,{recursive:!0,force:!0}),await re.mkdir(o,{recursive:!0}),u(`Executing: tar -xzf ${st.basename(r)} -C ${o}`),await Io("tar",["-xzf",r,"-C",o]),await re.rename(st.join(o,"package"),n),await re.rm(o,{recursive:!0,force:!0}),await re.unlink(r).catch(()=>{}),await re.access(st.join(n,"dist","engine","index.js")),await re.access(st.join(n,"docs.zip")),await re.access(st.join(n,"index.zip")),n}var pS=new sS("docs").description("Update documentation to the latest compatible version").option("--force","Force re-download even if up to date").option("--check","Check for updates without installing").action(async r=>{let e=Pe(),t=st.join(e,"doc-data");await re.mkdir(t,{recursive:!0}),console.log(os("Checking for documentation updates..."));let n=await lS(),o=n.version,i=n.apiVersion??0,s=st.join(t,"current.json"),a=null;try{a=JSON.parse(await re.readFile(s,"utf-8"))}catch{}if(!r.force&&a?.version===o){console.log(Up(`Documentation is already up to date v${o}`));return}if(r.check){console.log(os(`New version v${o} found (current v${a?.version??"none"})`));return}console.log(os(`Downloading documentation package v${o}...`));let c=await dS(o,n.dist.integrity,t);await uS(c,o,t),await aS(s,{version:o,apiVersion:i,installedAt:Date.now(),installedBy:"update-docs"}),console.log(Up(`Documentation updated to v${o}`))}),Vp=pS;var is=new fS("update").description("Update deveco-cli to latest");is.command("_check",{hidden:!0}).action(async()=>{let r=Date.now(),e=new sr(Jp.join(Pe(),"update"));try{let t=vn(),n=Eo();u(`Executing: npm view ${n}@${t} --json`);let{stdout:o}=await Oc("npm",["view",`${n}@${t}`,"--json"]),i=JSON.parse(o),s=typeof i.version=="string"?i.version.trim():null,a=Array.isArray(i.blockedVersions)?i.blockedVersions:[];await e.writeSuccess(s,a,ir(),t),await zp(r,!0,null)}catch(t){await e.writeError(t instanceof Error?t.message:String(t));let n=t,o=n.code??n.name??"UnknownError";await zp(r,!1,o)}});var mS={event:b.CommandExecuted,args:["update"]},hS={event:b.CommandExecuted,args:["update","_check"]};async function Mc(r,e,t){let n={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(mS,n).catch(()=>{})}async function zp(r,e,t){let n={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(hS,n).catch(()=>{})}is.action(async()=>{if(wn()==="all")throw new Error("devecocli update is disabled (DEVECO_CLI_DISABLE_UPDATE=all).");await Lc(Eo());let r=Date.now(),e=ir(),t=vn();console.log(Nc("Checking for updates..."));let n=Eo();try{let{stdout:o}=await Oc("npm",["view",n,`dist-tags.${t}`]),i=o.trim();if(!i||i===e){console.log(Gp(`
81
+ ${n} is already up to date (v${e}, tag: ${t})`)),await Mc(r,!0,null);return}console.log(Nc(`
82
+ New version found: ${i} (current: ${e})`)),console.log(Nc(`Updating ${n}...`)),await Oc("npm",["install","-g",`${n}@${t}`],{stdio:"inherit"}),console.log(`
83
+ `+Gp(`${n} updated successfully to version ${i}.`)),await Mc(r,!0,null)}catch(o){let i=o,s=i.code??i.name??"UnknownError";console.error(qp(`Failed to update ${n}`)),i.message&&console.error(qp(i.message)),await Mc(r,!1,s),process.exit(1)}});is.addCommand(Vp);var Yp=is;import{Command as VS,Option as uf}from"commander";import{execa as ss}from"execa";function Ce(r){return r.normalize("NFKC").replace(/\s+/g," ").trim()}function Kp(r){let e=r.normalize("NFKC").match(/\((\d+)(?:\.\d+)*\)/)?.[1];return e!==void 0&&Number(e)>=26}import{spawn as gS}from"child_process";var yS=2500;function vS(r,e,t,n,o,i){r.once("exit",s=>{if(i())return;clearTimeout(e);let a=t();s===0||s===null?n():o(a||`Emulator process exited with code ${s}`)})}function wS(r,e,t,n){let o=!1,i=()=>o,s=()=>Buffer.concat(e).toString("utf8").trim(),a=()=>{o||(o=!0,clearTimeout(l),r.removeAllListeners(),r.stderr?.removeAllListeners(),r.stderr?.destroy(),r.unref(),t())},c=d=>{if(!o){o=!0,clearTimeout(l),r.removeAllListeners(),r.stderr?.removeAllListeners();try{r.kill()}catch{}n(new Error(d))}},l=setTimeout(a,yS);r.once("error",d=>c(d.message)),vS(r,l,s,a,c,i)}function Xp(r,e,t){u(`Spawning emulator: ${r} ${t.join(" ")}`);let n=[],o=gS(r,t,{detached:!0,stdio:["ignore","ignore","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},windowsHide:!0});o.stderr?.on("data",a=>n.push(a));let i=o.pid!==void 0&&!Et()?an(o.pid,500,!0):void 0,s=new Promise((a,c)=>{wS(o,n,a,c)});return{pid:o.pid,started:s,tracker:i}}import*as Sn from"path";function bS(r){let e=new Set,t=[];for(let n of r){let o=JSON.stringify(n);e.has(o)||(e.add(o),t.push(n))}return t}function SS(r){let e=r.instancePath?.trim();if(e)return Sn.dirname(Sn.normalize(e)).replace(/\\/g,"/");let t=r.path?.trim();return t?Sn.dirname(Sn.normalize(t)).replace(/\\/g,"/"):""}function ES(r){let e=[];return r&&e.push(["-imageRoot",r]),e.push([]),e}function Zp(r,e){return e?[...r,"-bootmode",e]:r}function PS(r,e,t){let n=[Zp(["-start",r],t)],o=SS(e);if(o)for(let i of ES(e.imageRoot))n.push(Zp(["-hvd",r,"-path",o,...i],t));return bS(n)}async function Qp(r,e,t,n){let o=new Error("No start strategy ran"),i=PS(r,e,n);for(let s of i){let a;try{return a=t(s),await a.started,{ok:!0,args:s,tracker:a.tracker}}catch(c){if(a?.tracker)try{await a.tracker.stop()}catch{}o=c}}return{ok:!1,lastError:o}}function CS(r){let e=r.normalize("NFKC").match(/^\s*chargingStatus\s*:\s*(\d+)\s*$/im);if(!e)return;let t=Number(e[1]);if(t===1||t===3)return!0;if(t===0||t===2)return!1}async function _c(r){return(await de.withHdcPath(r).listDevices()).map(t=>t.serial).filter(It)}async function jc(r){let e=await _c(r);return e.length===0?[]:(await Promise.all(e.map(n=>_i(r,n,"ohos.qemu.hvd.name")))).filter(n=>!!n)}async function ef(r,e){return(await jc(r)).includes(e)}async function tf(r,e){let t=await de.withHdcPath(r).listDevicesWithName(),n=e.normalize("NFKC").replace(/\s+/g," ").trim(),o=t.find(a=>a.name.normalize("NFKC").replace(/\s+/g," ").trim()===n);if(!o||!It(o.serial))throw new Error(`Cannot resolve the running emulator serial for "${e}".`);let i=["-t",o.serial,"shell","hidumper","-s","3302","-a","-i"];u(`Executing: ${r} ${i.join(" ")}`);let s=await ee(r,i);if(s.exitCode===0){let a=CS(s.stdout);if(a!==void 0)return a}throw new Error(`Cannot determine the battery charging state for emulator "${e}".`)}import*as Pn from"path";import{existsSync as kS,statSync as IS}from"fs";function En(r,e){for(let t of e){let n=r[t];if(typeof n=="string"&&n.trim())return n.trim()}return""}function AS(r){let e=En(r,["instancePath","instance_path","InstancePath","instancepath","instanceDir","instance_dir","InstanceDir","deployPath","deploy_path","deployedPath","deployed_path","workPath","work_path","dataPath","data_path"]);if(e)return e;for(let[t,n]of Object.entries(r)){if(typeof n!="string"||!n.trim())continue;let o=t.toLowerCase();if(o.includes("instance")&&(o.includes("path")||o.includes("dir"))||o==="deployedpath")return n.trim()}return""}function DS(r){return En(r,["uuid","UUID","Uuid","instanceUuid","instance_uuid","InstanceUuid"])}function RS(r){let e=r.find(n=>n.instancePath?.trim());if(!e?.instancePath?.trim())return;let t=Pn.dirname(Pn.normalize(e.instancePath));for(let n of r){if(n.instancePath?.trim())continue;let o=S.ensurePathWithinRoot(t,Pn.join(t,n.name));kS(o)&&IS(o).isDirectory()&&(n.instancePath=o.replace(/\\/g,"/"))}}function TS(r){try{let e=JSON.parse(r);return Array.isArray(e)?e.map(t=>{let n=DS(t),o=En(t,["deviceType","DeviceType","devicetype"]),i=En(t,["os.osVersion","osVersion","OsVersion","OSVersion"]);return{name:t.name||t.Name||"",isRunning:t.isRunning===!0||String(t.isRunning).toLowerCase()==="true",instancePath:AS(t),path:En(t,["path","Path","hvdPath","hvd_path"]),imageRoot:En(t,["imageRoot","image_root","ImageRoot"]),uuid:n||void 0,deviceType:o||void 0,osVersion:i||void 0}}).filter(t=>t.name):null}catch{return null}}function xS(r){let e=[],t=/^(name|isrunning|instancepath|path|imageroot|devicetype|os\.osversion)\s*:\s*(.+)/gim,n=null,o;for(;(o=t.exec(r))!==null;){let[,i,s]=o;if(i.toLowerCase()==="name")n&&e.push(n),n={name:s.trim()};else if(n){let a=i.toLowerCase();a==="isrunning"?n.isRunning=s.trim().toLowerCase()==="true":a==="instancepath"?n.instancePath=s.trim():a==="path"?n.path=s.trim():a==="imageroot"?n.imageRoot=s.trim():a==="devicetype"?n.deviceType=s.trim():a==="os.osversion"&&(n.osVersion=s.trim())}}return n&&e.push(n),e}function rf(r){let t=TS(r)??xS(r);return RS(t),t}function Fc(r,e){for(let t of e){let n=r[t];if(typeof n=="string"&&n.trim())return n.trim()}return""}function LS(r){let e=r.downloaded??r.Downloaded;return e===!0||String(e).toLowerCase()==="true"}function NS(r){let e=Fc(r,["osVersion","OsVersion","OSVersion"]),t=Fc(r,["SoftWareVersion","SoftwareVersion","softwareVersion"]),n=Fc(r,["deviceType","DeviceType"]);return!e&&!t?null:{osVersion:e,softwareVersion:t,deviceType:n}}function nf(r,e=()=>!0){let t=r.trim();if(!t)return[];try{let n=JSON.parse(t);if(!Array.isArray(n))return[];let o=[];for(let i of n){if(!i||typeof i!="object")continue;let s=i;if(!e(s))continue;let a=NS(s);a&&o.push(a)}return o}catch{return[]}}function of(r){return nf(r)}function sf(r){return nf(r,LS)}var af=/no images are available/i,MS=/Scenario simulation failed\s*[::]/i,OS="7.0.0";function jt(r){return r.normalize("NFKC").trim().toLowerCase()}function _S(r){let e=r.message||"";return af.test(e)}function jS(r){return r.normalize("NFKC").match(/(\d+(?:\.\d+){1,3})/)?.[1]}function Ao(r,e){return`${r} ${e.join(" ")}`.trim()}function FS(r){switch(r.type){case"gps":return`${r.type}:${r.key}=${r.value}`;case"sensor":return`${r.type}:${r.key}=${r.value}`;case"rotation":case"volume":return`${r.type}:${r.direction}`;case"folded-state":return`${r.type}:${r.state}`;case"battery":return`${r.type}:${r.level}`;case"battery-status":return`${r.type}:${r.status}`;default:return r.type}}var Cn=class r{static supportedControlPaths=new Set;emulatorPath;sdkPath;hdcPath;constructor(e,t,n){this.emulatorPath=e,this.sdkPath=t,this.hdcPath=n}static from(e){return new r(e.emulatorPath,e.sdkPath,e.hdcPath)}async executeEmulator(e){return u(`Executing: ${Ao(this.emulatorPath,e)}`),ss(this.emulatorPath,e,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath}})}executeEmulatorDetached(e){return Xp(this.emulatorPath,this.sdkPath,e)}async listEmulators(e){let t=["-list","-details"];e!==void 0&&t.push("-instancePath",e);let{stdout:n}=await this.executeEmulator(t);return rf(n)}async listEmulatorDetails(){let{stdout:e}=await this.executeEmulator(["-list","-details"]);return e}async getDeviceTypeByName(){let e=new Map;try{let t=await this.listEmulators();for(let n of t)n.name&&n.deviceType&&e.set(Ce(n.name),n.deviceType)}catch{}return e}async startEmulator(e){let t=await this.listEmulators(),n=Ce(e),o=t.find(a=>Ce(a.name)===n);if(!o)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let i=o.name;if(await this.isAlreadyRunning(i,o))return{status:"already-running"};let s=await Qp(i,o,a=>this.executeEmulatorDetached(a),"snapshot");if(s.ok)return{status:"started",args:s.args,tracker:s.tracker};if(await this.isAlreadyRunning(i))return{status:"already-running"};throw new w(`Unable to start emulator "${e}". All methods failed.
61
84
  Last error: ${s.lastError.message||"unknown"}`,`Unable to start emulator. All methods failed.
62
- Last error: ${s.lastError.message||"unknown"}`)}async isAlreadyRunning(e,t){return t?.isRunning===!0||t===void 0&&(await this.listEmulators()).find(i=>i.name===e)?.isRunning===!0?!0:Yu(this.hdcPath,e)}async stopEmulator(e){let t=await this.listEmulators(),r=Se(e),i=t.find(a=>Se(a.name)===r);if(!i)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let o=i.name;return await this.isAlreadyRunning(o,i)?(await this.executeEmulator(["-stop",o]),"stopped"):"already-stopped"}async controlEmulator(e,t){await this.assertControlCommandSupported();let i=(await this.listEmulators()).find(s=>s.name===e);if(!i)throw new w(`Emulator "${e}" not found.`,"Emulator instance not found.");if(!await this.isAlreadyRunning(i.name,i))throw new w(`Emulator "${e}" is not running.`,"Emulator instance is not running.");if(t.type==="battery"&&!await Ku(this.hdcPath,i.name)&&t.level===0)throw new Error("Battery level must be an integer in [1, 100] while the emulator is not charging.");let o=this.buildControlArgs(i.name,t);p(`[EmulatorManager] control ${ib(t)} -> ${pi(this.emulatorPath,o)}`),await this.runEmulatorChecked(o,{extraReject:t.type==="folded-state"?[eb]:void 0,printOutputOnSuccess:!1})}async assertControlCommandSupported(){let e=this.emulatorPath;if(n.supportedControlPaths.has(e))return;let t=["-version"];p(`Executing: ${pi(this.emulatorPath,t)}`);let{stdout:r,stderr:i,exitCode:o}=await Mo(this.emulatorPath,t,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1,maxBuffer:1024*1024}),s=[r,i].filter(Boolean).join(`
63
- `).trim(),a=rb(s);if(o!==0||!a)throw new Error("Emulator scene control commands require Emulator 7.0 or later. Unable to determine the current Emulator version.");if(A.compareVersion(a,tb)<0)throw new Error(`Emulator scene control commands require Emulator 7.0 or later. Current Emulator version is ${a}. Please upgrade DevEco Studio or the Emulator SDK.`);n.supportedControlPaths.add(e)}buildControlArgs(e,t){let r=["-instance",e];switch(t.type){case"shake":return[...r,"-shake"];case"power":return[...r,"-power"];case"rotation":return[...r,"-rotation",t.direction];case"volume":return[...r,"-volume",t.direction];case"folded-state":return[...r,"-foldedState",t.state];case"battery":return[...r,"-battery",String(t.level)];case"battery-status":return[...r,"-batteryStatus",String(t.status)];case"gps":return[...r,"-gps",`-${t.key}`,t.value];case"outdoor-running":return[...r,"-outdoorRunning"];case"outdoor-cycling":return[...r,"-outdoorCycling"];case"driving-navigation":return[...r,"-drivingNavigation"];case"sensor":return[...r,"-sensor",`-${t.key}`,String(t.value)];default:throw new Error(`Unknown emulator control action type: ${t.type}`)}}async executeEmulatorInherit(e){p(`Executing: ${pi(this.emulatorPath,e)}`);let{exitCode:t}=await Mo(this.emulatorPath,e,{stdio:"inherit",env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1});if(t!==0)throw new Error(`Emulator exited with code ${t===null?"null":t}.`)}async installEmulatorImage(e){let t=["-install","-deviceType",e.deviceType,"-osVersion",e.osVersion];e.force&&t.push("-force"),await this.executeEmulatorInherit(t)}async hasAvailableEmulatorImage(e){let t=await this.listEmulatorImages({deviceType:e.deviceType}),r=Dt(e.deviceType),i=Dt(e.osVersion);return Qu(t).some(o=>Dt(o.deviceType)===r&&Dt(o.osVersion)===i)}async uninstallEmulatorImage(e){let t=await this.resolveSoftwareVersionsForUninstall(e);if(t.length===0)throw new Error(`No downloaded image matches --os-version "${e.osVersion}" for --device-type "${e.deviceType}".`);let r;try{await this.runUninstallImageChecked(e.deviceType,e.osVersion)}catch(o){if(!nb(o))throw o;r=o}(r!==void 0||await this.hasMatchingDownloadedImage(e))&&await this.runSoftwareVersionFallback(e,t,r)}async listEmulatorImages(e){let t=["-imageList"];e.deviceType&&t.push("-deviceType",e.deviceType),e.downloaded!==void 0&&t.push("-downloaded",e.downloaded?"true":"false");let{stdout:r}=await this.executeEmulator(t);return r}async listDownloadedImageOsVersions(){let e=await this.listEmulatorImages({downloaded:!0});return ep(e)}async hasMatchingDownloadedImage(e){return(await this.findMatchingDownloadedImages(e)).length>0}async runSoftwareVersionFallback(e,t,r){try{for(let i of t)await this.runUninstallImageChecked(e.deviceType,i)}catch(i){let o=r!==void 0?`Primary uninstall failed: ${r.message}
64
- `:"";throw new Error(`${o}Fallback uninstall failed: ${i.message}`,{cause:i})}if(await this.hasMatchingDownloadedImage(e))throw new Error(`Image for --device-type "${e.deviceType}" and --os-version "${e.osVersion}" remains listed as downloaded after uninstallation.`)}async resolveSoftwareVersionsForUninstall(e){let t=await this.findMatchingDownloadedImages(e);return[...new Set(t.map(r=>r.softwareVersion).filter(Boolean))]}async findMatchingDownloadedImages(e){let t=await this.listEmulatorImages({deviceType:e.deviceType,downloaded:!0}),r=lc(t),i=Dt(e.deviceType),o=Dt(e.osVersion);return r.filter(s=>Dt(s.deviceType)===i&&(Dt(s.osVersion)===o||Dt(s.softwareVersion)===o))}async runUninstallImageChecked(e,t){await this.runEmulatorChecked(["-uninstall","-deviceType",e,"-osVersion",t,"-force"],{printOutputOnSuccess:!0,extraReject:[tp]})}async runEmulatorChecked(e,t){p(`Executing: ${pi(this.emulatorPath,e)}`);let{stdout:r,stderr:i,exitCode:o}=await Mo(this.emulatorPath,e,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1,maxBuffer:20*1024*1024}),s=[r,i].filter(Boolean).join(`
65
- `).trim(),a=/Invalid command|无效命令|鏃犳晥鍛戒护/i.test(s)||/please attach the correct parameter/i.test(s),c=(t?.extraReject??[]).some(d=>d.test(s));if(o!==0||a||c)throw new Error(s||`emulator exited with code ${o===null?"null":o}`);if(t?.printOutputOnSuccess!==!1&&s){let d=(t?.transformOutput?t.transformOutput(s):s).trim();d&&console.log(d)}}async checkExistingVirtualDevice(e,t){let r=await this.listEmulators(),i=Se(e),o=r.find(s=>Se(s.name)===i);if(o)if(t)await this.deleteVirtualDevice(o.name);else throw new w(`Emulator "${e}" already exists. Use \`--force\` to overwrite.`,"Emulator already exists.");return i}async createVirtualDevice(e){let t=await this.checkExistingVirtualDevice(e.name,e.force),r=["-create",e.name,"-deviceType",e.deviceType,"-osVersion",e.osVersion];if(qu(e.osVersion)&&r.push("-hotBoot","true"),await this.runEmulatorChecked(r,{extraReject:[/Device create fail/i,/already exists/i,/Invalid OS version/i,/cannot be empty/i],printOutputOnSuccess:!0,transformOutput:o=>o.split(/\r?\n/).map(s=>s.trim().startsWith("Device create success.")?"Device create success.":s).join(`
66
- `)}),!await this.waitForEmulatorPresenceByList(t))throw new w(`Emulator "${e.name}" was reported as created, but it did not appear in the emulator list within the waiting period. Open the device manager list in DevEco Studio, then run this command again.`,"Emulator was reported as created, but it did not appear in the emulator list within the waiting period.")}async waitForEmulatorPresenceByList(e,t=1e4,r=500){let i=Date.now()+t;for(;Date.now()<i;){if((await this.listEmulators()).some(a=>Se(a.name)===e))return!0;await new Promise(a=>setTimeout(a,r))}return!1}async deleteVirtualDevice(e){let t=await this.listEmulators(),r=Se(e),i=t.find(s=>Se(s.name)===r);if(!i)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let o=i.name;if(i.isRunning===!0||await this.isAlreadyRunning(o,i))throw new w(`Failed to delete device: ${o}
67
- The device may be running.`,"Failed to delete device, The device may be running.");return await this.runEmulatorChecked(["-delete",o,"-force"],{printOutputOnSuccess:!1}),o}};import{red as ub,yellow as pb,gray as fb}from"colorette";import mb from"ora";import{green as ob}from"colorette";var sb=[[4352,4447],[9001,9002],[11904,42191],[43360,43388],[44032,55203],[63744,64255],[65040,65049],[65072,65135],[65281,65376],[65504,65510],[127744,129535],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191456]],ab=[[0,31],[127,159],[768,879],[6832,6911],[7616,7679],[8203,8207],[8400,8447],[65024,65039],[65056,65071],[8205,8205]],cb=new RegExp("\x1B\\[([0-9;]*)[a-zA-Z]","g");function np(n,e){for(let[t,r]of e)if(n>=t&&n<=r)return!0;return!1}function dc(n){let e=n.replace(cb,""),t=0,r=0;for(;r<e.length;){let i=e.codePointAt(r);if(i===void 0)break;np(i,ab)||(np(i,sb)?t+=2:t+=1),r+=i>65535?2:1}return t}function rp(n,e){let t=dc(n);return n+" ".repeat(Math.max(0,e-t))}function lb(n,e){return n.map((t,r)=>{let i=dc(t);for(let o of e){let s=o.cells[r]??"";i=Math.max(i,dc(s))}return i})}function Rt(n,e){let t=lb(n,e),r=[];r.push(n.map((i,o)=>rp(i,t[o])).join(" ")),r.push(t.map(i=>"-".repeat(i)).join(" "));for(let i of e){let o=i.cells.map((s,a)=>rp(s??"",t[a])).join(" ").trimEnd();r.push(i.highlight?ob(o):o)}return r.join(`
68
- `)}async function sp(n,e){let t=Date.now(),r=!0,i=null;try{await e()}catch(o){r=!1,i=B(o),console.error(ub(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(n,o)}}function hb(n,e){if(e.size!==0)for(let t of n){if(!t.isEmulator||!t.name)continue;let r=e.get(Se(t.name));r&&(t.deviceType=r)}}var gb=["Name","Serial","Kind","Device Type"];function yb(n){return{cells:[n.name??n.serial,n.serial,n.isEmulator?"emulator":"device",n.deviceType??"-"],highlight:!0}}function ap(n,e){return n.isEmulator!==e.isEmulator?n.isEmulator?1:-1:(n.name??n.serial).localeCompare(e.name??e.serial)}function vb(){console.log(pb(" No active devices.")),console.log(fb(" Connect a USB device with debugging enabled, or start an emulator with `devecocli emulator start <name>`."))}function wb(n){let t=[...n].sort(ap).map(yb);console.log(Rt(gb,t))}function bb(n){return{name:n.name??n.serial,serial:n.serial,kind:n.isEmulator?"emulator":"device",deviceType:n.deviceType}}function Sb(n){let e=[...n].sort(ap);console.log(JSON.stringify(e.map(bb),null,2))}async function Eb(n,e){if(!n.some(i=>i.isEmulator)||!e.emulatorPath)return;let r=await pr.from(e).getDeviceTypeByName();hb(n,r)}async function ip(n,e,t,r="table"){try{let i=await n.getConnectedEntries();if(await Eb(i,e),t?.stop(),r==="json"){Sb(i);return}i.length===0?vb():wb(i)}catch(i){throw new w(`Failed to list devices: ${i.message}`,"Failed to list devices.")}finally{t?.stop()}}async function Pb(n,e){let t=await n.listDevices();if(t.length<2)return;let r=["Multiple devices connected. Specify a device with:"];for(let i of t){let o=await n.getDeviceName(i.serial);r.push(` ${e} -t ${i.serial} # ${o}`)}throw new w(r.join(`
69
- `),"Multiple devices connected.")}async function Cb(n,e,t="table"){e||await Pb(n,"devecocli device view");let r=await n.listDevices(),i=await n.getDeviceInfo(r,e);if(!i){if(t==="json"){console.error("No connected device found."),process.exitCode=1;return}throw new w("No connected device found.")}let o=await n.getDeviceDetail(i.serial),s=await n.getDeviceName(i.serial);if(t==="json"){let a={name:s,serial:i.serial,kind:yt(i.serial)?"emulator":"device",deviceType:o.deviceType,osVersion:o.osVersion};console.log(JSON.stringify(a,null,2));return}console.log(` Serial: ${i.serial}`),console.log(` Device Name: ${s}`),o.deviceType&&console.log(` Device Type: ${o.deviceType}`),o.osVersion&&console.log(` OS Version: ${o.osVersion}`)}async function cp(){try{let n=await A.new();return{manager:oe.from(n),toolProvider:n}}catch(n){throw new w(`Failed to initialize device manager: ${n.message}`,"Failed to initialize device manager.")}}var uc=new db("device").description("Manage connected devices");uc.command("list").description("List all connected devices").addOption(new op("--format <format>","Output format").choices(["table","json"]).default("table")).action(async n=>{let e={event:b.CommandExecuted,args:["device","list",...n.format==="json"?["--format","json"]:[]]};await sp(e,async()=>{let{manager:t,toolProvider:r}=await cp();if(n.format==="json"){await ip(t,r,void 0,"json");return}let i=mb({text:"Querying connected devices\u2026",color:"cyan"}).start();await ip(t,r,i,"table")})});uc.command("view").description("Show detailed device information").option("-t, --target <serialOrName>","Target device serial or device name").addOption(new op("--format <format>","Output format").choices(["table","json"]).default("table")).action(async n=>{let e={event:b.CommandExecuted,args:["device","view",...n.target?["--target"]:[],...n.format==="json"?["--format","json"]:[]]};await sp(e,async()=>{let{manager:t}=await cp();await Cb(t,n.target,n.format)})});var lp=uc;import{Argument as wc,Command as bc,Option as hr}from"commander";import{green as hi,cyan as mr,red as Fo,yellow as wt,gray as vc}from"colorette";import Hb from"ora";import kb from"readline/promises";import{execa as up}from"execa";import*as en from"fs/promises";import*as fc from"os";import*as _n from"path";var pc=`1/4:\r
85
+ Last error: ${s.lastError.message||"unknown"}`)}async isAlreadyRunning(e,t){return t?.isRunning===!0||t===void 0&&(await this.listEmulators()).find(o=>o.name===e)?.isRunning===!0?!0:ef(this.hdcPath,e)}async stopEmulator(e){let t=await this.listEmulators(),n=Ce(e),o=t.find(a=>Ce(a.name)===n);if(!o)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let i=o.name;return await this.isAlreadyRunning(i,o)?(await this.executeEmulator(["-stop",i]),"stopped"):"already-stopped"}async controlEmulator(e,t){await this.assertControlCommandSupported();let o=(await this.listEmulators()).find(s=>s.name===e);if(!o)throw new w(`Emulator "${e}" not found.`,"Emulator instance not found.");if(!await this.isAlreadyRunning(o.name,o))throw new w(`Emulator "${e}" is not running.`,"Emulator instance is not running.");if(t.type==="battery"&&!(t.assumedCharging?!0:await tf(this.hdcPath,o.name))&&t.level===0)throw new Error("Battery level must be an integer in [1, 100] while the emulator is not charging.");let i=this.buildControlArgs(o.name,t);u(`[EmulatorManager] control ${FS(t)} -> ${Ao(this.emulatorPath,i)}`),await this.runEmulatorChecked(i,{extraReject:t.type==="folded-state"?[MS]:void 0,printOutputOnSuccess:!1})}async assertControlCommandSupported(){let e=this.emulatorPath;if(r.supportedControlPaths.has(e))return;let t=["-version"];u(`Executing: ${Ao(this.emulatorPath,t)}`);let{stdout:n,stderr:o,exitCode:i}=await ss(this.emulatorPath,t,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1,maxBuffer:1024*1024}),s=[n,o].filter(Boolean).join(`
86
+ `).trim(),a=jS(s);if(i!==0||!a)throw new Error("Emulator scene control commands require Emulator 7.0 or later. Unable to determine the current Emulator version.");if(A.compareVersion(a,OS)<0)throw new Error(`Emulator scene control commands require Emulator 7.0 or later. Current Emulator version is ${a}. Please upgrade DevEco Studio or the Emulator SDK.`);r.supportedControlPaths.add(e)}buildControlArgs(e,t){let n=["-instance",e];switch(t.type){case"shake":return[...n,"-shake"];case"power":return[...n,"-power"];case"rotation":return[...n,"-rotation",t.direction];case"volume":return[...n,"-volume",t.direction];case"folded-state":return[...n,"-foldedState",t.state];case"battery":return[...n,"-battery",String(t.level)];case"battery-status":return[...n,"-batteryStatus",String(t.status)];case"gps":return[...n,"-gps",`-${t.key}`,t.value];case"outdoor-running":return[...n,"-outdoorRunning"];case"outdoor-cycling":return[...n,"-outdoorCycling"];case"driving-navigation":return[...n,"-drivingNavigation"];case"sensor":return[...n,"-sensor",`-${t.key}`,String(t.value)];default:throw new Error(`Unknown emulator control action type: ${t.type}`)}}async executeEmulatorInherit(e){u(`Executing: ${Ao(this.emulatorPath,e)}`);let{exitCode:t}=await ss(this.emulatorPath,e,{stdio:"inherit",env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1});if(t!==0)throw new Error(`Emulator exited with code ${t===null?"null":t}.`)}async installEmulatorImage(e){let t=["-install","-deviceType",e.deviceType,"-osVersion",e.osVersion];e.force&&t.push("-force"),await this.executeEmulatorInherit(t)}async hasAvailableEmulatorImage(e){let t=await this.listEmulatorImages({deviceType:e.deviceType}),n=jt(e.deviceType),o=jt(e.osVersion);return of(t).some(i=>jt(i.deviceType)===n&&jt(i.osVersion)===o)}async uninstallEmulatorImage(e){let t=await this.resolveSoftwareVersionsForUninstall(e);if(t.length===0)throw new Error(`No downloaded image matches --os-version "${e.osVersion}" for --device-type "${e.deviceType}".`);let n;try{await this.runUninstallImageChecked(e.deviceType,e.osVersion)}catch(i){if(!_S(i))throw i;n=i}(n!==void 0||await this.hasMatchingDownloadedImage(e))&&await this.runSoftwareVersionFallback(e,t,n)}async listEmulatorImages(e){let t=["-imageList"];e.deviceType&&t.push("-deviceType",e.deviceType),e.downloaded!==void 0&&t.push("-downloaded",e.downloaded?"true":"false");let{stdout:n}=await this.executeEmulator(t);return n}async hasMatchingDownloadedImage(e){return(await this.findMatchingDownloadedImages(e)).length>0}async runSoftwareVersionFallback(e,t,n){try{for(let o of t)await this.runUninstallImageChecked(e.deviceType,o)}catch(o){let i=n!==void 0?`Primary uninstall failed: ${n.message}
87
+ `:"";throw new Error(`${i}Fallback uninstall failed: ${o.message}`,{cause:o})}if(await this.hasMatchingDownloadedImage(e))throw new Error(`Image for --device-type "${e.deviceType}" and --os-version "${e.osVersion}" remains listed as downloaded after uninstallation.`)}async resolveSoftwareVersionsForUninstall(e){let t=await this.findMatchingDownloadedImages(e);return[...new Set(t.map(n=>n.softwareVersion).filter(Boolean))]}async findMatchingDownloadedImages(e){let t=await this.listEmulatorImages({deviceType:e.deviceType,downloaded:!0}),n=sf(t),o=jt(e.deviceType),i=jt(e.osVersion);return n.filter(s=>jt(s.deviceType)===o&&(jt(s.osVersion)===i||jt(s.softwareVersion)===i))}async runUninstallImageChecked(e,t){await this.runEmulatorChecked(["-uninstall","-deviceType",e,"-osVersion",t,"-force"],{printOutputOnSuccess:!0,extraReject:[af]})}async runEmulatorChecked(e,t){u(`Executing: ${Ao(this.emulatorPath,e)}`);let{stdout:n,stderr:o,exitCode:i}=await ss(this.emulatorPath,e,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath},reject:!1,maxBuffer:20*1024*1024}),s=[n,o].filter(Boolean).join(`
88
+ `).trim(),a=/Invalid command|无效命令|鏃犳晥鍛戒护/i.test(s)||/please attach the correct parameter/i.test(s),c=(t?.extraReject??[]).some(d=>d.test(s));if(i!==0||a||c)throw new Error(s||`emulator exited with code ${i===null?"null":i}`);if(t?.printOutputOnSuccess!==!1&&s){let d=(t?.transformOutput?t.transformOutput(s):s).trim();d&&console.log(d)}}async checkExistingVirtualDevice(e){let t=await this.listEmulators(e.instancePath),n=Ce(e.name),o=t.find(i=>Ce(i.name)===n);if(o)if(e.force)await this.deleteVirtualDevice(o.name,e.instancePath);else throw new w(`Emulator "${e.name}" already exists. Use \`--force\` to overwrite.`,"Emulator already exists.");return n}buildCreateVirtualDeviceArgs(e){let t=["-create",e.name,"-deviceType",e.deviceType,"-osVersion",e.osVersion];e.instancePath!==void 0&&t.push("-instancePath",e.instancePath),e.imageRoot!==void 0&&t.push("-imageRoot",e.imageRoot),e.screenProfile!==void 0&&t.push("-screenProfile",e.screenProfile),e.screen?.length&&t.push("-screen",...e.screen),e.storage!==void 0&&t.push("-storage",String(e.storage)),e.memory!==void 0&&t.push("-memory",String(e.memory));let n=e.hotBoot??(Kp(e.osVersion)?!0:void 0);return n!==void 0&&t.push("-hotBoot",String(n)),t}async createVirtualDevice(e){let t=await this.checkExistingVirtualDevice(e),n=this.buildCreateVirtualDeviceArgs(e);if(await this.runEmulatorChecked(n,{extraReject:[/Device create fail/i,/already exists/i,/Invalid OS version/i,/cannot be empty/i],printOutputOnSuccess:!0,transformOutput:i=>i.split(/\r?\n/).map(s=>s.trim().startsWith("Device create success.")?"Device create success.":s).join(`
89
+ `)}),!await this.waitForEmulatorPresenceByList(t,e.instancePath))throw new w(`Emulator "${e.name}" was reported as created, but it did not appear in the emulator list within the waiting period. Open the device manager list in DevEco Studio, then run this command again.`,"Emulator was reported as created, but it did not appear in the emulator list within the waiting period.")}async waitForEmulatorPresenceByList(e,t,n=1e4,o=500){let i=Date.now()+n;for(;Date.now()<i;){if((await this.listEmulators(t)).some(c=>Ce(c.name)===e))return!0;await new Promise(c=>setTimeout(c,o))}return!1}async deleteVirtualDevice(e,t){let n=await this.listEmulators(t),o=Ce(e),i=n.find(c=>Ce(c.name)===o);if(!i)throw new w(`Emulator "${e}" not found.`,"Emulator not found.");let s=i.name;if(i.isRunning===!0||await this.isAlreadyRunning(s,i))throw new w(`Failed to delete device: ${s}
90
+ The device may be running.`,"Failed to delete device, The device may be running.");let a=["-delete",s];return t!==void 0&&a.push("-instancePath",t),a.push("-force"),await this.runEmulatorChecked(a,{printOutputOnSuccess:!1}),s}};import{red as GS,yellow as qS,gray as zS}from"colorette";import pf from"ora";import{green as $S}from"colorette";var HS=[[4352,4447],[9001,9002],[11904,42191],[43360,43388],[44032,55203],[63744,64255],[65040,65049],[65072,65135],[65281,65376],[65504,65510],[127744,129535],[131072,173791],[173824,177983],[177984,178207],[178208,183983],[183984,191456]],US=[[0,31],[127,159],[768,879],[6832,6911],[7616,7679],[8203,8207],[8400,8447],[65024,65039],[65056,65071],[8205,8205]],BS=new RegExp("\x1B\\[([0-9;]*)[a-zA-Z]","g");function cf(r,e){for(let[t,n]of e)if(r>=t&&r<=n)return!0;return!1}function $c(r){let e=r.replace(BS,""),t=0,n=0;for(;n<e.length;){let o=e.codePointAt(n);if(o===void 0)break;cf(o,US)||(cf(o,HS)?t+=2:t+=1),n+=o>65535?2:1}return t}function lf(r,e){let t=$c(r);return r+" ".repeat(Math.max(0,e-t))}function WS(r,e){return r.map((t,n)=>{let o=$c(t);for(let i of e){let s=i.cells[n]??"";o=Math.max(o,$c(s))}return o})}function Ft(r,e){let t=WS(r,e),n=[];n.push(r.map((o,i)=>lf(o,t[i])).join(" ")),n.push(t.map(o=>"-".repeat(o)).join(" "));for(let o of e){let i=o.cells.map((s,a)=>lf(s??"",t[a])).join(" ").trimEnd();n.push(o.highlight?$S(i):i)}return n.join(`
91
+ `)}async function Do(r,e){let t=Date.now(),n=!0,o=null;try{await e()}catch(i){n=!1,o=q(i),console.error(GS(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(r,i)}}function JS(r,e){if(e.size!==0)for(let t of r){if(!t.isEmulator||!t.name)continue;let n=e.get(Ce(t.name));n&&(t.deviceType=n)}}var YS=["Name","Serial","Kind","Device Type"];function KS(r){return{cells:[r.name??r.serial,r.serial,r.isEmulator?"emulator":"device",r.deviceType??"-"],highlight:!0}}function ff(r,e){return r.isEmulator!==e.isEmulator?r.isEmulator?1:-1:(r.name??r.serial).localeCompare(e.name??e.serial)}function XS(){console.log(qS(" No active devices.")),console.log(zS(" Connect a USB device with debugging enabled, or start an emulator with `devecocli emulator start <name>`."))}function ZS(r){let t=[...r].sort(ff).map(KS);console.log(Ft(YS,t))}function QS(r){return{name:r.name??r.serial,serial:r.serial,kind:r.isEmulator?"emulator":"device",deviceType:r.deviceType}}function eE(r){let e=[...r].sort(ff);console.log(JSON.stringify(e.map(QS),null,2))}async function tE(r,e){if(!r.some(o=>o.isEmulator)||!e.emulatorPath)return;let n=await Cn.from(e).getDeviceTypeByName();JS(r,n)}async function df(r,e,t,n="table"){try{let o=await r.getConnectedEntries();if(await tE(o,e),t?.stop(),n==="json"){eE(o);return}o.length===0?XS():ZS(o)}catch(o){throw new w(`Failed to list devices: ${o.message}`,"Failed to list devices.")}finally{t?.stop()}}async function rE(r,e){let t=await r.listDevices();if(t.length<2)return;let n=["Multiple devices connected. Specify a device with:"];for(let o of t){let i=await r.getDeviceName(o.serial);n.push(` ${e} -t ${o.serial} # ${i}`)}throw new w(n.join(`
92
+ `),"Multiple devices connected.")}async function nE(r,e,t="table"){e||await rE(r,"devecocli device view");let n=await r.listDevices(),o=await r.getDeviceInfo(n,e);if(!o){if(t==="json"){console.error("No connected device found."),process.exitCode=1;return}throw new w("No connected device found.")}let i=await r.getDeviceDetail(o.serial),s=await r.getDeviceName(o.serial);if(t==="json"){let a={name:s,serial:o.serial,kind:It(o.serial)?"emulator":"device",deviceType:i.deviceType,osVersion:i.osVersion};console.log(JSON.stringify(a,null,2));return}console.log(` Serial: ${o.serial}`),console.log(` Device Name: ${s}`),i.deviceType&&console.log(` Device Type: ${i.deviceType}`),i.osVersion&&console.log(` OS Version: ${i.osVersion}`)}async function mf(r,e,t,n,o){let i=await ht(r,o),s=new Ye(r),a=e==="send",c=pf({text:a?`Sending ${t} to ${n} on ${i}...`:`Receiving ${t} from ${i} to ${n}...`,color:"cyan"}).start();try{await s.transferFile(i,e,t,n),c.stop(),console.log(`${a?"Sent to device":"Received from device"} (${i}): ${t} -> ${n}`)}catch(l){c.stop();let d=a?"Send":"Recv";throw new w(`File ${d} failed: ${l.message}`,`File ${d} failed.`)}}async function oE(r,e,t,n){let o=await ht(r,n),i=new Ye(r);try{await i.runSqlite3(o,e,t)}catch(s){throw new w(`sqlite3 failed: ${s.message}`,"sqlite3 failed.")}}async function Ro(){try{let r=await A.new();return{manager:de.from(r),toolProvider:r}}catch(r){throw new w(`Failed to initialize device manager: ${r.message}`,"Failed to initialize device manager.")}}var To=new VS("device").description("Manage connected devices");To.command("list").description("List all connected devices").addOption(new uf("--format <format>","Output format").choices(["table","json"]).default("table")).action(async r=>{let e={event:b.CommandExecuted,args:["device","list",...r.format==="json"?["--format","json"]:[]]};await Do(e,async()=>{let{manager:t,toolProvider:n}=await Ro();if(r.format==="json"){await df(t,n,void 0,"json");return}let o=pf({text:"Querying connected devices\u2026",color:"cyan"}).start();await df(t,n,o,"table")})});To.command("view").description("Show detailed device information").option("-t, --target <serialOrName>","Target device serial or device name").addOption(new uf("--format <format>","Output format").choices(["table","json"]).default("table")).action(async r=>{let e={event:b.CommandExecuted,args:["device","view",...r.target?["--target"]:[],...r.format==="json"?["--format","json"]:[]]};await Do(e,async()=>{let{manager:t}=await Ro();await nE(t,r.target,r.format)})});var hf=To.command("file").description("Transfer files between the host and a connected device");hf.command("send").description("Send a local file to a device").option("--device <name|serial>","Target device (name or serial)").argument("<src>","Local file path to upload").argument("<dst>","Remote path on the device").action(async(r,e,t)=>{let{device:n}=t,o={event:b.CommandExecuted,args:["device","file","send",...n?["--device"]:[]]};await Do(o,async()=>{let{toolProvider:i}=await Ro();await mf(i,"send",r,e,n)})});hf.command("recv").description("Receive a file from a device to the host").option("--device <name|serial>","Target device (name or serial)").argument("<src>","Remote path on the device").argument("<dst>","Local file path to save").action(async(r,e,t)=>{let{device:n}=t,o={event:b.CommandExecuted,args:["device","file","recv",...n?["--device"]:[]]};await Do(o,async()=>{let{toolProvider:i}=await Ro();await mf(i,"recv",r,e,n)})});To.command("sqlite3").description("Run sqlite3 on a connected device").allowUnknownOption().option("--device <name|serial>","Target device (name or serial)").argument("<db-path>","SQLite database path on the device").argument("[args...]","Arguments forwarded to sqlite3 as-is").action(async(r,e,t)=>{let n={event:b.CommandExecuted,args:["device","sqlite3",r,...t.device?["--device"]:[]]};await Do(n,async()=>{let{toolProvider:o}=await Ro();await oE(o,r,e,t.device)})});var gf=To;import{Argument as zc,Command as Jc,InvalidArgumentError as bE,Option as at}from"commander";import{green as No,cyan as In,red as Yc,yellow as lr,gray as qc}from"colorette";import SE from"ora";import iE from"readline/promises";import{execa as vf}from"execa";import*as cr from"fs/promises";import*as Uc from"os";import*as Vr from"path";var Hc=`1/4:\r
70
93
  ---------------------------------------\r
71
94
  Statement About HarmonyOS and Privacy\r
72
95
  \r
@@ -1236,13 +1259,13 @@ Part I: Chinese mainland.\r
1236
1259
  Part II: Aland Islands, Albania, Andorra, Australia, Austria, Belgium, Bonaire, Bosnia and Herzegovina, Bulgaria, Canada, Croatia, Curacao, Cyprus, Czech Republic, Denmark, Dutch Caribbean, Estonia, Faroe Islands, Finland, France, Germany, Gibraltar, Greece, Greenland, Guernsey, Hungary, Iceland, Israel, Italy, Jersey, Latvia, Liechtenstein, Lithuania, Luxembourg, Malta, Moldova, Monaco, Montenegro, Netherlands, New Zealand, North Macedonia, Norway, Poland, Portugal, Ireland, Romania, Saba, Saint Vincent and the Grenadines, San Marino, Serbia, Sint Eustatius, Sint Maarten, Slovakia, Slovenia, Spain, St. Martin, St. Pierre and Miquelon (France), Sweden, Switzerland, Turkey, Ukraine, United Kingdom, United States, Vatican City.\r
1237
1260
  \r
1238
1261
  Part III: Other countries and regions.\r
1239
- ---------------------------------------\r`;var Ib=new Set,_o=new Map,mc="HarmonyOS_Software_Service_Agreement",pp=["Emulator license agreements are not accepted yet.","","Accept the agreements interactively (shows full text + y/N prompt):"," devecocli emulator license","","Or accept non-interactively (no prompt, for CI/scripts):"," devecocli emulator license accept","","To review the agreement text (read-only):"," devecocli emulator license view"].join(`
1240
- `),fp=pp,hc="HarmonyOS_SDK_Agreement";function mp(n,e){return`${n}\0${e}`}function hp(){Ib.clear(),_o.clear()}var Ab=pp,Tt=class extends Error{constructor(e=Ab){super(e),this.name="EmulatorLicenseBlockedError"}};function gp(n,e){return[n??"",e??""].join(`
1241
- `)}function yp(n){let e=n.normalize("NFKC"),t=e.match(/(\d+)\.(\d+)\.\d+/);if(t)return`${t[1]}.${t[2]}`;let r=e.match(/(\d+)\.(\d+)\b/);return r?`${r[1]}.${r[2]}`:null}function Db(n){return`Emulator${n.trim()}`}function vp(n){let e=Db(n);if(process.platform==="win32"){let r=process.env.LOCALAPPDATA;if(!r)throw new Error("LOCALAPPDATA is not set; cannot resolve .emu_config path.");return _n.join(r,"Huawei",e,".emu_config")}if(process.platform==="darwin")return _n.join(fc.homedir(),"Library","Caches","Huawei",e,".emu_config");let t=process.env.XDG_CACHE_HOME?.trim()||_n.join(fc.homedir(),".cache");return _n.join(t,"Huawei",e,".emu_config")}async function Rb(n,e,t){let r=mp(n,e),i=_o.get(r);if(i!==void 0)return i;let o=await up(n,["-version"],{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},reject:!1,maxBuffer:1024*1024}),s=gp(o.stdout,o.stderr).trim();if(o.exitCode!==0||!s)throw new Tt(t);return _o.set(r,s),s}function Tb(n){let e=n[0],t=n[n.length-1];return(e==='"'||e==="'")&&e===t?n.slice(1,-1):n}function xb(n){try{let e=JSON.parse(n);if(e&&typeof e=="object"&&!Array.isArray(e)){let t={};for(let[r,i]of Object.entries(e))t[r]={value:typeof i=="string"?i:String(i),delimiter:"json"};return t}}catch{return}}function Lb(n){let e=n.trim();if(!(!e||e.startsWith("#")))for(let t of["=",":"]){let r=e.indexOf(t);if(r<=0)continue;let i=e.slice(0,r).trim();if(!i||t===":"&&i.includes("//"))continue;let o=Tb(e.slice(r+1).trim());return{key:i,entry:{value:o,delimiter:t}}}}function Nb(n){let e={};for(let t of n.split(/\r?\n/)){let r=Lb(t);r&&(e[r.key]=r.entry)}return e}function Ob(n){let e=n.trim();if(!e)return{};let t=xb(e);return t||Nb(n)}function Mb(n){return typeof n!="string"?!1:n.normalize("NFKC").trim().toLowerCase()==="agree"}async function wp(n,e,t,r){let i=await Rb(n,e,r),o=yp(i);if(!o)throw new Tt(r);let s=vp(o),a;try{a=await en.readFile(s,"utf8")}catch(d){throw d.code==="ENOENT"?new Tt(r):d}let l=Ob(a)[t];if(!l)throw new Tt(r);if(l.delimiter==="=")throw new Tt(r);if(!Mb(l.value))throw new Tt(r)}async function gc(n,e){await wp(n,e,mc,fp)}async function yc(n,e){await wp(n,e,hc,fp)}async function _b(n,e){let t=await up(n,["-version"],{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},reject:!1,maxBuffer:1048576}),r=gp(t.stdout,t.stderr).trim();if(t.exitCode!==0||!r)throw new Error(`Emulator -version failed (exit ${String(t.exitCode)}); cannot resolve .emu_config path.`);let i=mp(n,e);return _o.set(i,r),r}async function bp(n,e){let t=await _b(n,e),r=yp(t);if(!r)throw new Error(`Cannot parse Emulator major.minor from:
1242
- ${t}.`);return vp(r)}function dp(n){return n.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}async function jb(n,e,t){if(!t.startsWith("{"))return!1;try{let r=JSON.parse(e);if(r&&typeof r=="object"&&!Array.isArray(r))return r[mc]="agree",r[hc]="agree",await en.writeFile(n,`${JSON.stringify(r,null,2)}
1243
- `,"utf8"),!0}catch{}return!1}async function Fb(n,e){let t=mc,r=hc,i=[{k:t,re:new RegExp(`^\\s*${dp(t)}\\s*[:=]`)},{k:r,re:new RegExp(`^\\s*${dp(r)}\\s*[:=]`)}],o=e.length===0?[]:e.split(/\r?\n/),s=[],a=new Set;for(let c of o){let l=!1;for(let{k:d,re:g}of i)if(g.test(c)){s.push(`${d}:agree`),a.add(d),l=!0;break}l||s.push(c)}a.has(t)||s.push(`${t}:agree`),a.has(r)||s.push(`${r}:agree`),await en.writeFile(n,s.join(`
1262
+ ---------------------------------------\r`;var sE=new Set,as=new Map,Bc="HarmonyOS_Software_Service_Agreement",wf=["Emulator license agreements are not accepted yet.","","Accept the agreements interactively (shows full text + y/N prompt):"," devecocli emulator license","","Or accept non-interactively (no prompt, for CI/scripts):"," devecocli emulator license accept","","To review the agreement text (read-only):"," devecocli emulator license view"].join(`
1263
+ `),bf=wf,Wc="HarmonyOS_SDK_Agreement";function Sf(r,e){return`${r}\0${e}`}function Ef(){sE.clear(),as.clear()}var aE=wf,$t=class extends Error{constructor(e=aE){super(e),this.name="EmulatorLicenseBlockedError"}};function Pf(r,e){return[r??"",e??""].join(`
1264
+ `)}function Cf(r){let e=r.normalize("NFKC"),t=e.match(/(\d+)\.(\d+)\.\d+/);if(t)return`${t[1]}.${t[2]}`;let n=e.match(/(\d+)\.(\d+)\b/);return n?`${n[1]}.${n[2]}`:null}function cE(r){return`Emulator${r.trim()}`}function kf(r){let e=cE(r);if(process.platform==="win32"){let n=process.env.LOCALAPPDATA;if(!n)throw new Error("LOCALAPPDATA is not set; cannot resolve .emu_config path.");return Vr.join(n,"Huawei",e,".emu_config")}if(process.platform==="darwin")return Vr.join(Uc.homedir(),"Library","Caches","Huawei",e,".emu_config");let t=process.env.XDG_CACHE_HOME?.trim()||Vr.join(Uc.homedir(),".cache");return Vr.join(t,"Huawei",e,".emu_config")}async function lE(r,e,t){let n=Sf(r,e),o=as.get(n);if(o!==void 0)return o;let i=await vf(r,["-version"],{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},reject:!1,maxBuffer:1024*1024}),s=Pf(i.stdout,i.stderr).trim();if(i.exitCode!==0||!s)throw new $t(t);return as.set(n,s),s}function dE(r){let e=r[0],t=r[r.length-1];return(e==='"'||e==="'")&&e===t?r.slice(1,-1):r}function uE(r){try{let e=JSON.parse(r);if(e&&typeof e=="object"&&!Array.isArray(e)){let t={};for(let[n,o]of Object.entries(e))t[n]={value:typeof o=="string"?o:String(o),delimiter:"json"};return t}}catch{return}}function pE(r){let e=r.trim();if(!(!e||e.startsWith("#")))for(let t of["=",":"]){let n=e.indexOf(t);if(n<=0)continue;let o=e.slice(0,n).trim();if(!o||t===":"&&o.includes("//"))continue;let i=dE(e.slice(n+1).trim());return{key:o,entry:{value:i,delimiter:t}}}}function fE(r){let e={};for(let t of r.split(/\r?\n/)){let n=pE(t);n&&(e[n.key]=n.entry)}return e}function mE(r){let e=r.trim();if(!e)return{};let t=uE(e);return t||fE(r)}function hE(r){return typeof r!="string"?!1:r.normalize("NFKC").trim().toLowerCase()==="agree"}async function If(r,e,t,n){let o=await lE(r,e,n),i=Cf(o);if(!i)throw new $t(n);let s=kf(i),a;try{a=await cr.readFile(s,"utf8")}catch(d){throw d.code==="ENOENT"?new $t(n):d}let l=mE(a)[t];if(!l)throw new $t(n);if(l.delimiter==="=")throw new $t(n);if(!hE(l.value))throw new $t(n)}async function Vc(r,e){await If(r,e,Bc,bf)}async function Gc(r,e){await If(r,e,Wc,bf)}async function gE(r,e){let t=await vf(r,["-version"],{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},reject:!1,maxBuffer:1048576}),n=Pf(t.stdout,t.stderr).trim();if(t.exitCode!==0||!n)throw new Error(`Emulator -version failed (exit ${String(t.exitCode)}); cannot resolve .emu_config path.`);let o=Sf(r,e);return as.set(o,n),n}async function Af(r,e){let t=await gE(r,e),n=Cf(t);if(!n)throw new Error(`Cannot parse Emulator major.minor from:
1265
+ ${t}.`);return kf(n)}function yf(r){return r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&")}async function yE(r,e,t){if(!t.startsWith("{"))return!1;try{let n=JSON.parse(e);if(n&&typeof n=="object"&&!Array.isArray(n))return n[Bc]="agree",n[Wc]="agree",await cr.writeFile(r,`${JSON.stringify(n,null,2)}
1266
+ `,"utf8"),!0}catch{}return!1}async function vE(r,e){let t=Bc,n=Wc,o=[{k:t,re:new RegExp(`^\\s*${yf(t)}\\s*[:=]`)},{k:n,re:new RegExp(`^\\s*${yf(n)}\\s*[:=]`)}],i=e.length===0?[]:e.split(/\r?\n/),s=[],a=new Set;for(let c of i){let l=!1;for(let{k:d,re:g}of o)if(g.test(c)){s.push(`${d}:agree`),a.add(d),l=!0;break}l||s.push(c)}a.has(t)||s.push(`${t}:agree`),a.has(n)||s.push(`${n}:agree`),await cr.writeFile(r,s.join(`
1244
1267
  `)+(s.length>0?`
1245
- `:""),"utf8")}async function Sp(n){await en.mkdir(_n.dirname(n),{recursive:!0});let e="";try{e=await en.readFile(n,"utf8")}catch(r){if(r.code!=="ENOENT")throw r}let t=e.trim();await jb(n,e,t)||await Fb(n,e)}async function Ep(n,e){return console.log(pc),0}var $b="Please read carefully and confirm whether agree to the above agreement? (y/N): ";async function Pp(n,e){try{return await gc(n,e),await yc(n,e),!0}catch(t){if(t instanceof Tt)return!1;throw t}}async function Cp(n,e){if(await Pp(n,e))return console.log("Emulator license agreements are already accepted."),0;if(console.log(pc),!process.stdin.isTTY||!process.stdout.isTTY)return console.error("`devecocli emulator license` requires an interactive terminal.\nFor non-interactive environments, use: devecocli emulator license accept"),1;let r=kb.createInterface({input:process.stdin,output:process.stdout}),i;try{i=await r.question($b)}finally{r.close()}let o=i.trim().toLowerCase();if(o!=="y"&&o!=="yes")return console.error("Agreements not accepted. Emulator features will remain blocked until accepted."),1;try{let s=await bp(n,e);await Sp(s),hp()}catch(s){return console.error(s.message),1}return console.log("Emulator license agreements accepted."),0}async function kp(n,e){if(await Pp(n,e))return console.log("Emulator license agreements are already accepted."),0;try{let t=await bp(n,e);await Sp(t),hp()}catch(t){return console.error(t.message),1}return console.log("Emulator license agreements accepted."),0}async function nt(n,e){let t=Date.now(),r=!0,i=null;try{await e()}catch(o){r=!1,i=B(o),console.error(Fo(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(n,o)}}var Ub=["ohos.qemu.hvd.name","const.product.name","const.product.model"],Ip=["open","half-open","close","vertical-open","single","double","triple","left-folded-right-half-folded","left-half-folded-right-expanded","left-expanded-right-folded","left-half-folded-right-folded","left-expanded-right-half-folded","left-half-folded-right-half-folded"],Wb=`
1268
+ `:""),"utf8")}async function Df(r){await cr.mkdir(Vr.dirname(r),{recursive:!0});let e="";try{e=await cr.readFile(r,"utf8")}catch(n){if(n.code!=="ENOENT")throw n}let t=e.trim();await yE(r,e,t)||await vE(r,e)}async function Rf(r,e){return console.log(Hc),0}var wE="Please read carefully and confirm whether agree to the above agreement? (y/N): ";async function Tf(r,e){try{return await Vc(r,e),await Gc(r,e),!0}catch(t){if(t instanceof $t)return!1;throw t}}async function xf(r,e){if(await Tf(r,e))return console.log("Emulator license agreements are already accepted."),0;if(console.log(Hc),!process.stdin.isTTY||!process.stdout.isTTY)return console.error("`devecocli emulator license` requires an interactive terminal.\nFor non-interactive environments, use: devecocli emulator license accept"),1;let n=iE.createInterface({input:process.stdin,output:process.stdout}),o;try{o=await n.question(wE)}finally{n.close()}let i=o.trim().toLowerCase();if(i!=="y"&&i!=="yes")return console.error("Agreements not accepted. Emulator features will remain blocked until accepted."),1;try{let s=await Af(r,e);await Df(s),Ef()}catch(s){return console.error(s.message),1}return console.log("Emulator license agreements accepted."),0}async function Lf(r,e){if(await Tf(r,e))return console.log("Emulator license agreements are already accepted."),0;try{let t=await Af(r,e);await Df(t),Ef()}catch(t){return console.error(t.message),1}return console.log("Emulator license agreements accepted."),0}async function ct(r,e){let t=Date.now(),n=!0,o=null;try{await e()}catch(i){n=!1,o=q(i),console.error(Yc(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(r,i)}}var EE=["ohos.qemu.hvd.name","const.product.name","const.product.model"],Nf=["open","half-open","close","vertical-open","single","double","triple","left-folded-right-half-folded","left-half-folded-right-expanded","left-expanded-right-folded","left-half-folded-right-folded","left-expanded-right-half-folded","left-half-folded-right-half-folded"],PE=`
1246
1269
  Folded state scene mappings:
1247
1270
  foldableFold (3):
1248
1271
  open Fully expanded state
@@ -1265,83 +1288,78 @@ Folded state scene mappings:
1265
1288
  left-half-folded-right-folded
1266
1289
  left-expanded-right-half-folded
1267
1290
  left-half-folded-right-half-folded
1268
- `,Bb="6.1.0";function Vb(n){let e=n.trim();if(!e)throw new Error("--target must not be empty.");return e}function qb(n){let e=n.trim();if(!Ip.includes(e))throw new Error(`Invalid fold state "${n}". Available values: ${Ip.join(", ")}`);return e}function Dp(n,e,t,r){let i=e.trim();if(!/^-?\d+$/.test(i))throw new Error(`${n} must be an integer in [${t}, ${r}].`);let o=Number(i);if(o<t||o>r)throw new Error(`${n} must be in [${t}, ${r}].`);return o}function Rp(n,e,t,r,i){let o=e.trim(),s=Number(o);if(!o||Number.isNaN(s))throw new Error(`${n} must be a number in [${t}, ${r}].`);if(i!==void 0&&!Gb(o,i))throw new Error(`${n} supports at most ${i} decimal place(s).`);if(s<t||s>r)throw new Error(`${n} must be in [${t}, ${r}].`);return o}function Gb(n,e){let t=n.split(".")[1];return t===void 0||t.length<=e}function zb(n,e,t,r,i){return Number(Rp(n,e,t,r,i))}function Jb(n){let e=n.trim();if(!e||!/^[A-Za-z0-9_ ]+$/.test(e))throw new Error("The virtual device name can only contain letters, spaces, numbers, and underscores (_).")}function Yb(n){let e=n.trim();if(!e)throw new Error("--os-version must not be empty.");if(/^\d+$/.test(e))throw new Error(`--os-version "${n}" is invalid. use the full image label, e.g. HarmonyOS 5.1.1(19).`);if(!/^HarmonyOS\s+/i.test(e))throw/^HarmonyOS$/i.test(e)?new Error('--os-version is incomplete (only "HarmonyOS"). On PowerShell/cmd, quote the full label, e.g. --os-version "HarmonyOS 6.0.1(21)".'):new Error(`Invalid --os-version "${n}". It must start with "HarmonyOS " (e.g. "HarmonyOS 5.1.1(19)").`)}function Kb(n,e){let t=i=>i.normalize("NFKC").trim(),r=t(n);if(e.length===0)throw console.error(wt("Could not parse any downloaded images from `emulator -imageList -downloaded true` (JSON array expected).")),console.error(wt("Run `devecocli emulator image download ...` followed by `devecocli emulator image list` and then copy an `osVersion` string exactly.")),new Error("No downloaded osVersion values parsed; cannot validate --os-version.");if(!e.some(i=>t(i)===r)){console.error(Fo("--os-version does not match any downloaded image (exact string required).")),console.log(wt("Use one of these --os-version values:"));for(let i of e)console.log(` ${i}`);throw new Error(`No downloaded image matches --os-version "${n}".`)}}var Xb=["Name","Status","Serial","Device Type","OS Version"];function Zb(n){return{cells:[n.name,n.status,n.serial??"-",n.deviceType??"-",n.osVersion??"-"],highlight:n.status==="running"}}async function Qb(n,e){let t=await Promise.all(e.map(async r=>{let i=await rr(n,r,Ub);return[r,i]}));return new Map(t)}async function eS(n){let e=await sc(n),t=await Qb(n,e);return{serials:e,params:t}}function tS(n,e,t,r,i){if(e)for(let o of["const.product.name","const.product.model"]){let s=e.get(o);if(!s)continue;let a=t.indexOf(s);if(a===-1)continue;t.splice(a,1),i.set(s,n);let c=r.indexOf(n);c!==-1&&r.splice(c,1);return}}function nS(n,e,t){let r=new Map,i=new Map,o=[...n],s=[...t];for(let a of n){let c=e.get(a),l=c?.get("ohos.qemu.hvd.name");l&&i.set(l,a),t.length>0&&tS(a,c,s,o,r)}for(let a=0;a<s.length&&a<o.length;a++)r.set(s[a],o[a]);return{productSerialMap:r,hvdSerialMap:i}}function rS(n,e,t){let r=n.map(i=>({emu:i,serial:e.get(i.name)??t.get(i.name),effectiveRunning:i.isRunning===!0||t.has(i.name)}));return r.sort((i,o)=>i.effectiveRunning!==o.effectiveRunning?i.effectiveRunning?-1:1:i.emu.name.localeCompare(o.emu.name)),r.map(({emu:i,serial:o,effectiveRunning:s})=>({name:i.name,status:s?"running":"stopped",serial:o??null,deviceType:i.deviceType??null,osVersion:i.osVersion??null}))}async function iS(n,e,t,r){try{let[i,o]=await Promise.all([n.listEmulators(),eS(e)]);if(i.length===0){r?.stop(),console.log(t==="json"?"[]":wt(" No emulator instances found."));return}let s=i.filter(g=>g.isRunning).map(g=>g.name),{productSerialMap:a,hvdSerialMap:c}=nS(o.serials,o.params,s);r?.stop();let l=rS(i,a,c);if(t==="json"){console.log(JSON.stringify(l,null,2));return}let d=l.map(Zb);console.log(Rt(Xb,d))}catch(i){throw r?.stop(),new Error(`Failed to list emulators: ${i.message}`,{cause:i})}}function Tp(n,e,t){let r=!1;for(let i=0;i<n.length;i++){let o=n[i];if(o.status!=="rejected")continue;r=!0;let s=o.reason;console.error(Fo(`Failed to ${t} emulator "${e[i]}": ${s.message}`)),s.stdout&&console.error(vc(s.stdout)),s.stderr&&console.error(vc(s.stderr))}return r}var oS=2e3,sS=6e4;async function aS(n,e){let t=Se(e);return(await ac(n)).some(i=>Se(i)===t)}async function xp(n,e,t,r=sS,i=oS){let o=Date.now()+r;for(;Date.now()<o;){if(await aS(n,e)===t)return!0;await new Promise(a=>setTimeout(a,i))}return!1}async function cS(n,e,t){if(await n.startEmulator(t)==="already-running"){console.log(wt(`Emulator "${t}" is already running.`));return}console.log(mr(`Starting emulator "${t}"...`));let i=await xp(e,t,!0);console.log(i?hi(`Emulator "${t}" started successfully.`):wt(`Emulator "${t}" was launched but did not appear in hdc list targets within the timeout.`))}async function lS(n,e,t){let r=await Promise.allSettled(t.map(i=>cS(n,e,i)));if(Tp(r,t,"start"))throw new w("One or more emulators failed to start.")}async function Lp(n,e){let t=e.trim();if(!yt(t))return t;let r=await oe.withHdcPath(n).getDeviceName(t);if(r===t)throw new Error(`Cannot resolve a running emulator with serial "${t}". Use \`devecocli emulator list\` or pass the emulator name instead.`);return r}async function dS(n,e,t){let r=await Lp(e,t);if(console.log(mr(`Stopping emulator "${r}"...`)),await n.stopEmulator(r)==="already-stopped"){console.log(wt(`Emulator "${r}" is already stopped.`));return}let o=await xp(e,r,!1);console.log(o?hi(`Emulator "${r}" stopped successfully.`):wt(`Emulator "${r}" stop signal was sent but the instance is still visible in hdc list targets within the waiting period.`))}async function uS(n,e,t){let r=await Promise.allSettled(t.map(i=>dS(n,e,i)));Tp(r,t,"stop")}async function rt(){let n=await A.new();return{manager:pr.from(n),toolProvider:n}}async function xt(n,e,t){let r={event:b.CommandExecuted,args:["emulator",t,"--target"]};await nt(r,async()=>{let i=Vb(n.target),o=e(),{manager:s,toolProvider:a}=await rt(),c=await Lp(a.hdcPath,i);await s.controlEmulator(c,o),console.log(hi(`Emulator "${i}" operation completed.`))})}function pS(n){let e=[];return jo(e,"longitude",n.longitude,-180,180,8),jo(e,"latitude",n.latitude,-90,90,8),jo(e,"altitude",n.altitude,-1e4,1e4,2),jo(e,"bearing",n.direction,0,359.99,2,"--direction"),Sc(e,"Specify one geolocation option.")}function fS(n){let e=[];return fi(e,"light",n.lightIntensity,0,1e5,!1,"--light-intensity"),fi(e,"humidity",n.humidity,0,100,!1),fi(e,"temperature",n.temperature,-273.1,100,!1),fi(e,"steps",n.steps,0,1e4,!0),fi(e,"heartrate",n.heartrate,0,255,!0),Sc(e,"Specify one sensor option.")}function Sc(n,e){if(n.length===0)throw new Error(e);if(n.length>1)throw new Error("Only one operation option can be specified.");return n[0]}function jo(n,e,t,r,i,o,s=`--${e}`){t!==void 0&&n.push({type:"gps",key:e,value:Rp(s,t,r,i,o)})}function fi(n,e,t,r,i,o,s=`--${e}`){if(t===void 0)return;let a=o?Dp(s,t,r,i):zb(s,t,r,i,1);n.push({type:"sensor",key:e,value:a})}function mS(n){let e=[];return n.level!==void 0&&e.push({type:"battery",level:Dp("--level",n.level,0,100)}),n.status!==void 0&&e.push({type:"battery-status",status:n.status==="charging"?1:0}),Sc(e,"Specify --level or --status.")}var le=new bc("emulator").description("Manage emulator instances");le.hook("preAction",async()=>{(await A.new()).require({studio:Bb})});var hS=["phone","foldable","widefold","triplefold","tablet","2in1","2in1 foldable","wearable","tv"];function $o(n){let e=new hr("--device-type <type>","Emulator device type").choices([...hS]);return n?e.makeOptionMandatory():e}function fr(n,e){for(let t of e)if(t in n)return n[t]}function mi(n){return n==null?"":typeof n=="string"?n.trim():String(n).trim()}function Ap(n){let e=mi(n).toLowerCase();return e==="true"?"true":e==="false"?"false":e}var gS=["OS Version","Device Type","Software Version","Release Type","Upgradable","Downloaded"],yS="No matching system images found. Try `devecocli emulator image list --all`, then download an image via `devecocli emulator image download ...`.";async function vS(n,e,t){if(!await n.hasAvailableEmulatorImage({deviceType:e,osVersion:t}))throw new Error(`Invalid --os-version value "${t}".
1269
- Run \`devecocli emulator image list --all\` and use an exact OS Version value.`)}function Np(n){try{let e=JSON.parse(n);return Array.isArray(e)?e:null}catch{return null}}function Op(n,e){let t=[];for(let r of n){if(!r||typeof r!="object")continue;let i=r,o=mi(fr(i,["osVersion","OsVersion","OSVersion","os_version"])),s=mi(fr(i,["deviceType","DeviceType","device_type"])),a=Ap(fr(i,["downloaded","Downloaded","isDownloaded"])),c=mi(fr(i,["SoftWareVersion","SoftwareVersion","softwareVersion","software_version","version"])),l=mi(fr(i,["releaseType","ReleaseType","release_type"])),d=Ap(fr(i,["upgradable","Upgradable","isUpgradable"]));t.push({cells:[o,s,c,l,d,a],highlight:e&&a==="true"})}return t}function wS(n){let e=n.trim();if(!e)return!0;let t=Np(e);return t===null?!1:t.length===0?!0:Op(t,!0).length===0}function bS(n,e){let t=n.trim();if(!t)return"";let r=Np(t);if(!r)return n.trimEnd();let i=Op(r,e);return Rt(gS,i)}var Ho=new bc("image").description("HarmonyOS emulator system images (download, list, remove)");Ho.command("download").description("Download system image").addOption($o(!1)).option("--os-version <version>","Example: HarmonyOS 5.1.1(19) or HarmonyOS 6.0.1(21) (required)").option("--force","Overwrite an existing image").action(async n=>{let e={event:b.CommandExecuted,args:["emulator","image","download",...n.deviceType?["--device-type"]:[],...n.osVersion?["--os-version"]:[],...n.force?["--force"]:[]]};await nt(e,async()=>{let{manager:t,toolProvider:r}=await rt();await yc(r.emulatorPath,r.sdkPath);let i=n.deviceType?.trim(),o=n.osVersion?.trim();if(!i)throw new w("Error: missing required option '--device-type <type>'","Missing required device type.");if(!o)throw new w("Error: misssing required option '--os-version <version>'","Missing required OS version.");await vS(t,i,o),await t.installEmulatorImage({deviceType:i,osVersion:o,force:n.force===!0})})});Ho.command("remove").description("Remove a downloaded system image").addOption($o(!0)).requiredOption("--os-version <version>","Supports both image label (HarmonyOS x.y.z(n)) and softwareVersion").action(async n=>{let e={event:b.CommandExecuted,args:["emulator","image","remove","--device-type","--os-version"]};await nt(e,async()=>{let{manager:t}=await rt();await t.uninstallEmulatorImage({deviceType:n.deviceType,osVersion:n.osVersion})})});Ho.command("list").description("List system images").addOption($o(!1)).option("--all","List all images (local and remote)").addOption(new hr("--format <format>","Output format").choices(["table","json"]).default("table")).action(async n=>{let e={event:b.CommandExecuted,args:["emulator","image","list",...n.deviceType?["--device-type"]:[],...n.all?["--all"]:[],...n.format!=="table"?["--format"]:[]]};await nt(e,async()=>{let{manager:t}=await rt(),r;n.all?r=void 0:r=!0;let i=await t.listEmulatorImages({deviceType:n.deviceType,downloaded:r});if(wS(i)){console.log(wt(yS));return}if(n.format==="json"){console.log(i.trimEnd());return}let o=bS(i,n.all===!0);console.log(o)})});le.addCommand(Ho);var Uo=new bc("license").description("Review and accept emulator license agreements interactively (prints full text + y/N prompt)");Uo.command("view").description("Review agreement text (read-only, no changes)").action(async()=>{let n={event:b.CommandExecuted,args:["emulator","license","view"]};await nt(n,async()=>{let{toolProvider:e}=await rt(),t=await Ep(e.emulatorPath,e.sdkPath);process.exitCode=t})});Uo.command("accept").description("Accept all emulator license agreements non-interactively (skips review and prompt)").action(async()=>{let n={event:b.CommandExecuted,args:["emulator","license","accept"]};await nt(n,async()=>{let{toolProvider:e}=await rt(),t=await kp(e.emulatorPath,e.sdkPath);process.exitCode=t})});Uo.action(async()=>{let n={event:b.CommandExecuted,args:["emulator","license"]};await nt(n,async()=>{let{toolProvider:e}=await rt(),t=await Cp(e.emulatorPath,e.sdkPath);process.exitCode=t})});le.addCommand(Uo);le.command("shake").description("Trigger shake event").requiredOption("--target <nameOrSerial>","Target emulator name or serial").action(n=>xt(n,()=>({type:"shake"}),"shake"));le.command("power").description("Press power button (toggle screen on/off)").requiredOption("--target <nameOrSerial>","Target emulator name or serial").action(n=>xt(n,()=>({type:"power"}),"power"));le.command("rotate").description("Rotate emulator").addOption(new hr("--target <nameOrSerial>","Target emulator name or serial").makeOptionMandatory()).addArgument(new wc("<direction>").choices(["left","right"])).action((n,e)=>xt(e,()=>({type:"rotation",direction:n}),"rotate"));le.command("volume").description("Change volume").addOption(new hr("--target <nameOrSerial>","Target emulator name or serial").makeOptionMandatory()).addArgument(new wc("<direction>").choices(["up","down"])).action((n,e)=>xt(e,()=>({type:"volume",direction:n}),"volume"));le.command("fold <state>").description("Set foldable display state").requiredOption("--target <nameOrSerial>","Target emulator name or serial").addHelpText("after",Wb).action((n,e)=>xt(e,()=>({type:"folded-state",state:qb(n)}),"fold"));le.command("battery").description("Set battery level or charging status").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--level <0-100>","Battery level, SOC (charging: 0-100; not charging: 1-100)").addOption(new hr("--status <status>","Charging status").choices(["charging","discharging"])).action(n=>xt(n,()=>mS(n),"battery"));le.command("geolocation").description("Inject geographic coordinates and direction").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--longitude <value>","Longitude (-180.0 to 180.0)").option("--latitude <value>","Latitude (-90.0 to 90.0)").option("--altitude <value>","Altitude (-10000.0 to 10000.0)").option("--direction <value>","Heading direction in degrees (0.00 to 359.99)").action(n=>xt(n,()=>pS(n),"geolocation"));le.command("scene").description("Start motion simulation scene").requiredOption("--target <nameOrSerial>","Target emulator name or serial").addArgument(new wc("<type>","Motion simulation scene").choices(["outdoorRunning","outdoorCycling","drivingNavigation"])).action((n,e)=>{let t={outdoorRunning:{type:"outdoor-running"},outdoorCycling:{type:"outdoor-cycling"},drivingNavigation:{type:"driving-navigation"}};return xt(e,()=>t[n],"scene")});le.command("sensor").description("Inject sensor data").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--light-intensity <value>","Light sensor (0 to 100000)").option("--humidity <value>","Humidity sensor (0 to 100)").option("--temperature <value>","Temperature sensor (-273.1 to 100)").option("--steps <value>","Steps sensor (integer 0 to 10000)").option("--heartrate <value>","Heart rate sensor (integer 0 to 255)").action(n=>xt(n,()=>fS(n),"sensor"));le.command("list").description("List all emulator instances").addOption(new hr("--format <format>","Output format").choices(["table","json"]).default("table")).action(async n=>{let e={event:b.CommandExecuted,args:["emulator","list"]};await nt(e,async()=>{let{manager:t,toolProvider:r}=await rt(),i=n.format==="table"?Hb({text:"Listing emulators\u2026",color:"cyan"}).start():void 0;await iS(t,r.hdcPath,n.format,i)})});le.command("start [names...]").description("Start one or more emulator instances").action(async n=>{let e={event:b.CommandExecuted,args:["emulator","start"]};await nt(e,async()=>{let{manager:t,toolProvider:r}=await rt();if(await gc(r.emulatorPath,r.sdkPath),!n?.length)throw new w("Error: missing required argument 'names'","Missing required emulator name.");await lS(t,r.hdcPath,n)})});le.command("stop <names...>").description("Stop one or more emulator instances (by name or serial,e.g.,127.0.0.1:<port>)").action(async n=>{let e={event:b.CommandExecuted,args:["emulator","stop"]};await nt(e,async()=>{let{manager:t,toolProvider:r}=await rt();if(!n?.length){console.error(Fo("Error: missing required argument 'names'")),process.exitCode=1;return}await uS(t,r.hdcPath,n)})});var Mp=le.command("create <name>").description("Create a local emulator instance.").addOption($o(!0)).requiredOption("--os-version <version>",'Downloaded image label. which will be quoted in PowerShell (e.g. "HarmonyOS 6.0.1(21)") or be used in the format --os-version="\u2026";For details, run`devecocli emulator image list`').option("--force","Overwrite if supported");Mp.configureOutput({outputError:(n,e)=>{e(n),/too many arguments/i.test(n)&&e(`
1270
- ${wt("Tip: ")}${vc("Unquoted --os-version values with spaces/parentheses are split into multiple arguments. Use:")}
1271
- ${mr('devecocli emulator create 123 --device-type phone --os-version "HarmonyOS 6.0.1(21)"')}
1272
- ${mr('devecocli emulator create 123 --device-type phone --os-version="HarmonyOS 6.0.1(21)"')}
1273
- `)}});Mp.action(async(n,e)=>{let t={event:b.CommandExecuted,args:["emulator","create","--device-type","--os-version",...e.force?["--force"]:[]]};await nt(t,async()=>{Jb(n),Yb(e.osVersion);let{manager:r}=await rt(),i=await r.listDownloadedImageOsVersions();Kb(e.osVersion,i),console.log(mr(`Creating emulator "${n}"...`)),await r.createVirtualDevice({name:n,deviceType:e.deviceType,osVersion:e.osVersion,force:e.force===!0}),console.log(hi(`Emulator "${n}" created successfully.`))})});le.command("delete <name>").description("Delete a local emulator instance").action(async n=>{let e={event:b.CommandExecuted,args:["emulator","delete"]};await nt(e,async()=>{let{manager:t}=await rt();console.log(mr(`Deleting emulator "${n}"...`));let r=await t.deleteVirtualDevice(n);console.log(hi(`Emulator "${r}" deleted successfully.`))})});var _p=le;import{Command as HS}from"commander";import{red as Ac,cyan as bt}from"colorette";import*as of from"readline";import*as nf from"crypto";import*as jp from"http";import*as Fp from"crypto";import{URL as SS}from"url";var Wo=class{server=null;port=0;clientSecret;callbackPath="/callback";resolveCallback=null;rejectCallback=null;timeoutId=null;baseUrl;successRedirectUrl;failedRedirectUrl;constructor(e,t,r,i){this.clientSecret=e,this.baseUrl=t,this.successRedirectUrl=r,this.failedRedirectUrl=i}async start(){return new Promise((e,t)=>{let r=jp.createServer((i,o)=>{this.handleRequest(i,o)});r.keepAliveTimeout=1,r.on("error",i=>{t(new Error("Failed to start local auth server",{cause:i}))}),r.listen(0,"127.0.0.1",()=>{this.server=r;let i=r.address();this.port=i.port,e()})})}async waitForCallback(e=3e4){return new Promise((t,r)=>{this.resolveCallback=i=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),t(i)},this.rejectCallback=i=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),r(i)},this.timeoutId=setTimeout(()=>{this.timeoutId=null,this.rejectCallback?.(new Error("Callback timeout"))},e)})}async stop(){return this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),this.server?new Promise(e=>{let t=this.server;this.server=null,typeof t.closeAllConnections=="function"&&t.closeAllConnections();let r=setTimeout(()=>{e()},100);t.close(()=>{clearTimeout(r),e()})}):Promise.resolve()}handleRequest(e,t){let r=e.headers.host||"";if(![`127.0.0.1:${this.port}`,`localhost:${this.port}`].includes(r.toLowerCase())){t.writeHead(400),t.end("Bad Host");return}let o=new SS(e.url??"",`http://${r}`);if(o.pathname!==this.callbackPath){t.writeHead(404),t.end("Not Found");return}try{let s=o.searchParams;e.method==="POST"?this.readBody(e,t,s):this.handleCallbackRequest(e,t,s,"")}catch(s){t.writeHead(500),t.end("Internal Server Error"),this.rejectCallback?.(s)}}readBody(e,t,r){let i="",o=0,s=65536;e.on("data",a=>{if(o+=a.length,o>s){e.destroy(new Error("Request body too large"));return}i+=a.toString()}),e.on("end",()=>{this.handleCallbackRequest(e,t,r,i)})}handleCallbackRequest(e,t,r,i){try{let o=this.parseParams(r,i),s=o.get("code"),a=o.get("tempToken"),c=o.get("siteId"),l=o.get("quit");if(!this.validateCode(s)){t.writeHead(400),t.end("Bad Request");return}if(this.isQuitRequest(l)){this.handleQuitRequest(t);return}if(!a||!c){t.writeHead(400),t.end("Bad Request");return}let d={tempToken:a,siteId:c,quit:l??void 0};this.resolveCallback?.(d),this.sendSuccessResponse(t)}catch(o){t.writeHead(500),t.end("Internal Server Error"),this.rejectCallback?.(o)}}parseParams(e,t){return t&&t.trim()?new URLSearchParams(t):e}validateCode(e){let t=Buffer.from(e||"","utf8"),r=Buffer.from(this.clientSecret,"utf8");return t.length===r.length&&Fp.timingSafeEqual(t,r)}isQuitRequest(e){return e==="true"||e==="access_denied"||e==="quit"}handleQuitRequest(e){this.rejectCallback?.(new Error("User quit the login process")),e.writeHead(302,{Location:`${this.baseUrl}/${this.failedRedirectUrl}`}),e.end()}sendSuccessResponse(e){e.writeHead(302,{Location:`${this.baseUrl}/${this.successRedirectUrl}`}),e.end()}getPort(){return this.port}};import*as Ne from"fs";import*as tn from"path";import{homedir as DS}from"os";var Lt={};Rg(Lt,{LocalCrypto:()=>Lt,decryptForLocalStorage:()=>kS,decryptForLocalStorageFromDirectory:()=>IS,encryptForLocalStorage:()=>CS,isEncryptedBlob:()=>AS});import*as Q from"fs";import*as Ae from"path";import*as Le from"crypto";import*as Hp from"os";import{homedir as Up}from"os";var Ie=class extends Error{constructor(e){super(e),this.name="DefinedError"}};var gi=kn.ALGORITHM,Wp=kn.IV_LENGTH,yi=kn.KEY_LENGTH,vi=kn.KEY_LENGTH,jn=kn.KEK_VERSIONS,Bo=process.env.DEVECO_CLI_DATA_DIR||Ae.join(Up(),ve.CONFIG_DIR_NAME,ve.APP_NAME),Vo=Ae.join(Up(),".local","share",ve.APP_NAME,"keys"),gr=Ae.join(Bo,ve.KEY_FILE_NAME);function $p(n){return Hp.platform()==="win32"?`Permission denied. Please run as administrator or grant write permission to ${n}.`:`Permission denied. You can try: sudo chown -R $(whoami) ${n}`}function Ec(n){return Ae.join(Vo,`${n}.bin`)}function Bp(){if(!Q.existsSync(Bo))try{Q.mkdirSync(Bo,{recursive:!0,mode:448})}catch(n){throw n.code==="EACCES"?new Ie($p(Bo)):n}if(!Q.existsSync(Vo))try{Q.mkdirSync(Vo,{recursive:!0,mode:448})}catch(n){throw n.code==="EACCES"?new Ie($p(Ae.dirname(Vo))):n}}function Vp(){Bp();for(let n of jn){let e=Ec(n);Q.existsSync(e)||Q.writeFileSync(e,Le.randomBytes(yi),{mode:384})}}function qp(n){if(!jn.includes(n))throw new Error(`Invalid kekId: ${n}`);Vp();let e=Ec(n),t=Q.readFileSync(e);if(t.length===yi)return t;let r=Le.randomBytes(yi);return Q.writeFileSync(e,r,{mode:384}),r}function Pc(n,e){let t=Le.randomBytes(Wp),r=qp(e),i=Le.createCipheriv(gi,r,t),o=Buffer.concat([i.update(n),i.final()]),s=i.getAuthTag();return{version:1,algorithm:gi,kekId:e,encryptedDek:o.toString("base64"),iv:t.toString("base64"),authTag:s.toString("base64"),timeStamp:Date.now()}}function Gp(n,e){return zp(Buffer.from(n.encryptedDek,"base64"),e,n.iv,n.authTag)}function zp(n,e,t,r){let i=Le.createDecipheriv(gi,e,Buffer.from(t,"base64"));return i.setAuthTag(Buffer.from(r,"base64")),Buffer.concat([i.update(n),i.final()])}function Jp(n,e){return zp(Buffer.from(n.ciphertext,"base64"),e,n.iv,n.authTag).toString("utf8")}function ES(){if(Vp(),Q.existsSync(gr))return;let n=Le.randomBytes(vi),e=Pc(n,jn[0]);Q.writeFileSync(gr,JSON.stringify(e,null,2),{mode:384})}function Yp(){ES();let n=JSON.parse(Q.readFileSync(gr,"utf8")),e=Gp(n,qp(n.kekId));if(e.length===vi)return e;let t=Le.randomBytes(vi),r=Pc(t,jn[0]);return Q.writeFileSync(gr,JSON.stringify(r,null,2),{mode:384}),t}function PS(){Bp();for(let t of jn){let r=Ec(t);Q.existsSync(r)||Q.writeFileSync(r,Le.randomBytes(yi),{mode:384})}if(Q.existsSync(gr))return;let n=Le.randomBytes(vi),e=Pc(n,jn[0]);Q.writeFileSync(gr,JSON.stringify(e,null,2),{mode:384})}function CS(n){let e=Yp(),t=Le.randomBytes(Wp),r=Le.createCipheriv(gi,e,t),i=Buffer.concat([r.update(n,"utf8"),r.final()]),o=r.getAuthTag();return{version:1,algorithm:gi,ciphertext:i.toString("base64"),iv:t.toString("base64"),authTag:o.toString("base64"),timeStamp:Date.now()}}function kS(n){try{return Jp(n,Yp())}catch{throw PS(),new Error("Failed to decrypt local ciphertext")}}function IS(n,e){let t=Ae.join(e,ve.KEY_FILE_NAME),r=JSON.parse(Q.readFileSync(t,"utf8"));if(!jn.includes(r.kekId))throw new Error(`Invalid kekId: ${r.kekId}`);let i=Ae.join(e,"keys",`${r.kekId}.bin`),o=Ae.resolve(i),s=Ae.resolve(Ae.join(e,"keys"));if(!o.startsWith(s+Ae.sep)&&o!==s)throw new Error("kekId resolves outside the keys directory");let a=Q.readFileSync(o);if(a.length!==yi)throw new Error("Invalid external root key");let c=Gp(r,a);if(c.length!==vi)throw new Error("Invalid external data encryption key");return Jp(n,c)}function AS(n){if(!n||typeof n!="object")return!1;let e=n;return e.algorithm==="aes-256-gcm"&&typeof e.ciphertext=="string"&&typeof e.iv=="string"&&typeof e.authTag=="string"}function Oe(){return process.env.DEVECO_CLI_AUTH_SOURCE===ve.AUTH_SOURCE_DEVECO_CODE}var qo=class{getLocalTokenFilePath(){let e=process.env.DEVECO_CLI_DATA_DIR||tn.join(DS(),ve.CONFIG_DIR_NAME,ve.APP_NAME);return tn.join(e,ve.TOKEN_FILE_NAME)}ensureConfigDir(){let e=tn.dirname(this.getLocalTokenFilePath());Ne.existsSync(e)||Ne.mkdirSync(e,{recursive:!0,mode:448})}async saveJwtToken(e){if(!e)throw new Error("Token is empty");let t=Lt.encryptForLocalStorage(e);this.ensureConfigDir();let r=this.getLocalTokenFilePath();Ne.writeFileSync(r,JSON.stringify(t,null,2),{mode:384})}async loadJwtToken(){return Oe()?this.loadDevecoCodeToken():this.loadLocalJwtToken()}loadDevecoCodeToken(){if(!Oe())return null;let e=process.env.DEVECO_CODE_AUTH_DIR?.trim();if(!e)return null;let t=tn.resolve(e);try{let r=tn.join(t,ve.TOKEN_FILE_NAME);if(!Ne.existsSync(r))return null;let i=JSON.parse(Ne.readFileSync(r,"utf8"));return Lt.isEncryptedBlob(i)?Lt.decryptForLocalStorageFromDirectory(i,e):null}catch{return null}}async loadLocalJwtToken(){let e=this.getLocalTokenFilePath();try{if(!Ne.existsSync(e))return null;let t=JSON.parse(Ne.readFileSync(e,"utf8"));return Lt.isEncryptedBlob(t)?Lt.decryptForLocalStorage(t):null}catch(t){let r=t.code;return r==="EACCES"||r==="EPERM"||r==="ENOENT"||await this.clearToken(),null}}async clearToken(){if(Oe()){p("clearToken: skipped, session managed by DevEco Code");return}let e=this.getLocalTokenFilePath();try{Ne.existsSync(e)&&Ne.unlinkSync(e)}catch(t){throw new Error("Failed to clear token",{cause:t})}}},Nt=new qo;import{spawn as RS}from"child_process";function TS(n){try{let e=new URL(n);return!(!["http:","https:"].includes(e.protocol)||e.hostname===""||n.includes('"'))}catch{return!1}}function xS(n){return n.replace(/[&|<>()^%!]/g,e=>`^${e}`)}async function Kp(n){if(!TS(n))throw new Error(`Invalid URL: ${JSON.stringify(n)}`);let e,t;switch(process.platform){case"win32":e="cmd",t=["/c","start",'""',xS(n)];break;case"darwin":e="open",t=[n];break;default:e="xdg-open",t=[n];break}let r=RS(e,t,{stdio:"ignore",shell:!1,windowsHide:!0});return new Promise((i,o)=>{r.on("error",s=>{o(new Error("Failed to open browser",{cause:s}))}),r.on("close",s=>{s===0?i():o(new Error(`Browser process exited with code ${s}`))})})}import LS from"axios";var Cc=class{client;constructor(){let e={timeout:Vr.HTTP_TIMEOUT_MS,headers:{"User-Agent":Gi.USER_AGENT,"accept-language":Gi.ACCEPT_LANGUAGE},transformResponse:[t=>t]};this.client=LS.create(e),this.client.interceptors.response.use(t=>t,t=>{let r=`Network connection failed (${t.code}). Please check your proxy configuration or network settings`;throw new Error(`${t.message}
1274
- ${r}`)})}async get(e,t){let r=await this.client.request({method:"GET",url:e,params:t?.params,headers:t?.headers,timeout:t?.timeout});return this.convertResponse(r)}async post(e,t){let r=await this.client.request({method:"POST",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout});return this.convertResponse(r)}convertResponse(e){return{data:typeof e.data=="string"?e.data:JSON.stringify(e.data),statusCode:e.status,statusText:e.statusText??"",headers:e.headers}}parseJson(e){try{return JSON.parse(e.data)}catch(t){throw new Error(`Failed to parse JSON response: ${t instanceof Error?t.message:String(t)}`,{cause:t})}}async getBinary(e,t){let r=await this.client.request({method:"GET",url:e,responseType:"arraybuffer",headers:t?.headers,timeout:t?.timeout});if(r.status!==200)throw new Error(`HTTP ${r.status}`);return Buffer.from(r.data)}async postAllowFailure(e,t){let r=await this.client.request({method:"POST",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0});return this.convertResponse(r)}async deleteAllowFailure(e,t){let r=await this.client.request({method:"DELETE",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0});return this.convertResponse(r)}async getBinaryAllowFailure(e,t){let r=await this.client.request({method:"GET",url:e,responseType:"arraybuffer",headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0}),i=Buffer.from(r.data),o=i.toString("utf8");return{statusCode:r.status,statusText:r.statusText??"",buffer:i,body:o}}},L=new Cc;function Xp(n){let e=n.split(".");return e.length===3&&e.every(t=>t.length>0)}var Ot={CHINA:"CN",RUSSIA:"RU",SINGAPORE:"SG",EUROPE:"EU"},Fn={CHINA:"zh_CN",RUSSIA:"ru_RU",EUROPE:"de_DE"},Go={CHINA:"1",SINGAPORE:"5",EUROPE:"7",RUSSIA:"8"},NS={[Ot.CHINA]:Fn.CHINA,[Ot.RUSSIA]:Fn.RUSSIA,[Ot.EUROPE]:Fn.EUROPE,[Ot.SINGAPORE]:Fn.CHINA},OS={[Go.CHINA]:Ot.CHINA,[Go.SINGAPORE]:Ot.SINGAPORE,[Go.EUROPE]:Ot.EUROPE,[Go.RUSSIA]:Ot.RUSSIA};function Zp(n){return NS[n]??Fn.CHINA}function Qp(n){return OS[n]??Ot.CHINA}var kc=class{async getJwtToken(e,t,r,i,o){let s=e.split("&")[0],a=Qp(t),c={tempToken:s,site:a,version:ve.API_VERSION,appid:o},l=`${r}/${i}`,d=await L.get(l,{params:c});if(d.statusCode!==200)throw new Error(`Failed to get jwtToken: status=${d.statusCode}`);let g=d.data.trim();if(!Xp(g))throw new Error("Invalid jwtToken format");return g}},ef=new kc;var Ic=class{async checkJwtToken(e,t,r=!1){let i={refresh:String(r),jwtToken:e},o=`${t}/${G.JWT_TOKEN_CHECK_PATH}`,s=await L.get(o,{headers:i});if(s.statusCode!==200)throw new Error(`Failed to check jwtToken: ${s.statusCode}`);return L.parseJson(s)}async refreshToken(e){let t=await Nt.loadJwtToken();return t?this.refreshTokenWithToken(t,e):null}async refreshTokenWithToken(e,t){try{let r={refresh:"true",jwtToken:e},i=`${t}/${G.JWT_TOKEN_CHECK_PATH}`,o=await L.get(i,{headers:r});if(o.statusCode!==200)return null;let s=L.parseJson(o);return!s.status||!s.userInfo?null:{accessToken:s.userInfo.accessToken,refreshToken:s.userInfo.refreshToken??""}}catch(r){let i=r;return console.error(`Failed to refresh token: ${i.code??""} ${i.message??""}`),null}}async getUserInfoFromJwt(e,t,r=!1){let i=await this.checkJwtToken(e,t,r);return!i.status||!i.userInfo||!i.userInfo.accessToken?(p("jwtToken invalid."),await Nt.clearToken(),null):{userId:i.userInfo.userId??"",userName:i.userInfo.name??"",accessToken:i.userInfo.accessToken,refreshToken:i.userInfo.refreshToken??"",jwtToken:e,countryCode:i.userInfo.nationalCode,language:Zp(i.userInfo.nationalCode),isRealName:String(i.userInfo.realName)==="true"}}async fetchUserInfo(e,t){let r=await Nt.loadJwtToken();return r?this.getUserInfoFromJwt(r,e,t):null}},yr=new Ic;import MS from"querystring";import{spawn as _S}from"child_process";function tf(n){try{let e=JSON.stringify({signInfo:[{agrType:qr.PRIVACY_ID,country:"CN",language:"zh_CN",isAgree:!0}]}),t=MS.stringify({nsp_svc:"as.user.sign",access_token:n,request:e}),r=_S("curl",["-s","-X","POST",qr.TMS_URL,"-H","Content-Type: application/x-www-form-urlencoded","-d",t,"--max-time","5","-o","/dev/null","-w","%{http_code}"],{detached:!0,stdio:["ignore","pipe","ignore"]});r.unref(),r.stdout?.on("data",i=>{let o=i.toString().trim();o==="200"?p("Agreement sign reported successfully"):p(`Agreement sign failed: HTTP ${o}`)}).on("error",()=>{})}catch(e){p(`Agreement sign error: ${e.message}`)}}var zo=class{config;server=null;constructor(e){this.config={...Gr,...e}}updateConfig(e){this.config={...this.config,...e}}getConfig(){return{...this.config}}async login(){try{p(`Login started, isDevecoCodeAuth: ${Oe()}`);let e=this.generateClientSecret();this.server=new Wo(e,G.CN_LOGIN_URL,this.config.successRedirectUrl,this.config.failedRedirectUrl),await this.server.start(),p(`Local auth server started on port ${this.server.getPort()}`),await this.openLoginPage(this.server.getPort(),e),p("Browser opened for authentication");let t=await this.server.waitForCallback(this.config.timeout);if(p(`Callback received: siteId=${t.siteId}`),t.siteId!=="1")throw new Ie("Non-China accounts are not supported.");let r=await ef.getJwtToken(t.tempToken,t.siteId,G.CN_LOGIN_URL,this.config.tempTokenCheckUrl,this.config.appId);p("JWT token received");let i=await yr.getUserInfoFromJwt(r,G.CN_LOGIN_URL);if(!i)throw new Ie("Login failed: failed to get user info");return p(`User info received: ${i.userName}`),await Nt.saveJwtToken(r),p("JWT token saved"),tf(i.accessToken),i}finally{this.server&&(await this.server.stop(),this.server=null)}}async isLoggedIn(){return await this.getUserInfo(!0)!==null}async logout(){let e=await Nt.loadJwtToken();if(!e)return!1;let r=`${G.CN_LOGIN_URL}/${this.config.logoutUrl}?jwtToken=${e}`;try{await L.post(r,{timeout:5e3})}catch{p("Logout: server notification failed, local token cleared")}finally{await Nt.clearToken()}return!0}async getUserInfo(e=!0){return yr.fetchUserInfo(G.CN_LOGIN_URL,e)}generateClientSecret(){return nf.randomUUID().replace(/-/g,"")}async openLoginPage(e,t){let i=`${G.CN_LOGIN_URL}/${this.config.authUrl}?port=${e}&appid=${this.config.appId}&code=${t}`;await Kp(i)}async refreshToken(){return yr.refreshToken(G.CN_LOGIN_URL)}},De=new zo;function FS(){return Oe()?"Not logged in. Please login via DevEco Code first.":"Please run `devecocli auth login` first."}function $S(n){if(n==null||typeof n!="object")return[];let e=n;if(e.ret&&e.ret.code!==0)throw new Error(`team list request failed: code=${e.ret.code}${e.ret.msg?`, msg=${e.ret.msg}`:""}`);return Array.isArray(e.teams)?e.teams.filter(t=>typeof t=="object"&&t!==null).map(t=>({id:String(t.id??""),upSiteId:Number(t.upSiteId??0),name:String(t.name??""),countryCode:String(t.countryCode??""),siteId:Number(t.siteId??0),userType:Number(t.userType??0),lastLoginTime:String(t.lastLoginTime??""),isMirror:t.isMirror===!0})).filter(t=>t.id.length>0):[]}var Jo=class{config;constructor(e){this.config={...Gr,...e}}updateConfig(e){this.config={...this.config,...e}}async listTeams(){let e=await yr.fetchUserInfo(G.CN_LOGIN_URL,!0);if(!e)throw new Ie(FS());let t=await this.fetchTeamList(e.accessToken,e.userId),r=$S(t);return{userId:e.userId,teamList:r}}async fetchTeamList(e,t){let r=this.config.agcTeamListUrl,i;try{i=await L.get(r,{headers:{oauth2Token:e,uid:t,source:"cli",lang:Fn.CHINA},timeout:15e3})}catch(o){let s=o.message;throw s.includes("401")?new Ie("Token expired. Run `devecocli auth login` again."):new Error(`Network error while listing teams: ${s}`,{cause:o})}if(i.statusCode!==200)throw new Error(`Failed to list teams: HTTP ${i.statusCode}`);return typeof i.data=="string"?JSON.parse(i.data):i.data}},rf=new Jo;async function nn(){return rf.listTeams()}async function Yo(n,e,t){let r=Date.now(),i=!0,o=null;try{await e()}catch(s){i=!1,o=B(s);let a=t?.(s);if(a)throw a}finally{let s={duration_ms:Date.now()-r,success:i,error_code:o};await I.track(n,s)}}function US(n){if(n.length===0)return bt("No teams found for the current user.");let e=["Id","Name"],t=n.map(s=>[s.id,s.name]),r=e.map((s,a)=>Math.max(s.length,...t.map(c=>c[a].length))),i=s=>s.map((a,c)=>a.padEnd(r[c])).join(" "),o=r.map(s=>"-".repeat(s)).join(" ");return[i(e),o,...t.map(i)].join(`
1275
- `)}function WS(){return new Promise(n=>{let e=of.createInterface({input:process.stdin,output:process.stdout});e.question("",()=>{e.close(),n()})})}var wi=new HS("auth").description("Authentication commands (login, logout, status, team)");wi.command("login").description("Log in to your Huawei Developer account").action(async()=>{if(Oe()){console.log(Ac("Login is managed by DevEco Code. Login from DevEco Code instead."));return}let n={event:b.CommandExecuted,args:["auth","login"]};await Yo(n,async()=>{let e=await De.getUserInfo();if(e){console.log(bt(`Already logged in, User Name:${e.userName}`));return}console.log(bt("Starting login process...")),console.log(bt("Press Enter to open browser for login...")),await WS();let t=await De.login();console.log(bt(`Login successful. Logged in as ${t.userName}.`))},e=>{throw e instanceof Ie||(e instanceof Error?e.message:String(e)).includes("Network connection failed")?e:new Error("Login failed",{cause:e})})});wi.command("logout").description("Log out of your Huawei Developer account").action(async()=>{if(Oe()){console.log(Ac("Login is managed by DevEco Code. Log out from DevEco Code instead."));return}let n={event:b.CommandExecuted,args:["auth","logout"]};await Yo(n,async()=>{let e=await De.logout();console.log(e?bt("Logout successful"):bt("Already logged out."))},e=>new Error("Logout failed",{cause:e}))});wi.command("status").description("Show the currently logged-in user").action(async()=>{let n={event:b.CommandExecuted,args:["auth","status"]};await Yo(n,async()=>{let e=await De.getUserInfo();if(!e){console.log(bt("Not logged in"));return}console.log(bt(`Current user: ${e.userName}`))},()=>{console.log(bt("Not logged in"))})});var BS=wi.command("team").description("Team-related commands");BS.command("list").description("List team accounts the current user has joined").action(async()=>{let n={event:b.CommandExecuted,args:["auth","team","list"]};await Yo(n,async()=>{let e=await nn();console.log(US(e.teamList))},e=>{if(e instanceof Ie){console.log(Ac(e.message));return}throw new Error("Failed to list teams",{cause:e})})});var sf=wi;import{Command as iE}from"commander";import{green as oE,red as Ci,cyan as Df,yellow as Rf,dim as Tf}from"colorette";import sE from"p-limit";import VS from"ora";var dt=class{spinner=null;isRunning=!1;start(e){this.spinner?this.spinner.text=e:this.spinner=VS(e),this.spinner.start(),this.isRunning=!0}stop(){this.spinner&&this.isRunning&&(this.spinner.stop(),this.isRunning=!1)}succeed(e){this.spinner&&(this.spinner.succeed(e),this.isRunning=!1)}fail(e){this.spinner&&(this.spinner.fail(e),this.isRunning=!1)}};import*as cf from"fs";import*as Dc from"path";import{homedir as af}from"os";function rn(n){if(!/^[A-Za-z0-9._-]+$/.test(n)||n==="."||n==="..")throw new Error(`Unsafe skill name: ${JSON.stringify(n)}`)}var lf=["DevEco"];async function Ko(){let n=await L.get(Ke.TAGS_API_URL),t=Xo(n,"Tags API").data.skill.filter(r=>r.name==="HMOS");if(t.length===0)throw new Error("No HMOS tag found.");return t.map(r=>r.id)}async function qS(n){let e=[],t=Ke.DEFAULT_PAGE_SIZE,r=Ke.DEFAULT_MAX_PAGES,i=1;for(;i<=r;){let o=await L.post(Ke.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:i,pageSize:t,tagIds:[n]}}),s=Xo(o,"Skills API");if(e.push(...s.data.list),s.data.list.length<t)break;i++}return e}async function Rc(n){let e=new Map,t=n.map(i=>qS(i)),r=await Promise.all(t);for(let i of r)for(let o of i)e.has(o.id)||e.set(o.id,o);return Array.from(e.values()).filter(i=>i.tags?.every(o=>!lf.includes(o.name)))}async function GS(n,e){let t=await L.post(Ke.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:1,pageSize:Ke.DEFAULT_PAGE_SIZE,keyword:n,tagIds:[e]}});return Xo(t,"Skills API").data.list}async function Tc(n,e){let t=new Map,r=e.map(o=>GS(n,o)),i=await Promise.all(r);for(let o of i)for(let s of o)t.has(s.id)||t.set(s.id,s);return Array.from(t.values()).filter(o=>o.tags?.every(s=>!lf.includes(s.name)))}function df(n){rn(n);let e=[];for(let[,t]of Object.entries(ct)){let r=S.ensurePathWithinRoot(Dc.join(af(),t.path),Dc.join(af(),t.path,n));cf.existsSync(r)&&e.push(t.displayName)}return e.sort()}function Xo(n,e){if(n.statusCode!==200)throw new Error(`${e} Request failed: HTTP ${n.statusCode}`);let t=L.parseJson(n);if(t.code!==Ke.SUCCESS_CODE)throw new Error(`${e} Error returned: ${t.code} - ${t.message}`);return t}async function uf(n){rn(n);let e=`${Ke.SKILL_API_BASE}/${n}/checksum`,t=await L.get(e);return Xo(t,"Checksum API").data}import zS from"adm-zip";import JS from"crypto";import{timingSafeEqual as YS}from"crypto";import ff from"fs";import ne from"path";import{fileURLToPath as KS}from"url";import{homedir as mf}from"os";import{red as XS}from"colorette";var Mt=ff.promises;function pf(n,e){let t=ne.resolve(e),r=ne.resolve(n),i=ne.relative(r,t);if(i.startsWith("..")||ne.isAbsolute(i))throw new Error(`Path traversal detected: ${e}.`)}function xc(n){return ne.isAbsolute(n)?n:ne.resolve(process.cwd(),n)}function ZS(n){return JS.createHash("sha256").update(n).digest("hex")}async function QS(n,e){if(n.length!==e.size)throw new Error("Skill zip integrity verification failed: Size mismatch");let r=ZS(n),i=e.sha256.toLowerCase(),o=Buffer.from(r,"hex"),s=Buffer.from(i,"hex");if(o.length!==s.length||!YS(o,s))throw new Error("Skill zip integrity verification failed: SHA256 mismatch")}async function hf(n){rn(n);let e=`${Ke.SKILL_API_BASE}/${n}/install?format=zip`,t=await L.getBinary(e),r=await uf(n);return await QS(t,r),t}async function eE(n,e,t){rn(t);let r=new zS(n),i=r.getEntries();try{await Mt.stat(e)}catch{await Mt.mkdir(e,{recursive:!0})}let o=ne.join(e,t);pf(e,o);for(let s of i){let a=ne.join(o,s.entryName);pf(o,a)}r.extractAllTo(o,!0)}async function Lc(n){let e=ct[n];if(!e)throw new Error(`Invalid agent: ${n}, Valid options are: ${Object.keys(ct).join(", ")}`);let t=ne.join(mf(),e.path.replace("/skills",""));try{return await Mt.access(t),!0}catch{return!1}}function Nc(n){let e=ct[n];return ne.join(mf(),e.path)}function tE(n){let e=ct[n];if(!e)throw new Error(`Invalid agent: ${n}, Valid options are: ${Object.keys(ct).join(", ")}`);return e}function Oc(n,e){let t=tE(e),r="projectPath"in t?t.projectPath:ne.join("."+e,"skills");return ne.join(n,r)}async function nE(n,e,t){rn(e);let r=ne.join(n,e);try{if(await Mt.access(r),t)await Mt.rm(r,{recursive:!0,force:!0});else return console.log(`Skill ${e} exists in ${n}.`),{skillDir:r,shouldSkip:!0}}catch{}return{skillDir:r,shouldSkip:!1}}async function Mc(n,e,t){await eE(n,e,t),console.log(`Skill ${t} installed to ${ne.join(e,t)}.`)}async function _c(n,e,t){let r=ne.join(e,t);await Mt.mkdir(r,{recursive:!0});let i=ne.join(r,ne.basename(n));await Mt.copyFile(n,i),console.log(`Skill ${t} installed to ${r}.`)}function gf(n,e,t=""){let r=e instanceof Error?e.message:t;return console.log(XS(`Faild to exute operation for skill "${n}": ${r}`)),{success:!1,error:r}}async function vr(n,e,t,r){try{let i=await e(),{shouldSkip:o}=await nE(i,n,r);return o?{success:!0,skipped:!0}:(await t(i),{success:!0})}catch(i){return gf(n,i,"Installation failed")}}async function jc(n,e){try{rn(n);let t=await e(),r=ne.join(t,n);try{await Mt.access(r)}catch{return console.log(`Skill ${n} not found in ${t}`),{success:!0,skipped:!0}}return await Mt.rm(r,{recursive:!0,force:!0}),console.log(`Skill ${n} removed from ${r}.`),{success:!0}}catch(t){return gf(n,t,"Removal failed")}}async function yf(n,e,t,r=!1){return vr(n,()=>Nc(e),i=>Mc(t,i,n),r)}async function vf(n,e,t,r=!1){return vr(n,()=>t,i=>Mc(e,i,n),r)}async function wf(n,e,t,r,i=!1){return vr(n,()=>Oc(t,r),o=>Mc(e,o,n),i)}async function bf(n,e,t,r=!1){return vr(n,()=>Nc(t),i=>_c(e,i,n),r)}async function Sf(n,e,t,r,i=!1){return vr(n,()=>Oc(t,r),o=>_c(e,o,n),i)}async function Ef(n,e,t,r=!1){return vr(n,()=>t,i=>_c(e,i,n),r)}async function Fc(n,e){return jc(n,()=>Nc(e))}async function Pf(n,e){return jc(n,()=>e)}async function Cf(n,e,t){return jc(n,()=>Oc(e,t))}function kf(){let e=ne.dirname(KS(import.meta.url));for(;;){let t=ne.join(e,"SKILL.md");if(ff.existsSync(t))return t;let r=ne.dirname(e);if(r===e)break;e=r}throw new Error("SKILL.md not found in deveco-cli package. Reinstall deveco-cli.")}import If from"fs";import{cyan as rE}from"colorette";async function bi(n){if(!n)return[];let e=[],t=n.split(",").map(r=>r.trim());for(let r of t){if(!await Lc(r))throw new Error(`Agent ${r} not found`);e.push(r)}return e}async function Si(){let n=[];for(let e of Object.keys(ct))await Lc(e)&&n.push(e);return n}function Ei(n){let e=n.filter(i=>i.success&&!i.skipped).length,t=n.filter(i=>i.skipped).length,r=n.filter(i=>!i.success).length;console.log(),console.log(rE("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${r}`),r>0&&(process.exitCode=1)}function on(n,e,t){if(!If.existsSync(n)){if(t)return;throw new Error(`${e} "${n}" not found`)}if(!If.statSync(n).isDirectory())throw new Error(`"${n}" is not a directory`)}function Pi(n,e,t){if(n&&(e||t))throw new Error("Cannot use `--path` with `--project` or `--agent`");return{resolvedPath:n?xc(n):void 0,resolvedProject:e?xc(e):void 0}}async function Zo(n,e,t){let r=[],i=[],o;if(e?o=e:t&&n.agent?i=(await bi(n.agent)).map(a=>({project:t,agent:a})):t?i=(await Si()).map(a=>({project:t,agent:a})):n.agent?r=await bi(n.agent):r=await Si(),!o&&r.length===0&&i.length===0)throw new Error("No agents found. Install an AI agent (cursor, opencode, etc.) or use `--path` for a custom location.");return{agents:r,projectAgents:i,customPath:o}}var xf="deveco";async function aE(n){let e=await Ko();if(n.all)return(await Rc(e)).map(r=>r.enName);{let r=(await Tc(n.skill,e)).find(i=>i.enName===n.skill);if(!r)throw new $n("errorCode",`Skill "${n.skill}" not found`);return[r.enName]}}async function cE(n,e,t,r){let i=[];if(t.customPath){let o=await vf(n,e,t.customPath,r);return i.push(o),i}for(let o of t.agents){let s=await yf(n,o,e,r);i.push(s)}for(let{project:o,agent:s}of t.projectAgents){let a=await wf(n,e,o,s,r);i.push(a)}return i}function lE(n){if(n.all&&n.skill)throw new $n("errorCode","`--all` and `--skill` cannot be specified together.");if(!n.all&&!n.skill)throw new $n("errorCode","Must specify `--all` or `--skill`");let{resolvedPath:e,resolvedProject:t}=Pi(n.path,n.project,n.agent);return t&&on(t,"Project directory",n.force),e&&on(e,"Directory",n.force),{resolvedPath:e,resolvedProject:t}}function dE(n,e,t){return!!(e||t||n.path||n.project||n.agent)}function uE(){return{agents:[xf],projectAgents:[],customPath:void 0}}async function pE(n,e,t){let r=Oe()&&!dE(n,e,t)?uE():await Zo(n,e,t);return{skillNames:await aE(n),targets:r}}async function fE(n,e,t,r){let i=[],o=0,s=n.length,a=sE(5),c=n.map(l=>a(()=>mE(l)));for(let l=0;l<n.length;l++){let d=n[l],g=s>1?` (${l+1}/${s})`:"";r.start(`Installing ${d}${g}...`);let v=await c[l];if(!v.success){r.fail(),console.log(Ci(`${d}: Download failed - ${v.error}`)),i.push({success:!1});continue}o+=v.buffer.length,r.stop();let D=await cE(d,v.buffer,e,t);i.push(...D)}return{results:i,diskBytes:o}}async function mE(n){try{let e=await hf(n);return{name:n,buffer:e,success:!0}}catch(e){let t=e instanceof Error?e.message:"unknown error";return{name:n,error:t,success:!1}}}async function hE(n){let e=new dt;try{e.start("Installing skill...");let{resolvedPath:t,resolvedProject:r}=lE(n),{skillNames:i,targets:o}=await pE(n,t,r),{results:s,diskBytes:a}=await fE(i,o,n.force||!1,e);return e.stop(),Ei(s),{diskBytes:a,results:s}}catch(t){throw e.stop(),t}}function Lf(n){let e=n.length,t=n.filter(s=>s.success&&!s.skipped).length,r=n.filter(s=>s.skipped).length,i=n.filter(s=>!s.success).length,o=[...new Set(n.filter(s=>!s.success&&typeof s.error=="string").map(s=>gE(s.error)))];return{opTotal:e,opSuccess:t,opFailed:i,opSkipped:r,...o.length>0?{failedErrors:o}:{}}}function gE(n){let e=/^([A-Za-z_][A-Za-z0-9_-]*)/.exec(n.trim());return e?e[1].slice(0,32):"error"}var $n=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function yE(n){let e=n;return n instanceof $n?n.code:e.code??e.name??"UnknownError"}function es(n,e={}){return["skills",n,...e.all?["--all"]:[],...e.long?["--long"]:[],...e.skill?["--skill"]:[],...e.force?["--force"]:[],...e.agent?["--agent",e.agent]:[],...e.project?["--project"]:[],...e.path?["--path"]:[]]}async function ts(n,e,t){let r=Date.now(),i=!0,o=null,s={};try{s=await e()}catch(a){throw i=!1,o=yE(a),a}finally{let a={event:b.SkillOperation,subAction:n,args:t,...s};await I.track(a,{duration_ms:Date.now()-r,success:i,error_code:o})}}function vE(n){return ts("add",async()=>{let{diskBytes:e,results:t}=await hE(n);return{diskUsage:ce(e),...Lf(t)}},es("add",n))}function wE(n){let{resolvedPath:e,resolvedProject:t}=Pi(n.path,n.project,n.agent);return t&&on(t,"Project directory"),e&&on(e,"Directory"),{resolvedPath:e,resolvedProject:t}}async function bE(n,e){let t=new dt;try{t.start("Removing skill...");let{resolvedPath:r,resolvedProject:i}=wE(e);t.stop();let o=await SE(e,n,r,i);return t.stop(),Ei(o),o}catch(r){throw t.stop(),r}}function Af(n,e=""){if(n.length===0)throw new $n("errorCode",`No agents found. Install an AI agent (cursor, opencode, etc.) ${e}`)}async function Qo(n,e){let t=[];for(let r of e){let i=r.type==="agent"?await Fc(n,r.agent):await Cf(n,r.project,r.agent);t.push(i)}return t}async function SE(n,e,t,r){if(t)return[await Pf(e,t)];if(r&&n.agent){let a=(await bi(n.agent)).map(c=>({type:"projectAgent",agent:c,project:r}));return Qo(e,a)}if(r){let s=await Si();Af(s);let a=s.map(c=>({type:"projectAgent",agent:c,project:r}));return Qo(e,a)}if(n.agent){let a=(await bi(n.agent)).map(c=>({type:"agent",agent:c}));return Qo(e,a)}if(Oe())return[await Fc(e,xf)];let i=await Si();Af(i,"or use --path for a custom location.");let o=i.map(s=>({type:"agent",agent:s}));return Qo(e,o)}var ki=new iE("skills").description("Manage HarmonyOS skills");ki.command("list").description("List all available HarmonyOS skills").option("-l, --long","Show detailed information including description and installation status").action(async n=>{try{await ts("list",async()=>{let e=new dt;try{e.start("Fetching skills...");let t=await Ko(),r=await Rc(t);if(r.length===0)return e.stop(),console.log(Rf("No skills available.")),{resultTotal:0};e.succeed(`Fetched ${r.length} skills`);for(let i of r)if(n.long){console.log(Df(i.enName)),console.log(Tf(i.description));let o=df(i.enName);o.length>0&&console.log(oE(`Installed for: ${o.join(", ")}`)),console.log()}else console.log(i.enName);return{resultTotal:r.length}}finally{e.stop()}},es("list",n))}catch(e){console.error(Ci(e.message)),process.exit(1)}});ki.command("find <keyword>").description("Search skills by keyword").action(async n=>{try{await ts("find",async()=>{let e=new dt;try{e.start("Searching skills...");let t=await Ko(),r=await Tc(n,t);if(r.length===0)return console.log(Rf(`No skills found matching '${n}'.`)),e.stop(),{resultTotal:0,queryLen:n.length};e.succeed(`Found ${r.length} skills.`);for(let i of r)console.log(Df(i.enName)),console.log(Tf(i.description)),console.log();return{resultTotal:r.length,queryLen:n.length}}finally{e.stop()}},es("find"))}catch(e){console.error(Ci(e.message)),process.exit(1)}});ki.command("add").description("Install skills to AI agents").option("--all","Install all available skills").option("--agent <agents>","Target agents, comma-separated; Omit to install to all available agents").option("--skill <skill-name>","Name of the skill to install").option("-f, --force","Overwrite an existing skill installation").option("--project <path>","Project root directory for skill installation").option("--path <path>","Path to install the skill directly (cannot be used with --project or --agent)").action(async n=>{try{await vE(n)}catch(e){console.error(Ci(e.message)),process.exit(1)}});ki.command("remove").description("Remove an installed skill from AI agents").requiredOption("--skill <skill-name>","Name of the skill to remove").option("--agent <agents>","Target agents, comma-separated.Omit to remove from all available agents").option("--project <path>","Project root directory for skill removal").option("--path <path>","Path for skill removal").action(async n=>{try{await ts("remove",async()=>{let e=await bE(n.skill,n);return Lf(e)},es("remove",n))}catch(e){console.error(Ci(e.message)),process.exit(1)}});var Nf=ki;import{Command as PE,InvalidArgumentError as rs}from"commander";import{cyan as ns}from"colorette";function Hn(n,e){if(n.exitCode===0)return null;let t=n.stderr||n.stdout,r=nr(t);return r==="transient"?new Error(`${e}: Device communication channel unavailable. Retry in a few seconds.`):r==="fatal"?new Error(`${e}: ${t.trim()}`):null}var $c=[800,1500,2500];function EE(n){return new Promise(e=>setTimeout(e,n))}var wr=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=oe.from(e)}createFollowLineHandler(){return(e,t)=>{if(t==="stderr"){for(let r of e)console.error(r);return}for(let r of e)console.log(r)}}findDeviceByArg(e,t){return e.find(r=>r.serial===t||r.name===t)}formatConnectedDeviceList(e){return e.map(t=>` - ${t.name} (${t.serial})`).join(`
1276
- `)}async loadConnectedDevicesByName(){return this.getConnectedDevices()}async selectDevice(e){let t=await this.getConnectedDeviceSerials();if(!e&&t.length===1){let i=t[0];return p(ns(`Using device serial: ${i}`)),i}if(e&&t.includes(e))return p(ns(`Using device serial: ${e}`)),e;let r=await this.loadConnectedDevicesByName();if(e){let i=this.findDeviceByArg(r,e);if(i)return p(ns(`Using device: ${i.name} (${i.serial})`)),i.serial;let o=this.formatConnectedDeviceList(r);throw new w(`Device '${e}' not found.
1277
- Available devices:
1278
- ${o}`,"Device not found.")}if(r.length===1){let i=r[0];return p(ns(`Using device: ${i.name} (${i.serial})`)),i.serial}throw new w("Multiple devices found. Specify a target device using `--device <name>` or `--device <serial>`.\nAvailable devices:\n"+this.formatConnectedDeviceList(r),"Multiple devices found.")}async getConnectedDeviceSerials(){let e=await this.deviceManager.listDevices();if(e.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");return e.map(t=>t.serial)}async getConnectedDevices(){let e=await this.deviceManager.listDevicesWithName();if(e.length===0)throw new Error("No active devices found. Start an emulator or connect a physical device.");return e}async getPidForBundle(e,t,r){p(`Retrieving PID for bundle ${r}`),S.assertBundleNameStrict(r);let i=await ie(e,["-t",t,"shell","pidof",r]),o=Hn(i,"Failed to look up PID");if(o)throw o;if(i.exitCode===0&&i.stdout.trim()){let s=i.stdout.trim(),a=s.split(/\s+/)[0]||s;return p(`Found PID for ${r}: ${a}`),a}return p(`No PID found for bundle: ${r}`),null}async resizeHilogBuffer(e,t,r){if(p(`Setting hilog buffer size to: ${r}`),!/^\d+[KMG]?$/.test(r))throw new Error(`Invalid hilog buffer size: ${JSON.stringify(r)}. Expected format: <number>[K|M|G], e.g. "4M", "16M"`);let i=await ie(e,["-t",t,"shell","hilog","-G",r]),o=Hn(i,"Failed to resize hilog buffer");if(o)throw o;i.exitCode!==0&&console.error(`Failed to resize hilog buffer: ${i.stderr||i.stdout}`)}buildHilogCommand(e,t,r,i){let o=this.buildHilogShellCommand(r,i);return[e,["-t",t,"shell",o]]}buildHilogShellCommand(e,t){let r=["hilog"];return e.isFollow||r.push("-x"),e.tag&&(S.assertHilogToken(e.tag,"tag"),r.push("-T",e.tag)),e.level&&(S.assertHilogLevel(e.level),r.push("-L",e.level)),e.domain&&(S.assertHilogToken(e.domain,"domain"),r.push("-D",e.domain)),t&&r.push("-P",t),e.keyword&&(S.assertHilogKeyword(e.keyword),r.push("-e",S.quotePosixShellArg(e.keyword))),r.join(" ")}async followHilog(e,t,r,i,o){let a=await du(e,t,{onData:r,onError:i,onClose:o});return{stdout:a.stdout,stderr:a.stderr,exitCode:a.exitCode}}async runHilogWithSpawnRetry(e,t,r,i,o){let s=1+$c.length,a={stdout:"",stderr:"",exitCode:-1};for(let c=0;c<s;c++){if(a=await this.followHilog(e,t,r,i,o),a.exitCode===0||nr(a.stderr)!=="transient"||c>=s-1)return a;p(`hdc transient failure on \`${t.join(" ")}\`: retrying in ${$c[c]}ms`),await EE($c[c])}return a}async runHilogStreamingCollect(e,t,r){return this.runHilogWithSpawnRetry(e,t,()=>{},i=>{p(`Callback triggered when an error occurs during ${r}: ${i.message}`)},()=>{})}async printTailSnapshotIfNeeded(e,t,r,i){if(!r.tail&&!r.fromSeconds&&!r.toSeconds)return;let o={...r,isFollow:!1},[s,a]=this.buildHilogCommand(e,t,o,i);p(`Ready to run hilog snapshot command: ${s} ${a.join(" ")}`);let c=await this.runHilogStreamingCollect(s,a,"a hilog snapshot streaming read"),l=Hn(c,"Failed to get hilog");if(l)throw l;if(c.exitCode!==0&&c.stderr)throw new Error(`Failed to get hilog: ${c.stderr}`);let d=S.filterLogsByRelativeWindow(c.stdout||c.stderr,r.fromSeconds,r.toSeconds);d=S.getLastLines(d,r.tail),d.trim()&&console.log(d)}async getHilogOnce(e,t,r,i){let[o,s]=this.buildHilogCommand(e,t,r,i);p(`Ready to run hilog command: ${o} ${s.join(" ")}`);let a=await this.runHilogStreamingCollect(o,s,"a single hilog streaming read"),c=Hn(a,"Failed to get hilog");if(c)throw c;if(a.exitCode!==0&&a.stderr)throw new Error(`Failed to get hilog: ${a.stderr}`);let l=a.stdout||a.stderr,d=S.filterLogsByRelativeWindow(l,r.fromSeconds,r.toSeconds);return d=S.getLastLines(d,r.tail),d}async runHilogFollow(e,t,r,i){try{await this.printTailSnapshotIfNeeded(e,t,r,i)}catch(l){console.error(`Warning: Failed to fetch log snapshot, continuing with live stream: ${l.message}`)}let[o,s]=this.buildHilogCommand(e,t,r,i);p(`Ready to run hilog command which contain \`follow\` and \`tail\`: ${o} ${s.join(" ")}`);let a=await this.runHilogWithSpawnRetry(o,s,this.createFollowLineHandler(),l=>{p(`Spawn error during hilog follow: ${l.message}`)},()=>{}),c=Hn(a,"Failed to follow hilog");if(c)throw c;if(a.exitCode!==0&&a.stderr)throw new Error(`Failed to follow hilog: ${a.stderr}`);return""}async getHilog(e,t){let r=this.toolProvider.hdcPath,i=t.bundleName?await this.getPidForBundle(r,e,t.bundleName):void 0;if(t.bundleName&&!i)throw new w(`No running process found for bundle '${t.bundleName}'. Ensure the app is launched on the device before fetching logs.`,"No running process found for bundle.");return t.logSize&&await this.resizeHilogBuffer(r,e,t.logSize),t.isFollow?await this.runHilogFollow(r,e,t,i||""):await this.getHilogOnce(r,e,t,i||"")}async getCrashLog(e,t){p(`Fetching crash logs from device: ${e}`);let r=this.toolProvider.hdcPath,i=await this.listCrashLogs(r,e,t);if(i.length===0)return t?`No crash logs found for bundle '${t}'.`:"No crash logs found.";let s=[...i].sort((c,l)=>{let d=c.split("-").pop()||"";return(l.split("-").pop()||"").localeCompare(d)})[0],a=await this.fetchCrashLogContent(r,e,s);return`--- Latest Crash Log File: ${s} ---${a}`}async listCrashLogs(e,t,r){let i=["-t",t,"shell","hidumper","-s","1201","-a","-p Faultlogger"];p(`Running command: ${e} ${i.join(" ")}`);let o=await this.runHilogStreamingCollect(e,i,"a crash log list streaming read"),s=Hn(o,"Failed to list crash logs");if(s)throw s;if(o.exitCode!==0)throw new Error(`Failed to list crash logs: ${o.stderr||o.stdout}`);return p(`Crash logs list output:
1279
- ${o.stdout}`),this.parseCrashLogFilenames(o.stdout,r)}parseCrashLogFilenames(e,t){return e.split(`
1280
- `).map(r=>r.trim()).filter(r=>r.length>0).filter(r=>{try{return S.assertCrashFilename(r),!0}catch{return!1}}).filter(r=>t?r.toLowerCase().includes(t.toLowerCase()):!0)}async fetchCrashLogContent(e,t,r){p(`Fetching latest crash log file: ${r}`);let i=["-t",t,"shell","hidumper","-s","1201","-a",`-p Faultlogger -f ${r}`];p(`Executing command: ${e} ${i.join(" ")}`);let o=await this.runHilogStreamingCollect(e,i,"a crash log streaming read"),s=Hn(o,"Failed to fetch crash log content");if(s)throw s;return o.exitCode!==0&&o.stderr&&console.error(`Warning: Failed to fetch crash logs: ${o.stderr}`),o.stdout+o.stderr}};import{cyan as Hc,red as Mf}from"colorette";import CE from"ora";function kE(n){return["log",...n.device?["--device"]:[],...n.crash?["--crash"]:[],...n.level?["--level"]:[],...n.bundleName?["--bundle-name"]:[],...n.keyword?["--keyword"]:[],...n.tail!==void 0?["--tail"]:[],...n.from!==void 0?["--from"]:[],...n.to!==void 0?["--to"]:[],...n.follow?["--follow"]:[]]}function IE(n){return{event:b.CommandExecuted,args:kE(n),logType:n.crash?"crash":"common",level:n.level??"ALL",bundleName:n.bundleName??"ALL"}}function AE(n){return n instanceof w?n.traceMessage:n instanceof Error?n.code??n.name:"UnknownError"}async function DE(n,e){let t=Date.now(),r=!0,i=null;try{await e()}catch(o){r=!1,i=AE(o),console.error(Mf(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(n,o).catch(()=>{})}}function RE(n){try{return S.parsePositiveInteger(n,"tail")}catch{throw new rs("`tail` must be a positive integer.")}}function Of(n,e){try{return S.parseDurationToSeconds(n,e)}catch{throw new rs(`${e} must be a valid duration string (e.g.,30s, 5m or 2.5m).Supported units: s and m.when specified in seconds(with \`s\` or as a raw number), the value must be an integer.`)}}function TE(n){try{return S.assertHilogLevel(n),n}catch{throw new rs("`level` must be one of: D, I, W, E, F.")}}function xE(n){try{return S.assertBundleNameStrict(n),n}catch(e){throw new rs(e.message)}}function LE(n){if(n.to&&n.follow)throw new Error("`--to` cannot be used with `--follow`.")}async function NE(n,e,t,r,i){return t.crash?await n.getCrashLog(e,t.bundleName):await n.getHilog(e,{level:t.level,bundleName:t.bundleName,keyword:t.keyword,isFollow:!!t.follow,tail:t.tail,fromSeconds:r,toSeconds:i})}function OE(n,e,t,r){let i=S.filterLogsByRelativeWindow(n,t,r);return e.tail?S.getLastLines(i,e.tail):i}var ME=new PE("log").description("Obtain device application logs").configureOutput({outputError:(n,e)=>e(Mf(n))}).option("--device <device>","Target device (name or serial)").option("--crash","Only obtain crash logs").option("--level <level>","Log level filter: D, I, W, E, F",TE).option("--bundle-name <bundle-name>","Filter by application bundle name",xE).option("--keyword <keyword>","Keyword filter").option("--tail <num>","Show only the latest N log lines",RE).option("--from <start>","Start offset from now, e.g. 30s, 5m, 2.5m, or 120",n=>Of(n,"from")).option("--to <end>","End offset from now, e.g. 30s, 5m, 2.5m, or 120",n=>Of(n,"to")).option("--follow","Follow the log stream in real-time.").action(async n=>{await DE(IE(n),()=>_E(n))});async function _E(n){let e=CE({text:"Preparing log request\u2026",color:"cyan"}),t=()=>{e.stop(),e.clear()};e.start();try{LE(n);let r=n.from,i=n.to,o=await A.new(),s=new wr(o),a=await s.selectDevice(n.device);if(!a)throw new w("No active devices found.","No active devices found.");p(Hc(`deviceId: ${a}`)),p(Hc(`type: ${n.crash?"Crash logs":"Common logs"}`)),p(Hc("Obtaining logs ...")),e.text="Fetching logs\u2026",n.follow&&t();let c=await NE(s,a,n,r,i);t(),n.crash&&c&&(c=OE(c,n,r,i)),c&&console.log(c)}finally{t()}}var _f=ME;import Ai from"path";import _t from"fs";import Bc from"process";import qf from"os";import{Command as YE}from"commander";import{green as Uf,red as Uc,cyan as KE,yellow as Wf}from"colorette";import de from"fs-extra";import H from"path";import*as Ff from"os";import{fileURLToPath as jE}from"url";var jf={17:{sdkVersion:"5.0.5(17)",modelVersion:"5.0.5"},18:{sdkVersion:"5.1.0(18)",modelVersion:"5.1.0"},19:{sdkVersion:"5.1.1(19)",modelVersion:"5.1.1"},20:{sdkVersion:"6.0.0(20)",modelVersion:"6.0.0"},21:{sdkVersion:"6.0.1(21)",modelVersion:"6.0.1"},22:{sdkVersion:"6.0.2(22)",modelVersion:"6.0.2"},23:{sdkVersion:"6.1.0(23)",modelVersion:"6.1.0"},24:{sdkVersion:"6.1.1(24)",modelVersion:"6.1.1"}},FE=["build-profile.json5","AppScope/resources/base/media/layered_image.json","entry/src/main/resources/base/media/layered_image.json"];function $E(){let n=import.meta.url,e=jE(n);if(e.includes("dist")){let o=H.dirname(e),s=H.dirname(o);return H.join(s,"templates","application")}let t=H.dirname(e),r=H.dirname(t),i=H.dirname(r);return H.join(i,"templates","application")}function $f(n,e){de.mkdirSync(e,{recursive:!0});for(let t of de.readdirSync(n,{withFileTypes:!0})){let r=H.join(n,t.name),i=H.join(e,t.name);if(t.isDirectory()){$f(r,i);continue}de.existsSync(i)||(de.mkdirSync(H.dirname(i),{recursive:!0}),de.copyFileSync(r,i))}}function Ii(n,e){let t=de.readFileSync(n,"utf-8"),r=t;for(let[i,o]of e)r=r.replaceAll(i,o);r!==t&&de.writeFileSync(n,r,"utf-8")}function HE(n){if(jf[n])return jf[n];if(n>=26){let e=`${n}.0.0`;return{sdkVersion:e,modelVersion:e}}}function UE(n,e){if(e===22)return;let t=HE(e);t&&(Ii(H.join(n,"build-profile.json5"),[["6.0.2(22)",t.sdkVersion]]),Ii(H.join(n,"hvigor","hvigor-config.json5"),[["6.0.2",t.modelVersion]]),Ii(H.join(n,"oh-package.json5"),[["6.0.2",t.modelVersion]]))}function WE(n){return FE.filter(t=>!de.existsSync(H.join(n,t))).length===0}function BE(){return Buffer.from([137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,1,0,0,0,1,8,2,0,0,0,144,119,83,222,0,0,0,12,73,68,65,84,8,215,99,248,255,255,255,0,5,254,2,254,0,0,0,0,73,69,78,68,174,66,96,130])}function VE(n){return Ff.platform()==="darwin"?H.join(n,"Contents","plugins","codegenie-plugin","previewProjectTemplate"):H.join(n,"plugins","codegenie-plugin","previewProjectTemplate")}function qE(n,e){let t=VE(e);if(!de.existsSync(t))return!1;let r=[["AppScope/resources/base/media/background.png","AppScope/resources/base/media/background.png"],["AppScope/resources/base/media/foreground.png","AppScope/resources/base/media/foreground.png"],["entry/src/main/resources/base/media/background.png","entry/src/main/resources/base/media/background.png"],["entry/src/main/resources/base/media/foreground.png","entry/src/main/resources/base/media/foreground.png"],["entry/src/main/resources/base/media/startIcon.png","entry/src/main/resources/base/media/startIcon.png"]];for(let[i,o]of r){let s=H.join(t,i),a=H.join(n,o);de.existsSync(s)&&(de.mkdirSync(H.dirname(a),{recursive:!0}),de.copyFileSync(s,a))}return!0}function GE(n){let e=BE(),t=["AppScope/resources/base/media/background.png","AppScope/resources/base/media/foreground.png","entry/src/main/resources/base/media/background.png","entry/src/main/resources/base/media/foreground.png","entry/src/main/resources/base/media/startIcon.png"];for(let r of t){let i=H.join(n,r);de.mkdirSync(H.dirname(i),{recursive:!0}),de.writeFileSync(i,e)}}function zE(n,e){e&&qE(n,e)||GE(n)}function JE(n){let e=[H.join(n,"gitignore.txt"),H.join(n,"entry","gitignore.txt")];for(let t of e)if(de.existsSync(t)){let r=H.dirname(t);de.renameSync(t,H.join(r,".gitignore"))}}function Hf(n,e,t,r,i){let o=$E();if(!de.existsSync(o))throw new Error(`Template directory not found: ${o}`);de.mkdirSync(n,{recursive:!0}),$f(o,n),JE(n),zE(n,i),Ii(H.join(n,"AppScope","resources","base","element","string.json"),[["MyApplication",e]]),Ii(H.join(n,"AppScope","app.json5"),[["com.example.myapplication",t]]),UE(n,r);let s=WE(n);if(!s)throw new Error("Template integrity check failed.");return{projectRoot:n,appName:e,bundleName:t,apiLevel:r,verified:s}}function XE(n){if(n.length<1||n.length>200)throw new ue("errorCode",`App name length must be 1-200 characters. Current: ${n.length}`);if(!/^[a-zA-Z][a-zA-Z0-9_]*$/.test(n))throw new ue("errorCode","Application name must start with a letter (a-z, A-Z) and contain only letters, digits, and underscores")}function Gf(n){if(qf.platform()==="win32"){let t=n.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t}return n.replace(/\/+/g,"/")}function Bf(n){if(n.length===0)throw new ue("errorCode","Project path cannot be empty.");if(n.length>120)throw new ue("errorCode",`Project path cannot exceed 120 characters (current: ${n.length}).`);let e=qf.platform();if(!(e==="win32"?/^[a-zA-Z0-9._\-:\\/]+$/:/^[a-zA-Z0-9._\-/]+$/).test(n)){let o=e==="win32"?"letters, digits, dots, underscores, hyphens, colons, slashes (/) or backslashes (\\)":"letters, digits, dots, underscores, hyphens or slashes (/)";throw new ue("errorCode",`Project path can only contain ${o}.`)}let r=Gf(n);if(/[\u4e00-\u9fff]/.test(r))throw new ue("errorCode","Project path cannot contain Chinese characters.");if(r.endsWith("."))throw new ue("errorCode","Project path cannot end with a dot (.)")}function ZE(n){let e=n,t=Ai.parse(n).root;for(;e!==t;){if(_t.existsSync(e))return e;e=Ai.dirname(e)}return _t.existsSync(t)?t:null}function Vf(n){let e=ZE(n);if(!e)throw new ue("errorCode",`No existing parent directory found for '${n}'. Cannot create project directory.`);try{_t.accessSync(e,_t.constants.W_OK)}catch{throw new ue("errorCode",`No write permission for directory '${e}'. Cannot create project here.`)}let t=Ai.join(e,`.deveco_write_test_${Date.now()}`);try{_t.writeFileSync(t,"test"),_t.unlinkSync(t)}catch{throw new ue("errorCode",`No write permission for directory '${e}'. Cannot create project here.`)}}function QE(n){return`com.example.${n.toLowerCase()}`}function eP(n,e){if(e){let i=Gf(e),o=Ai.resolve(i);if(_t.existsSync(o)){if(_t.readdirSync(o).length>0)throw new ue("errorCode",`Directory '${o}' is not empty. Cannot create project here.`)}else Vf(o);return o}let t=Bc.cwd(),r=Ai.join(t,n);if(_t.existsSync(r))throw new ue("errorCode",`Directory '${r}' already exists. Cannot create project here.`);return Vf(r),r}function tP(n,e){let t=e?.getMaxApiLevel(),r=23;if(n.apiLevel){let i=Number(n.apiLevel);if(!Number.isInteger(i)||i<17)throw new ue("errorCode",`Invalid API version ${n.apiLevel}. API version 17 or higher is required.`);if(t!==void 0){if(i>t)throw new ue("errorCode",`Invalid API version ${n.apiLevel}. Your SDK supports API version 17-${t}`)}else if(i>r)throw new ue("errorCode",`Invalid API version ${n.apiLevel}. Without DevEco Studio, supported range is API version 17-${r}`);return i}return t!==void 0?t:23}async function nP(){try{return await A.new()}catch(n){console.error(Wf(`DevEco Studio not found: ${n.message}`)),console.log(Wf("Use placeholder API level instead."));return}}var ue=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};async function Wc(n,e,t,r){let i={event:b.CommandExecuted,args:["create"],apiLevel:r?.apiLevel??null},o={duration_ms:Date.now()-n,success:e,error_code:t};await I.track(i,o).catch(()=>{})}function rP(n){console.log(`
1281
- `+Uf("Project created successfully.")),console.log(`Project root: ${n.projectRoot}`),console.log(`App name: ${n.appName}`),console.log(`Bundle name: ${n.bundleName}`),console.log(`API level: ${n.apiLevel}`),console.log(Uf("Template integrity check passed."))}var iP=new YE("create").description("Scaffold a new HarmonyOS application project").option("--project-path <path>","Project directory path (default: ./<app-name>)").option("--app-name <name>","Application name").option("--bundle-name <bundle>","Bundle name (auto-derived as com.example.<app-name> if omitted)").option("--api-level <level>","API level (auto-detected from SDK if omitted; minimum: 17)").action(async n=>{let e=Date.now();try{n.appName||(console.error(Uc("Error: --app-name is required")),await Wc(e,!1,"errorCode",n),Bc.exit(1));let t=n.appName;XE(t);let r=n.bundleName||QE(t);S.assertBundleNameStrict(r),n.projectPath&&Bf(n.projectPath);let i=eP(t,n.projectPath);Bf(i),console.log(KE("Initializing project...")),console.log(`Project path: ${i}`),console.log(`App name: ${t}`),console.log(`Bundle name: ${r}`);let o=await nP(),s=tP(n,o);console.log(`API level: ${s}`);let a=o?.devecoStudioPath,c=Hf(i,t,r,s,a);rP(c),await Wc(e,!0,null,n)}catch(t){let r=t,o=t instanceof ue?t.code:r.code??r.name??"UnknownError";console.error(Uc(`
1282
- Failed to create project.`)),console.error(Uc(r.message)),await Wc(e,!1,o,n),Bc.exit(1)}}),zf=iP;import{Command as uP}from"commander";import{red as pP,cyan as tm}from"colorette";import oP from"fs";import is from"path";import{cyan as sP}from"colorette";import*as os from"smol-toml";var br=oP.promises;async function aP(n){try{let e=await br.readFile(n,"utf8");return e.trim()===""?{}:JSON.parse(e)}catch(e){if(e.code==="ENOENT")return{};throw new Error(`Failed to read configuration file ${n}: ${e.message}`,{cause:e})}}async function cP(n){try{let e=await br.readFile(n,"utf8");return e.trim()===""?{}:os.parse(e)}catch(e){if(e.code==="ENOENT")return{};throw new Error(`Failed to read TOML config file ${n}: ${e.message}`,{cause:e})}}async function lP(n,e){let t=is.dirname(n);await br.mkdir(t,{recursive:!0});let r=JSON.stringify(e,null,2);await br.writeFile(n,r,"utf8")}async function dP(n,e){let t=is.dirname(n);await br.mkdir(t,{recursive:!0});let r=os.stringify(e);await br.writeFile(n,r,"utf8")}function Jf(n,e,t){let r=n[e];return!r||typeof r!="object"?!1:t in r}function Yf(n,e,t,r,i){(!n[e]||typeof n[e]!="object")&&(n[e]={});let o=n[e];return t in o&&!i?!1:(o[t]=r,!0)}async function Kf(n,e){return n.format==="codex"?cP(e):aP(e)}async function Xf(n,e,t){return n.format==="codex"?dP(e,t):lP(e,t)}async function Zf(n,e,t=!1){let r=Gt[n];if(!r)return{success:!1,error:`Unknown agent: ${n}. Supported agents: ${Object.keys(Gt).join(", ")}`};if(!r.supportsGlobal)return{success:!1,error:`${r.displayName} does not support global MCP configuration. Use --project to configure project-level MCP.`};try{let i=await Kf(r,r.globalConfigPath);if(Jf(i,r.mcpServersKey,gt)&&!t)return console.log(`MCP server ${gt} already configured in ${r.globalConfigPath}.`),{success:!0,skipped:!0,configPath:r.globalConfigPath,agentName:n,installType:"global"};let o=lo(r,void 0);return Yf(i,r.mcpServersKey,gt,o,t),await Xf(r,r.globalConfigPath,i),console.log(`MCP server ${gt} configured in ${r.globalConfigPath}.`),{success:!0,configPath:r.globalConfigPath,agentName:n,installType:"global"}}catch(i){return{success:!1,error:`Failed to configure MCP for ${r.displayName}: ${i.message}`}}}async function Vc(n,e,t=!1){let r=Gt[n];if(!r)return{success:!1,error:`Unknown agent: ${n}. Supported agents: ${Object.keys(Gt).join(", ")}`};let i=is.isAbsolute(r.projectConfigPath)?r.projectConfigPath:is.join(e,r.projectConfigPath);try{let o=await Kf(r,i);if(Jf(o,r.mcpServersKey,gt)&&!t)return console.log(`MCP server ${gt} already configured in ${i}.`),{success:!0,skipped:!0,configPath:i,agentName:n,installType:"project"};let s=lo(r,e);return Yf(o,r.mcpServersKey,gt,s,t),await Xf(r,i,o),console.log(`MCP server ${gt} configured in ${i}.`),{success:!0,configPath:i,agentName:n,installType:"project"}}catch(o){return{success:!1,error:`Failed to configure MCP for ${r.displayName}: ${o.message}`}}}function Qf(n){let e=n.filter(i=>i.success&&!i.skipped).length,t=n.filter(i=>i.skipped).length,r=n.filter(i=>!i.success).length;console.log(),console.log(sP("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${r}`);for(let i of n)!i.success&&i.error&&console.error(` - ${i.agentName??"unknown"}: ${i.error}`);r>0&&(process.exitCode=1)}var qc="deveco-cli";async function fP(n,e,t){if(n.customPath)return[await Ef(qc,e,n.customPath,t.force)];let r=[...n.projectAgents.map(({project:s,agent:a})=>()=>Sf(qc,e,s,a,t.force)),...n.agents.map(s=>()=>bf(qc,e,s,t.force))],i=5,o=[];for(let s=0;s<r.length;s+=i){let a=r.slice(s,s+i);o.push(...await Promise.all(a.map(c=>c())))}return o}function mP(n){return[...new Set([...n.agents,...n.projectAgents.map(({agent:e})=>e)])]}async function em(n,e,t,r){await I.track(n,{duration_ms:Date.now()-e,success:t,error_code:r}).catch(()=>{})}async function hP(n,e,t,r,i){let o={event:b.SkillConfigOperation,subAction:"install",targetType:r?"path":i?"project":"global",agents:mP(n)},s=Date.now();try{let a=await fP(n,e,t),c=a.every(l=>l.success||l.skipped);return await em(o,s,c,c?null:"SKILL_INSTALL_FAILED"),a}catch(a){let c=a instanceof Error?a.code??a.name:"UnknownError";throw await em(o,s,!1,c),a}}async function gP(n,e,t){let r=[];for(let{project:i,agent:o}of n.projectAgents){let s=await Vc(o,i,t);r.push(s)}for(let i of n.agents){let o=await Vc(i,e,t);r.push(o)}return r}async function yP(n,e){let t=[];for(let r of n){if(!Gt[r])continue;let o=await Zf(r,process.cwd(),e);t.push(o)}return t}async function vP(n,e,t){if(t.agent&&t.agent.split(",").map(l=>l.trim()).includes("qoder"))throw new Error("Qoder does not support MCP configuration via DevEco CLI. Use other supported agents instead.");let r=t.force??!1,i=n.projectAgents.filter(c=>c.agent!=="qoder"),o=n.agents.filter(c=>c!=="qoder"),s={...n,projectAgents:i,agents:o},a=e?await gP(s,e,r):await yP(s.agents,r);a.length>0&&(console.log(tm("MCP Configuration:")),Qf(a))}async function wP(n,e,t){let r={event:b.Init,subAction:"install",targetType:e?"project":"global",agentName:t.agent},i=Date.now(),o=!0,s=null;try{await vP(n,e,t)}catch(a){throw o=!1,s=a instanceof Error?a.code??a.name:"UnknownError",a}finally{let a={duration_ms:Date.now()-i,success:o,error_code:s};await I.track(r,a)}}async function bP(n){if(n.skill&&n.mcp)throw new Error("Cannot use `--skill` and `--mcp` together. Use `--skill` for skill installation only, or `--mcp` for MCP configuration only.");let{resolvedPath:e,resolvedProject:t}=Pi(n.path,n.project,n.agent);t&&on(t,"Project directory",n.force),e&&on(e,"Directory",n.force);let r=await Zo(n,e,t);if(n.mcp){await wP(r,t,n);return}let i=kf(),o=await hP(r,i,n,e,t);console.log(),o.length>0&&(console.log(tm("Skill Installation:")),Ei(o))}var SP=new uP("init").description("Install the deveco-cli skill or configure the deveco-mcp server into AI agents").option("--agent <agents>","Target agents, comma-separated; installs to all available agents if omitted").option("--project <path>","Project root directory for skill or MCP configuration").option("--path <path>","Path to install the skill directly (cannot be used with --project or --agent)").option("--skill","Install the deveco-cli skill only (same as default behavior; explicit for symmetry with --mcp)").option("--mcp","Configure the deveco-mcp server (syntax checking for .ets and C/C++) only; no skill installation").option("-f, --force","Overwrite existing skill/MCP configuration").action(async n=>{try{await bP(n)}catch(e){console.error(pP(e instanceof Error?e.message:String(e))),process.exit(1)}}),nm=SP;import{Command as PC}from"commander";import{McpServer as aC}from"@modelcontextprotocol/sdk/server/mcp.js";import{StdioServerTransport as cC}from"@modelcontextprotocol/sdk/server/stdio.js";import*as Oi from"fs";import*as pn from"path";import{z as pe}from"zod";import ss from"path";function om(n,e,t,r,i){if(e.isError)return{};let o=e.content?.[0]?.text??"";if(!o)return{};let s;switch(n){case"check":s=EP(o);break;case"hover":s={hit:Sr(o)!=null};break;case"definition":case"declaration":s=rm(o,t,r,i,!0);break;case"references":s=CP(o);break;case"implementation":s=rm(o,t,r,i,!1);break;case"documentSymbol":s=kP(o);break;case"callHierarchy":s=IP(o,t,r,i);break;case"workspaceSymbol":s=AP(o,t);break;default:s={}}return s}function sm(n){let e=Array.isArray(n.files)?n.files[0]:n.file;return typeof e!="string"||!e?void 0:ss.extname(e).toLowerCase().replace(/^\./,"")||void 0}function Sr(n){let e=n.indexOf(": ");if(e<0)return;let t=n.slice(e+2).trim();if(!(!t||t==="no result"))try{return JSON.parse(t)}catch{return}}function EP(n){let e={total:0,error:0,warn:0,info:0},t=new Set,r=" => Diagnostic: ";for(let o of n.split(`
1283
- `)){let s=o.indexOf(r);if(s<0)continue;let a;try{a=JSON.parse(o.slice(s+r.length))}catch{continue}if(Array.isArray(a))for(let c of a)c&&typeof c=="object"&&PP(c,e,t)}let i={diagTotal:e.total,diagError:e.error,diagWarn:e.warn,diagInfo:e.info};return t.size>0&&(i.rules=[...t]),i}function PP(n,e,t){e.total++;let r=n.severity;r===1?e.error++:r===2?e.warn++:(r===3||r===4)&&e.info++,typeof n.source=="string"&&t.add(n.source)}function CP(n){let e=Sr(n),t=Array.isArray(e)?e:[],r=new Set;for(let i of t){let o=i?.uri;typeof o=="string"&&r.add(o)}return{refTotal:t.length,fileCount:r.size}}function rm(n,e,t,r,i){let o=Sr(n);if(o==null)return{found:!1};let s=Array.isArray(o)?o:[o],a=s[0]?.uri;return i?{found:!0,sameFile:DP(a,e),sourceType:cm(a,t,r)}:{implTotal:s.length,found:!0}}function kP(n){let e=Sr(n),t=Array.isArray(e)?e:[],r=0,i=new Map,o=s=>{for(let a of s){if(!a||typeof a!="object")continue;r++;let c=a.kind;typeof c=="number"&&i.set(c,(i.get(c)??0)+1);let l=a.children;Array.isArray(l)&&o(l)}};return o(t),{symbolTotal:r,kindDist:Gc(i)}}function IP(n,e,t,r){let o=Sr(n)?.calls,s=Array.isArray(o)?o:[],a=e.direction,c=new Map;for(let l of s){if(!l||typeof l!="object")continue;let g=(a==="incoming"?l.from:l.to)?.uri,v=cm(g,t,r);c.set(v,(c.get(v)??0)+1)}return{callsTotal:s.length,calleeSrcDist:Gc(c)}}function AP(n,e){let t=Sr(n),r=Array.isArray(t)?t:[],i=new Map,o=0;for(let c of r){if(!c||typeof c!="object")continue;let l=c.kind;typeof l=="number"&&i.set(l,(i.get(l)??0)+1);let d=c.tags;(Array.isArray(d)&&d.includes(1)||c.deprecated===!0)&&o++}let s={resultTotal:r.length,kindDist:Gc(i),deprecatedHit:o},a=e.query;return typeof a=="string"&&(s.queryLen=a.length),s}function am(n){if(typeof n!="string"||!n)return null;let e=n;return e.startsWith("file://")&&(e=e.slice(7),process.platform==="win32"&&e.startsWith("/")&&(e=e.slice(1))),e}function cm(n,e,t){let r=am(n);return r?e&&im(r,e)?"user_project":t&&im(r,t)?"sdk":"system":"unknown"}function DP(n,e){let t=am(n),r=e.file;return!t||typeof r!="string"?!1:as(t)===as(r)}function as(n){try{return ss.resolve(n).replace(/\\/g,"/").toLowerCase()}catch{return n.replace(/\\/g,"/").toLowerCase()}}function im(n,e){let t=ss.relative(as(e),as(n));return t!==""&&!t.startsWith("..")&&!ss.isAbsolute(t)}function Gc(n){let e={};for(let[t,r]of n)e[String(t)]=r;return e}var cs=class{constructor(e,t,r,i){this.telemetry=e;this.getAceServerPid=t;this.getProjectPath=r;this.getSdkPath=i}telemetry;getAceServerPid;getProjectPath;getSdkPath;tools=new Map;add(e,t){return this.tools.set(e.name,{definition:e,handler:t}),this}getAll(){return Array.from(this.tools.values())}registerToServer(e){for(let{definition:t,handler:r}of this.getAll())e.registerTool(t.name,{description:t.description,inputSchema:t.inputSchema},(async i=>this.invokeTool(t.name,i,r)))}async invokeTool(e,t,r){if(h.info(`[telemetry] mcp tool call: ${e}`),!this.telemetry)return r(t);let i=ce(process.memoryUsage().rss),o=await this.resolveLspMemory(),s=Date.now(),a=!0,c=null,l;try{l=await r(t)}catch(d){throw a=!1,c=d instanceof Error?d.code??d.name:"UnknownError",d}finally{await this.trackToolCall(e,t,l,s,i,o,a,c)}return l}async trackToolCall(e,t,r,i,o,s,a,c){if(!this.telemetry)return;let l=r?.isError===!0,d=r&&!l?om(e,r,t,this.getProjectPath?.()??"",this.getSdkPath?.()??""):{},g=l?!1:a,v=l&&r?RP(r):c,D={event:b.McpToolCall,subAction:e,mcpMemory:o,lspMemory:s,fileExt:sm(t),...d};typeof t.direction=="string"&&(D.direction=t.direction),await this.telemetry.track(D,{duration_ms:Date.now()-i,success:g,error_code:v})}async resolveLspMemory(){let e=this.getAceServerPid?.()??null;if(e===null)return"unknown";let t=await Xe(e);return t===null?"unknown":ce(Number(t)*1024)}};function RP(n){let e=n.content.map(t=>t.text).join(`
1284
- `);return/not ready|未初始化|初始中|稍后重试|please retry|retry \d+s|syncing|initializing|初始化失败|C\+\+ project initialization failed/i.test(e)?"NotReady":/No project detected|PROJECT_PATH|工程路径/i.test(e)?"NoProject":/Missing.*parameter|invalid parameters|Unknown feature|must be|不能同时|Must specify|无效/i.test(e)?"BadRequest":/Too many files|Maximum allowed/i.test(e)?"TooManyFiles":/不存在|does not exist|not exist|not found|No valid|不是 \.ets|not a supported|Unsupported/i.test(e)?"InvalidFile":"ToolError"}function zc(n,e,t,r){return new cs(n,e,t,r)}import*as qe from"fs";import*as Ee from"path";import{z as Kc}from"zod";function lm(n){return"method"in n&&!("id"in n)}import{spawn as TP}from"child_process";import{EventEmitter as xP}from"events";import*as Er from"fs";import*as dm from"path";var LP=50*1024*1024,sn=class extends xP{constructor(t){super();this.config=t}config;process=null;buffer=Buffer.alloc(0);isClosing=!1;get pid(){return this.process?.pid??null}ensureDirectories(){let t=dm.join(this.config.logPath,"lspLog");return Er.existsSync(t)||Er.mkdirSync(t,{recursive:!0}),Er.existsSync(this.config.indexingDataLocation)||Er.mkdirSync(this.config.indexingDataLocation,{recursive:!0}),t}async start(t){let r=this.ensureDirectories();u.info(`[LspClient] serverMaxSize=${t}MB`);let i=V(r),o=["--expose-gc",`--max-old-space-size=${t}`,"--report-on-fatalerror","--report-uncaught-exception",`--report-filename=nodejs_error_${Date.now()}.txt`,`--report-dir=${i}`,this.config.serverPath,"--stdio",`--logger-path=${i}`,"--logger-level=TRACE"];u.info(`[LspClient] Starting process: node ${o.join(" ")}`);let s=process.execPath??"node";u.info(`[LspClient] nodePath: ${s}`),this.process=TP(s,o,{cwd:this.config.cwd||process.cwd(),stdio:["pipe","pipe","pipe"],windowsHide:!0}),this.bindProcessEvents(),await new Promise(a=>setTimeout(a,500)),u.info("[LspClient] start lsp process success")}attachProcess(t,r){if(this.process)throw new Error("[LspClient] process already attached");this.process=t,this.bindProcessEvents(r?.stderrAsError??!0),u.info("[LspClient] attached to external process")}bindProcessEvents(t=!0){this.process&&(this.process.stdout?.on("data",r=>{this.handleData(r)}),this.process.stderr?.on("data",r=>{let i=r.toString("utf8").trim();u.error(`[LspClient] stderr: ${i}`),!this.isClosing&&t&&this.emit("error",new Error(`[LspClient] stderr: ${i}`))}),this.process.on("exit",r=>{u.info(`[LSP EXIT] code=${r}`),this.isClosing||this.emit("error",new Error(`LSP process exited with code ${r}`))}))}sendRaw(t,r){if(!this.process?.stdin?.writable){u.warn("[LspClient] Cannot send message, stdin not writable");return}u.info(`[LspClient] send message: ${r}`);let i=this.buildLspMessage(t);this.process.stdin.write(i,"utf8")}send(t,r,i){let o={jsonrpc:"2.0",method:t,params:r};i!==void 0&&(o.id=i),this.sendRaw(JSON.stringify(o),t)}sendNotification(t,r){this.sendRaw(JSON.stringify({jsonrpc:"2.0",method:t,params:r}),t)}sendRequest(t,r,i){this.sendRaw(JSON.stringify({jsonrpc:"2.0",id:i,method:t,params:r}),t)}buildLspMessage(t){return`Content-Length: ${Buffer.from(t,"utf8").length}\r
1285
- \r
1286
- ${t}`}handleData(t){for(this.buffer=Buffer.concat([this.buffer,t]);;){let r=this.buffer.indexOf(`\r
1287
- \r
1288
- `);if(r===-1)break;let o=this.buffer.slice(0,r).toString("ascii").match(/Content-Length:\s*(\d+)/i);if(!o){u.warn("[LspClient] Invalid LSP header, drop until next packet"),this.buffer=this.buffer.slice(r+4);continue}let s=parseInt(o[1],10);if(!Number.isFinite(s)||s<0||s>LP){u.warn(`[LspClient] Invalid Content-Length: ${o[1]}, drop until next packet`),this.buffer=this.buffer.slice(r+4);continue}let a=r+4,c=a+s;if(this.buffer.length<c)break;let l=this.buffer.slice(a,c).toString("utf8"),d=this.recoverFramedJson(l);if(d&&d.rest.length>0){u.warn(`[LspClient] recovered mixed LSP frame, bodyLen=${l.length}, restLen=${d.rest.length}`),this.emit("message",d.json),this.buffer=Buffer.concat([Buffer.from(d.rest,"utf8"),this.buffer.slice(c)]);continue}this.emit("message",l),this.buffer=this.buffer.slice(c)}}waitForExitOrTimeout(t){let r=this.process;return!r||r.exitCode!==null||r.signalCode!==null?Promise.resolve():new Promise(i=>{let o=!1,s=()=>{o||(o=!0,clearTimeout(c),r.off("exit",a),i())},a=()=>s();r.once("exit",a);let c=setTimeout(s,t)})}recoverFramedJson(t){let r=t.search(/\S/);if(r<0||t[r]!=="{"&&t[r]!=="[")return null;let i=0,o=!1,s=!1;for(let a=r;a<t.length;a++){let c=t[a];if(o){if(s){s=!1;continue}if(c==="\\"){s=!0;continue}c==='"'&&(o=!1);continue}if(c==='"'){o=!0;continue}if(c==="{"||c==="["){i++;continue}if((c==="}"||c==="]")&&(i--,i===0)){let l=t.slice(r,a+1),d=t.slice(a+1);return{json:l,rest:d}}}return null}stop(){this.isClosing=!0;let t=this.process;if(!t)return;if(this.process=null,t.exitCode===null&&t.signalCode===null)try{t.kill()}catch{}}};var an=class{callbacks=new Map;pending=new Map;timeouts=new Map;registerPending(e,t,r){return new Promise((i,o)=>{let s;r>0&&(s=setTimeout(()=>{this.pending.delete(e),this.timeouts.delete(e),o(new Error(`LSP request '${t}' (id=${e}) timeout after ${r}ms`))},r),this.timeouts.set(e,s)),this.pending.set(e,{resolve:i,reject:o,method:t,timer:s})})}resolvePending(e,t){this.clearTimeout(e);let r=this.pending.get(e);return r?(r.resolve(t),this.pending.delete(e),!0):!1}rejectPending(e,t){this.clearTimeout(e);let r=this.pending.get(e);return r?(r.reject(t),this.pending.delete(e),!0):!1}register(e,t){this.callbacks.set(e,t)}emit(e,t,r){u.info(`[RequestCallbackManager] emit, method: ${t}, key: ${e}`),this.clearTimeout(e);let i=this.callbacks.get(e);if(i)try{i(t,r)}finally{this.callbacks.delete(e)}else{let o=[...this.callbacks.keys()].map(s=>String(s));u.info(`[RequestCallbackManager] emit: NO callback for key='${e}', registered keys=[${o.join(",")}]`)}}registerTimeout(e,t,r,i){let o=this.timeouts.get(e);o&&clearTimeout(o);let s=setTimeout(()=>{u.info(`[RequestCallbackManager] timeout, key=${e}, method=${t}`);try{i()}finally{this.timeouts.delete(e)}},r);this.timeouts.set(e,s)}clearTimeout(e){let t=this.timeouts.get(e);t&&(clearTimeout(t),this.timeouts.delete(e))}deleteCallback(e){this.callbacks.delete(e)}hasCallback(e){return this.callbacks.has(e)||this.pending.has(e)}clear(e){this.clearTimeout(e);let t=this.pending.get(e);t&&(t.reject(new Error(`Request '${t.method}' (id=${e}) cancelled`)),this.pending.delete(e)),this.callbacks.delete(e)}rejectAll(e){for(let[,t]of this.pending)t.reject(e);this.pending.clear();for(let[,t]of this.timeouts)clearTimeout(t);this.timeouts.clear(),this.callbacks.clear()}};var ls=class{uri;diagnostics=[];constructor(e){this.uri=e}set(e){this.diagnostics=e}get(){return this.diagnostics}clear(){this.diagnostics=[]}};var Pr=class{map=new Map;register(e,t){let r=this.map.get(e);r||(r=new Set,this.map.set(e,r)),r.add(t)}unregister(e,t){let r=this.map.get(e);r&&(t!==void 0?r.delete(t):r.clear(),r.size===0&&this.map.delete(e))}invoke(e,...t){let r=this.map.get(e);if(r)for(let i of r)try{i(...t)}catch(o){console.error(`[CallbackRegistry] invoke("${String(e)}") callback error:`,o)}}invokeOnce(e,...t){this.invoke(e,...t),this.unregister(e)}clear(){this.map.clear()}has(e){let t=this.map.get(e);return t!==void 0&&t.size>0}};function R(n){return typeof n=="object"&&n!==null}var um=20*1e3,NP=30*1e3,ds=class{client;nextRequestId=1;stopOnce=null;callbacks=new Pr;requestCallbacks=new an;diagnosticMap=new Map;initProgressReset=null;get lspPid(){return this.client.pid}constructor(e){this.client=new sn(e),this.client.on("message",t=>this.handleRawMessage(t)),this.client.on("error",t=>this.handleError(t))}async start(e){await this.client.start(e)}stop(){return this.stopOnce||(this.stopOnce=(async()=>{u.info("[ClientMessageHandle] Sending shutdown request"),this.client.sendRequest(y.SHUTDOWN,null,this.nextRequestId++),u.info("[ClientMessageHandle] Sending exit notification"),this.client.sendNotification(y.EXIT,null),u.info("[ClientMessageHandle] Waiting for LSP process to exit"),await this.client.waitForExitOrTimeout(300),u.info("[ClientMessageHandle] LSP exit wait completed, calling stop"),this.client.stop()})()),this.stopOnce}setBroadcastToClients(e){this.callbacks.unregister(y.BROADCAST),this.callbacks.register(y.BROADCAST,e)}broadcastToClients(e){this.callbacks.invoke(y.BROADCAST,e)}async sendInitialize(e){let t=this.nextRequestId++,r=this.requestCallbacks.registerPending(t,y.INITIALIZE,Ze);return this.client.sendRequest(y.INITIALIZE,e,t),r}sendInitializeResettable(e,t){let r=this.nextRequestId++,i=this.requestCallbacks.registerPending(r,y.INITIALIZE,0);return this.client.sendRequest(y.INITIALIZE,e,r),new Promise((o,s)=>{let a,c=()=>{a=setTimeout(()=>{this.initProgressReset=null,s(new Error(`LSP initialization timeout after ${t}ms`))},t)},l=()=>{clearTimeout(a),c()};this.initProgressReset=l,c(),i.then(()=>{clearTimeout(a),this.initProgressReset=null,o()},d=>{clearTimeout(a),this.initProgressReset=null,s(d)})})}sendInitialized(){this.client.sendNotification(y.INITIALIZED,{})}sendDidOpen(e){let t=e.textDocument.uri;this.diagnosticMap.has(t)||(this.diagnosticMap.set(t,new ls(t)),this.registerDiagnosticTimeout(t)),this.client.sendNotification(y.DID_OPEN,e)}sendDidChange(e){let t=e.textDocument.uri,r=this.diagnosticMap.get(t);r&&(r.clear(),this.registerDiagnosticTimeout(t)),this.client.sendNotification(y.DID_CHANGE,e)}closeFile(e){this.cleanupDiagnosticState(e.textDocument.uri),this.client.sendNotification(y.DID_CLOSE,e)}sendLspRequest(e,t,r=NP){let i=this.nextRequestId++,o=this.requestCallbacks.registerPending(i,e,r);return this.client.sendRequest(e,t,i),o}registerRequestCallback(e,t){this.requestCallbacks.register(e,t)}onDidChangeWatchedFiles(e){e.length!==0&&this.client.sendNotification(y.WORKSPACE_DID_CHANGE_WATCHED_FILES,{changes:e})}sendDidChangeConfiguration(e){this.client.sendNotification(y.WORKSPACE_DID_CHANGE_CONFIGURATION,{settings:e})}sendNotification(e,t){this.client.sendNotification(e,t)}getDiagnosticMessages(e){let t=this.diagnosticMap.get(e);return t?t.get():[]}clearDiagnostic(e){this.diagnosticMap.get(e)?.clear()}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(r){let i=r instanceof Error?r.message:String(r);u.error(`[LSP] JSON parse error: ${i}, raw: ${e}`);return}"id"in t&&("result"in t||"error"in t)?this.handleResponse(t):"method"in t?this.handleNotificationOrRequest(t):u.warn(`[LSP] Unrecognized message: ${JSON.stringify(t).slice(0,200)}`)}handleResponse(e){let t=e.id;if(t===void 0)return;let r=t;if(e.error){let i=new Error(`LSP error ${e.error.code}: ${e.error.message}`);this.requestCallbacks.rejectPending(r,i)}else this.requestCallbacks.resolvePending(r,e.result)}handleNotificationOrRequest(e){let t=e.method;if(t)switch(this.initProgressReset?.(),t){case y.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(e.params);break;case y.PROGRESS:this.handleProgress(e.params);break;case y.WINDOW_SHOW_MESSAGE:u.info(`[LSP] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:u.info(`[LSP] window/logMessage: ${JSON.stringify(e.params)}`);break;default:this.broadcastToClients(e)}}handlePublishDiagnostics(e){if(!e||!e.uri)return;let t=e.uri,r=this.diagnosticMap.get(t);if(!r)return;let i=e.diagnostics||[];this.normalizeDiagnostics(i),r.set(i),this.finalizeDiagnostic(t,i)}normalizeDiagnostics(e){for(let t of e)if(t.severity!==void 0){let r={1:"Error",2:"Warning",3:"Information",4:"Hint"};t.severityStr=r[t.severity]||"Unknown"}}handleProgress(e){R(e)&&this.broadcastToClients({jsonrpc:T,method:y.PROGRESS,params:e})}registerDiagnosticTimeout(e){this.requestCallbacks.registerTimeout(e,y.PUBLISH_DIAGNOSTICS,um,()=>{let t=this.diagnosticMap.get(e),r=t?t.get():[];this.finalizeDiagnostic(e,r,r.length>0?void 0:`received no diagnostics within ${um}ms, uri: ${e}`)})}finalizeDiagnostic(e,t,r){let i={uri:e,diagnostics:t,...r?{errorMessage:r}:{}};this.requestCallbacks.emit(e,y.PUBLISH_DIAGNOSTICS,i),this.diagnosticMap.get(e)?.clear()}handleError(e){let t=Array.from(this.diagnosticMap.keys()).filter(r=>this.requestCallbacks.hasCallback(r));if(t.length>0){let r={range:{start:{line:0,character:0},end:{line:0,character:0}},severity:1,message:e.message};for(let i of t)this.finalizeDiagnostic(i,[r]);return}this.broadcastToClients({jsonrpc:T,method:y.ARKTS_ERROR,params:{message:e.message}})}cleanupDiagnosticState(e){this.requestCallbacks.clear(e),this.diagnosticMap.delete(e)}};var us=class{uri;messages=[];receivedTypes=new Set;uniqueMessages=new Set;isFromEditor=!1;constructor(e){this.uri=e}setReceivedType(e){this.receivedTypes.add(e)}addMessage(e,t){this.receivedTypes.add(e);let r=`${e}:${t}`;if(this.uniqueMessages.has(r)){u.info(`[LegacyDiagnostic] addMessage: duplicate message=${r}`);return}this.uniqueMessages.add(r),this.messages.push(new Jc(e,t))}clearMessages(){this.messages=[]}clear(){this.receivedTypes.clear(),this.uniqueMessages.clear(),this.messages=[]}hasReceivedAllTypes(e){for(let t of e)if(!this.receivedTypes.has(t))return!1;return!0}getMessages(){return this.messages.map(e=>e.diagnostics)}},Jc=class{version=-1;diagnostics;constructor(e,t){this.version=e,this.diagnostics=t}};var OP={EXIT:"exit",INITIALIZED:"initialized",ON_DID_CHANGE_PACKAGE_DEPENDENCIES:"aceProject/onDidChangePackageDependencies",ON_ASYNC_DID_OPEN:"aceProject/onAsyncDidOpen",ON_ASYNC_DID_CHANGE:"aceProject/onAsyncDidChange",DID_CLOSE:"textDocument/didClose",ON_ASYNC_HOVER:"aceProject/onAsyncHover",ON_ASYNC_DEFINITION:"aceProject/onAsyncDefinition",ON_ASYNC_FIND_USAGES:"aceProject/onAsyncFindUsages"},MP={MODULE_INIT_FINISH:"aceProject/onModuleInitFinish",INDEXING_PROGRESS_UPDATE:"aceProject/onIndexingProgressUpdate",ON_FORCE_OPEN_FILE:"aceProject/onForceOpenFile",ON_PACKAGE_CHANGE_FINISH:"aceProject/onPackageChangeFinish",TEXT_DOCUMENT_ON_ASYNC_DEFINITION:"textDocument/onAsyncDefinition",ON_DID_CHANGE_PACKAGE_DEPENDENCIES_CLIENT:"textDocument/onDidChangePackageDependencies",PUBLISH_DIAGNOSTICS:"textDocument/publishDiagnostics",HOVER:"textDocument/hover",DEFINITION:"textDocument/definition",REFERENCES:"textDocument/references",DID_OPEN:"textDocument/didOpen",DID_CHANGE:"textDocument/didChange",WORKSPACE_DID_CHANGE_CONFIGURATION:"workspace/didChangeConfiguration",WORKSPACE_DID_CHANGE_WATCHED_FILES:"workspace/didChangeWatchedFiles",BROADCAST:"lsp/broadcast",ARKTS_ERROR:"arkts/error",ARKTS_INITIALIZED:"arkts/initialized",ARKTS_INITIALIZATION_FAILED:"arkts/initializationFailed",ARKTS_INDEXING_PROGRESS:"arkts/indexingProgress",ARKTS_SYNC_PROJECT:"arkts/syncProject",ARKTS_SYNC_COMPLETED:"arkts/syncCompleted",ARKTS_REINITIALIZING:"arkts/reinitializing"},x={...OP,...MP},cn={EXIT:"exit",INITIALIZED:"initialized",EMPTY:"empty",ON_DID_CHANGE_PACKAGE_DEPENDENCIES:"onDidChangePackageDependencies",ON_ASYNC_DID_OPEN:"onAsyncDidOpen",ON_ASYNC_DID_CHANGE:"onAsyncDidChange",DID_CLOSE:"didClose",ON_ASYNC_HOVER:"onAsyncHover",ON_ASYNC_DEFINITION:"onAsyncDefinition",ON_ASYNC_FIND_USAGES:"onAsyncFindUsages"},pm=new Set([1e3,2e3,3e3,3001]);function _P(n){if(!R(n))return!1;let e=n.textDocument;return R(e)&&typeof e.uri=="string"}function jP(n){return R(n)?typeof n.uri=="string"&&typeof n.type=="number":!1}function FP(n){return R(n)&&typeof n.moduleName=="string"&&typeof n.current=="number"&&typeof n.total=="number"?`indexing module '${n.moduleName}', ${n.current} of total ${n.total} modules`:`params=${JSON.stringify(n??null)}`}var ps=class n{client;isInitialized=!1;stopOnce=null;callbacks=new Pr;requestCallbacks=new an;diagnosticMap=new Map;static DIAGNOSTIC_TIMEOUT_MS=20*1e3;get lspPid(){return this.client.pid}constructor(e){this.client=new sn(e),this.client.on("message",t=>this.handleRawMessage(t)),this.client.on("error",t=>this.handleError(t))}async start(e){await this.client.start(e)}stop(){return this.stopOnce||(this.stopOnce=(async()=>{u.info("[LegacyClientMessageHandle] Sending exit notification to LSP"),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.EXIT,params:{}}),cn.EXIT),u.info("[LegacyClientMessageHandle] Waiting for LSP process to exit"),await this.client.waitForExitOrTimeout(300),u.info("[LegacyClientMessageHandle] LSP exit wait completed, calling stop"),this.client.stop()})()),this.stopOnce}setBroadcastToClients(e){this.callbacks.unregister(x.BROADCAST),this.callbacks.register(x.BROADCAST,e)}broadcastToClients(e){this.callbacks.invoke(x.BROADCAST,e)}onInitializationCompleted(e){this.isInitialized?e():this.callbacks.register(x.MODULE_INIT_FINISH,e)}onIndexingProgressUpdate(e){this.callbacks.register(x.INDEXING_PROGRESS_UPDATE,e)}registerRequestCallback(e,t){this.requestCallbacks.register(e,t)}sendInitialize(e,t){this.client.send("initialize",e,t)}sendInitialized(e){this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.INITIALIZED,params:{editors:e}}),cn.INITIALIZED),this.client.sendRaw(JSON.stringify({jsonrpc:T,id:0,result:{}}),cn.EMPTY)}sendAsyncRequest(e,t,r,i){if(!R(t)){u.warn(`[LSP] sendAsyncRequest invalid params, method=${e}`);return}if(!_P(t)){u.warn(`[LSP] sendAsyncRequest missing textDocument.uri, method=${e}, params=${JSON.stringify(t)}`);return}if(typeof r!="number"){u.warn(`[LSP] sendAsyncRequest invalid requestId, method=${e}, requestId=${String(r)}`);return}let o=t.textDocument.uri,s=lt(o);t.textDocument.uri=s,delete t.requestId;let a=i??e;u.info(`[LSP] sendAsyncRequest ${a}, filePath: ${o}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:e,params:{params:t,requestId:r}}),a)}onDidChangeWatchedFiles(e){if(u.info(`[LSP] onDidChangeWatchedFiles, params=${JSON.stringify(e)}`),e.length===0)return;let t=[];for(let r of e){if(!jP(r)){u.warn(`[LSP] onDidChangeWatchedFiles, param is missing 'uri' or 'type': ${JSON.stringify(r)}`);continue}t.push(r)}this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.WORKSPACE_DID_CHANGE_WATCHED_FILES,params:{changes:t}}),x.WORKSPACE_DID_CHANGE_WATCHED_FILES)}sendModuleDependencyUpdate(e){if(!R(e)||!Array.isArray(e.moduleSet)||e.moduleSet.length===0){u.warn("[LSP] sendModuleDependencyUpdate, moduleSet is empty or null");return}let t=e.moduleSet;u.info(`[LSP] sending module dependency updated, count: ${t.length}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_DID_CHANGE_PACKAGE_DEPENDENCIES,params:{params:e}}),cn.ON_DID_CHANGE_PACKAGE_DEPENDENCIES)}onAsyncOpenFile(e){let t=e.textDocument.uri,r=t.split(".").pop()||"";if(r!=="ets"&&r!=="ts")return;let i=lt(t);e.textDocument.uri=i,u.info(`[LSP] onAsyncOpenFile, uri: ${i}`);let o=this.diagnosticMap.get(i);o||(o=new us(i),this.diagnosticMap.set(i,o),this.registerDiagnosticTimeout(i,x.PUBLISH_DIAGNOSTICS)),e.isFromEditor&&(o.isFromEditor=!0),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_ASYNC_DID_OPEN,params:{params:{editorFiles:e.editorFiles,textDocument:e.textDocument}}}),cn.ON_ASYNC_DID_OPEN)}onAsyncDidChange(e){let t=lt(e.uri),r=this.diagnosticMap.get(t);r&&(r.clear(),this.registerDiagnosticTimeout(t,x.PUBLISH_DIAGNOSTICS)),u.info(`[LSP] onAsyncDidChange, uri: ${t}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_ASYNC_DID_CHANGE,params:{editorFiles:[e.uri],params:{textDocument:{uri:t,version:e.version===0?null:e.version},contentChanges:e.contentChanges}}}),cn.ON_ASYNC_DID_CHANGE)}closeFile(e,t){let r=lt(e);u.info(`[LSP] didClose, uri: ${r}`);let i=this.diagnosticMap.get(r);if(!t&&(!i||i.isFromEditor)){u.info(`[LSP] closeFile skip, !diagnostic: ${!i}, isFromEditor: ${i?.isFromEditor}`);return}this.cleanupDiagnosticState(r),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.DID_CLOSE,params:{textDocument:{uri:r}}}),cn.DID_CLOSE)}getDiagnosticMessage(e){let t=lt(e),r=this.diagnosticMap.get(t);return r?r.getMessages():[]}clear(e){this.diagnosticMap.get(e)?.clear()}handleRawMessage(e){try{let t=JSON.parse(e);this.handleLspMessage(t)}catch(t){let r=t instanceof Error?t.message:String(t);u.error(`[LSP] JSON parse error: ${r}, raw: ${e}`)}}handleError(e){let t=this.getPendingDiagnosticUris();if(t.length>0){let r=JSON.stringify({message:e.message,severity:"Error",severityStr:"Error"});for(let i of t)this.finalizeDiagnostic(i,x.PUBLISH_DIAGNOSTICS,[r]);return}this.broadcastToClients({jsonrpc:T,method:x.ARKTS_ERROR,params:{message:e.message}})}handleLspMessage(e){let t=e.method;t!==void 0&&(!this.isInitialized&&this.handlePreInitMessage(t,e)||this.handlePostInitMessage(t,e))}handlePreInitMessage(e,t){switch(e){case x.MODULE_INIT_FINISH:return u.info("[LSP] handleLspMessage, receive onModuleInitFinish"),this.isInitialized=!0,this.callbacks.invokeOnce(x.MODULE_INIT_FINISH),this.callbacks.unregister(x.INDEXING_PROGRESS_UPDATE),this.client.emit("initialized_done"),!0;case x.INDEXING_PROGRESS_UPDATE:return u.info(`[LSP] onIndexingProgressUpdate: ${FP(t.params)}`),this.callbacks.invoke(x.INDEXING_PROGRESS_UPDATE),!0;default:return!1}}handlePostInitMessage(e,t){switch(e){case x.ON_FORCE_OPEN_FILE:this.handleOnForceOpenFile(t);return;case x.ON_PACKAGE_CHANGE_FINISH:u.info("[LSP] handleLspMessage, receive onPackageChangeFinish"),this.handlePackageChangeFinish(t);return;case x.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(t);return;case x.ON_ASYNC_HOVER:this.handleAsyncResponse(t,x.HOVER);return;case x.ON_ASYNC_DEFINITION:this.handleAsyncResponse(t,x.TEXT_DOCUMENT_ON_ASYNC_DEFINITION);return;case x.ON_ASYNC_FIND_USAGES:this.handleAsyncResponse(t,x.REFERENCES);return;default:u.warn(`[LSP] handleLspMessage: no handler for notification, ignoring, method: ${e}, initialized: ${this.isInitialized}`)}}handleOnForceOpenFile(e){u.info("[LSP] handleLspMessage, receive onForceOpenFile");let t=e.params;R(t)&&R(t.result)&&typeof t.result.uri=="string"&&this.handleForceOpenFile(t.result.uri)}handlePublishDiagnostics(e){u.info("[LSP] handleLspMessage, receive publishDiagnostics");let t=e.params;t&&this.parseDiagnostics(t)}handlePackageChangeFinish(e){let t=e.params,r={jsonrpc:T,method:x.ON_PACKAGE_CHANGE_FINISH,params:[!1]};if(!t||!Array.isArray(t)){u.warn("[LSP] aceProject/onPackageChangeFinish params invalid"),this.broadcastToClients(r);return}if(!(t.length>0&&t[0]===!0)){u.warn("[LSP] aceProject/onPackageChangeFinish: package request failed"),this.broadcastToClients(r);return}u.info("[LSP] aceProject/onPackageChangeFinish: success"),this.broadcastToClients(e)}handleAsyncResponse(e,t){u.info(`[LSP] handleAsyncResponse\uFF0C method: ${t}`);let r=e.params;if(!R(r)){u.warn("[LSP] aceProject/onAsyncHover message invalid");return}let i=r.requestId;if(typeof i!="number"){u.warn(`[LSP] ${t} requestId invalid`);return}this.requestCallbacks.emit(i,t,r)}handleForceOpenFile(e){if(!e){u.warn("[LSP] handleForceOpenFile, uri is empty");return}this.requestCallbacks.emit(e,x.DID_OPEN,[]),this.clear(e)}parseDiagnostics(e){let t=e.uri;if(!t){u.info("[LSP] publishDiagnostics uri is null");return}let r=e.version??-1;if(r===-1)return;let i=this.diagnosticMap.get(t);if(!i){u.info(`[LSP] Diagnostic cleared for uri: ${t}`);return}let o=e.diagnostics||[];o.length!==0?o.forEach(s=>{this.normalizeDiagnostic(s),i.addMessage(r,JSON.stringify(s))}):i.setReceivedType(r),i.hasReceivedAllTypes(pm)&&this.finalizeDiagnostic(t,x.PUBLISH_DIAGNOSTICS,i.getMessages())}normalizeDiagnostic(e){let t=e;if(delete t.source,t.severity!==void 0){let r=typeof t.severity=="number"?t.severity:parseInt(t.severity),o={1:"Error",2:"Warning",3:"Information",4:"Hint"}[r]||"Unknown";t.severityStr=o,t.severity=o}e.range&&(this.adjustPositionLine(e.range,"start"),this.adjustPositionLine(e.range,"end"))}adjustPositionLine(e,t){let r=e[t];r&&typeof r.line=="number"&&(r.line=r.line+1)}registerDiagnosticTimeout(e,t){this.requestCallbacks.registerTimeout(e,t,n.DIAGNOSTIC_TIMEOUT_MS,()=>{let r=this.diagnosticMap.get(e),i=r?r.getMessages():[];this.finalizeDiagnostic(e,t,i,i.length>0?void 0:`received no diagnostics within ${n.DIAGNOSTIC_TIMEOUT_MS}ms from LSP, uri: ${e}`)})}finalizeDiagnostic(e,t,r,i){let o={uri:e,diagnostics:r,...i?{errorMessage:i}:{}};this.requestCallbacks.emit(e,t,o),this.diagnosticMap.get(e)?.clear()}getPendingDiagnosticUris(){return Array.from(this.diagnosticMap.keys()).filter(e=>this.requestCallbacks.hasCallback(e))}cleanupDiagnosticState(e){this.requestCallbacks.clear(e),this.diagnosticMap.delete(e)}};import Yc from"path";import*as ws from"path";var fs=class{enableRecentlyUsed=!1;enableCompletionSortByType=!0;maxValidCompletionItemsCount=50;enableCompletionFunctionParameter=!1;enableIndexModuleRootDirEtsFile=!1};var ms=class{overriddenEnable=!0;overridingEnable=!0;implementedEnable=!0;implementingEnable=!0};var hs=class{tsVariablesEnable=!1;tsPropertyEnable=!1;tsParameterEnable=!1;tsReturnEnable=!1;etsVariablesEnable=!1;etsPropertyEnable=!1;etsParameterEnable=!1;etsReturnEnable=!1};var gs=class{etsParameterNameHintKind=null;tsParameterNameHintKind=null};var ys=class{typeSetting=new hs;parameterNames=new gs};var vs=class{constructor(e,t,r,i){this.rootUri=e;this.lspServerWorkspacePath=V(ws.dirname(t)),this.indexingDataLocation=V(i),this.loggerPath=V(ws.join(r,"lspLog"))}rootUri;modules=[];clientType="intellij";indexingDataLocation="";completionSortSetting=new fs;gutterIconsSetting=new ms;inlayHintsSetting=new ys;lspMaxOldSpaceSize="8192";projectType="OHOS";loggerPath="";lspServerWorkspacePath};import*as fm from"path";var Di=class{productName="default";buildModeName="debug";targetName="default";arkTSVersion="1.1";resourceDirectories=[];targetESVersion="ES2021";maxFlowDepth=2e3;caseSensitiveCheck=!0;tsImportSendable=!1;compatibleSdkVersionStage="";useNormalizedOHMUrl=!0;reExportCheckMode="noCheck";skipOhModulesLint=!1;byteCodeHar=!0;obfuscationRuleOptionsEnable=!1;enableStrictCheckOHModules=!1;sourceRoots=[];constructor(e){e&&this.resourceDirectories.push(V(fm.join(e,"src","main","resources")))}};var $P="OS",Cr=class{deviceType=[5];aceLoaderPath;modulePath;jsComponentType="declarative";sdkJsPath;compatibleSdkVersion;compatibleSdkLevel;compileSdkLevel;compileSdkVersion="6.0.1.112";compileSdkType="Release";syscap={NDeviceSysCaps:[],addedSysCaps:[]};apiType="stageMode";hosSdkPath;runtimeOs=`Harmony${$P}`;moduleName;moduleType;compileMode="jsbundle";crossPlatform=!1;ignoreCrossPlatform=!1;packageManagerType="ohpm";permissions=[];testPermissions=[];buildProfileParam;appParam={bundleType:"app"};packageName;projectType="OHOS";projectName;moduleDependencies;moduleJsonParam=null;globalDeclarationFiles=[];constructor(e){e?(this.modulePath=e,this.buildProfileParam=new Di(e)):this.buildProfileParam=new Di}toString(){return JSON.stringify(this)}};var kr=class{constructor(e=[]){this.pages=e}pages;pagesFileName="main_pages.json";metaDataList=[]};import*as Re from"path";import*as Dr from"fs";var bs=class{modulePath;dependencies={};dynamicDependencies={}};var Un=class{registryType;resolved;name;version;type;constructor(e){let t=typeof e=="object"&&e!==null?e:{};this.name=typeof t.name=="string"?t.name:"",this.version=typeof t.version=="string"?t.version:"",typeof t.registryType=="string"?this.registryType=t.registryType:this.registryType=typeof t.path=="string"?"local":"ohpm",typeof t.resolved=="string"?this.resolved=t.resolved:typeof t.storePath=="string"?this.resolved=t.storePath:this.resolved="",this.type=typeof t.type=="string"?t.type:void 0}};var Ir=class{constructor(e,t,r){this.projectPath=e;this.moduleName=t;this.modulePath=r}projectPath;moduleName;modulePath;dependencies=[];devDependencies=[];dynamicDependencies=[];finalDependencies=[];finalDevDependencies=[];finalDynamicDependencies=[]};import*as jt from"path";import*as Ss from"fs";var Ar=class{name="";version="";storePath="";dependencyPath="";path=""};var _={HVIGOR_CACHE:".hvigor",DEPENDENCY:"dependencyMap",JSON5:".json5",KEY_DEPENDENCY:"dependencies",KEY_DYNAMIC_DEPENDENCY:"dynamicDependencies",KEY_DEV_DEPENDENCY:"devDependencies",OH_MODULES_PATH:"oh_modules",OHPM_PATH:".ohpm",LOCK_JSON5_FILE:"lock.json5",OH_PACKAGE_JSON5:Ce.OH_PACKAGE_JSON5},Ri=`${_.HVIGOR_CACHE}/${_.DEPENDENCY}`,Wn=`${_.DEPENDENCY}${_.JSON5}`,MU=Ce.SYNC_OUTPUT_PATH;var Ti=class n{dependencyPath;modulePath;projectPath;static FILE_DEPENDENCY_PREFIX="file:";static PARAMETER_PREFIX="@param:";fileSpecPattern;fileNameForOhpm=/[.](?:har|tgz|tar.gz|tar)$/;static PACKAGE_JSON_PARSER_MAP=new Map;dependencies=[];devDependencies=[];dynamicDependencies=[];static getInstance(e,t,r){let i=this.PACKAGE_JSON_PARSER_MAP.get(e);return i||(i=new n(e,t,r),this.PACKAGE_JSON_PARSER_MAP.set(e,i)),i}constructor(e,t,r){this.dependencyPath=e,this.modulePath=t,this.projectPath=r,this.fileSpecPattern=n.isWindows()?/^(?:[.]|~[/]|[/\\]|[a-zA-Z]:)/:/^(?:[.]|~[/]|[/]|[a-zA-Z]:)/}static isWindows(){return process.platform==="win32"}parseDependency(e){let t=jt.join(this.dependencyPath,_.OH_PACKAGE_JSON5),r=Ve(t);r&&(this.dependencies=this.getDependencyList(r,_.KEY_DEPENDENCY),this.devDependencies=this.getDependencyList(r,_.KEY_DEV_DEPENDENCY),this.dynamicDependencies=this.getDependencyList(r,_.KEY_DYNAMIC_DEPENDENCY),e.dependencies=this.dependencies,e.dynamicDependencies=this.devDependencies,e.devDependencies=this.dynamicDependencies)}getDependencyList(e,t){let r=[];if(!R(e))return r;let i=e[t];if(!R(i))return r;for(let[o,s]of Object.entries(i)){if(typeof s!="string"){u.error(`${o} package dependency value is not String ${t}`);continue}let a=new Ar;a.name=o;let c=s.replace(/\s/g,"");a.version=c,c.startsWith(n.PARAMETER_PREFIX)||this.parseDependencyPath(o,c,a,!1),r.push(a)}return r}parseDependencyPath(e,t,r,i){if(!(!e||!t))try{let o=jt.normalize(jt.join(this.modulePath,_.OH_MODULES_PATH,e));if(!(t.startsWith(n.FILE_DEPENDENCY_PREFIX)||this.fileSpecPattern.test(t))){r.dependencyPath=o;return}if(r.path=t,this.fileNameForOhpm.test(t)){r.dependencyPath=o;return}let s=t;if(t.startsWith(n.FILE_DEPENDENCY_PREFIX)&&(s=t.substring(n.FILE_DEPENDENCY_PREFIX.length)),jt.isAbsolute(s)){r.dependencyPath=o;return}i||(o=jt.resolve(this.modulePath,s)),Ss.existsSync(o)&&Ss.statSync(o).isDirectory()&&(r.dependencyPath=o)}catch(o){u.error("parser dependency path is invalid",o)}}};import*as Bn from"fs";import*as ln from"path";import HP from"json5";var Es=class n{projectPath;static FILE_DEPENDENCY_PREFIX="file:";static MAX_LOCK_FILE_SIZE=20*1024*1024;static MAX_KEYS_PER_OBJECT=5e4;static MAX_JSON_DEPTH=50;fileNameForOhpm=/[.](?:har|tgz|tar.gz|tar)$/;finalDependencies=[];finalDevDependencies=[];finalDynamicDependencies=[];storePathMap=new Map;lockFileCache=null;lockFileParsed=!1;constructor(e=""){this.projectPath=e}parseDependencies(e){if(!this.ensureLockFileParsed())return!1;let t=this.lockFileCache;return this.extractDependencies(t.modules,t.storePathMap,e),!0}ensureLockFileParsed(){if(this.lockFileParsed)return this.lockFileCache!==null;this.lockFileParsed=!0;let e=this.getLockFilePath(),t=this.readLockFile(e);if(!t)return!1;let r=this.validateLockFile(t);return r.valid?(this.lockFileCache={modules:r.modules,storePathMap:this.parseStorePathMap(r.packages)},!0):!1}getLockFilePath(){return ln.join(this.projectPath,_.OH_MODULES_PATH,_.OHPM_PATH,_.LOCK_JSON5_FILE)}static checkObjectDepth(e,t,r=0){if(r>t)return!1;if(typeof e!="object"||e===null)return!0;if(Array.isArray(e)){for(let i of e)if(!n.checkObjectDepth(i,t,r+1))return!1;return!0}for(let i in e)if(Object.prototype.hasOwnProperty.call(e,i)&&!n.checkObjectDepth(e[i],t,r+1))return!1;return!0}readLockFile(e){if(!Bn.existsSync(e))return u.error("lock file does not exist"),this.clearDependencies(),null;try{let t=Bn.statSync(e);if(t.size>n.MAX_LOCK_FILE_SIZE)return u.error(`lock file is too large (${t.size} bytes), read aborted`),this.clearDependencies(),null}catch(t){return u.error(`Failed to stat lock file: ${t instanceof Error?t.message:String(t)}`),this.clearDependencies(),null}try{let t=Bn.readFileSync(e,"utf8"),r=HP.parse(t);return r?n.checkObjectDepth(r,n.MAX_JSON_DEPTH)?r:(u.error("lock.json5 nesting depth exceeds limit"),this.clearDependencies(),null):(u.error("lockFileJsonObject is null"),this.clearDependencies(),null)}catch(t){return u.error(`Error parsing lock.json5: ${t instanceof Error?t.message:String(t)}`),this.clearDependencies(),null}}validateLockFile(e){if(!R(e))return u.error("lockFileJsonObject is not a valid object"),this.clearDependencies(),{valid:!1};let t=e.modules;if(!t)return u.error("modulesJsonObject is null"),this.clearDependencies(),{valid:!1};let r=e.packages;return r?{valid:!0,modules:t,packages:r}:(u.error("packagesJsonObject is null"),this.clearDependencies(),{valid:!1})}extractDependencies(e,t,r){this.storePathMap=t,this.finalDependencies=this.getDependencyList(e,_.KEY_DEPENDENCY,r),this.finalDevDependencies=this.getDependencyList(e,_.KEY_DEV_DEPENDENCY,r),this.finalDynamicDependencies=this.getDependencyList(e,_.KEY_DYNAMIC_DEPENDENCY,r)}parseStorePathMap(e){let t=new Map;if(!R(e))return t;let r=0;for(let i in e){if(!Object.prototype.hasOwnProperty.call(e,i))continue;let o=e[i];if(!R(o)){u.error(`${i} value is not json object`);continue}if(++r>n.MAX_KEYS_PER_OBJECT){u.warn("lock.json5 packages object exceeds key limit, truncating");break}typeof o.storePath=="string"&&t.set(i,o.storePath)}return t}getDependencyList(e,t,r){if(!R(e))return[];let i=0;for(let o in e){if(!Object.prototype.hasOwnProperty.call(e,o))continue;if(++i>n.MAX_KEYS_PER_OBJECT){u.warn("lock.json5 modules object exceeds key limit, truncating");break}let s=e[o];if(R(s)){let a=typeof s.name=="string"?s.name:"";if(r==="."&&a===""||a===r)return this.getFinalDependencyList(e,t,o)}}return[]}getFinalDependencyList(e,t,r){let i=e[r];if(!R(i))return u.error("moduleJsonObject is null"),[];let o=[],s=i[t];if(!R(s))return[];let a=0;for(let c in s){if(!Object.prototype.hasOwnProperty.call(s,c))continue;if(++a>n.MAX_KEYS_PER_OBJECT){u.warn("lock.json5 dependencies object exceeds key limit, truncating");break}let l=s[c];if(!R(l))continue;let d=typeof l.specifier=="string"?l.specifier:"",g=typeof l.version=="string"?l.version:"",v=new Ar;v.name=c,v.version=g.startsWith(n.FILE_DEPENDENCY_PREFIX)?g.substring(n.FILE_DEPENDENCY_PREFIX.length):g,this.parseDependencyPath(v,r,c,d,g);let D=`${c}@${g}`;this.storePathMap.has(D)&&(v.storePath=this.storePathMap.get(D)||""),o.push(v)}return o}parseDependencyPath(e,t,r,i,o){let s=ln.resolve(this.projectPath,ln.join(t,_.OH_MODULES_PATH,r));try{let a=o.startsWith(n.FILE_DEPENDENCY_PREFIX)?o.substring(n.FILE_DEPENDENCY_PREFIX.length):o,c=ln.isAbsolute(a)?a:ln.resolve(this.projectPath,a);Bn.existsSync(c)?(e.path=i,e.dependencyPath=this.fileNameForOhpm.test(o)?s:c):e.dependencyPath=s}catch(a){u.error("Invalid dependency path in lock.json5, msg:",a instanceof Error?a.message:String(a))}}clearDependencies(){this.finalDependencies=[],this.finalDevDependencies=[],this.finalDynamicDependencies=[]}};function mm(n){return R(n)?typeof n.name=="string"&&typeof n.srcPath=="string":!1}var Vn=class{constructor(e,t){this.projectPath=e;this.sdkPath=t;this.moduleInfoParse=new It(this.projectPath)}projectPath;sdkPath;moduleInfoParse;lockJson5Parser=null;sdkPkgCache=void 0;buildProfileCache=void 0;getAllDependencyMap(e){let t=this.projectPath,r=Re.join(t,Ri),i=Re.join(r,Wn);if(!Dr.existsSync(r)||!Dr.existsSync(i)){let c="Dependency map or JSON not found";return u.warn(`[Parser] getAllDependencyMap failed: ${c}.`),{status:"ERROR",message:`${c}, please rebuild project`}}let o=new Ir(this.projectPath,".",this.projectPath);this.parseProjectDependencies(r,o),this.parseLockJson(o);let s=this.moduleInfoParse.getAllModuleInfo();if(s.length===0){let c="No modules found in build-profile.json5";return u.warn(`[Parser] getAllDependencyMap failed: ${c}.`),{status:"ERROR",message:c}}let a=Date.now();for(let c=0;c<s.length;c++){let l=s[c];if(mm(l)){try{S.assertModuleName(l.name)}catch{u.warn(`[Parser] Skipping module with invalid name: ${l.name}`);continue}this.parseSingleModule(l,r,o,e),(c+1)%100===0&&u.info(`[Parser] getAllDependencyMap progress: ${c+1}/${s.length} (${Date.now()-a}ms)`)}}return u.info(`[Parser] getAllDependencyMap parsed ${e.length} modules in ${Date.now()-a}ms`),{status:"OK"}}getDependenciesOnly(e){let t=[],r=this.projectPath,i=Re.join(r,Ri),o=Re.join(i,Wn);if(!Dr.existsSync(i)||!Dr.existsSync(o))return u.warn("[Parser] Dependency map or JSON not found."),t;let s=e&&e.length>0?new Set(e.map(l=>l.trim()).filter(Boolean)):null,a=new Ir(this.projectPath,".",this.projectPath);this.parseProjectDependencies(i,a),this.parseLockJson(a);let c=this.moduleInfoParse.getAllModuleInfo();if(c.length===0)return u.warn("[Parser] getAllDependencyMap failed: No modules found in build-profile.json5."),t;for(let l of c){if(!mm(l))continue;let d=l.name;try{S.assertModuleName(d)}catch{u.warn(`[Parser] Skipping module with invalid name: ${d}`);continue}if(s&&!s.has(d))continue;let g=Re.resolve(this.projectPath,l.srcPath),v=Re.join(i,d),D=V(g),He=this.buildModuleDependencies(d,D,v,a);He.moduleName=d,t.push(He)}return t}parseSingleModule(e,t,r,i){let o=e.name,s=Re.resolve(this.projectPath,e.srcPath),a=Re.join(t,o),c=V(s),l=new Cr(c),d=this.buildModuleDependencies(o,c,a,r);this.parseModuleJson5(c,l);let g=this.parseMainPages(c);this.parseSdkJson(l),this.parseCompatibleSdkVersion(l),l.moduleName=o,l.moduleType=o,l.packageName=o,l.moduleDependencies=d,l.moduleJsonParam=new kr(g),i.push(l)}buildModuleDependencies(e,t,r,i){let o=new Ir(this.projectPath,e,t);Ti.getInstance(r,t,this.projectPath).parseDependency(o),this.parseLockJson(o),o.finalDependencies.push(...i.finalDependencies),o.finalDevDependencies.push(...i.finalDevDependencies),o.finalDynamicDependencies.push(...i.finalDynamicDependencies),o.finalDependencies.push(...o.finalDevDependencies);let a=new bs;return a.modulePath=t,this.toModuleDependencies(o,a),a}toModuleDependencies(e,t){let r={},i={};for(let o of e.finalDependencies)r[o.name]=new Un(o);for(let o of e.finalDynamicDependencies)i[o.name]=new Un(o);t.dependencies=r,t.dynamicDependencies=i}parseProjectDependencies(e,t){let r=Re.join(e,_.OH_PACKAGE_JSON5);if(!Dr.existsSync(r))return;Ti.getInstance(e,this.projectPath,this.projectPath).parseDependency(t)}parseLockJson(e){let t=this.getLockJson5Parser();t.parseDependencies(e.moduleName)?(e.finalDependencies=t.finalDependencies,e.finalDevDependencies=t.finalDevDependencies,e.finalDynamicDependencies=t.finalDynamicDependencies):(e.finalDependencies=e.dependencies,e.finalDevDependencies=e.devDependencies,e.finalDynamicDependencies=e.dynamicDependencies)}getLockJson5Parser(){return this.lockJson5Parser||(this.lockJson5Parser=new Es(this.projectPath)),this.lockJson5Parser}parseModuleJson5(e,t){let r=Re.join(e,"src","main","module.json5"),i=Ve(r);if(!R(i)||!R(i.module))return;let o=i.module;t.permissions=this.parseRequestPermissions(o),t.deviceType=this.parseDeviceTypes(o)}parseRequestPermissions(e){let t=[];if(R(e)&&Array.isArray(e.requestPermissions))for(let r of e.requestPermissions)R(r)&&typeof r.name=="string"&&t.push(r.name);return t}parseMainPages(e){let t=Re.join(e,"src","main","resources","base","profile","main_pages.json"),r=Ve(t);return!R(r)||!Array.isArray(r.src)?[]:r.src.filter(i=>typeof i=="string")}parseSdkJson(e){let t=this.getSdkPkg();if(!(!R(t)||!R(t.data))){if(typeof t.data.apiVersion=="string"){let r=parseInt(t.data.apiVersion,10);!Number.isNaN(r)&&r>=26&&typeof t.data.platformVersion=="string"?e.compileSdkLevel=t.data.platformVersion:e.compileSdkLevel=t.data.apiVersion}typeof t.data.releaseType=="string"&&(e.compileSdkType=t.data.releaseType),typeof t.data.version=="string"&&(e.compileSdkVersion=t.data.version)}}getSdkPkg(){if(this.sdkPkgCache===void 0){let e=Re.join(this.sdkPath,"default","sdk-pkg.json");this.sdkPkgCache=Ve(e)}return this.sdkPkgCache}parseCompatibleSdkVersion(e){let t=this.getBuildProfile();if(!R(t)||!R(t.app)||!Array.isArray(t.app.products)||t.app.products.length===0)return;let r=t.app.products[0];if(!R(r)||typeof r.compatibleSdkVersion!="string")return;let[i,o]=this.parseBySplit(r.compatibleSdkVersion);e.compatibleSdkVersion=i,e.compatibleSdkLevel=o}getBuildProfile(){if(this.buildProfileCache===void 0){let e=Re.join(this.projectPath,"build-profile.json5");this.buildProfileCache=Ve(e)}return this.buildProfileCache}parseBySplit(e){let t=e.indexOf("(");if(t===-1||!e.endsWith(")"))return[e,e];let r=e.substring(0,t),i=e.substring(t+1,e.length-1);return[r,i]}parseDeviceTypes(e){return!R(e)||!Array.isArray(e.deviceTypes)?[]:e.deviceTypes.filter(t=>typeof t=="string").map(t=>this.getDeviceType(t))}getDeviceType(e){return{liteWearable:1,wearable:2,tv:3,car:4,phone:5,default:5,smartVision:6,tablet:7,router:8,pc:9,"2in1":10}[e]||0}};var Ps=class{constructor(e=[]){this.valueSet=e}valueSet};var Rr=class{refreshSupport=!0;tokenTypes=["namespace","type","class","enum","interface","struct","parameter","variable","property","function","method"];tokenModifiers=["declaration","definition","readonly","static","deprecated"]};var hm=(C=>(C[C.File=1]="File",C[C.Module=2]="Module",C[C.Namespace=3]="Namespace",C[C.Package=4]="Package",C[C.Class=5]="Class",C[C.Method=6]="Method",C[C.Property=7]="Property",C[C.Field=8]="Field",C[C.Constructor=9]="Constructor",C[C.Enum=10]="Enum",C[C.Interface=11]="Interface",C[C.Function=12]="Function",C[C.Variable=13]="Variable",C[C.Constant=14]="Constant",C[C.String=15]="String",C[C.Number=16]="Number",C[C.Boolean=17]="Boolean",C[C.Array=18]="Array",C[C.Object=19]="Object",C[C.Key=20]="Key",C[C.Null=21]="Null",C[C.EnumMember=22]="EnumMember",C[C.Struct=23]="Struct",C[C.Event=24]="Event",C[C.Operator=25]="Operator",C[C.TypeParameter=26]="TypeParameter",C))(hm||{}),gm=()=>Object.values(hm).filter(n=>typeof n=="number");var Cs=class{documentChanges=null;resourceOperations=null;failureHanding=null;normalizesLineEndings=null;changeAnnotationSupport=null};var ks=class{applyEdit=!0;workspaceEdit=new Cs;didChangeConfiguration=null;didChangeWatchedFiles={relativePatternSupport:{},dynamicRegistration:{}};symbol=new Ps(gm());executeCommand={dynamicRegistration:{}};workspaceFolders=!1;configuration=!1;semanticTokens=new Rr;codeLens=null;fileOperations=null;inlayHint=null;diagnostics=null};var Is=class{willSave=!0;willSaveWaitUntil=!0;didSave=!0;dynamicRegistration=null};var As=class{constructor(e=[]){this.valueSet=e}valueSet};var Ds=class{snippetSupport=!0;commitCharactersSupport=null;documentationFormat=null;deprecateSupport=null;preselectSupport=null;tagSupport=null;insertReplaceSupport=null;resolveSupport=null;insertTextModeSupport=null;labelDetailsSupport=null};var ym=(k=>(k[k.Text=1]="Text",k[k.Method=2]="Method",k[k.Function=3]="Function",k[k.Constructor=4]="Constructor",k[k.Field=5]="Field",k[k.Variable=6]="Variable",k[k.Class=7]="Class",k[k.Interface=8]="Interface",k[k.Module=9]="Module",k[k.Property=10]="Property",k[k.Unit=11]="Unit",k[k.Value=12]="Value",k[k.Enum=13]="Enum",k[k.Keyword=14]="Keyword",k[k.Snippet=15]="Snippet",k[k.Color=16]="Color",k[k.File=17]="File",k[k.Reference=18]="Reference",k[k.Folder=19]="Folder",k[k.EnumMember=20]="EnumMember",k[k.Constant=21]="Constant",k[k.Struct=22]="Struct",k[k.Event=23]="Event",k[k.Operator=24]="Operator",k[k.TypeParameter=25]="TypeParameter",k))(ym||{}),vm=()=>Object.values(ym).filter(n=>typeof n=="number");var Rs=class{completionItemKind=new As(vm());completionItem=new Ds;contextSupport=null;insertTextSupport=null;completionList=null;dynamicRegistration=null};var Ts=class{synchronization=new Is;completion=new Rs;hover={contentFormat:{},dynamicRegistration:{}};signatureHelp={signatureInformation:{},contextSupport:{},dynamicRegistration:{}};references={dynamicRegistration:{}};documentHighlight={dynamicRegistration:!0};documentSymbol=null;formatting={dynamicRegistration:{}};rangeFormatting={dynamicRegistration:{}};onTypeFormatting={dynamicRegistration:{}};declaration={};definition={linkSupport:{},dynamicRegistration:{}};codeLens=null;documentLink={tooltipSupport:{},dynamicRegistration:{}};colorProvider=null;rename={prepareSupport:!0,prepareSupportDefaultBehavior:null,honorsChangeAnnotations:null,dynamicRegistrationSupport:null};publishDiagnostics=null;foldingRage=null;typeHierarchy=null;callHierarchy={dynamicRegistration:{}};selectionRange=null;semanticTokens=new Rr;moniker=null;linkedEditingRange=null;inlayHint=null;inlineValue=null;diagnostic=null};var xs=class{workspace=new ks;textDocument=new Ts;notebookDocument=null;window=null;general=null;experimental=null};var Ls=class{constructor(e,t,r){this.rootUri=e;this.initializationOptions=t;this.capabilities=r}rootUri;initializationOptions;capabilities};var Ns=class{constructor(e,t,r,i,o,s=!0){this.sdkPath=e;this.rootUri=r;this.nodeMaxOldSpaceSize=o;this.useStandardProtocol=s;this.serverPath=Jr(t,this.useStandardProtocol),this.logPath=Vd(),this.indexLogPath=i||this.logPath;let a={serverPath:this.serverPath,logPath:this.logPath,indexingDataLocation:this.indexLogPath};this.messageHandle=this.useStandardProtocol?new ds(a):new ps(a),this.messageHandle.setBroadcastToClients(c=>this.onLspMessage(c))}sdkPath;rootUri;nodeMaxOldSpaceSize;useStandardProtocol;messageHandle;get stdHandle(){return this.messageHandle}get legacyHandle(){return this.messageHandle}get lspPid(){return this.messageHandle.lspPid}onAsyncOpenFile(e){this.legacyHandle.onAsyncOpenFile(e)}closeFileLegacy(e,t){this.legacyHandle.closeFile(e,t)}serverPath;logPath;lastStartErrorMessage=null;currentParams=null;indexLogPath;lastDepsOnlyForDiff=[];get currentModuleModels(){return this.currentParams?.initializationOptions?.modules??[]}async start(e,t){let r=!1;try{u.info(`serverPath: ${this.serverPath}`),u.info(`rootUri: ${this.rootUri}`),u.info(`sdkPath: ${this.sdkPath}`),u.info(`logPath: ${this.logPath}`);let i=lt(this.rootUri),o=new vs(i,this.serverPath,this.logPath,this.indexLogPath),s=[],c=new Vn(this.rootUri,this.sdkPath).getAllDependencyMap(s);if(c.status==="ERROR")throw new Error(`${c.message}`);this.fillModuleModelsPaths(s),o.modules=s;let l=vo(s.length,this.nodeMaxOldSpaceSize);if(await this.messageHandle.start(l),this.currentParams=new Ls(i,o,new xs),this.useStandardProtocol){let d=this.messageHandle;await d.sendInitializeResettable(this.currentParams,Ze),u.info("[LSP] initialize response received"),d.broadcastToClients({jsonrpc:T,method:y.ARKTS_INDEXING_PROGRESS,params:{}}),d.sendInitialized()}else await this.startLegacy(this.currentParams,e);r=!0}catch(i){this.lastStartErrorMessage=i instanceof Error?i.message:String(i),u.error(`[LSP] Initialization failed: ${this.lastStartErrorMessage}`),await this.messageHandle.stop()}t?.(r)}async startLegacy(e,t){let r=this.messageHandle;r.sendInitialize(e,1),r.onIndexingProgressUpdate(()=>{this.onLspMessage({jsonrpc:T,method:y.ARKTS_INDEXING_PROGRESS,params:{}})}),await this.withResettableTimeout((i,o)=>{r.onIndexingProgressUpdate(o),r.onInitializationCompleted(i)},"LSP initialization",Ze),r.sendInitialized(t)}withResettableTimeout(e,t,r){return new Promise((i,o)=>{let s,a=()=>{s=setTimeout(()=>{o(new Error(`${t} timeout after ${r}ms`))},r)},c=()=>{clearTimeout(s),a()};a(),e(()=>{clearTimeout(s),i()},c)})}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}onLspMessage=()=>{};setOnMessage(e){this.onLspMessage=e}registerDiagnosticCallback(e){u.info(`[LSP] registerDiagnosticCallback uri='${e}', useStandardProtocol=${this.useStandardProtocol}`),this.messageHandle.registerRequestCallback(e,(t,r)=>{let i=R(r)?r:{};u.info(`[LSP] onDiagnosticCompleted called, uri: ${e}`);let o={jsonrpc:T,method:t,params:{uri:typeof i.uri=="string"?i.uri:e,diagnostics:Array.isArray(i.diagnostics)?i.diagnostics:[],...typeof i.errorMessage=="string"?{errorMessage:i.errorMessage}:{}}};this.onLspMessage(o)})}async hover(e){let t=e.textDocument.uri;return this.registerDiagnosticCallback(t),this.stdHandle.sendLspRequest(y.HOVER,e)}async definition(e){return this.stdHandle.sendLspRequest(y.DEFINITION,e)}async references(e){return this.stdHandle.sendLspRequest(y.REFERENCES,e)}async completion(e){return this.stdHandle.sendLspRequest(y.COMPLETION,e)}async documentSymbol(e){return this.stdHandle.sendLspRequest(y.DOCUMENT_SYMBOL,e)}async diagnostic(e){return this.stdHandle.sendLspRequest(y.DIAGNOSTIC,e,120*1e3)}async sendFeatureRequest(e,t){return this.stdHandle.sendLspRequest(e,t)}reloadDependenciesOnly(e){let t=e?.fullReload??!1,r=new Vn(this.rootUri,this.sdkPath),i=this.getModuleModelsByName();if(t){u.info("[LspServerProxy] Project-level oh-package changed, parsing all modules' dependencies");let l=r.getDependenciesOnly();this.markDependencyTypesIncremental(l);let d=this.mergeDepsOnlyIntoModuleList(l,i);return this.applyModuleModelsUpdate(d),this.sendDidChangeConfiguration({moduleSet:d}),u.info(`[LspServerProxy] Dependencies only (all) reloaded, count: ${d.length}`),this.lastDepsOnlyForDiff=l,l}let o=e?.changedModules??[],s=new Set(e?.removedModuleNames??[]);if(o.length===0&&s.size===0)return u.info("[LspServerProxy] No changed/removed modules, skip dependency reload"),[];u.info(`[LspServerProxy] Module-level deps changed, parsing: [${o.join(", ")}]`);let a=r.getDependenciesOnly(o);this.markDependencyTypesIncremental(a);let c=this.mergeIncrementalDeps(this.currentModuleModels,s,a);return this.applyModuleModelsUpdate(c),this.sendDidChangeConfiguration({moduleSet:c}),u.info(`[LspServerProxy] Dependencies only (incremental) reloaded, count: ${c.length}`),this.lastDepsOnlyForDiff=a,a}sendDidChangeConfiguration(e){this.stdHandle.sendDidChangeConfiguration(e)}getModuleModelsByName(){return new Map(this.currentModuleModels.map(e=>[e.moduleName??"",e]))}markDependencyTypesIncremental(e){let t=this.getModuleModelsByName(),r=new Map(this.lastDepsOnlyForDiff.map(i=>[i.moduleName??"",i]));for(let i of e){let o=i.moduleName??"",{oldDeps:s,oldDynamic:a}=this.getOldDepsForModule(o,t,r),c=i.dependencies??{},l=i.dynamicDependencies??{};this.markAddAndDeleteInDeps(s,c,(d,g)=>{(i.dependencies??={})[d]=this.makeDeleteEntry(d,g)}),this.markAddAndDeleteInDeps(a,l,(d,g)=>{(i.dynamicDependencies??={})[d]=this.makeDeleteEntry(d,g)})}}getOldDepsForModule(e,t,r){let i=t.get(e),o=i?.moduleDependencies?.dependencies??{},s=i?.moduleDependencies?.dynamicDependencies??{};if(Object.keys(o).length===0&&Object.keys(s).length===0){let a=r.get(e);a&&(o=a.dependencies??{},s=a.dynamicDependencies??{})}return{oldDeps:o,oldDynamic:s}}markAddAndDeleteInDeps(e,t,r){for(let i of Object.keys(t))i in e||(t[i].type="add");for(let i of Object.keys(e))i in t||r(i,e[i])}makeDeleteEntry(e,t){return new Un({name:e,version:t?.version??"",registryType:t?.registryType??"ohpm",resolved:t?.resolved??"",type:"delete"})}createMinimalModelFromDepsItem(e){let t=new Cr(e.modulePath);return t.moduleName=e.moduleName,t.moduleType=e.moduleName,t.packageName=e.moduleName,t.moduleJsonParam=new kr([]),t.modulePath=e.modulePath,t.moduleDependencies=e,t}mergeDepsOnlyIntoModuleList(e,t){let r=[];for(let i of e){let o=i.moduleName??"",s=t.get(o);s?(s.modulePath=i.modulePath,s.moduleDependencies=i):s=this.createMinimalModelFromDepsItem(i),r.push(s)}return r}mergeIncrementalDeps(e,t,r){let i=new Map(r.map(s=>[s.moduleName??"",s])),o=[];for(let s of e){let a=s.moduleName??"";if(t.has(a))continue;let c=i.get(a);c&&(s.modulePath=c.modulePath,s.moduleDependencies=c,i.delete(a)),o.push(s)}for(let[,s]of i)o.push(this.createMinimalModelFromDepsItem(s));return o}applyModuleModelsUpdate(e){this.fillModuleModelsPaths(e),this.currentParams&&(this.currentParams.initializationOptions.modules=e)}fillModuleModelsPaths(e){let t=this.sdkPath,r=tr(Yc.join(t,"default/openharmony/ets/build-tools/ets-loader")),i=tr(Yc.join(t,"default/openharmony/ets/api")),o=tr(Yc.join(t,"default/hms"));for(let s of e)s.aceLoaderPath=r,s.sdkJsPath=i,s.hosSdkPath=o}sendRequest(e){switch(e.method){case y.HOVER:this.stdHandle.sendLspRequest(y.HOVER,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;case y.DEFINITION:this.stdHandle.sendLspRequest(y.DEFINITION,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;case y.REFERENCES:this.stdHandle.sendLspRequest(y.REFERENCES,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;default:u.warn(`Unhandled LSP request: ${e.method}`)}}sendNotification(e){if(!lm(e)){u.info("LspServerProxy, msg is not notification request, ignore.");return}switch(e.method){case y.DID_OPEN:this.handleDidOpenNotification(e);break;case y.DID_CHANGE:this.handleDidChangeNotification(e);break;case y.DID_CLOSE:this.handleDidCloseNotification(e);break;case y.WORKSPACE_DID_CHANGE_WATCHED_FILES:this.handleDidChangeWatchedFiles(e);break;case y.DID_CREATE_FILES:this.handleDidCreateFiles(e);break;case y.DID_DELETE_FILES:this.handleDidDeleteFiles(e);break;default:u.warn(`Unhandled LSP notification: ${e.method}`)}}handleDidOpenNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){u.error("Invalid textDocument/didOpen params");return}this.stdHandle.sendDidOpen(t)}handleDidChangeNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){u.error("Invalid textDocument/didChange params");return}this.stdHandle.sendDidChange(t)}handleDidCloseNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){u.error("Invalid textDocument/didClose params");return}this.stdHandle.closeFile(t)}handleDidChangeWatchedFiles(e){let t=e.params;!t||!Array.isArray(t.changes)||this.messageHandle.onDidChangeWatchedFiles(t.changes)}handleDidCreateFiles(e){let t=e.params;!t||!Array.isArray(t.files)||this.stdHandle.sendNotification(y.DID_CREATE_FILES,t)}handleDidDeleteFiles(e){let t=e.params;!t||!Array.isArray(t.files)||this.stdHandle.sendNotification(y.DID_DELETE_FILES,t)}async dispose(){await this.messageHandle.stop()}};import*as Ft from"fs";import*as Me from"path";import{createHash as WP}from"crypto";import{EventEmitter as BP}from"events";var Os=class extends BP{constructor(t,r=500){super();this.projectRoot=t;this.debounceMs=r}projectRoot;watchers=new Map;debounceTimers=new Map;contentHashes=new Map;buildProfileWatcher=null;lastModulesSnapshot="";lastModules=[];debounceMs;start(){let t=this.parseModulesFromBuildProfile();this.lastModules=t,this.lastModulesSnapshot=this.computeModulesSnapshot(t),this.refreshWatchTargets(),this.watchBuildProfile()}refreshWatchTargets(){let t=new Set(this.collectWatchTargets()),r=new Set(this.watchers.keys());for(let i of t)r.has(i)||this.watchFile(i);for(let i of r)t.has(i)||(this.unwatchFile(i),u.info(`[ConfigFileWatcher] Stopped watching: ${i}`));u.info(`[ConfigFileWatcher] Watching ${this.watchers.size} oh-package.json5 file(s)`)}watchBuildProfile(){let t=this.getBuildProfilePath();if(!Ft.existsSync(t)){u.warn(`[ConfigFileWatcher] build-profile.json5 not found at ${t}, cannot watch for module changes`);return}try{this.buildProfileWatcher=Ft.watch(t,r=>{r==="change"&&this.onBuildProfileChanged()}),this.buildProfileWatcher.on("error",r=>{u.error(`[ConfigFileWatcher] build-profile.json5 watch error: ${r.message}`)}),u.info(`[ConfigFileWatcher] Watching module registry: ${t}`)}catch(r){u.error(`[ConfigFileWatcher] Failed to watch build-profile.json5: ${r instanceof Error?r.message:String(r)}`)}}emitModuleAddedEvents(t,r){for(let i of t){let o=Me.resolve(this.projectRoot,i.srcPath);this.emit("configChanged",{source:"buildProfile",kind:1,filePath:o,relativePath:i.srcPath,timestamp:r,moduleName:i.name})}}emitModuleRemovedEvents(t,r){for(let i of t){let o=Me.resolve(this.projectRoot,i.srcPath);this.emit("configChanged",{source:"buildProfile",kind:2,filePath:o,relativePath:i.srcPath,timestamp:r,removedModuleName:i.name})}}emitModuleRenamedEvents(t,r){for(let i of t){let o=Me.resolve(this.projectRoot,i.after.srcPath);this.emit("configChanged",{source:"buildProfile",kind:3,filePath:o,relativePath:i.after.srcPath,timestamp:r,moduleName:i.after.name,removedModuleName:i.before.name})}}emitModuleMovedEvents(t,r){for(let i of t){let o=Me.resolve(this.projectRoot,i.after.srcPath);this.emit("configChanged",{source:"buildProfile",kind:6,filePath:o,relativePath:i.after.srcPath,timestamp:r,moduleName:i.after.name})}}processBuildProfileDiff(t){this.refreshWatchTargets();let r=Date.now();this.emitModuleAddedEvents(t.added,r),this.emitModuleRemovedEvents(t.removed,r),this.emitModuleRenamedEvents(t.renamed,r),this.emitModuleMovedEvents(t.moved,r)}onBuildProfileChanged(){let t="__build_profile__",r=this.debounceTimers.get(t);r&&clearTimeout(r);let i=setTimeout(()=>{this.debounceTimers.delete(t);let o=this.parseModulesFromBuildProfile(),s=this.computeModulesSnapshot(o);if(s===this.lastModulesSnapshot){u.info("[ConfigFileWatcher] build-profile.json5 changed but modules unchanged, skipping");return}let a=this.diffModules(this.lastModules,o);this.lastModules=o,this.lastModulesSnapshot=s,u.info(`[ConfigFileWatcher] build-profile.json5 modules changed, added=${a.added.length}, removed=${a.removed.length}, renamed=${a.renamed.length}, moved=${a.moved.length}`),this.processBuildProfileDiff(a)},this.debounceMs);this.debounceTimers.set(t,i)}computeModulesSnapshot(t){return t.map(i=>`${i.name}::${i.srcPath}`).sort().join("|")}diffModules(t,r){let i=this.buildModuleMatchState(r),o={added:[],removed:[],renamed:[],moved:[]};return this.matchExactModules(t,i),this.matchRenamedModules(t,i,o),this.matchMovedModules(t,i,o),this.collectRemovedModules(t,i,o),this.collectAddedModules(r,i,o),o}buildModuleMatchState(t){let r=new Map,i=new Map;for(let o of t)r.set(o.srcPath,o),i.set(o.name,o);return{matchedOld:new Set,matchedNew:new Set,newBySrc:r,newByName:i}}matchExactModules(t,r){for(let i of t){let o=r.newBySrc.get(i.srcPath);o&&o.name===i.name&&(r.matchedOld.add(i),r.matchedNew.add(o))}}matchRenamedModules(t,r,i){for(let o of t){if(r.matchedOld.has(o))continue;let s=r.newBySrc.get(o.srcPath);s&&!r.matchedNew.has(s)&&s.name!==o.name&&(i.renamed.push({before:o,after:s}),r.matchedOld.add(o),r.matchedNew.add(s))}}matchMovedModules(t,r,i){for(let o of t){if(r.matchedOld.has(o))continue;let s=r.newByName.get(o.name);s&&!r.matchedNew.has(s)&&s.srcPath!==o.srcPath&&(i.moved.push({before:o,after:s}),r.matchedOld.add(o),r.matchedNew.add(s))}}collectRemovedModules(t,r,i){for(let o of t)r.matchedOld.has(o)||i.removed.push(o)}collectAddedModules(t,r,i){for(let o of t)r.matchedNew.has(o)||i.added.push(o)}parseModulesFromBuildProfile(){let t=this.getBuildProfilePath();try{let r=Ve(t);if(typeof r!="object"||r===null)return[];let i=r.modules;return Array.isArray(i)?i.filter(o=>{if(typeof o!="object"||o===null)return!1;let s=o;return typeof s.name=="string"&&typeof s.srcPath=="string"}):[]}catch(r){return u.warn(`[ConfigFileWatcher] Failed to parse build-profile.json5: ${r instanceof Error?r.message:String(r)}`),[]}}collectWatchTargets(){let t=[],r=Me.join(this.projectRoot,_.OH_PACKAGE_JSON5);Ft.existsSync(r)&&t.push(r);let i=this.parseModulesFromBuildProfile();for(let o of i){let s=Me.resolve(this.projectRoot,o.srcPath),a=Me.join(s,_.OH_PACKAGE_JSON5);Ft.existsSync(a)&&t.push(a)}return t}getBuildProfilePath(){return Me.join(this.projectRoot,"build-profile.json5")}computeFileHash(t){try{let r=Ft.readFileSync(t,"utf-8");return WP("sha256").update(r).digest("hex")}catch{return null}}watchFile(t){if(!this.watchers.has(t))try{let r=this.computeFileHash(t);r&&this.contentHashes.set(t,r);let i=Ft.watch(t,o=>{o==="change"&&this.onFileChanged(t)});i.on("error",o=>{u.error(`[ConfigFileWatcher] Watch error for ${t}: ${o.message}`)}),this.watchers.set(t,i)}catch(r){u.error(`[ConfigFileWatcher] Failed to watch ${t}: ${r instanceof Error?r.message:String(r)}`)}}unwatchFile(t){let r=this.watchers.get(t);r&&(r.close(),this.watchers.delete(t)),this.contentHashes.delete(t);let i=this.debounceTimers.get(t);i&&(clearTimeout(i),this.debounceTimers.delete(t))}onFileChanged(t){let r=this.debounceTimers.get(t);r&&clearTimeout(r);let i=setTimeout(()=>{this.debounceTimers.delete(t);let o=this.computeFileHash(t);if(!o){u.warn(`[ConfigFileWatcher] Could not read file for hash: ${t}`);return}if(this.contentHashes.get(t)===o){u.info(`[ConfigFileWatcher] File touched but content unchanged, skipping: ${t}`);return}this.contentHashes.set(t,o),u.info(`[ConfigFileWatcher] Config file content changed: ${t}`);let a={source:"ohPackage",kind:4,filePath:t,fileName:Me.basename(t),relativePath:Me.relative(this.projectRoot,t),timestamp:Date.now()};this.emit("configChanged",a)},this.debounceMs);this.debounceTimers.set(t,i)}stop(){for(let[,t]of this.watchers)t.close();this.watchers.clear(),this.buildProfileWatcher&&(this.buildProfileWatcher.close(),this.buildProfileWatcher=null);for(let t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),this.contentHashes.clear(),u.info("[ConfigFileWatcher] All watchers stopped")}};import*as dn from"fs";import*as ut from"path";import{createHash as VP}from"crypto";import{EventEmitter as qP}from"events";var Ms=class extends qP{constructor(t,r=500){super();this.projectRoot=t;this.debounceMs=r,this.coalesceMs=r+300,this.depMapDir=ut.join(t,Ri)}projectRoot;dirWatcher=null;contentHashes=new Map;lastModules=[];debounceMs;depMapDir;pendingTags=[];pendingRenames=[];coalesceTimer=null;coalesceMs;fullScanTimer=null;pollInterval=null;initialScanDone=!1;start(){if(!dn.existsSync(this.depMapDir)){u.warn(`[DependencyMapWatcher] dependencyMap dir not found: ${this.depMapDir}, skip watching`);return}this.lastModules=this.parseModulesFromDepMap();try{this.dirWatcher=dn.watch(this.depMapDir,{recursive:!0},(t,r)=>this.onDirEvent(t,r)),this.dirWatcher.on("error",t=>{u.error(`[DependencyMapWatcher] Directory watch error for ${this.depMapDir}: ${t.message}`)})}catch(t){u.error(`[DependencyMapWatcher] Failed to watch directory ${this.depMapDir}: ${t instanceof Error?t.message:String(t)}`);return}this.pollInterval=setInterval(()=>this.scanAllCacheFiles(),2500),u.info(`[DependencyMapWatcher] Started, watching directory (recursive): ${this.depMapDir}, modules: [${this.lastModules.map(t=>t.name).join(", ")}]`)}canonicalPath(t){return V(ut.resolve(t))}onDirEvent(t,r){if(!r||typeof r!="string")return;let i=r.replace(/\\/g,"/"),o;if(i===_.OH_PACKAGE_JSON5)o="root-oh-package";else if(i===Wn)o="dep-map-json";else{let a=i.match(/^([^/]+)\/oh-package\.json5$/);o=a?`module:${a[1]}`:""}if(!o)return;let s=ut.join(this.depMapDir,r);dn.existsSync(s)&&this.scheduleDebouncedFullScan()}stop(){this.dirWatcher&&(this.dirWatcher.close(),this.dirWatcher=null),this.fullScanTimer&&(clearTimeout(this.fullScanTimer),this.fullScanTimer=null),this.pollInterval&&(clearInterval(this.pollInterval),this.pollInterval=null),this.coalesceTimer&&(clearTimeout(this.coalesceTimer),this.coalesceTimer=null),this.pendingTags=[],this.pendingRenames=[],this.contentHashes.clear(),this.initialScanDone=!1,u.info("[DependencyMapWatcher] All watchers stopped")}scheduleDebouncedFullScan(){this.fullScanTimer&&clearTimeout(this.fullScanTimer),this.fullScanTimer=setTimeout(()=>{this.fullScanTimer=null,this.scanAllCacheFiles()},this.debounceMs)}scanAllCacheFiles(){let t=ut.join(this.depMapDir,_.OH_PACKAGE_JSON5),r=ut.join(this.depMapDir,Wn),i=this.parseModulesFromDepMap(),o=[{path:t,tag:"root-oh-package"},{path:r,tag:"dep-map-json"},...i.map(s=>({path:(S.assertModuleName(s.name),ut.join(this.depMapDir,s.name,_.OH_PACKAGE_JSON5)),tag:`module:${s.name}`}))];for(let{path:s,tag:a}of o){if(!dn.existsSync(s))continue;let c=this.canonicalPath(s),l=this.computeFileHash(s);if(!l)continue;let d=this.contentHashes.get(c);if(!this.initialScanDone){this.contentHashes.set(c,l);continue}d!==l&&(this.contentHashes.set(c,l),u.info(`[DependencyMapWatcher] Cache file changed: ${s} (tag=${a})`),this.scheduleCoalescedReload(a))}this.initialScanDone||(this.initialScanDone=!0)}parseModulesFromDepMap(){let t=ut.join(this.depMapDir,Wn);try{let r=Ve(t);if(typeof r!="object"||r===null)return[];let i=r.modules;return Array.isArray(i)?i.filter(o=>{if(typeof o!="object"||o===null)return!1;let s=o;return typeof s.name=="string"&&typeof s.srcPath=="string"}):[]}catch(r){return u.warn(`[DependencyMapWatcher] Failed to parse dependencyMap.json5: ${r instanceof Error?r.message:String(r)}`),[]}}scheduleCoalescedReload(t){this.pendingTags.push(t),t==="dep-map-json"&&this.applyDepMapJsonDiff(),this.coalesceTimer&&clearTimeout(this.coalesceTimer),this.coalesceTimer=setTimeout(()=>{this.coalesceTimer=null,this.flushPendingReload()},this.coalesceMs)}collectPendingState(){let t=this.pendingTags,r=this.pendingRenames;return this.pendingTags=[],this.pendingRenames=[],{tags:t,renameEntries:r}}processTagsIntoSets(t,r,i,o){for(let s of t)s.startsWith("module:")?(i.add(s.substring(7)),r.add("moduleDepsChanged")):s.startsWith("dep-added:")?(i.add(s.substring(10)),r.add("moduleAdded")):s.startsWith("dep-removed:")&&(o.add(s.substring(12)),r.add("moduleRemoved"))}processRenameEntries(t,r,i,o,s){for(let a of t)s.push(a.info),i.add(a.info.newName),o.add(a.info.oldName),r.add(a.kind)}buildAddedNamesSet(t,r){let i=new Set;for(let o of t)o.startsWith("dep-added:")&&i.add(o.substring(10));for(let o of r)i.add(o.info.newName);return i}emitIncrementalReload(t,r,i,o,s){u.info(`[DependencyMapWatcher] Coalesced \u2192 kinds=[${[...t].join(",")}], changed=[${[...r].join(",")}], removed=[${[...i].join(",")}], added=[${[...o].join(",")}], renames=[${s.map(a=>`${a.oldName}\u2192${a.newName}`).join(",")}]`),this.emit("reload",{fullReload:!1,kinds:[...t],changedModules:[...r],removedModuleNames:[...i],addedModuleNames:[...o],renames:s.length>0?s:void 0})}flushPendingReload(){let{tags:t,renameEntries:r}=this.collectPendingState();if(t.length===0&&r.length===0)return;if(u.info(`[DependencyMapWatcher] Flushing coalesced reload, tags=[${t.join(", ")}], renames=${r.length}`),t.includes("root-oh-package")){u.info("[DependencyMapWatcher] Root oh-package.json5 in batch \u2192 full reload"),this.emit("reload",{fullReload:!0,kinds:["projectDepsChanged"]});return}let i=new Set,o=new Set,s=new Set,a=[];this.processTagsIntoSets(t,i,o,s),this.processRenameEntries(r,i,o,s,a);for(let l of o)s.delete(l);if(o.size===0&&s.size===0&&a.length===0){u.info("[DependencyMapWatcher] Coalesced batch has no effective changes, skipping");return}let c=this.buildAddedNamesSet(t,r);this.emitIncrementalReload(i,o,s,c,a)}normalizeSrcPath(t){return V(t).replace(/^\.\//,"").replace(/\/$/,"")}buildModuleLookupMaps(t){let r=new Map(t.map(o=>[o.name,o])),i=new Map(t.map(o=>[this.normalizeSrcPath(o.srcPath),o]));return{byName:r,bySrcPath:i}}detectModuleRenames(t,r,i,o){for(let[s,a]of t){let c=r.get(s);if(!c||c.name===a.name)continue;this.pendingRenames.push({kind:"moduleRenamed",info:{oldName:a.name,newName:c.name,oldSrcPath:a.srcPath,newSrcPath:c.srcPath,kind:"moduleRenamed"}}),i.add(a.name),o.add(c.name);let l=(S.assertModuleName(a.name),ut.join(this.depMapDir,a.name,_.OH_PACKAGE_JSON5));this.contentHashes.delete(this.canonicalPath(l)),u.info(`[DependencyMapWatcher] Module renamed: ${a.name} \u2192 ${c.name} (srcPath=${s})`)}}detectModuleMoves(t,r,i,o){for(let[s,a]of t){if(i.has(s))continue;let c=r.get(s);!c||c.srcPath===a.srcPath||(this.pendingRenames.push({kind:"moduleMoved",info:{oldName:a.name,newName:c.name,oldSrcPath:a.srcPath,newSrcPath:c.srcPath,kind:"moduleMoved"}}),i.add(s),o.add(s),u.info(`[DependencyMapWatcher] Module moved: ${s} srcPath ${a.srcPath} \u2192 ${c.srcPath}`))}}detectAddedModules(t,r,i){for(let[o]of t)i.has(o)||r.has(o)||(this.pendingTags.push(`dep-added:${o}`),i.add(o))}detectRemovedModules(t,r,i){for(let[o]of t)if(!i.has(o)&&!r.has(o)){this.pendingTags.push(`dep-removed:${o}`),i.add(o);let s=(S.assertModuleName(o),ut.join(this.depMapDir,o,_.OH_PACKAGE_JSON5));this.contentHashes.delete(this.canonicalPath(s))}}logDepMapDiffResult(){let t=this.pendingTags.filter(i=>i.startsWith("dep-")),r=this.pendingRenames.map(i=>`${i.kind}(${i.info.oldName}\u2192${i.info.newName})`);u.info(`[DependencyMapWatcher] dependencyMap.json5 diff complete, depTags: [${t.join(", ")}], renames: [${r.join(", ")}]`)}applyDepMapJsonDiff(){let t=this.parseModulesFromDepMap(),{byName:r,bySrcPath:i}=this.buildModuleLookupMaps(this.lastModules),{byName:o,bySrcPath:s}=this.buildModuleLookupMaps(t),a=new Set,c=new Set;this.detectModuleRenames(i,s,a,c),this.detectModuleMoves(r,o,a,c),this.detectAddedModules(o,r,c),this.detectRemovedModules(r,o,a),this.lastModules=t,this.logDepMapDiffResult()}computeFileHash(t){try{let r=dn.readFileSync(t,"utf-8");return VP("sha256").update(r).digest("hex")}catch{return null}}};import{spawn as GP}from"child_process";var zP=["install","--all"];async function JP(n,e,t,r){return new Promise(i=>{let o=GP(n,[e,...zP],{cwd:t,env:{...process.env,DEVECO_SDK_HOME:r},windowsHide:!0,stdio:["ignore","pipe","pipe"]}),s="",a="";o.stdout?.on("data",c=>{s+=c.toString()}),o.stderr?.on("data",c=>{a+=c.toString()}),o.on("close",c=>{let l=[s,a].filter(Boolean).join(`
1289
- `);i({exitCode:c??-1,output:l})}),o.on("error",c=>{let l=[s,a].filter(Boolean).join(`
1290
- `);i({exitCode:-1,output:l+`
1291
- `+c.message})})})}function YP(n){n.split(/\r?\n/).filter(Boolean).forEach(e=>u.info("[ohpm] %s",e))}async function wm(n,e,t,r){try{if(!t)return u.error("node \u8DEF\u5F84\u4E0D\u5B58\u5728"),!1;if(!r)return u.error("ohpm (pm-cli.js) \u4E0D\u5B58\u5728"),!1;let{exitCode:i,output:o}=await JP(t,r,n,e);return YP(o),i===0?(u.info("ohpm \u5B89\u88C5\u6210\u529F"),!0):(u.error("ohpm \u5B89\u88C5\u5931\u8D25\uFF0C\u9000\u51FA\u7801: %s",i),u.error("ohpm \u8F93\u51FA: %s",o),!1)}catch(i){return u.error("ohpm \u5B89\u88C5\u5F02\u5E38",i),!1}}var bm={UNINITIALIZED:-32099,UNKNOWN:-32e3},xi=class n extends Error{code;constructor(e,t){super(e),this.name="ArkTsProxyError",this.code=t}static uninitialized(e){return new n(e,bm.UNINITIALIZED)}static unknown(e="Unknown error"){return new n(e,bm.UNKNOWN)}toJsonRpcErrorParams(){return{code:this.code,message:this.message}}};var Tr=class{config;lspProxy=null;configWatcher=null;depMapWatcher=null;isInitialized=!1;lastEditorOpenFiles=[];onMessage=()=>{};onConfigChanged=null;disposeOnce=null;get aceServerPid(){return this.lspProxy?.lspPid??null}constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}async start(e=[]){this.lastEditorOpenFiles=e;try{this.startConfigWatcher(),this.startLspProxy(e)}catch(t){throw u.error(`[ArktsLspManager] start() synchronous failure: ${t instanceof Error?t.message:String(t)}`),t}}sendNotification(e){if(!this.lspProxy){u.warn("[ArktsLspManager] sendNotification before LSP ready, dropped");return}this.lspProxy.sendNotification(e)}sendRequest(e){if(!this.lspProxy){u.warn("[ArktsLspManager] sendRequest before LSP ready, dropped");return}this.lspProxy.sendRequest(e)}async diagnostic(e){if(!this.lspProxy)throw new Error("[ArktsLspManager] diagnostic before LSP ready");return this.lspProxy.diagnostic(e)}async sendFeatureRequest(e,t){if(!this.useStandardProtocol)throw new Error(`Language feature '${e}' is not supported on the installed DevEco Studio. The standard LSP protocol entry (plugins/openharmony/ace-server/out/standardIndex/index.js) was not found. Please upgrade DevEco Studio to version 26.0.0.610 or later to use this tool.`);if(!this.lspProxy)throw new Error("LSP not ready");return this.lspProxy.sendFeatureRequest(e,t)}get useStandardProtocol(){return this.config.useStandardProtocol}onAsyncOpenFile(e){this.lspProxy?.onAsyncOpenFile(e)}closeFileLegacy(e,t){this.lspProxy?.closeFileLegacy(e,t)}registerDiagnosticCallback(e){this.lspProxy?.registerDiagnosticCallback(e)}static async handleSyncProject(e,t,r,i,o,s){if(u.info("[ArktsLspManager] Received arkts/syncProject"),!e||!t)return u.error("[ArktsLspManager] handleSyncProject: workspaceRoot or sdkPath is empty"),{status:"failed",reason:"workspaceRoot or sdkPath is empty"};let a=s?.skipHvigorSync===!0,c=await fo(e,async()=>await wm(e,t,r??"",i??"")?a?(u.info("[ArktsLspManager] hvigor sync skipped (config up-to-date)"),{status:"success"}):await Yd(e,t,r??"",o??"")?(u.info("[ArktsLspManager] syncProject completed successfully"),{status:"success"}):(u.error("[ArktsLspManager] syncProject failed"),{status:"failed",reason:"hvigor sync failed"}):(u.error("[ArktsLspManager] ohpm install failed"),{status:"failed",reason:"ohpm install failed"}));return c.acquired?c.result:(u.info("[ArktsLspManager] Build lock held by another process, skipping sync"),{status:"skipped",reason:"build lock held by another process"})}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}async performDispose(){try{this.configWatcher?.stop()}catch(e){u.warn(`[ArktsLspManager] configWatcher stop error: ${e}`)}try{this.depMapWatcher?.stop()}catch(e){u.warn(`[ArktsLspManager] depMapWatcher stop error: ${e}`)}if(this.configWatcher=null,this.depMapWatcher=null,this.lspProxy){try{await this.lspProxy.dispose()}catch(e){u.warn(`[ArktsLspManager] lspProxy dispose error: ${e}`)}this.lspProxy=null}this.isInitialized=!1}startLspProxy(e){let t=new Ns(this.config.sdkPath,this.config.arktsLangServerPath,this.config.workspaceRoot,this.config.indexLogPath,this.config.nodeMaxOldSpaceSize,this.config.useStandardProtocol);t.setOnMessage(r=>this.handleLspMessage(r)),t.start(e,r=>this.handleLspInitialized(r)),this.lspProxy=t}handleLspInitialized=e=>{if(this.isInitialized=e,e)u.info("[ArktsLspManager] LSP initialized"),this.startDependencyMapWatcher(),this.onMessage({jsonrpc:T,method:y.ARKTS_INITIALIZED,params:{}});else{let t=this.lspProxy?.consumeStartErrorMessage();u.error(`[ArktsLspManager] LSP initialization failed: ${t}`);let r=t?xi.uninitialized(t):xi.unknown();this.onMessage({jsonrpc:T,method:y.ARKTS_INITIALIZATION_FAILED,params:r.toJsonRpcErrorParams()}),this.lspProxy=null}};handleLspMessage(e){this.onMessage(e)}maybeRetryLspAfterSuccessfulSync(){this.isInitialized||this.lspProxy!==null||(u.info("[ArktsLspManager] Retrying LSP startup after successful sync"),this.onMessage({jsonrpc:T,method:y.ARKTS_REINITIALIZING,params:{}}),this.startLspProxy(this.lastEditorOpenFiles))}startConfigWatcher(){this.configWatcher||(this.configWatcher=new Os(this.config.workspaceRoot),this.configWatcher.on("configChanged",e=>this.handleConfigChanged(e)),this.configWatcher.start())}startDependencyMapWatcher(){this.depMapWatcher||(this.depMapWatcher=new Ms(this.config.workspaceRoot),this.depMapWatcher.on("reload",e=>{if(!this.lspProxy){u.warn("[ArktsLspManager] LspServerProxy not initialized, skip reload");return}let r=this.lspProxy.reloadDependenciesOnly(e).map(i=>({modulePath:i.modulePath??"",dependencies:i.dependencies??{},dynamicDependencies:i.dynamicDependencies??{}}));this.onMessage({jsonrpc:T,method:y.ARKTS_SYNC_COMPLETED,params:{success:!0,moduleSet:r}})}),this.depMapWatcher.start())}setOnConfigChanged(e){this.onConfigChanged=e}handleConfigChanged(e){u.info(`[ArktsLspManager] Config file changed: ${e.filePath}, notifying server`),this.onConfigChanged?.()}};var KP=10080*60*1e3,XP=7200*60*1e3,ZP=120*1e3,xr=class n{manager=null;get aceServerPid(){return this.manager?.aceServerPid??null}initialized=!1;initializing=!1;initPromise=null;initDeadlineTimer=null;initResolve=null;initReject=null;projectPath;sdkPath;arktsLangServerPath;nodeMaxOldSpaceSize;onConfigChangedCallback=null;useStandardProtocol=!0;diagnosticWaiters=new Map;documentVersion=0;static FEATURE_METHOD_MAP={hover:y.HOVER,definition:y.DEFINITION,declaration:y.DECLARATION,references:y.REFERENCES,implementation:y.IMPLEMENTATION,completion:y.COMPLETION,signatureHelp:y.SIGNATURE_HELP,documentHighlight:y.DOCUMENT_HIGHLIGHT};constructor(e,t,r,i){this.projectPath=e,this.sdkPath=t,this.arktsLangServerPath=r,this.nodeMaxOldSpaceSize=i}setOnConfigChanged(e){this.onConfigChangedCallback=e}static getToolDefinition(){return{name:"check_ets_files",description:"\u5BF9\u4F20\u5165\u7684ets\u6587\u4EF6\u8FDB\u884C\u9759\u6001\u8BED\u6CD5\u68C0\u67E5(ArkTS-Check)\u5E76\u5B9E\u65F6\u8FD4\u56DE\u8BCA\u65AD\u4FE1\u606F\u3002",inputSchema:Kc.object({files:Kc.array(Kc.string()).describe('\u5F85\u68C0\u67E5\u7684 ETS \u6587\u4EF6\u8DEF\u5F84\u5217\u8868\uFF0C\u683C\u5F0F\u4E3A ["file1.ets","file2.ets",...]')})}}isInitializing(){return this.initializing}isInitialized(){return this.initialized}async initialize(){if(!this.initialized){if(this.initPromise){await this.initPromise;return}this.initializing=!0,this.initPromise=this.doInitialize().then(()=>{this.initialized=!0}).finally(()=>{this.initializing=!1}),await this.initPromise}}async doInitialize(){let{harmonyRoot:e,arktsLangServerPath:t,useStandardProtocol:r}=this.resolveProjectAndDeveco();this.useStandardProtocol=r;let i=fe(e),{logPath:o,indexPath:s}=this.getLogAndIndexPath(i);setImmediate(()=>{Sa(s,KP,"[ArkTS-Check]"),Sa(o,XP,"[ArkTS-Check]")}),yo(o);let a=this.nodeMaxOldSpaceSize?parseInt(this.nodeMaxOldSpaceSize,10):NaN,c=Number.isNaN(a)?void 0:a;h.info(`ArktsCheck nodeMaxOldSpaceSize: incoming='${this.nodeMaxOldSpaceSize??"(unset)"}', parsed=${c??"undefined \u2192 dynamic formula applies"}`);let l=this.sdkPath;h.info(`[ArktsCheck] sdkPath=${l}, arktsLangServerPath=${t}, useStandardProtocol=${r}`),this.manager=new Tr({sdkPath:l,arktsLangServerPath:t,workspaceRoot:V(i),indexLogPath:s,nodeMaxOldSpaceSize:c,useStandardProtocol:r}),this.manager.setOnMessage(d=>this.handleLspMessage(d)),this.onConfigChangedCallback&&this.manager.setOnConfigChanged(this.onConfigChangedCallback),await new Promise((d,g)=>{this.initResolve=d,this.initReject=g,this.armInitTimer(Ze),this.manager.start([]).catch(v=>{let D=v instanceof Error?v:new Error(String(v));this.failInit(D)})})}resolveProjectAndDeveco(){let e=Ct(this.projectPath);if(!e)throw new Error(`Failed to find HarmonyOS project from path: ${this.projectPath}`);this.projectPath=e;let t=this.arktsLangServerPath;if(!t)throw new Error("arkts-lang-server path not found");let r=Qi(t);return h.info(`ArktsCheck protocol: ${r?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${r})`),{harmonyRoot:e,arktsLangServerPath:t,useStandardProtocol:r}}armInitTimer(e){this.initDeadlineTimer&&clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=setTimeout(()=>{let t=this.initReject;this.clearInitHandlers(),t?.(new Error("LSP initialize timeout"))},e)}clearInitHandlers(){this.initDeadlineTimer&&(clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=null),this.initResolve=null,this.initReject=null}failInit(e){let t=this.initReject;this.clearInitHandlers(),t?.(e)}async checkFile(e){this.initialized||await this.initialize();let t=this.manager;if(!t)throw new Error("ArktsLspManager not initialized");let r=Dn(e),i=await qe.promises.readFile(e,"utf8"),s=`deveco.apptool.${Ee.extname(e).replace(/^\./,"")||"plaintext"}`;return t.useStandardProtocol?this.checkFileStandard(t,r,i,s):this.checkFileLegacy(t,e,r,i,s)}async checkFileStandard(e,t,r,i){h.debug(`textDocument/didOpen uri=${t} content_len=${r.length}`),this.sendNotification("textDocument/didOpen",{textDocument:{uri:t,text:r,languageId:i,version:++this.documentVersion}});try{h.debug(`textDocument/diagnostic uri=${t}`);let o=await e.diagnostic({textDocument:{uri:t}});return QP(o)}finally{this.sendNotification("textDocument/didClose",{textDocument:{uri:t}})}}async checkFileLegacy(e,t,r,i,o){let s=r;e.registerDiagnosticCallback(r);let a=new Promise((c,l)=>{let d=setTimeout(()=>{this.diagnosticWaiters.delete(s)&&l(new Error("Wait for diagnostics timeout"))},ZP);this.diagnosticWaiters.set(s,{resolve:c,reject:l,timer:d})});h.debug(`textDocument/didOpen(legacy) uri=${r} content_len=${i.length}`),e.onAsyncOpenFile({textDocument:{uri:r,text:i,languageId:o,version:i.length},editorFiles:[r],isFromEditor:!1});try{return await a}finally{e.closeFileLegacy(r,!1)}}async handleCall(e){if(!this.initialized)return this.buildNotReadyResponse();let t=[],r=[],i=this.collectValidFiles(e.files,t);return i.length===0?{content:[{type:"text",text:t.length>0?t.join(`
1292
- `):"\u6CA1\u6709\u6709\u6548\u7684 .ets \u6587\u4EF6"}],isError:!0}:(await this.runDiagnosticsForFiles(i,t,r),this.formatCallResult(t,r))}async handleLspFeature(e,t){if(!this.initialized)return this.buildNotReadyResponse();let r=this.resolveSingleFile(t.file);if(!r)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${t.file}`}],isError:!0};let i=n.FEATURE_METHOD_MAP[e];if(!i)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};h.info(`handleLspFeature: ${e} file=${r} line=${t.line} char=${t.character}`);try{let o=await this.withOpenFile(r,async a=>{let c={textDocument:{uri:a},position:{line:t.line,character:t.character}};return e==="references"&&(c.context={includeDeclaration:!0}),this.manager.sendFeatureRequest(i,c)});return{content:[{type:"text",text:o==null?`${e}: no result`:`${e}: ${JSON.stringify(o,null,2)}`}]}}catch(o){let s=o instanceof Error?o.message:String(o);return h.error(`handleLspFeature ${e} failed: ${s}`),{content:[{type:"text",text:`${e} failed: ${s}`}],isError:!0}}}async handleWorkspaceSymbol(e){if(!this.initialized)return this.buildNotReadyResponse();h.info(`handleWorkspaceSymbol: query="${e}"`);try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return{content:[{type:"text",text:t==null?"workspaceSymbol: no result":`workspaceSymbol: ${JSON.stringify(t,null,2)}`}]}}catch(t){let r=t instanceof Error?t.message:String(t);return h.error(`handleWorkspaceSymbol failed: ${r}`),{content:[{type:"text",text:`workspaceSymbol failed: ${r}`}],isError:!0}}}async handleWorkspaceSymbolRaw(e){if(!this.initialized)return null;try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return Array.isArray(t)?t:t==null?null:[t]}catch(t){return h.error(`handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e}`}],isError:!0};h.info(`handleDocumentSymbol: file=${t}`);try{let r=await this.withOpenFile(t,async o=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:o}}));return{content:[{type:"text",text:r==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(r,null,2)}`}]}}catch(r){let i=r instanceof Error?r.message:String(r);return h.error(`handleDocumentSymbol failed: ${i}`),{content:[{type:"text",text:`documentSymbol failed: ${i}`}],isError:!0}}}async handleCallHierarchy(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e.file}`}],isError:!0};h.info(`handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let r=await this.withOpenFile(t,async o=>{let s=await this.manager.sendFeatureRequest(y.PREPARE_CALL_HIERARCHY,{textDocument:{uri:o},position:{line:e.line,character:e.character}}),a=Array.isArray(s)?s:s?[s]:[];if(a.length===0)return{items:[],calls:[]};let c=e.direction==="incoming"?y.INCOMING_CALLS:y.OUTGOING_CALLS,l=[];for(let d of a){let g=await this.manager.sendFeatureRequest(c,{item:d});Array.isArray(g)?l.push(...g):g&&l.push(g)}return{items:a,calls:l}});return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(r,null,2)}`}]}}catch(r){let i=r instanceof Error?r.message:String(r);return h.error(`handleCallHierarchy failed: ${i}`),{content:[{type:"text",text:`callHierarchy failed: ${i}`}],isError:!0}}}async handleCodeAction(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e.file}`}],isError:!0};h.info(`handleCodeAction: file=${t} line=${e.line} char=${e.character}`);try{let r=await this.withOpenFile(t,async o=>{let s={line:e.line,character:e.character};return this.manager.sendFeatureRequest(y.CODE_ACTION,{textDocument:{uri:o},range:{start:s,end:s},context:{diagnostics:[]}})});return{content:[{type:"text",text:r==null?"codeAction: no result":`codeAction: ${JSON.stringify(r,null,2)}`}]}}catch(r){return this.buildErrorResponse("codeAction",r)}}async handleRename(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e.file}`}],isError:!0};h.info(`handleRename: file=${t} line=${e.line} char=${e.character} newName=${e.newName}`);try{let r=await this.withOpenFile(t,async o=>{let s={line:e.line,character:e.character};if(await this.manager.sendFeatureRequest(y.PREPARE_RENAME,{textDocument:{uri:o},position:s})==null)throw new Error("Symbol at this position cannot be renamed");return this.manager.sendFeatureRequest(y.RENAME,{textDocument:{uri:o},position:s,newName:e.newName})});return{content:[{type:"text",text:r==null?"rename: no result":`rename: ${JSON.stringify(r,null,2)}`}]}}catch(r){return this.buildErrorResponse("rename",r)}}async handleTypeHierarchy(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e.file}`}],isError:!0};h.info(`handleTypeHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let r=await this.fetchTypeHierarchy(t,e.line,e.character,e.direction);return{content:[{type:"text",text:`typeHierarchy (${e.direction}): ${JSON.stringify(r,null,2)}`}]}}catch(r){return this.buildErrorResponse("typeHierarchy",r)}}async handleCompletionItemResolve(e){if(!this.initialized)return this.buildNotReadyResponse();h.info("handleCompletionItemResolve");try{let t=await this.manager.sendFeatureRequest(y.COMPLETION_ITEM_RESOLVE,{item:e});return{content:[{type:"text",text:t==null?"completionItemResolve: no result":`completionItemResolve: ${JSON.stringify(t,null,2)}`}]}}catch(t){return this.buildErrorResponse("completionItemResolve",t)}}async fetchTypeHierarchy(e,t,r,i){return this.withOpenFile(e,async o=>{let s=await this.manager.sendFeatureRequest(y.PREPARE_TYPE_HIERARCHY,{textDocument:{uri:o},position:{line:t,character:r}}),a=Array.isArray(s)?s:s?[s]:[];if(a.length===0)return{items:[],results:[]};let c=i==="supertypes"?y.SUPERTYPES:y.SUBTYPES,l=await this.collectHierarchyItems(c,a);return{items:a,results:l}})}async collectHierarchyItems(e,t){let r=[];for(let i of t){let o=await this.manager.sendFeatureRequest(e,{item:i});Array.isArray(o)?r.push(...o):o&&r.push(o)}return r}async handleInlayHint(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e}`}],isError:!0};try{let i=(await qe.promises.readFile(t,"utf8")).split(`
1293
- `).length,o=await this.withOpenFile(t,async a=>this.manager.sendFeatureRequest(y.INLAY_HINT,{textDocument:{uri:a},range:{start:{line:0,character:0},end:{line:i,character:0}}}));return{content:[{type:"text",text:o==null?"inlayHint: no result":`inlayHint: ${JSON.stringify(o,null,2)}`}]}}catch(r){return this.buildErrorResponse("inlayHint",r)}}async handleDocumentLink(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`\u6587\u4EF6\u4E0D\u5B58\u5728\u6216\u4E0D\u662F .ets \u6587\u4EF6: ${e}`}],isError:!0};try{let r=await this.withOpenFile(t,async o=>this.manager.sendFeatureRequest(y.DOCUMENT_LINK,{textDocument:{uri:o}}));return{content:[{type:"text",text:r==null?"documentLink: no result":`documentLink: ${JSON.stringify(r,null,2)}`}]}}catch(r){return this.buildErrorResponse("documentLink",r)}}buildErrorResponse(e,t){let r=t instanceof Error?t.message:String(t);return h.error(`${e} failed: ${r}`),{content:[{type:"text",text:`${e} failed: ${r}`}],isError:!0}}async withOpenFile(e,t){let r=Dn(e),i=await qe.promises.readFile(e,"utf8"),s=`deveco.apptool.${Ee.extname(e).replace(/^\./,"")||"plaintext"}`;h.debug(`withOpenFile didOpen uri=${r} len=${i.length}`),this.sendNotification("textDocument/didOpen",{textDocument:{uri:r,text:i,languageId:s,version:++this.documentVersion}});try{return await t(r)}finally{this.sendNotification("textDocument/didClose",{textDocument:{uri:r},isManual:!1})}}resolveSingleFile(e){let t=Ee.isAbsolute(e)?e:Ee.join(this.projectPath,e);return!qe.existsSync(t)||!qe.statSync(t).isFile()||!t.endsWith(".ets")?null:t}buildNotReadyResponse(){return{content:[{type:"text",text:this.initializing?"LSP \u6B63\u5728\u521D\u59CB\u5316\u4E2D\uFF0C\u8BF7\u7A0D\u540E\u518D\u8BD5":this.projectPath?"LSP\u672A\u521D\u59CB\u5316":"\u6CA1\u6709\u914D\u7F6E\u5DE5\u7A0B\u8DEF\u5F84\uFF0C\u8BF7\u914D\u7F6EPROJECT_PATH\u53C2\u6570"}],isError:!0}}collectValidFiles(e,t){let r=Ee.resolve(this.projectPath),i=[];for(let o of e){let s=Ee.resolve(Ee.isAbsolute(o)?o:Ee.join(r,o));if(!qe.existsSync(s)){t.push(`\u6587\u4EF6\u4E0D\u5B58\u5728: ${o}`);continue}if(!qe.statSync(s).isFile()){t.push(`\u4E0D\u662F\u666E\u901A\u6587\u4EF6: ${o}`);continue}if(!s.endsWith(".ets")){t.push(`\u4E0D\u662F .ets \u6587\u4EF6: ${o}`);continue}i.push(s)}return i}async runDiagnosticsForFiles(e,t,r){for(let i of e){await ld(500);try{let o=await this.checkFile(i);r.push(eC(i,o))}catch(o){t.push(`${i} => wait for diagnostics failed: ${o.message}`)}}}formatCallResult(e,t){let r=[];e.length>0&&r.push(e.join(`
1294
- `)),t.length>0&&r.push(t.join(`
1295
- `));let i=r.join(`
1296
- `).trim(),o=e.length>0;return!o&&t.length===0&&(i="\u672A\u6536\u96C6\u5230\u8BCA\u65AD\u4FE1\u606F"),{content:[{type:"text",text:i}],isError:o}}async shutdown(){let e=this.initReject;if(this.clearInitHandlers(),e?.(new Error("LSP shutting down")),this.manager){try{await this.manager.dispose()}catch(t){h.warn(`Failed to dispose ArktsLspManager: ${t}`)}this.manager=null}this.initialized=!1,this.initializing=!1,this.initPromise=null}sendNotification(e,t){if(!this.manager)throw new Error("ArktsLspManager not initialized");this.manager.sendNotification({jsonrpc:"2.0",method:e,params:t})}handleLspMessage(e){let t=e,r=t.method;if(r)switch(r){case"textDocument/publishDiagnostics":{this.handleDiagnosticsNotification(t.params);break}case"arkts/indexingProgress":this.initResolve&&(this.armInitTimer(Ze),h.debug("Received arkts/indexingProgress, reset init timeout"));break;case"arkts/initialized":{h.info("Received arkts/initialized");let i=this.initResolve;this.clearInitHandlers(),i?.();break}case"arkts/initializationFailed":{let o=t.params?.message??"unknown";h.error(`LSP initialization failed: ${o}`);let s=this.initReject;this.clearInitHandlers(),s?.(new Error(`LSP initialize failed: ${o}`));break}case"workspace/didChangeConfiguration":h.info("Received workspace/didChangeConfiguration, sync deferred to next check");break;default:break}}handleDiagnosticsNotification(e){if(!e)return;let t=e.uri;if(!t)return;let r=this.popDiagnosticWaiter(t);if(!r&&this.diagnosticWaiters.size===1){let s=this.diagnosticWaiters.keys().next().value;r=this.popDiagnosticWaiter(s)}if(!r)return;if(typeof e.errorMessage=="string"){h.warn(`diagnostics error uri=${t} message=${e.errorMessage}`),r.resolve({errorMessage:e.errorMessage});return}let i=e.diagnostics,o=Array.isArray(i)?i.length:0;h.debug(`diagnostics received uri=${t} count=${o}`),r.resolve(Array.isArray(i)?i:[])}popDiagnosticWaiter(e){let t=this.diagnosticWaiters.get(e);if(t)return this.diagnosticWaiters.delete(e),clearTimeout(t.timer),t}getLogAndIndexPath(e){try{let t=Ee.join(Wt(),"ArkTSCheck"),r=Ee.join(t,"mapping-config.properties"),i=dd(e,r),o=`${Date.now()}${process.hrtime.bigint()%1000000n}`,s=Ee.join(t,"lsp-log",String(i),o),a=Ee.join(t,"lsp-index",String(i));return qe.mkdirSync(s,{recursive:!0}),qe.mkdirSync(a,{recursive:!0}),{logPath:fe(s),indexPath:fe(a)}}catch{return{logPath:"auto",indexPath:"auto"}}}};function QP(n){if(Array.isArray(n))return n;if(n&&typeof n=="object"){let e=n;if(e.kind==="full"&&Array.isArray(e.items))return e.items}return[]}function eC(n,e){if(Array.isArray(e))return e.length===0?`${n} => no diagnostics`:`${n} => Diagnostic: ${JSON.stringify(e)}`;if(e&&typeof e=="object"&&typeof e.errorMessage=="string"){let t=e.errorMessage;return`${n} diagnostic failed, error_message: ${t}`}return`${n} => diagnostic failed, result: ${JSON.stringify(e)}`}import*as un from"fs";import*as qn from"path";import{z as Xc}from"zod";function Lr(){return{content:[{type:"text",text:"C++ LSP is not ready, please retry later"}],isError:!0}}function _s(n,e){let t=e instanceof Error?e.message:String(e);return h.error(`[CppLsp] ${n} failed: ${t}`),{content:[{type:"text",text:`${n} failed: ${t}`}],isError:!0}}var tC=500,Nr=class{manager;constructor(e){this.manager=e}static getToolDefinition(){return{name:"check_cpp_files",description:"Perform static syntax checks on the provided C/C++ files and return clangd diagnostics.",inputSchema:Xc.object({files:Xc.array(Xc.string()).describe('List of C/C++ file paths to check, format: ["file1.cpp","file2.hpp",...]')})}}async handleCall(e){if(!this.manager.ready)return Lr();let t=[],r=[],i=this.collectValidFiles(e.files,t);if(i.length===0)return{content:[{type:"text",text:t.length>0?t.join(`
1297
- `):"No valid C/C++ files"}],isError:!0};for(let c of i){await rC(tC);try{let l=await this.checkFile(c);r.push(nC(c,l))}catch(l){t.push(`${c} => wait for diagnostics failed: ${l.message}`)}}let o=t.length>0,s=[];t.length>0&&s.push(t.join(`
1298
- `)),r.length>0&&s.push(r.join(`
1291
+ `,CE="6.1.0";function kE(r){let e=r.trim();if(!e)throw new Error("--target must not be empty.");return e}function IE(r){let e=r.trim();if(!Nf.includes(e))throw new Error(`Invalid fold state "${r}". Available values: ${Nf.join(", ")}`);return e}function Of(r,e,t,n){let o=e.trim();if(!/^-?\d+$/.test(o))throw new Error(`${r} must be an integer in [${t}, ${n}].`);let i=Number(o);if(i<t||i>n)throw new Error(`${r} must be in [${t}, ${n}].`);return i}function _f(r,e,t,n,o){let i=e.trim(),s=Number(i);if(!i||Number.isNaN(s))throw new Error(`${r} must be a number in [${t}, ${n}].`);if(o!==void 0&&!AE(i,o))throw new Error(`${r} supports at most ${o} decimal place(s).`);if(s<t||s>n)throw new Error(`${r} must be in [${t}, ${n}].`);return i}function AE(r,e){let t=r.split(".")[1];return t===void 0||t.length<=e}function Gr(r,e,t,n,o){return Number(_f(r,e,t,n,o))}var DE=["Name","Status","Serial","Device Type","OS Version"];function RE(r){return{cells:[r.name,r.status,r.serial??"-",r.deviceType??"-",r.osVersion??"-"],highlight:r.status==="running"}}async function TE(r,e){let t=await Promise.all(e.map(async n=>{let o=await un(r,n,EE);return[n,o]}));return new Map(t)}async function xE(r){let e=await _c(r),t=await TE(r,e);return{serials:e,params:t}}function LE(r,e,t,n,o){if(e)for(let i of["const.product.name","const.product.model"]){let s=e.get(i);if(!s)continue;let a=t.indexOf(s);if(a===-1)continue;t.splice(a,1),o.set(s,r);let c=n.indexOf(r);c!==-1&&n.splice(c,1);return}}function NE(r,e,t){let n=new Map,o=new Map,i=[...r],s=[...t];for(let a of r){let c=e.get(a),l=c?.get("ohos.qemu.hvd.name");l&&o.set(l,a),t.length>0&&LE(a,c,s,i,n)}for(let a=0;a<s.length&&a<i.length;a++)n.set(s[a],i[a]);return{productSerialMap:n,hvdSerialMap:o}}function ME(r,e,t){let n=r.map(o=>({emu:o,serial:e.get(o.name)??t.get(o.name),effectiveRunning:o.isRunning===!0||t.has(o.name)}));return n.sort((o,i)=>o.effectiveRunning!==i.effectiveRunning?o.effectiveRunning?-1:1:o.emu.name.localeCompare(i.emu.name)),n.map(({emu:o,serial:i,effectiveRunning:s})=>({name:o.name,status:s?"running":"stopped",serial:i??null,deviceType:o.deviceType??null,osVersion:o.osVersion??null}))}async function OE(r,e,t,n){try{let[o,i]=await Promise.all([r.listEmulators(),xE(e)]);if(o.length===0){n?.stop(),console.log(t==="json"?"[]":lr(" No emulator instances found."));return}let s=o.filter(g=>g.isRunning).map(g=>g.name),{productSerialMap:a,hvdSerialMap:c}=NE(i.serials,i.params,s);n?.stop();let l=ME(o,a,c);if(t==="json"){console.log(JSON.stringify(l,null,2));return}let d=l.map(RE);console.log(Ft(DE,d))}catch(o){throw n?.stop(),new Error(`Failed to list emulators: ${o.message}`,{cause:o})}}function jf(r,e,t){let n=!1;for(let o=0;o<r.length;o++){let i=r[o];if(i.status!=="rejected")continue;n=!0;let s=i.reason;console.error(Yc(`Failed to ${t} emulator "${e[o]}": ${s.message}`)),s.stdout&&console.error(qc(s.stdout)),s.stderr&&console.error(qc(s.stderr))}return n}var _E=2e3,jE=6e4;async function FE(r,e){let t=Ce(e);return(await jc(r)).some(o=>Ce(o)===t)}async function Ff(r,e,t,n=jE,o=_E){let i=Date.now()+n;for(;Date.now()<i;){if(await FE(r,e)===t)return!0;await new Promise(a=>setTimeout(a,o))}return!1}function $E(r){if(!r)return null;let e=r.indexOf("-bootmode");return e>=0&&e+1<r.length&&r[e+1]==="snapshot"}async function HE(r,e,t){let n=await r.startEmulator(t);if(n.status==="already-running")return console.log(lr(`Emulator "${t}" is already running.`)),{started:!1,memoryBytes:0,hotBoot:null};console.log(In(`Starting emulator "${t}"...`));let o=n.tracker,i=0,s=$E(n.args);try{let a=await Ff(e,t,!0);console.log(a?No(`Emulator "${t}" started successfully.`):lr(`Emulator "${t}" was launched but did not appear in hdc list targets within the timeout.`))}finally{if(o)try{i=await o.stop()}catch{}}return{started:!0,memoryBytes:i,hotBoot:s}}async function UE(r,e,t){let n=await Promise.allSettled(t.map(s=>HE(r,e,s)));if(jf(n,t,"start"))throw new w("One or more emulators failed to start.");let o=n.filter(s=>s.status==="fulfilled").map(s=>s.value).filter(s=>s.started);return{emulatorMemory:o.length===0||o.some(s=>s.memoryBytes===0)?"unknown":Q(o.reduce((s,a)=>s+a.memoryBytes,0)),hotBoot:o.length===0?null:o.every(s=>s.hotBoot===!0)}}async function $f(r,e){let t=e.trim();if(!It(t))return t;let n=await de.withHdcPath(r).getDeviceName(t);if(n===t)throw new Error(`Cannot resolve a running emulator with serial "${t}". Use \`devecocli emulator list\` or pass the emulator name instead.`);return n}async function BE(r,e,t){let n=await $f(e,t);if(console.log(In(`Stopping emulator "${n}"...`)),await r.stopEmulator(n)==="already-stopped"){console.log(lr(`Emulator "${n}" is already stopped.`));return}let i=await Ff(e,n,!1);console.log(i?No(`Emulator "${n}" stopped successfully.`):lr(`Emulator "${n}" stop signal was sent but the instance is still visible in hdc list targets within the waiting period.`))}async function WE(r,e,t){let n=await Promise.allSettled(t.map(o=>BE(r,e,o)));jf(n,t,"stop")}async function lt(){let r=await A.new();return{manager:Cn.from(r),toolProvider:r}}async function Ht(r,e,t){let n={event:b.CommandExecuted,args:["emulator",t,"--target"]};await ct(n,async()=>{let o=kE(r.target),i=e(),s=Array.isArray(i)?i:[i],{manager:a,toolProvider:c}=await lt(),l=await $f(c.hdcPath,o);for(let d of s)await a.controlEmulator(l,d);console.log(No(`Emulator "${o}" operation completed.`))})}function VE(r){let e=[];if(cs(e,"longitude",r.longitude,-180,180,8),cs(e,"latitude",r.latitude,-90,90,8),cs(e,"altitude",r.altitude,-1e4,1e4,2),cs(e,"bearing",r.direction,0,359.99,2,"--direction"),e.length===0)throw new Error("Specify at least one geolocation option.");return(r.longitude===void 0||r.latitude===void 0)&&console.warn(lr("Warning: --longitude and --latitude should be specified together to form a valid location.")),e}function GE(r){let e=[];if(xo(e,"light",r.lightIntensity,0,1e5,!1,"--light-intensity"),xo(e,"humidity",r.humidity,0,100,!1),xo(e,"temperature",r.temperature,-273.1,100,!1),xo(e,"steps",r.steps,0,1e4,!0),xo(e,"heartrate",r.heartrate,0,255,!0),e.length===0)throw new Error("Specify at least one sensor option.");return e}function cs(r,e,t,n,o,i,s=`--${e}`){t!==void 0&&r.push({type:"gps",key:e,value:_f(s,t,n,o,i)})}function xo(r,e,t,n,o,i,s=`--${e}`){if(t===void 0)return;let a=i?Of(s,t,n,o):Gr(s,t,n,o,1);r.push({type:"sensor",key:e,value:a})}function qE(r){let e=[];if(r.status!==void 0){let o=r.status==="charging"?1:0;e.push({type:"battery-status",status:o})}if(r.level!==void 0&&e.push({type:"battery",level:Of("--level",r.level,0,100),assumedCharging:r.status==="charging"}),e.length===0)throw new Error("Specify --level or --status.");let t=e.some(o=>o.type==="battery"&&o.level===0),n=e.some(o=>o.type==="battery-status"&&o.status===0);if(t&&n)throw new Error("Battery level 0 is only allowed while charging; --level 0 cannot be combined with --status discharging.");return e}var pe=new Jc("emulator").description("Manage emulator instances");pe.configureOutput({outputError:(r,e)=>{e(r),/too many arguments/i.test(r)&&e(`
1292
+ ${lr("Tip: ")}${qc("An option value containing spaces/parentheses must be quoted. Use:")}
1293
+ ${In('devecocli emulator <subcommand> --<option> "value with spaces"')}
1294
+ ${In('devecocli emulator <subcommand> --<option>="value with spaces"')}
1295
+ `)}});pe.hook("preAction",async()=>{(await A.new()).require({studio:CE})});var zE=["phone","foldable","widefold","triplefold","tablet","2in1","2in1 foldable","wearable","tv"];function Kc(r){let e=new at("--device-type <type>","Emulator device type").choices([...zE]);return r?e.makeOptionMandatory():e}function JE(){return new at("--device-type <type>","Emulator device type (case-insensitive)").argParser(r=>{if(!r.trim())throw new bE("--device-type must not be empty.");return r}).makeOptionMandatory()}function YE(r){if(r!==void 0){if(r.length>=4&&r.length%4===0&&r.every(e=>/^\d+(?:\.\d+)?$/.test(e)))throw new Error('--screen value must be quoted: --screen "1316 2832 560 6.9".');if(r.length>2)throw new Error("--screen accepts one or two configurations.");for(let[e,t]of r.entries()){let n=t.trim().split(/\s+/),o=r.length===1?"--screen":`--screen configuration ${e+1}`;if(n.length!==4||n.some(i=>i.length===0))throw new Error(`${o} must contain four values: width(px), height(px), DPI, and screen diagonal length(inch).`);Gr(`${o} width`,n[0],720,3500),Gr(`${o} height`,n[1],720,3500),Gr(`${o} DPI`,n[2],240,640),Gr(`${o} screen diagonal length`,n[3],3.5,9)}return r}}function KE(r){return["--device-type","--os-version",...r.instancePath!==void 0?["--instance-path"]:[],...r.imageRoot!==void 0?["--image-root"]:[],...r.screenProfile!==void 0?["--screen-profile"]:[],...r.screen!==void 0?["--screen"]:[],...r.storage!==void 0?["--storage"]:[],...r.memory!==void 0?["--memory"]:[],...r.hotBoot!==void 0?["--hot-boot"]:[],...r.force?["--force"]:[]]}function kn(r,e){for(let t of e)if(t in r)return r[t]}function Lo(r){return r==null?"":typeof r=="string"?r.trim():String(r).trim()}function Mf(r){let e=Lo(r).toLowerCase();return e==="true"?"true":e==="false"?"false":e}var XE=["OS Version","Device Type","Software Version","Release Type","Upgradable","Downloaded"],ZE="No matching system images found. Try `devecocli emulator image list --all`, then download an image via `devecocli emulator image download ...`.";async function QE(r,e,t){if(!await r.hasAvailableEmulatorImage({deviceType:e,osVersion:t}))throw new Error(`Invalid --os-version value "${t}".
1296
+ Run \`devecocli emulator image list --all\` and use an exact OS Version value.`)}function Hf(r){try{let e=JSON.parse(r);return Array.isArray(e)?e:null}catch{return null}}function Uf(r,e){let t=[];for(let n of r){if(!n||typeof n!="object")continue;let o=n,i=Lo(kn(o,["osVersion","OsVersion","OSVersion","os_version"])),s=Lo(kn(o,["deviceType","DeviceType","device_type"])),a=Mf(kn(o,["downloaded","Downloaded","isDownloaded"])),c=Lo(kn(o,["SoftWareVersion","SoftwareVersion","softwareVersion","software_version","version"])),l=Lo(kn(o,["releaseType","ReleaseType","release_type"])),d=Mf(kn(o,["upgradable","Upgradable","isUpgradable"]));t.push({cells:[i,s,c,l,d,a],highlight:e&&a==="true"})}return t}function eP(r){let e=r.trim();if(!e)return!0;let t=Hf(e);return t===null?!1:t.length===0?!0:Uf(t,!0).length===0}function tP(r,e){let t=r.trim();if(!t)return"";let n=Hf(t);if(!n)return r.trimEnd();let o=Uf(n,e);return Ft(XE,o)}var ls=new Jc("image").description("HarmonyOS emulator system images (download, list, remove)");ls.command("download").description("Download system image").addOption(Kc(!1)).option("--os-version <version>","Example: HarmonyOS 5.1.1(19) or HarmonyOS 6.0.1(21) (required)").option("--force","Overwrite an existing image").action(async r=>{let e={event:b.CommandExecuted,args:["emulator","image","download",...r.deviceType?["--device-type"]:[],...r.osVersion?["--os-version"]:[],...r.force?["--force"]:[]]};await ct(e,async()=>{let{manager:t,toolProvider:n}=await lt();await Gc(n.emulatorPath,n.sdkPath);let o=r.deviceType?.trim(),i=r.osVersion?.trim();if(!o)throw new w("Error: missing required option '--device-type <type>'","Missing required device type.");if(!i)throw new w("Error: misssing required option '--os-version <version>'","Missing required OS version.");await QE(t,o,i),await t.installEmulatorImage({deviceType:o,osVersion:i,force:r.force===!0})})});ls.command("remove").description("Remove a downloaded system image").addOption(Kc(!0)).requiredOption("--os-version <version>","Supports both image label (HarmonyOS x.y.z(n)) and softwareVersion").action(async r=>{let e={event:b.CommandExecuted,args:["emulator","image","remove","--device-type","--os-version"]};await ct(e,async()=>{let{manager:t}=await lt();await t.uninstallEmulatorImage({deviceType:r.deviceType,osVersion:r.osVersion})})});ls.command("list").description("List system images").addOption(Kc(!1)).option("--all","List all images (local and remote)").addOption(new at("--format <format>","Output format").choices(["table","json"]).default("table")).action(async r=>{let e={event:b.CommandExecuted,args:["emulator","image","list",...r.deviceType?["--device-type"]:[],...r.all?["--all"]:[],...r.format!=="table"?["--format"]:[]]};await ct(e,async()=>{let{manager:t}=await lt(),n;r.all?n=void 0:n=!0;let o=await t.listEmulatorImages({deviceType:r.deviceType,downloaded:n});if(eP(o)){console.log(lr(ZE));return}if(r.format==="json"){console.log(o.trimEnd());return}let i=tP(o,r.all===!0);console.log(i)})});pe.addCommand(ls);var ds=new Jc("license").description("Review and accept emulator license agreements interactively (prints full text + y/N prompt)");ds.command("view").description("Review agreement text (read-only, no changes)").action(async()=>{let r={event:b.CommandExecuted,args:["emulator","license","view"]};await ct(r,async()=>{let{toolProvider:e}=await lt(),t=await Rf(e.emulatorPath,e.sdkPath);process.exitCode=t})});ds.command("accept").description("Accept all emulator license agreements non-interactively (skips review and prompt)").action(async()=>{let r={event:b.CommandExecuted,args:["emulator","license","accept"]};await ct(r,async()=>{let{toolProvider:e}=await lt(),t=await Lf(e.emulatorPath,e.sdkPath);process.exitCode=t})});ds.action(async()=>{let r={event:b.CommandExecuted,args:["emulator","license"]};await ct(r,async()=>{let{toolProvider:e}=await lt(),t=await xf(e.emulatorPath,e.sdkPath);process.exitCode=t})});pe.addCommand(ds);pe.command("shake").description("Trigger shake event").requiredOption("--target <nameOrSerial>","Target emulator name or serial").action(r=>Ht(r,()=>({type:"shake"}),"shake"));pe.command("power").description("Press power button (toggle screen on/off)").requiredOption("--target <nameOrSerial>","Target emulator name or serial").action(r=>Ht(r,()=>({type:"power"}),"power"));pe.command("rotate").description("Rotate emulator").addOption(new at("--target <nameOrSerial>","Target emulator name or serial").makeOptionMandatory()).addArgument(new zc("<direction>").choices(["left","right"])).action((r,e)=>Ht(e,()=>({type:"rotation",direction:r}),"rotate"));pe.command("volume").description("Change volume").addOption(new at("--target <nameOrSerial>","Target emulator name or serial").makeOptionMandatory()).addArgument(new zc("<direction>").choices(["up","down"])).action((r,e)=>Ht(e,()=>({type:"volume",direction:r}),"volume"));pe.command("fold <state>").description("Set foldable display state").requiredOption("--target <nameOrSerial>","Target emulator name or serial").addHelpText("after",PE).action((r,e)=>Ht(e,()=>({type:"folded-state",state:IE(r)}),"fold"));pe.command("battery").description("Set battery level and/or charging status").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--level <0-100>","Battery level, SOC (charging: 0-100; not charging: 1-100)").addOption(new at("--status <status>","Charging status").choices(["charging","discharging"])).action(r=>Ht(r,()=>qE(r),"battery"));pe.command("geolocation").description("Inject geographic coordinates and direction").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--longitude <value>","Longitude (-180.0 to 180.0)").option("--latitude <value>","Latitude (-90.0 to 90.0)").option("--altitude <value>","Altitude (-10000.0 to 10000.0)").option("--direction <value>","Heading direction in degrees (0.00 to 359.99)").action(r=>Ht(r,()=>VE(r),"geolocation"));pe.command("scene").description("Start motion simulation scene").requiredOption("--target <nameOrSerial>","Target emulator name or serial").addArgument(new zc("<type>","Motion simulation scene").choices(["outdoorRunning","outdoorCycling","drivingNavigation"])).action((r,e)=>{let t={outdoorRunning:{type:"outdoor-running"},outdoorCycling:{type:"outdoor-cycling"},drivingNavigation:{type:"driving-navigation"}};return Ht(e,()=>t[r],"scene")});pe.command("sensor").description("Inject sensor data").requiredOption("--target <nameOrSerial>","Target emulator name or serial").option("--light-intensity <value>","Light sensor (0 to 100000)").option("--humidity <value>","Humidity sensor (0 to 100)").option("--temperature <value>","Temperature sensor (-273.1 to 100)").option("--steps <value>","Steps sensor (integer 0 to 10000)").option("--heartrate <value>","Heart rate sensor (integer 0 to 255)").action(r=>Ht(r,()=>GE(r),"sensor"));pe.command("list").description("List all emulator instances").addOption(new at("--details","Output the raw JSON of `Emulator -list -details` without transformation").conflicts("format")).addOption(new at("--format <format>","Output format").choices(["table","json"]).default("table")).action(async r=>{let e={event:b.CommandExecuted,args:["emulator","list",...r.details?["--details"]:[],...r.format!=="table"?["--format"]:[]]};await ct(e,async()=>{let{manager:t,toolProvider:n}=await lt();if(r.details){let i=await t.listEmulatorDetails();console.log(i.trimEnd());return}let o=r.format==="table"?SE({text:"Listing emulators\u2026",color:"cyan"}).start():void 0;await OE(t,n.hdcPath,r.format,o)})});pe.command("start [names...]").description("Start one or more emulator instances").action(async r=>{let e={event:b.CommandExecuted,args:["emulator","start"],emulatorMemory:"unknown",hotBoot:null};await ct(e,async()=>{let{manager:t,toolProvider:n}=await lt();if(await Vc(n.emulatorPath,n.sdkPath),!r?.length)throw new w("Error: missing required argument 'names'","Missing required emulator name.");let o=await UE(t,n.hdcPath,r);e.emulatorMemory=o.emulatorMemory,e.hotBoot=o.hotBoot})});pe.command("stop <names...>").description("Stop one or more emulator instances (by name or serial,e.g.,127.0.0.1:<port>)").action(async r=>{let e={event:b.CommandExecuted,args:["emulator","stop"]};await ct(e,async()=>{let{manager:t,toolProvider:n}=await lt();if(!r?.length){console.error(Yc("Error: missing required argument 'names'")),process.exitCode=1;return}await WE(t,n.hdcPath,r)})});var rP=pe.command("create <name>").description("Create a local emulator instance.").addOption(JE()).requiredOption("--os-version <version>",'Downloaded image label. which will be quoted in PowerShell (e.g. "HarmonyOS 6.0.1(21)") or be used in the format --os-version="\u2026";For details, run`devecocli emulator image list`').addOption(new at("--path, --instance-path <path>","Emulator instance path")).option("--image-root <path>","Emulator image path").option("--screen-profile <model>","Emulator screen profile").addOption(new at("--screen <config...>",'Screen: "width(px) height(px) DPI screen-diagonal-length(inch)" (720-3500, 720-3500, 240-640, 3.5-9); pass two values for a foldable device')).option("--storage <size>","Storage size in GB (2-1023)").option("--memory <size>","Memory size in GB (2-32)").addOption(new at("--hot-boot <boolean>","Enable or disable hot boot").choices(["true","false"])).option("--force","Overwrite an existing emulator instance");rP.action(async(r,e)=>{let t={event:b.CommandExecuted,args:["emulator","create",...KE(e)]};await ct(t,async()=>{if(!e.osVersion.trim())throw new Error("--os-version must not be empty.");let n={name:r,deviceType:e.deviceType,osVersion:e.osVersion,instancePath:e.instancePath,imageRoot:e.imageRoot,screenProfile:e.screenProfile,screen:YE(e.screen),storage:e.storage===void 0?void 0:Gr("--storage",e.storage,2,1023),memory:e.memory===void 0?void 0:Gr("--memory",e.memory,2,32),hotBoot:e.hotBoot===void 0?void 0:e.hotBoot==="true",force:e.force===!0},{manager:o}=await lt();console.log(In(`Creating emulator "${r}"...`)),await o.createVirtualDevice(n),console.log(No(`Emulator "${r}" created successfully.`))})});pe.command("delete <name>").description("Delete a local emulator instance").addOption(new at("--path, --instance-path <path>","Emulator instance path")).action(async(r,e)=>{let t={event:b.CommandExecuted,args:["emulator","delete",...e.instancePath!==void 0?["--instance-path"]:[]]};await ct(t,async()=>{let{manager:n}=await lt();console.log(In(`Deleting emulator "${r}"...`));let o=await n.deleteVirtualDevice(r,e.instancePath);console.log(No(`Emulator "${o}" deleted successfully.`))})});var Bf=pe;import{Command as IP}from"commander";import{red as nl,cyan as Rt}from"colorette";import*as um from"readline";import*as lm from"crypto";import*as Wf from"http";import*as Vf from"crypto";import{URL as nP}from"url";var us=class{server=null;port=0;clientSecret;callbackPath="/callback";resolveCallback=null;rejectCallback=null;timeoutId=null;baseUrl;successRedirectUrl;failedRedirectUrl;constructor(e,t,n,o){this.clientSecret=e,this.baseUrl=t,this.successRedirectUrl=n,this.failedRedirectUrl=o}async start(){return new Promise((e,t)=>{let n=Wf.createServer((o,i)=>{this.handleRequest(o,i)});n.keepAliveTimeout=1,n.on("error",o=>{t(new Error("Failed to start local auth server",{cause:o}))}),n.listen(0,"127.0.0.1",()=>{this.server=n;let o=n.address();this.port=o.port,e()})})}async waitForCallback(e=3e4){return new Promise((t,n)=>{this.resolveCallback=o=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),t(o)},this.rejectCallback=o=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),n(o)},this.timeoutId=setTimeout(()=>{this.timeoutId=null,this.rejectCallback?.(new Error("Callback timeout"))},e)})}async stop(){return this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),this.server?new Promise(e=>{let t=this.server;this.server=null,typeof t.closeAllConnections=="function"&&t.closeAllConnections();let n=setTimeout(()=>{e()},100);t.close(()=>{clearTimeout(n),e()})}):Promise.resolve()}handleRequest(e,t){let n=e.headers.host||"";if(![`127.0.0.1:${this.port}`,`localhost:${this.port}`].includes(n.toLowerCase())){t.writeHead(400),t.end("Bad Host");return}let i=new nP(e.url??"",`http://${n}`);if(i.pathname!==this.callbackPath){t.writeHead(404),t.end("Not Found");return}try{let s=i.searchParams;e.method==="POST"?this.readBody(e,t,s):this.handleCallbackRequest(e,t,s,"")}catch(s){t.writeHead(500),t.end("Internal Server Error"),this.rejectCallback?.(s)}}readBody(e,t,n){let o="",i=0,s=65536;e.on("data",a=>{if(i+=a.length,i>s){e.destroy(new Error("Request body too large"));return}o+=a.toString()}),e.on("end",()=>{this.handleCallbackRequest(e,t,n,o)})}handleCallbackRequest(e,t,n,o){try{let i=this.parseParams(n,o),s=i.get("code"),a=i.get("tempToken"),c=i.get("siteId"),l=i.get("quit");if(!this.validateCode(s)){t.writeHead(400),t.end("Bad Request");return}if(this.isQuitRequest(l)){this.handleQuitRequest(t);return}if(!a||!c){t.writeHead(400),t.end("Bad Request");return}let d={tempToken:a,siteId:c,quit:l??void 0};this.resolveCallback?.(d),this.sendSuccessResponse(t)}catch(i){t.writeHead(500),t.end("Internal Server Error"),this.rejectCallback?.(i)}}parseParams(e,t){return t&&t.trim()?new URLSearchParams(t):e}validateCode(e){let t=Buffer.from(e||"","utf8"),n=Buffer.from(this.clientSecret,"utf8");return t.length===n.length&&Vf.timingSafeEqual(t,n)}isQuitRequest(e){return e==="true"||e==="access_denied"||e==="quit"}handleQuitRequest(e){this.rejectCallback?.(new Error("User quit the login process")),e.writeHead(302,{Location:`${this.baseUrl}/${this.failedRedirectUrl}`}),e.end()}sendSuccessResponse(e){e.writeHead(302,{Location:`${this.baseUrl}/${this.successRedirectUrl}`}),e.end()}getPort(){return this.port}};import*as He from"fs";import*as dr from"path";import{homedir as dP}from"os";var Ut={};ky(Ut,{LocalCrypto:()=>Ut,decryptForLocalStorage:()=>aP,decryptForLocalStorageFromDirectory:()=>cP,encryptForLocalStorage:()=>sP,isEncryptedBlob:()=>lP});import*as ne from"fs";import*as Le from"path";import*as $e from"crypto";import*as qf from"os";import{homedir as zf}from"os";var xe=class extends Error{constructor(e){super(e),this.name="DefinedError"}};var Mo=Tr.ALGORITHM,Jf=Tr.IV_LENGTH,Oo=Tr.KEY_LENGTH,_o=Tr.KEY_LENGTH,qr=Tr.KEK_VERSIONS,ps=process.env.DEVECO_CLI_DATA_DIR||Le.join(zf(),be.CONFIG_DIR_NAME,be.APP_NAME),fs=Le.join(zf(),".local","share",be.APP_NAME,"keys"),An=Le.join(ps,be.KEY_FILE_NAME);function Gf(r){return qf.platform()==="win32"?`Permission denied. Please run as administrator or grant write permission to ${r}.`:`Permission denied. You can try: sudo chown -R $(whoami) ${r}`}function Xc(r){return Le.join(fs,`${r}.bin`)}function Yf(){if(!ne.existsSync(ps))try{ne.mkdirSync(ps,{recursive:!0,mode:448})}catch(r){throw r.code==="EACCES"?new xe(Gf(ps)):r}if(!ne.existsSync(fs))try{ne.mkdirSync(fs,{recursive:!0,mode:448})}catch(r){throw r.code==="EACCES"?new xe(Gf(Le.dirname(fs))):r}}function Kf(){Yf();for(let r of qr){let e=Xc(r);ne.existsSync(e)||ne.writeFileSync(e,$e.randomBytes(Oo),{mode:384})}}function Xf(r){if(!qr.includes(r))throw new Error(`Invalid kekId: ${r}`);Kf();let e=Xc(r),t=ne.readFileSync(e);if(t.length===Oo)return t;let n=$e.randomBytes(Oo);return ne.writeFileSync(e,n,{mode:384}),n}function Zc(r,e){let t=$e.randomBytes(Jf),n=Xf(e),o=$e.createCipheriv(Mo,n,t),i=Buffer.concat([o.update(r),o.final()]),s=o.getAuthTag();return{version:1,algorithm:Mo,kekId:e,encryptedDek:i.toString("base64"),iv:t.toString("base64"),authTag:s.toString("base64"),timeStamp:Date.now()}}function Zf(r,e){return Qf(Buffer.from(r.encryptedDek,"base64"),e,r.iv,r.authTag)}function Qf(r,e,t,n){let o=$e.createDecipheriv(Mo,e,Buffer.from(t,"base64"));return o.setAuthTag(Buffer.from(n,"base64")),Buffer.concat([o.update(r),o.final()])}function em(r,e){return Qf(Buffer.from(r.ciphertext,"base64"),e,r.iv,r.authTag).toString("utf8")}function oP(){if(Kf(),ne.existsSync(An))return;let r=$e.randomBytes(_o),e=Zc(r,qr[0]);ne.writeFileSync(An,JSON.stringify(e,null,2),{mode:384})}function tm(){oP();let r=JSON.parse(ne.readFileSync(An,"utf8")),e=Zf(r,Xf(r.kekId));if(e.length===_o)return e;let t=$e.randomBytes(_o),n=Zc(t,qr[0]);return ne.writeFileSync(An,JSON.stringify(n,null,2),{mode:384}),t}function iP(){Yf();for(let t of qr){let n=Xc(t);ne.existsSync(n)||ne.writeFileSync(n,$e.randomBytes(Oo),{mode:384})}if(ne.existsSync(An))return;let r=$e.randomBytes(_o),e=Zc(r,qr[0]);ne.writeFileSync(An,JSON.stringify(e,null,2),{mode:384})}function sP(r){let e=tm(),t=$e.randomBytes(Jf),n=$e.createCipheriv(Mo,e,t),o=Buffer.concat([n.update(r,"utf8"),n.final()]),i=n.getAuthTag();return{version:1,algorithm:Mo,ciphertext:o.toString("base64"),iv:t.toString("base64"),authTag:i.toString("base64"),timeStamp:Date.now()}}function aP(r){try{return em(r,tm())}catch{throw iP(),new Error("Failed to decrypt local ciphertext")}}function cP(r,e){let t=Le.join(e,be.KEY_FILE_NAME),n=JSON.parse(ne.readFileSync(t,"utf8"));if(!qr.includes(n.kekId))throw new Error(`Invalid kekId: ${n.kekId}`);let o=Le.join(e,"keys",`${n.kekId}.bin`),i=Le.resolve(o),s=Le.resolve(Le.join(e,"keys"));if(!i.startsWith(s+Le.sep)&&i!==s)throw new Error("kekId resolves outside the keys directory");let a=ne.readFileSync(i);if(a.length!==Oo)throw new Error("Invalid external root key");let c=Zf(n,a);if(c.length!==_o)throw new Error("Invalid external data encryption key");return em(r,c)}function lP(r){if(!r||typeof r!="object")return!1;let e=r;return e.algorithm==="aes-256-gcm"&&typeof e.ciphertext=="string"&&typeof e.iv=="string"&&typeof e.authTag=="string"}function Ue(){return process.env.DEVECO_CLI_AUTH_SOURCE===be.AUTH_SOURCE_DEVECO_CODE}var ms=class{getLocalTokenFilePath(){let e=process.env.DEVECO_CLI_DATA_DIR||dr.join(dP(),be.CONFIG_DIR_NAME,be.APP_NAME);return dr.join(e,be.TOKEN_FILE_NAME)}ensureConfigDir(){let e=dr.dirname(this.getLocalTokenFilePath());He.existsSync(e)||He.mkdirSync(e,{recursive:!0,mode:448})}async saveJwtToken(e){if(!e)throw new Error("Token is empty");let t=Ut.encryptForLocalStorage(e);this.ensureConfigDir();let n=this.getLocalTokenFilePath();He.writeFileSync(n,JSON.stringify(t,null,2),{mode:384})}async loadJwtToken(){return Ue()?this.loadDevecoCodeToken():this.loadLocalJwtToken()}loadDevecoCodeToken(){if(!Ue())return null;let e=process.env.DEVECO_CODE_AUTH_DIR?.trim();if(!e)return null;let t=dr.resolve(e);try{let n=dr.join(t,be.TOKEN_FILE_NAME);if(!He.existsSync(n))return null;let o=JSON.parse(He.readFileSync(n,"utf8"));return Ut.isEncryptedBlob(o)?Ut.decryptForLocalStorageFromDirectory(o,e):null}catch{return null}}async loadLocalJwtToken(){let e=this.getLocalTokenFilePath();try{if(!He.existsSync(e))return null;let t=JSON.parse(He.readFileSync(e,"utf8"));return Ut.isEncryptedBlob(t)?Ut.decryptForLocalStorage(t):null}catch(t){let n=t.code;return n==="EACCES"||n==="EPERM"||n==="ENOENT"||await this.clearToken(),null}}async clearToken(){if(Ue()){u("clearToken: skipped, session managed by DevEco Code");return}let e=this.getLocalTokenFilePath();try{He.existsSync(e)&&He.unlinkSync(e)}catch(t){throw new Error("Failed to clear token",{cause:t})}}},Bt=new ms;import{spawn as uP}from"child_process";function pP(r){try{let e=new URL(r);return!(!["http:","https:"].includes(e.protocol)||e.hostname===""||r.includes('"'))}catch{return!1}}function fP(r){return r.replace(/[&|<>()^%!]/g,e=>`^${e}`)}async function rm(r){if(!pP(r))throw new Error(`Invalid URL: ${JSON.stringify(r)}`);let e,t;switch(process.platform){case"win32":e="cmd",t=["/c","start",'""',fP(r)];break;case"darwin":e="open",t=[r];break;default:e="xdg-open",t=[r];break}let n=uP(e,t,{stdio:"ignore",shell:!1,windowsHide:!0});return new Promise((o,i)=>{n.on("error",s=>{i(new Error("Failed to open browser",{cause:s}))}),n.on("close",s=>{s===0?o():i(new Error(`Browser process exited with code ${s}`))})})}import yP from"axios";var mP={ftp:21,gopher:70,http:80,https:443,ws:80,wss:443};function hP(r){try{return new URL(r)}catch{return null}}function nm(r){var e=(typeof r=="string"?hP(r):r)||{},t=e.protocol,n=e.host,o=e.port;if(typeof n!="string"||!n||typeof t!="string"||(t=t.split(":",1)[0],n=n.replace(/:\d*$/,""),o=parseInt(o)||mP[t]||0,!gP(n,o)))return"";var i=Qc(t+"_proxy")||Qc("all_proxy");return i&&i.indexOf("://")===-1&&(i=t+"://"+i),i}function gP(r,e){var t=Qc("no_proxy").toLowerCase();return t?t==="*"?!1:t.split(/[,\s]/).every(function(n){if(!n)return!0;var o=n.match(/^(.+):(\d+)$/),i=o?o[1]:n,s=o?parseInt(o[2]):0;return s&&s!==e?!0:/^[.*]/.test(i)?(i.charAt(0)==="*"&&(i=i.slice(1)),!r.endsWith(i)):r!==i}):!0}function Qc(r){return process.env[r.toLowerCase()]||process.env[r.toUpperCase()]||""}function vP(r){let e=new URL(r);return{protocol:e.protocol,host:e.hostname,port:e.port?Number.parseInt(e.port,10):e.protocol==="https:"?443:80,auth:{username:decodeURIComponent(e.username),password:decodeURIComponent(e.password)}}}var el=class{client;constructor(){let e={timeout:Zn.HTTP_TIMEOUT_MS,headers:{"User-Agent":li.USER_AGENT,"accept-language":li.ACCEPT_LANGUAGE},transformResponse:[t=>t]};this.client=yP.create(e),this.client.interceptors.request.use(t=>{let n=nm(t.url??"");return t.proxy=n?vP(n):!1,t}),this.client.interceptors.response.use(t=>t,t=>{let n=`Network connection failed (${t.code}). Please check your proxy configuration or network settings`;throw new Error(`${t.message}
1297
+ ${n}`)})}async get(e,t){let n=await this.client.request({method:"GET",url:e,params:t?.params,headers:t?.headers,timeout:t?.timeout});return this.convertResponse(n)}async post(e,t){let n=await this.client.request({method:"POST",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout});return this.convertResponse(n)}convertResponse(e){return{data:typeof e.data=="string"?e.data:JSON.stringify(e.data),statusCode:e.status,statusText:e.statusText??"",headers:e.headers}}parseJson(e){try{return JSON.parse(e.data)}catch(t){throw new Error(`Failed to parse JSON response: ${t instanceof Error?t.message:String(t)}`,{cause:t})}}async getBinary(e,t){let n=await this.client.request({method:"GET",url:e,responseType:"arraybuffer",headers:t?.headers,timeout:t?.timeout});if(n.status!==200)throw new Error(`HTTP ${n.status}`);return Buffer.from(n.data)}async postAllowFailure(e,t){let n=await this.client.request({method:"POST",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0});return this.convertResponse(n)}async deleteAllowFailure(e,t){let n=await this.client.request({method:"DELETE",url:e,data:t?.params,headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0});return this.convertResponse(n)}async getBinaryAllowFailure(e,t){let n=await this.client.request({method:"GET",url:e,responseType:"arraybuffer",headers:t?.headers,timeout:t?.timeout,validateStatus:()=>!0}),o=Buffer.from(n.data),i=o.toString("utf8");return{statusCode:n.status,statusText:n.statusText??"",buffer:o,body:i}}},L=new el;function om(r){let e=r.split(".");return e.length===3&&e.every(t=>t.length>0)}var Wt={CHINA:"CN",RUSSIA:"RU",SINGAPORE:"SG",EUROPE:"EU"},zr={CHINA:"zh_CN",RUSSIA:"ru_RU",EUROPE:"de_DE"},hs={CHINA:"1",SINGAPORE:"5",EUROPE:"7",RUSSIA:"8"},wP={[Wt.CHINA]:zr.CHINA,[Wt.RUSSIA]:zr.RUSSIA,[Wt.EUROPE]:zr.EUROPE,[Wt.SINGAPORE]:zr.CHINA},bP={[hs.CHINA]:Wt.CHINA,[hs.SINGAPORE]:Wt.SINGAPORE,[hs.EUROPE]:Wt.EUROPE,[hs.RUSSIA]:Wt.RUSSIA};function im(r){return wP[r]??zr.CHINA}function sm(r){return bP[r]??Wt.CHINA}var tl=class{async getJwtToken(e,t,n,o,i){let s=e.split("&")[0],a=sm(t),c={tempToken:s,site:a,version:be.API_VERSION,appid:i},l=`${n}/${o}`,d=await L.get(l,{params:c});if(d.statusCode!==200)throw new Error(`Failed to get jwtToken: status=${d.statusCode}`);let g=d.data.trim();if(!om(g))throw new Error("Invalid jwtToken format");return g}},am=new tl;var rl=class{async checkJwtToken(e,t,n=!1){let o={refresh:String(n),jwtToken:e},i=`${t}/${Y.JWT_TOKEN_CHECK_PATH}`,s=await L.get(i,{headers:o});if(s.statusCode!==200)throw new Error(`Failed to check jwtToken: ${s.statusCode}`);return L.parseJson(s)}async refreshToken(e){let t=await Bt.loadJwtToken();return t?this.refreshTokenWithToken(t,e):null}async refreshTokenWithToken(e,t){try{let n={refresh:"true",jwtToken:e},o=`${t}/${Y.JWT_TOKEN_CHECK_PATH}`,i=await L.get(o,{headers:n});if(i.statusCode!==200)return null;let s=L.parseJson(i);return!s.status||!s.userInfo?null:{accessToken:s.userInfo.accessToken,refreshToken:s.userInfo.refreshToken??""}}catch(n){let o=n;return console.error(`Failed to refresh token: ${o.code??""} ${o.message??""}`),null}}async getUserInfoFromJwt(e,t,n=!1){let o=await this.checkJwtToken(e,t,n);return!o.status||!o.userInfo||!o.userInfo.accessToken?(u("jwtToken invalid."),await Bt.clearToken(),null):{userId:o.userInfo.userId??"",userName:o.userInfo.name??"",accessToken:o.userInfo.accessToken,refreshToken:o.userInfo.refreshToken??"",jwtToken:e,countryCode:o.userInfo.nationalCode,language:im(o.userInfo.nationalCode),isRealName:String(o.userInfo.realName)==="true"}}async fetchUserInfo(e,t){let n=await Bt.loadJwtToken();return n?this.getUserInfoFromJwt(n,e,t):null}},Dn=new rl;import SP from"querystring";import{spawn as EP}from"child_process";function cm(r){try{let e=JSON.stringify({signInfo:[{agrType:Qn.PRIVACY_ID,country:"CN",language:"zh_CN",isAgree:!0}]}),t=SP.stringify({nsp_svc:"as.user.sign",access_token:r,request:e}),n=EP("curl",["-s","-X","POST",Qn.TMS_URL,"-H","Content-Type: application/x-www-form-urlencoded","-d",t,"--max-time","5","-o","/dev/null","-w","%{http_code}"],{detached:!0,stdio:["ignore","pipe","ignore"]});n.unref(),n.stdout?.on("data",o=>{let i=o.toString().trim();i==="200"?u("Agreement sign reported successfully"):u(`Agreement sign failed: HTTP ${i}`)}).on("error",()=>{})}catch(e){u(`Agreement sign error: ${e.message}`)}}var gs=class{config;server=null;constructor(e){this.config={...eo,...e}}updateConfig(e){this.config={...this.config,...e}}getConfig(){return{...this.config}}async login(){try{u(`Login started, isDevecoCodeAuth: ${Ue()}`);let e=this.generateClientSecret();this.server=new us(e,Y.CN_LOGIN_URL,this.config.successRedirectUrl,this.config.failedRedirectUrl),await this.server.start(),u(`Local auth server started on port ${this.server.getPort()}`),await this.openLoginPage(this.server.getPort(),e),u("Browser opened for authentication");let t=await this.server.waitForCallback(this.config.timeout);if(u(`Callback received: siteId=${t.siteId}`),t.siteId!=="1")throw new xe("Non-China accounts are not supported.");let n=await am.getJwtToken(t.tempToken,t.siteId,Y.CN_LOGIN_URL,this.config.tempTokenCheckUrl,this.config.appId);u("JWT token received");let o=await Dn.getUserInfoFromJwt(n,Y.CN_LOGIN_URL);if(!o)throw new xe("Login failed: failed to get user info");return u(`User info received: ${o.userName}`),await Bt.saveJwtToken(n),u("JWT token saved"),cm(o.accessToken),o}finally{this.server&&(await this.server.stop(),this.server=null)}}async isLoggedIn(){return await this.getUserInfo(!0)!==null}async logout(){let e=await Bt.loadJwtToken();if(!e)return!1;let n=`${Y.CN_LOGIN_URL}/${this.config.logoutUrl}?jwtToken=${e}`;try{await L.post(n,{timeout:5e3})}catch{u("Logout: server notification failed, local token cleared")}finally{await Bt.clearToken()}return!0}async getUserInfo(e=!0){return Dn.fetchUserInfo(Y.CN_LOGIN_URL,e)}generateClientSecret(){return lm.randomUUID().replace(/-/g,"")}async openLoginPage(e,t){let o=`${Y.CN_LOGIN_URL}/${this.config.authUrl}?port=${e}&appid=${this.config.appId}&code=${t}`;await rm(o)}async refreshToken(){return Dn.refreshToken(Y.CN_LOGIN_URL)}},Ne=new gs;function CP(){return Ue()?"Not logged in. Please login via DevEco Code first.":"Please run `devecocli auth login` first."}function kP(r){if(r==null||typeof r!="object")return[];let e=r;if(e.ret&&e.ret.code!==0)throw new Error(`team list request failed: code=${e.ret.code}${e.ret.msg?`, msg=${e.ret.msg}`:""}`);return Array.isArray(e.teams)?e.teams.filter(t=>typeof t=="object"&&t!==null).map(t=>({id:String(t.id??""),upSiteId:Number(t.upSiteId??0),name:String(t.name??""),countryCode:String(t.countryCode??""),siteId:Number(t.siteId??0),userType:Number(t.userType??0),lastLoginTime:String(t.lastLoginTime??""),isMirror:t.isMirror===!0})).filter(t=>t.id.length>0):[]}var ys=class{config;constructor(e){this.config={...eo,...e}}updateConfig(e){this.config={...this.config,...e}}async listTeams(){let e=await Dn.fetchUserInfo(Y.CN_LOGIN_URL,!0);if(!e)throw new xe(CP());let t=await this.fetchTeamList(e.accessToken,e.userId),n=kP(t);return{userId:e.userId,teamList:n}}async fetchTeamList(e,t){let n=this.config.agcTeamListUrl,o;try{o=await L.get(n,{headers:{oauth2Token:e,uid:t,source:"cli",lang:zr.CHINA},timeout:15e3})}catch(i){let s=i.message;throw s.includes("401")?new xe("Token expired. Run `devecocli auth login` again."):new Error(`Network error while listing teams: ${s}`,{cause:i})}if(o.statusCode!==200)throw new Error(`Failed to list teams: HTTP ${o.statusCode}`);return typeof o.data=="string"?JSON.parse(o.data):o.data}},dm=new ys;async function ur(){return dm.listTeams()}async function vs(r,e,t){let n=Date.now(),o=!0,i=null;try{await e()}catch(s){o=!1,i=q(s);let a=t?.(s);if(a)throw a}finally{let s={duration_ms:Date.now()-n,success:o,error_code:i};await I.track(r,s)}}function AP(r){if(r.length===0)return Rt("No teams found for the current user.");let e=["Id","Name"],t=r.map(s=>[s.id,s.name]),n=e.map((s,a)=>Math.max(s.length,...t.map(c=>c[a].length))),o=s=>s.map((a,c)=>a.padEnd(n[c])).join(" "),i=n.map(s=>"-".repeat(s)).join(" ");return[o(e),i,...t.map(o)].join(`
1298
+ `)}function DP(){return new Promise(r=>{let e=um.createInterface({input:process.stdin,output:process.stdout});e.question("",()=>{e.close(),r()})})}var jo=new IP("auth").description("Authentication commands (login, logout, status, team)");jo.command("login").description("Log in to your Huawei Developer account").action(async()=>{if(Ue()){console.log(nl("Login is managed by DevEco Code. Login from DevEco Code instead."));return}let r={event:b.CommandExecuted,args:["auth","login"]};await vs(r,async()=>{let e=await Ne.getUserInfo();if(e){console.log(Rt(`Already logged in, User Name:${e.userName}`));return}console.log(Rt("Starting login process...")),console.log(Rt("Press Enter to open browser for login...")),await DP();let t=await Ne.login();console.log(Rt(`Login successful. Logged in as ${t.userName}.`))},e=>{throw e instanceof xe||(e instanceof Error?e.message:String(e)).includes("Network connection failed")?e:new Error("Login failed",{cause:e})})});jo.command("logout").description("Log out of your Huawei Developer account").action(async()=>{if(Ue()){console.log(nl("Login is managed by DevEco Code. Log out from DevEco Code instead."));return}let r={event:b.CommandExecuted,args:["auth","logout"]};await vs(r,async()=>{let e=await Ne.logout();console.log(e?Rt("Logout successful"):Rt("Already logged out."))},e=>new Error("Logout failed",{cause:e}))});jo.command("status").description("Show the currently logged-in user").action(async()=>{let r={event:b.CommandExecuted,args:["auth","status"]};await vs(r,async()=>{let e=await Ne.getUserInfo();if(!e){console.log(Rt("Not logged in"));return}console.log(Rt(`Current user: ${e.userName}`))},()=>{console.log(Rt("Not logged in"))})});var RP=jo.command("team").description("Team-related commands");RP.command("list").description("List team accounts the current user has joined").action(async()=>{let r={event:b.CommandExecuted,args:["auth","team","list"]};await vs(r,async()=>{let e=await ur();console.log(AP(e.teamList))},e=>{if(e instanceof xe){console.log(nl(e.message));return}throw new Error("Failed to list teams",{cause:e})})});var pm=jo;import{Command as VP}from"commander";import{green as GP,red as Bo,cyan as Mm,yellow as Om,dim as _m}from"colorette";import qP from"p-limit";import TP from"ora";var Ke=class{spinner=null;isRunning=!1;start(e){this.spinner?this.spinner.text=e:this.spinner=TP(e),this.spinner.start(),this.isRunning=!0}stop(){this.spinner&&this.isRunning&&(this.spinner.stop(),this.isRunning=!1)}succeed(e){this.spinner&&(this.spinner.succeed(e),this.isRunning=!1)}fail(e){this.spinner&&(this.spinner.fail(e),this.isRunning=!1)}};import*as mm from"fs";import*as ol from"path";import{homedir as fm}from"os";function pr(r){if(!/^[A-Za-z0-9._-]+$/.test(r)||r==="."||r==="..")throw new Error(`Unsafe skill name: ${JSON.stringify(r)}`)}var hm=["DevEco"];async function ws(){let r=await L.get(tt.TAGS_API_URL),t=bs(r,"Tags API").data.skill.filter(n=>n.name==="HMOS");if(t.length===0)throw new Error("No HMOS tag found.");return t.map(n=>n.id)}async function xP(r){let e=[],t=tt.DEFAULT_PAGE_SIZE,n=tt.DEFAULT_MAX_PAGES,o=1;for(;o<=n;){let i=await L.post(tt.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:o,pageSize:t,tagIds:[r]}}),s=bs(i,"Skills API");if(e.push(...s.data.list),s.data.list.length<t)break;o++}return e}async function il(r){let e=new Map,t=r.map(o=>xP(o)),n=await Promise.all(t);for(let o of n)for(let i of o)e.has(i.id)||e.set(i.id,i);return Array.from(e.values()).filter(o=>o.tags?.every(i=>!hm.includes(i.name)))}async function LP(r,e){let t=await L.post(tt.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:1,pageSize:tt.DEFAULT_PAGE_SIZE,keyword:r,tagIds:[e]}});return bs(t,"Skills API").data.list}async function sl(r,e){let t=new Map,n=e.map(i=>LP(r,i)),o=await Promise.all(n);for(let i of o)for(let s of i)t.has(s.id)||t.set(s.id,s);return Array.from(t.values()).filter(i=>i.tags?.every(s=>!hm.includes(s.name)))}function gm(r){pr(r);let e=[];for(let[,t]of Object.entries(ft)){let n=S.ensurePathWithinRoot(ol.join(fm(),t.path),ol.join(fm(),t.path,r));mm.existsSync(n)&&e.push(t.displayName)}return e.sort()}function bs(r,e){if(r.statusCode!==200)throw new Error(`${e} Request failed: HTTP ${r.statusCode}`);let t=L.parseJson(r);if(t.code!==tt.SUCCESS_CODE)throw new Error(`${e} Error returned: ${t.code} - ${t.message}`);return t}async function ym(r){pr(r);let e=`${tt.SKILL_API_BASE}/${r}/checksum`,t=await L.get(e);return bs(t,"Checksum API").data}import NP from"adm-zip";import MP from"crypto";import{timingSafeEqual as OP}from"crypto";import wm from"fs";import ae from"path";import{fileURLToPath as _P}from"url";import{homedir as bm}from"os";import{red as jP}from"colorette";var Vt=wm.promises;function vm(r,e){let t=ae.resolve(e),n=ae.resolve(r),o=ae.relative(n,t);if(o.startsWith("..")||ae.isAbsolute(o))throw new Error(`Path traversal detected: ${e}.`)}function al(r){return ae.isAbsolute(r)?r:ae.resolve(process.cwd(),r)}function FP(r){return MP.createHash("sha256").update(r).digest("hex")}async function $P(r,e){if(r.length!==e.size)throw new Error("Skill zip integrity verification failed: Size mismatch");let n=FP(r),o=e.sha256.toLowerCase(),i=Buffer.from(n,"hex"),s=Buffer.from(o,"hex");if(i.length!==s.length||!OP(i,s))throw new Error("Skill zip integrity verification failed: SHA256 mismatch")}async function Sm(r){pr(r);let e=`${tt.SKILL_API_BASE}/${r}/install?format=zip`,t=await L.getBinary(e),n=await ym(r);return await $P(t,n),t}async function HP(r,e,t){pr(t);let n=new NP(r),o=n.getEntries();try{await Vt.stat(e)}catch{await Vt.mkdir(e,{recursive:!0})}let i=ae.join(e,t);vm(e,i);for(let s of o){let a=ae.join(i,s.entryName);vm(i,a)}n.extractAllTo(i,!0)}async function cl(r){let e=ft[r];if(!e)throw new Error(`Invalid agent: ${r}, Valid options are: ${Object.keys(ft).join(", ")}`);let t=ae.join(bm(),e.path.replace("/skills",""));try{return await Vt.access(t),!0}catch{return!1}}function ll(r){let e=ft[r];return ae.join(bm(),e.path)}function UP(r){let e=ft[r];if(!e)throw new Error(`Invalid agent: ${r}, Valid options are: ${Object.keys(ft).join(", ")}`);return e}function dl(r,e){let t=UP(e),n="projectPath"in t?t.projectPath:ae.join("."+e,"skills");return ae.join(r,n)}async function BP(r,e,t){pr(e);let n=ae.join(r,e);try{if(await Vt.access(n),t)await Vt.rm(n,{recursive:!0,force:!0});else return console.log(`Skill ${e} exists in ${r}.`),{skillDir:n,shouldSkip:!0}}catch{}return{skillDir:n,shouldSkip:!1}}async function ul(r,e,t){await HP(r,e,t),console.log(`Skill ${t} installed to ${ae.join(e,t)}.`)}async function pl(r,e,t){let n=ae.join(e,t);await Vt.mkdir(n,{recursive:!0});let o=ae.join(n,ae.basename(r));await Vt.copyFile(r,o),console.log(`Skill ${t} installed to ${n}.`)}function Em(r,e,t=""){let n=e instanceof Error?e.message:t;return console.log(jP(`Faild to exute operation for skill "${r}": ${n}`)),{success:!1,error:n}}async function Rn(r,e,t,n){try{let o=await e(),{shouldSkip:i}=await BP(o,r,n);return i?{success:!0,skipped:!0}:(await t(o),{success:!0})}catch(o){return Em(r,o,"Installation failed")}}async function fl(r,e){try{pr(r);let t=await e(),n=ae.join(t,r);try{await Vt.access(n)}catch{return console.log(`Skill ${r} not found in ${t}`),{success:!0,skipped:!0}}return await Vt.rm(n,{recursive:!0,force:!0}),console.log(`Skill ${r} removed from ${n}.`),{success:!0}}catch(t){return Em(r,t,"Removal failed")}}async function Pm(r,e,t,n=!1){return Rn(r,()=>ll(e),o=>ul(t,o,r),n)}async function Cm(r,e,t,n=!1){return Rn(r,()=>t,o=>ul(e,o,r),n)}async function km(r,e,t,n,o=!1){return Rn(r,()=>dl(t,n),i=>ul(e,i,r),o)}async function Im(r,e,t,n=!1){return Rn(r,()=>ll(t),o=>pl(e,o,r),n)}async function Am(r,e,t,n,o=!1){return Rn(r,()=>dl(t,n),i=>pl(e,i,r),o)}async function Dm(r,e,t,n=!1){return Rn(r,()=>t,o=>pl(e,o,r),n)}async function ml(r,e){return fl(r,()=>ll(e))}async function Rm(r,e){return fl(r,()=>e)}async function Tm(r,e,t){return fl(r,()=>dl(e,t))}function xm(){let e=ae.dirname(_P(import.meta.url));for(;;){let t=ae.join(e,"SKILL.md");if(wm.existsSync(t))return t;let n=ae.dirname(e);if(n===e)break;e=n}throw new Error("SKILL.md not found in deveco-cli package. Reinstall deveco-cli.")}import Lm from"fs";import{cyan as WP}from"colorette";async function Fo(r){if(!r)return[];let e=[],t=r.split(",").map(n=>n.trim());for(let n of t){if(!await cl(n))throw new Error(`Agent ${n} not found`);e.push(n)}return e}async function $o(){let r=[];for(let e of Object.keys(ft))await cl(e)&&r.push(e);return r}function Ho(r){let e=r.filter(o=>o.success&&!o.skipped).length,t=r.filter(o=>o.skipped).length,n=r.filter(o=>!o.success).length;console.log(),console.log(WP("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${n}`),n>0&&(process.exitCode=1)}function fr(r,e,t){if(!Lm.existsSync(r)){if(t)return;throw new Error(`${e} "${r}" not found`)}if(!Lm.statSync(r).isDirectory())throw new Error(`"${r}" is not a directory`)}function Uo(r,e,t){if(r&&(e||t))throw new Error("Cannot use `--path` with `--project` or `--agent`");return{resolvedPath:r?al(r):void 0,resolvedProject:e?al(e):void 0}}async function Ss(r,e,t){let n=[],o=[],i;if(e?i=e:t&&r.agent?o=(await Fo(r.agent)).map(a=>({project:t,agent:a})):t?o=(await $o()).map(a=>({project:t,agent:a})):r.agent?n=await Fo(r.agent):n=await $o(),!i&&n.length===0&&o.length===0)throw new Error("No agents found. Install an AI agent (cursor, opencode, etc.) or use `--path` for a custom location.");return{agents:n,projectAgents:o,customPath:i}}var jm="deveco";async function zP(r){let e=await ws();if(r.all)return(await il(e)).map(n=>n.enName);{let n=(await sl(r.skill,e)).find(o=>o.enName===r.skill);if(!n)throw new Jr("errorCode",`Skill "${r.skill}" not found`);return[n.enName]}}async function JP(r,e,t,n){let o=[];if(t.customPath){let i=await Cm(r,e,t.customPath,n);return o.push(i),o}for(let i of t.agents){let s=await Pm(r,i,e,n);o.push(s)}for(let{project:i,agent:s}of t.projectAgents){let a=await km(r,e,i,s,n);o.push(a)}return o}function YP(r){if(r.all&&r.skill)throw new Jr("errorCode","`--all` and `--skill` cannot be specified together.");if(!r.all&&!r.skill)throw new Jr("errorCode","Must specify `--all` or `--skill`");let{resolvedPath:e,resolvedProject:t}=Uo(r.path,r.project,r.agent);return t&&fr(t,"Project directory",r.force),e&&fr(e,"Directory",r.force),{resolvedPath:e,resolvedProject:t}}function KP(r,e,t){return!!(e||t||r.path||r.project||r.agent)}function XP(){return{agents:[jm],projectAgents:[],customPath:void 0}}async function ZP(r,e,t){let n=Ue()&&!KP(r,e,t)?XP():await Ss(r,e,t);return{skillNames:await zP(r),targets:n}}async function QP(r,e,t,n){let o=[],i=0,s=r.length,a=qP(5),c=r.map(l=>a(()=>eC(l)));for(let l=0;l<r.length;l++){let d=r[l],g=s>1?` (${l+1}/${s})`:"";n.start(`Installing ${d}${g}...`);let v=await c[l];if(!v.success){n.fail(),console.log(Bo(`${d}: Download failed - ${v.error}`)),o.push({success:!1});continue}i+=v.buffer.length,n.stop();let P=await JP(d,v.buffer,e,t);o.push(...P)}return{results:o,diskBytes:i}}async function eC(r){try{let e=await Sm(r);return{name:r,buffer:e,success:!0}}catch(e){let t=e instanceof Error?e.message:"unknown error";return{name:r,error:t,success:!1}}}async function tC(r){let e=new Ke;try{e.start("Installing skill...");let{resolvedPath:t,resolvedProject:n}=YP(r),{skillNames:o,targets:i}=await ZP(r,t,n),{results:s,diskBytes:a}=await QP(o,i,r.force||!1,e);return e.stop(),Ho(s),{diskBytes:a,results:s}}catch(t){throw e.stop(),t}}function Fm(r){let e=r.length,t=r.filter(s=>s.success&&!s.skipped).length,n=r.filter(s=>s.skipped).length,o=r.filter(s=>!s.success).length,i=[...new Set(r.filter(s=>!s.success&&typeof s.error=="string").map(s=>rC(s.error)))];return{opTotal:e,opSuccess:t,opFailed:o,opSkipped:n,...i.length>0?{failedErrors:i}:{}}}function rC(r){let e=/^([A-Za-z_][A-Za-z0-9_-]*)/.exec(r.trim());return e?e[1].slice(0,32):"error"}var Jr=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function nC(r){let e=r;return r instanceof Jr?r.code:e.code??e.name??"UnknownError"}function Ps(r,e={}){return["skills",r,...e.all?["--all"]:[],...e.long?["--long"]:[],...e.skill?["--skill"]:[],...e.force?["--force"]:[],...e.agent?["--agent",e.agent]:[],...e.project?["--project"]:[],...e.path?["--path"]:[]]}async function Cs(r,e,t){let n=Date.now(),o=!0,i=null,s={};try{s=await e()}catch(a){throw o=!1,i=nC(a),a}finally{let a={event:b.SkillOperation,subAction:r,args:t,...s};await I.track(a,{duration_ms:Date.now()-n,success:o,error_code:i})}}function oC(r){return Cs("add",async()=>{let{diskBytes:e,results:t}=await tC(r);return{diskUsage:Q(e),...r.skill?{skillName:r.skill}:{},...Fm(t)}},Ps("add",r))}function iC(r){let{resolvedPath:e,resolvedProject:t}=Uo(r.path,r.project,r.agent);return t&&fr(t,"Project directory"),e&&fr(e,"Directory"),{resolvedPath:e,resolvedProject:t}}async function sC(r,e){let t=new Ke;try{t.start("Removing skill...");let{resolvedPath:n,resolvedProject:o}=iC(e);t.stop();let i=await aC(e,r,n,o);return t.stop(),Ho(i),i}catch(n){throw t.stop(),n}}function Nm(r,e=""){if(r.length===0)throw new Jr("errorCode",`No agents found. Install an AI agent (cursor, opencode, etc.) ${e}`)}async function Es(r,e){let t=[];for(let n of e){let o=n.type==="agent"?await ml(r,n.agent):await Tm(r,n.project,n.agent);t.push(o)}return t}async function aC(r,e,t,n){if(t)return[await Rm(e,t)];if(n&&r.agent){let a=(await Fo(r.agent)).map(c=>({type:"projectAgent",agent:c,project:n}));return Es(e,a)}if(n){let s=await $o();Nm(s);let a=s.map(c=>({type:"projectAgent",agent:c,project:n}));return Es(e,a)}if(r.agent){let a=(await Fo(r.agent)).map(c=>({type:"agent",agent:c}));return Es(e,a)}if(Ue())return[await ml(e,jm)];let o=await $o();Nm(o,"or use --path for a custom location.");let i=o.map(s=>({type:"agent",agent:s}));return Es(e,i)}var Wo=new VP("skills").description("Manage HarmonyOS skills");Wo.command("list").description("List all available HarmonyOS skills").option("-l, --long","Show detailed information including description and installation status").action(async r=>{try{await Cs("list",async()=>{let e=new Ke;try{e.start("Fetching skills...");let t=await ws(),n=await il(t);if(n.length===0)return e.stop(),console.log(Om("No skills available.")),{resultTotal:0};e.succeed(`Fetched ${n.length} skills`);for(let o of n)if(r.long){console.log(Mm(o.enName)),console.log(_m(o.description));let i=gm(o.enName);i.length>0&&console.log(GP(`Installed for: ${i.join(", ")}`)),console.log()}else console.log(o.enName);return{resultTotal:n.length}}finally{e.stop()}},Ps("list",r))}catch(e){console.error(Bo(e.message)),process.exit(1)}});Wo.command("find <keyword>").description("Search skills by keyword").action(async r=>{try{await Cs("find",async()=>{let e=new Ke;try{e.start("Searching skills...");let t=await ws(),n=await sl(r,t);if(n.length===0)return console.log(Om(`No skills found matching '${r}'.`)),e.stop(),{resultTotal:0,queryLen:r.length,keyword:r};e.succeed(`Found ${n.length} skills.`);for(let o of n)console.log(Mm(o.enName)),console.log(_m(o.description)),console.log();return{resultTotal:n.length,queryLen:r.length,keyword:r}}finally{e.stop()}},Ps("find"))}catch(e){console.error(Bo(e.message)),process.exit(1)}});Wo.command("add").description("Install skills to AI agents").option("--all","Install all available skills").option("--agent <agents>","Target agents, comma-separated; Omit to install to all available agents").option("--skill <skill-name>","Name of the skill to install").option("-f, --force","Overwrite an existing skill installation").option("--project <path>","Project root directory for skill installation").option("--path <path>","Path to install the skill directly (cannot be used with --project or --agent)").action(async r=>{try{await oC(r)}catch(e){console.error(Bo(e.message)),process.exit(1)}});Wo.command("remove").description("Remove an installed skill from AI agents").requiredOption("--skill <skill-name>","Name of the skill to remove").option("--agent <agents>","Target agents, comma-separated.Omit to remove from all available agents").option("--project <path>","Project root directory for skill removal").option("--path <path>","Path for skill removal").action(async r=>{try{await Cs("remove",async()=>{let e=await sC(r.skill,r);return{skillName:r.skill,...Fm(e)}},Ps("remove",r))}catch(e){console.error(Bo(e.message)),process.exit(1)}});var $m=Wo;import{Command as cC,InvalidArgumentError as ks}from"commander";import{cyan as hl,red as Um}from"colorette";import lC from"ora";function dC(r){return["log",...r.device?["--device"]:[],...r.crash?["--crash"]:[],...r.level?["--level"]:[],...r.bundleName?["--bundle-name"]:[],...r.keyword?["--keyword"]:[],...r.tail!==void 0?["--tail"]:[],...r.from!==void 0?["--from"]:[],...r.to!==void 0?["--to"]:[],...r.follow?["--follow"]:[]]}function uC(r){return{event:b.CommandExecuted,args:dC(r),logType:r.crash?"crash":"common",level:r.level??"ALL",bundleName:r.bundleName??"ALL"}}function pC(r){return r instanceof w?r.traceMessage:r instanceof Error?r.code??r.name:"UnknownError"}async function fC(r,e){let t=Date.now(),n=!0,o=null;try{await e()}catch(i){n=!1,o=pC(i),console.error(Um(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(r,i).catch(()=>{})}}function mC(r){try{return S.parsePositiveInteger(r,"tail")}catch{throw new ks("`tail` must be a positive integer.")}}function Hm(r,e){try{return S.parseDurationToSeconds(r,e)}catch{throw new ks(`${e} must be a valid duration string (e.g.,30s, 5m or 2.5m).Supported units: s and m.when specified in seconds(with \`s\` or as a raw number), the value must be an integer.`)}}function hC(r){try{return S.assertHilogLevel(r),r}catch{throw new ks("`level` must be one of: D, I, W, E, F.")}}function gC(r){try{return S.assertBundleNameStrict(r),r}catch(e){throw new ks(e.message)}}function yC(r){if(r.to&&r.follow)throw new Error("`--to` cannot be used with `--follow`.")}async function vC(r,e,t,n,o){return t.crash?await r.getCrashLog(e,t.bundleName):await r.getHilog(e,{level:t.level,bundleName:t.bundleName,keyword:t.keyword,isFollow:!!t.follow,tail:t.tail,fromSeconds:n,toSeconds:o})}function wC(r,e,t,n){let o=S.filterLogsByRelativeWindow(r,t,n);return e.tail?S.getLastLines(o,e.tail):o}var bC=new cC("log").description("Obtain device application logs").configureOutput({outputError:(r,e)=>e(Um(r))}).option("--device <device>","Target device (name or serial)").option("--crash","Only obtain crash logs").option("--level <level>","Log level filter: D, I, W, E, F",hC).option("--bundle-name <bundle-name>","Filter by application bundle name",gC).option("--keyword <keyword>","Keyword filter").option("--tail <num>","Show only the latest N log lines",mC).option("--from <start>","Start offset from now, e.g. 30s, 5m, 2.5m, or 120",r=>Hm(r,"from")).option("--to <end>","End offset from now, e.g. 30s, 5m, 2.5m, or 120",r=>Hm(r,"to")).option("--follow","Follow the log stream in real-time.").action(async r=>{await fC(uC(r),()=>SC(r))});async function SC(r){let e=lC({text:"Preparing log request\u2026",color:"cyan"}),t=()=>{e.stop(),e.clear()};e.start();try{yC(r);let n=r.from,o=r.to,i=await A.new(),s=new or(i),a=await s.selectDevice(r.device);if(!a)throw new w("No active devices found.","No active devices found.");u(hl(`deviceId: ${a}`)),u(hl(`type: ${r.crash?"Crash logs":"Common logs"}`)),u(hl("Obtaining logs ...")),e.text="Fetching logs\u2026",r.follow&&t();let c=await vC(s,a,r,n,o);t(),r.crash&&c&&(c=wC(c,r,n,o)),c&&console.log(c)}finally{t()}}var Bm=bC;import Go from"path";import Gt from"fs";import vl from"process";import Xm from"os";import{Command as MC}from"commander";import{green as zm,red as gl,cyan as OC,yellow as Jm}from"colorette";import fe from"fs-extra";import H from"path";import*as Vm from"os";import{fileURLToPath as EC}from"url";var Wm={17:{sdkVersion:"5.0.5(17)",modelVersion:"5.0.5"},18:{sdkVersion:"5.1.0(18)",modelVersion:"5.1.0"},19:{sdkVersion:"5.1.1(19)",modelVersion:"5.1.1"},20:{sdkVersion:"6.0.0(20)",modelVersion:"6.0.0"},21:{sdkVersion:"6.0.1(21)",modelVersion:"6.0.1"},22:{sdkVersion:"6.0.2(22)",modelVersion:"6.0.2"},23:{sdkVersion:"6.1.0(23)",modelVersion:"6.1.0"},24:{sdkVersion:"6.1.1(24)",modelVersion:"6.1.1"}},PC=["build-profile.json5","AppScope/resources/base/media/layered_image.json","entry/src/main/resources/base/media/layered_image.json"];function CC(){let r=import.meta.url,e=EC(r);if(e.includes("dist")){let i=H.dirname(e),s=H.dirname(i);return H.join(s,"templates","application")}let t=H.dirname(e),n=H.dirname(t),o=H.dirname(n);return H.join(o,"templates","application")}function Gm(r,e){fe.mkdirSync(e,{recursive:!0});for(let t of fe.readdirSync(r,{withFileTypes:!0})){let n=H.join(r,t.name),o=H.join(e,t.name);if(t.isDirectory()){Gm(n,o);continue}fe.existsSync(o)||(fe.mkdirSync(H.dirname(o),{recursive:!0}),fe.copyFileSync(n,o))}}function Vo(r,e){let t=fe.readFileSync(r,"utf-8"),n=t;for(let[o,i]of e)n=n.replaceAll(o,i);n!==t&&fe.writeFileSync(r,n,"utf-8")}function kC(r){if(Wm[r])return Wm[r];if(r>=26){let e=`${r}.0.0`;return{sdkVersion:e,modelVersion:e}}}function IC(r,e){if(e===22)return;let t=kC(e);t&&(Vo(H.join(r,"build-profile.json5"),[["6.0.2(22)",t.sdkVersion]]),Vo(H.join(r,"hvigor","hvigor-config.json5"),[["6.0.2",t.modelVersion]]),Vo(H.join(r,"oh-package.json5"),[["6.0.2",t.modelVersion]]))}function AC(r){return PC.filter(t=>!fe.existsSync(H.join(r,t))).length===0}function DC(){return Buffer.from([137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,1,0,0,0,1,8,2,0,0,0,144,119,83,222,0,0,0,12,73,68,65,84,8,215,99,248,255,255,255,0,5,254,2,254,0,0,0,0,73,69,78,68,174,66,96,130])}function RC(r){return Vm.platform()==="darwin"?H.join(r,"Contents","plugins","codegenie-plugin","previewProjectTemplate"):H.join(r,"plugins","codegenie-plugin","previewProjectTemplate")}function TC(r,e){let t=RC(e);if(!fe.existsSync(t))return!1;let n=[["AppScope/resources/base/media/background.png","AppScope/resources/base/media/background.png"],["AppScope/resources/base/media/foreground.png","AppScope/resources/base/media/foreground.png"],["entry/src/main/resources/base/media/background.png","entry/src/main/resources/base/media/background.png"],["entry/src/main/resources/base/media/foreground.png","entry/src/main/resources/base/media/foreground.png"],["entry/src/main/resources/base/media/startIcon.png","entry/src/main/resources/base/media/startIcon.png"]];for(let[o,i]of n){let s=H.join(t,o),a=H.join(r,i);fe.existsSync(s)&&(fe.mkdirSync(H.dirname(a),{recursive:!0}),fe.copyFileSync(s,a))}return!0}function xC(r){let e=DC(),t=["AppScope/resources/base/media/background.png","AppScope/resources/base/media/foreground.png","entry/src/main/resources/base/media/background.png","entry/src/main/resources/base/media/foreground.png","entry/src/main/resources/base/media/startIcon.png"];for(let n of t){let o=H.join(r,n);fe.mkdirSync(H.dirname(o),{recursive:!0}),fe.writeFileSync(o,e)}}function LC(r,e){e&&TC(r,e)||xC(r)}function NC(r){let e=[H.join(r,"gitignore.txt"),H.join(r,"entry","gitignore.txt")];for(let t of e)if(fe.existsSync(t)){let n=H.dirname(t);fe.renameSync(t,H.join(n,".gitignore"))}}function qm(r,e,t,n,o){let i=CC();if(!fe.existsSync(i))throw new Error(`Template directory not found: ${i}`);fe.mkdirSync(r,{recursive:!0}),Gm(i,r),NC(r),LC(r,o),Vo(H.join(r,"AppScope","resources","base","element","string.json"),[["MyApplication",e]]),Vo(H.join(r,"AppScope","app.json5"),[["com.example.myapplication",t]]),IC(r,n);let s=AC(r);if(!s)throw new Error("Template integrity check failed.");return{projectRoot:r,appName:e,bundleName:t,apiLevel:n,verified:s}}function _C(r){if(r.length<1||r.length>200)throw new me("errorCode",`App name length must be 1-200 characters. Current: ${r.length}`);if(!/^[a-zA-Z][a-zA-Z0-9_]*$/.test(r))throw new me("errorCode","Application name must start with a letter (a-z, A-Z) and contain only letters, digits, and underscores")}function Zm(r){if(Xm.platform()==="win32"){let t=r.replace(/\\/g,"/");return t=t.replace(/\/+/g,"/"),t}return r.replace(/\/+/g,"/")}function Ym(r){if(r.length===0)throw new me("errorCode","Project path cannot be empty.");if(r.length>120)throw new me("errorCode",`Project path cannot exceed 120 characters (current: ${r.length}).`);let e=Xm.platform();if(!(e==="win32"?/^[a-zA-Z0-9._\-:\\/]+$/:/^[a-zA-Z0-9._\-/]+$/).test(r)){let i=e==="win32"?"letters, digits, dots, underscores, hyphens, colons, slashes (/) or backslashes (\\)":"letters, digits, dots, underscores, hyphens or slashes (/)";throw new me("errorCode",`Project path can only contain ${i}.`)}let n=Zm(r);if(/[\u4e00-\u9fff]/.test(n))throw new me("errorCode","Project path cannot contain Chinese characters.");if(n.endsWith("."))throw new me("errorCode","Project path cannot end with a dot (.)")}function jC(r){let e=r,t=Go.parse(r).root;for(;e!==t;){if(Gt.existsSync(e))return e;e=Go.dirname(e)}return Gt.existsSync(t)?t:null}function Km(r){let e=jC(r);if(!e)throw new me("errorCode",`No existing parent directory found for '${r}'. Cannot create project directory.`);try{Gt.accessSync(e,Gt.constants.W_OK)}catch{throw new me("errorCode",`No write permission for directory '${e}'. Cannot create project here.`)}let t=Go.join(e,`.deveco_write_test_${Date.now()}`);try{Gt.writeFileSync(t,"test"),Gt.unlinkSync(t)}catch{throw new me("errorCode",`No write permission for directory '${e}'. Cannot create project here.`)}}function FC(r){return`com.example.${r.toLowerCase()}`}function $C(r,e){if(e){let o=Zm(e),i=Go.resolve(o);if(Gt.existsSync(i)){if(Gt.readdirSync(i).length>0)throw new me("errorCode",`Directory '${i}' is not empty. Cannot create project here.`)}else Km(i);return i}let t=vl.cwd(),n=Go.join(t,r);if(Gt.existsSync(n))throw new me("errorCode",`Directory '${n}' already exists. Cannot create project here.`);return Km(n),n}function HC(r,e){let t=e?.getMaxApiLevel(),n=23;if(r.apiLevel){let o=Number(r.apiLevel);if(!Number.isInteger(o)||o<17)throw new me("errorCode",`Invalid API version ${r.apiLevel}. API version 17 or higher is required.`);if(t!==void 0){if(o>t)throw new me("errorCode",`Invalid API version ${r.apiLevel}. Your SDK supports API version 17-${t}`)}else if(o>n)throw new me("errorCode",`Invalid API version ${r.apiLevel}. Without DevEco Studio, supported range is API version 17-${n}`);return o}return t!==void 0?t:23}async function UC(){try{return await A.new()}catch(r){console.error(Jm(`DevEco Studio not found: ${r.message}`)),console.log(Jm("Use placeholder API level instead."));return}}var me=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};async function yl(r,e,t,n){let o={event:b.CommandExecuted,args:["create"],apiLevel:n?.apiLevel??null},i={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(o,i).catch(()=>{})}function BC(r){console.log(`
1299
+ `+zm("Project created successfully.")),console.log(`Project root: ${r.projectRoot}`),console.log(`App name: ${r.appName}`),console.log(`Bundle name: ${r.bundleName}`),console.log(`API level: ${r.apiLevel}`),console.log(zm("Template integrity check passed."))}var WC=new MC("create").description("Scaffold a new HarmonyOS application project").option("--project-path <path>","Project directory path (default: ./<app-name>)").option("--app-name <name>","Application name").option("--bundle-name <bundle>","Bundle name (auto-derived as com.example.<app-name> if omitted)").option("--api-level <level>","API level (auto-detected from SDK if omitted; minimum: 17)").action(async r=>{let e=Date.now();try{r.appName||(console.error(gl("Error: --app-name is required")),await yl(e,!1,"errorCode",r),vl.exit(1));let t=r.appName;_C(t);let n=r.bundleName||FC(t);S.assertBundleNameStrict(n),r.projectPath&&Ym(r.projectPath);let o=$C(t,r.projectPath);Ym(o),console.log(OC("Initializing project...")),console.log(`Project path: ${o}`),console.log(`App name: ${t}`),console.log(`Bundle name: ${n}`);let i=await UC(),s=HC(r,i);console.log(`API level: ${s}`);let a=i?.devecoStudioPath,c=qm(o,t,n,s,a);BC(c),await yl(e,!0,null,r)}catch(t){let n=t,i=t instanceof me?t.code:n.code??n.name??"UnknownError";console.error(gl(`
1300
+ Failed to create project.`)),console.error(gl(n.message)),await yl(e,!1,i,r),vl.exit(1)}}),Qm=WC;import{Command as KC}from"commander";import{red as XC,cyan as ah}from"colorette";import VC from"fs";import Is from"path";import{cyan as GC}from"colorette";import*as As from"smol-toml";var Tn=VC.promises;async function qC(r){try{let e=await Tn.readFile(r,"utf8");return e.trim()===""?{}:JSON.parse(e)}catch(e){if(e.code==="ENOENT")return{};throw new Error(`Failed to read configuration file ${r}: ${e.message}`,{cause:e})}}async function zC(r){try{let e=await Tn.readFile(r,"utf8");return e.trim()===""?{}:As.parse(e)}catch(e){if(e.code==="ENOENT")return{};throw new Error(`Failed to read TOML config file ${r}: ${e.message}`,{cause:e})}}async function JC(r,e){let t=Is.dirname(r);await Tn.mkdir(t,{recursive:!0});let n=JSON.stringify(e,null,2);await Tn.writeFile(r,n,"utf8")}async function YC(r,e){let t=Is.dirname(r);await Tn.mkdir(t,{recursive:!0});let n=As.stringify(e);await Tn.writeFile(r,n,"utf8")}function eh(r,e,t){let n=r[e];return!n||typeof n!="object"?!1:t in n}function th(r,e,t,n,o){(!r[e]||typeof r[e]!="object")&&(r[e]={});let i=r[e];return t in i&&!o?!1:(i[t]=n,!0)}async function rh(r,e){return r.format==="codex"?zC(e):qC(e)}async function nh(r,e,t){return r.format==="codex"?YC(e,t):JC(e,t)}async function oh(r,e,t=!1){let n=Qt[r];if(!n)return{success:!1,error:`Unknown agent: ${r}. Supported agents: ${Object.keys(Qt).join(", ")}`};if(!n.supportsGlobal)return{success:!1,error:`${n.displayName} does not support global MCP configuration. Use --project to configure project-level MCP.`};try{let o=await rh(n,n.globalConfigPath);if(eh(o,n.mcpServersKey,kt)&&!t)return console.log(`MCP server ${kt} already configured in ${n.globalConfigPath}.`),{success:!0,skipped:!0,configPath:n.globalConfigPath,agentName:r,installType:"global"};let i=Ii(n,void 0);return th(o,n.mcpServersKey,kt,i,t),await nh(n,n.globalConfigPath,o),console.log(`MCP server ${kt} configured in ${n.globalConfigPath}.`),{success:!0,configPath:n.globalConfigPath,agentName:r,installType:"global"}}catch(o){return{success:!1,error:`Failed to configure MCP for ${n.displayName}: ${o.message}`}}}async function wl(r,e,t=!1){let n=Qt[r];if(!n)return{success:!1,error:`Unknown agent: ${r}. Supported agents: ${Object.keys(Qt).join(", ")}`};let o=Is.isAbsolute(n.projectConfigPath)?n.projectConfigPath:Is.join(e,n.projectConfigPath);try{let i=await rh(n,o);if(eh(i,n.mcpServersKey,kt)&&!t)return console.log(`MCP server ${kt} already configured in ${o}.`),{success:!0,skipped:!0,configPath:o,agentName:r,installType:"project"};let s=Ii(n,e);return th(i,n.mcpServersKey,kt,s,t),await nh(n,o,i),console.log(`MCP server ${kt} configured in ${o}.`),{success:!0,configPath:o,agentName:r,installType:"project"}}catch(i){return{success:!1,error:`Failed to configure MCP for ${n.displayName}: ${i.message}`}}}function ih(r){let e=r.filter(o=>o.success&&!o.skipped).length,t=r.filter(o=>o.skipped).length,n=r.filter(o=>!o.success).length;console.log(),console.log(GC("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${n}`);for(let o of r)!o.success&&o.error&&console.error(` - ${o.agentName??"unknown"}: ${o.error}`);n>0&&(process.exitCode=1)}var bl="deveco-cli";async function ZC(r,e,t){if(r.customPath)return[await Dm(bl,e,r.customPath,t.force)];let n=[...r.projectAgents.map(({project:s,agent:a})=>()=>Am(bl,e,s,a,t.force)),...r.agents.map(s=>()=>Im(bl,e,s,t.force))],o=5,i=[];for(let s=0;s<n.length;s+=o){let a=n.slice(s,s+o);i.push(...await Promise.all(a.map(c=>c())))}return i}function QC(r){return[...new Set([...r.agents,...r.projectAgents.map(({agent:e})=>e)])]}async function sh(r,e,t,n){await I.track(r,{duration_ms:Date.now()-e,success:t,error_code:n}).catch(()=>{})}async function ek(r,e,t,n,o){let i={event:b.SkillConfigOperation,subAction:"install",targetType:n?"path":o?"project":"global",agents:QC(r)},s=Date.now();try{let a=await ZC(r,e,t),c=a.every(l=>l.success||l.skipped);return await sh(i,s,c,c?null:"SKILL_INSTALL_FAILED"),a}catch(a){let c=a instanceof Error?a.code??a.name:"UnknownError";throw await sh(i,s,!1,c),a}}async function tk(r,e,t){let n=[];for(let{project:o,agent:i}of r.projectAgents){let s=await wl(i,o,t);n.push(s)}for(let o of r.agents){let i=await wl(o,e,t);n.push(i)}return n}async function rk(r,e){let t=[];for(let n of r){if(!Qt[n])continue;let i=await oh(n,process.cwd(),e);t.push(i)}return t}async function nk(r,e,t){let n=["qoder","dsh"];if(t.agent){let l=t.agent.split(",").map(d=>d.trim());for(let d of n)if(l.includes(d))throw new Error(`${d} does not support MCP configuration via DevEco CLI. Use --skill instead, or use other supported agents for MCP.`)}let o=t.force??!1,i=r.projectAgents.filter(l=>!n.includes(l.agent)),s=r.agents.filter(l=>!n.includes(l)),a={...r,projectAgents:i,agents:s},c=e?await tk(a,e,o):await rk(a.agents,o);c.length>0&&(console.log(ah("MCP Configuration:")),ih(c))}async function ok(r,e,t){let n={event:b.Init,subAction:"install",targetType:e?"project":"global",agentName:t.agent},o=Date.now(),i=!0,s=null;try{await nk(r,e,t)}catch(a){throw i=!1,s=a instanceof Error?a.code??a.name:"UnknownError",a}finally{let a={duration_ms:Date.now()-o,success:i,error_code:s};await I.track(n,a)}}async function ik(r){if(r.skill&&r.mcp)throw new Error("Cannot use `--skill` and `--mcp` together. Use `--skill` for skill installation only, or `--mcp` for MCP configuration only.");let{resolvedPath:e,resolvedProject:t}=Uo(r.path,r.project,r.agent);t&&fr(t,"Project directory",r.force),e&&fr(e,"Directory",r.force);let n=await Ss(r,e,t);if(r.mcp){await ok(n,t,r);return}let o=xm(),i=await ek(n,o,r,e,t);console.log(),i.length>0&&(console.log(ah("Skill Installation:")),Ho(i))}var sk=new KC("init").description("Install the deveco-cli skill or configure the deveco-mcp server into AI agents").option("--agent <agents>","Target agents, comma-separated; installs to all available agents if omitted").option("--project <path>","Project root directory for skill or MCP configuration").option("--path <path>","Path to install the skill directly (cannot be used with --project or --agent)").option("--skill","Install the deveco-cli skill only (same as default behavior; explicit for symmetry with --mcp)").option("--mcp","Configure the deveco-mcp server (syntax checking for .ets and C/C++) only; no skill installation").option("-f, --force","Overwrite existing skill/MCP configuration").action(async r=>{try{await ik(r)}catch(e){console.error(XC(e instanceof Error?e.message:String(e))),process.exit(1)}}),ch=sk;import{Command as dI}from"commander";import{McpServer as Jk}from"@modelcontextprotocol/sdk/server/mcp.js";import{StdioServerTransport as Yk}from"@modelcontextprotocol/sdk/server/stdio.js";import*as Zo from"fs";import*as qn from"path";import{z as he}from"zod";import Ds from"path";function uh(r,e,t,n,o){if(e.isError)return{};let i=e.content?.[0]?.text??"";if(!i)return{};let s;switch(r){case"check":s=ak(i);break;case"hover":s={hit:xn(i)!=null};break;case"definition":case"declaration":s=lh(i,t,n,o,!0);break;case"references":s=lk(i);break;case"implementation":s=lh(i,t,n,o,!1);break;case"documentSymbol":s=dk(i);break;case"callHierarchy":s=uk(i,t,n,o);break;case"workspaceSymbol":s=pk(i,t);break;default:s={}}return s}function ph(r){let e=Array.isArray(r.files)?r.files[0]:r.file;return typeof e!="string"||!e?void 0:Ds.extname(e).toLowerCase().replace(/^\./,"")||void 0}function xn(r){let e=r.indexOf(": ");if(e<0)return;let t=r.slice(e+2).trim();if(!(!t||t==="no result"))try{return JSON.parse(t)}catch{return}}function ak(r){let e={total:0,error:0,warn:0,info:0},t=new Set,n=" => Diagnostic: ";for(let i of r.split(`
1301
+ `)){let s=i.indexOf(n);if(s<0)continue;let a;try{a=JSON.parse(i.slice(s+n.length))}catch{continue}if(Array.isArray(a))for(let c of a)c&&typeof c=="object"&&ck(c,e,t)}let o={diagTotal:e.total,diagError:e.error,diagWarn:e.warn,diagInfo:e.info};return t.size>0&&(o.rules=[...t]),o}function ck(r,e,t){e.total++;let n=r.severity;n===1?e.error++:n===2?e.warn++:(n===3||n===4)&&e.info++,typeof r.source=="string"&&t.add(r.source)}function lk(r){let e=xn(r),t=Array.isArray(e)?e:[],n=new Set;for(let o of t){let i=o?.uri;typeof i=="string"&&n.add(i)}return{refTotal:t.length,fileCount:n.size}}function lh(r,e,t,n,o){let i=xn(r);if(i==null)return{found:!1};let s=Array.isArray(i)?i:[i],a=s[0]?.uri;return o?{found:!0,sameFile:fk(a,e),sourceType:mh(a,t,n)}:{implTotal:s.length,found:!0}}function dk(r){let e=xn(r),t=Array.isArray(e)?e:[],n=0,o=new Map,i=s=>{for(let a of s){if(!a||typeof a!="object")continue;n++;let c=a.kind;typeof c=="number"&&o.set(c,(o.get(c)??0)+1);let l=a.children;Array.isArray(l)&&i(l)}};return i(t),{symbolTotal:n,kindDist:Sl(o)}}function uk(r,e,t,n){let i=xn(r)?.calls,s=Array.isArray(i)?i:[],a=e.direction,c=new Map;for(let l of s){if(!l||typeof l!="object")continue;let g=(a==="incoming"?l.from:l.to)?.uri,v=mh(g,t,n);c.set(v,(c.get(v)??0)+1)}return{callsTotal:s.length,calleeSrcDist:Sl(c)}}function pk(r,e){let t=xn(r),n=Array.isArray(t)?t:[],o=new Map,i=0;for(let c of n){if(!c||typeof c!="object")continue;let l=c.kind;typeof l=="number"&&o.set(l,(o.get(l)??0)+1);let d=c.tags;(Array.isArray(d)&&d.includes(1)||c.deprecated===!0)&&i++}let s={resultTotal:n.length,kindDist:Sl(o),deprecatedHit:i},a=e.query;return typeof a=="string"&&(s.queryLen=a.length),s}function fh(r){if(typeof r!="string"||!r)return null;let e=r;return e.startsWith("file://")&&(e=e.slice(7),process.platform==="win32"&&e.startsWith("/")&&(e=e.slice(1))),e}function mh(r,e,t){let n=fh(r);return n?e&&dh(n,e)?"user_project":t&&dh(n,t)?"sdk":"system":"unknown"}function fk(r,e){let t=fh(r),n=e.file;return!t||typeof n!="string"?!1:Rs(t)===Rs(n)}function Rs(r){try{return Ds.resolve(r).replace(/\\/g,"/").toLowerCase()}catch{return r.replace(/\\/g,"/").toLowerCase()}}function dh(r,e){let t=Ds.relative(Rs(e),Rs(r));return t!==""&&!t.startsWith("..")&&!Ds.isAbsolute(t)}function Sl(r){let e={};for(let[t,n]of r)e[String(t)]=n;return e}var Ts=class{constructor(e,t,n,o){this.telemetry=e;this.getAceServerPid=t;this.getProjectPath=n;this.getSdkPath=o}tools=new Map;add(e,t){return this.tools.set(e.name,{definition:e,handler:t}),this}getAll(){return Array.from(this.tools.values())}registerToServer(e){for(let{definition:t,handler:n}of this.getAll())e.registerTool(t.name,{description:t.description,inputSchema:t.inputSchema},(async o=>this.invokeTool(t.name,o,n)))}async invokeTool(e,t,n){if(h.info(`[telemetry] mcp tool call: ${e}`),!this.telemetry)return n(t);let o=Q(process.memoryUsage().rss),i=await this.resolveLspMemory(),s=Date.now(),a=!0,c=null,l;try{l=await n(t)}catch(d){throw a=!1,c=d instanceof Error?d.code??d.name:"UnknownError",d}finally{await this.trackToolCall(e,t,l,s,o,i,a,c)}return l}async trackToolCall(e,t,n,o,i,s,a,c){if(!this.telemetry)return;let l=n?.isError===!0,d=n&&!l?uh(e,n,t,this.getProjectPath?.()??"",this.getSdkPath?.()??""):{},g=l?!1:a,v=l&&n?mk(n):c,P={event:b.McpToolCall,subAction:e,mcpMemory:i,lspMemory:s,fileExt:ph(t),...d};typeof t.direction=="string"&&(P.direction=t.direction),await this.telemetry.track(P,{duration_ms:Date.now()-o,success:g,error_code:v})}async resolveLspMemory(){let e=this.getAceServerPid?.()??null;if(e===null)return"unknown";let t=await je(e);return t===null?"unknown":Q(Number(t)*1024)}};function mk(r){let e=r.content.map(t=>t.text).join(`
1302
+ `);return/not ready|not initialized|initializing|please retry|retry \d+s|syncing|C\+\+ project initialization failed/i.test(e)?"NotReady":/No project detected|PROJECT_PATH|no project path/i.test(e)?"NoProject":/Missing.*parameter|invalid parameters|Unknown feature|must be|Must specify|cannot be used together|invalid/i.test(e)?"BadRequest":/Too many files|Maximum allowed/i.test(e)?"TooManyFiles":/does not exist|not exist|not found|No valid|not a .ets|not a supported|Unsupported/i.test(e)?"InvalidFile":"ToolError"}function El(r,e,t,n){return new Ts(r,e,t,n)}import*as dt from"fs";import*as ke from"path";function hh(r){return"method"in r&&!("id"in r)}import{spawn as hk}from"child_process";import{EventEmitter as gk}from"events";import*as Ln from"fs";import*as gh from"path";var yk=50*1024*1024,mr=class extends gk{constructor(t){super();this.config=t}process=null;buffer=Buffer.alloc(0);isClosing=!1;get pid(){return this.process?.pid??null}ensureDirectories(){let t=gh.join(this.config.logPath,"lspLog");return Ln.existsSync(t)||Ln.mkdirSync(t,{recursive:!0}),Ln.existsSync(this.config.indexingDataLocation)||Ln.mkdirSync(this.config.indexingDataLocation,{recursive:!0}),t}async start(t){let n=this.ensureDirectories();m.info(`[LspClient] serverMaxSize=${t}MB`);let o=z(n),i=["--expose-gc",`--max-old-space-size=${t}`,"--report-on-fatalerror","--report-uncaught-exception",`--report-filename=nodejs_error_${Date.now()}.txt`,`--report-dir=${o}`,this.config.serverPath,"--stdio",`--logger-path=${o}`,"--logger-level=TRACE"];m.info(`[LspClient] Starting process: node ${i.join(" ")}`);let s=process.execPath??"node";m.info(`[LspClient] nodePath: ${s}`),this.process=hk(s,i,{cwd:this.config.cwd||process.cwd(),stdio:["pipe","pipe","pipe"],windowsHide:!0}),this.bindProcessEvents(),await new Promise(a=>setTimeout(a,500)),m.info("[LspClient] start lsp process success")}attachProcess(t,n){if(this.process)throw new Error("[LspClient] process already attached");this.process=t,this.bindProcessEvents(n?.stderrAsError??!0),m.info("[LspClient] attached to external process")}bindProcessEvents(t=!0){this.process&&(this.process.stdout?.on("data",n=>{this.handleData(n)}),this.process.stderr?.on("data",n=>{let o=n.toString("utf8").trim();m.error(`[LspClient] stderr: ${o}`),!this.isClosing&&t&&this.emit("error",new Error(`[LspClient] stderr: ${o}`))}),this.process.on("exit",n=>{m.info(`[LSP EXIT] code=${n}`),this.isClosing||this.emit("error",new Error(`LSP process exited with code ${n}`))}))}sendRaw(t,n){if(!this.process?.stdin?.writable){m.warn("[LspClient] Cannot send message, stdin not writable");return}m.info(`[LspClient] send message: ${n}`);let o=this.buildLspMessage(t);this.process.stdin.write(o,"utf8")}send(t,n,o){let i={jsonrpc:"2.0",method:t,params:n};o!==void 0&&(i.id=o),this.sendRaw(JSON.stringify(i),t)}sendNotification(t,n){this.sendRaw(JSON.stringify({jsonrpc:"2.0",method:t,params:n}),t)}sendRequest(t,n,o){this.sendRaw(JSON.stringify({jsonrpc:"2.0",id:o,method:t,params:n}),t)}buildLspMessage(t){return`Content-Length: ${Buffer.from(t,"utf8").length}\r
1303
+ \r
1304
+ ${t}`}handleData(t){for(this.buffer=Buffer.concat([this.buffer,t]);;){let n=this.buffer.indexOf(`\r
1305
+ \r
1306
+ `);if(n===-1)break;let i=this.buffer.slice(0,n).toString("ascii").match(/Content-Length:\s*(\d+)/i);if(!i){m.warn("[LspClient] Invalid LSP header, drop until next packet"),this.buffer=this.buffer.slice(n+4);continue}let s=parseInt(i[1],10);if(!Number.isFinite(s)||s<0||s>yk){m.warn(`[LspClient] Invalid Content-Length: ${i[1]}, drop until next packet`),this.buffer=this.buffer.slice(n+4);continue}let a=n+4,c=a+s;if(this.buffer.length<c)break;let l=this.buffer.slice(a,c).toString("utf8"),d=this.recoverFramedJson(l);if(d&&d.rest.length>0){m.warn(`[LspClient] recovered mixed LSP frame, bodyLen=${l.length}, restLen=${d.rest.length}`),this.emit("message",d.json),this.buffer=Buffer.concat([Buffer.from(d.rest,"utf8"),this.buffer.slice(c)]);continue}this.emit("message",l),this.buffer=this.buffer.slice(c)}}waitForExitOrTimeout(t){let n=this.process;return!n||n.exitCode!==null||n.signalCode!==null?Promise.resolve():new Promise(o=>{let i=!1,s=()=>{i||(i=!0,clearTimeout(c),n.off("exit",a),o())},a=()=>s();n.once("exit",a);let c=setTimeout(s,t)})}recoverFramedJson(t){let n=t.search(/\S/);if(n<0||t[n]!=="{"&&t[n]!=="[")return null;let o=0,i=!1,s=!1;for(let a=n;a<t.length;a++){let c=t[a];if(i){if(s){s=!1;continue}if(c==="\\"){s=!0;continue}c==='"'&&(i=!1);continue}if(c==='"'){i=!0;continue}if(c==="{"||c==="["){o++;continue}if((c==="}"||c==="]")&&(o--,o===0)){let l=t.slice(n,a+1),d=t.slice(a+1);return{json:l,rest:d}}}return null}stop(){this.isClosing=!0;let t=this.process;if(!t)return;if(this.process=null,t.exitCode===null&&t.signalCode===null)try{t.kill()}catch{}}};var hr=class{callbacks=new Map;pending=new Map;timeouts=new Map;registerPending(e,t,n){return new Promise((o,i)=>{let s;n>0&&(s=setTimeout(()=>{this.pending.delete(e),this.timeouts.delete(e),i(new Error(`LSP request '${t}' (id=${e}) timeout after ${n}ms`))},n),this.timeouts.set(e,s)),this.pending.set(e,{resolve:o,reject:i,method:t,timer:s})})}resolvePending(e,t){this.clearTimeout(e);let n=this.pending.get(e);return n?(n.resolve(t),this.pending.delete(e),!0):!1}rejectPending(e,t){this.clearTimeout(e);let n=this.pending.get(e);return n?(n.reject(t),this.pending.delete(e),!0):!1}register(e,t){this.callbacks.set(e,t)}emit(e,t,n){m.info(`[RequestCallbackManager] emit, method: ${t}, key: ${e}`),this.clearTimeout(e);let o=this.callbacks.get(e);if(o)try{o(t,n)}finally{this.callbacks.delete(e)}else{let i=[...this.callbacks.keys()].map(s=>String(s));m.info(`[RequestCallbackManager] emit: NO callback for key='${e}', registered keys=[${i.join(",")}]`)}}registerTimeout(e,t,n,o){let i=this.timeouts.get(e);i&&clearTimeout(i);let s=setTimeout(()=>{m.info(`[RequestCallbackManager] timeout, key=${e}, method=${t}`);try{o()}finally{this.timeouts.delete(e)}},n);this.timeouts.set(e,s)}clearTimeout(e){let t=this.timeouts.get(e);t&&(clearTimeout(t),this.timeouts.delete(e))}deleteCallback(e){this.callbacks.delete(e)}hasCallback(e){return this.callbacks.has(e)||this.pending.has(e)}clear(e){this.clearTimeout(e);let t=this.pending.get(e);t&&(t.reject(new Error(`Request '${t.method}' (id=${e}) cancelled`)),this.pending.delete(e)),this.callbacks.delete(e)}rejectAll(e){for(let[,t]of this.pending)t.reject(e);this.pending.clear();for(let[,t]of this.timeouts)clearTimeout(t);this.timeouts.clear(),this.callbacks.clear()}};var xs=class{uri;diagnostics=[];constructor(e){this.uri=e}set(e){this.diagnostics=e}get(){return this.diagnostics}clear(){this.diagnostics=[]}};var Nn=class{map=new Map;register(e,t){let n=this.map.get(e);n||(n=new Set,this.map.set(e,n)),n.add(t)}unregister(e,t){let n=this.map.get(e);n&&(t!==void 0?n.delete(t):n.clear(),n.size===0&&this.map.delete(e))}invoke(e,...t){let n=this.map.get(e);if(n)for(let o of n)try{o(...t)}catch(i){console.error(`[CallbackRegistry] invoke("${String(e)}") callback error:`,i)}}invokeOnce(e,...t){this.invoke(e,...t),this.unregister(e)}clear(){this.map.clear()}has(e){let t=this.map.get(e);return t!==void 0&&t.size>0}};function R(r){return typeof r=="object"&&r!==null}var yh=20*1e3,vk=30*1e3,vh=300,wk=300;function bk(){let r=process.env.DEVECO_CLI_LSP_STANDARD_EXIT_TIMEOUT_MS;if(r===void 0||r==="")return vh;let e=parseInt(r,10);return Number.isFinite(e)?Math.max(wk,e):vh}var Ls=class{client;nextRequestId=1;stopOnce=null;callbacks=new Nn;requestCallbacks=new hr;diagnosticMap=new Map;initProgressReset=null;get lspPid(){return this.client.pid}constructor(e){this.client=new mr(e),this.client.on("message",t=>this.handleRawMessage(t)),this.client.on("error",t=>this.handleError(t))}async start(e){await this.client.start(e)}stop(){return this.stopOnce||(this.stopOnce=(async()=>{m.info("[ClientMessageHandle] Sending shutdown request"),this.client.sendRequest(y.SHUTDOWN,null,this.nextRequestId++),m.info("[ClientMessageHandle] Sending exit notification"),this.client.sendNotification(y.EXIT,null),m.info("[ClientMessageHandle] Waiting for LSP process to exit"),await this.client.waitForExitOrTimeout(bk()),m.info("[ClientMessageHandle] LSP exit wait completed, calling stop"),this.client.stop()})()),this.stopOnce}setBroadcastToClients(e){this.callbacks.unregister(y.BROADCAST),this.callbacks.register(y.BROADCAST,e)}broadcastToClients(e){this.callbacks.invoke(y.BROADCAST,e)}async sendInitialize(e){let t=this.nextRequestId++,n=this.requestCallbacks.registerPending(t,y.INITIALIZE,rt);return this.client.sendRequest(y.INITIALIZE,e,t),n}sendInitializeResettable(e,t){let n=this.nextRequestId++,o=this.requestCallbacks.registerPending(n,y.INITIALIZE,0);return this.client.sendRequest(y.INITIALIZE,e,n),new Promise((i,s)=>{let a,c=()=>{a=setTimeout(()=>{this.initProgressReset=null,s(new Error(`LSP initialization timeout after ${t}ms`))},t)},l=()=>{clearTimeout(a),c()};this.initProgressReset=l,c(),o.then(()=>{clearTimeout(a),this.initProgressReset=null,i()},d=>{clearTimeout(a),this.initProgressReset=null,s(d)})})}sendInitialized(){this.client.sendNotification(y.INITIALIZED,{})}sendDidOpen(e){let t=e.textDocument.uri;this.diagnosticMap.has(t)||(this.diagnosticMap.set(t,new xs(t)),this.registerDiagnosticTimeout(t)),this.client.sendNotification(y.DID_OPEN,e)}sendDidChange(e){let t=e.textDocument.uri,n=this.diagnosticMap.get(t);n&&(n.clear(),this.registerDiagnosticTimeout(t)),this.client.sendNotification(y.DID_CHANGE,e)}closeFile(e){this.cleanupDiagnosticState(e.textDocument.uri),this.client.sendNotification(y.DID_CLOSE,e)}sendLspRequest(e,t,n=vk){let o=this.nextRequestId++,i=this.requestCallbacks.registerPending(o,e,n);return this.client.sendRequest(e,t,o),i}registerRequestCallback(e,t){this.requestCallbacks.register(e,t)}onDidChangeWatchedFiles(e){e.length!==0&&this.client.sendNotification(y.WORKSPACE_DID_CHANGE_WATCHED_FILES,{changes:e})}sendDidChangeConfiguration(e){this.client.sendNotification(y.WORKSPACE_DID_CHANGE_CONFIGURATION,{settings:e})}sendNotification(e,t){this.client.sendNotification(e,t)}getDiagnosticMessages(e){let t=this.diagnosticMap.get(e);return t?t.get():[]}clearDiagnostic(e){this.diagnosticMap.get(e)?.clear()}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(n){let o=n instanceof Error?n.message:String(n);m.error(`[LSP] JSON parse error: ${o}, raw: ${e}`);return}"id"in t&&("result"in t||"error"in t)?this.handleResponse(t):"method"in t?this.handleNotificationOrRequest(t):m.warn(`[LSP] Unrecognized message: ${JSON.stringify(t).slice(0,200)}`)}handleResponse(e){let t=e.id;if(t===void 0)return;let n=t;if(e.error){let o=new Error(`LSP error ${e.error.code}: ${e.error.message}`);this.requestCallbacks.rejectPending(n,o)}else this.requestCallbacks.resolvePending(n,e.result)}handleNotificationOrRequest(e){let t=e.method;if(t)switch(this.initProgressReset?.(),t){case y.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(e.params);break;case y.PROGRESS:this.handleProgress(e.params);break;case y.WINDOW_SHOW_MESSAGE:m.info(`[LSP] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:m.info(`[LSP] window/logMessage: ${JSON.stringify(e.params)}`);break;default:this.broadcastToClients(e)}}handlePublishDiagnostics(e){if(!e||!e.uri)return;let t=e.uri,n=this.diagnosticMap.get(t);if(!n)return;let o=e.diagnostics||[];this.normalizeDiagnostics(o),n.set(o),this.finalizeDiagnostic(t,o)}normalizeDiagnostics(e){for(let t of e)if(t.severity!==void 0){let n={1:"Error",2:"Warning",3:"Information",4:"Hint"};t.severityStr=n[t.severity]||"Unknown"}}handleProgress(e){R(e)&&this.broadcastToClients({jsonrpc:T,method:y.PROGRESS,params:e})}registerDiagnosticTimeout(e){this.requestCallbacks.registerTimeout(e,y.PUBLISH_DIAGNOSTICS,yh,()=>{let t=this.diagnosticMap.get(e),n=t?t.get():[];this.finalizeDiagnostic(e,n,n.length>0?void 0:`received no diagnostics within ${yh}ms, uri: ${e}`)})}finalizeDiagnostic(e,t,n){let o={uri:e,diagnostics:t,...n?{errorMessage:n}:{}};this.requestCallbacks.emit(e,y.PUBLISH_DIAGNOSTICS,o),this.diagnosticMap.get(e)?.clear()}handleError(e){let t=Array.from(this.diagnosticMap.keys()).filter(n=>this.requestCallbacks.hasCallback(n));if(t.length>0){let n={range:{start:{line:0,character:0},end:{line:0,character:0}},severity:1,message:e.message};for(let o of t)this.finalizeDiagnostic(o,[n]);return}this.broadcastToClients({jsonrpc:T,method:y.ARKTS_ERROR,params:{message:e.message}})}cleanupDiagnosticState(e){this.requestCallbacks.clear(e),this.diagnosticMap.delete(e)}};var Ns=class{uri;messages=[];receivedTypes=new Set;uniqueMessages=new Set;isFromEditor=!1;constructor(e){this.uri=e}setReceivedType(e){this.receivedTypes.add(e)}addMessage(e,t){this.receivedTypes.add(e);let n=`${e}:${t}`;if(this.uniqueMessages.has(n)){m.info(`[LegacyDiagnostic] addMessage: duplicate message=${n}`);return}this.uniqueMessages.add(n),this.messages.push(new Pl(e,t))}clearMessages(){this.messages=[]}clear(){this.receivedTypes.clear(),this.uniqueMessages.clear(),this.messages=[]}hasReceivedAllTypes(e){for(let t of e)if(!this.receivedTypes.has(t))return!1;return!0}getMessages(){return this.messages.map(e=>e.diagnostics)}},Pl=class{version=-1;diagnostics;constructor(e,t){this.version=e,this.diagnostics=t}};var Sk={EXIT:"exit",INITIALIZED:"initialized",ON_DID_CHANGE_PACKAGE_DEPENDENCIES:"aceProject/onDidChangePackageDependencies",ON_ASYNC_DID_OPEN:"aceProject/onAsyncDidOpen",ON_ASYNC_DID_CHANGE:"aceProject/onAsyncDidChange",DID_CLOSE:"textDocument/didClose",ON_ASYNC_HOVER:"aceProject/onAsyncHover",ON_ASYNC_DEFINITION:"aceProject/onAsyncDefinition",ON_ASYNC_FIND_USAGES:"aceProject/onAsyncFindUsages"},Ek={MODULE_INIT_FINISH:"aceProject/onModuleInitFinish",INDEXING_PROGRESS_UPDATE:"aceProject/onIndexingProgressUpdate",ON_FORCE_OPEN_FILE:"aceProject/onForceOpenFile",ON_PACKAGE_CHANGE_FINISH:"aceProject/onPackageChangeFinish",TEXT_DOCUMENT_ON_ASYNC_DEFINITION:"textDocument/onAsyncDefinition",ON_DID_CHANGE_PACKAGE_DEPENDENCIES_CLIENT:"textDocument/onDidChangePackageDependencies",PUBLISH_DIAGNOSTICS:"textDocument/publishDiagnostics",HOVER:"textDocument/hover",DEFINITION:"textDocument/definition",REFERENCES:"textDocument/references",DID_OPEN:"textDocument/didOpen",DID_CHANGE:"textDocument/didChange",WORKSPACE_DID_CHANGE_CONFIGURATION:"workspace/didChangeConfiguration",WORKSPACE_DID_CHANGE_WATCHED_FILES:"workspace/didChangeWatchedFiles",BROADCAST:"lsp/broadcast",ARKTS_ERROR:"arkts/error",ARKTS_INITIALIZED:"arkts/initialized",ARKTS_INITIALIZATION_FAILED:"arkts/initializationFailed",ARKTS_INDEXING_PROGRESS:"arkts/indexingProgress",ARKTS_SYNC_PROJECT:"arkts/syncProject",ARKTS_SYNC_COMPLETED:"arkts/syncCompleted",ARKTS_REINITIALIZING:"arkts/reinitializing"},x={...Sk,...Ek},gr={EXIT:"exit",INITIALIZED:"initialized",EMPTY:"empty",ON_DID_CHANGE_PACKAGE_DEPENDENCIES:"onDidChangePackageDependencies",ON_ASYNC_DID_OPEN:"onAsyncDidOpen",ON_ASYNC_DID_CHANGE:"onAsyncDidChange",DID_CLOSE:"didClose",ON_ASYNC_HOVER:"onAsyncHover",ON_ASYNC_DEFINITION:"onAsyncDefinition",ON_ASYNC_FIND_USAGES:"onAsyncFindUsages"},wh=new Set([1e3,2e3,3e3,3001]);function Pk(r){if(!R(r))return!1;let e=r.textDocument;return R(e)&&typeof e.uri=="string"}function Ck(r){return R(r)?typeof r.uri=="string"&&typeof r.type=="number":!1}function kk(r){return R(r)&&typeof r.moduleName=="string"&&typeof r.current=="number"&&typeof r.total=="number"?`indexing module '${r.moduleName}', ${r.current} of total ${r.total} modules`:`params=${JSON.stringify(r??null)}`}var Ms=class r{client;isInitialized=!1;stopOnce=null;callbacks=new Nn;requestCallbacks=new hr;diagnosticMap=new Map;static DIAGNOSTIC_TIMEOUT_MS=20*1e3;get lspPid(){return this.client.pid}constructor(e){this.client=new mr(e),this.client.on("message",t=>this.handleRawMessage(t)),this.client.on("error",t=>this.handleError(t))}async start(e){await this.client.start(e)}stop(){return this.stopOnce||(this.stopOnce=(async()=>{m.info("[LegacyClientMessageHandle] Sending exit notification to LSP"),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.EXIT,params:{}}),gr.EXIT),m.info("[LegacyClientMessageHandle] Waiting for LSP process to exit"),await this.client.waitForExitOrTimeout(300),m.info("[LegacyClientMessageHandle] LSP exit wait completed, calling stop"),this.client.stop()})()),this.stopOnce}setBroadcastToClients(e){this.callbacks.unregister(x.BROADCAST),this.callbacks.register(x.BROADCAST,e)}broadcastToClients(e){this.callbacks.invoke(x.BROADCAST,e)}onInitializationCompleted(e){this.isInitialized?e():this.callbacks.register(x.MODULE_INIT_FINISH,e)}onIndexingProgressUpdate(e){this.callbacks.register(x.INDEXING_PROGRESS_UPDATE,e)}registerRequestCallback(e,t){this.requestCallbacks.register(e,t)}sendInitialize(e,t){this.client.send("initialize",e,t)}sendInitialized(e){this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.INITIALIZED,params:{editors:e}}),gr.INITIALIZED),this.client.sendRaw(JSON.stringify({jsonrpc:T,id:0,result:{}}),gr.EMPTY)}sendAsyncRequest(e,t,n,o){if(!R(t)){m.warn(`[LSP] sendAsyncRequest invalid params, method=${e}`);return}if(!Pk(t)){m.warn(`[LSP] sendAsyncRequest missing textDocument.uri, method=${e}, params=${JSON.stringify(t)}`);return}if(typeof n!="number"){m.warn(`[LSP] sendAsyncRequest invalid requestId, method=${e}, requestId=${String(n)}`);return}let i=t.textDocument.uri,s=mt(i);t.textDocument.uri=s,delete t.requestId;let a=o??e;m.info(`[LSP] sendAsyncRequest ${a}, filePath: ${i}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:e,params:{params:t,requestId:n}}),a)}onDidChangeWatchedFiles(e){if(m.info(`[LSP] onDidChangeWatchedFiles, params=${JSON.stringify(e)}`),e.length===0)return;let t=[];for(let n of e){if(!Ck(n)){m.warn(`[LSP] onDidChangeWatchedFiles, param is missing 'uri' or 'type': ${JSON.stringify(n)}`);continue}t.push(n)}this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.WORKSPACE_DID_CHANGE_WATCHED_FILES,params:{changes:t}}),x.WORKSPACE_DID_CHANGE_WATCHED_FILES)}sendModuleDependencyUpdate(e){if(!R(e)||!Array.isArray(e.moduleSet)||e.moduleSet.length===0){m.warn("[LSP] sendModuleDependencyUpdate, moduleSet is empty or null");return}let t=e.moduleSet;m.info(`[LSP] sending module dependency updated, count: ${t.length}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_DID_CHANGE_PACKAGE_DEPENDENCIES,params:{params:e}}),gr.ON_DID_CHANGE_PACKAGE_DEPENDENCIES)}onAsyncOpenFile(e){let t=e.textDocument.uri,n=t.split(".").pop()||"";if(n!=="ets"&&n!=="ts")return;let o=mt(t);e.textDocument.uri=o,m.info(`[LSP] onAsyncOpenFile, uri: ${o}`);let i=this.diagnosticMap.get(o);i||(i=new Ns(o),this.diagnosticMap.set(o,i),this.registerDiagnosticTimeout(o,x.PUBLISH_DIAGNOSTICS)),e.isFromEditor&&(i.isFromEditor=!0),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_ASYNC_DID_OPEN,params:{params:{editorFiles:e.editorFiles,textDocument:e.textDocument}}}),gr.ON_ASYNC_DID_OPEN)}onAsyncDidChange(e){let t=mt(e.uri),n=this.diagnosticMap.get(t);n&&(n.clear(),this.registerDiagnosticTimeout(t,x.PUBLISH_DIAGNOSTICS)),m.info(`[LSP] onAsyncDidChange, uri: ${t}`),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.ON_ASYNC_DID_CHANGE,params:{editorFiles:[e.uri],params:{textDocument:{uri:t,version:e.version===0?null:e.version},contentChanges:e.contentChanges}}}),gr.ON_ASYNC_DID_CHANGE)}closeFile(e,t){let n=mt(e);m.info(`[LSP] didClose, uri: ${n}`);let o=this.diagnosticMap.get(n);if(!t&&(!o||o.isFromEditor)){m.info(`[LSP] closeFile skip, !diagnostic: ${!o}, isFromEditor: ${o?.isFromEditor}`);return}this.cleanupDiagnosticState(n),this.client.sendRaw(JSON.stringify({jsonrpc:T,method:x.DID_CLOSE,params:{textDocument:{uri:n}}}),gr.DID_CLOSE)}getDiagnosticMessage(e){let t=mt(e),n=this.diagnosticMap.get(t);return n?n.getMessages():[]}clear(e){this.diagnosticMap.get(e)?.clear()}handleRawMessage(e){try{let t=JSON.parse(e);this.handleLspMessage(t)}catch(t){let n=t instanceof Error?t.message:String(t);m.error(`[LSP] JSON parse error: ${n}, raw: ${e}`)}}handleError(e){let t=this.getPendingDiagnosticUris();if(t.length>0){let n=JSON.stringify({message:e.message,severity:"Error",severityStr:"Error"});for(let o of t)this.finalizeDiagnostic(o,x.PUBLISH_DIAGNOSTICS,[n]);return}this.broadcastToClients({jsonrpc:T,method:x.ARKTS_ERROR,params:{message:e.message}})}handleLspMessage(e){let t=e.method;t!==void 0&&(!this.isInitialized&&this.handlePreInitMessage(t,e)||this.handlePostInitMessage(t,e))}handlePreInitMessage(e,t){switch(e){case x.MODULE_INIT_FINISH:return m.info("[LSP] handleLspMessage, receive onModuleInitFinish"),this.isInitialized=!0,this.callbacks.invokeOnce(x.MODULE_INIT_FINISH),this.callbacks.unregister(x.INDEXING_PROGRESS_UPDATE),this.client.emit("initialized_done"),!0;case x.INDEXING_PROGRESS_UPDATE:return m.info(`[LSP] onIndexingProgressUpdate: ${kk(t.params)}`),this.callbacks.invoke(x.INDEXING_PROGRESS_UPDATE),!0;default:return!1}}handlePostInitMessage(e,t){switch(e){case x.ON_FORCE_OPEN_FILE:this.handleOnForceOpenFile(t);return;case x.ON_PACKAGE_CHANGE_FINISH:m.info("[LSP] handleLspMessage, receive onPackageChangeFinish"),this.handlePackageChangeFinish(t);return;case x.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(t);return;case x.ON_ASYNC_HOVER:this.handleAsyncResponse(t,x.HOVER);return;case x.ON_ASYNC_DEFINITION:this.handleAsyncResponse(t,x.TEXT_DOCUMENT_ON_ASYNC_DEFINITION);return;case x.ON_ASYNC_FIND_USAGES:this.handleAsyncResponse(t,x.REFERENCES);return;default:m.warn(`[LSP] handleLspMessage: no handler for notification, ignoring, method: ${e}, initialized: ${this.isInitialized}`)}}handleOnForceOpenFile(e){m.info("[LSP] handleLspMessage, receive onForceOpenFile");let t=e.params;R(t)&&R(t.result)&&typeof t.result.uri=="string"&&this.handleForceOpenFile(t.result.uri)}handlePublishDiagnostics(e){m.info("[LSP] handleLspMessage, receive publishDiagnostics");let t=e.params;t&&this.parseDiagnostics(t)}handlePackageChangeFinish(e){let t=e.params,n={jsonrpc:T,method:x.ON_PACKAGE_CHANGE_FINISH,params:[!1]};if(!t||!Array.isArray(t)){m.warn("[LSP] aceProject/onPackageChangeFinish params invalid"),this.broadcastToClients(n);return}if(!(t.length>0&&t[0]===!0)){m.warn("[LSP] aceProject/onPackageChangeFinish: package request failed"),this.broadcastToClients(n);return}m.info("[LSP] aceProject/onPackageChangeFinish: success"),this.broadcastToClients(e)}handleAsyncResponse(e,t){m.info(`[LSP] handleAsyncResponse\uFF0C method: ${t}`);let n=e.params;if(!R(n)){m.warn("[LSP] aceProject/onAsyncHover message invalid");return}let o=n.requestId;if(typeof o!="number"){m.warn(`[LSP] ${t} requestId invalid`);return}this.requestCallbacks.emit(o,t,n)}handleForceOpenFile(e){if(!e){m.warn("[LSP] handleForceOpenFile, uri is empty");return}this.requestCallbacks.emit(e,x.DID_OPEN,[]),this.clear(e)}parseDiagnostics(e){let t=e.uri;if(!t){m.info("[LSP] publishDiagnostics uri is null");return}let n=e.version??-1;if(n===-1)return;let o=this.diagnosticMap.get(t);if(!o){m.info(`[LSP] Diagnostic cleared for uri: ${t}`);return}let i=e.diagnostics||[];i.length!==0?i.forEach(s=>{this.normalizeDiagnostic(s),o.addMessage(n,JSON.stringify(s))}):o.setReceivedType(n),o.hasReceivedAllTypes(wh)&&this.finalizeDiagnostic(t,x.PUBLISH_DIAGNOSTICS,o.getMessages())}normalizeDiagnostic(e){let t=e;if(delete t.source,t.severity!==void 0){let n=typeof t.severity=="number"?t.severity:parseInt(t.severity),i={1:"Error",2:"Warning",3:"Information",4:"Hint"}[n]||"Unknown";t.severityStr=i,t.severity=i}e.range&&(this.adjustPositionLine(e.range,"start"),this.adjustPositionLine(e.range,"end"))}adjustPositionLine(e,t){let n=e[t];n&&typeof n.line=="number"&&(n.line=n.line+1)}registerDiagnosticTimeout(e,t){this.requestCallbacks.registerTimeout(e,t,r.DIAGNOSTIC_TIMEOUT_MS,()=>{let n=this.diagnosticMap.get(e),o=n?n.getMessages():[];this.finalizeDiagnostic(e,t,o,o.length>0?void 0:`received no diagnostics within ${r.DIAGNOSTIC_TIMEOUT_MS}ms from LSP, uri: ${e}`)})}finalizeDiagnostic(e,t,n,o){let i={uri:e,diagnostics:n,...o?{errorMessage:o}:{}};this.requestCallbacks.emit(e,t,i),this.diagnosticMap.get(e)?.clear()}getPendingDiagnosticUris(){return Array.from(this.diagnosticMap.keys()).filter(e=>this.requestCallbacks.hasCallback(e))}cleanupDiagnosticState(e){this.requestCallbacks.clear(e),this.diagnosticMap.delete(e)}};import Cl from"path";import*as Us from"path";var Os=class{enableRecentlyUsed=!1;enableCompletionSortByType=!0;maxValidCompletionItemsCount=50;enableCompletionFunctionParameter=!1;enableIndexModuleRootDirEtsFile=!1};var _s=class{overriddenEnable=!0;overridingEnable=!0;implementedEnable=!0;implementingEnable=!0};var js=class{tsVariablesEnable=!1;tsPropertyEnable=!1;tsParameterEnable=!1;tsReturnEnable=!1;etsVariablesEnable=!1;etsPropertyEnable=!1;etsParameterEnable=!1;etsReturnEnable=!1};var Fs=class{etsParameterNameHintKind=null;tsParameterNameHintKind=null};var $s=class{typeSetting=new js;parameterNames=new Fs};var Hs=class{constructor(e,t,n,o){this.rootUri=e;this.lspServerWorkspacePath=z(Us.dirname(t)),this.indexingDataLocation=z(o),this.loggerPath=z(Us.join(n,"lspLog"))}modules=[];clientType="intellij";indexingDataLocation="";completionSortSetting=new Os;gutterIconsSetting=new _s;inlayHintsSetting=new $s;lspMaxOldSpaceSize="8192";projectType="OHOS";loggerPath="";lspServerWorkspacePath};import*as bh from"path";var qo=class{productName="default";buildModeName="debug";targetName="default";arkTSVersion="1.1";resourceDirectories=[];targetESVersion="ES2021";maxFlowDepth=2e3;caseSensitiveCheck=!0;tsImportSendable=!1;compatibleSdkVersionStage="";useNormalizedOHMUrl=!0;reExportCheckMode="noCheck";skipOhModulesLint=!1;byteCodeHar=!0;obfuscationRuleOptionsEnable=!1;enableStrictCheckOHModules=!1;sourceRoots=[];constructor(e){e&&this.resourceDirectories.push(z(bh.join(e,"src","main","resources")))}};var Ik="OS",Mn=class{deviceType=[5];aceLoaderPath;modulePath;jsComponentType="declarative";sdkJsPath;compatibleSdkVersion;compatibleSdkLevel;compileSdkLevel;compileSdkVersion="6.0.1.112";compileSdkType="Release";syscap={NDeviceSysCaps:[],addedSysCaps:[]};apiType="stageMode";hosSdkPath;runtimeOs=`Harmony${Ik}`;moduleName;moduleType;compileMode="jsbundle";crossPlatform=!1;ignoreCrossPlatform=!1;packageManagerType="ohpm";permissions=[];testPermissions=[];buildProfileParam;appParam={bundleType:"app"};packageName;projectType="OHOS";projectName;moduleDependencies;moduleJsonParam=null;globalDeclarationFiles=[];constructor(e){e?(this.modulePath=e,this.buildProfileParam=new qo(e)):this.buildProfileParam=new qo}toString(){return JSON.stringify(this)}};var On=class{constructor(e=[]){this.pages=e}pagesFileName="main_pages.json";metaDataList=[]};import*as Me from"path";import*as Fn from"fs";var Bs=class{modulePath;dependencies={};dynamicDependencies={}};var Yr=class{registryType;resolved;name;version;type;constructor(e){let t=typeof e=="object"&&e!==null?e:{};this.name=typeof t.name=="string"?t.name:"",this.version=typeof t.version=="string"?t.version:"",typeof t.registryType=="string"?this.registryType=t.registryType:this.registryType=typeof t.path=="string"?"local":"ohpm",typeof t.resolved=="string"?this.resolved=t.resolved:typeof t.storePath=="string"?this.resolved=t.storePath:this.resolved="",this.type=typeof t.type=="string"?t.type:void 0}};var _n=class{constructor(e,t,n){this.projectPath=e;this.moduleName=t;this.modulePath=n}dependencies=[];devDependencies=[];dynamicDependencies=[];finalDependencies=[];finalDevDependencies=[];finalDynamicDependencies=[]};import*as qt from"path";import*as Ws from"fs";var jn=class{name="";version="";storePath="";dependencyPath="";path=""};var _={HVIGOR_CACHE:".hvigor",DEPENDENCY:"dependencyMap",JSON5:".json5",KEY_DEPENDENCY:"dependencies",KEY_DYNAMIC_DEPENDENCY:"dynamicDependencies",KEY_DEV_DEPENDENCY:"devDependencies",OH_MODULES_PATH:"oh_modules",OHPM_PATH:".ohpm",LOCK_JSON5_FILE:"lock.json5",OH_PACKAGE_JSON5:De.OH_PACKAGE_JSON5},zo=`${_.HVIGOR_CACHE}/${_.DEPENDENCY}`,Kr=`${_.DEPENDENCY}${_.JSON5}`,hV=De.SYNC_OUTPUT_PATH;var Jo=class r{dependencyPath;modulePath;projectPath;static FILE_DEPENDENCY_PREFIX="file:";static PARAMETER_PREFIX="@param:";fileSpecPattern;fileNameForOhpm=/[.](?:har|tgz|tar.gz|tar)$/;static PACKAGE_JSON_PARSER_MAP=new Map;dependencies=[];devDependencies=[];dynamicDependencies=[];static getInstance(e,t,n){let o=this.PACKAGE_JSON_PARSER_MAP.get(e);return o||(o=new r(e,t,n),this.PACKAGE_JSON_PARSER_MAP.set(e,o)),o}constructor(e,t,n){this.dependencyPath=e,this.modulePath=t,this.projectPath=n,this.fileSpecPattern=r.isWindows()?/^(?:[.]|~[/]|[/\\]|[a-zA-Z]:)/:/^(?:[.]|~[/]|[/]|[a-zA-Z]:)/}static isWindows(){return process.platform==="win32"}parseDependency(e){let t=qt.join(this.dependencyPath,_.OH_PACKAGE_JSON5),n=Je(t);n&&(this.dependencies=this.getDependencyList(n,_.KEY_DEPENDENCY),this.devDependencies=this.getDependencyList(n,_.KEY_DEV_DEPENDENCY),this.dynamicDependencies=this.getDependencyList(n,_.KEY_DYNAMIC_DEPENDENCY),e.dependencies=this.dependencies,e.dynamicDependencies=this.devDependencies,e.devDependencies=this.dynamicDependencies)}getDependencyList(e,t){let n=[];if(!R(e))return n;let o=e[t];if(!R(o))return n;for(let[i,s]of Object.entries(o)){if(typeof s!="string"){m.error(`${i} package dependency value is not String ${t}`);continue}let a=new jn;a.name=i;let c=s.replace(/\s/g,"");a.version=c,c.startsWith(r.PARAMETER_PREFIX)||this.parseDependencyPath(i,c,a,!1),n.push(a)}return n}parseDependencyPath(e,t,n,o){if(!(!e||!t))try{let i=qt.normalize(qt.join(this.modulePath,_.OH_MODULES_PATH,e));if(!(t.startsWith(r.FILE_DEPENDENCY_PREFIX)||this.fileSpecPattern.test(t))){n.dependencyPath=i;return}if(n.path=t,this.fileNameForOhpm.test(t)){n.dependencyPath=i;return}let s=t;if(t.startsWith(r.FILE_DEPENDENCY_PREFIX)&&(s=t.substring(r.FILE_DEPENDENCY_PREFIX.length)),qt.isAbsolute(s)){n.dependencyPath=i;return}o||(i=qt.resolve(this.modulePath,s)),Ws.existsSync(i)&&Ws.statSync(i).isDirectory()&&(n.dependencyPath=i)}catch(i){m.error("parser dependency path is invalid",i)}}};import*as Xr from"fs";import*as yr from"path";import Ak from"json5";var Vs=class r{projectPath;static FILE_DEPENDENCY_PREFIX="file:";static MAX_LOCK_FILE_SIZE=20*1024*1024;static MAX_KEYS_PER_OBJECT=5e4;static MAX_JSON_DEPTH=50;fileNameForOhpm=/[.](?:har|tgz|tar.gz|tar)$/;finalDependencies=[];finalDevDependencies=[];finalDynamicDependencies=[];storePathMap=new Map;lockFileCache=null;lockFileParsed=!1;constructor(e=""){this.projectPath=e}parseDependencies(e){if(!this.ensureLockFileParsed())return!1;let t=this.lockFileCache;return this.extractDependencies(t.modules,t.storePathMap,e),!0}ensureLockFileParsed(){if(this.lockFileParsed)return this.lockFileCache!==null;this.lockFileParsed=!0;let e=this.getLockFilePath(),t=this.readLockFile(e);if(!t)return!1;let n=this.validateLockFile(t);return n.valid?(this.lockFileCache={modules:n.modules,storePathMap:this.parseStorePathMap(n.packages)},!0):!1}getLockFilePath(){return yr.join(this.projectPath,_.OH_MODULES_PATH,_.OHPM_PATH,_.LOCK_JSON5_FILE)}static checkObjectDepth(e,t,n=0){if(n>t)return!1;if(typeof e!="object"||e===null)return!0;if(Array.isArray(e)){for(let o of e)if(!r.checkObjectDepth(o,t,n+1))return!1;return!0}for(let o in e)if(Object.prototype.hasOwnProperty.call(e,o)&&!r.checkObjectDepth(e[o],t,n+1))return!1;return!0}readLockFile(e){if(!Xr.existsSync(e))return m.error("lock file does not exist"),this.clearDependencies(),null;try{let t=Xr.statSync(e);if(t.size>r.MAX_LOCK_FILE_SIZE)return m.error(`lock file is too large (${t.size} bytes), read aborted`),this.clearDependencies(),null}catch(t){return m.error(`Failed to stat lock file: ${t instanceof Error?t.message:String(t)}`),this.clearDependencies(),null}try{let t=Xr.readFileSync(e,"utf8"),n=Ak.parse(t);return n?r.checkObjectDepth(n,r.MAX_JSON_DEPTH)?n:(m.error("lock.json5 nesting depth exceeds limit"),this.clearDependencies(),null):(m.error("lockFileJsonObject is null"),this.clearDependencies(),null)}catch(t){return m.error(`Error parsing lock.json5: ${t instanceof Error?t.message:String(t)}`),this.clearDependencies(),null}}validateLockFile(e){if(!R(e))return m.error("lockFileJsonObject is not a valid object"),this.clearDependencies(),{valid:!1};let t=e.modules;if(!t)return m.error("modulesJsonObject is null"),this.clearDependencies(),{valid:!1};let n=e.packages;return n?{valid:!0,modules:t,packages:n}:(m.error("packagesJsonObject is null"),this.clearDependencies(),{valid:!1})}extractDependencies(e,t,n){this.storePathMap=t,this.finalDependencies=this.getDependencyList(e,_.KEY_DEPENDENCY,n),this.finalDevDependencies=this.getDependencyList(e,_.KEY_DEV_DEPENDENCY,n),this.finalDynamicDependencies=this.getDependencyList(e,_.KEY_DYNAMIC_DEPENDENCY,n)}parseStorePathMap(e){let t=new Map;if(!R(e))return t;let n=0;for(let o in e){if(!Object.prototype.hasOwnProperty.call(e,o))continue;let i=e[o];if(!R(i)){m.error(`${o} value is not json object`);continue}if(++n>r.MAX_KEYS_PER_OBJECT){m.warn("lock.json5 packages object exceeds key limit, truncating");break}typeof i.storePath=="string"&&t.set(o,i.storePath)}return t}getDependencyList(e,t,n){if(!R(e))return[];let o=0;for(let i in e){if(!Object.prototype.hasOwnProperty.call(e,i))continue;if(++o>r.MAX_KEYS_PER_OBJECT){m.warn("lock.json5 modules object exceeds key limit, truncating");break}let s=e[i];if(R(s)){let a=typeof s.name=="string"?s.name:"";if(n==="."&&a===""||a===n)return this.getFinalDependencyList(e,t,i)}}return[]}getFinalDependencyList(e,t,n){let o=e[n];if(!R(o))return m.error("moduleJsonObject is null"),[];let i=[],s=o[t];if(!R(s))return[];let a=0;for(let c in s){if(!Object.prototype.hasOwnProperty.call(s,c))continue;if(++a>r.MAX_KEYS_PER_OBJECT){m.warn("lock.json5 dependencies object exceeds key limit, truncating");break}let l=s[c];if(!R(l))continue;let d=typeof l.specifier=="string"?l.specifier:"",g=typeof l.version=="string"?l.version:"",v=new jn;v.name=c,v.version=g.startsWith(r.FILE_DEPENDENCY_PREFIX)?g.substring(r.FILE_DEPENDENCY_PREFIX.length):g,this.parseDependencyPath(v,n,c,d,g);let P=`${c}@${g}`;this.storePathMap.has(P)&&(v.storePath=this.storePathMap.get(P)||""),i.push(v)}return i}parseDependencyPath(e,t,n,o,i){let s=yr.resolve(this.projectPath,yr.join(t,_.OH_MODULES_PATH,n));try{let a=i.startsWith(r.FILE_DEPENDENCY_PREFIX)?i.substring(r.FILE_DEPENDENCY_PREFIX.length):i,c=yr.isAbsolute(a)?a:yr.resolve(this.projectPath,a);Xr.existsSync(c)?(e.path=o,e.dependencyPath=this.fileNameForOhpm.test(i)?s:c):e.dependencyPath=s}catch(a){m.error("Invalid dependency path in lock.json5, msg:",a instanceof Error?a.message:String(a))}}clearDependencies(){this.finalDependencies=[],this.finalDevDependencies=[],this.finalDynamicDependencies=[]}};function Sh(r){return R(r)?typeof r.name=="string"&&typeof r.srcPath=="string":!1}var Zr=class{constructor(e,t){this.projectPath=e;this.sdkPath=t;this.moduleInfoParse=new Nt(this.projectPath)}moduleInfoParse;lockJson5Parser=null;sdkPkgCache=void 0;buildProfileCache=void 0;getAllDependencyMap(e){let t=this.projectPath,n=Me.join(t,zo),o=Me.join(n,Kr);if(!Fn.existsSync(n)||!Fn.existsSync(o)){let c="Dependency map or JSON not found";return m.warn(`[Parser] getAllDependencyMap failed: ${c}.`),{status:"ERROR",message:`${c}, please rebuild project`}}let i=new _n(this.projectPath,".",this.projectPath);this.parseProjectDependencies(n,i),this.parseLockJson(i);let s=this.moduleInfoParse.getAllModuleInfo();if(s.length===0){let c="No modules found in build-profile.json5";return m.warn(`[Parser] getAllDependencyMap failed: ${c}.`),{status:"ERROR",message:c}}let a=Date.now();for(let c=0;c<s.length;c++){let l=s[c];if(Sh(l)){try{S.assertModuleName(l.name)}catch{m.warn(`[Parser] Skipping module with invalid name: ${l.name}`);continue}this.parseSingleModule(l,n,i,e),(c+1)%100===0&&m.info(`[Parser] getAllDependencyMap progress: ${c+1}/${s.length} (${Date.now()-a}ms)`)}}return m.info(`[Parser] getAllDependencyMap parsed ${e.length} modules in ${Date.now()-a}ms`),{status:"OK"}}getDependenciesOnly(e){let t=[],n=this.projectPath,o=Me.join(n,zo),i=Me.join(o,Kr);if(!Fn.existsSync(o)||!Fn.existsSync(i))return m.warn("[Parser] Dependency map or JSON not found."),t;let s=e&&e.length>0?new Set(e.map(l=>l.trim()).filter(Boolean)):null,a=new _n(this.projectPath,".",this.projectPath);this.parseProjectDependencies(o,a),this.parseLockJson(a);let c=this.moduleInfoParse.getAllModuleInfo();if(c.length===0)return m.warn("[Parser] getAllDependencyMap failed: No modules found in build-profile.json5."),t;for(let l of c){if(!Sh(l))continue;let d=l.name;try{S.assertModuleName(d)}catch{m.warn(`[Parser] Skipping module with invalid name: ${d}`);continue}if(s&&!s.has(d))continue;let g=Me.resolve(this.projectPath,l.srcPath),v=Me.join(o,d),P=z(g),ie=this.buildModuleDependencies(d,P,v,a);ie.moduleName=d,t.push(ie)}return t}parseSingleModule(e,t,n,o){let i=e.name,s=Me.resolve(this.projectPath,e.srcPath),a=Me.join(t,i),c=z(s),l=new Mn(c),d=this.buildModuleDependencies(i,c,a,n);this.parseModuleJson5(c,l);let g=this.parseMainPages(c);this.parseSdkJson(l),this.parseCompatibleSdkVersion(l),l.moduleName=i,l.moduleType=i,l.packageName=i,l.moduleDependencies=d,l.moduleJsonParam=new On(g),o.push(l)}buildModuleDependencies(e,t,n,o){let i=new _n(this.projectPath,e,t);Jo.getInstance(n,t,this.projectPath).parseDependency(i),this.parseLockJson(i),i.finalDependencies.push(...o.finalDependencies),i.finalDevDependencies.push(...o.finalDevDependencies),i.finalDynamicDependencies.push(...o.finalDynamicDependencies),i.finalDependencies.push(...i.finalDevDependencies);let a=new Bs;return a.modulePath=t,this.toModuleDependencies(i,a),a}toModuleDependencies(e,t){let n={},o={};for(let i of e.finalDependencies)n[i.name]=new Yr(i);for(let i of e.finalDynamicDependencies)o[i.name]=new Yr(i);t.dependencies=n,t.dynamicDependencies=o}parseProjectDependencies(e,t){let n=Me.join(e,_.OH_PACKAGE_JSON5);if(!Fn.existsSync(n))return;Jo.getInstance(e,this.projectPath,this.projectPath).parseDependency(t)}parseLockJson(e){let t=this.getLockJson5Parser();t.parseDependencies(e.moduleName)?(e.finalDependencies=t.finalDependencies,e.finalDevDependencies=t.finalDevDependencies,e.finalDynamicDependencies=t.finalDynamicDependencies):(e.finalDependencies=e.dependencies,e.finalDevDependencies=e.devDependencies,e.finalDynamicDependencies=e.dynamicDependencies)}getLockJson5Parser(){return this.lockJson5Parser||(this.lockJson5Parser=new Vs(this.projectPath)),this.lockJson5Parser}parseModuleJson5(e,t){let n=Me.join(e,"src","main","module.json5"),o=Je(n);if(!R(o)||!R(o.module))return;let i=o.module;t.permissions=this.parseRequestPermissions(i),t.deviceType=this.parseDeviceTypes(i)}parseRequestPermissions(e){let t=[];if(R(e)&&Array.isArray(e.requestPermissions))for(let n of e.requestPermissions)R(n)&&typeof n.name=="string"&&t.push(n.name);return t}parseMainPages(e){let t=Me.join(e,"src","main","resources","base","profile","main_pages.json"),n=Je(t);return!R(n)||!Array.isArray(n.src)?[]:n.src.filter(o=>typeof o=="string")}parseSdkJson(e){let t=this.getSdkPkg();if(!(!R(t)||!R(t.data))){if(typeof t.data.apiVersion=="string"){let n=parseInt(t.data.apiVersion,10);!Number.isNaN(n)&&n>=26&&typeof t.data.platformVersion=="string"?e.compileSdkLevel=t.data.platformVersion:e.compileSdkLevel=t.data.apiVersion}typeof t.data.releaseType=="string"&&(e.compileSdkType=t.data.releaseType),typeof t.data.version=="string"&&(e.compileSdkVersion=t.data.version)}}getSdkPkg(){if(this.sdkPkgCache===void 0){let e=Me.join(this.sdkPath,"default","sdk-pkg.json");this.sdkPkgCache=Je(e)}return this.sdkPkgCache}parseCompatibleSdkVersion(e){let t=this.getBuildProfile();if(!R(t)||!R(t.app)||!Array.isArray(t.app.products)||t.app.products.length===0)return;let n=t.app.products[0];if(!R(n)||typeof n.compatibleSdkVersion!="string")return;let[o,i]=this.parseBySplit(n.compatibleSdkVersion);e.compatibleSdkVersion=o,e.compatibleSdkLevel=i}getBuildProfile(){if(this.buildProfileCache===void 0){let e=Me.join(this.projectPath,"build-profile.json5");this.buildProfileCache=Je(e)}return this.buildProfileCache}parseBySplit(e){let t=e.indexOf("(");if(t===-1||!e.endsWith(")"))return[e,e];let n=e.substring(0,t),o=e.substring(t+1,e.length-1);return[n,o]}parseDeviceTypes(e){return!R(e)||!Array.isArray(e.deviceTypes)?[]:e.deviceTypes.filter(t=>typeof t=="string").map(t=>this.getDeviceType(t))}getDeviceType(e){return{liteWearable:1,wearable:2,tv:3,car:4,phone:5,default:5,smartVision:6,tablet:7,router:8,pc:9,"2in1":10}[e]||0}};var Gs=class{constructor(e=[]){this.valueSet=e}};var $n=class{refreshSupport=!0;tokenTypes=["namespace","type","class","enum","interface","struct","parameter","variable","property","function","method"];tokenModifiers=["declaration","definition","readonly","static","deprecated"]};var Eh=(k=>(k[k.File=1]="File",k[k.Module=2]="Module",k[k.Namespace=3]="Namespace",k[k.Package=4]="Package",k[k.Class=5]="Class",k[k.Method=6]="Method",k[k.Property=7]="Property",k[k.Field=8]="Field",k[k.Constructor=9]="Constructor",k[k.Enum=10]="Enum",k[k.Interface=11]="Interface",k[k.Function=12]="Function",k[k.Variable=13]="Variable",k[k.Constant=14]="Constant",k[k.String=15]="String",k[k.Number=16]="Number",k[k.Boolean=17]="Boolean",k[k.Array=18]="Array",k[k.Object=19]="Object",k[k.Key=20]="Key",k[k.Null=21]="Null",k[k.EnumMember=22]="EnumMember",k[k.Struct=23]="Struct",k[k.Event=24]="Event",k[k.Operator=25]="Operator",k[k.TypeParameter=26]="TypeParameter",k))(Eh||{}),Ph=()=>Object.values(Eh).filter(r=>typeof r=="number");var qs=class{documentChanges=null;resourceOperations=null;failureHanding=null;normalizesLineEndings=null;changeAnnotationSupport=null};var zs=class{applyEdit=!0;workspaceEdit=new qs;didChangeConfiguration=null;didChangeWatchedFiles={relativePatternSupport:{},dynamicRegistration:{}};symbol=new Gs(Ph());executeCommand={dynamicRegistration:{}};workspaceFolders=!1;configuration=!1;semanticTokens=new $n;codeLens=null;fileOperations=null;inlayHint=null;diagnostics=null};var Js=class{willSave=!0;willSaveWaitUntil=!0;didSave=!0;dynamicRegistration=null};var Ys=class{constructor(e=[]){this.valueSet=e}};var Ks=class{snippetSupport=!0;commitCharactersSupport=null;documentationFormat=null;deprecateSupport=null;preselectSupport=null;tagSupport=null;insertReplaceSupport=null;resolveSupport=null;insertTextModeSupport=null;labelDetailsSupport=null};var Ch=(D=>(D[D.Text=1]="Text",D[D.Method=2]="Method",D[D.Function=3]="Function",D[D.Constructor=4]="Constructor",D[D.Field=5]="Field",D[D.Variable=6]="Variable",D[D.Class=7]="Class",D[D.Interface=8]="Interface",D[D.Module=9]="Module",D[D.Property=10]="Property",D[D.Unit=11]="Unit",D[D.Value=12]="Value",D[D.Enum=13]="Enum",D[D.Keyword=14]="Keyword",D[D.Snippet=15]="Snippet",D[D.Color=16]="Color",D[D.File=17]="File",D[D.Reference=18]="Reference",D[D.Folder=19]="Folder",D[D.EnumMember=20]="EnumMember",D[D.Constant=21]="Constant",D[D.Struct=22]="Struct",D[D.Event=23]="Event",D[D.Operator=24]="Operator",D[D.TypeParameter=25]="TypeParameter",D))(Ch||{}),kh=()=>Object.values(Ch).filter(r=>typeof r=="number");var Xs=class{completionItemKind=new Ys(kh());completionItem=new Ks;contextSupport=null;insertTextSupport=null;completionList=null;dynamicRegistration=null};var Zs=class{synchronization=new Js;completion=new Xs;hover={contentFormat:{},dynamicRegistration:{}};signatureHelp={signatureInformation:{},contextSupport:{},dynamicRegistration:{}};references={dynamicRegistration:{}};documentHighlight={dynamicRegistration:!0};documentSymbol=null;formatting={dynamicRegistration:{}};rangeFormatting={dynamicRegistration:{}};onTypeFormatting={dynamicRegistration:{}};declaration={};definition={linkSupport:{},dynamicRegistration:{}};codeLens=null;documentLink={tooltipSupport:{},dynamicRegistration:{}};colorProvider=null;rename={prepareSupport:!0,prepareSupportDefaultBehavior:null,honorsChangeAnnotations:null,dynamicRegistrationSupport:null};publishDiagnostics=null;foldingRage=null;typeHierarchy=null;callHierarchy={dynamicRegistration:{}};selectionRange=null;semanticTokens=new $n;moniker=null;linkedEditingRange=null;inlayHint=null;inlineValue=null;diagnostic=null};var Qs=class{workspace=new zs;textDocument=new Zs;notebookDocument=null;window=null;general=null;experimental=null};var ea=class{constructor(e,t,n){this.rootUri=e;this.initializationOptions=t;this.capabilities=n}};var ta=class{constructor(e,t,n,o,i,s=!0){this.sdkPath=e;this.rootUri=n;this.nodeMaxOldSpaceSize=i;this.useStandardProtocol=s;this.serverPath=ro(t,this.useStandardProtocol),this.logPath=Su(),this.indexLogPath=o||this.logPath;let a={serverPath:this.serverPath,logPath:this.logPath,indexingDataLocation:this.indexLogPath};this.messageHandle=this.useStandardProtocol?new Ls(a):new Ms(a),this.messageHandle.setBroadcastToClients(c=>this.onLspMessage(c))}messageHandle;get stdHandle(){return this.messageHandle}get legacyHandle(){return this.messageHandle}get lspPid(){return this.messageHandle.lspPid}onAsyncOpenFile(e){this.legacyHandle.onAsyncOpenFile(e)}closeFileLegacy(e,t){this.legacyHandle.closeFile(e,t)}serverPath;logPath;lastStartErrorMessage=null;currentParams=null;indexLogPath;lastDepsOnlyForDiff=[];get currentModuleModels(){return this.currentParams?.initializationOptions?.modules??[]}async start(e,t){let n=!1;try{m.info(`serverPath: ${this.serverPath}`),m.info(`rootUri: ${this.rootUri}`),m.info(`sdkPath: ${this.sdkPath}`),m.info(`logPath: ${this.logPath}`);let o=mt(this.rootUri),i=new Hs(o,this.serverPath,this.logPath,this.indexLogPath),s=[],c=new Zr(this.rootUri,this.sdkPath).getAllDependencyMap(s);if(c.status==="ERROR")throw new Error(`${c.message}`);this.fillModuleModelsPaths(s),i.modules=s;let l=Ni(s.length,this.nodeMaxOldSpaceSize);if(await this.messageHandle.start(l),this.currentParams=new ea(o,i,new Qs),this.useStandardProtocol){let d=this.messageHandle;await d.sendInitializeResettable(this.currentParams,rt),m.info("[LSP] initialize response received"),d.broadcastToClients({jsonrpc:T,method:y.ARKTS_INDEXING_PROGRESS,params:{}}),d.sendInitialized()}else await this.startLegacy(this.currentParams,e);n=!0}catch(o){this.lastStartErrorMessage=o instanceof Error?o.message:String(o),m.error(`[LSP] Initialization failed: ${this.lastStartErrorMessage}`),await this.messageHandle.stop()}t?.(n)}async startLegacy(e,t){let n=this.messageHandle;n.sendInitialize(e,1),n.onIndexingProgressUpdate(()=>{this.onLspMessage({jsonrpc:T,method:y.ARKTS_INDEXING_PROGRESS,params:{}})}),await this.withResettableTimeout((o,i)=>{n.onIndexingProgressUpdate(i),n.onInitializationCompleted(o)},"LSP initialization",rt),n.sendInitialized(t)}withResettableTimeout(e,t,n){return new Promise((o,i)=>{let s,a=()=>{s=setTimeout(()=>{i(new Error(`${t} timeout after ${n}ms`))},n)},c=()=>{clearTimeout(s),a()};a(),e(()=>{clearTimeout(s),o()},c)})}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}onLspMessage=()=>{};setOnMessage(e){this.onLspMessage=e}registerDiagnosticCallback(e){m.info(`[LSP] registerDiagnosticCallback uri='${e}', useStandardProtocol=${this.useStandardProtocol}`),this.messageHandle.registerRequestCallback(e,(t,n)=>{let o=R(n)?n:{};m.info(`[LSP] onDiagnosticCompleted called, uri: ${e}`);let i={jsonrpc:T,method:t,params:{uri:typeof o.uri=="string"?o.uri:e,diagnostics:Array.isArray(o.diagnostics)?o.diagnostics:[],...typeof o.errorMessage=="string"?{errorMessage:o.errorMessage}:{}}};this.onLspMessage(i)})}async hover(e){let t=e.textDocument.uri;return this.registerDiagnosticCallback(t),this.stdHandle.sendLspRequest(y.HOVER,e)}async definition(e){return this.stdHandle.sendLspRequest(y.DEFINITION,e)}async references(e){return this.stdHandle.sendLspRequest(y.REFERENCES,e)}async completion(e){return this.stdHandle.sendLspRequest(y.COMPLETION,e)}async documentSymbol(e){return this.stdHandle.sendLspRequest(y.DOCUMENT_SYMBOL,e)}async diagnostic(e){return this.stdHandle.sendLspRequest(y.DIAGNOSTIC,e,120*1e3)}async sendFeatureRequest(e,t){return this.stdHandle.sendLspRequest(e,t)}reloadDependenciesOnly(e){let t=e?.fullReload??!1,n=new Zr(this.rootUri,this.sdkPath),o=this.getModuleModelsByName();if(t){m.info("[LspServerProxy] Project-level oh-package changed, parsing all modules' dependencies");let l=n.getDependenciesOnly();this.markDependencyTypesIncremental(l);let d=this.mergeDepsOnlyIntoModuleList(l,o);return this.applyModuleModelsUpdate(d),this.sendDidChangeConfiguration({moduleSet:d}),m.info(`[LspServerProxy] Dependencies only (all) reloaded, count: ${d.length}`),this.lastDepsOnlyForDiff=l,l}let i=e?.changedModules??[],s=new Set(e?.removedModuleNames??[]);if(i.length===0&&s.size===0)return m.info("[LspServerProxy] No changed/removed modules, skip dependency reload"),[];m.info(`[LspServerProxy] Module-level deps changed, parsing: [${i.join(", ")}]`);let a=n.getDependenciesOnly(i);this.markDependencyTypesIncremental(a);let c=this.mergeIncrementalDeps(this.currentModuleModels,s,a);return this.applyModuleModelsUpdate(c),this.sendDidChangeConfiguration({moduleSet:c}),m.info(`[LspServerProxy] Dependencies only (incremental) reloaded, count: ${c.length}`),this.lastDepsOnlyForDiff=a,a}sendDidChangeConfiguration(e){this.stdHandle.sendDidChangeConfiguration(e)}getModuleModelsByName(){return new Map(this.currentModuleModels.map(e=>[e.moduleName??"",e]))}markDependencyTypesIncremental(e){let t=this.getModuleModelsByName(),n=new Map(this.lastDepsOnlyForDiff.map(o=>[o.moduleName??"",o]));for(let o of e){let i=o.moduleName??"",{oldDeps:s,oldDynamic:a}=this.getOldDepsForModule(i,t,n),c=o.dependencies??{},l=o.dynamicDependencies??{};this.markAddAndDeleteInDeps(s,c,(d,g)=>{(o.dependencies??={})[d]=this.makeDeleteEntry(d,g)}),this.markAddAndDeleteInDeps(a,l,(d,g)=>{(o.dynamicDependencies??={})[d]=this.makeDeleteEntry(d,g)})}}getOldDepsForModule(e,t,n){let o=t.get(e),i=o?.moduleDependencies?.dependencies??{},s=o?.moduleDependencies?.dynamicDependencies??{};if(Object.keys(i).length===0&&Object.keys(s).length===0){let a=n.get(e);a&&(i=a.dependencies??{},s=a.dynamicDependencies??{})}return{oldDeps:i,oldDynamic:s}}markAddAndDeleteInDeps(e,t,n){for(let o of Object.keys(t))o in e||(t[o].type="add");for(let o of Object.keys(e))o in t||n(o,e[o])}makeDeleteEntry(e,t){return new Yr({name:e,version:t?.version??"",registryType:t?.registryType??"ohpm",resolved:t?.resolved??"",type:"delete"})}createMinimalModelFromDepsItem(e){let t=new Mn(e.modulePath);return t.moduleName=e.moduleName,t.moduleType=e.moduleName,t.packageName=e.moduleName,t.moduleJsonParam=new On([]),t.modulePath=e.modulePath,t.moduleDependencies=e,t}mergeDepsOnlyIntoModuleList(e,t){let n=[];for(let o of e){let i=o.moduleName??"",s=t.get(i);s?(s.modulePath=o.modulePath,s.moduleDependencies=o):s=this.createMinimalModelFromDepsItem(o),n.push(s)}return n}mergeIncrementalDeps(e,t,n){let o=new Map(n.map(s=>[s.moduleName??"",s])),i=[];for(let s of e){let a=s.moduleName??"";if(t.has(a))continue;let c=o.get(a);c&&(s.modulePath=c.modulePath,s.moduleDependencies=c,o.delete(a)),i.push(s)}for(let[,s]of o)i.push(this.createMinimalModelFromDepsItem(s));return i}applyModuleModelsUpdate(e){this.fillModuleModelsPaths(e),this.currentParams&&(this.currentParams.initializationOptions.modules=e)}fillModuleModelsPaths(e){let t=this.sdkPath,n=dn(Cl.join(t,"default/openharmony/ets/build-tools/ets-loader")),o=dn(Cl.join(t,"default/openharmony/ets/api")),i=dn(Cl.join(t,"default/hms"));for(let s of e)s.aceLoaderPath=n,s.sdkJsPath=o,s.hosSdkPath=i}sendRequest(e){switch(e.method){case y.HOVER:this.stdHandle.sendLspRequest(y.HOVER,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;case y.DEFINITION:this.stdHandle.sendLspRequest(y.DEFINITION,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;case y.REFERENCES:this.stdHandle.sendLspRequest(y.REFERENCES,e.params).then(t=>this.onLspMessage({jsonrpc:T,id:e.id,result:t}),t=>this.onLspMessage({jsonrpc:T,id:e.id,error:{code:-32603,message:t.message}}));break;default:m.warn(`Unhandled LSP request: ${e.method}`)}}sendNotification(e){if(!hh(e)){m.info("LspServerProxy, msg is not notification request, ignore.");return}switch(e.method){case y.DID_OPEN:this.handleDidOpenNotification(e);break;case y.DID_CHANGE:this.handleDidChangeNotification(e);break;case y.DID_CLOSE:this.handleDidCloseNotification(e);break;case y.WORKSPACE_DID_CHANGE_WATCHED_FILES:this.handleDidChangeWatchedFiles(e);break;case y.DID_CREATE_FILES:this.handleDidCreateFiles(e);break;case y.DID_DELETE_FILES:this.handleDidDeleteFiles(e);break;default:m.warn(`Unhandled LSP notification: ${e.method}`)}}handleDidOpenNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){m.error("Invalid textDocument/didOpen params");return}this.stdHandle.sendDidOpen(t)}handleDidChangeNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){m.error("Invalid textDocument/didChange params");return}this.stdHandle.sendDidChange(t)}handleDidCloseNotification(e){let t=e.params;if(!t||!t.textDocument||typeof t.textDocument.uri!="string"){m.error("Invalid textDocument/didClose params");return}this.stdHandle.closeFile(t)}handleDidChangeWatchedFiles(e){let t=e.params;!t||!Array.isArray(t.changes)||this.messageHandle.onDidChangeWatchedFiles(t.changes)}handleDidCreateFiles(e){let t=e.params;!t||!Array.isArray(t.files)||this.stdHandle.sendNotification(y.DID_CREATE_FILES,t)}handleDidDeleteFiles(e){let t=e.params;!t||!Array.isArray(t.files)||this.stdHandle.sendNotification(y.DID_DELETE_FILES,t)}async dispose(){await this.messageHandle.stop()}};import*as zt from"fs";import*as Be from"path";import{createHash as Rk}from"crypto";import{EventEmitter as Tk}from"events";var ra=class extends Tk{constructor(t,n=500){super();this.projectRoot=t;this.debounceMs=n}watchers=new Map;debounceTimers=new Map;contentHashes=new Map;buildProfileWatcher=null;lastModulesSnapshot="";lastModules=[];debounceMs;start(){let t=this.parseModulesFromBuildProfile();this.lastModules=t,this.lastModulesSnapshot=this.computeModulesSnapshot(t),this.refreshWatchTargets(),this.watchBuildProfile()}refreshWatchTargets(){let t=new Set(this.collectWatchTargets()),n=new Set(this.watchers.keys());for(let o of t)n.has(o)||this.watchFile(o);for(let o of n)t.has(o)||(this.unwatchFile(o),m.info(`[ConfigFileWatcher] Stopped watching: ${o}`));m.info(`[ConfigFileWatcher] Watching ${this.watchers.size} oh-package.json5 file(s)`)}watchBuildProfile(){let t=this.getBuildProfilePath();if(!zt.existsSync(t)){m.warn(`[ConfigFileWatcher] build-profile.json5 not found at ${t}, cannot watch for module changes`);return}try{this.buildProfileWatcher=zt.watch(t,n=>{n==="change"&&this.onBuildProfileChanged()}),this.buildProfileWatcher.on("error",n=>{m.error(`[ConfigFileWatcher] build-profile.json5 watch error: ${n.message}`)}),m.info(`[ConfigFileWatcher] Watching module registry: ${t}`)}catch(n){m.error(`[ConfigFileWatcher] Failed to watch build-profile.json5: ${n instanceof Error?n.message:String(n)}`)}}emitModuleAddedEvents(t,n){for(let o of t){let i=Be.resolve(this.projectRoot,o.srcPath);this.emit("configChanged",{source:"buildProfile",kind:1,filePath:i,relativePath:o.srcPath,timestamp:n,moduleName:o.name})}}emitModuleRemovedEvents(t,n){for(let o of t){let i=Be.resolve(this.projectRoot,o.srcPath);this.emit("configChanged",{source:"buildProfile",kind:2,filePath:i,relativePath:o.srcPath,timestamp:n,removedModuleName:o.name})}}emitModuleRenamedEvents(t,n){for(let o of t){let i=Be.resolve(this.projectRoot,o.after.srcPath);this.emit("configChanged",{source:"buildProfile",kind:3,filePath:i,relativePath:o.after.srcPath,timestamp:n,moduleName:o.after.name,removedModuleName:o.before.name})}}emitModuleMovedEvents(t,n){for(let o of t){let i=Be.resolve(this.projectRoot,o.after.srcPath);this.emit("configChanged",{source:"buildProfile",kind:6,filePath:i,relativePath:o.after.srcPath,timestamp:n,moduleName:o.after.name})}}processBuildProfileDiff(t){this.refreshWatchTargets();let n=Date.now();this.emitModuleAddedEvents(t.added,n),this.emitModuleRemovedEvents(t.removed,n),this.emitModuleRenamedEvents(t.renamed,n),this.emitModuleMovedEvents(t.moved,n)}onBuildProfileChanged(){let t="__build_profile__",n=this.debounceTimers.get(t);n&&clearTimeout(n);let o=setTimeout(()=>{this.debounceTimers.delete(t);let i=this.parseModulesFromBuildProfile(),s=this.computeModulesSnapshot(i);if(s===this.lastModulesSnapshot){m.info("[ConfigFileWatcher] build-profile.json5 changed but modules unchanged, skipping");return}let a=this.diffModules(this.lastModules,i);this.lastModules=i,this.lastModulesSnapshot=s,m.info(`[ConfigFileWatcher] build-profile.json5 modules changed, added=${a.added.length}, removed=${a.removed.length}, renamed=${a.renamed.length}, moved=${a.moved.length}`),this.processBuildProfileDiff(a)},this.debounceMs);this.debounceTimers.set(t,o)}computeModulesSnapshot(t){return t.map(o=>`${o.name}::${o.srcPath}`).sort().join("|")}diffModules(t,n){let o=this.buildModuleMatchState(n),i={added:[],removed:[],renamed:[],moved:[]};return this.matchExactModules(t,o),this.matchRenamedModules(t,o,i),this.matchMovedModules(t,o,i),this.collectRemovedModules(t,o,i),this.collectAddedModules(n,o,i),i}buildModuleMatchState(t){let n=new Map,o=new Map;for(let i of t)n.set(i.srcPath,i),o.set(i.name,i);return{matchedOld:new Set,matchedNew:new Set,newBySrc:n,newByName:o}}matchExactModules(t,n){for(let o of t){let i=n.newBySrc.get(o.srcPath);i&&i.name===o.name&&(n.matchedOld.add(o),n.matchedNew.add(i))}}matchRenamedModules(t,n,o){for(let i of t){if(n.matchedOld.has(i))continue;let s=n.newBySrc.get(i.srcPath);s&&!n.matchedNew.has(s)&&s.name!==i.name&&(o.renamed.push({before:i,after:s}),n.matchedOld.add(i),n.matchedNew.add(s))}}matchMovedModules(t,n,o){for(let i of t){if(n.matchedOld.has(i))continue;let s=n.newByName.get(i.name);s&&!n.matchedNew.has(s)&&s.srcPath!==i.srcPath&&(o.moved.push({before:i,after:s}),n.matchedOld.add(i),n.matchedNew.add(s))}}collectRemovedModules(t,n,o){for(let i of t)n.matchedOld.has(i)||o.removed.push(i)}collectAddedModules(t,n,o){for(let i of t)n.matchedNew.has(i)||o.added.push(i)}parseModulesFromBuildProfile(){let t=this.getBuildProfilePath();try{let n=Je(t);if(typeof n!="object"||n===null)return[];let o=n.modules;return Array.isArray(o)?o.filter(i=>{if(typeof i!="object"||i===null)return!1;let s=i;return typeof s.name=="string"&&typeof s.srcPath=="string"}):[]}catch(n){return m.warn(`[ConfigFileWatcher] Failed to parse build-profile.json5: ${n instanceof Error?n.message:String(n)}`),[]}}collectWatchTargets(){let t=[],n=Be.join(this.projectRoot,_.OH_PACKAGE_JSON5);zt.existsSync(n)&&t.push(n);let o=this.parseModulesFromBuildProfile();for(let i of o){let s=Be.resolve(this.projectRoot,i.srcPath),a=Be.join(s,_.OH_PACKAGE_JSON5);zt.existsSync(a)&&t.push(a)}return t}getBuildProfilePath(){return Be.join(this.projectRoot,"build-profile.json5")}computeFileHash(t){try{let n=zt.readFileSync(t,"utf-8");return Rk("sha256").update(n).digest("hex")}catch{return null}}watchFile(t){if(!this.watchers.has(t))try{let n=this.computeFileHash(t);n&&this.contentHashes.set(t,n);let o=zt.watch(t,i=>{i==="change"&&this.onFileChanged(t)});o.on("error",i=>{m.error(`[ConfigFileWatcher] Watch error for ${t}: ${i.message}`)}),this.watchers.set(t,o)}catch(n){m.error(`[ConfigFileWatcher] Failed to watch ${t}: ${n instanceof Error?n.message:String(n)}`)}}unwatchFile(t){let n=this.watchers.get(t);n&&(n.close(),this.watchers.delete(t)),this.contentHashes.delete(t);let o=this.debounceTimers.get(t);o&&(clearTimeout(o),this.debounceTimers.delete(t))}onFileChanged(t){let n=this.debounceTimers.get(t);n&&clearTimeout(n);let o=setTimeout(()=>{this.debounceTimers.delete(t);let i=this.computeFileHash(t);if(!i){m.warn(`[ConfigFileWatcher] Could not read file for hash: ${t}`);return}if(this.contentHashes.get(t)===i){m.info(`[ConfigFileWatcher] File touched but content unchanged, skipping: ${t}`);return}this.contentHashes.set(t,i),m.info(`[ConfigFileWatcher] Config file content changed: ${t}`);let a={source:"ohPackage",kind:4,filePath:t,fileName:Be.basename(t),relativePath:Be.relative(this.projectRoot,t),timestamp:Date.now()};this.emit("configChanged",a)},this.debounceMs);this.debounceTimers.set(t,o)}stop(){for(let[,t]of this.watchers)t.close();this.watchers.clear(),this.buildProfileWatcher&&(this.buildProfileWatcher.close(),this.buildProfileWatcher=null);for(let t of this.debounceTimers.values())clearTimeout(t);this.debounceTimers.clear(),this.contentHashes.clear(),m.info("[ConfigFileWatcher] All watchers stopped")}};import*as vr from"fs";import*as yt from"path";import{createHash as xk}from"crypto";import{EventEmitter as Lk}from"events";var na=class extends Lk{constructor(t,n=500){super();this.projectRoot=t;this.debounceMs=n,this.coalesceMs=n+300,this.depMapDir=yt.join(t,zo)}dirWatcher=null;contentHashes=new Map;lastModules=[];debounceMs;depMapDir;pendingTags=[];pendingRenames=[];coalesceTimer=null;coalesceMs;fullScanTimer=null;pollInterval=null;initialScanDone=!1;start(){if(!vr.existsSync(this.depMapDir)){m.warn(`[DependencyMapWatcher] dependencyMap dir not found: ${this.depMapDir}, skip watching`);return}this.lastModules=this.parseModulesFromDepMap();try{this.dirWatcher=vr.watch(this.depMapDir,{recursive:!0},(t,n)=>this.onDirEvent(t,n)),this.dirWatcher.on("error",t=>{m.error(`[DependencyMapWatcher] Directory watch error for ${this.depMapDir}: ${t.message}`)})}catch(t){m.error(`[DependencyMapWatcher] Failed to watch directory ${this.depMapDir}: ${t instanceof Error?t.message:String(t)}`);return}this.pollInterval=setInterval(()=>this.scanAllCacheFiles(),2500),m.info(`[DependencyMapWatcher] Started, watching directory (recursive): ${this.depMapDir}, modules: [${this.lastModules.map(t=>t.name).join(", ")}]`)}canonicalPath(t){return z(yt.resolve(t))}onDirEvent(t,n){if(!n||typeof n!="string")return;let o=n.replace(/\\/g,"/"),i;if(o===_.OH_PACKAGE_JSON5)i="root-oh-package";else if(o===Kr)i="dep-map-json";else{let a=o.match(/^([^/]+)\/oh-package\.json5$/);i=a?`module:${a[1]}`:""}if(!i)return;let s=yt.join(this.depMapDir,n);vr.existsSync(s)&&this.scheduleDebouncedFullScan()}stop(){this.dirWatcher&&(this.dirWatcher.close(),this.dirWatcher=null),this.fullScanTimer&&(clearTimeout(this.fullScanTimer),this.fullScanTimer=null),this.pollInterval&&(clearInterval(this.pollInterval),this.pollInterval=null),this.coalesceTimer&&(clearTimeout(this.coalesceTimer),this.coalesceTimer=null),this.pendingTags=[],this.pendingRenames=[],this.contentHashes.clear(),this.initialScanDone=!1,m.info("[DependencyMapWatcher] All watchers stopped")}scheduleDebouncedFullScan(){this.fullScanTimer&&clearTimeout(this.fullScanTimer),this.fullScanTimer=setTimeout(()=>{this.fullScanTimer=null,this.scanAllCacheFiles()},this.debounceMs)}scanAllCacheFiles(){let t=yt.join(this.depMapDir,_.OH_PACKAGE_JSON5),n=yt.join(this.depMapDir,Kr),o=this.parseModulesFromDepMap(),i=[{path:t,tag:"root-oh-package"},{path:n,tag:"dep-map-json"},...o.map(s=>({path:(S.assertModuleName(s.name),yt.join(this.depMapDir,s.name,_.OH_PACKAGE_JSON5)),tag:`module:${s.name}`}))];for(let{path:s,tag:a}of i){if(!vr.existsSync(s))continue;let c=this.canonicalPath(s),l=this.computeFileHash(s);if(!l)continue;let d=this.contentHashes.get(c);if(!this.initialScanDone){this.contentHashes.set(c,l);continue}d!==l&&(this.contentHashes.set(c,l),m.info(`[DependencyMapWatcher] Cache file changed: ${s} (tag=${a})`),this.scheduleCoalescedReload(a))}this.initialScanDone||(this.initialScanDone=!0)}parseModulesFromDepMap(){let t=yt.join(this.depMapDir,Kr);try{let n=Je(t);if(typeof n!="object"||n===null)return[];let o=n.modules;return Array.isArray(o)?o.filter(i=>{if(typeof i!="object"||i===null)return!1;let s=i;return typeof s.name=="string"&&typeof s.srcPath=="string"}):[]}catch(n){return m.warn(`[DependencyMapWatcher] Failed to parse dependencyMap.json5: ${n instanceof Error?n.message:String(n)}`),[]}}scheduleCoalescedReload(t){this.pendingTags.push(t),t==="dep-map-json"&&this.applyDepMapJsonDiff(),this.coalesceTimer&&clearTimeout(this.coalesceTimer),this.coalesceTimer=setTimeout(()=>{this.coalesceTimer=null,this.flushPendingReload()},this.coalesceMs)}collectPendingState(){let t=this.pendingTags,n=this.pendingRenames;return this.pendingTags=[],this.pendingRenames=[],{tags:t,renameEntries:n}}processTagsIntoSets(t,n,o,i){for(let s of t)s.startsWith("module:")?(o.add(s.substring(7)),n.add("moduleDepsChanged")):s.startsWith("dep-added:")?(o.add(s.substring(10)),n.add("moduleAdded")):s.startsWith("dep-removed:")&&(i.add(s.substring(12)),n.add("moduleRemoved"))}processRenameEntries(t,n,o,i,s){for(let a of t)s.push(a.info),o.add(a.info.newName),i.add(a.info.oldName),n.add(a.kind)}buildAddedNamesSet(t,n){let o=new Set;for(let i of t)i.startsWith("dep-added:")&&o.add(i.substring(10));for(let i of n)o.add(i.info.newName);return o}emitIncrementalReload(t,n,o,i,s){m.info(`[DependencyMapWatcher] Coalesced \u2192 kinds=[${[...t].join(",")}], changed=[${[...n].join(",")}], removed=[${[...o].join(",")}], added=[${[...i].join(",")}], renames=[${s.map(a=>`${a.oldName}\u2192${a.newName}`).join(",")}]`),this.emit("reload",{fullReload:!1,kinds:[...t],changedModules:[...n],removedModuleNames:[...o],addedModuleNames:[...i],renames:s.length>0?s:void 0})}flushPendingReload(){let{tags:t,renameEntries:n}=this.collectPendingState();if(t.length===0&&n.length===0)return;if(m.info(`[DependencyMapWatcher] Flushing coalesced reload, tags=[${t.join(", ")}], renames=${n.length}`),t.includes("root-oh-package")){m.info("[DependencyMapWatcher] Root oh-package.json5 in batch \u2192 full reload"),this.emit("reload",{fullReload:!0,kinds:["projectDepsChanged"]});return}let o=new Set,i=new Set,s=new Set,a=[];this.processTagsIntoSets(t,o,i,s),this.processRenameEntries(n,o,i,s,a);for(let l of i)s.delete(l);if(i.size===0&&s.size===0&&a.length===0){m.info("[DependencyMapWatcher] Coalesced batch has no effective changes, skipping");return}let c=this.buildAddedNamesSet(t,n);this.emitIncrementalReload(o,i,s,c,a)}normalizeSrcPath(t){return z(t).replace(/^\.\//,"").replace(/\/$/,"")}buildModuleLookupMaps(t){let n=new Map(t.map(i=>[i.name,i])),o=new Map(t.map(i=>[this.normalizeSrcPath(i.srcPath),i]));return{byName:n,bySrcPath:o}}detectModuleRenames(t,n,o,i){for(let[s,a]of t){let c=n.get(s);if(!c||c.name===a.name)continue;this.pendingRenames.push({kind:"moduleRenamed",info:{oldName:a.name,newName:c.name,oldSrcPath:a.srcPath,newSrcPath:c.srcPath,kind:"moduleRenamed"}}),o.add(a.name),i.add(c.name);let l=(S.assertModuleName(a.name),yt.join(this.depMapDir,a.name,_.OH_PACKAGE_JSON5));this.contentHashes.delete(this.canonicalPath(l)),m.info(`[DependencyMapWatcher] Module renamed: ${a.name} \u2192 ${c.name} (srcPath=${s})`)}}detectModuleMoves(t,n,o,i){for(let[s,a]of t){if(o.has(s))continue;let c=n.get(s);!c||c.srcPath===a.srcPath||(this.pendingRenames.push({kind:"moduleMoved",info:{oldName:a.name,newName:c.name,oldSrcPath:a.srcPath,newSrcPath:c.srcPath,kind:"moduleMoved"}}),o.add(s),i.add(s),m.info(`[DependencyMapWatcher] Module moved: ${s} srcPath ${a.srcPath} \u2192 ${c.srcPath}`))}}detectAddedModules(t,n,o){for(let[i]of t)o.has(i)||n.has(i)||(this.pendingTags.push(`dep-added:${i}`),o.add(i))}detectRemovedModules(t,n,o){for(let[i]of t)if(!o.has(i)&&!n.has(i)){this.pendingTags.push(`dep-removed:${i}`),o.add(i);let s=(S.assertModuleName(i),yt.join(this.depMapDir,i,_.OH_PACKAGE_JSON5));this.contentHashes.delete(this.canonicalPath(s))}}logDepMapDiffResult(){let t=this.pendingTags.filter(o=>o.startsWith("dep-")),n=this.pendingRenames.map(o=>`${o.kind}(${o.info.oldName}\u2192${o.info.newName})`);m.info(`[DependencyMapWatcher] dependencyMap.json5 diff complete, depTags: [${t.join(", ")}], renames: [${n.join(", ")}]`)}applyDepMapJsonDiff(){let t=this.parseModulesFromDepMap(),{byName:n,bySrcPath:o}=this.buildModuleLookupMaps(this.lastModules),{byName:i,bySrcPath:s}=this.buildModuleLookupMaps(t),a=new Set,c=new Set;this.detectModuleRenames(o,s,a,c),this.detectModuleMoves(n,i,a,c),this.detectAddedModules(i,n,c),this.detectRemovedModules(n,i,a),this.lastModules=t,this.logDepMapDiffResult()}computeFileHash(t){try{let n=vr.readFileSync(t,"utf-8");return xk("sha256").update(n).digest("hex")}catch{return null}}};import{spawn as Nk}from"child_process";var Mk=["install","--all"];async function Ok(r,e,t,n){return new Promise(o=>{let i=Nk(r,[e,...Mk],{cwd:t,env:{...process.env,DEVECO_SDK_HOME:n},windowsHide:!0,stdio:["ignore","pipe","pipe"]}),s="",a="";i.stdout?.on("data",c=>{s+=c.toString()}),i.stderr?.on("data",c=>{a+=c.toString()}),i.on("close",c=>{let l=[s,a].filter(Boolean).join(`
1307
+ `);o({exitCode:c??-1,output:l})}),i.on("error",c=>{let l=[s,a].filter(Boolean).join(`
1308
+ `);o({exitCode:-1,output:l+`
1309
+ `+c.message})})})}function _k(r){r.split(/\r?\n/).filter(Boolean).forEach(e=>m.info("[ohpm] %s",e))}async function Ih(r,e,t,n){try{if(!t)return m.error("node \u8DEF\u5F84\u4E0D\u5B58\u5728"),!1;if(!n)return m.error("ohpm (pm-cli.js) \u4E0D\u5B58\u5728"),!1;let{exitCode:o,output:i}=await Ok(t,n,r,e);return _k(i),o===0?(m.info("ohpm \u5B89\u88C5\u6210\u529F"),!0):(m.error("ohpm \u5B89\u88C5\u5931\u8D25\uFF0C\u9000\u51FA\u7801: %s",o),m.error("ohpm \u8F93\u51FA: %s",i),!1)}catch(o){return m.error("ohpm \u5B89\u88C5\u5F02\u5E38",o),!1}}var Ah={UNINITIALIZED:-32099,UNKNOWN:-32e3},Yo=class r extends Error{code;constructor(e,t){super(e),this.name="ArkTsProxyError",this.code=t}static uninitialized(e){return new r(e,Ah.UNINITIALIZED)}static unknown(e="Unknown error"){return new r(e,Ah.UNKNOWN)}toJsonRpcErrorParams(){return{code:this.code,message:this.message}}};var Hn=class{config;lspProxy=null;configWatcher=null;depMapWatcher=null;isInitialized=!1;lastEditorOpenFiles=[];onMessage=()=>{};onConfigChanged=null;disposeOnce=null;get aceServerPid(){return this.lspProxy?.lspPid??null}constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}async start(e=[]){this.lastEditorOpenFiles=e;try{this.startConfigWatcher(),this.startLspProxy(e)}catch(t){throw m.error(`[ArktsLspManager] start() synchronous failure: ${t instanceof Error?t.message:String(t)}`),t}}sendNotification(e){if(!this.lspProxy){m.warn("[ArktsLspManager] sendNotification before LSP ready, dropped");return}this.lspProxy.sendNotification(e)}sendRequest(e){if(!this.lspProxy){m.warn("[ArktsLspManager] sendRequest before LSP ready, dropped");return}this.lspProxy.sendRequest(e)}async diagnostic(e){if(!this.lspProxy)throw new Error("[ArktsLspManager] diagnostic before LSP ready");return this.lspProxy.diagnostic(e)}async sendFeatureRequest(e,t){if(!this.useStandardProtocol)throw new Error(`Language feature '${e}' is not supported on the installed DevEco Studio. The standard LSP protocol entry (plugins/openharmony/ace-server/out/standardIndex/index.js) was not found. Please upgrade DevEco Studio to version 26.0.0.610 or later to use this tool.`);if(!this.lspProxy)throw new Error("LSP not ready");return this.lspProxy.sendFeatureRequest(e,t)}get useStandardProtocol(){return this.config.useStandardProtocol}onAsyncOpenFile(e){this.lspProxy?.onAsyncOpenFile(e)}closeFileLegacy(e,t){this.lspProxy?.closeFileLegacy(e,t)}registerDiagnosticCallback(e){this.lspProxy?.registerDiagnosticCallback(e)}static async handleSyncProject(e,t,n,o,i,s){if(m.info("[ArktsLspManager] Received arkts/syncProject"),!e||!t)return m.error("[ArktsLspManager] handleSyncProject: workspaceRoot or sdkPath is empty"),{status:"failed",reason:"workspaceRoot or sdkPath is empty"};let a=s?.skipHvigorSync===!0,c=await Di(e,async()=>await Ih(e,t,n??"",o??"")?a?(m.info("[ArktsLspManager] hvigor sync skipped (config up-to-date)"),{status:"success"}):await Iu(e,t,n??"",i??"")?(m.info("[ArktsLspManager] syncProject completed successfully"),{status:"success"}):(m.error("[ArktsLspManager] syncProject failed"),{status:"failed",reason:"hvigor sync failed"}):(m.error("[ArktsLspManager] ohpm install failed"),{status:"failed",reason:"ohpm install failed"}));return c.acquired?c.result:(m.info("[ArktsLspManager] Build lock held by another process, skipping sync"),{status:"skipped",reason:"build lock held by another process"})}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}async performDispose(){try{this.configWatcher?.stop()}catch(e){m.warn(`[ArktsLspManager] configWatcher stop error: ${e}`)}try{this.depMapWatcher?.stop()}catch(e){m.warn(`[ArktsLspManager] depMapWatcher stop error: ${e}`)}if(this.configWatcher=null,this.depMapWatcher=null,this.lspProxy){try{await this.lspProxy.dispose()}catch(e){m.warn(`[ArktsLspManager] lspProxy dispose error: ${e}`)}this.lspProxy=null}this.isInitialized=!1}startLspProxy(e){let t=new ta(this.config.sdkPath,this.config.arktsLangServerPath,this.config.workspaceRoot,this.config.indexLogPath,this.config.nodeMaxOldSpaceSize,this.config.useStandardProtocol);t.setOnMessage(n=>this.handleLspMessage(n)),t.start(e,n=>this.handleLspInitialized(n)),this.lspProxy=t}handleLspInitialized=e=>{if(this.isInitialized=e,e)m.info("[ArktsLspManager] LSP initialized"),this.startDependencyMapWatcher(),this.onMessage({jsonrpc:T,method:y.ARKTS_INITIALIZED,params:{}});else{let t=this.lspProxy?.consumeStartErrorMessage();m.error(`[ArktsLspManager] LSP initialization failed: ${t}`);let n=t?Yo.uninitialized(t):Yo.unknown();this.onMessage({jsonrpc:T,method:y.ARKTS_INITIALIZATION_FAILED,params:n.toJsonRpcErrorParams()}),this.lspProxy=null}};handleLspMessage(e){this.onMessage(e)}maybeRetryLspAfterSuccessfulSync(){this.isInitialized||this.lspProxy!==null||(m.info("[ArktsLspManager] Retrying LSP startup after successful sync"),this.onMessage({jsonrpc:T,method:y.ARKTS_REINITIALIZING,params:{}}),this.startLspProxy(this.lastEditorOpenFiles))}startConfigWatcher(){this.configWatcher||(this.configWatcher=new ra(this.config.workspaceRoot),this.configWatcher.on("configChanged",e=>this.handleConfigChanged(e)),this.configWatcher.start())}startDependencyMapWatcher(){this.depMapWatcher||(this.depMapWatcher=new na(this.config.workspaceRoot),this.depMapWatcher.on("reload",e=>{if(!this.lspProxy){m.warn("[ArktsLspManager] LspServerProxy not initialized, skip reload");return}let n=this.lspProxy.reloadDependenciesOnly(e).map(o=>({modulePath:o.modulePath??"",dependencies:o.dependencies??{},dynamicDependencies:o.dynamicDependencies??{}}));this.onMessage({jsonrpc:T,method:y.ARKTS_SYNC_COMPLETED,params:{success:!0,moduleSet:n}})}),this.depMapWatcher.start())}setOnConfigChanged(e){this.onConfigChanged=e}handleConfigChanged(e){m.info(`[ArktsLspManager] Config file changed: ${e.filePath}, notifying server`),this.onConfigChanged?.()}};var jk=10080*60*1e3,Fk=7200*60*1e3,$k=120*1e3,Un=class r{manager=null;get aceServerPid(){return this.manager?.aceServerPid??null}initialized=!1;initializing=!1;initPromise=null;initDeadlineTimer=null;initResolve=null;initReject=null;projectPath;sdkPath;arktsLangServerPath;nodeMaxOldSpaceSize;onConfigChangedCallback=null;useStandardProtocol=!0;diagnosticWaiters=new Map;documentVersion=0;static FEATURE_METHOD_MAP={hover:y.HOVER,definition:y.DEFINITION,declaration:y.DECLARATION,references:y.REFERENCES,implementation:y.IMPLEMENTATION,completion:y.COMPLETION,signatureHelp:y.SIGNATURE_HELP,documentHighlight:y.DOCUMENT_HIGHLIGHT};constructor(e,t,n,o){this.projectPath=e,this.sdkPath=t,this.arktsLangServerPath=n,this.nodeMaxOldSpaceSize=o}setOnConfigChanged(e){this.onConfigChangedCallback=e}async initialize(){if(!this.initialized){if(this.initPromise){await this.initPromise;return}this.initializing=!0,this.initPromise=this.doInitialize().then(()=>{this.initialized=!0}).finally(()=>{this.initializing=!1}),await this.initPromise}}async doInitialize(){let{harmonyRoot:e,arktsLangServerPath:t,useStandardProtocol:n}=this.resolveProjectAndDeveco();this.useStandardProtocol=n;let o=ge(e),{logPath:i,indexPath:s}=this.getLogAndIndexPath(o);setImmediate(()=>{Ba(s,jk,"[ArkTS-Check]"),Ba(i,Fk,"[ArkTS-Check]")}),Li(i);let a=this.nodeMaxOldSpaceSize?parseInt(this.nodeMaxOldSpaceSize,10):NaN,c=Number.isNaN(a)?void 0:a;h.info(`ArktsCheck nodeMaxOldSpaceSize: incoming='${this.nodeMaxOldSpaceSize??"(unset)"}', parsed=${c??"undefined \u2192 dynamic formula applies"}`);let l=this.sdkPath;h.info(`[ArktsCheck] sdkPath=${l}, arktsLangServerPath=${t}, useStandardProtocol=${n}`),this.manager=new Hn({sdkPath:l,arktsLangServerPath:t,workspaceRoot:z(o),indexLogPath:s,nodeMaxOldSpaceSize:c,useStandardProtocol:n}),this.manager.setOnMessage(d=>this.handleLspMessage(d)),this.onConfigChangedCallback&&this.manager.setOnConfigChanged(this.onConfigChangedCallback),await new Promise((d,g)=>{this.initResolve=d,this.initReject=g,this.armInitTimer(rt),this.manager.start([]).catch(v=>{let P=v instanceof Error?v:new Error(String(v));this.failInit(P)})})}resolveProjectAndDeveco(){let e=Lt(this.projectPath);if(!e)throw new Error(`Failed to find HarmonyOS project from path: ${this.projectPath}`);this.projectPath=e;let t=this.arktsLangServerPath;if(!t)throw new Error("arkts-lang-server path not found");let n=gi(t);return h.info(`ArktsCheck protocol: ${n?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${n})`),{harmonyRoot:e,arktsLangServerPath:t,useStandardProtocol:n}}armInitTimer(e){this.initDeadlineTimer&&clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=setTimeout(()=>{let t=this.initReject;this.clearInitHandlers(),t?.(new Error("LSP initialize timeout"))},e)}clearInitHandlers(){this.initDeadlineTimer&&(clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=null),this.initResolve=null,this.initReject=null}failInit(e){let t=this.initReject;this.clearInitHandlers(),t?.(e)}async checkFile(e){this.initialized||await this.initialize();let t=this.manager;if(!t)throw new Error("ArktsLspManager not initialized");let n=Nr(e),o=await dt.promises.readFile(e,"utf8"),s=`deveco.apptool.${ke.extname(e).replace(/^\./,"")||"plaintext"}`;return t.useStandardProtocol?this.checkFileStandard(t,n,o,s):this.checkFileLegacy(t,e,n,o,s)}async checkFileStandard(e,t,n,o){h.debug(`textDocument/didOpen uri=${t} content_len=${n.length}`),this.sendNotification("textDocument/didOpen",{textDocument:{uri:t,text:n,languageId:o,version:++this.documentVersion}});try{h.debug(`textDocument/diagnostic uri=${t}`);let i=await e.diagnostic({textDocument:{uri:t}});return Hk(i)}finally{this.sendNotification("textDocument/didClose",{textDocument:{uri:t}})}}async checkFileLegacy(e,t,n,o,i){let s=n;e.registerDiagnosticCallback(n);let a=new Promise((c,l)=>{let d=setTimeout(()=>{this.diagnosticWaiters.delete(s)&&l(new Error("Wait for diagnostics timeout"))},$k);this.diagnosticWaiters.set(s,{resolve:c,reject:l,timer:d})});h.debug(`textDocument/didOpen(legacy) uri=${n} content_len=${o.length}`),e.onAsyncOpenFile({textDocument:{uri:n,text:o,languageId:i,version:o.length},editorFiles:[n],isFromEditor:!1});try{return await a}finally{e.closeFileLegacy(n,!1)}}async handleCall(e){if(!this.initialized)return this.buildNotReadyResponse();let t=[],n=[],o=this.collectValidFiles(e.files,t);return o.length===0?{content:[{type:"text",text:t.length>0?t.join(`
1310
+ `):"No valid .ets files"}],isError:!0}:(await this.runDiagnosticsForFiles(o,t,n),this.formatCallResult(t,n))}async handleLspFeature(e,t){if(!this.initialized)return this.buildNotReadyResponse();let n=this.resolveSingleFile(t.file);if(!n)return{content:[{type:"text",text:`File does not exist or is not a .ets file: ${t.file}`}],isError:!0};let o=r.FEATURE_METHOD_MAP[e];if(!o)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};h.info(`handleLspFeature: ${e} file=${n} line=${t.line} char=${t.character}`);try{let i=await this.withOpenFile(n,async a=>{let c={textDocument:{uri:a},position:{line:t.line,character:t.character}};return e==="references"&&(c.context={includeDeclaration:!0}),this.manager.sendFeatureRequest(o,c)});return{content:[{type:"text",text:i==null?`${e}: no result`:`${e}: ${JSON.stringify(i,null,2)}`}]}}catch(i){let s=i instanceof Error?i.message:String(i);return h.error(`handleLspFeature ${e} failed: ${s}`),{content:[{type:"text",text:`${e} failed: ${s}`}],isError:!0}}}async handleWorkspaceSymbol(e){if(!this.initialized)return this.buildNotReadyResponse();h.info(`handleWorkspaceSymbol: query="${e}"`);try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return{content:[{type:"text",text:t==null?"workspaceSymbol: no result":`workspaceSymbol: ${JSON.stringify(t,null,2)}`}]}}catch(t){let n=t instanceof Error?t.message:String(t);return h.error(`handleWorkspaceSymbol failed: ${n}`),{content:[{type:"text",text:`workspaceSymbol failed: ${n}`}],isError:!0}}}async handleWorkspaceSymbolRaw(e){if(!this.initialized)return null;try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return Array.isArray(t)?t:t==null?null:[t]}catch(t){return h.error(`handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`File does not exist or is not a .ets file: ${e}`}],isError:!0};h.info(`handleDocumentSymbol: file=${t}`);try{let n=await this.withOpenFile(t,async i=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:i}}));return{content:[{type:"text",text:n==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(n,null,2)}`}]}}catch(n){let o=n instanceof Error?n.message:String(n);return h.error(`handleDocumentSymbol failed: ${o}`),{content:[{type:"text",text:`documentSymbol failed: ${o}`}],isError:!0}}}async handleCallHierarchy(e){if(!this.initialized)return this.buildNotReadyResponse();let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`File does not exist or is not a .ets file: ${e.file}`}],isError:!0};h.info(`handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let n=await this.withOpenFile(t,async i=>{let s=await this.manager.sendFeatureRequest(y.PREPARE_CALL_HIERARCHY,{textDocument:{uri:i},position:{line:e.line,character:e.character}}),a=Array.isArray(s)?s:s?[s]:[];if(a.length===0)return{items:[],calls:[]};let c=e.direction==="incoming"?y.INCOMING_CALLS:y.OUTGOING_CALLS,l=[];for(let d of a){let g=await this.manager.sendFeatureRequest(c,{item:d});Array.isArray(g)?l.push(...g):g&&l.push(g)}return{items:a,calls:l}});return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(n,null,2)}`}]}}catch(n){let o=n instanceof Error?n.message:String(n);return h.error(`handleCallHierarchy failed: ${o}`),{content:[{type:"text",text:`callHierarchy failed: ${o}`}],isError:!0}}}async withOpenFile(e,t){let n=Nr(e),o=await dt.promises.readFile(e,"utf8"),s=`deveco.apptool.${ke.extname(e).replace(/^\./,"")||"plaintext"}`;h.debug(`withOpenFile didOpen uri=${n} len=${o.length}`),this.sendNotification("textDocument/didOpen",{textDocument:{uri:n,text:o,languageId:s,version:++this.documentVersion}});try{return await t(n)}finally{this.sendNotification("textDocument/didClose",{textDocument:{uri:n},isManual:!1})}}resolveSingleFile(e){let t=ke.isAbsolute(e)?e:ke.join(this.projectPath,e);return!dt.existsSync(t)||!dt.statSync(t).isFile()||!t.endsWith(".ets")?null:t}buildNotReadyResponse(){return{content:[{type:"text",text:this.initializing?"LSP is initializing, please retry later":this.projectPath?"LSP not initialized":"No project path configured; set the PROJECT_PATH parameter"}],isError:!0}}collectValidFiles(e,t){let n=ke.resolve(this.projectPath),o=[];for(let i of e){let s=ke.resolve(ke.isAbsolute(i)?i:ke.join(n,i));if(!dt.existsSync(s)){t.push(`File does not exist: ${i}`);continue}if(!dt.statSync(s).isFile()){t.push(`Not a regular file: ${i}`);continue}if(!s.endsWith(".ets")){t.push(`Not a .ets file: ${i}`);continue}o.push(s)}return o}async runDiagnosticsForFiles(e,t,n){for(let o of e){await Hd(500);try{let i=await this.checkFile(o);n.push(Uk(o,i))}catch(i){t.push(`${o} => wait for diagnostics failed: ${i.message}`)}}}formatCallResult(e,t){let n=[];e.length>0&&n.push(e.join(`
1311
+ `)),t.length>0&&n.push(t.join(`
1312
+ `));let o=n.join(`
1313
+ `).trim(),i=e.length>0;return!i&&t.length===0&&(o="No diagnostics collected"),{content:[{type:"text",text:o}],isError:i}}async shutdown(){let e=this.initReject;if(this.clearInitHandlers(),e?.(new Error("LSP shutting down")),this.manager){try{await this.manager.dispose()}catch(t){h.warn(`Failed to dispose ArktsLspManager: ${t}`)}this.manager=null}this.initialized=!1,this.initializing=!1,this.initPromise=null}sendNotification(e,t){if(!this.manager)throw new Error("ArktsLspManager not initialized");this.manager.sendNotification({jsonrpc:"2.0",method:e,params:t})}handleLspMessage(e){let t=e,n=t.method;if(n)switch(n){case"textDocument/publishDiagnostics":{this.handleDiagnosticsNotification(t.params);break}case"arkts/indexingProgress":this.initResolve&&(this.armInitTimer(rt),h.debug("Received arkts/indexingProgress, reset init timeout"));break;case"arkts/initialized":{h.info("Received arkts/initialized");let o=this.initResolve;this.clearInitHandlers(),o?.();break}case"arkts/initializationFailed":{let i=t.params?.message??"unknown";h.error(`LSP initialization failed: ${i}`);let s=this.initReject;this.clearInitHandlers(),s?.(new Error(`LSP initialize failed: ${i}`));break}case"workspace/didChangeConfiguration":h.info("Received workspace/didChangeConfiguration, sync deferred to next check");break;default:break}}handleDiagnosticsNotification(e){if(!e)return;let t=e.uri;if(!t)return;let n=this.popDiagnosticWaiter(t);if(!n&&this.diagnosticWaiters.size===1){let s=this.diagnosticWaiters.keys().next().value;n=this.popDiagnosticWaiter(s)}if(!n)return;if(typeof e.errorMessage=="string"){h.warn(`diagnostics error uri=${t} message=${e.errorMessage}`),n.resolve({errorMessage:e.errorMessage});return}let o=e.diagnostics,i=Array.isArray(o)?o.length:0;h.debug(`diagnostics received uri=${t} count=${i}`),n.resolve(Array.isArray(o)?o:[])}popDiagnosticWaiter(e){let t=this.diagnosticWaiters.get(e);if(t)return this.diagnosticWaiters.delete(e),clearTimeout(t.timer),t}getLogAndIndexPath(e){try{let t=ke.join(Kt(),"ArkTSCheck"),n=ke.join(t,"mapping-config.properties"),o=Ud(e,n),i=`${Date.now()}${process.hrtime.bigint()%1000000n}`,s=ke.join(t,"lsp-log",String(o),i),a=ke.join(t,"lsp-index",String(o));return dt.mkdirSync(s,{recursive:!0}),dt.mkdirSync(a,{recursive:!0}),{logPath:ge(s),indexPath:ge(a)}}catch{return{logPath:"auto",indexPath:"auto"}}}};function Hk(r){if(Array.isArray(r))return r;if(r&&typeof r=="object"){let e=r;if(e.kind==="full"&&Array.isArray(e.items))return e.items}return[]}function Uk(r,e){if(Array.isArray(e))return e.length===0?`${r} => no diagnostics`:`${r} => Diagnostic: ${JSON.stringify(e)}`;if(e&&typeof e=="object"&&typeof e.errorMessage=="string"){let t=e.errorMessage;return`${r} diagnostic failed, error_message: ${t}`}return`${r} => diagnostic failed, result: ${JSON.stringify(e)}`}import*as wr from"fs";import*as Qr from"path";import{z as kl}from"zod";function Bn(){return{content:[{type:"text",text:"C++ LSP is not ready, please retry later"}],isError:!0}}function oa(r,e){let t=e instanceof Error?e.message:String(e);return h.error(`[CppLsp] ${r} failed: ${t}`),{content:[{type:"text",text:`${r} failed: ${t}`}],isError:!0}}var Bk=500,Wn=class{manager;constructor(e){this.manager=e}static getToolDefinition(){return{name:"check_cpp_files",description:"Perform static syntax checks on the provided C/C++ files and return clangd diagnostics.",inputSchema:kl.object({files:kl.array(kl.string()).describe('List of C/C++ file paths to check, format: ["file1.cpp","file2.hpp",...]')})}}async handleCall(e){if(!this.manager.ready)return Bn();let t=[],n=[],o=this.collectValidFiles(e.files,t);if(o.length===0)return{content:[{type:"text",text:t.length>0?t.join(`
1314
+ `):"No valid C/C++ files"}],isError:!0};for(let c of o){await Vk(Bk);try{let l=await this.checkFile(c);n.push(Wk(c,l))}catch(l){t.push(`${c} => wait for diagnostics failed: ${l.message}`)}}let i=t.length>0,s=[];t.length>0&&s.push(t.join(`
1315
+ `)),n.length>0&&s.push(n.join(`
1299
1316
  `));let a=s.join(`
1300
- `).trim();return!o&&r.length===0&&(a="No diagnostic information collected"),{content:[{type:"text",text:a}],isError:o}}async checkFile(e){let t=Dn(e),r=await un.promises.readFile(e,"utf8"),i=eo(e),o=this.manager.registerDiagnosticCallback(t);this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:t,text:r,languageId:i,version:r.length}}});try{return await o}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:t}}})}}collectValidFiles(e,t){let r=qn.resolve(this.manager.projectRoot),i=[];for(let o of e){let s=qn.resolve(qn.isAbsolute(o)?o:qn.join(r,o));if(!un.existsSync(s)){t.push(`File does not exist: ${o}`);continue}if(!un.statSync(s).isFile()){t.push(`Not a regular file: ${o}`);continue}if(!An(s)){t.push(`Not a supported C/C++ file: ${o}`);continue}try{i.push(un.realpathSync(s))}catch{i.push(s)}}return i}};function nC(n,e){if(Array.isArray(e))return e.length===0?`${n} => no diagnostics`:`${n} => Diagnostic: ${JSON.stringify(e)}`;if(e&&typeof e=="object"&&typeof e.errorMessage=="string"){let t=e.errorMessage;return`${n} diagnostic failed, error_message: ${t}`}return`${n} => diagnostic failed, result: ${JSON.stringify(e)}`}function rC(n){return new Promise(e=>setTimeout(e,n))}import*as Mr from"fs";import*as js from"path";var Or=class n{manager;static FEATURE_METHOD_MAP={hover:y.HOVER,definition:y.DEFINITION,declaration:y.DECLARATION,references:y.REFERENCES,implementation:y.IMPLEMENTATION};constructor(e){this.manager=e}async handleLspFeature(e,t){if(!this.manager.ready)return Lr();let r=this.resolveSingleFile(t.file);if(!r)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${t.file}`}],isError:!0};let i=n.FEATURE_METHOD_MAP[e];if(!i)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};h.info(`[ClangdLspTool] handleLspFeature: ${e} file=${r} line=${t.line} char=${t.character}`);try{let o=await this.withOpenFile(r,async a=>{let c={textDocument:{uri:a},position:{line:t.line,character:t.character}};return e==="references"&&(c.context={includeDeclaration:!0}),this.manager.sendFeatureRequest(i,c)});return{content:[{type:"text",text:o==null?`${e}: no result`:`${e}: ${JSON.stringify(o,null,2)}`}]}}catch(o){return _s(e,o)}}async handleWorkspaceSymbolRaw(e){if(!this.manager.ready)return null;try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return Array.isArray(t)?t:t==null?null:[t]}catch(t){return h.error(`[ClangdLspTool] handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.manager.ready)return Lr();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${e}`}],isError:!0};h.info(`[ClangdLspTool] handleDocumentSymbol: file=${t}`);try{let r=await this.withOpenFile(t,async o=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:o}}));return{content:[{type:"text",text:r==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(r,null,2)}`}]}}catch(r){return _s("documentSymbol",r)}}async handleCallHierarchy(e){if(!this.manager.ready)return Lr();if(e.direction==="outgoing")return{content:[{type:"text",text:"callHierarchy outgoing is not supported by clangd (incoming only)"}],isError:!0};let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${e.file}`}],isError:!0};h.info(`[ClangdLspTool] handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let r=await this.withOpenFile(t,o=>this.fetchCallHierarchyResult(o,e));return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(r,null,2)}`}]}}catch(r){return _s("callHierarchy",r)}}async fetchCallHierarchyResult(e,t){let r=await this.manager.sendFeatureRequest(y.PREPARE_CALL_HIERARCHY,{textDocument:{uri:e},position:{line:t.line,character:t.character}}),i=this.normalizeCallHierarchyItems(r);if(i.length===0)return{items:[],calls:[]};let o=await this.collectIncomingCalls(i);return{items:i,calls:o}}normalizeCallHierarchyItems(e){return Array.isArray(e)?e:e?[e]:[]}async collectIncomingCalls(e){let t=[];for(let r of e)t.push(...await this.fetchIncomingCalls(r));return t}async fetchIncomingCalls(e){let t=await this.manager.sendFeatureRequest(y.INCOMING_CALLS,{item:e});return Array.isArray(t)?t:t?[t]:[]}async withOpenFile(e,t){let r=Dn(e),i=await Mr.promises.readFile(e,"utf8"),o=eo(e);h.info(`[ClangdLspTool] withOpenFile didOpen uri=${r} langId=${o} len=${i.length}`),this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:r,text:i,languageId:o,version:i.length}}});try{return await t(r)}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:r}}})}}resolveSingleFile(e){let t=js.isAbsolute(e)?e:js.join(this.manager.projectRoot,e);return!Mr.existsSync(t)||!Mr.statSync(t).isFile()||!An(t)?null:t}};import{spawn as iC}from"child_process";import*as $s from"fs";import*as Sm from"path";var oC=30*1e3,sC=30*1e3,Fs=class{config;client=null;clangdProcess=null;nextRequestId=1;requestCallbacks=new an;diagnosticWaiters=new Map;lastStartErrorMessage=null;onMessage=()=>{};disposeOnce=null;constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}get clangdPid(){return this.clangdProcess?.pid??null}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}async start(e){let t=!1;try{u.info(`[ClangdLspProxy] clangdPath: ${this.config.clangdPath}`),u.info(`[ClangdLspProxy] workspaceRoot: ${this.config.workspaceRoot}`),u.info(`[ClangdLspProxy] compileCommandsDir: ${this.config.compileCommandsDir}`),this.ensureLogDir(),this.clangdProcess=this.spawnClangd();let r={serverPath:"",logPath:this.config.logPath,indexingDataLocation:this.config.logPath,cwd:this.config.workspaceRoot};this.client=new sn(r),this.client.on("message",o=>this.handleRawMessage(o)),this.client.on("error",o=>this.handleError(o)),this.client.attachProcess(this.clangdProcess,{stderrAsError:!1});let i=this.buildInitializeParams();await this.sendLspRequest(y.INITIALIZE,i,Ze),u.info("[ClangdLspProxy] initialize response received"),this.sendNotification(y.INITIALIZED,{}),t=!0}catch(r){this.lastStartErrorMessage=r instanceof Error?r.message:String(r),u.error(`[ClangdLspProxy] initialization failed: ${this.lastStartErrorMessage}`),await this.dispose()}e?.(t)}async hover(e){return this.sendLspRequest(y.HOVER,e)}async definition(e){return this.sendLspRequest(y.DEFINITION,e)}async declaration(e){return this.sendLspRequest(y.DECLARATION,e)}async references(e){return this.sendLspRequest(y.REFERENCES,e)}async implementation(e){return this.sendLspRequest(y.IMPLEMENTATION,e)}async documentSymbol(e){return this.sendLspRequest(y.DOCUMENT_SYMBOL,e)}async workspaceSymbol(e){return this.sendLspRequest(y.WORKSPACE_SYMBOL,e)}async prepareCallHierarchy(e){return this.sendLspRequest(y.PREPARE_CALL_HIERARCHY,e)}async incomingCalls(e){return this.sendLspRequest(y.INCOMING_CALLS,e)}async sendFeatureRequest(e,t){return this.sendLspRequest(e,t)}sendDidOpen(e){this.sendNotification(y.DID_OPEN,e)}sendDidChange(e){this.sendNotification(y.DID_CHANGE,e)}sendDidClose(e){this.sendNotification(y.DID_CLOSE,e)}sendNotification(e,t){if(!this.client){u.warn("[ClangdLspProxy] sendNotification before ready, dropped");return}this.client.sendNotification(e,t)}registerDiagnosticCallback(e){let t=this.normalizeClangdUri(e);if(this.diagnosticWaiters.has(t)){u.warn(`[ClangdLspProxy] overwrite existing diagnostic waiter for ${t}`);let r=this.diagnosticWaiters.get(t);clearTimeout(r.timer),this.diagnosticWaiters.delete(t)}return new Promise((r,i)=>{let o=setTimeout(()=>{this.diagnosticWaiters.delete(t)&&i(new Error(`Wait for clangd diagnostics timeout, uri: ${t}`))},sC);this.diagnosticWaiters.set(t,{resolve:r,reject:i,timer:o})})}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}async performDispose(){this.requestCallbacks.rejectAll(new Error("ClangdLspProxy disposing"));for(let[,e]of this.diagnosticWaiters)clearTimeout(e.timer),e.reject(new Error("ClangdLspProxy disposing"));if(this.diagnosticWaiters.clear(),this.client&&this.clangdProcess)try{await this.sendLspRequest(y.SHUTDOWN,null,3e3).catch(e=>{u.warn(`[ClangdLspProxy] shutdown request failed: ${e}`)}),this.sendNotification(y.EXIT,null),await this.client.waitForExitOrTimeout(300)}catch(e){u.warn(`[ClangdLspProxy] dispose error: ${e}`)}if(this.clangdProcess){try{this.clangdProcess.exitCode===null&&this.clangdProcess.signalCode===null&&this.clangdProcess.kill()}catch{}this.clangdProcess=null}this.client=null}spawnClangd(){let e=[`--compile-commands-dir=${V(this.config.compileCommandsDir)}`,"--log=info","--pch-storage=memory","--limit-results=100"];u.info(`[ClangdLspProxy] spawn: ${this.config.clangdPath} ${e.join(" ")}`);let t=iC(this.config.clangdPath,e,{cwd:this.config.workspaceRoot,stdio:["pipe","pipe","pipe"],windowsHide:!0});if(!t.stdin||!t.stdout||!t.stderr)throw new Error("Failed to spawn clangd: stdio not available");return t}buildInitializeParams(){let e=tr(this.config.workspaceRoot),t=lt(e),r=Sm.basename(e)||"workspace";return{processId:process.pid,clientInfo:{name:"devecocli-mcp-server",version:"1.3.1"},rootPath:e,rootUri:t,workspaceFolders:[{uri:t,name:r}],capabilities:this.buildClientCapabilities(),initializationOptions:null}}buildClientCapabilities(){return{textDocument:{synchronization:{didOpen:!0,didChange:!0,didClose:!0,willSave:!1,save:!1},publishDiagnostics:{relatedInformation:!0,versionSupport:!1,tagSupport:{valueSet:[1,2]}},hover:{contentFormat:["markdown","plaintext"]},completion:{contextSupport:!1,completionItemKind:{valueSet:[]}},signatureHelp:{signatureInformation:{documentationFormat:["markdown","plaintext"]}},references:{},declaration:{linkSupport:!0},definition:{linkSupport:!0},implementation:{linkSupport:!0},documentSymbol:{hierarchicalDocumentSymbolSupport:!0,symbolKind:{valueSet:[]}},callHierarchy:{dynamicRegistration:!1}},workspace:{symbol:{symbolKind:{valueSet:[]}},configuration:!1,didChangeWatchedFiles:{dynamicRegistration:!1}}}}sendLspRequest(e,t,r=oC){if(!this.client)return Promise.reject(new Error("[ClangdLspProxy] client not ready"));let i=this.nextRequestId++,o=this.requestCallbacks.registerPending(i,e,r);return this.client.sendRequest(e,t,i),o}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(r){let i=r instanceof Error?r.message:String(r);u.error(`[ClangdLspProxy] JSON parse error: ${i}, raw: ${e.slice(0,200)}`);return}"id"in t&&("result"in t||"error"in t)?this.handleResponse(t):"method"in t?this.handleNotification(t):u.warn(`[ClangdLspProxy] unrecognized message: ${JSON.stringify(t).slice(0,200)}`)}handleResponse(e){let t=e.id;if(t==null||typeof t!="string"&&typeof t!="number")return;let r=t;if(e.error!==void 0&&e.error!==null){let i=e.error;u.warn(`[ClangdLspProxy] LSP error id=${r}: code=${i.code??-1} message=${i.message??"unknown"}`),this.requestCallbacks.rejectPending(r,new Error(`LSP error ${i.code??-1}: ${i.message??"unknown"}`))}else this.requestCallbacks.resolvePending(r,e.result)}handleNotification(e){let t=e.method;if(t)switch(t){case y.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(e.params);break;case y.PROGRESS:this.onMessage({jsonrpc:T,method:y.PROGRESS,params:e.params});break;case y.WINDOW_SHOW_MESSAGE:u.info(`[ClangdLspProxy] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:u.info(`[ClangdLspProxy] window/logMessage: ${JSON.stringify(e.params)}`);break;default:this.onMessage({jsonrpc:T,method:t,params:e.params})}}handlePublishDiagnostics(e){if(!e||!e.uri)return;let t=this.normalizeClangdUri(e.uri),r=this.diagnosticWaiters.get(t);if(!r&&this.diagnosticWaiters.size===1){let s=this.diagnosticWaiters.keys().next().value;r=this.diagnosticWaiters.get(s),r&&this.diagnosticWaiters.delete(s)}else r&&this.diagnosticWaiters.delete(t);if(!r)return;clearTimeout(r.timer);let i=Array.isArray(e.diagnostics)?e.diagnostics:[],o=i.length;u.info(`[ClangdLspProxy] diagnostics received uri=${t} count=${o}`),r.resolve(i)}handleError(e){for(let[,t]of this.diagnosticWaiters)clearTimeout(t.timer),t.reject(e);this.diagnosticWaiters.clear(),this.requestCallbacks.rejectAll(e),this.onMessage({jsonrpc:T,method:y.CPP_ERROR,params:{message:e.message}})}ensureLogDir(){if(this.config.logPath)try{$s.existsSync(this.config.logPath)||$s.mkdirSync(this.config.logPath,{recursive:!0})}catch{}}normalizeClangdUri(e){try{let t=new URL(e);if(t.protocol==="file:"){let r=decodeURIComponent(t.pathname);return process.platform==="win32"&&/^\/[a-zA-Z]:/.test(r)&&(r=r.slice(1)),lt(r)}}catch{}return e}};import*as Li from"path";import*as Zc from"fs";var Ni=class n{config;proxy=null;isInitialized=!1;onMessage=()=>{};disposeOnce=null;initPromise=null;initDeadlineTimer=null;initResolve=null;initReject=null;resolvedRoot="";constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}get ready(){return this.isInitialized&&this.proxy!==null}get clangdPid(){return this.proxy?.clangdPid??null}get projectRoot(){return this.resolvedRoot}async start(){if(!this.isInitialized){if(this.initPromise){await this.initPromise;return}this.initPromise=this.doStart();try{await this.initPromise}catch(e){throw this.initPromise=null,e}}}sendNotification(e){if(!this.proxy){u.warn("[ClangdLspManager] sendNotification before LSP ready, dropped");return}this.dispatchNotification(e)}async sendFeatureRequest(e,t){if(!this.proxy)throw new Error("[ClangdLspManager] LSP not ready");return this.proxy.sendFeatureRequest(e,t)}registerDiagnosticCallback(e){return this.proxy?this.proxy.registerDiagnosticCallback(e):Promise.reject(new Error("[ClangdLspManager] LSP not ready"))}static async handleSyncCppProject(e,t,r,i,o){if(u.info("[ClangdLspManager] Received cpp/syncProject"),!e||!t)return u.error("[ClangdLspManager] handleSyncCppProject: workspaceRoot or sdkPath is empty"),{status:"failed",reason:"workspaceRoot or sdkPath is empty"};if(Yt(e).length===0)return u.info("[ClangdLspManager] No C++ modules found, skipping compileNative"),{status:"success"};let a=o?.skipCompileNative===!0,c=await fo(e,a?async()=>(u.info("[ClangdLspManager] compileNative skipped (C++ project up-to-date)"),{status:"success"}):async()=>n.executeCompileNative(e,t,r,i));return c.acquired?c.result:(u.info("[ClangdLspManager] Build lock held by another process, skipping sync"),{status:"skipped",reason:"build lock held by another process"})}static async executeCompileNative(e,t,r,i){try{return await Qd(e,t,r,i),u.info("[ClangdLspManager] compileNative + merge compile_commands completed"),{status:"success"}}catch(o){let s=o instanceof Error?o.message:String(o);return u.error(`[ClangdLspManager] compileNative failed: ${s}`),{status:"failed",reason:s}}}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}doStart(){return new Promise((e,t)=>{this.initResolve=e,this.initReject=t,this.armInitTimer(Ze);try{this.startProxy()}catch(r){this.failInit(r instanceof Error?r:new Error(String(r)))}})}startProxy(){let e=Ct(this.config.workspaceRoot);this.resolvedRoot=e?fe(e):fe(this.config.workspaceRoot);let t=this.config.logPath??this.getLogPath();yo(t);let r=this.config.clangdPath;if(!r){let s="clangd not found (install DevEco Studio / CLT)";u.error(`[ClangdLspManager] ${s}`),this.failInit(new Error(s));return}let i=Li.dirname(In(this.resolvedRoot));try{Zc.mkdirSync(i,{recursive:!0})}catch(s){u.warn(`[ClangdLspManager] Failed to create compile_commands dir: ${s}`)}u.info(`[ClangdLspManager] clangdPath: ${r}`),u.info(`[ClangdLspManager] workspaceRoot: ${this.resolvedRoot}`),u.info(`[ClangdLspManager] compileCommandsDir: ${i}`);let o=new Fs({clangdPath:r,workspaceRoot:this.resolvedRoot,compileCommandsDir:i,logPath:t});o.setOnMessage(s=>this.handleLspMessage(s)),this.proxy=o,o.start(s=>this.handleProxyInitialized(s)).catch(s=>{let a=s instanceof Error?s:new Error(String(s));this.handleProxyInitialized(!1,a.message)})}handleProxyInitialized=(e,t)=>{if(this.clearInitTimer(),e){this.isInitialized=!0,u.info("[ClangdLspManager] clangd initialized");let r=this.initResolve;this.clearInitHandlers(),r?.()}else{let r=t??this.proxy?.consumeStartErrorMessage()??"unknown error";u.error(`[ClangdLspManager] clangd initialization failed: ${r}`),this.isInitialized=!1,this.proxy=null;let i=this.initReject;this.clearInitHandlers(),i?.(new Error(`C++ LSP initialize failed: ${r}`))}};handleLspMessage(e){this.onMessage(e)}dispatchNotification(e){if(!this.proxy)return;let t=e,r=t.method;if(!r){u.warn("[ClangdLspManager] dispatchNotification: missing method");return}let i=t.params;switch(r){case y.DID_OPEN:this.proxy.sendDidOpen(i);break;case y.DID_CHANGE:this.proxy.sendDidChange(i);break;case y.DID_CLOSE:this.proxy.sendDidClose(i);break;default:this.proxy.sendNotification(r,i)}}armInitTimer(e){this.clearInitTimer(),this.initDeadlineTimer=setTimeout(()=>{this.failInit(new Error("C++ LSP initialize timeout"))},e)}clearInitTimer(){this.initDeadlineTimer&&(clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=null)}clearInitHandlers(){this.clearInitTimer(),this.initResolve=null,this.initReject=null}failInit(e){let t=this.initReject;this.clearInitHandlers(),t?.(e)}async performDispose(){let e=this.initReject;if(this.clearInitHandlers(),e?.(new Error("ClangdLspManager disposing")),this.proxy){try{await this.proxy.dispose()}catch(t){u.warn(`[ClangdLspManager] proxy dispose error: ${t}`)}this.proxy=null}this.isInitialized=!1,this.initPromise=null}getLogPath(){try{let e=Li.join(Wt(),"CppCheck"),t=`${Date.now()}${process.hrtime.bigint()%1000000n}`,r=Li.join(e,"lsp-log",t);return Zc.mkdirSync(r,{recursive:!0}),fe(r)}catch{return"auto"}}};function Em(n){let e=ho(n);return u.info(`[SyncGuard] ${e.reason}`),e}var tl=(s=>(s[s.IDLE=0]="IDLE",s[s.DISCOVERING=1]="DISCOVERING",s[s.SYNCING=2]="SYNCING",s[s.INITIALIZING=3]="INITIALIZING",s[s.READY=4]="READY",s[s.ERROR=5]="ERROR",s))(tl||{}),Pm=(s=>(s[s.IDLE_CPP=0]="IDLE_CPP",s[s.DISCOVERING_CPP=1]="DISCOVERING_CPP",s[s.SYNCING_CPP=2]="SYNCING_CPP",s[s.INITIALIZING_CPP=3]="INITIALIZING_CPP",s[s.READY_CPP=4]="READY_CPP",s[s.ERROR_CPP=5]="ERROR_CPP",s))(Pm||{}),St=3,Qc=600*1e3,el=100,Hs=class{server;toolRouter;config={};arktsCheckTool=null;cppCheckTool=null;cppLspTool=null;cppLspManager=null;projectState=0;workspaceRoot="";sdkPath="";arktsLangServerPath=null;nodePath="";ohpmJsPath="";hvigorJsPath="";clangdPath=null;initPromise=null;needsReinit=!1;initRetryCount=0;originalProjectPath="";configChangedTriggeredResync=!1;syncSkippedDueToLock=!1;syncSkipStartedAt=0;standardProtocolAvailable=!1;cppProjectState=0;cppInitPromise=null;cppNeedsReinit=!1;cppInitRetryCount=0;cppSyncSkippedDueToLock=!1;cppSyncSkipStartedAt=0;cppHasNoCppCode=!1;cppEnabled;constructor(e={}){this.config=e,Rn(e.debug??!1);let t,r=e.projectPath?.trim()??"";this.originalProjectPath=r,r==="."?(t=process.cwd(),h.info(`Constructor: configuredPath is '.', startPath: '${t}'`)):r===""?(t="",h.info("Constructor: configuredPath is empty, startPath remains empty")):(t=r,h.info(`Constructor: using configured path as startPath: '${t}'`));let i=Ct(t);h.info(`Constructor: findHarmonyProject('${t}') => ${i??"null"}`),this.config.projectPath=i??void 0,this.sdkPath=this.config.sdkPath??"",this.arktsLangServerPath=this.config.arktsLangServerPath??null,this.nodePath=this.config.nodePath??"",this.ohpmJsPath=this.config.ohpmJsPath??"",this.hvigorJsPath=this.config.hvigorJsPath??"",this.clangdPath=this.config.clangdPath??null,this.cppEnabled=this.config.cppEnabled??!0,h.info(`Constructor: sdkPath='${this.sdkPath}', arktsLangServerPath='${this.arktsLangServerPath??"(null)"}', cppEnabled=${this.cppEnabled}`),this.server=new aC({name:"devecocli-mcp-server",version:"0.0.1"}),this.toolRouter=zc(e.telemetry,()=>this.arktsCheckTool?.aceServerPid??null,()=>this.config.projectPath??"",()=>this.sdkPath??""),this.standardProtocolAvailable=this.detectStandardProtocolAvailable(),this.registerTools()}registerTools(){this.registerCheckTool(),this.registerLspFeatureTools(),this.registerRestartTool()}registerRestartTool(){this.toolRouter.add({name:"restart",description:"Restart the MCP server in-place: re-sync the project and re-initialize the LSP, without dropping the client connection. Use to recover from a stuck/ERROR state after fixing the root cause, instead of exiting and reopening the agent. Use target to restart one side only (arkts/cpp) or both (all, default). Only callable when the project state is ready/idle/error; during discovery/sync/init (large-project init can take minutes) it returns an error\u2014wait for ready and retry tools instead. Caution: if initialization fails again after a restart, the cause is likely a persistent project/SDK configuration issue\u2014do not call restart repeatedly; ask the user to fix the project first.",inputSchema:pe.object({target:pe.enum(["arkts","cpp","all"]).default("all").describe('Which backend to restart: "arkts" (ArkTS ace-server), "cpp" (C++ clangd), or "all" (both, default).')})},async e=>this.handleRestartCall(e))}registerCheckTool(){this.toolRouter.add({name:"check",description:"Perform static syntax analysis on HarmonyOS project source files and return structured diagnostics. Supported languages: ArkTS and C/C++.",inputSchema:pe.object({files:pe.array(pe.string()).min(1).describe("List of source file paths to check, relative to the project root (absolute paths within the project are also accepted). Supports ArkTS and C/C++ files in the same call.")})},async e=>this.handleCheckCall(e))}registerLspFeatureTools(){if(!this.standardProtocolAvailable){h.info("Skip registering LSP feature tools (hover/definition/declaration/references/implementation, workspaceSymbol, documentSymbol, callHierarchy): standard LSP protocol unavailable (standardIndex/index.js not found). These tools require a DevEco Studio version that ships the standard LSP server entry.");return}let e=pe.object({file:pe.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets (ArkTS) and C/C++ extensions."),line:pe.number().describe("Line number (0-based)"),character:pe.number().describe("Character offset in the line (0-based)")});for(let{name:t,description:r,feature:i}of this.getPositionFeatures())this.toolRouter.add({name:t,description:r,inputSchema:e},async o=>this.handleLspFeatureCall(i,o));this.registerSymbolTools(),this.registerCallHierarchyTool()}getPositionFeatures(){return[{name:"hover",description:"Get hover information (type info, documentation) at a specific position in an ArkTS (.ets) or C/C++ file.",feature:"hover"},{name:"definition",description:"Find where the symbol at the given position is defined. Returns file path, line, and character.",feature:"definition"},{name:"declaration",description:"Find the declaration of the symbol at the given position. In ArkTS, this may differ from definition.",feature:"declaration"},{name:"references",description:"Find all references to the symbol at the given position across the HarmonyOS project.",feature:"references"},{name:"implementation",description:"Find implementations of the symbol at the given position (e.g., interface implementations).",feature:"implementation"}]}registerSymbolTools(){this.toolRouter.add({name:"workspaceSymbol",description:"Search for symbols by name across the entire HarmonyOS project.",inputSchema:pe.object({query:pe.string().describe("Symbol name (or partial) to search for")})},async e=>this.handleWorkspaceSymbolCall(e)),this.toolRouter.add({name:"documentSymbol",description:"Get the symbol tree (functions, classes, variables with ranges) of an ArkTS (.ets) or C/C++ file. Useful for file overview, structured code breakdown, and large file slicing.",inputSchema:pe.object({file:pe.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets and C/C++ extensions.")})},async e=>this.handleDocumentSymbolCall(e))}registerCallHierarchyTool(){this.toolRouter.add({name:"callHierarchy",description:'Query call hierarchy for a function at the given position. Use direction "incoming" to find callers, "outgoing" to find callees. ArkTS supports both directions; C/C++ (clangd) supports incoming only.',inputSchema:pe.object({file:pe.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets and C/C++ extensions."),line:pe.number().describe("Line number (0-based)"),character:pe.number().describe("Character offset in the line (0-based)"),direction:pe.enum(["incoming","outgoing"]).describe('"incoming" = who calls this function, "outgoing" = what this function calls')})},async e=>this.handleCallHierarchyCall(e))}detectStandardProtocolAvailable(){try{let e=this.arktsLangServerPath;if(!e)return h.info("Standard LSP protocol unavailable: arkts-lang-server path not found"),!1;let t=Qi(e);return h.info(`ArktsCheck protocol: ${t?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${t})`),t}catch(e){return h.warn(`Failed to detect standard LSP protocol availability: ${e}`),!1}}validateContainment(e){let t=this.config.projectPath;if(t){let i=[];for(let o of e){let s=S.isPathContainedWithSymlink(o,t);s.contained||(h.warn(`Containment check failed: ${s.reason}`),i.push(s.reason))}return i.length>0?{content:[{type:"text",text:i.join(`
1301
- `)}],isError:!0}:null}let r=e.filter(i=>pn.isAbsolute(i));return r.length>0?(h.warn(`Absolute paths rejected (no project root): ${r.join(", ")}`),{content:[{type:"text",text:r.map(i=>`Absolute path is not allowed: ${i}`).join(`
1302
- `)}],isError:!0}):null}async handleCheckCall(e){let t=Array.isArray(e.files)?e.files.filter(d=>typeof d=="string"):[];if(t.length===0)return h.warn("check tool called with empty files list"),{content:[{type:"text",text:"No files provided"}],isError:!0};if(t.length>el)return h.warn(`check tool called with ${t.length} files (max: ${el})`),{content:[{type:"text",text:`Too many files: ${t.length}. Maximum allowed is ${el}.`}],isError:!0};let{etsFiles:r,cppFiles:i,unsupported:o}=lC(t);o.length>0&&h.warn(`Unsupported file types in check request: ${o.join(", ")}`);let s=o.map(d=>`Unsupported file type: ${d} (only .ets and C/C++ source/header files are supported)`),a=[];r.length>0&&this.mergeCheckResult(await this.callArktsCheck(r),s,a),i.length>0&&this.mergeCheckResult(await this.callCppCheck(i),s,a);let c=s.length>0;return{content:[{type:"text",text:[a.join(`
1317
+ `).trim();return!i&&n.length===0&&(a="No diagnostic information collected"),{content:[{type:"text",text:a}],isError:i}}async checkFile(e){let t=Nr(e),n=await wr.promises.readFile(e,"utf8"),o=yi(e),i=this.manager.registerDiagnosticCallback(t);this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:t,text:n,languageId:o,version:n.length}}});try{return await i}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:t}}})}}collectValidFiles(e,t){let n=Qr.resolve(this.manager.projectRoot),o=[];for(let i of e){let s=Qr.resolve(Qr.isAbsolute(i)?i:Qr.join(n,i));if(!wr.existsSync(s)){t.push(`File does not exist: ${i}`);continue}if(!wr.statSync(s).isFile()){t.push(`Not a regular file: ${i}`);continue}if(!Lr(s)){t.push(`Not a supported C/C++ file: ${i}`);continue}try{o.push(wr.realpathSync(s))}catch{o.push(s)}}return o}};function Wk(r,e){if(Array.isArray(e))return e.length===0?`${r} => no diagnostics`:`${r} => Diagnostic: ${JSON.stringify(e)}`;if(e&&typeof e=="object"&&typeof e.errorMessage=="string"){let t=e.errorMessage;return`${r} diagnostic failed, error_message: ${t}`}return`${r} => diagnostic failed, result: ${JSON.stringify(e)}`}function Vk(r){return new Promise(e=>setTimeout(e,r))}import*as Gn from"fs";import*as ia from"path";var Vn=class r{manager;static FEATURE_METHOD_MAP={hover:y.HOVER,definition:y.DEFINITION,declaration:y.DECLARATION,references:y.REFERENCES,implementation:y.IMPLEMENTATION};constructor(e){this.manager=e}async handleLspFeature(e,t){if(!this.manager.ready)return Bn();let n=this.resolveSingleFile(t.file);if(!n)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${t.file}`}],isError:!0};let o=r.FEATURE_METHOD_MAP[e];if(!o)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};h.info(`[ClangdLspTool] handleLspFeature: ${e} file=${n} line=${t.line} char=${t.character}`);try{let i=await this.withOpenFile(n,async a=>{let c={textDocument:{uri:a},position:{line:t.line,character:t.character}};return e==="references"&&(c.context={includeDeclaration:!0}),this.manager.sendFeatureRequest(o,c)});return{content:[{type:"text",text:i==null?`${e}: no result`:`${e}: ${JSON.stringify(i,null,2)}`}]}}catch(i){return oa(e,i)}}async handleWorkspaceSymbolRaw(e){if(!this.manager.ready)return null;try{let t=await this.manager.sendFeatureRequest(y.WORKSPACE_SYMBOL,{query:e});return Array.isArray(t)?t:t==null?null:[t]}catch(t){return h.error(`[ClangdLspTool] handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.manager.ready)return Bn();let t=this.resolveSingleFile(e);if(!t)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${e}`}],isError:!0};h.info(`[ClangdLspTool] handleDocumentSymbol: file=${t}`);try{let n=await this.withOpenFile(t,async i=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:i}}));return{content:[{type:"text",text:n==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(n,null,2)}`}]}}catch(n){return oa("documentSymbol",n)}}async handleCallHierarchy(e){if(!this.manager.ready)return Bn();if(e.direction==="outgoing")return{content:[{type:"text",text:"callHierarchy outgoing is not supported by clangd (incoming only)"}],isError:!0};let t=this.resolveSingleFile(e.file);if(!t)return{content:[{type:"text",text:`File does not exist or is not a C/C++ file: ${e.file}`}],isError:!0};h.info(`[ClangdLspTool] handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let n=await this.withOpenFile(t,i=>this.fetchCallHierarchyResult(i,e));return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(n,null,2)}`}]}}catch(n){return oa("callHierarchy",n)}}async fetchCallHierarchyResult(e,t){let n=await this.manager.sendFeatureRequest(y.PREPARE_CALL_HIERARCHY,{textDocument:{uri:e},position:{line:t.line,character:t.character}}),o=this.normalizeCallHierarchyItems(n);if(o.length===0)return{items:[],calls:[]};let i=await this.collectIncomingCalls(o);return{items:o,calls:i}}normalizeCallHierarchyItems(e){return Array.isArray(e)?e:e?[e]:[]}async collectIncomingCalls(e){let t=[];for(let n of e)t.push(...await this.fetchIncomingCalls(n));return t}async fetchIncomingCalls(e){let t=await this.manager.sendFeatureRequest(y.INCOMING_CALLS,{item:e});return Array.isArray(t)?t:t?[t]:[]}async withOpenFile(e,t){let n=Nr(e),o=await Gn.promises.readFile(e,"utf8"),i=yi(e);h.info(`[ClangdLspTool] withOpenFile didOpen uri=${n} langId=${i} len=${o.length}`),this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:n,text:o,languageId:i,version:o.length}}});try{return await t(n)}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:n}}})}}resolveSingleFile(e){let t=ia.isAbsolute(e)?e:ia.join(this.manager.projectRoot,e);return!Gn.existsSync(t)||!Gn.statSync(t).isFile()||!Lr(t)?null:t}};import{spawn as Gk}from"child_process";import*as aa from"fs";import*as Dh from"path";var qk=30*1e3,zk=30*1e3,sa=class{config;client=null;clangdProcess=null;nextRequestId=1;requestCallbacks=new hr;diagnosticWaiters=new Map;lastStartErrorMessage=null;onMessage=()=>{};disposeOnce=null;constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}get clangdPid(){return this.clangdProcess?.pid??null}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}async start(e){let t=!1;try{m.info(`[ClangdLspProxy] clangdPath: ${this.config.clangdPath}`),m.info(`[ClangdLspProxy] workspaceRoot: ${this.config.workspaceRoot}`),m.info(`[ClangdLspProxy] compileCommandsDir: ${this.config.compileCommandsDir}`),this.ensureLogDir(),this.clangdProcess=this.spawnClangd();let n={serverPath:"",logPath:this.config.logPath,indexingDataLocation:this.config.logPath,cwd:this.config.workspaceRoot};this.client=new mr(n),this.client.on("message",i=>this.handleRawMessage(i)),this.client.on("error",i=>this.handleError(i)),this.client.attachProcess(this.clangdProcess,{stderrAsError:!1});let o=this.buildInitializeParams();await this.sendLspRequest(y.INITIALIZE,o,rt),m.info("[ClangdLspProxy] initialize response received"),this.sendNotification(y.INITIALIZED,{}),t=!0}catch(n){this.lastStartErrorMessage=n instanceof Error?n.message:String(n),m.error(`[ClangdLspProxy] initialization failed: ${this.lastStartErrorMessage}`),await this.dispose()}e?.(t)}async hover(e){return this.sendLspRequest(y.HOVER,e)}async definition(e){return this.sendLspRequest(y.DEFINITION,e)}async declaration(e){return this.sendLspRequest(y.DECLARATION,e)}async references(e){return this.sendLspRequest(y.REFERENCES,e)}async implementation(e){return this.sendLspRequest(y.IMPLEMENTATION,e)}async documentSymbol(e){return this.sendLspRequest(y.DOCUMENT_SYMBOL,e)}async workspaceSymbol(e){return this.sendLspRequest(y.WORKSPACE_SYMBOL,e)}async prepareCallHierarchy(e){return this.sendLspRequest(y.PREPARE_CALL_HIERARCHY,e)}async incomingCalls(e){return this.sendLspRequest(y.INCOMING_CALLS,e)}async sendFeatureRequest(e,t){return this.sendLspRequest(e,t)}sendDidOpen(e){this.sendNotification(y.DID_OPEN,e)}sendDidChange(e){this.sendNotification(y.DID_CHANGE,e)}sendDidClose(e){this.sendNotification(y.DID_CLOSE,e)}sendNotification(e,t){if(!this.client){m.warn("[ClangdLspProxy] sendNotification before ready, dropped");return}this.client.sendNotification(e,t)}registerDiagnosticCallback(e){let t=this.normalizeClangdUri(e);if(this.diagnosticWaiters.has(t)){m.warn(`[ClangdLspProxy] overwrite existing diagnostic waiter for ${t}`);let n=this.diagnosticWaiters.get(t);clearTimeout(n.timer),this.diagnosticWaiters.delete(t)}return new Promise((n,o)=>{let i=setTimeout(()=>{this.diagnosticWaiters.delete(t)&&o(new Error(`Wait for clangd diagnostics timeout, uri: ${t}`))},zk);this.diagnosticWaiters.set(t,{resolve:n,reject:o,timer:i})})}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}async performDispose(){this.requestCallbacks.rejectAll(new Error("ClangdLspProxy disposing"));for(let[,e]of this.diagnosticWaiters)clearTimeout(e.timer),e.reject(new Error("ClangdLspProxy disposing"));if(this.diagnosticWaiters.clear(),this.client&&this.clangdProcess)try{await this.sendLspRequest(y.SHUTDOWN,null,3e3).catch(e=>{m.warn(`[ClangdLspProxy] shutdown request failed: ${e}`)}),this.sendNotification(y.EXIT,null),await this.client.waitForExitOrTimeout(300)}catch(e){m.warn(`[ClangdLspProxy] dispose error: ${e}`)}if(this.clangdProcess){try{this.clangdProcess.exitCode===null&&this.clangdProcess.signalCode===null&&this.clangdProcess.kill()}catch{}this.clangdProcess=null}this.client=null}spawnClangd(){let e=[`--compile-commands-dir=${z(this.config.compileCommandsDir)}`,"--log=info","--pch-storage=memory","--limit-results=100"];m.info(`[ClangdLspProxy] spawn: ${this.config.clangdPath} ${e.join(" ")}`);let t=Gk(this.config.clangdPath,e,{cwd:this.config.workspaceRoot,stdio:["pipe","pipe","pipe"],windowsHide:!0});if(!t.stdin||!t.stdout||!t.stderr)throw new Error("Failed to spawn clangd: stdio not available");return t}buildInitializeParams(){let e=dn(this.config.workspaceRoot),t=mt(e),n=Dh.basename(e)||"workspace";return{processId:process.pid,clientInfo:{name:"devecocli-mcp-server",version:"1.3.3-Test.3"},rootPath:e,rootUri:t,workspaceFolders:[{uri:t,name:n}],capabilities:this.buildClientCapabilities(),initializationOptions:null}}buildClientCapabilities(){return{textDocument:{synchronization:{didOpen:!0,didChange:!0,didClose:!0,willSave:!1,save:!1},publishDiagnostics:{relatedInformation:!0,versionSupport:!1,tagSupport:{valueSet:[1,2]}},hover:{contentFormat:["markdown","plaintext"]},completion:{contextSupport:!1,completionItemKind:{valueSet:[]}},signatureHelp:{signatureInformation:{documentationFormat:["markdown","plaintext"]}},references:{},declaration:{linkSupport:!0},definition:{linkSupport:!0},implementation:{linkSupport:!0},documentSymbol:{hierarchicalDocumentSymbolSupport:!0,symbolKind:{valueSet:[]}},callHierarchy:{dynamicRegistration:!1}},workspace:{symbol:{symbolKind:{valueSet:[]}},configuration:!1,didChangeWatchedFiles:{dynamicRegistration:!1}}}}sendLspRequest(e,t,n=qk){if(!this.client)return Promise.reject(new Error("[ClangdLspProxy] client not ready"));let o=this.nextRequestId++,i=this.requestCallbacks.registerPending(o,e,n);return this.client.sendRequest(e,t,o),i}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(n){let o=n instanceof Error?n.message:String(n);m.error(`[ClangdLspProxy] JSON parse error: ${o}, raw: ${e.slice(0,200)}`);return}"id"in t&&("result"in t||"error"in t)?this.handleResponse(t):"method"in t?this.handleNotification(t):m.warn(`[ClangdLspProxy] unrecognized message: ${JSON.stringify(t).slice(0,200)}`)}handleResponse(e){let t=e.id;if(t==null||typeof t!="string"&&typeof t!="number")return;let n=t;if(e.error!==void 0&&e.error!==null){let o=e.error;m.warn(`[ClangdLspProxy] LSP error id=${n}: code=${o.code??-1} message=${o.message??"unknown"}`),this.requestCallbacks.rejectPending(n,new Error(`LSP error ${o.code??-1}: ${o.message??"unknown"}`))}else this.requestCallbacks.resolvePending(n,e.result)}handleNotification(e){let t=e.method;if(t)switch(t){case y.PUBLISH_DIAGNOSTICS:this.handlePublishDiagnostics(e.params);break;case y.PROGRESS:this.onMessage({jsonrpc:T,method:y.PROGRESS,params:e.params});break;case y.WINDOW_SHOW_MESSAGE:m.info(`[ClangdLspProxy] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:m.info(`[ClangdLspProxy] window/logMessage: ${JSON.stringify(e.params)}`);break;default:this.onMessage({jsonrpc:T,method:t,params:e.params})}}handlePublishDiagnostics(e){if(!e||!e.uri)return;let t=this.normalizeClangdUri(e.uri),n=this.diagnosticWaiters.get(t);if(!n&&this.diagnosticWaiters.size===1){let s=this.diagnosticWaiters.keys().next().value;n=this.diagnosticWaiters.get(s),n&&this.diagnosticWaiters.delete(s)}else n&&this.diagnosticWaiters.delete(t);if(!n)return;clearTimeout(n.timer);let o=Array.isArray(e.diagnostics)?e.diagnostics:[],i=o.length;m.info(`[ClangdLspProxy] diagnostics received uri=${t} count=${i}`),n.resolve(o)}handleError(e){for(let[,t]of this.diagnosticWaiters)clearTimeout(t.timer),t.reject(e);this.diagnosticWaiters.clear(),this.requestCallbacks.rejectAll(e),this.onMessage({jsonrpc:T,method:y.CPP_ERROR,params:{message:e.message}})}ensureLogDir(){if(this.config.logPath)try{aa.existsSync(this.config.logPath)||aa.mkdirSync(this.config.logPath,{recursive:!0})}catch{}}normalizeClangdUri(e){try{let t=new URL(e);if(t.protocol==="file:"){let n=decodeURIComponent(t.pathname);return process.platform==="win32"&&/^\/[a-zA-Z]:/.test(n)&&(n=n.slice(1)),mt(n)}}catch{}return e}};import*as Ko from"path";import*as Il from"fs";var Xo=class r{config;proxy=null;isInitialized=!1;onMessage=()=>{};disposeOnce=null;initPromise=null;initDeadlineTimer=null;initResolve=null;initReject=null;resolvedRoot="";constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}get ready(){return this.isInitialized&&this.proxy!==null}get clangdPid(){return this.proxy?.clangdPid??null}get projectRoot(){return this.resolvedRoot}async start(){if(!this.isInitialized){if(this.initPromise){await this.initPromise;return}this.initPromise=this.doStart();try{await this.initPromise}catch(e){throw this.initPromise=null,e}}}sendNotification(e){if(!this.proxy){m.warn("[ClangdLspManager] sendNotification before LSP ready, dropped");return}this.dispatchNotification(e)}async sendFeatureRequest(e,t){if(!this.proxy)throw new Error("[ClangdLspManager] LSP not ready");return this.proxy.sendFeatureRequest(e,t)}registerDiagnosticCallback(e){return this.proxy?this.proxy.registerDiagnosticCallback(e):Promise.reject(new Error("[ClangdLspManager] LSP not ready"))}static async handleSyncCppProject(e,t,n,o,i){if(m.info("[ClangdLspManager] Received cpp/syncProject"),!e||!t)return m.error("[ClangdLspManager] handleSyncCppProject: workspaceRoot or sdkPath is empty"),{status:"failed",reason:"workspaceRoot or sdkPath is empty"};if(rr(e).length===0)return m.info("[ClangdLspManager] No C++ modules found, skipping compileNative"),{status:"success"};let a=i?.skipCompileNative===!0,c=await Di(e,a?async()=>(m.info("[ClangdLspManager] compileNative skipped (C++ project up-to-date)"),{status:"success"}):async()=>r.executeCompileNative(e,t,n,o));return c.acquired?c.result:(m.info("[ClangdLspManager] Build lock held by another process, skipping sync"),{status:"skipped",reason:"build lock held by another process"})}static async executeCompileNative(e,t,n,o){try{return await Tu(e,t,n,o),m.info("[ClangdLspManager] compileNative + merge compile_commands completed"),{status:"success"}}catch(i){let s=i instanceof Error?i.message:String(i);return m.error(`[ClangdLspManager] compileNative failed: ${s}`),{status:"failed",reason:s}}}async dispose(){return this.disposeOnce||(this.disposeOnce=this.performDispose()),this.disposeOnce}doStart(){return new Promise((e,t)=>{this.initResolve=e,this.initReject=t,this.armInitTimer(rt);try{this.startProxy()}catch(n){this.failInit(n instanceof Error?n:new Error(String(n)))}})}startProxy(){let e=Lt(this.config.workspaceRoot);this.resolvedRoot=e?ge(e):ge(this.config.workspaceRoot);let t=this.config.logPath??this.getLogPath();Li(t);let n=this.config.clangdPath;if(!n){let s="clangd not found (install DevEco Studio / CLT)";m.error(`[ClangdLspManager] ${s}`),this.failInit(new Error(s));return}let o=Ko.dirname(xr(this.resolvedRoot));try{Il.mkdirSync(o,{recursive:!0})}catch(s){m.warn(`[ClangdLspManager] Failed to create compile_commands dir: ${s}`)}m.info(`[ClangdLspManager] clangdPath: ${n}`),m.info(`[ClangdLspManager] workspaceRoot: ${this.resolvedRoot}`),m.info(`[ClangdLspManager] compileCommandsDir: ${o}`);let i=new sa({clangdPath:n,workspaceRoot:this.resolvedRoot,compileCommandsDir:o,logPath:t});i.setOnMessage(s=>this.handleLspMessage(s)),this.proxy=i,i.start(s=>this.handleProxyInitialized(s)).catch(s=>{let a=s instanceof Error?s:new Error(String(s));this.handleProxyInitialized(!1,a.message)})}handleProxyInitialized=(e,t)=>{if(this.clearInitTimer(),e){this.isInitialized=!0,m.info("[ClangdLspManager] clangd initialized");let n=this.initResolve;this.clearInitHandlers(),n?.()}else{let n=t??this.proxy?.consumeStartErrorMessage()??"unknown error";m.error(`[ClangdLspManager] clangd initialization failed: ${n}`),this.isInitialized=!1,this.proxy=null;let o=this.initReject;this.clearInitHandlers(),o?.(new Error(`C++ LSP initialize failed: ${n}`))}};handleLspMessage(e){this.onMessage(e)}dispatchNotification(e){if(!this.proxy)return;let t=e,n=t.method;if(!n){m.warn("[ClangdLspManager] dispatchNotification: missing method");return}let o=t.params;switch(n){case y.DID_OPEN:this.proxy.sendDidOpen(o);break;case y.DID_CHANGE:this.proxy.sendDidChange(o);break;case y.DID_CLOSE:this.proxy.sendDidClose(o);break;default:this.proxy.sendNotification(n,o)}}armInitTimer(e){this.clearInitTimer(),this.initDeadlineTimer=setTimeout(()=>{this.failInit(new Error("C++ LSP initialize timeout"))},e)}clearInitTimer(){this.initDeadlineTimer&&(clearTimeout(this.initDeadlineTimer),this.initDeadlineTimer=null)}clearInitHandlers(){this.clearInitTimer(),this.initResolve=null,this.initReject=null}failInit(e){let t=this.initReject;this.clearInitHandlers(),t?.(e)}async performDispose(){let e=this.initReject;if(this.clearInitHandlers(),e?.(new Error("ClangdLspManager disposing")),this.proxy){try{await this.proxy.dispose()}catch(t){m.warn(`[ClangdLspManager] proxy dispose error: ${t}`)}this.proxy=null}this.isInitialized=!1,this.initPromise=null}getLogPath(){try{let e=Ko.join(Kt(),"CppCheck"),t=`${Date.now()}${process.hrtime.bigint()%1000000n}`,n=Ko.join(e,"lsp-log",t);return Il.mkdirSync(n,{recursive:!0}),ge(n)}catch{return"auto"}}};function Rh(r){let e=Ti(r);return m.info(`[SyncGuard] ${e.reason}`),e}var Rl=(s=>(s[s.IDLE=0]="IDLE",s[s.DISCOVERING=1]="DISCOVERING",s[s.SYNCING=2]="SYNCING",s[s.INITIALIZING=3]="INITIALIZING",s[s.READY=4]="READY",s[s.ERROR=5]="ERROR",s))(Rl||{}),Th=(s=>(s[s.IDLE_CPP=0]="IDLE_CPP",s[s.DISCOVERING_CPP=1]="DISCOVERING_CPP",s[s.SYNCING_CPP=2]="SYNCING_CPP",s[s.INITIALIZING_CPP=3]="INITIALIZING_CPP",s[s.READY_CPP=4]="READY_CPP",s[s.ERROR_CPP=5]="ERROR_CPP",s))(Th||{}),Tt=3,Al=600*1e3,Dl=100,ca=class{server;toolRouter;config={};arktsCheckTool=null;cppCheckTool=null;cppLspTool=null;cppLspManager=null;projectState=0;workspaceRoot="";sdkPath="";arktsLangServerPath=null;nodePath="";ohpmJsPath="";hvigorJsPath="";clangdPath=null;initPromise=null;needsReinit=!1;initRetryCount=0;originalProjectPath="";configChangedTriggeredResync=!1;syncSkippedDueToLock=!1;syncSkipStartedAt=0;standardProtocolAvailable=!1;cppProjectState=0;cppInitPromise=null;cppNeedsReinit=!1;cppInitRetryCount=0;cppSyncSkippedDueToLock=!1;cppSyncSkipStartedAt=0;cppHasNoCppCode=!1;cppEnabled;constructor(e={}){this.config=e,Mr(e.debug??!1);let t,n=e.projectPath?.trim()??"";this.originalProjectPath=n,n==="."?(t=process.cwd(),h.info(`Constructor: configuredPath is '.', startPath: '${t}'`)):n===""?(t="",h.info("Constructor: configuredPath is empty, startPath remains empty")):(t=n,h.info(`Constructor: using configured path as startPath: '${t}'`));let o=Lt(t);h.info(`Constructor: findHarmonyProject('${t}') => ${o??"null"}`),this.config.projectPath=o??void 0,this.sdkPath=this.config.sdkPath??"",this.arktsLangServerPath=this.config.arktsLangServerPath??null,this.nodePath=this.config.nodePath??"",this.ohpmJsPath=this.config.ohpmJsPath??"",this.hvigorJsPath=this.config.hvigorJsPath??"",this.clangdPath=this.config.clangdPath??null,this.cppEnabled=this.config.cppEnabled??!0,h.info(`Constructor: sdkPath='${this.sdkPath}', arktsLangServerPath='${this.arktsLangServerPath??"(null)"}', cppEnabled=${this.cppEnabled}`),this.server=new Jk({name:"devecocli-mcp-server",version:"0.0.1"}),this.toolRouter=El(e.telemetry,()=>this.arktsCheckTool?.aceServerPid??null,()=>this.config.projectPath??"",()=>this.sdkPath??""),this.standardProtocolAvailable=this.detectStandardProtocolAvailable(),this.registerTools()}registerTools(){this.registerCheckTool(),this.registerLspFeatureTools(),this.registerRestartTool()}registerRestartTool(){this.toolRouter.add({name:"restart",description:"Restart the MCP server in-place: re-sync the project and re-initialize the LSP, without dropping the client connection. Use to recover from a stuck/ERROR state after fixing the root cause, instead of exiting and reopening the agent. Use target to restart one side only (arkts/cpp) or both (all, default). Only callable when the project state is ready/idle/error; during discovery/sync/init (large-project init can take minutes) it returns an error\u2014wait for ready and retry tools instead. Caution: if initialization fails again after a restart, the cause is likely a persistent project/SDK configuration issue\u2014do not call restart repeatedly; ask the user to fix the project first.",inputSchema:he.object({target:he.enum(["arkts","cpp","all"]).default("all").describe('Which backend to restart: "arkts" (ArkTS ace-server), "cpp" (C++ clangd), or "all" (both, default).')})},async e=>this.handleRestartCall(e))}registerCheckTool(){this.toolRouter.add({name:"check",description:"Perform static syntax analysis on HarmonyOS project source files and return structured diagnostics. Supported languages: ArkTS and C/C++.",inputSchema:he.object({files:he.array(he.string()).min(1).describe("List of source file paths to check, relative to the project root (absolute paths within the project are also accepted). Supports ArkTS and C/C++ files in the same call.")})},async e=>this.handleCheckCall(e))}registerLspFeatureTools(){if(!this.standardProtocolAvailable){h.info("Skip registering LSP feature tools (hover/definition/declaration/references/implementation, workspaceSymbol, documentSymbol, callHierarchy): standard LSP protocol unavailable (standardIndex/index.js not found). These tools require a DevEco Studio version that ships the standard LSP server entry.");return}let e=he.object({file:he.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets (ArkTS) and C/C++ extensions."),line:he.number().describe("Line number (0-based)"),character:he.number().describe("Character offset in the line (0-based)")});for(let{name:t,description:n,feature:o}of this.getPositionFeatures())this.toolRouter.add({name:t,description:n,inputSchema:e},async i=>this.handleLspFeatureCall(o,i));this.registerSymbolTools(),this.registerCallHierarchyTool()}getPositionFeatures(){return[{name:"hover",description:"Get hover information (type info, documentation) at a specific position in an ArkTS (.ets) or C/C++ file.",feature:"hover"},{name:"definition",description:"Find where the symbol at the given position is defined. Returns file path, line, and character.",feature:"definition"},{name:"declaration",description:"Find the declaration of the symbol at the given position. In ArkTS, this may differ from definition.",feature:"declaration"},{name:"references",description:"Find all references to the symbol at the given position across the HarmonyOS project.",feature:"references"},{name:"implementation",description:"Find implementations of the symbol at the given position (e.g., interface implementations).",feature:"implementation"}]}registerSymbolTools(){this.toolRouter.add({name:"workspaceSymbol",description:"Search for symbols by name across the entire HarmonyOS project.",inputSchema:he.object({query:he.string().describe("Symbol name (or partial) to search for")})},async e=>this.handleWorkspaceSymbolCall(e)),this.toolRouter.add({name:"documentSymbol",description:"Get the symbol tree (functions, classes, variables with ranges) of an ArkTS (.ets) or C/C++ file. Useful for file overview, structured code breakdown, and large file slicing.",inputSchema:he.object({file:he.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets and C/C++ extensions.")})},async e=>this.handleDocumentSymbolCall(e))}registerCallHierarchyTool(){this.toolRouter.add({name:"callHierarchy",description:'Query call hierarchy for a function at the given position. Use direction "incoming" to find callers, "outgoing" to find callees. ArkTS supports both directions; C/C++ (clangd) supports incoming only.',inputSchema:he.object({file:he.string().describe("Source file path, relative to the project root (absolute paths within the project are also accepted). Supports .ets and C/C++ extensions."),line:he.number().describe("Line number (0-based)"),character:he.number().describe("Character offset in the line (0-based)"),direction:he.enum(["incoming","outgoing"]).describe('"incoming" = who calls this function, "outgoing" = what this function calls')})},async e=>this.handleCallHierarchyCall(e))}detectStandardProtocolAvailable(){try{let e=this.arktsLangServerPath;if(!e)return h.info("Standard LSP protocol unavailable: arkts-lang-server path not found"),!1;let t=gi(e);return h.info(`ArktsCheck protocol: ${t?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${t})`),t}catch(e){return h.warn(`Failed to detect standard LSP protocol availability: ${e}`),!1}}async handleCheckCall(e){let t=Array.isArray(e.files)?e.files.filter(d=>typeof d=="string"):[];if(t.length===0)return h.warn("check tool called with empty files list"),{content:[{type:"text",text:"No files provided"}],isError:!0};if(t.length>Dl)return h.warn(`check tool called with ${t.length} files (max: ${Dl})`),{content:[{type:"text",text:`Too many files: ${t.length}. Maximum allowed is ${Dl}.`}],isError:!0};let{etsFiles:n,cppFiles:o,unsupported:i}=Kk(t);i.length>0&&h.warn(`Unsupported file types in check request: ${i.join(", ")}`);let s=i.map(d=>`Unsupported file type: ${d} (only .ets and C/C++ source/header files are supported)`),a=[];n.length>0&&this.mergeCheckResult(await this.callArktsCheck(n),s,a),o.length>0&&this.mergeCheckResult(await this.callCppCheck(o),s,a);let c=s.length>0;return{content:[{type:"text",text:[a.join(`
1303
1318
  `),s.join(`
1304
1319
  `)].filter(d=>d.trim().length>0).join(`
1305
- `).trim()||"No diagnostics collected"}],isError:c}}async callArktsCheck(e){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return h.warn(`ArkTS check rejected: project is ${tl[this.projectState]}, files: ${e.join(", ")}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return h.warn(`ArkTS check rejected: LSP is initializing, files: ${e.join(", ")}`),{content:[{type:"text",text:"ArkTS LSP is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleErrorCheck();case 4:return this.arktsCheckTool.handleCall({files:e});default:return h.error(`ArkTS check: unknown project state ${this.projectState}, files: ${e.join(", ")}`),{content:[{type:"text",text:`Unknown project state: ${this.projectState}`}],isError:!0}}}async handleLspFeatureCall(e,t){let r=t.file,i=t.line,o=t.character;return typeof r!="string"||typeof i!="number"||typeof o!="number"?{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}:this.routeLspRequest(r,e,async()=>{if(r.endsWith(".ets"))return this.arktsCheckTool.handleLspFeature(e,{file:r,line:i,character:o});let s=e;return this.cppLspTool.handleLspFeature(s,{file:r,line:i,character:o})})}async handleWorkspaceSymbolCall(e){let t=e.query;return typeof t!="string"||t.trim().length===0?{content:[{type:"text",text:"Missing or invalid parameter: query (non-empty string required)."}],isError:!0}:this.routeWorkspaceSymbolRequest(t)}async routeWorkspaceSymbolRequest(e){let t=this.projectState===4&&this.arktsCheckTool!==null,r=this.cppProjectState===4&&!this.cppHasNoCppCode&&this.cppLspTool!==null;if(!t&&!r){let a=this.describeArktsState(),c=this.describeCppState();return h.info(`workspaceSymbol rejected: ArkTS ${a}; C++ ${c}`),{content:[{type:"text",text:`workspaceSymbol: ArkTS ${a}; C++ ${c}`}],isError:!0}}let i=[],o=new Set;if(t)try{this.mergeSymbolItems(await this.arktsCheckTool.handleWorkspaceSymbolRaw(e),o,i)}catch(a){h.warn(`workspaceSymbol ArkTS query failed: ${a.message}`)}if(r)try{this.mergeSymbolItems(await this.cppLspTool.handleWorkspaceSymbolRaw(e),o,i)}catch(a){h.warn(`workspaceSymbol C++ query failed: ${a.message}`)}return{content:[{type:"text",text:i.length===0?"workspaceSymbol: no result":`workspaceSymbol: ${JSON.stringify(i,null,2)}`}]}}symbolDedupKey(e){let t=e,r=t?.location?.uri??"",i=t?.location?.range?.start?.line??0,o=t?.location?.range?.start?.character??0;return`${r}:${i}:${o}`}mergeSymbolItems(e,t,r){if(e)for(let i of e){let o=this.symbolDedupKey(i);t.has(o)||(t.add(o),r.push(i))}}describeArktsState(){switch(this.projectState){case 0:return"idle";case 1:return"discovering";case 2:return"syncing (retry 10s)";case 3:return"initializing (retry 10s)";case 5:return`error (${this.initRetryCount}/${St})`;case 4:return"ready";default:return"unknown"}}describeCppState(){switch(this.cppProjectState){case 0:return"idle";case 1:return"discovering";case 2:return"syncing (retry 25s)";case 3:return"initializing (retry 10s)";case 5:return`error (${this.cppInitRetryCount}/${St})`;case 4:return this.cppHasNoCppCode?"ready (no C++ code)":"ready";default:return"unknown"}}async handleDocumentSymbolCall(e){let t=e.file;return typeof t!="string"?{content:[{type:"text",text:"Missing or invalid parameter: file (string required)."}],isError:!0}:this.routeLspRequest(t,"documentSymbol",async()=>t.endsWith(".ets")?this.arktsCheckTool.handleDocumentSymbol(t):this.cppLspTool.handleDocumentSymbol(t))}async handleCallHierarchyCall(e){let t=e.file,r=e.line,i=e.character,o=e.direction;return typeof t!="string"||typeof r!="number"||typeof i!="number"?{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}:o!=="incoming"&&o!=="outgoing"?{content:[{type:"text",text:'Parameter direction must be "incoming" or "outgoing".'}],isError:!0}:this.routeLspRequest(t,`callHierarchy(${o})`,async()=>t.endsWith(".ets")?this.arktsCheckTool.handleCallHierarchy({file:t,line:r,character:i,direction:o}):this.cppLspTool.handleCallHierarchy({file:t,line:r,character:i,direction:o}))}async handleCodeActionCall(e){let{file:t,line:r,character:i}=this.extractPositionArgs(e);return t?this.routeArktsRequest("codeAction",()=>this.arktsCheckTool.handleCodeAction({file:t,line:r,character:i})):{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}}async handleRenameCall(e){let{file:t,line:r,character:i}=this.extractPositionArgs(e),o=e.newName;return!t||typeof o!="string"||o.trim().length===0?{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number), newName (non-empty string)."}],isError:!0}:this.routeArktsRequest("rename",()=>this.arktsCheckTool.handleRename({file:t,line:r,character:i,newName:o}))}async handleTypeHierarchyCall(e){let{file:t,line:r,character:i}=this.extractPositionArgs(e),o=e.direction;return t?o!=="supertypes"&&o!=="subtypes"?{content:[{type:"text",text:'Parameter direction must be "supertypes" or "subtypes".'}],isError:!0}:this.routeArktsRequest(`typeHierarchy(${o})`,()=>this.arktsCheckTool.handleTypeHierarchy({file:t,line:r,character:i,direction:o})):{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}}async handleCompletionItemResolveCall(e){let t=e.item;return t==null?{content:[{type:"text",text:"Missing parameter: item (completion item object required)."}],isError:!0}:this.routeArktsRequest("completionItemResolve",()=>this.arktsCheckTool.handleCompletionItemResolve(t))}extractPositionArgs(e){let t=e.file,r=e.line,i=e.character;return typeof t!="string"||typeof r!="number"||typeof i!="number"?{file:null,line:0,character:0}:{file:t,line:r,character:i}}async routeArktsRequest(e,t){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return h.warn(`ArkTS ${e} rejected: project is ${tl[this.projectState]}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return h.warn(`ArkTS ${e} rejected: LSP is initializing`),{content:[{type:"text",text:"ArkTS LSP is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleErrorCheck();case 4:return t();default:return h.warn(`ArkTS ${e} rejected: unknown project state ${this.projectState}`),{content:[{type:"text",text:"Unknown project state, please retry"}],isError:!0}}}async handleIdleCheck(){if(this.ensureProjectReady(),this.config.projectPath){let e,t;return this.syncSkippedDueToLock?(e=`Another build process is running, sync deferred (waiting ${this.syncSkipStartedAt>0?Math.round((Date.now()-this.syncSkipStartedAt)/1e3):0}s), please retry in 25 seconds`,t="lock contention",this.syncSkippedDueToLock=!1):this.configChangedTriggeredResync?(e="Config file changed, resyncing project, please retry in 10 seconds",t="config changed",this.configChangedTriggeredResync=!1):(e="HarmonyOS project detected, syncing, please retry in 10 seconds",t="initial"),h.info(`Idle check: project '${this.config.projectPath}' already known, triggering init (${t})`),{content:[{type:"text",text:e}],isError:!0}}return this.workspaceRoot||this.originalProjectPath?(h.info(`Idle check: no project path yet, will try from '${this.workspaceRoot}' or '${this.originalProjectPath}'`),{content:[{type:"text",text:"Initializing, please retry in 10 seconds"}],isError:!0}):(h.warn("Idle check: no search candidates available"),{content:[{type:"text",text:"No HarmonyOS project detected. Please verify the project directory or create a project first."}],isError:!0})}async handleErrorCheck(){return this.initRetryCount>=St?(h.error(`Init retry limit reached (${this.initRetryCount}/${St}), will not auto-retry`),{content:[{type:"text",text:`Project initialization failed repeatedly (auto-retry exhausted: ${this.initRetryCount}/${St}). Ask the user to investigate and confirm \`ohpm install\` + \`hvigor\` sync succeed manually. Do NOT call the \`restart\` tool repeatedly \u2014 call it at most once after the user fixes the root cause; if it fails again, stop retrying and escalate to the user.`}],isError:!0}):(h.info(`Error check: auto-retrying (${this.initRetryCount}/${St})`),this.ensureProjectReady(),{content:[{type:"text",text:"Project initialization failed, auto-retrying, please retry in 10 seconds"}],isError:!0})}async routeCppRequest(e,t){switch(this.cppProjectState){case 0:return this.handleCppIdleCheck();case 1:case 2:return h.warn(`C++ ${e} rejected: C++ project is ${Pm[this.cppProjectState]}`),{content:[{type:"text",text:"C++ project is syncing (compileNative), please retry in 25 seconds"}],isError:!0};case 3:return h.warn(`C++ ${e} rejected: clangd is initializing`),{content:[{type:"text",text:"C++ LSP (clangd) is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleCppErrorCheck();case 4:return this.cppEnabled?this.cppHasNoCppCode?{content:[{type:"text",text:"No C++ code in this project"}],isError:!0}:this.cppLspManager?.ready?t():{content:[{type:"text",text:"C++ LSP is not ready, please retry later"}],isError:!0}:{content:[{type:"text",text:"C++ LSP is disabled. Set DEVECO_CLI_CPP_ENABLED=true to enable."}],isError:!0};default:return h.warn(`C++ ${e} rejected: unknown C++ project state ${this.cppProjectState}`),{content:[{type:"text",text:"Unknown C++ project state, please retry"}],isError:!0}}}async routeLspRequest(e,t,r){return e.endsWith(".ets")?this.routeArktsRequest(t,r):An(e)?this.routeCppRequest(t,r):{content:[{type:"text",text:`Unsupported file type: ${e} (only .ets and C/C++ source/header files are supported)`}],isError:!0}}async handleCppIdleCheck(){if(this.ensureCppProjectReady(),this.config.projectPath){let e;return this.cppSyncSkippedDueToLock?(e=`Another build process is running, C++ sync deferred (waiting ${this.cppSyncSkipStartedAt>0?Math.round((Date.now()-this.cppSyncSkipStartedAt)/1e3):0}s), please retry in 25 seconds`,this.cppSyncSkippedDueToLock=!1):e="C++ project detected, syncing (compileNative), please retry in 25 seconds",h.info(`C++ idle check: project '${this.config.projectPath}', triggering C++ init`),{content:[{type:"text",text:e}],isError:!0}}return{content:[{type:"text",text:"No HarmonyOS project detected for C++ tools."}],isError:!0}}async handleCppErrorCheck(){return this.cppInitRetryCount>=St?(h.error(`C++ init retry limit reached (${this.cppInitRetryCount}/${St}), will not auto-retry`),{content:[{type:"text",text:`C++ project initialization failed repeatedly (auto-retry exhausted: ${this.cppInitRetryCount}/${St}). Ask the user to investigate and confirm \`hvigor compileNative\` succeeds manually. Do NOT call the \`restart\` tool repeatedly \u2014 call it at most once after the user fixes the root cause; if it fails again, stop retrying and escalate to the user.`}],isError:!0}):(h.info(`C++ error check: auto-retrying (${this.cppInitRetryCount}/${St})`),this.ensureCppProjectReady(),{content:[{type:"text",text:"C++ project initialization failed, auto-retrying, please retry in 25 seconds"}],isError:!0})}async callCppCheck(e){return this.routeCppRequest("check",async()=>this.cppCheckTool.handleCall({files:e}))}mergeCheckResult(e,t,r){let i=e.content.map(o=>o.text).filter(o=>o&&o.trim().length>0).join(`
1306
- `);i&&(e.isError?t.push(i):r.push(i))}assertRestartAllowed(e){if(e==="arkts"||e==="all"){let t=this.projectState;if(t!==4&&t!==0&&t!==5)return{content:[{type:"text",text:`ArkTS project state: ${this.describeArktsState()}, sync/init in progress, restart unavailable (would interrupt the current flow). Wait for the state to become ready and retry other tools directly\u2014no restart needed. restart is only available in ready/idle/error states.`}],isError:!0}}if(e==="cpp"||e==="all"){let t=this.cppProjectState;if(t!==4&&t!==0&&t!==5)return{content:[{type:"text",text:`C++ project state: ${this.describeCppState()}, sync/init in progress, restart unavailable (would interrupt the current flow). Wait for the state to become ready and retry other tools directly\u2014no restart needed. restart is only available in ready/idle/error states.`}],isError:!0}}return null}async handleRestartCall(e){let t=e.target,r=t==="cpp"?"cpp":t==="arkts"?"arkts":"all";if(r==="cpp"&&!this.cppEnabled)return{content:[{type:"text",text:"C++ LSP is disabled, cannot restart. Set DEVECO_CLI_CPP_ENABLED=true to enable."}],isError:!0};let i=this.assertRestartAllowed(r);return i||(this.restartProject(r),{content:[{type:"text",text:`MCP server is restarting in-place (${r==="all"?"ArkTS + C++":r==="cpp"?"C++":"ArkTS"}): re-sync project + re-initialize LSP. Client connection preserved\u2014no need to exit the agent. Please retry tools in ~10 seconds.`}]})}restartProject(e){h.info(`[restart] resetting tools + state, re-init (target=${e})`),(e==="arkts"||e==="all")&&this.restartArkts(),(e==="cpp"||e==="all")&&this.cppEnabled&&this.restartCpp()}restartArkts(){this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(e=>h.warn("Failed to shutdown ArktsCheckTool during restart:",e)),this.arktsCheckTool=null),this.initRetryCount=0,this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.configChangedTriggeredResync=!1,this.initPromise?(this.needsReinit=!0,h.info("[restart] ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(e=>h.warn("Failed to re-init ArkTS project during restart:",e)))}restartCpp(){this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(e=>h.warn("Failed to dispose ClangdLspManager during restart:",e)),this.cppLspManager=null),this.cppInitRetryCount=0,this.cppHasNoCppCode=!1,this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,this.cppInitPromise?(this.cppNeedsReinit=!0,h.info("[restart] C++ init is running, will reinit after current init completes")):(this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>h.warn("Failed to re-init C++ project during restart:",e)))}setProjectPath(e){this.config.projectPath=e,this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(t=>{h.warn("Failed to shutdown ArktsCheckTool during setProjectPath:",t)}),this.arktsCheckTool=null),this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(t=>{h.warn("Failed to dispose ClangdLspManager during setProjectPath:",t)}),this.cppLspManager=null),this.initPromise?(this.needsReinit=!0,h.info("Project path changed while ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(t=>{h.warn("Failed to re-init project after setProjectPath:",t)})),this.cppInitPromise?(this.cppNeedsReinit=!0,h.info("Project path changed while C++ init is running, will reinit after current init completes")):(this.cppProjectState=0,this.cppHasNoCppCode=!1,this.cppInitRetryCount=0,this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,this.ensureCppProjectReady().catch(t=>{h.warn("Failed to re-init C++ project after setProjectPath:",t)}))}async start(){this.toolRouter.registerToServer(this.server);let e=new cC;if(await this.server.connect(e),h.info("devecocli-mcp-server started"),!this.config.debug){let t=md();t&&h.info(`Log file: ${t}`)}if(this.setupStdinCloseHandler(),this.config.projectPath)this.workspaceRoot=this.config.projectPath;else{let t=await this.getProjectRootFromClient();if(t){this.workspaceRoot=t;let r=Ct(t);r?(h.info(`Detected project path from client root: ${r}`),this.config.projectPath=r):h.warn(`Client root '${t}' is not a HarmonyOS project`)}else this.originalProjectPath?h.warn(`PROJECT_PATH '${this.originalProjectPath}' was provided but no HarmonyOS project was found in it`):h.info("project path is empty (no PROJECT_PATH env and client did not provide roots)")}this.ensureProjectReady().catch(t=>{h.warn("Background project init failed:",t)})}async getProjectRootFromClient(){try{let t=(await this.server.server.listRoots()).roots?.[0];if(!t)return h.warn("Client did not provide any roots"),null;let r=t.uri;return this.resolveFileUri(r)}catch(e){return h.warn("Failed to list roots from client:",e),null}}resolveFileUri(e){try{let t=new URL(e);if(t.protocol==="file:"){let r=t.pathname;return process.platform==="win32"&&/^\/[A-Za-z]:/.test(r)?r.substring(1):r}}catch(t){h.warn("Failed to parse URI with URL API, falling back to manual parsing:",t)}if(e.startsWith("file://")){let t=e.substring(7);return t=decodeURIComponent(t),process.platform==="win32"&&t.startsWith("/")&&/^[A-Za-z]:/.test(t.substring(1))&&(t=t.substring(1)),t}return e}setupStdinCloseHandler(){let e=!1,t=()=>{e||(e=!0,h.info("stdin closed (MCP client disconnected), shutting down..."),this.shutdown().then(()=>{h.info("shutdown completed, exiting process"),process.exit(0)}).catch(r=>{h.error("shutdown failed:",r),process.exit(1)}))};process.stdin.on("end",t),process.stdin.on("close",t)}async ensureProjectReady(){if(!this.initPromise){this.initPromise=this.doEnsureProjectReady();try{await this.initPromise}finally{this.initPromise=null}this.needsReinit&&(this.needsReinit=!1,this.projectState=0,this.ensureProjectReady().catch(e=>{h.warn("Failed to re-init project after needsReinit:",e)}))}}discoverProject(){if(!((this.projectState===0||this.projectState===5)&&!this.config.projectPath))return!0;this.projectState=1;let t=this.workspaceRoot?Ct(this.workspaceRoot):null;return!t&&this.originalProjectPath&&(t=Ct(this.originalProjectPath),t&&h.info(`Phase 1 found HarmonyOS project from original config: ${t}`)),t?(this.config.projectPath=t,this.initRetryCount=0,!0):(this.projectState=0,!1)}async doEnsureProjectReady(){if(!this.discoverProject()||!await this.ensureProjectSynced())return;this.ensureCppProjectReady().catch(t=>{h.warn("Background C++ project init failed:",t)}),this.projectState=3,this.arktsCheckTool=new xr(this.config.projectPath,this.sdkPath,this.arktsLangServerPath,this.config.nodeMaxOldSpaceSize),this.arktsCheckTool.setOnConfigChanged(()=>{h.info("Config files changed, resetting to IDLE state for reinit"),this.configChangedTriggeredResync=!0,this.needsReinit=!0,this.projectState=0});let e=Date.now();try{await this.arktsCheckTool.initialize(),this.projectState=4,this.initRetryCount=0,h.info("Project fully initialized, check tool is available"),await this.trackInit("init_arkts",e,!0,null,this.arktsCheckTool?.aceServerPid??null)}catch(t){h.error("LSP initialization failed:",t);let r=B(t),i=this.arktsCheckTool?.aceServerPid??null;this.arktsCheckTool=null,this.initRetryCount++,this.projectState=5,await this.trackInit("init_arkts",e,!1,r,i)}}async ensureProjectSynced(){let e=this.config.projectPath,t=Em(e),r=Oi.existsSync(pn.join(e,"oh-package-lock.json5")),i=Oi.existsSync(pn.join(e,"oh_modules"))&&Oi.readdirSync(pn.join(e,"oh_modules")).length>0;if(r&&i)return t.required?(h.info(`Sync required: ${t.reason}`),this.runSync(e,{skipHvigorSync:!1})):(h.info(`Sync skipped: ${t.reason}`),!0);let o=!t.required;return h.info(`Sync check: skipHvigor=${o}, ohpm install forced (lock=${r}, ohModules=${i}), reason=${t.reason}`),this.runSync(e,{skipHvigorSync:o})}async runSync(e,t){this.projectState=2,h.info("Starting project sync...");let r=await Tr.handleSyncProject(e,this.sdkPath,this.nodePath,this.ohpmJsPath,this.hvigorJsPath,t);switch(r.status){case"success":return this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,!0;case"skipped":{this.syncSkippedDueToLock=!0,this.syncSkipStartedAt===0&&(this.syncSkipStartedAt=Date.now());let i=Date.now()-this.syncSkipStartedAt,o=Math.round(i/1e3);return i>=Qc?(h.error(`Sync skipped for ${o}s due to lock contention, giving up`),this.initRetryCount++,this.syncSkipStartedAt=0,this.projectState=5,!1):(h.warn(`Sync skipped: ${r.reason}, resetting to IDLE for retry (elapsed ${o}s / ${Qc/1e3}s)`),this.projectState=0,!1)}case"failed":return h.error(`Project sync failed: ${r.reason}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1;default:return h.error(`Project sync: unknown status ${r.status}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1}}async ensureCppProjectReady(){if(!this.cppEnabled){h.info("[Cpp] C++ LSP disabled by config, skipping initialization"),this.cppHasNoCppCode=!0,this.cppProjectState=4;return}if(!this.cppInitPromise){this.cppInitPromise=this.doEnsureCppProjectReady();try{await this.cppInitPromise}finally{this.cppInitPromise=null}this.cppNeedsReinit&&(this.cppNeedsReinit=!1,this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>{h.warn("Failed to re-init C++ project after cppNeedsReinit:",e)}))}}async doEnsureCppProjectReady(){let e=this.config.projectPath;if(!e){h.info("[Cpp] No project path, skipping C++ init");return}this.cppProjectState=1;let t=Yt(e);if(t.length===0){h.info('[Cpp] No C++ modules found, C++ tools will return "no C++ code"'),this.cppHasNoCppCode=!0,this.cppProjectState=4,this.cppInitRetryCount=0;return}this.cppHasNoCppCode=!1,h.info(`[Cpp] Found ${t.length} C++ module(s): ${t.map(o=>o.name).join(", ")}`);let r=ru(e),i=!r.required;h.info(`[Cpp] C++ sync check: skipCompileNative=${i}, reason=${r.reason}`),await this.runSyncCpp(e,{skipCompileNative:i})&&await this.initCppLsp(e)}async initCppLsp(e){this.cppProjectState=3,this.cppLspManager=new Ni({workspaceRoot:e,clangdPath:this.clangdPath??""});let t=Date.now();try{await this.cppLspManager.start(),this.cppCheckTool=new Nr(this.cppLspManager),this.cppLspTool=new Or(this.cppLspManager),this.cppProjectState=4,this.cppInitRetryCount=0,h.info("[Cpp] C++ project fully initialized, C++ tools are available"),await this.trackInit("init_cpp",t,!0,null,this.cppLspManager?.clangdPid??null)}catch(r){h.error("[Cpp] C++ LSP initialization failed:",r);let i=B(r),o=this.cppLspManager?.clangdPid??null;this.cppLspManager&&this.cppLspManager.dispose().catch(()=>{}),this.cppLspManager=null,this.cppCheckTool=null,this.cppLspTool=null,this.cppInitRetryCount++,this.cppProjectState=5,await this.trackInit("init_cpp",t,!1,i,o)}}async trackInit(e,t,r,i,o){if(!this.config.telemetry)return;let s="unknown";if(o!==null){let l=await Xe(o);l!==null&&(s=ce(Number(l)*1024))}let a={event:b.McpToolCall,subAction:e,mcpMemory:ce(process.memoryUsage().rss),lspMemory:s},c={duration_ms:Date.now()-t,success:r,error_code:i};await this.config.telemetry.track(a,c).catch(()=>{})}async runSyncCpp(e,t){this.cppProjectState=2,h.info("[Cpp] Starting C++ project sync (compileNative)...");let r=await Ni.handleSyncCppProject(e,this.sdkPath,this.nodePath,this.hvigorJsPath,t);switch(r.status){case"success":return this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,!0;case"skipped":{this.cppSyncSkippedDueToLock=!0,this.cppSyncSkipStartedAt===0&&(this.cppSyncSkipStartedAt=Date.now());let i=Date.now()-this.cppSyncSkipStartedAt,o=Math.round(i/1e3);return i>=Qc?(h.error(`[Cpp] C++ sync skipped for ${o}s due to lock contention, giving up`),this.cppInitRetryCount++,this.cppSyncSkipStartedAt=0,this.cppProjectState=5,!1):(h.warn(`[Cpp] C++ sync skipped: ${r.reason}, resetting to IDLE_CPP for retry (elapsed ${o}s)`),this.cppProjectState=0,!1)}case"failed":return h.error(`[Cpp] C++ project sync failed: ${r.reason}`),this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,this.cppInitRetryCount++,this.cppProjectState=5,!1}return!1}async shutdown(){this.arktsCheckTool&&await this.arktsCheckTool.shutdown(),this.cppLspManager&&await this.cppLspManager.dispose(),this.cppCheckTool=null,this.cppLspTool=null;try{await this.server.close()}catch(e){h.warn("Failed to close MCP server connection:",e)}h.info("devecocli-mcp-server stopped"),fd(),pd()}getToolRouter(){return this.toolRouter}getServer(){return this.server}};function lC(n){let e=[],t=[],r=[];for(let i of n)pn.extname(i).toLowerCase()===".ets"?e.push(i):An(i)?t.push(i):r.push(i);return{etsFiles:e,cppFiles:t,unsupported:r}}function nl(n={}){return new Hs(n)}import*as rl from"fs";import*as Mi from"path";import{spawn as dC}from"child_process";async function Cm(n){Rn(!1);let{serverPath:e,logPath:t,projectPath:r,sdkPath:i,serverMaxSize:o}=await uC(n),s=mC(e,t,r,i,o);h.info("ace-server started, bridging stdio (initialize is left to the client)"),gC(s),await ol(s.pid,il("--arkts",n))}function il(n,e){return[n,...e.projectPath?["--project-path"]:[],...e.autoDetect?["--auto-detect"]:[]]}async function ol(n,e){let t="unknown";if(n!==null){let i=await Xe(n);i!==null&&(t=ce(Number(i)*1024))}let r={event:b.ServeLsp,args:e,lspMemory:t};await I.track(r)}async function uC(n){let e=await A.new(),t;if(n.projectPath)t=fe(Mi.resolve(n.projectPath)),h.info(`projectPath=specified ('${t}'), no search`);else if(n.autoDetect){let c=Zi(process.cwd());t=fe(c??process.cwd()),h.info(`findHarmonyProjectInDir('${process.cwd()}') => ${c??"null, fallback to cwd"}`)}else t=fe(process.cwd()),h.info(`projectPath=cwd ('${t}'), no search (pass --auto-detect to search subdirs)`);let r=e.sdkPath,i=e.arktsLangServerPath;i||(h.error("ace-server not found (install DevEco Studio / CLT)."),process.exit(1));let o=Jr(i,!0),s=Mi.join(Wt(),"lsp-server",String(Date.now()));rl.mkdirSync(s,{recursive:!0});let a=pC(t,r);return h.info(`projectPath=${t}, sdkPath=${r}, arktsLangServerPath=${i}, serverPath=${o}, logPath=${s}, serverMaxSize=${a}MB`),{projectPath:t,sdkPath:r,serverPath:o,logPath:s,serverMaxSize:a}}function pC(n,e){let t=process.env.NODE_MAX_OLD_SPACE_SIZE,r=t?parseInt(t,10):NaN,i=Number.isFinite(r)&&r>0?r:void 0,o=fC(n,e),s=vo(o,i);return h.info(`[serve-lsp] serverMaxSize=${s}MB (moduleCount=${o}, override=${i??"none"})`),s}function fC(n,e){try{let t=[];return new Vn(n,e).getAllDependencyMap(t).status==="OK"?t.length:new It(n).getAllModuleInfo().length}catch{return 0}}function mC(n,e,t,r,i){let o=Mi.join(e,"lspLog");rl.mkdirSync(o,{recursive:!0});let s=hC(n,o,t,r,i),a=process.execPath??"node";return h.info(`[serve-lsp] spawn: ${a} ${s.join(" ")}`),dC(a,s,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function hC(n,e,t,r,i){let o=V(e);return["--expose-gc",`--max-old-space-size=${i}`,"--report-on-fatalerror","--report-uncaught-exception",`--report-filename=nodejs_error_${Date.now()}.txt`,`--report-dir=${o}`,n,"--stdio",`--logger-path=${o}`,"--logger-level=TRACE",`--projectPath=${V(t)}`,`--sdkPath=${V(r)}`]}function gC(n){n.on("error",e=>{h.error(`[ace-server] spawn error: ${e.message}`),process.exit(1)}),n.stdout?.on("error",e=>{h.error(`[ace-server] stdout error: ${e.message}`)}),n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("error",e=>{h.error(`[ace-server] stderr error: ${e.message}`)}),n.stderr?.on("data",e=>{h.error(`[ace-server] ${e.toString("utf8").trim()}`)}),n.stdin?.on("error",e=>{h.error(`[ace-server] stdin error: ${e.message}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{h.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{h.info(`ace-server exited with code ${e}`),process.exit(e??0)})}import*as km from"fs";import*as Gn from"path";import{spawn as yC}from"child_process";async function Im(n){Rn(!1);let{clangdPath:e,compileCommandsDir:t,projectPath:r}=await vC(n),i=Gn.join(t,"compile_commands.json");km.existsSync(i)||h.warn(`compile_commands.json not found at ${i}. Cross-file navigation/completion will be limited. Run \`devecocli build\` first to generate it.`);let o=bC(e,t,r);h.info("clangd started, bridging stdio (initialize is left to the client)"),EC(o),await ol(o.pid,il("--cpp",n))}async function vC(n){let e=await wC();e?.clangdPath||(h.error("clangd not found. Ensure DevEco Studio / CLT is installed."),process.exit(1));let t;if(n.projectPath)t=fe(Gn.resolve(n.projectPath)),h.info(`projectPath=specified ('${t}'), no search`);else if(n.autoDetect){let a=Zi(process.cwd());t=fe(a??process.cwd()),h.info(`findHarmonyProjectInDir('${process.cwd()}') => ${a??"null, fallback to cwd"}`)}else t=fe(Gn.resolve(process.cwd())),h.info(`projectPath=cwd ('${t}'), no search (pass --auto-detect to search subdirs)`);let r=e.sdkPath,i=e.clangdPath,o=In(t),s=Gn.dirname(o);return h.info(`projectPath=${t}, sdkPath=${r}, clangdPath=${i}, compileCommandsDir=${s}`),{projectPath:t,clangdPath:i,compileCommandsDir:s}}async function wC(){try{return await A.new()}catch{let n=cd();if(!n)return null;try{return A.fromIDE(n)}catch{return null}}}function bC(n,e,t){let r=SC(e);return h.info(`[serve-lsp-cpp] spawn: ${n} ${r.join(" ")}`),yC(n,r,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function SC(n){return[`--compile-commands-dir=${V(n)}`,"--log=info","--pch-storage=memory"]}function EC(n){n.on("error",e=>{h.error(`[clangd] spawn error: ${e.message}`),process.exit(1)}),n.stdout?.on("error",e=>{h.error(`[clangd] stdout error: ${e.message}`)}),n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("error",e=>{h.error(`[clangd] stderr error: ${e.message}`)}),n.stderr?.on("data",e=>{h.error(`[clangd] ${e.toString("utf8").trim()}`)}),n.stdin?.on("error",e=>{h.error(`[clangd] stdin error: ${e.message}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{h.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{h.info(`clangd exited with code ${e}`),process.exit(e??0)})}async function CC(){let n=process.env.PROJECT_PATH||"",e=process.env.NODE_MAX_OLD_SPACE_SIZE,t=process.env.DEBUG==="true"||process.env.DEBUG==="1",r=process.env.DEVECO_CLI_CPP_ENABLED!=="false"&&process.env.DEVECO_CLI_CPP_ENABLED!=="0",i=n,o=await A.new(),s=nl({projectPath:i,sdkPath:o.sdkPath,arktsLangServerPath:o.arktsLangServerPath??void 0,nodePath:o.nodePath,ohpmJsPath:o.ohpmJsPath,hvigorJsPath:o.hvigorJsPath,clangdPath:o.clangdPath??void 0,nodeMaxOldSpaceSize:e,debug:t,cppEnabled:r,telemetry:I}),a,c=new Promise(d=>{a=d}),l=async()=>{await s.shutdown(),a()};process.once("SIGINT",l),process.once("SIGTERM",l),process.platform==="win32"&&process.once("SIGBREAK",l);try{await s.start()}catch(d){console.error("Failed to start MCP server:",d instanceof Error?d.message:String(d)),process.exit(1)}await c}var sl=new PC("serve").description("Host bundled auxiliary protocol servers");sl.command("mcp").description("Start a local stdio-based MCP server").action(async()=>{await CC()});sl.command("lsp").description("Start a bundled LSP language server").option("--arkts","Start the ArkTS language server (ace-server)").option("--cpp","Start the C/C++ language server (clangd)").option("--project-path <path>","project root path (used as-is, no search)").option("--auto-detect","When --project-path is not specified, search the current directory and its subdirectories for the project root (no upward search)").action(async n=>{n.arkts&&n.cpp&&(console.error("--arkts and --cpp are mutually exclusive. Specify only one."),process.exit(1)),n.arkts?await Cm({projectPath:n.projectPath,autoDetect:n.autoDetect}):n.cpp?await Im({projectPath:n.projectPath,autoDetect:n.autoDetect}):(console.error("Use --arkts or --cpp to specify which language server to start."),process.exit(1))});var Am=sl;import{Command as xC,InvalidArgumentError as Lm}from"commander";import{red as LC,dim as NC}from"colorette";import{createRequire as kC}from"module";import{dirname as IC,join as _r}from"path";import{pathToFileURL as AC}from"url";import{readFile as Rm,access as al}from"fs/promises";import*as Tm from"semver";var DC=kC(import.meta.url),Dm=1;async function RC(){try{let n=DC.resolve("@yinsen/deveco-cli-docs-zh/package.json"),e=JSON.parse(await Rm(n,"utf8"));return{version:e.version,apiVersion:e.apiVersion??0,dir:IC(n)}}catch{return null}}async function TC(){let n=be(),e=_r(n,"doc-data","current.json"),t;try{t=JSON.parse(await Rm(e,"utf8"))}catch{return null}let r=_r(n,"doc-data",t.version);try{return await al(_r(r,"dist","engine","index.js")),await al(_r(r,"docs.zip")),await al(_r(r,"index.zip")),{version:t.version,apiVersion:t.apiVersion,dir:r}}catch{return null}}async function Us(){let n=[await TC(),await RC()].filter(t=>t!==null).sort((t,r)=>Tm.rcompare(t.version,r.version)),e=!1;for(let t of n){if(t.apiVersion>Dm){p(`docs: skip candidate v${t.version} (apiVersion ${t.apiVersion} > ${Dm})`),e=!0;continue}try{let r=_r(t.dir,"dist","engine","index.js");return await import(AC(r).href)}catch(r){p(`docs: candidate v${t.version} load failed: ${r instanceof Error?r.message:String(r)}`)}}throw e?new Error("\u6587\u6863\u5305\u7248\u672C\u4E0D\u517C\u5BB9\uFF0C\u8BF7\u5347\u7EA7 CLI"):new Error("\u6CA1\u6709\u53EF\u7528\u7684\u6587\u6863\u5305\uFF0C\u8BF7\u66F4\u65B0\u6587\u6863\u6216\u91CD\u65B0\u5B89\u88C5 CLI")}async function cl(n,e){let t=Date.now();try{let r=await e();return await xm(n,Date.now()-t,!0,null),r}catch(r){let i=r instanceof Error?r.code??r.name:"UnknownError";throw await xm(n,Date.now()-t,!1,i),r}}async function xm(n,e,t,r){await I.track(n,{duration_ms:e,success:t,error_code:r}).catch(()=>{})}function OC(n){return n instanceof Error&&(n.name==="CacheDirError"||n.name==="DocPathSafetyError")}function ll(n){console.error(LC(MC(n))),process.exitCode=1}function MC(n){let e=n instanceof Error?n.message:String(n);return OC(n)?e:/\b(EACCES|EPERM|ENOSPC|ENOTDIR|ELOOP)\b/.test(e)?"Documentation data directory is unavailable. Check DEVECO_CLI_DATA_DIR and retry.":e}function Nm(...n){return e=>{if(!n.includes(e))throw new Lm(`Allowed values: ${n.join(", ")}`);return e}}function _C(n){let e=Number(n);if(!Number.isInteger(e)||e<=0)throw new Lm("Must be a positive integer.");return e}var jC=Nm("json","default"),FC=Nm("json","default");function $C(n){let e=n.map(t=>t.trim()).filter(Boolean);if(e.length===0)throw new Error("Keywords cannot be empty.");return e}function HC(n){for(let e=0;e<n.length;e++){let t=n[e];console.log(t.documentId),console.log(` Title: ${t.title}`),t.snippet&&console.log(` Content: ${t.snippet}`),e<n.length-1&&console.log()}}var Ws=new xC("docs").description("Search and read HarmonyOS documentation from local docs directory");Ws.command("search <keywords...>").description("Search documentation by keywords").option("--catalog <name>","Catalog name (all for all catalogs)","all").option("--format <fmt>","Output format (default, json)",jC,"default").option("--limit <n>","Max number of results",_C,10).action(async(n,e)=>{let t={event:b.DocOperation,subAction:"search",queryLen:n.join(" ").length,catalog:e.catalog??"all"};try{await cl(t,async()=>{let r=$C(n),i=e.catalog&&e.catalog!=="all"?e.catalog:void 0,o=await Us(),s=o.CATALOG_NAMES;if(i&&s&&!s.includes(i))throw new Error(`Invalid catalog "${e.catalog}". Allowed: all, ${s.join(", ")}`);let a=await o.createDocsEngine({cacheDir:be()});try{let c=await a.search({keywords:r,catalog:i,limit:e.limit});e.format==="json"?console.log(JSON.stringify(c,null,2)):HC(c)}finally{await a.close()}})}catch(r){ll(r)}});Ws.command("read <documentId>").description("Read full content of a document by document ID").action(async n=>{let e=n.trim(),t={event:b.DocOperation,subAction:"read",documentId:e};try{await cl(t,async()=>{if(!e)throw new Error("Document ID cannot be empty.");let i=await(await Us()).createDocsEngine({cacheDir:be()});try{let o=await i.read({relativePath:e});console.log(o)}finally{await i.close()}})}catch(r){ll(r)}});Ws.command("catalog").description("List all available catalogs").option("--format <fmt>","Output format (default, json)",FC,"default").action(async n=>{let e={event:b.DocOperation,subAction:"catalog",fmt:n.format??"default"};try{await cl(e,async()=>{let r=await(await Us()).createDocsEngine({cacheDir:be()});try{let i=await r.catalog();if(n.format==="json")console.log(JSON.stringify(i.map(o=>({name:o.nodeId,title:o.nodeName})),null,2));else for(let o of i)console.log(` ${o.nodeId.padEnd(20)} ${NC(o.nodeName)}`)}finally{await r.close()}})}catch(t){ll(t)}});var Om=Ws;import{Command as Jk}from"commander";import{Command as ZC,InvalidArgumentError as QC,Option as ul}from"commander";import{readFileSync as WC,unlinkSync as BC}from"fs";import{tmpdir as VC}from"os";import{join as qC}from"path";var $t=class{constructor(e,t){this.hdcPath=e;this.serial=t}hdcPath;serial;async listWindows(e){let t=await this.fetchDump(),r=UC(t);return e?.all||(r=r.filter(i=>i.type===1)),r}async fetchDump(){let e=["-t",this.serial,"shell","hidumper","-s","WindowManagerService","-a","-a"];p(`Executing: ${this.hdcPath} ${e.join(" ")}`);let t=await ie(this.hdcPath,e);if(t.exitCode!==0)throw new Error(`Failed to query windows: ${(t.stderr||t.stdout).trim()}`);return t.stdout}};function UC(n){let e=n.split(`
1307
- `),t=e.findIndex(s=>s.trimStart().startsWith("WindowName"));if(t===-1)return[];let r=[];for(let s=t+1;s<e.length;s++){let a=e[s].trim();if(!a||/^-+$/.test(a)||a.startsWith("Focus window")||a.startsWith("total window"))break;let c=a.split(/\s+/);if(c.length<5)continue;let l=c[0],d=Number(c[1]),g=Number(c[2]),v=Number(c[3]),D=Number(c[4]);Number.isFinite(v)&&Number.isFinite(d)&&Number.isFinite(g)&&r.push({id:v,name:l,pid:g,displayId:d,type:D})}let i=e.find(s=>s.trim().startsWith("Focus window")),o=i?Number(i.replace(/.*:\s*/,"").trim()):NaN;return r.map(s=>({...s,focused:s.id===o}))}function Mm(n){if(!(!n||n==="HitTestMode.Default"))return n.startsWith("HitTestMode.")?n.slice(12):n}function _i(n){if(!(n==null||n==="")){if(typeof n=="boolean")return n;if(n==="true")return!0;if(n==="false")return!1}}function _m(n){if(typeof n!="string")return;let e=n.match(/-?\d+/g);if(!(!e||e.length<4))return[Number(e[0]),Number(e[1]),Number(e[2]),Number(e[3])]}function jm(n){return n.originalText||void 0}function jr(n,e){let t=[],r=[...n].reverse();for(;r.length>0;){let i=r.pop();i.id===e&&t.push(i);for(let o=i.children.length-1;o>=0;o--)r.push(i.children[o])}return t}function Fm(n,e){let t=[],r=[{current:n,parent:null,depth:0}];for(;r.length>0;){let{current:i,parent:o,depth:s}=r.pop(),a=o===null,c=!i.id&&!i.text&&!i.clickable&&!i.longClickable&&!i.scrollable&&!i.checkable,l=a||!c,d=o;if(l){let v={...i,children:[]};if(a?t.push(v):o.children.push(v),d=v,e>0&&s+1>=e)continue}if(process.env.DEVECO_CLI_DEBUG){let v=i.type?i.id?`${i.type}#${i.id}`:i.type:"#";p(`collapse ${v} depth=${s} -> ${a?"root":c?"collapsed":"emitted"}`)}let g=l?s+1:s;for(let v=i.children.length-1;v>=0;v--)r.push({current:i.children[v],parent:d,depth:g})}return t}function GC(n){let e=WC(n,"utf-8").trim();if(!e)throw new Error("Empty dumpLayout response from device");return JSON.parse(e)}function zC(n){return n.attributes??{}}function Bs(n,e,t){let r=zC(n),i={id:r.id||void 0,type:r.type||void 0,text:jm(r),bounds:_m(r.bounds),clickable:_i(r.clickable)||void 0,longClickable:_i(r.longClickable)||void 0,scrollable:_i(r.scrollable)||void 0,checkable:_i(r.checkable)||void 0,hitTestBehavior:Mm(r.hitTestBehavior),children:[]};return e>0&&t+1>=e||n.children&&(i.children=n.children.map(o=>Bs(o,e,t+1))),i}function JC(n,e){if(e){let r=n.find(i=>String(i.id)===e);if(!r){let i=n.map(o=>`${o.id} (${o.name})`).join(", ");throw new w(`Window '${e}' not found. Available windows: ${i||"none"}`,"Window not found.")}return r}let t=n.find(r=>r.focused);if(t)return t;throw new Error("No window id specified and could not detect focused window")}var zn=class{hdcPath;constructor(e){this.hdcPath=e}buildRemoteDumpPath(){return`/data/local/tmp/deveco_cli_dump_${Date.now()}_${process.pid}.json`}async fetchRawDump(e,t,r){let i=this.buildRemoteDumpPath(),o=["-t",e,"shell","uitest","dumpLayout","-p",i];r!==void 0&&o.push("-d",String(r)),t&&o.push("-w",t),p(`Executing: ${this.hdcPath} ${o.join(" ")}`);let s=await ie(this.hdcPath,o);if(s.exitCode!==0)throw new Error(`Failed to dump layout: ${(s.stderr||s.stdout).trim()}`);return this.recvAndParseDump(e,i)}async recvAndParseDump(e,t){let r=qC(VC(),`deveco_cli_dump_${Date.now()}_${process.pid}.json`);try{return await this.recvDumpFile(e,t,r),GC(r)}finally{await this.cleanupDumpArtifacts(e,r,t)}}async recvDumpFile(e,t,r){let i=["-t",e,"file","recv",t,r];p(`Executing: ${this.hdcPath} ${i.join(" ")}`);let o=await ie(this.hdcPath,i);if(o.exitCode!==0)throw new Error(`Failed to recv dump file: ${(o.stderr||o.stdout).trim()}`)}async cleanupDumpArtifacts(e,t,r){try{p(`Removing local dump file: ${t}`),BC(t)}catch(o){p(`Failed to clean local dump file ${t}: ${o.message}`)}let i=["-t",e,"shell","rm","-f",r];p(`Executing: ${this.hdcPath} ${i.join(" ")}`),await ie(this.hdcPath,i).catch(o=>{p(`Failed to clean remote dump file ${r}: ${o.message}`)})}async dumpRawNodes(e,t,r){let o=await new $t(this.hdcPath,e).listWindows({all:!0});if(r){let a=[...new Set(o.map(l=>l.displayId))],c=[];for(let l of a)c.push(await this.fetchRawDump(e,void 0,l));return c}let s=JC(o,t);return[await this.fetchRawDump(e,String(s.id),s.displayId)]}async dumpFullTree(e,t,r,i){return(await this.dumpRawNodes(e,r,i)).map(s=>Bs(s,t,0))}async dumpFullTreeByDisplays(e,t,r){let i=[];for(let o of r){let s=await this.fetchRawDump(e,void 0,o);i.push({displayId:o,tree:Bs(s,t,0)})}return i}async dumpCollapsedTree(e,t,r,i){return(await this.dumpRawNodes(e,r,i)).flatMap(s=>Fm(Bs(s,0,0),t))}};var Vs={left:"0",right:"1",up:"2",down:"3"};function Te(n,e){let t=Number(n);if(!Number.isInteger(t)||t<=0)throw new Error(`${e} must be a positive integer`)}function dl(n,e){n!==void 0&&Te(n,e)}function $m(n,e){if(n===void 0!=(e===void 0))throw new Error("x and y must be provided together")}function qs(n,e){if(n!==void 0&&n.length===0)throw new Error(`${e} must not be empty`)}function ji(n){if(n===void 0)return;let e=Number(n);if(!Number.isInteger(e)||e<200||e>4e4)throw new Error("--speed must be an integer between 200 and 40000");return n}function Hm(n){if(n!==void 0&&!/^[a-zA-Z0-9_-]+$/.test(n))throw new Error("--window must consist of letters, digits, - or _")}function Um(n,e,t,r=!0){if(t&&!e)throw new Error("--window must be used with --id");if(n&&e)throw new Error("Coordinates and --id are mutually exclusive");if(r&&!n&&!e)throw new Error("Either provide x y coordinates or use --id")}function Fr(n,e,t,r,i=!0){$m(n,e),qs(t,"--id"),dl(n,"x"),dl(e,"y"),Hm(r),Um(n!==void 0,!!t,!!r,i)}async function fn(n,e){let r=await new wr(n).selectDevice(e);if(!r)throw new Error("No device selected. Use `devecocli device list` to see targets.");return r}async function Et(n){let e=await A.new(),t=await fn(e,n);return{hdcPath:e.hdcPath,deviceId:t}}async function $r(n,e,t,r,i,o){if(t!==void 0&&r!==void 0)return{x:t,y:r};if(i===void 0)throw new Error("Either provide x y coordinates or use --id");let a=await new $t(n,e).listWindows({all:!0}),c=new zn(n);return YC(c,e,a,i,o)}async function YC(n,e,t,r,i){if(i!==void 0){let o=t.find(a=>String(a.id)===i);if(o&&o.displayId!==0)throw new w(`Window "${i}" is on display ${o.displayId}. The current command only supports operations on the primary display.`,"The current command only supports operations on the primary display.");let s=await n.dumpFullTree(e,0,i,!1);return XC(s,r)}return KC(n,e,t,r)}async function KC(n,e,t,r){let i=[...new Set(t.map(a=>a.displayId))],o=await n.dumpFullTreeByDisplays(e,0,i),s=[];for(let{displayId:a,tree:c}of o)for(let l of jr([c],r))s.push({node:l,displayId:a});if(s.length===0)throw new w(`Node "${r}" not found.`,"Node not found.");if(s.length>1)throw new w(`Multiple nodes found with id "${r}".`,"Multiple nodes found");if(s[0].displayId!==0)throw new w(`Node "${r}" is on display ${s[0].displayId}. The current command only supports operations on the primary display.`,"The current command only supports operations on the primary display.");return Wm(s[0].node,r)}function XC(n,e){let t=jr(n,e);if(t.length===0)throw new w(`Node "${e}" not found.`,"Node not found.");if(t.length>1)throw new w(`Multiple nodes found with id "${e}".`,"Multiple nodes found");return Wm(t[0],e)}function Wm(n,e){let t=n.bounds;if(!t)throw new w(`Node "${e}" has no bounds.`,"Node has no bounds.");let[r,i,o,s]=t;return{x:Math.ceil((r+o)/2),y:Math.ceil((i+s)/2)}}async function it(n,e,t){let r=["-t",e,"shell",...t];p(`Executing: ${n} ${r.join(" ")}`);let i=await ie(n,r);if(i.exitCode!==0)throw new Error(i.stderr||i.stdout||`uitest exited with code ${i.exitCode}`);let o=i.stdout.toLowerCase();if(["illegal","fail","error","incorrect","please confirm that the coordinate values are correct"].some(a=>o.includes(a))&&!o.includes("no error"))throw new Error(i.stdout.trim()||"uitest command failed")}import ek from"ora";function tk(n){let e=parseInt(n,10);if(!Number.isInteger(e)||e<0||String(e)!==n.trim())throw new QC("depth must be a non-negative integer");return e}function nk(n){let e=[];(n.type||n.id)&&e.push(n.type?n.id?`${n.type}#${n.id}`:n.type:`#${n.id}`),e.push(n.bounds?`[${n.bounds.join(",")}]`:"[]"),n.text&&e.push(`"${JSON.stringify(n.text).slice(1,-1)}"`);let t=[];return n.clickable&&t.push("clickable"),n.longClickable&&t.push("longClickable"),n.scrollable&&t.push("scrollable"),n.checkable&&t.push("checkable"),t.length>0&&e.push(...t),e.join(" ")}function Bm(n,e=0){let t=[],r=" ".repeat(e);for(let i of n)t.push(`${r}${nk(i)}`),i.children.length>0&&t.push(...Bm(i.children,e+1).split(`
1320
+ `).trim()||"No diagnostics collected"}],isError:c}}async callArktsCheck(e){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return h.warn(`ArkTS check rejected: project is ${Rl[this.projectState]}, files: ${e.join(", ")}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return h.warn(`ArkTS check rejected: LSP is initializing, files: ${e.join(", ")}`),{content:[{type:"text",text:"ArkTS LSP is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleErrorCheck();case 4:return this.arktsCheckTool.handleCall({files:e});default:return h.error(`ArkTS check: unknown project state ${this.projectState}, files: ${e.join(", ")}`),{content:[{type:"text",text:`Unknown project state: ${this.projectState}`}],isError:!0}}}async handleLspFeatureCall(e,t){let n=t.file,o=t.line,i=t.character;return typeof n!="string"||typeof o!="number"||typeof i!="number"?{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}:this.routeLspRequest(n,e,async()=>{if(n.endsWith(".ets"))return this.arktsCheckTool.handleLspFeature(e,{file:n,line:o,character:i});let s=e;return this.cppLspTool.handleLspFeature(s,{file:n,line:o,character:i})})}async handleWorkspaceSymbolCall(e){let t=e.query;return typeof t!="string"||t.trim().length===0?{content:[{type:"text",text:"Missing or invalid parameter: query (non-empty string required)."}],isError:!0}:this.routeWorkspaceSymbolRequest(t)}async routeWorkspaceSymbolRequest(e){let t=this.projectState===4&&this.arktsCheckTool!==null,n=this.cppProjectState===4&&!this.cppHasNoCppCode&&this.cppLspTool!==null;if(!t&&!n){let a=this.describeArktsState(),c=this.describeCppState();return h.info(`workspaceSymbol rejected: ArkTS ${a}; C++ ${c}`),{content:[{type:"text",text:`workspaceSymbol: ArkTS ${a}; C++ ${c}`}],isError:!0}}let o=[],i=new Set;if(t)try{this.mergeSymbolItems(await this.arktsCheckTool.handleWorkspaceSymbolRaw(e),i,o)}catch(a){h.warn(`workspaceSymbol ArkTS query failed: ${a.message}`)}if(n)try{this.mergeSymbolItems(await this.cppLspTool.handleWorkspaceSymbolRaw(e),i,o)}catch(a){h.warn(`workspaceSymbol C++ query failed: ${a.message}`)}return{content:[{type:"text",text:o.length===0?"workspaceSymbol: no result":`workspaceSymbol: ${JSON.stringify(o,null,2)}`}]}}symbolDedupKey(e){let t=e,n=t?.location?.uri??"",o=t?.location?.range?.start?.line??0,i=t?.location?.range?.start?.character??0;return`${n}:${o}:${i}`}mergeSymbolItems(e,t,n){if(e)for(let o of e){let i=this.symbolDedupKey(o);t.has(i)||(t.add(i),n.push(o))}}describeArktsState(){switch(this.projectState){case 0:return"idle";case 1:return"discovering";case 2:return"syncing (retry 10s)";case 3:return"initializing (retry 10s)";case 5:return`error (${this.initRetryCount}/${Tt})`;case 4:return"ready";default:return"unknown"}}describeCppState(){switch(this.cppProjectState){case 0:return"idle";case 1:return"discovering";case 2:return"syncing (retry 25s)";case 3:return"initializing (retry 10s)";case 5:return`error (${this.cppInitRetryCount}/${Tt})`;case 4:return this.cppHasNoCppCode?"ready (no C++ code)":"ready";default:return"unknown"}}async handleDocumentSymbolCall(e){let t=e.file;return typeof t!="string"?{content:[{type:"text",text:"Missing or invalid parameter: file (string required)."}],isError:!0}:this.routeLspRequest(t,"documentSymbol",async()=>t.endsWith(".ets")?this.arktsCheckTool.handleDocumentSymbol(t):this.cppLspTool.handleDocumentSymbol(t))}async handleCallHierarchyCall(e){let t=e.file,n=e.line,o=e.character,i=e.direction;return typeof t!="string"||typeof n!="number"||typeof o!="number"?{content:[{type:"text",text:"Missing or invalid parameters. Required: file (string), line (number), character (number)."}],isError:!0}:i!=="incoming"&&i!=="outgoing"?{content:[{type:"text",text:'Parameter direction must be "incoming" or "outgoing".'}],isError:!0}:this.routeLspRequest(t,`callHierarchy(${i})`,async()=>t.endsWith(".ets")?this.arktsCheckTool.handleCallHierarchy({file:t,line:n,character:o,direction:i}):this.cppLspTool.handleCallHierarchy({file:t,line:n,character:o,direction:i}))}async routeArktsRequest(e,t){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return h.warn(`ArkTS ${e} rejected: project is ${Rl[this.projectState]}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return h.warn(`ArkTS ${e} rejected: LSP is initializing`),{content:[{type:"text",text:"ArkTS LSP is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleErrorCheck();case 4:return t();default:return h.warn(`ArkTS ${e} rejected: unknown project state ${this.projectState}`),{content:[{type:"text",text:"Unknown project state, please retry"}],isError:!0}}}async handleIdleCheck(){if(this.ensureProjectReady(),this.config.projectPath){let e,t;return this.syncSkippedDueToLock?(e=`Another build process is running, sync deferred (waiting ${this.syncSkipStartedAt>0?Math.round((Date.now()-this.syncSkipStartedAt)/1e3):0}s), please retry in 25 seconds`,t="lock contention",this.syncSkippedDueToLock=!1):this.configChangedTriggeredResync?(e="Config file changed, resyncing project, please retry in 10 seconds",t="config changed",this.configChangedTriggeredResync=!1):(e="HarmonyOS project detected, syncing, please retry in 10 seconds",t="initial"),h.info(`Idle check: project '${this.config.projectPath}' already known, triggering init (${t})`),{content:[{type:"text",text:e}],isError:!0}}return this.workspaceRoot||this.originalProjectPath?(h.info(`Idle check: no project path yet, will try from '${this.workspaceRoot}' or '${this.originalProjectPath}'`),{content:[{type:"text",text:"Initializing, please retry in 10 seconds"}],isError:!0}):(h.warn("Idle check: no search candidates available"),{content:[{type:"text",text:"No HarmonyOS project detected. Please verify the project directory or create a project first."}],isError:!0})}async handleErrorCheck(){return this.initRetryCount>=Tt?(h.error(`Init retry limit reached (${this.initRetryCount}/${Tt}), will not auto-retry`),{content:[{type:"text",text:`Project initialization failed repeatedly (auto-retry exhausted: ${this.initRetryCount}/${Tt}). Ask the user to investigate and confirm \`ohpm install\` + \`hvigor\` sync succeed manually. Do NOT call the \`restart\` tool repeatedly \u2014 call it at most once after the user fixes the root cause; if it fails again, stop retrying and escalate to the user.`}],isError:!0}):(h.info(`Error check: auto-retrying (${this.initRetryCount}/${Tt})`),this.ensureProjectReady(),{content:[{type:"text",text:"Project initialization failed, auto-retrying, please retry in 10 seconds"}],isError:!0})}async routeCppRequest(e,t){switch(this.cppProjectState){case 0:return this.handleCppIdleCheck();case 1:case 2:return h.warn(`C++ ${e} rejected: C++ project is ${Th[this.cppProjectState]}`),{content:[{type:"text",text:"C++ project is syncing (compileNative), please retry in 25 seconds"}],isError:!0};case 3:return h.warn(`C++ ${e} rejected: clangd is initializing`),{content:[{type:"text",text:"C++ LSP (clangd) is initializing, please retry in 10 seconds"}],isError:!0};case 5:return this.handleCppErrorCheck();case 4:return this.cppEnabled?this.cppHasNoCppCode?{content:[{type:"text",text:"No C++ code in this project"}],isError:!0}:this.cppLspManager?.ready?t():{content:[{type:"text",text:"C++ LSP is not ready, please retry later"}],isError:!0}:{content:[{type:"text",text:"C++ LSP is disabled. Set DEVECO_CLI_CPP_ENABLED=true to enable."}],isError:!0};default:return h.warn(`C++ ${e} rejected: unknown C++ project state ${this.cppProjectState}`),{content:[{type:"text",text:"Unknown C++ project state, please retry"}],isError:!0}}}async routeLspRequest(e,t,n){return e.endsWith(".ets")?this.routeArktsRequest(t,n):Lr(e)?this.routeCppRequest(t,n):{content:[{type:"text",text:`Unsupported file type: ${e} (only .ets and C/C++ source/header files are supported)`}],isError:!0}}async handleCppIdleCheck(){if(this.ensureCppProjectReady(),this.config.projectPath){let e;return this.cppSyncSkippedDueToLock?(e=`Another build process is running, C++ sync deferred (waiting ${this.cppSyncSkipStartedAt>0?Math.round((Date.now()-this.cppSyncSkipStartedAt)/1e3):0}s), please retry in 25 seconds`,this.cppSyncSkippedDueToLock=!1):e="C++ project detected, syncing (compileNative), please retry in 25 seconds",h.info(`C++ idle check: project '${this.config.projectPath}', triggering C++ init`),{content:[{type:"text",text:e}],isError:!0}}return{content:[{type:"text",text:"No HarmonyOS project detected for C++ tools."}],isError:!0}}async handleCppErrorCheck(){return this.cppInitRetryCount>=Tt?(h.error(`C++ init retry limit reached (${this.cppInitRetryCount}/${Tt}), will not auto-retry`),{content:[{type:"text",text:`C++ project initialization failed repeatedly (auto-retry exhausted: ${this.cppInitRetryCount}/${Tt}). Ask the user to investigate and confirm \`hvigor compileNative\` succeeds manually. Do NOT call the \`restart\` tool repeatedly \u2014 call it at most once after the user fixes the root cause; if it fails again, stop retrying and escalate to the user.`}],isError:!0}):(h.info(`C++ error check: auto-retrying (${this.cppInitRetryCount}/${Tt})`),this.ensureCppProjectReady(),{content:[{type:"text",text:"C++ project initialization failed, auto-retrying, please retry in 25 seconds"}],isError:!0})}async callCppCheck(e){return this.routeCppRequest("check",async()=>this.cppCheckTool.handleCall({files:e}))}mergeCheckResult(e,t,n){let o=e.content.map(i=>i.text).filter(i=>i&&i.trim().length>0).join(`
1321
+ `);o&&(e.isError?t.push(o):n.push(o))}assertRestartAllowed(e){if(e==="arkts"||e==="all"){let t=this.projectState;if(t!==4&&t!==0&&t!==5)return{content:[{type:"text",text:`ArkTS project state: ${this.describeArktsState()}, sync/init in progress, restart unavailable (would interrupt the current flow). Wait for the state to become ready and retry other tools directly\u2014no restart needed. restart is only available in ready/idle/error states.`}],isError:!0}}if(e==="cpp"||e==="all"){let t=this.cppProjectState;if(t!==4&&t!==0&&t!==5)return{content:[{type:"text",text:`C++ project state: ${this.describeCppState()}, sync/init in progress, restart unavailable (would interrupt the current flow). Wait for the state to become ready and retry other tools directly\u2014no restart needed. restart is only available in ready/idle/error states.`}],isError:!0}}return null}async handleRestartCall(e){let t=e.target,n=t==="cpp"?"cpp":t==="arkts"?"arkts":"all";if(n==="cpp"&&!this.cppEnabled)return{content:[{type:"text",text:"C++ LSP is disabled, cannot restart. Set DEVECO_CLI_CPP_ENABLED=true to enable."}],isError:!0};let o=this.assertRestartAllowed(n);return o||(this.restartProject(n),{content:[{type:"text",text:`MCP server is restarting in-place (${n==="all"?"ArkTS + C++":n==="cpp"?"C++":"ArkTS"}): re-sync project + re-initialize LSP. Client connection preserved\u2014no need to exit the agent. Please retry tools in ~10 seconds.`}]})}restartProject(e){h.info(`[restart] resetting tools + state, re-init (target=${e})`),(e==="arkts"||e==="all")&&this.restartArkts(),(e==="cpp"||e==="all")&&this.cppEnabled&&this.restartCpp()}restartArkts(){this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(e=>h.warn("Failed to shutdown ArktsCheckTool during restart:",e)),this.arktsCheckTool=null),this.initRetryCount=0,this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.configChangedTriggeredResync=!1,this.initPromise?(this.needsReinit=!0,h.info("[restart] ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(e=>h.warn("Failed to re-init ArkTS project during restart:",e)))}restartCpp(){this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(e=>h.warn("Failed to dispose ClangdLspManager during restart:",e)),this.cppLspManager=null),this.cppInitRetryCount=0,this.cppHasNoCppCode=!1,this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,this.cppInitPromise?(this.cppNeedsReinit=!0,h.info("[restart] C++ init is running, will reinit after current init completes")):(this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>h.warn("Failed to re-init C++ project during restart:",e)))}async start(){this.toolRouter.registerToServer(this.server);let e=new Yk;if(await this.server.connect(e),h.info("devecocli-mcp-server started"),!this.config.debug){let t=Gd();t&&h.info(`Log file: ${t}`)}if(this.setupStdinCloseHandler(),this.config.projectPath)this.workspaceRoot=this.config.projectPath;else{let t=await this.getProjectRootFromClient();if(t){this.workspaceRoot=t;let n=Lt(t);n?(h.info(`Detected project path from client root: ${n}`),this.config.projectPath=n):h.warn(`Client root '${t}' is not a HarmonyOS project`)}else this.originalProjectPath?h.warn(`PROJECT_PATH '${this.originalProjectPath}' was provided but no HarmonyOS project was found in it`):h.info("project path is empty (no PROJECT_PATH env and client did not provide roots)")}this.ensureProjectReady().catch(t=>{h.warn("Background project init failed:",t)})}async getProjectRootFromClient(){try{let t=(await this.server.server.listRoots()).roots?.[0];if(!t)return h.warn("Client did not provide any roots"),null;let n=t.uri;return this.resolveFileUri(n)}catch(e){return h.warn("Failed to list roots from client:",e),null}}resolveFileUri(e){try{let t=new URL(e);if(t.protocol==="file:"){let n=t.pathname;return process.platform==="win32"&&/^\/[A-Za-z]:/.test(n)?n.substring(1):n}}catch(t){h.warn("Failed to parse URI with URL API, falling back to manual parsing:",t)}if(e.startsWith("file://")){let t=e.substring(7);return t=decodeURIComponent(t),process.platform==="win32"&&t.startsWith("/")&&/^[A-Za-z]:/.test(t.substring(1))&&(t=t.substring(1)),t}return e}setupStdinCloseHandler(){let e=!1,t=()=>{e||(e=!0,h.info("stdin closed (MCP client disconnected), shutting down..."),this.shutdown().then(()=>{h.info("shutdown completed, exiting process"),process.exit(0)}).catch(n=>{h.error("shutdown failed:",n),process.exit(1)}))};process.stdin.on("end",t),process.stdin.on("close",t)}async ensureProjectReady(){if(!this.initPromise){this.initPromise=this.doEnsureProjectReady();try{await this.initPromise}finally{this.initPromise=null}this.needsReinit&&(this.needsReinit=!1,this.projectState=0,this.ensureProjectReady().catch(e=>{h.warn("Failed to re-init project after needsReinit:",e)}))}}discoverProject(){if(!((this.projectState===0||this.projectState===5)&&!this.config.projectPath))return!0;this.projectState=1;let t=this.workspaceRoot?Lt(this.workspaceRoot):null;return!t&&this.originalProjectPath&&(t=Lt(this.originalProjectPath),t&&h.info(`Phase 1 found HarmonyOS project from original config: ${t}`)),t?(this.config.projectPath=t,this.initRetryCount=0,!0):(this.projectState=0,!1)}async doEnsureProjectReady(){if(!this.discoverProject()||!await this.ensureProjectSynced())return;this.ensureCppProjectReady().catch(t=>{h.warn("Background C++ project init failed:",t)}),this.projectState=3,this.arktsCheckTool=new Un(this.config.projectPath,this.sdkPath,this.arktsLangServerPath,this.config.nodeMaxOldSpaceSize),this.arktsCheckTool.setOnConfigChanged(()=>{h.info("Config files changed, resetting to IDLE state for reinit"),this.configChangedTriggeredResync=!0,this.needsReinit=!0,this.projectState=0});let e=Date.now();try{await this.arktsCheckTool.initialize(),this.projectState=4,this.initRetryCount=0,h.info("Project fully initialized, check tool is available"),await this.trackInit("init_arkts",e,!0,null,this.arktsCheckTool?.aceServerPid??null)}catch(t){h.error("LSP initialization failed:",t);let n=q(t),o=this.arktsCheckTool?.aceServerPid??null;this.arktsCheckTool=null,this.initRetryCount++,this.projectState=5,await this.trackInit("init_arkts",e,!1,n,o)}}async ensureProjectSynced(){let e=this.config.projectPath,t=Rh(e),n=Zo.existsSync(qn.join(e,"oh-package-lock.json5")),o=Zo.existsSync(qn.join(e,"oh_modules"))&&Zo.readdirSync(qn.join(e,"oh_modules")).length>0;if(n&&o)return t.required?(h.info(`Sync required: ${t.reason}`),this.runSync(e,{skipHvigorSync:!1})):(h.info(`Sync skipped: ${t.reason}`),!0);let i=!t.required;return h.info(`Sync check: skipHvigor=${i}, ohpm install forced (lock=${n}, ohModules=${o}), reason=${t.reason}`),this.runSync(e,{skipHvigorSync:i})}async runSync(e,t){this.projectState=2,h.info("Starting project sync...");let n=await Hn.handleSyncProject(e,this.sdkPath,this.nodePath,this.ohpmJsPath,this.hvigorJsPath,t);switch(n.status){case"success":return this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,!0;case"skipped":{this.syncSkippedDueToLock=!0,this.syncSkipStartedAt===0&&(this.syncSkipStartedAt=Date.now());let o=Date.now()-this.syncSkipStartedAt,i=Math.round(o/1e3);return o>=Al?(h.error(`Sync skipped for ${i}s due to lock contention, giving up`),this.initRetryCount++,this.syncSkipStartedAt=0,this.projectState=5,!1):(h.warn(`Sync skipped: ${n.reason}, resetting to IDLE for retry (elapsed ${i}s / ${Al/1e3}s)`),this.projectState=0,!1)}case"failed":return h.error(`Project sync failed: ${n.reason}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1;default:return h.error(`Project sync: unknown status ${n.status}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1}}async ensureCppProjectReady(){if(!this.cppEnabled){h.info("[Cpp] C++ LSP disabled by config, skipping initialization"),this.cppHasNoCppCode=!0,this.cppProjectState=4;return}if(!this.cppInitPromise){this.cppInitPromise=this.doEnsureCppProjectReady();try{await this.cppInitPromise}finally{this.cppInitPromise=null}this.cppNeedsReinit&&(this.cppNeedsReinit=!1,this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>{h.warn("Failed to re-init C++ project after cppNeedsReinit:",e)}))}}async doEnsureCppProjectReady(){let e=this.config.projectPath;if(!e){h.info("[Cpp] No project path, skipping C++ init");return}this.cppProjectState=1;let t=rr(e);if(t.length===0){h.info('[Cpp] No C++ modules found, C++ tools will return "no C++ code"'),this.cppHasNoCppCode=!0,this.cppProjectState=4,this.cppInitRetryCount=0;return}this.cppHasNoCppCode=!1,h.info(`[Cpp] Found ${t.length} C++ module(s): ${t.map(i=>i.name).join(", ")}`);let n=Mu(e),o=!n.required;h.info(`[Cpp] C++ sync check: skipCompileNative=${o}, reason=${n.reason}`),await this.runSyncCpp(e,{skipCompileNative:o})&&await this.initCppLsp(e)}async initCppLsp(e){this.cppProjectState=3,this.cppLspManager=new Xo({workspaceRoot:e,clangdPath:this.clangdPath??""});let t=Date.now();try{await this.cppLspManager.start(),this.cppCheckTool=new Wn(this.cppLspManager),this.cppLspTool=new Vn(this.cppLspManager),this.cppProjectState=4,this.cppInitRetryCount=0,h.info("[Cpp] C++ project fully initialized, C++ tools are available"),await this.trackInit("init_cpp",t,!0,null,this.cppLspManager?.clangdPid??null)}catch(n){h.error("[Cpp] C++ LSP initialization failed:",n);let o=q(n),i=this.cppLspManager?.clangdPid??null;this.cppLspManager&&this.cppLspManager.dispose().catch(()=>{}),this.cppLspManager=null,this.cppCheckTool=null,this.cppLspTool=null,this.cppInitRetryCount++,this.cppProjectState=5,await this.trackInit("init_cpp",t,!1,o,i)}}async trackInit(e,t,n,o,i){if(!this.config.telemetry)return;let s="unknown";if(i!==null){let l=await je(i);l!==null&&(s=Q(Number(l)*1024))}let a={event:b.McpToolCall,subAction:e,mcpMemory:Q(process.memoryUsage().rss),lspMemory:s},c={duration_ms:Date.now()-t,success:n,error_code:o};await this.config.telemetry.track(a,c).catch(()=>{})}async runSyncCpp(e,t){this.cppProjectState=2,h.info("[Cpp] Starting C++ project sync (compileNative)...");let n=await Xo.handleSyncCppProject(e,this.sdkPath,this.nodePath,this.hvigorJsPath,t);switch(n.status){case"success":return this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,!0;case"skipped":{this.cppSyncSkippedDueToLock=!0,this.cppSyncSkipStartedAt===0&&(this.cppSyncSkipStartedAt=Date.now());let o=Date.now()-this.cppSyncSkipStartedAt,i=Math.round(o/1e3);return o>=Al?(h.error(`[Cpp] C++ sync skipped for ${i}s due to lock contention, giving up`),this.cppInitRetryCount++,this.cppSyncSkipStartedAt=0,this.cppProjectState=5,!1):(h.warn(`[Cpp] C++ sync skipped: ${n.reason}, resetting to IDLE_CPP for retry (elapsed ${i}s)`),this.cppProjectState=0,!1)}case"failed":return h.error(`[Cpp] C++ project sync failed: ${n.reason}`),this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,this.cppInitRetryCount++,this.cppProjectState=5,!1}return!1}async shutdown(){this.arktsCheckTool&&await this.arktsCheckTool.shutdown(),this.cppLspManager&&await this.cppLspManager.dispose(),this.cppCheckTool=null,this.cppLspTool=null;try{await this.server.close()}catch(e){h.warn("Failed to close MCP server connection:",e)}h.info("devecocli-mcp-server stopped"),Vd(),Wd()}getToolRouter(){return this.toolRouter}getServer(){return this.server}};function Kk(r){let e=[],t=[],n=[];for(let o of r)qn.extname(o).toLowerCase()===".ets"?e.push(o):Lr(o)?t.push(o):n.push(o);return{etsFiles:e,cppFiles:t,unsupported:n}}function Tl(r={}){return new ca(r)}import*as xl from"fs";import*as Qo from"path";import{spawn as Xk}from"child_process";async function xh(r){Mr(!1);let{serverPath:e,logPath:t,projectPath:n,sdkPath:o,serverMaxSize:i}=await Zk(r),s=tI(e,t,n,o,i);h.info("ace-server started, bridging stdio (initialize is left to the client)"),nI(s),await Nl(s.pid,Ll("--arkts",r))}function Ll(r,e){return[r,...e.projectPath?["--project-path"]:[],...e.autoDetect?["--auto-detect"]:[]]}async function Nl(r,e){let t="unknown";if(r!==null){let o=await je(r);o!==null&&(t=Q(Number(o)*1024))}let n={event:b.ServeLsp,args:e,lspMemory:t};await I.track(n)}async function Zk(r){let e=await A.new(),t;if(r.projectPath)t=ge(Qo.resolve(r.projectPath)),h.info(`projectPath=specified ('${t}'), no search`);else if(r.autoDetect){let c=hi(process.cwd());t=ge(c??process.cwd()),h.info(`findHarmonyProjectInDir('${process.cwd()}') => ${c??"null, fallback to cwd"}`)}else t=ge(process.cwd()),h.info(`projectPath=cwd ('${t}'), no search (pass --auto-detect to search subdirs)`);let n=e.sdkPath,o=e.arktsLangServerPath;o||(h.error("ace-server not found (install DevEco Studio / CLT)."),process.exit(1));let i=ro(o,!0),s=Qo.join(Kt(),"lsp-server",String(Date.now()));xl.mkdirSync(s,{recursive:!0});let a=Qk(t,n);return h.info(`projectPath=${t}, sdkPath=${n}, arktsLangServerPath=${o}, serverPath=${i}, logPath=${s}, serverMaxSize=${a}MB`),{projectPath:t,sdkPath:n,serverPath:i,logPath:s,serverMaxSize:a}}function Qk(r,e){let t=process.env.NODE_MAX_OLD_SPACE_SIZE,n=t?parseInt(t,10):NaN,o=Number.isFinite(n)&&n>0?n:void 0,i=eI(r,e),s=Ni(i,o);return h.info(`[serve-lsp] serverMaxSize=${s}MB (moduleCount=${i}, override=${o??"none"})`),s}function eI(r,e){try{let t=[];return new Zr(r,e).getAllDependencyMap(t).status==="OK"?t.length:new Nt(r).getAllModuleInfo().length}catch{return 0}}function tI(r,e,t,n,o){let i=Qo.join(e,"lspLog");xl.mkdirSync(i,{recursive:!0});let s=rI(r,i,t,n,o),a=process.execPath??"node";return h.info(`[serve-lsp] spawn: ${a} ${s.join(" ")}`),Xk(a,s,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function rI(r,e,t,n,o){let i=z(e);return["--expose-gc",`--max-old-space-size=${o}`,"--report-on-fatalerror","--report-uncaught-exception",`--report-filename=nodejs_error_${Date.now()}.txt`,`--report-dir=${i}`,r,"--stdio",`--logger-path=${i}`,"--logger-level=TRACE",`--projectPath=${z(t)}`,`--sdkPath=${z(n)}`]}function nI(r){r.on("error",e=>{h.error(`[ace-server] spawn error: ${e.message}`),process.exit(1)}),r.stdout?.on("error",e=>{h.error(`[ace-server] stdout error: ${e.message}`)}),r.stdout?.on("data",e=>process.stdout.write(e)),r.stderr?.on("error",e=>{h.error(`[ace-server] stderr error: ${e.message}`)}),r.stderr?.on("data",e=>{h.error(`[ace-server] ${e.toString("utf8").trim()}`)}),r.stdin?.on("error",e=>{h.error(`[ace-server] stdin error: ${e.message}`)}),process.stdin.on("data",e=>{r.stdin?.write(e)}),process.stdin.on("end",()=>{h.info("Editor disconnected, shutting down"),r.kill(),process.exit(0)}),r.on("exit",e=>{h.info(`ace-server exited with code ${e}`),process.exit(e??0)})}import*as Lh from"fs";import*as en from"path";import{spawn as oI}from"child_process";async function Nh(r){Mr(!1);let{clangdPath:e,compileCommandsDir:t,projectPath:n}=await iI(r),o=en.join(t,"compile_commands.json");Lh.existsSync(o)||h.warn(`compile_commands.json not found at ${o}. Cross-file navigation/completion will be limited. Run \`devecocli build\` first to generate it.`);let i=aI(e,t,n);h.info("clangd started, bridging stdio (initialize is left to the client)"),lI(i),await Nl(i.pid,Ll("--cpp",r))}async function iI(r){let e=await sI();e?.clangdPath||(h.error("clangd not found. Ensure DevEco Studio / CLT is installed."),process.exit(1));let t;if(r.projectPath)t=ge(en.resolve(r.projectPath)),h.info(`projectPath=specified ('${t}'), no search`);else if(r.autoDetect){let a=hi(process.cwd());t=ge(a??process.cwd()),h.info(`findHarmonyProjectInDir('${process.cwd()}') => ${a??"null, fallback to cwd"}`)}else t=ge(en.resolve(process.cwd())),h.info(`projectPath=cwd ('${t}'), no search (pass --auto-detect to search subdirs)`);let n=e.sdkPath,o=e.clangdPath,i=xr(t),s=en.dirname(i);return h.info(`projectPath=${t}, sdkPath=${n}, clangdPath=${o}, compileCommandsDir=${s}`),{projectPath:t,clangdPath:o,compileCommandsDir:s}}async function sI(){try{return await A.new()}catch{let r=$d();if(!r)return null;try{return A.fromIDE(r)}catch{return null}}}function aI(r,e,t){let n=cI(e);return h.info(`[serve-lsp-cpp] spawn: ${r} ${n.join(" ")}`),oI(r,n,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function cI(r){return[`--compile-commands-dir=${z(r)}`,"--log=info","--pch-storage=memory"]}function lI(r){r.on("error",e=>{h.error(`[clangd] spawn error: ${e.message}`),process.exit(1)}),r.stdout?.on("error",e=>{h.error(`[clangd] stdout error: ${e.message}`)}),r.stdout?.on("data",e=>process.stdout.write(e)),r.stderr?.on("error",e=>{h.error(`[clangd] stderr error: ${e.message}`)}),r.stderr?.on("data",e=>{h.error(`[clangd] ${e.toString("utf8").trim()}`)}),r.stdin?.on("error",e=>{h.error(`[clangd] stdin error: ${e.message}`)}),process.stdin.on("data",e=>{r.stdin?.write(e)}),process.stdin.on("end",()=>{h.info("Editor disconnected, shutting down"),r.kill(),process.exit(0)}),r.on("exit",e=>{h.info(`clangd exited with code ${e}`),process.exit(e??0)})}async function uI(){let r=process.env.PROJECT_PATH||"",e=process.env.NODE_MAX_OLD_SPACE_SIZE,t=process.env.DEBUG==="true"||process.env.DEBUG==="1",n=process.env.DEVECO_CLI_CPP_ENABLED!=="false"&&process.env.DEVECO_CLI_CPP_ENABLED!=="0",o=r,i=await A.new(),s=Tl({projectPath:o,sdkPath:i.sdkPath,arktsLangServerPath:i.arktsLangServerPath??void 0,nodePath:i.nodePath,ohpmJsPath:i.ohpmJsPath,hvigorJsPath:i.hvigorJsPath,clangdPath:i.clangdPath??void 0,nodeMaxOldSpaceSize:e,debug:t,cppEnabled:n,telemetry:I}),a,c=new Promise(d=>{a=d}),l=async()=>{await s.shutdown(),a()};process.once("SIGINT",l),process.once("SIGTERM",l),process.platform==="win32"&&process.once("SIGBREAK",l);try{await s.start()}catch(d){console.error("Failed to start MCP server:",d instanceof Error?d.message:String(d)),process.exit(1)}await c}var Ml=new dI("serve").description("Host bundled auxiliary protocol servers");Ml.command("mcp").description("Start a local stdio-based MCP server").action(async()=>{await uI()});Ml.command("lsp").description("Start a bundled LSP language server").option("--arkts","Start the ArkTS language server (ace-server)").option("--cpp","Start the C/C++ language server (clangd)").option("--project-path <path>","project root path (used as-is, no search)").option("--auto-detect","When --project-path is not specified, search the current directory and its subdirectories for the project root (no upward search)").action(async r=>{r.arkts&&r.cpp&&(console.error("--arkts and --cpp are mutually exclusive. Specify only one."),process.exit(1)),r.arkts?await xh({projectPath:r.projectPath,autoDetect:r.autoDetect}):r.cpp?await Nh({projectPath:r.projectPath,autoDetect:r.autoDetect}):(console.error("Use --arkts or --cpp to specify which language server to start."),process.exit(1))});var Mh=Ml;import{Command as vI,InvalidArgumentError as $h}from"commander";import{red as wI,dim as bI}from"colorette";import{createRequire as pI}from"module";import{dirname as fI,join as zn}from"path";import{pathToFileURL as mI}from"url";import{readFile as _h,access as Ol}from"fs/promises";import*as jh from"semver";var hI=pI(import.meta.url),Oh=1;async function gI(){try{let r=hI.resolve("@yinsen/deveco-cli-docs-zh/package.json"),e=JSON.parse(await _h(r,"utf8"));return{version:e.version,apiVersion:e.apiVersion??0,dir:fI(r)}}catch{return null}}async function yI(){let r=Pe(),e=zn(r,"doc-data","current.json"),t;try{t=JSON.parse(await _h(e,"utf8"))}catch{return null}let n=zn(r,"doc-data",t.version);try{return await Ol(zn(n,"dist","engine","index.js")),await Ol(zn(n,"docs.zip")),await Ol(zn(n,"index.zip")),{version:t.version,apiVersion:t.apiVersion,dir:n}}catch{return null}}async function la(){let r=[await yI(),await gI()].filter(t=>t!==null).sort((t,n)=>jh.rcompare(t.version,n.version)),e=!1;for(let t of r){if(t.apiVersion>Oh){u(`docs: skip candidate v${t.version} (apiVersion ${t.apiVersion} > ${Oh})`),e=!0;continue}try{let n=zn(t.dir,"dist","engine","index.js");return await import(mI(n).href)}catch(n){u(`docs: candidate v${t.version} load failed: ${n instanceof Error?n.message:String(n)}`)}}throw e?new Error("Documentation package version is incompatible, please upgrade CLI"):new Error("No available documentation package, please update docs or reinstall CLI")}async function _l(r,e){let t=Date.now();try{let n=await e();return await Fh(r,Date.now()-t,!0,null),n}catch(n){let o=n instanceof Error?n.code??n.name:"UnknownError";throw await Fh(r,Date.now()-t,!1,o),n}}async function Fh(r,e,t,n){await I.track(r,{duration_ms:e,success:t,error_code:n}).catch(()=>{})}function SI(r){return r instanceof Error&&(r.name==="CacheDirError"||r.name==="DocPathSafetyError")}function jl(r){console.error(wI(EI(r))),process.exitCode=1}function EI(r){let e=r instanceof Error?r.message:String(r);return SI(r)?e:/\b(EACCES|EPERM|ENOSPC|ENOTDIR|ELOOP)\b/.test(e)?"Documentation data directory is unavailable. Check DEVECO_CLI_DATA_DIR and retry.":e}function Hh(...r){return e=>{if(!r.includes(e))throw new $h(`Allowed values: ${r.join(", ")}`);return e}}function PI(r){let e=Number(r);if(!Number.isInteger(e)||e<=0)throw new $h("Must be a positive integer.");return e}var CI=Hh("json","default"),kI=Hh("json","default");function II(r){let e=r.map(t=>t.trim()).filter(Boolean);if(e.length===0)throw new Error("Keywords cannot be empty.");return e}function AI(r){for(let e=0;e<r.length;e++){let t=r[e];console.log(t.documentId),console.log(` Title: ${t.title}`),t.snippet&&console.log(` Content: ${t.snippet}`),e<r.length-1&&console.log()}}var da=new vI("docs").description("Search and read HarmonyOS documentation from local docs directory");da.command("search <keywords...>").description("Search documentation by keywords").option("--catalog <name>","Catalog name (all for all catalogs)","all").option("--format <fmt>","Output format (default, json)",CI,"default").option("--limit <n>","Max number of results",PI,10).action(async(r,e)=>{let t={event:b.DocOperation,subAction:"search",queryLen:r.join(" ").length,catalog:e.catalog??"all"};try{await _l(t,async()=>{let n=II(r),o=e.catalog&&e.catalog!=="all"?e.catalog:void 0,i=await la(),s=i.CATALOG_NAMES;if(o&&s&&!s.includes(o))throw new Error(`Invalid catalog "${e.catalog}". Allowed: all, ${s.join(", ")}`);let a=await i.createDocsEngine({cacheDir:Pe()});try{let c=await a.search({keywords:n,catalog:o,limit:e.limit});e.format==="json"?console.log(JSON.stringify(c,null,2)):AI(c)}finally{await a.close()}})}catch(n){jl(n)}});da.command("read <documentId>").description("Read full content of a document by document ID").action(async r=>{let e=r.trim(),t={event:b.DocOperation,subAction:"read",documentId:e};try{await _l(t,async()=>{if(!e)throw new Error("Document ID cannot be empty.");let o=await(await la()).createDocsEngine({cacheDir:Pe()});try{let i=await o.read({relativePath:e});console.log(i)}finally{await o.close()}})}catch(n){jl(n)}});da.command("catalog").description("List all available catalogs").option("--format <fmt>","Output format (default, json)",kI,"default").action(async r=>{let e={event:b.DocOperation,subAction:"catalog",fmt:r.format??"default"};try{await _l(e,async()=>{let n=await(await la()).createDocsEngine({cacheDir:Pe()});try{let o=await n.catalog();if(r.format==="json")console.log(JSON.stringify(o.map(i=>({name:i.nodeId,title:i.nodeName})),null,2));else for(let i of o)console.log(` ${i.nodeId.padEnd(20)} ${bI(i.nodeName)}`)}finally{await n.close()}})}catch(t){jl(t)}});var Uh=da;import{Command as cA}from"commander";import{Command as DI,InvalidArgumentError as RI,Option as Fl}from"commander";import TI from"ora";function xI(r){let e=parseInt(r,10);if(!Number.isInteger(e)||e<0||String(e)!==r.trim())throw new RI("depth must be a non-negative integer");return e}function LI(r){let e=[];(r.type||r.id)&&e.push(r.type?r.id?`${r.type}#${r.id}`:r.type:`#${r.id}`),e.push(r.bounds?`[${r.bounds.join(",")}]`:"[]"),r.text&&e.push(`"${JSON.stringify(r.text).slice(1,-1)}"`);let t=[];return r.clickable&&t.push("clickable"),r.longClickable&&t.push("longClickable"),r.scrollable&&t.push("scrollable"),r.checkable&&t.push("checkable"),t.length>0&&e.push(...t),e.join(" ")}function Bh(r,e=0){let t=[],n=" ".repeat(e);for(let o of r)t.push(`${n}${LI(o)}`),o.children.length>0&&t.push(...Bh(o.children,e+1).split(`
1308
1322
  `));return t.join(`
1309
- `)}function rk(n){if(n.allWindows&&n.window)throw new Error("--all-windows and --window are mutually exclusive.")}function ik(n,e){let t=jr(n,e);if(t.length===0)throw new Error(`Node '${e}' not found.`);let r=t.map(i=>({...i,children:[]}));return JSON.stringify(r,null,2)}function ok(n,e){return e.id?ik(n,e.id):e.format==="json"?JSON.stringify(n,null,2):Bm(n)}async function sk(n){rk(n);let e=ek({text:"Dumping layout\u2026",color:"cyan"}).start(),t;try{let i=await A.new(),o=await fn(i,n.device),s=new zn(i.hdcPath);t=n.mode==="full"?await s.dumpFullTree(o,n.depth,n.window,n.allWindows):await s.dumpCollapsedTree(o,n.depth,n.window,n.allWindows)}catch(i){throw e.stop(),new Error(`Failed to dump layout: ${i.message}`,{cause:i})}e.stop();let r=ok(t,n);return console.log(r),Buffer.byteLength(r,"utf8")}function ak(n){return{event:b.CommandExecuted,args:["ui","layout",...n.device?["--device"]:[]],mode:n.mode,outputSize:0}}async function ck(n){let e=ak(n),t=Date.now(),r=!0,i=null;try{e.outputSize=await sk(n)}catch(o){throw r=!1,i=B(o),o}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(e,o)}}var Vm=new ZC("layout").description("Inspect on-screen node(s) for UI testing").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Layout node id").option("--window <windowId>","Target window id").option("--all-windows","Include all windows (mutually exclusive with --window)").addOption(new ul("--depth <n>","Tree depth limit (0=unlimited, 1=root only, 2=root+children)").argParser(tk).default(0)).addOption(new ul("--format <format>","Output format").choices(["default","json"]).default("default")).addOption(new ul("--mode <mode>","Output mode: full | simplified").choices(["full","simplified"]).default("simplified")).action(async n=>{await ck(n)});import{Command as lk,Option as dk}from"commander";import{yellow as uk}from"colorette";import pk from"ora";var fk=["Id","Name","Pid","DisplayId","Focused"];function mk(n,e){if(e==="json"){let r=n.map(i=>({id:i.id,name:i.name,pid:i.pid,displayId:i.displayId,focused:i.focused}));console.log(JSON.stringify(r,null,2));return}let t=n.map(r=>({cells:[String(r.id),r.name,String(r.pid),String(r.displayId),String(r.focused)],highlight:r.focused}));console.log(Rt(fk,t))}async function hk(n){let e=pk({text:"Listing windows\u2026",color:"cyan"}).start(),t;try{let r=await A.new(),i=await fn(r,n.device);t=await new $t(r.hdcPath,i).listWindows({all:n.all})}catch(r){throw e.stop(),new Error(`Failed to list windows: ${r.message}`,{cause:r})}if(e.stop(),t.length===0){console.log(uk(" No windows found."));return}mk(t,n.format)}function gk(n){let e=[];return n.device&&e.push("--device"),n.format!=="default"&&e.push("--format"),n.all&&e.push("--all"),{event:b.CommandExecuted,args:["ui","window","list",...e]}}async function yk(n){let e=gk(n),t=Date.now(),r=!0,i=null;try{await hk(n)}catch(o){throw r=!1,i=B(o),o}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(e,o)}}var pl=new lk("window").description("Manage device windows");pl.command("list").description("List windows on the device").option("--device <name|serial>","Target device (name or serial)").addOption(new dk("--format <format>","Output format").choices(["default","json"]).default("default")).option("--all","Show all windows including system windows").action(async n=>{await yk(n)});import{Command as vk}from"commander";import _e from"fs";import ot from"path";import{randomUUID as wk}from"crypto";import{green as bk}from"colorette";function Sk(n){return{event:b.CommandExecuted,args:["ui","screenshot",...n.device?["--device"]:[]]}}function Ek(){return String(Date.now())}function qm(n){let e;try{e=_e.statSync(n)}catch(t){let r=t.code;throw r==="ENOENT"?new Error(`Screenshot directory does not exist: ${n}`,{cause:t}):r==="EACCES"||r==="EPERM"?new Error(`Screenshot directory is not writable: ${n}`,{cause:t}):new Error(`Invalid screenshot path: ${t.message}${r?` (${r})`:""}`,{cause:t})}if(!e.isDirectory())throw new Error(`Screenshot parent path is not a directory: ${n}`);try{_e.accessSync(n,_e.constants.W_OK|_e.constants.X_OK)}catch(t){throw new Error(`Screenshot directory is not writable: ${n}`,{cause:t})}}function Gm(n,e){try{throw _e.lstatSync(n),new Error(`Screenshot file already exists: ${n}`)}catch(t){let r=t.code;if(r==="ENOENT")return;throw r==="EACCES"||r==="EPERM"?new Error(`Screenshot directory is not writable: ${e}`,{cause:t}):t instanceof Error&&!r?t:new Error(`Invalid screenshot path: ${t.message}${r?` (${r})`:""}`,{cause:t})}}function Pk(n){if(!n?.trim())throw new Error("--path is required.");let e=n.trim(),t=ot.resolve(e);try{if(_e.statSync(t).isDirectory()){qm(t);let i=ot.join(t,`screenshot-${Ek()}.png`);return Gm(i,t),i}}catch(i){if(i.code!=="ENOENT")throw i}if(ot.extname(t).toLowerCase()!==".png")throw new Error(`Screenshot path must be an existing directory or a PNG file: ${t}`);let r=ot.dirname(t);return qm(r),Gm(t,r),t}function zm(n){if(!_e.existsSync(n))throw new Error(`Screenshot file was not created: ${n}`);let e=_e.statSync(n);if(!e.isFile()||e.size===0)throw new Error(`Screenshot file is empty: ${n}`);let t=_e.readFileSync(n).subarray(0,8),r=Buffer.from([137,80,78,71,13,10,26,10]);if(!t.equals(r))throw new Error(`Screenshot file is not a valid PNG: ${n}`)}function Ck(n,e){let t=["-t",n.serial,"shell","snapshot_display"];return n.display!==void 0&&t.push("-i",n.display),t.push("-f",n.remotePath),e&&t.push("-t",e),t}function kk(n){let e=n.trim();if(!/^\d+$/.test(e))throw new Error("--display must be a non-negative integer.");return e}function Ik(n,e){try{_e.copyFileSync(n,e,_e.constants.COPYFILE_EXCL)}catch(t){throw t.code==="EEXIST"?new Error(`Screenshot file already exists: ${e}`,{cause:t}):t}zm(e)}function Ak(n){let e=n.trim();if(!e||/No such file|not found|cannot access/i.test(e))return;let t=e.split(/\s+/),r=Number(t[4]);return Number.isFinite(r)?r:void 0}async function Dk(n){let e=["-t",n.serial,"shell","ls","-l",n.remotePath];p(`Executing: ${n.hdcPath} ${e.join(" ")}`);let t=await ie(n.hdcPath,e);return t.exitCode===0?Ak(t.stdout):void 0}function Rk(n){return[n.stdout,n.stderr].filter(Boolean).join(`
1310
- `).trim()}function Tk(n){return n.replace(/(Tips:\s*supported\s+displayIds)\s*:?[ \t]*(?:\r?\n[ \t]*)?(\d+(?:(?:[ \t]*,[ \t]*|[ \t]+|\r?\n[ \t]*)\d+)*)/gi,(e,t,r)=>`${t}: ${r.match(/\d+/g)?.join(", ")??r}`)}function xk(n){let e=String.raw`invalid|not found|not exist|does not exist|out of range|unsupported`;return new RegExp(String.raw`display(?:\s*id)?.*(?:${e})`,"is").test(n)||new RegExp(String.raw`(?:${e}).*display(?:\s*id)?`,"is").test(n)}async function Lk(n,e){let t=Ck(n,e);p(`Executing: ${n.hdcPath} ${t.join(" ")}`);let r=await ie(n.hdcPath,t),i=await Dk(n);return{created:i!==void 0&&i>0,output:Tk(Rk(r))}}async function Nk(n){let e="";for(let t of[void 0,"png"]){let r=await Lk(n,t);if(r.created)return;if(n.display!==void 0&&xk(r.output))throw new Error(`Screenshot was not created on device: ${n.remotePath}.
1311
- snapshot_display output:
1312
- ${r.output}`);r.output&&(e=r.output)}throw new Error(e?`Screenshot was not created on device: ${n.remotePath}.
1313
- snapshot_display output:
1314
- ${e}`:`Screenshot was not created on device: ${n.remotePath}.`)}function Jm(n){try{return zm(n),!0}catch{return!1}}function Ym(n){let e=[];for(let t of _e.readdirSync(n,{withFileTypes:!0})){let r=ot.join(n,t.name);if(t.isDirectory()){e.push(...Ym(r));continue}t.isFile()&&Jm(r)&&e.push(r)}return e}function Ok(n,e){let t=ot.join(n,ot.basename(e));if(Jm(t))return t;let r=Ym(n);if(r.length===1)return r[0];if(r.length>1)throw new Error(`Multiple screenshot files were received in ${n}.`)}async function fl(n,e,t){let r=["-t",n.serial,"file","recv",n.remotePath,t];p(`Executing: ${n.hdcPath} ${r.join(" ")}`);let i=await ie(n.hdcPath,r);return i.exitCode!==0&&p(`hdc file recv failed: ${i.stderr||i.stdout||`exit code ${i.exitCode}`}`),Ok(e,n.remotePath)}async function Mk(n){let e=_e.mkdtempSync(ot.join(ot.dirname(n.localPath),".devecocli-screenshot-"));try{let t=await fl(n,e,ot.join(e,ot.basename(n.remotePath)))??await fl(n,e,e)??await fl(n,e,ot.join(e,"screenshot.png"));if(!t)throw new Error(`Screenshot file was not created in ${e}.`);Ik(t,n.localPath)}finally{_e.rmSync(e,{recursive:!0,force:!0})}}async function _k(n){let e=["-t",n.serial,"shell","rm","-f",n.remotePath];p(`Executing: ${n.hdcPath} ${e.join(" ")}`),await ie(n.hdcPath,e)}async function jk(n){try{await Nk(n),await Mk(n)}finally{await _k(n)}}async function Fk(n){let e=Sk(n),t=Date.now(),r=!0,i=null;try{let o=Pk(n.path),s=n.display!==void 0?kk(n.display):void 0;if(n.device!==void 0&&!n.device.trim())throw new Error("--device must not be empty.");let a=await A.new(),c=await fn(a,n.device),l=`/data/local/tmp/devecocli-${wk()}.png`;await jk({hdcPath:a.hdcPath,serial:c,localPath:o,remotePath:l,display:s}),console.log(bk(`Screenshot saved to ${o}`))}catch(o){throw r=!1,i=B(o),o}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(e,o)}}var Km=new vk("screenshot").description("Capture a screenshot of the device screen").option("--device <name|serial>","Target device name or serial; required when multiple devices are connected").option("--display <displayId>","Target display id; omit for default screen").option("--path <path>","Required directory or PNG file path; destination must be writable").action(Fk);import{Command as mn}from"commander";function hn(n,e){let t=[];return"device"in e&&e.device&&t.push("--device"),"id"in e&&e.id&&t.push("--id"),"window"in e&&e.window&&t.push("--window"),"speed"in e&&e.speed&&t.push("--speed"),{event:b.CommandExecuted,args:["ui",n,...t]}}function $k(n){let t=`"$(printf '%s' '${Buffer.from(n,"utf8").toString("base64")}' | base64 -d)"`;return p(`escapeShellText: ${n} -> ${t}`),t}async function gn(n,e,t,r){let i=new dt;i.start(n);let o=Date.now(),s=!0,a=null;try{await r(i)}catch(c){throw i.stop(),s=!1,a=B(c),new Error(`${e}: ${c.message}`,{cause:c})}finally{let c={duration_ms:Date.now()-o,success:s,error_code:a};await I.track(t,c)}}async function Hk(n,e,t){let r=hn("click",t);await gn("Executing click...","click failed",r,async i=>{Fr(n,e,t.id,t.window);let{hdcPath:o,deviceId:s}=await Et(t.device),{x:a,y:c}=await $r(o,s,n!==void 0?Number(n):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(o,s,["uitest","uiInput","click",String(a),String(c)]),i.succeed(`click at (${a}, ${c})`)})}async function Uk(n,e,t){let r=hn("doubleclick",t);await gn("Executing doubleclick...","doubleclick failed",r,async i=>{Fr(n,e,t.id,t.window);let{hdcPath:o,deviceId:s}=await Et(t.device),{x:a,y:c}=await $r(o,s,n!==void 0?Number(n):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(o,s,["uitest","uiInput","doubleClick",String(a),String(c)]),i.succeed(`doubleclick at (${a}, ${c})`)})}async function Wk(n,e,t){let r=hn("longclick",t);await gn("Executing longclick...","longclick failed",r,async i=>{Fr(n,e,t.id,t.window);let{hdcPath:o,deviceId:s}=await Et(t.device),{x:a,y:c}=await $r(o,s,n!==void 0?Number(n):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(o,s,["uitest","uiInput","longClick",String(a),String(c)]),i.succeed(`longclick at (${a}, ${c})`)})}async function Bk(n,e,t,r,i){let o=hn("swipe",i);await gn("Executing swipe...","swipe failed",o,async s=>{Te(n,"x1"),Te(e,"y1"),Te(t,"x2"),Te(r,"y2");let a=ji(i.speed),{hdcPath:c,deviceId:l}=await Et(i.device),d=["uitest","uiInput","swipe",n,e,t,r];a&&d.push(a),await it(c,l,d),s.succeed(`swipe from (${n}, ${e}) to (${t}, ${r})`)})}async function Vk(n,e,t,r,i){let o=hn("fling",i);await gn("Executing fling...","fling failed",o,async s=>{Te(n,"x1"),Te(e,"y1"),Te(t,"x2"),Te(r,"y2");let a=ji(i.speed),{hdcPath:c,deviceId:l}=await Et(i.device),d=["uitest","uiInput","fling",n,e,t,r];a&&d.push(a),await it(c,l,d),s.succeed(`fling from (${n}, ${e}) to (${t}, ${r})`)})}async function qk(n,e,t,r,i){let o=hn("drag",i);await gn("Executing drag...","drag failed",o,async s=>{Te(n,"x1"),Te(e,"y1"),Te(t,"x2"),Te(r,"y2");let a=ji(i.speed),{hdcPath:c,deviceId:l}=await Et(i.device),d=["uitest","uiInput","drag",n,e,t,r];a&&d.push(a),await it(c,l,d),s.succeed(`drag from (${n}, ${e}) to (${t}, ${r})`)})}async function Gk(n,e){let t=hn("dircfling",e);await gn("Executing dircfling...","dircfling failed",t,async r=>{let i=Vs[n];if(i===void 0)throw new Error(`Invalid direction "${n}". Valid values: ${Object.keys(Vs).join(", ")}`);let{hdcPath:o,deviceId:s}=await Et(e.device);await it(o,s,["uitest","uiInput","dircFling",i]),r.succeed(`dircfling ${n}`)})}async function zk(n,e,t,r){let i=hn("text",r);await gn("Executing text input...","input failed",i,async o=>{Fr(e,t,r.id,r.window,!1),qs(n,"text");let{hdcPath:s,deviceId:a}=await Et(r.device),c=$k(n);if(e!==void 0)await it(s,a,["uitest","uiInput","inputText",`${e}`,`${t}`,c]),o.succeed(`input ${n} at (${e}, ${t})`);else if(r.id){let{x:l,y:d}=await $r(s,a,void 0,void 0,r.id,r.window);await it(s,a,["uitest","uiInput","inputText",`${l}`,`${d}`,c]),o.succeed(`input ${n} at (${l}, ${d})`)}else await it(s,a,["uitest","uiInput","text",c]),o.succeed(`input ${n}`)})}var Xm=new mn("click").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Tap at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(Hk),Zm=new mn("doubleclick").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Double-tap at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(Uk),Qm=new mn("longclick").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Long-press at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(Wk),eh=new mn("swipe").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Swipe from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(Bk),th=new mn("fling").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Fling from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(Vk),nh=new mn("drag").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Drag from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(qk),rh=new mn("dircfling").argument("<direction>","Direction: up, down, left, right").description("Fling in a specified direction").option("--device <name|serial>","Target device (name or serial)").action(Gk),ih=new mn("text").argument("<text>","Text to input").argument("[x]","Optional X coordinate").argument("[y]","Optional Y coordinate").description("Input text at a target location or the currently focused field").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id to target before input (auto-resolves to center)").option("--window <windowId>","Target window id (used with --id)").action(zk);var st=new Jk("ui").description("Inspect and interact with UI on a connected device");st.addCommand(Vm);st.addCommand(pl);st.addCommand(Km);st.addCommand(Xm);st.addCommand(Zm);st.addCommand(Qm);st.addCommand(eh);st.addCommand(th);st.addCommand(nh);st.addCommand(rh);st.addCommand(ih);var oh=st;import{Command as jh,InvalidArgumentError as MA}from"commander";import{execa as vI}from"execa";import Pt from"fs";import*as vl from"os";import*as O from"path";var Yk=new RegExp("\x1B\\[[0-?]*[ -/]*[@-~]","g"),Kk=/\r/g,Xk=/^(Working|Finished)\.\.\.\[[^\]]*\]\d+%$/,Zk=/^<+\s*/,Qk=/\s*>+$/,eI=[/^The configuration file .+ is in use\.$/,/^The configuration file .+ in the project is in use\.$/,/^Currently active product: ?.+$/,/^Writing the result to .+\.$/,/^Write finished\.$/,/^CodeLinter found some defects in your code\.$/],tI=new Set([1]);function hl(n){if(!n)return"";let e=n.replace(Yk,"").replace(Kk,`
1323
+ `)}function NI(r){if(r.allWindows&&r.window)throw new Error("--all-windows and --window are mutually exclusive.")}function MI(r,e){let t=hn(r,e);if(t.length===0)throw new Error(`Node '${e}' not found.`);let n=t.map(o=>({...o,children:[]}));return JSON.stringify(n,null,2)}function OI(r,e){return e.id?MI(r,e.id):e.format==="json"?JSON.stringify(r,null,2):Bh(r)}async function _I(r){NI(r);let e=TI({text:"Dumping layout\u2026",color:"cyan"}).start(),t;try{let o=await A.new(),i=await ht(o,r.device),s=new Br(o.hdcPath);t=r.mode==="full"?await s.dumpFullTree(i,r.depth,r.window,r.allWindows):await s.dumpCollapsedTree(i,r.depth,r.window,r.allWindows)}catch(o){throw e.stop(),new Error(`Failed to dump layout: ${o.message}`,{cause:o})}e.stop();let n=OI(t,r);return console.log(n),Buffer.byteLength(n,"utf8")}function jI(r){return{event:b.CommandExecuted,args:["ui","layout",...r.device?["--device"]:[]],mode:r.mode,outputSize:0}}async function FI(r){let e=jI(r),t=Date.now(),n=!0,o=null;try{e.outputSize=await _I(r)}catch(i){throw n=!1,o=q(i),i}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(e,i)}}var Wh=new DI("layout").description("Inspect on-screen node(s) for UI testing").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Layout node id").option("--window <windowId>","Target window id").option("--all-windows","Include all windows (mutually exclusive with --window)").addOption(new Fl("--depth <n>","Tree depth limit (0=unlimited, 1=root only, 2=root+children)").argParser(xI).default(0)).addOption(new Fl("--format <format>","Output format").choices(["default","json"]).default("default")).addOption(new Fl("--mode <mode>","Output mode: full | simplified").choices(["full","simplified"]).default("simplified")).action(async r=>{await FI(r)});import{Command as $I,Option as HI}from"commander";import{yellow as UI}from"colorette";import BI from"ora";var WI=["Id","Name","Pid","DisplayId","Focused"];function VI(r,e){if(e==="json"){let n=r.map(o=>({id:o.id,name:o.name,pid:o.pid,displayId:o.displayId,focused:o.focused}));console.log(JSON.stringify(n,null,2));return}let t=r.map(n=>({cells:[String(n.id),n.name,String(n.pid),String(n.displayId),String(n.focused)],highlight:n.focused}));console.log(Ft(WI,t))}async function GI(r){let e=BI({text:"Listing windows\u2026",color:"cyan"}).start(),t;try{let n=await A.new(),o=await ht(n,r.device);t=await new Ot(n.hdcPath,o).listWindows({all:r.all})}catch(n){throw e.stop(),new Error(`Failed to list windows: ${n.message}`,{cause:n})}if(e.stop(),t.length===0){console.log(UI(" No windows found."));return}VI(t,r.format)}function qI(r){let e=[];return r.device&&e.push("--device"),r.format!=="default"&&e.push("--format"),r.all&&e.push("--all"),{event:b.CommandExecuted,args:["ui","window","list",...e]}}async function zI(r){let e=qI(r),t=Date.now(),n=!0,o=null;try{await GI(r)}catch(i){throw n=!1,o=q(i),i}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(e,i)}}var $l=new $I("window").description("Manage device windows");$l.command("list").description("List windows on the device").option("--device <name|serial>","Target device (name or serial)").addOption(new HI("--format <format>","Output format").choices(["default","json"]).default("default")).option("--all","Show all windows including system windows").action(async r=>{await zI(r)});import{Command as JI}from"commander";import{green as YI}from"colorette";function KI(r){return{event:b.CommandExecuted,args:["ui","screenshot",...r.device?["--device"]:[]]}}function XI(r){let e=r.trim();if(!/^\d+$/.test(e))throw new Error("--display must be a non-negative integer.");return e}async function ZI(r){let e=KI(r),t=Date.now(),n=!0,o=null;try{if(r.device!==void 0&&!r.device.trim())throw new Error("--device must not be empty.");let i=r.display!==void 0?XI(r.display):void 0,s=await A.new(),a=new Wr(s),c=a.resolveDestinationPath(r.path),l=await ht(s,r.device);await a.captureToPath(l,c,i),console.log(YI(`Screenshot saved to ${c}`))}catch(i){throw n=!1,o=q(i),i}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(e,i)}}var Vh=new JI("screenshot").description("Capture a screenshot of the device screen").option("--device <name|serial>","Target device name or serial; required when multiple devices are connected").option("--display <displayId>","Target display id; omit for default screen").option("--path <path>","Required directory or PNG file path; destination must be writable").action(ZI);import{Command as br}from"commander";function Sr(r,e){let t=[];return"device"in e&&e.device&&t.push("--device"),"id"in e&&e.id&&t.push("--id"),"window"in e&&e.window&&t.push("--window"),"speed"in e&&e.speed&&t.push("--speed"),{event:b.CommandExecuted,args:["ui",r,...t]}}function QI(r){let t=`"$(printf '%s' '${Buffer.from(r,"utf8").toString("base64")}' | base64 -d)"`;return u(`escapeShellText: ${r} -> ${t}`),t}async function Er(r,e,t,n){let o=new Ke;o.start(r);let i=Date.now(),s=!0,a=null;try{await n(o)}catch(c){throw o.stop(),s=!1,a=q(c),new Error(`${e}: ${c.message}`,{cause:c})}finally{let c={duration_ms:Date.now()-i,success:s,error_code:a};await I.track(t,c)}}async function eA(r,e,t){let n=Sr("click",t);await Er("Executing click...","click failed",n,async o=>{gn(r,e,t.id,t.window);let{hdcPath:i,deviceId:s}=await Dt(t.device),{x:a,y:c}=await yn(i,s,r!==void 0?Number(r):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(i,s,["uitest","uiInput","click",String(a),String(c)]),o.succeed(`click at (${a}, ${c})`)})}async function tA(r,e,t){let n=Sr("doubleclick",t);await Er("Executing doubleclick...","doubleclick failed",n,async o=>{gn(r,e,t.id,t.window);let{hdcPath:i,deviceId:s}=await Dt(t.device),{x:a,y:c}=await yn(i,s,r!==void 0?Number(r):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(i,s,["uitest","uiInput","doubleClick",String(a),String(c)]),o.succeed(`doubleclick at (${a}, ${c})`)})}async function rA(r,e,t){let n=Sr("longclick",t);await Er("Executing longclick...","longclick failed",n,async o=>{gn(r,e,t.id,t.window);let{hdcPath:i,deviceId:s}=await Dt(t.device),{x:a,y:c}=await yn(i,s,r!==void 0?Number(r):void 0,e!==void 0?Number(e):void 0,t.id,t.window);await it(i,s,["uitest","uiInput","longClick",String(a),String(c)]),o.succeed(`longclick at (${a}, ${c})`)})}async function nA(r,e,t,n,o){let i=Sr("swipe",o);await Er("Executing swipe...","swipe failed",i,async s=>{Te(r,"x1"),Te(e,"y1"),Te(t,"x2"),Te(n,"y2");let a=ho(o.speed),{hdcPath:c,deviceId:l}=await Dt(o.device),d=["uitest","uiInput","swipe",r,e,t,n];a&&d.push(a),await it(c,l,d),s.succeed(`swipe from (${r}, ${e}) to (${t}, ${n})`)})}async function oA(r,e,t,n,o){let i=Sr("fling",o);await Er("Executing fling...","fling failed",i,async s=>{Te(r,"x1"),Te(e,"y1"),Te(t,"x2"),Te(n,"y2");let a=ho(o.speed),{hdcPath:c,deviceId:l}=await Dt(o.device),d=["uitest","uiInput","fling",r,e,t,n];a&&d.push(a),await it(c,l,d),s.succeed(`fling from (${r}, ${e}) to (${t}, ${n})`)})}async function iA(r,e,t,n,o){let i=Sr("drag",o);await Er("Executing drag...","drag failed",i,async s=>{Te(r,"x1"),Te(e,"y1"),Te(t,"x2"),Te(n,"y2");let a=ho(o.speed),{hdcPath:c,deviceId:l}=await Dt(o.device),d=["uitest","uiInput","drag",r,e,t,n];a&&d.push(a),await it(c,l,d),s.succeed(`drag from (${r}, ${e}) to (${t}, ${n})`)})}async function sA(r,e){let t=Sr("dircfling",e);await Er("Executing dircfling...","dircfling failed",t,async n=>{let o=zi[r];if(o===void 0)throw new Error(`Invalid direction "${r}". Valid values: ${Object.keys(zi).join(", ")}`);let{hdcPath:i,deviceId:s}=await Dt(e.device);await it(i,s,["uitest","uiInput","dircFling",o]),n.succeed(`dircfling ${r}`)})}async function aA(r,e,t,n){let o=Sr("text",n);await Er("Executing text input...","input failed",o,async i=>{gn(e,t,n.id,n.window,!1),Ji(r,"text");let{hdcPath:s,deviceId:a}=await Dt(n.device),c=QI(r);if(e!==void 0)await it(s,a,[`uitest uiInput inputText ${e} ${t} ${c}`]),i.succeed(`input ${r} at (${e}, ${t})`);else if(n.id){let{x:l,y:d}=await yn(s,a,void 0,void 0,n.id,n.window);await it(s,a,[`uitest uiInput inputText ${l} ${d} ${c}`]),i.succeed(`input ${r} at (${l}, ${d})`)}else await it(s,a,[`uitest uiInput text ${c}`]),i.succeed(`input ${r}`)})}var Gh=new br("click").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Tap at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(eA),qh=new br("doubleclick").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Double-tap at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(tA),zh=new br("longclick").argument("[x]","X coordinate").argument("[y]","Y coordinate").description("Long-press at the specified coordinates").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id (auto-resolves to center coordinates)").option("--window <windowId>","Target window id (used with --id)").action(rA),Jh=new br("swipe").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Swipe from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(nA),Yh=new br("fling").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Fling from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(oA),Kh=new br("drag").argument("<x1>","Start X coordinate").argument("<y1>","Start Y coordinate").argument("<x2>","End X coordinate").argument("<y2>","End Y coordinate").description("Drag from one point to another").option("--device <name|serial>","Target device (name or serial)").option("--speed <n>","Swipe speed (pixels per second)").action(iA),Xh=new br("dircfling").argument("<direction>","Direction: up, down, left, right").description("Fling in a specified direction").option("--device <name|serial>","Target device (name or serial)").action(sA),Zh=new br("text").argument("<text>","Text to input").argument("[x]","Optional X coordinate").argument("[y]","Optional Y coordinate").description("Input text at a target location or the currently focused field").option("--device <name|serial>","Target device (name or serial)").option("--id <id>","Node id to target before input (auto-resolves to center)").option("--window <windowId>","Target window id (used with --id)").action(aA);var ut=new cA("ui").description("Inspect and interact with UI on a connected device");ut.addCommand(Wh);ut.addCommand($l);ut.addCommand(Vh);ut.addCommand(Gh);ut.addCommand(qh);ut.addCommand(zh);ut.addCommand(Jh);ut.addCommand(Yh);ut.addCommand(Kh);ut.addCommand(Xh);ut.addCommand(Zh);var Qh=ut;import{Command as Mg,InvalidArgumentError as oR}from"commander";import{execa as LA}from"execa";import xt from"fs";import*as Vl from"os";import*as M from"path";var lA=new RegExp("\x1B\\[[0-?]*[ -/]*[@-~]","g"),dA=/\r/g,uA=/^(Working|Finished)\.\.\.\[[^\]]*\]\d+%$/,pA=/^<+\s*/,fA=/\s*>+$/,mA=[/^The configuration file .+ is in use\.$/,/^The configuration file .+ in the project is in use\.$/,/^Currently active product: ?.+$/,/^Writing the result to .+\.$/,/^Write finished\.$/,/^CodeLinter found some defects in your code\.$/],hA=new Set([1]);function Ul(r){if(!r)return"";let e=r.replace(lA,"").replace(dA,`
1315
1324
  `).split(`
1316
- `).map(nI).map(t=>t.trimEnd()).filter(t=>iI(t));return e.length>0?`${e.join(`
1325
+ `).map(gA).map(t=>t.trimEnd()).filter(t=>vA(t));return e.length>0?`${e.join(`
1317
1326
  `)}
1318
- `:""}function nI(n){let e=n.trim();if(!e.startsWith("{"))return n;try{let t=JSON.parse(e);return typeof t.content!="string"||typeof t.messageType!="number"?n:tI.has(t.messageType)?"":t.content}catch{return n}}var sh=50*1024*1024;function dh(n){let e=hl(n).trim();if(!e)return{jsonText:void 0,diagnostics:""};if(e.length>sh)return{jsonText:void 0,diagnostics:`${e.slice(0,1024)}
1319
- [output truncated: exceeded ${sh} bytes]
1320
- `};if(ml(e))return{jsonText:e,diagnostics:""};let t=e.split(`
1321
- `);if(t.length>1&&t.every(ml))return{jsonText:JSON.stringify(t.map(o=>JSON.parse(o))),diagnostics:""};let r=oI(e);if(!r)return{jsonText:void 0,diagnostics:`${e}
1322
- `};let i=[e.slice(0,r.start).trim(),e.slice(r.end).trim()].filter(Boolean).join(`
1323
- `);return{jsonText:e.slice(r.start,r.end),diagnostics:i?`${i}
1324
- `:""}}function rI(n){return Xk.test(n.trim())}function iI(n){let e=n.trim();return!!e&&!rI(e)&&!eI.some(t=>t.test(e))}function ml(n){try{return JSON.parse(n),!0}catch{return!1}}function oI(n){for(let e=0;e<n.length;e++){let t=n[e];if(t!=="["&&t!=="{")continue;let i=sI(n,e,t,t==="["?"]":"}");if(i!==-1&&ml(n.slice(e,i+1)))return{start:e,end:i+1}}}function sI(n,e,t,r){let i=0,o=!1,s=!1;for(let a=e;a<n.length;a++){let c=n[a];if(s){s=!1;continue}if(c==="\\"&&o){s=!0;continue}if(c==='"'){o=!o;continue}if(!o){if(c===t)i++;else if(c===r&&(i--,i===0))return a}}return-1}var ah=["Error","Warning","Suggestion","Info","Off","Unknown"];function uh(n){let e=gl(n);return{issues:dI(e),summary:aI(n,e)}}function aI(n,e){let t=pI(e);return{filesChecked:fI(n).size,issues:e.length,errors:t.get("Error")??0,warnings:t.get("Warning")??0,suggestions:t.get("Suggestion")??0}}function gl(n,e=""){if(Array.isArray(n))return n.flatMap(o=>gl(o,e));if(!ph(n))return[];let t=Fi(n,["filePath","file","path"])??e,r=cI(n,t);if(r.length>0)return r;let i=lI(n,t);return i?[i]:[]}function cI(n,e){let t=["messages","defects","issues","results","files"];for(let r of t){let i=n[r];if(Array.isArray(i)){let o=i.flatMap(s=>gl(s,e));if(o.length>0)return o}}return[]}function lI(n,e){let t=Fi(n,["message","description","desc","detail"])??"",r=yI(Fi(n,["rule","ruleId","ruleName"])),i=hI(n,["severity","level"]),o=Fi(n,["filePath","file","path"])??e;if(!(!t&&!r&&i==="Unknown"))return{file:o,line:lh(n,["line","reportLine"]),column:lh(n,["column","reportColumn"]),severity:i,rule:r,message:t}}function dI(n){return[...n].sort((e,t)=>{let r=ch(e.severity)-ch(t.severity);return r===0?uI(e,t):r})}function uI(n,e){let t=n.file.localeCompare(e.file);if(t!==0)return t;let r=(n.line??Number.MAX_SAFE_INTEGER)-(e.line??Number.MAX_SAFE_INTEGER);return r!==0?r:(n.column??Number.MAX_SAFE_INTEGER)-(e.column??Number.MAX_SAFE_INTEGER)}function pI(n){let e=new Map;for(let t of n){let r=t.severity;e.set(r,(e.get(r)??0)+1)}return e}function fI(n){let e=new Set;return yl(e,n,""),e}function yl(n,e,t){if(Array.isArray(e)){for(let i of e)yl(n,i,t);return}if(!ph(e))return;let r=Fi(e,["filePath","file","path"])??t;r&&n.add(r),mI(n,e,r)}function mI(n,e,t){let r=["messages","defects","issues","results","files"];for(let i of r){let o=e[i];if(Array.isArray(o))for(let s of o)yl(n,s,t)}}function hI(n,e){for(let t of e){let r=n[t];if(typeof r=="string"||typeof r=="number")return gI(r)}return"Unknown"}function gI(n){let e=String(n).normalize("NFKC").trim().toLowerCase();return e==="2"||e==="error"||e==="err"?"Error":e==="1"||e==="warn"||e==="warning"?"Warning":e==="3"||e==="suggest"||e==="suggestion"?"Suggestion":e==="info"||e==="information"?"Info":e==="0"||e==="off"?"Off":"Unknown"}function yI(n){let e=n?.normalize("NFKC").trim();if(e)return e.replace(Zk,"").replace(Qk,"").toLowerCase()}function ch(n){let e=ah.indexOf(n);return e===-1?ah.length:e}function Fi(n,e){for(let t of e){let r=n[t];if(typeof r=="string")return r}}function lh(n,e){for(let t of e){let r=n[t];if(typeof r=="number")return r}}function ph(n){return typeof n=="object"&&n!==null}var yn=class extends Error{code;constructor(e,t,r){super(t,r),this.name="ValidationError",this.code=e}},fh="deveco-codelinter-",mh=[".ets",".ts",".js"],$i=class n{resolution;cwd;toolProvider;constructor(e,t){this.toolProvider=e,this.resolution=n.resolveWithToolProvider(e),this.cwd=t}get supportsReportOptions(){return!this.resolution.isLegacyStudioArgs}static resolveProjectRoot(e){try{return Y.discover(e).rootDir}catch{return e}}async check(e){let t=Pt.mkdtempSync(O.join(vl.tmpdir(),fh)),r=O.join(t,"report.json");try{let i=n.resolveProjectRoot(this.cwd),o=this.resolveLintTarget(e.lintPath,i),s=this.resolveConfigPath(e.configPath,o),a=this.buildNativeArgs(e,o.path,s,r,t,o.projectRoot??i),c=await this.run(a),l=dh(c.stdout),d=l.diagnostics+hl(c.stderr);try{let g=this.readJsonReport(r,l.jsonText);return{exitCode:c.exitCode,diagnostics:d,report:uh(g)}}catch(g){return{exitCode:c.exitCode,diagnostics:d,reportError:g}}}finally{this.removeTempDir(t)}}resolveLintTarget(e,t){let r=e?O.resolve(this.cwd,e):t,i=this.resolveRealPath(r,"Lint path"),o=Pt.statSync(i);if(!o.isFile()&&!o.isDirectory())throw new yn("errorCode",`Lint path must be a file or directory: ${r}`);if(o.isFile()){let a=O.extname(i).toLowerCase();if(!mh.some(l=>l===a))throw new Error(`Unsupported lint file extension "${a||"<none>"}": ${i}. Supported extensions: ${mh.join(", ")}.`)}let s=this.discoverProjectRoot(i,o.isDirectory());if(e!==void 0&&s===void 0)throw new yn("errorCode",`Lint path is not in a valid project directory (project-level build-profile.json5 not found or invalid): ${i}`);return{path:i,projectRoot:s}}resolveConfigPath(e,t){let r=e?O.resolve(this.cwd,e):O.join(t.projectRoot??this.cwd,"code-linter.json5"),i=this.resolveRealPath(r,"`--config-path`");if(!Pt.statSync(i).isFile())throw new yn("errorCode",`--config-path must point to a file: ${r}`);if(t.projectRoot){let o=this.discoverProjectRoot(i,!1);if(o===void 0||O.relative(t.projectRoot,o)!=="")throw new yn("errorCode",`\`--config-path\` must belong to the same project as the lint path. Lint project: ${t.projectRoot}; Config project: ${o??"not found"}.`)}return i}discoverProjectRoot(e,t){let r=t?e:O.dirname(e);try{return Pt.realpathSync(Y.discover(r).rootDir)}catch{return}}resolveRealPath(e,t){try{return Pt.realpathSync(e)}catch(r){throw new yn("errorCode",`${t} does not exist or cannot be resolved: ${e}`,{cause:r})}}buildNativeArgs(e,t,r,i,o,s){if(this.resolution.isLegacyStudioArgs)return this.buildLegacyNativeArgs(e,t,r,o,s);let a=["--config",r];return e.fix&&a.push("--fix"),e.incremental&&a.push("--incremental"),a.push("--product",e.product,"--format","json","--output",i,t),a}buildLegacyNativeArgs(e,t,r,i,o){let s=String(this.toolProvider.getMaxApiLevel()),a=this.toolProvider.getSdkPlatformVersion(),c=O.join(i,"check-paths.json");Pt.writeFileSync(c,JSON.stringify([t]),"utf8");let l=["--dir",c,"--isTooManyFiles","true","--config",r,"--product",e.product,"--sdkPath",this.toolProvider.sdkPath,"--sdkNumberVersion",s,"--sdkStringVersion",a,"--project",o,"--logPath",O.join(i,"codelinter.log"),"--workdir",O.dirname(this.toolProvider.codelinterPath),"--inIde","true"];return e.fix&&l.push("--fix","true"),e.incremental&&l.push("--incremental","true"),l}async run(e){let t=this.resolution.isLegacyStudioArgs?[this.resolution.argsPrefix[0],...e]:[...this.resolution.argsPrefix,...e],r=this.resolution.workingDirectory??this.cwd;this.prepareRuntimeDirectories(),p(`Executing: ${this.resolution.command} ${t.join(" ")}`),p(`[CodelinterAdapter] Working directory: ${r}`);let i=await vI(this.resolution.command,t,{cwd:r,env:this.resolution.env,stdout:"pipe",stderr:"pipe",reject:!1});return{exitCode:i.exitCode??1,stdout:i.stdout,stderr:i.stderr}}prepareRuntimeDirectories(){for(let e of this.resolution.runtimeDirectories??[])Pt.mkdirSync(e,{recursive:!0})}readJsonReport(e,t){let i=(Pt.existsSync(e)?Pt.readFileSync(e,"utf-8").trim():void 0)||t?.trim();if(!i)throw new yn("errorCode","Native JSON report was not generated.");return JSON.parse(i)}removeTempDir(e){let t=O.resolve(e),r=O.resolve(vl.tmpdir());!(t.startsWith(`${r}${O.sep}`)||t===r)||!O.basename(t).startsWith(fh)||Pt.rmSync(t,{recursive:!0,force:!0})}static isModernStudioEntry(e){let t=["plugins","codelinter","run","index.js"],r=O.normalize(e).split(O.sep).slice(-t.length);return t.every((i,o)=>r[o]?.toLowerCase()===i)}static resolveWithToolProvider(e){let t=n.getSource(e),r=e.toolchainRoot,i=e.codelinterPath,o=e.sdkPath,s=n.getPathEntries(e,t),a=t==="ide"?"DevEco Studio":"DevEco Command Line Tools",c=t==="ide"&&!n.isModernStudioEntry(i),l={command:e.nodePath,argsPrefix:[i,o],env:{...process.env,PATH:[...s,process.env.PATH||""].join(O.delimiter),DEVECO_SDK_HOME:o},isLegacyStudioArgs:c};return t==="command-line-tools"&&(l.workingDirectory=r,l.runtimeDirectories=[n.getResultDirectory(i)]),p(`[CodelinterAdapter] Selected ${a} entry: ${i}`),l}static getPathEntries(e,t){let r=[O.dirname(e.nodePath)];return t==="ide"&&e.javaPath&&r.unshift(O.dirname(e.javaPath)),r}static getResultDirectory(e){return O.resolve(e,"..","linter","result")}static getSource(e){return e.sourceType==="studio"?"ide":"command-line-tools"}};import{red as zs,yellow as Eh}from"colorette";import{Argument as RI,Command as TI,InvalidArgumentError as wn}from"commander";import Ui from"fs";import*as je from"path";import*as Hi from"path";var hh="n/a",gh=/\\/g,wI=/\|/g,bI=/\r?\n/g;function yh(n,e){if(n.issues.length===0)return`No defects found.
1325
- ${wl(n.summary)}
1326
- `;let t=e===void 0?n.issues:n.issues.slice(0,e),r=[EI(t),wl(n.summary)];return e!==void 0&&t.length<n.issues.length&&r.push(SI(n.issues.length,t.length)),`${r.join(`
1327
+ `:""}function gA(r){let e=r.trim();if(!e.startsWith("{"))return r;try{let t=JSON.parse(e);return typeof t.content!="string"||typeof t.messageType!="number"?r:hA.has(t.messageType)?"":t.content}catch{return r}}var eg=50*1024*1024;function og(r){let e=Ul(r).trim();if(!e)return{jsonText:void 0,diagnostics:""};if(e.length>eg)return{jsonText:void 0,diagnostics:`${e.slice(0,1024)}
1328
+ [output truncated: exceeded ${eg} bytes]
1329
+ `};if(Hl(e))return{jsonText:e,diagnostics:""};let t=e.split(`
1330
+ `);if(t.length>1&&t.every(Hl))return{jsonText:JSON.stringify(t.map(i=>JSON.parse(i))),diagnostics:""};let n=wA(e);if(!n)return{jsonText:void 0,diagnostics:`${e}
1331
+ `};let o=[e.slice(0,n.start).trim(),e.slice(n.end).trim()].filter(Boolean).join(`
1332
+ `);return{jsonText:e.slice(n.start,n.end),diagnostics:o?`${o}
1333
+ `:""}}function yA(r){return uA.test(r.trim())}function vA(r){let e=r.trim();return!!e&&!yA(e)&&!mA.some(t=>t.test(e))}function Hl(r){try{return JSON.parse(r),!0}catch{return!1}}function wA(r){for(let e=0;e<r.length;e++){let t=r[e];if(t!=="["&&t!=="{")continue;let o=bA(r,e,t,t==="["?"]":"}");if(o!==-1&&Hl(r.slice(e,o+1)))return{start:e,end:o+1}}}function bA(r,e,t,n){let o=0,i=!1,s=!1;for(let a=e;a<r.length;a++){let c=r[a];if(s){s=!1;continue}if(c==="\\"&&i){s=!0;continue}if(c==='"'){i=!i;continue}if(!i){if(c===t)o++;else if(c===n&&(o--,o===0))return a}}return-1}var tg=["Error","Warning","Suggestion","Info","Off","Unknown"];function ig(r){let e=Bl(r);return{issues:CA(e),summary:SA(r,e)}}function SA(r,e){let t=IA(e);return{filesChecked:AA(r).size,issues:e.length,errors:t.get("Error")??0,warnings:t.get("Warning")??0,suggestions:t.get("Suggestion")??0}}function Bl(r,e=""){if(Array.isArray(r))return r.flatMap(i=>Bl(i,e));if(!sg(r))return[];let t=ei(r,["filePath","file","path"])??e,n=EA(r,t);if(n.length>0)return n;let o=PA(r,t);return o?[o]:[]}function EA(r,e){let t=["messages","defects","issues","results","files"];for(let n of t){let o=r[n];if(Array.isArray(o)){let i=o.flatMap(s=>Bl(s,e));if(i.length>0)return i}}return[]}function PA(r,e){let t=ei(r,["message","description","desc","detail"])??"",n=xA(ei(r,["rule","ruleId","ruleName"])),o=RA(r,["severity","level"]),i=ei(r,["filePath","file","path"])??e;if(!(!t&&!n&&o==="Unknown"))return{file:i,line:ng(r,["line","reportLine"]),column:ng(r,["column","reportColumn"]),severity:o,rule:n,message:t}}function CA(r){return[...r].sort((e,t)=>{let n=rg(e.severity)-rg(t.severity);return n===0?kA(e,t):n})}function kA(r,e){let t=r.file.localeCompare(e.file);if(t!==0)return t;let n=(r.line??Number.MAX_SAFE_INTEGER)-(e.line??Number.MAX_SAFE_INTEGER);return n!==0?n:(r.column??Number.MAX_SAFE_INTEGER)-(e.column??Number.MAX_SAFE_INTEGER)}function IA(r){let e=new Map;for(let t of r){let n=t.severity;e.set(n,(e.get(n)??0)+1)}return e}function AA(r){let e=new Set;return Wl(e,r,""),e}function Wl(r,e,t){if(Array.isArray(e)){for(let o of e)Wl(r,o,t);return}if(!sg(e))return;let n=ei(e,["filePath","file","path"])??t;n&&r.add(n),DA(r,e,n)}function DA(r,e,t){let n=["messages","defects","issues","results","files"];for(let o of n){let i=e[o];if(Array.isArray(i))for(let s of i)Wl(r,s,t)}}function RA(r,e){for(let t of e){let n=r[t];if(typeof n=="string"||typeof n=="number")return TA(n)}return"Unknown"}function TA(r){let e=String(r).normalize("NFKC").trim().toLowerCase();return e==="2"||e==="error"||e==="err"?"Error":e==="1"||e==="warn"||e==="warning"?"Warning":e==="3"||e==="suggest"||e==="suggestion"?"Suggestion":e==="info"||e==="information"?"Info":e==="0"||e==="off"?"Off":"Unknown"}function xA(r){let e=r?.normalize("NFKC").trim();if(e)return e.replace(pA,"").replace(fA,"").toLowerCase()}function rg(r){let e=tg.indexOf(r);return e===-1?tg.length:e}function ei(r,e){for(let t of e){let n=r[t];if(typeof n=="string")return n}}function ng(r,e){for(let t of e){let n=r[t];if(typeof n=="number")return n}}function sg(r){return typeof r=="object"&&r!==null}var Pr=class extends Error{code;constructor(e,t,n){super(t,n),this.name="ValidationError",this.code=e}},ag="deveco-codelinter-",cg=[".ets",".ts",".js"],ti=class r{resolution;cwd;toolProvider;constructor(e,t){this.toolProvider=e,this.resolution=r.resolveWithToolProvider(e),this.cwd=t}get supportsReportOptions(){return!this.resolution.isLegacyStudioArgs}static resolveProjectRoot(e){try{return W.discover(e).rootDir}catch{return e}}async check(e){let t=xt.mkdtempSync(M.join(Vl.tmpdir(),ag)),n=M.join(t,"report.json");try{let o=r.resolveProjectRoot(this.cwd),i=this.resolveLintTarget(e.lintPath,o),s=this.resolveConfigPath(e.configPath,i),a=this.buildNativeArgs(e,i.path,s,n,t,i.projectRoot??o),c=await this.run(a),l=og(c.stdout),d=l.diagnostics+Ul(c.stderr);try{let g=this.readJsonReport(n,l.jsonText);return{exitCode:c.exitCode,diagnostics:d,report:ig(g)}}catch(g){return{exitCode:c.exitCode,diagnostics:d,reportError:g}}}finally{this.removeTempDir(t)}}resolveLintTarget(e,t){let n=e?M.resolve(this.cwd,e):t,o=this.resolveRealPath(n,"Lint path"),i=xt.statSync(o);if(!i.isFile()&&!i.isDirectory())throw new Pr("errorCode",`Lint path must be a file or directory: ${n}`);if(i.isFile()){let a=M.extname(o).toLowerCase();if(!cg.some(l=>l===a))throw new Error(`Unsupported lint file extension "${a||"<none>"}": ${o}. Supported extensions: ${cg.join(", ")}.`)}let s=this.discoverProjectRoot(o,i.isDirectory());if(e!==void 0&&s===void 0)throw new Pr("errorCode",`Lint path is not in a valid project directory (project-level build-profile.json5 not found or invalid): ${o}`);return{path:o,projectRoot:s}}resolveConfigPath(e,t){let n=e?M.resolve(this.cwd,e):M.join(t.projectRoot??this.cwd,"code-linter.json5"),o=this.resolveRealPath(n,"`--config-path`");if(!xt.statSync(o).isFile())throw new Pr("errorCode",`--config-path must point to a file: ${n}`);if(t.projectRoot){let i=this.discoverProjectRoot(o,!1);if(i===void 0||M.relative(t.projectRoot,i)!=="")throw new Pr("errorCode",`\`--config-path\` must belong to the same project as the lint path. Lint project: ${t.projectRoot}; Config project: ${i??"not found"}.`)}return o}discoverProjectRoot(e,t){let n=t?e:M.dirname(e);try{return xt.realpathSync(W.discover(n).rootDir)}catch{return}}resolveRealPath(e,t){try{return xt.realpathSync(e)}catch(n){throw new Pr("errorCode",`${t} does not exist or cannot be resolved: ${e}`,{cause:n})}}buildNativeArgs(e,t,n,o,i,s){if(this.resolution.isLegacyStudioArgs)return this.buildLegacyNativeArgs(e,t,n,i,s);let a=["--config",n];return e.fix&&a.push("--fix"),e.incremental&&a.push("--incremental"),a.push("--product",e.product,"--format","json","--output",o,t),a}buildLegacyNativeArgs(e,t,n,o,i){let s=String(this.toolProvider.getMaxApiLevel()),a=this.toolProvider.getSdkPlatformVersion(),c=M.join(o,"check-paths.json");xt.writeFileSync(c,JSON.stringify([t]),"utf8");let l=["--dir",c,"--isTooManyFiles","true","--config",n,"--product",e.product,"--sdkPath",this.toolProvider.sdkPath,"--sdkNumberVersion",s,"--sdkStringVersion",a,"--project",i,"--logPath",M.join(o,"codelinter.log"),"--workdir",M.dirname(this.toolProvider.codelinterPath),"--inIde","true"];return e.fix&&l.push("--fix","true"),e.incremental&&l.push("--incremental","true"),l}async run(e){let t=this.resolution.isLegacyStudioArgs?[this.resolution.argsPrefix[0],...e]:[...this.resolution.argsPrefix,...e],n=this.resolution.workingDirectory??this.cwd;this.prepareRuntimeDirectories(),u(`Executing: ${this.resolution.command} ${t.join(" ")}`),u(`[CodelinterAdapter] Working directory: ${n}`);let o=await LA(this.resolution.command,t,{cwd:n,env:this.resolution.env,stdout:"pipe",stderr:"pipe",reject:!1});return{exitCode:o.exitCode??1,stdout:o.stdout,stderr:o.stderr}}prepareRuntimeDirectories(){for(let e of this.resolution.runtimeDirectories??[])xt.mkdirSync(e,{recursive:!0})}readJsonReport(e,t){let o=(xt.existsSync(e)?xt.readFileSync(e,"utf-8").trim():void 0)||t?.trim();if(!o)throw new Pr("errorCode","Native JSON report was not generated.");return JSON.parse(o)}removeTempDir(e){let t=M.resolve(e),n=M.resolve(Vl.tmpdir());!(t.startsWith(`${n}${M.sep}`)||t===n)||!M.basename(t).startsWith(ag)||xt.rmSync(t,{recursive:!0,force:!0})}static isModernStudioEntry(e){let t=["plugins","codelinter","run","index.js"],n=M.normalize(e).split(M.sep).slice(-t.length);return t.every((o,i)=>n[i]?.toLowerCase()===o)}static resolveWithToolProvider(e){let t=r.getSource(e),n=e.toolchainRoot,o=e.codelinterPath,i=e.sdkPath,s=r.getPathEntries(e,t),a=t==="ide"?"DevEco Studio":"DevEco Command Line Tools",c=t==="ide"&&!r.isModernStudioEntry(o),l={command:e.nodePath,argsPrefix:[o,i],env:{...process.env,PATH:[...s,process.env.PATH||""].join(M.delimiter),DEVECO_SDK_HOME:i},isLegacyStudioArgs:c};return t==="command-line-tools"&&(l.workingDirectory=n,l.runtimeDirectories=[r.getResultDirectory(o)]),u(`[CodelinterAdapter] Selected ${a} entry: ${o}`),l}static getPathEntries(e,t){let n=[M.dirname(e.nodePath)];return t==="ide"&&e.javaPath&&n.unshift(M.dirname(e.javaPath)),n}static getResultDirectory(e){return M.resolve(e,"..","linter","result")}static getSource(e){return e.sourceType==="studio"?"ide":"command-line-tools"}};import{red as pa,yellow as gg}from"colorette";import{Argument as WA,Command as VA,InvalidArgumentError as kr}from"commander";import ni from"fs";import*as We from"path";import*as ri from"path";var lg="n/a",dg=/\\/g,NA=/\|/g,MA=/\r?\n/g;function ug(r,e){if(r.issues.length===0)return`No defects found.
1334
+ ${Gl(r.summary)}
1335
+ `;let t=e===void 0?r.issues:r.issues.slice(0,e),n=[_A(t),Gl(r.summary)];return e!==void 0&&t.length<r.issues.length&&n.push(OA(r.issues.length,t.length)),`${n.join(`
1327
1336
  `)}
1328
- `}function vh(n,e){return[wl(n.summary),`Full report: ${bl(e)}`,""].join(`
1329
- `)}function wh(n){let e=["# CodeLinter report",""];return n.issues.length===0?e.push("No defects found.",""):e.push(...PI(n.issues),""),e.push("## Summary","",...kI(n.summary),""),e.join(`
1330
- `)}function bh(n){return`${JSON.stringify(n,null,2)}
1331
- `}function wl(n){return`Summary: Issues: ${at(n.issues)} | Errors: ${at(n.errors)} | Warnings: ${at(n.warnings)} | Suggestions: ${at(n.suggestions)} | Files checked: ${at(n.filesChecked)}`}function SI(n,e){return`Showing ${at(e)} of ${at(n)} issues. Use --output-path <path> to write all results.`}function EI(n){let e=["No","File","Line","Column","Severity","Rule","Message"],t=n.map((r,i)=>({cells:AI(r,i+1)}));return["CodeLinter report","",Rt(e,t)].join(`
1332
- `)}function PI(n){let e=["| No | File | Line | Column | Severity | Rule | Message |","| ---: | --- | ---: | ---: | --- | --- | --- |"];for(let[t,r]of n.entries())e.push(CI(r,t+1));return e}function CI(n,e){return`| ${[String(e),bl(vn(n.file)),Gs(n.line),Gs(n.column),vn(n.severity),vn(n.rule),vn(n.message)].map(II).join(" | ")} |`}function kI(n){return[`- Issues: ${at(n.issues)}`,`- Errors: ${at(n.errors)}`,`- Warnings: ${at(n.warnings)}`,`- Suggestions: ${at(n.suggestions)}`,`- Files checked: ${at(n.filesChecked)}`]}function II(n){return n.replace(gh,"\\\\").replace(wI,"\\|").replace(bI,"<br>")}function AI(n,e){return[String(e),bl(vn(DI(n.file))),Gs(n.line),Gs(n.column),vn(n.severity),vn(n.rule),vn(n.message)]}function DI(n){if(!Hi.isAbsolute(n))return n;let e=Hi.relative(process.cwd(),n);return!e||e.startsWith("..")||Hi.isAbsolute(e)?n:e}function bl(n){return n.replace(gh,"/")}function vn(n){let e=n?.trim();return e||hh}function Gs(n){return n===void 0?hh:String(n)}function at(n){return n.toLocaleString("en-US")}var Sl=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function xI(n){let e=n;return n instanceof Sl?n.code:e.code??e.name??"UnknownError"}async function Sh(n,e,t,r){let i=await Xe(process.pid),o=i!==null?ce(Number(i)*1024):"unknown",s={event:b.CheckCommand,args:r,mcpMemory:o,lspMemory:"unknown"},a={duration_ms:Date.now()-n,success:e,error_code:t};await I.track(s,a).catch(()=>{})}var LI=/^-?\d+$/;function El(){return new TI("lint").description("Run DevEco Code Linter checks for TS/ArkTS code").helpOption("-h, --help","display help for command").addArgument(new RI("[path]","File or directory to lint").argParser(jI)).option("--fix","Auto-fix fixable code issues").option("--incremental","Only check uncommitted files").option("--config-path <path>","Path to lint configuration file",OI).option("--product <product>","Product name defined in build-profile.json5",MI,"default").option("--format <format>","Report format (choices: default, json)",NI,"default").option("--output-path <path>","Complete report file or directory",_I).option("--limit <number>","Maximum terminal issues to display when --output-path is omitted",FI).action($I)}function NI(n){if(n==="default"||n==="json")return n;throw new wn("Invalid --format. Expected one of: default, json.")}function OI(n){Pl(n,"--config-path");let e=je.extname(n).toLowerCase();if(e!==".json"&&e!==".json5")throw new wn("`--config-path` must point to a .json or .json5 file.");return n}function MI(n){return Ph(n,"product"),n}function _I(n){return Pl(n,"--output-path"),n}function jI(n){return Pl(n,"path"),n}function FI(n){if(Ph(n,"limit"),!LI.test(n))throw new wn("`--limit` must be a positive integer.");let e=Number.parseInt(n,10);if(e<=0||!Number.isSafeInteger(e))throw new wn("`--limit` must be an integer greater than 0.");return e}function Ph(n,e){if(n.trim().length===0||Ih(n))throw new wn(`Invalid --${e} value.`)}function Pl(n,e){let t=`\`${e}\``;if(n.length===0||Ih(n))throw new wn(`${t} must be a non-empty path without control characters.`)}async function $I(n,e,t){let r=Date.now(),i=["check","lint"];try{let o=process.cwd(),s=await A.new(),a=new $i(s,o),c=WI(s,a,t,e),l=GI(c.outputPath,c.format,o);e.fix&&console.warn(Eh("Running codelinter with --fix. Ensure your project source is trusted."));let d=await HI(a,n,e);XI(d.diagnostics),process.exitCode=VI(d,l,c.format,e.limit,o),await Sh(r,!0,null,i)}catch(o){let s=xI(o);throw await Sh(r,!1,s,i),o}}async function HI(n,e,t){return BI(n,{lintPath:e,configPath:t.configPath,product:t.product,fix:t.fix,incremental:t.incremental})}function UI(n){return[["format","--format"],["outputPath","--output-path"]].filter(([e])=>n.getOptionValueSource(e)==="cli").map(([,e])=>e)}function WI(n,e,t,r){let i=UI(t);if(i.length===0||e.supportsReportOptions)return r;let o=Vt(n.toolchainRoot),s=i.length===1?"option":"options";return console.warn(Eh(`Warning: The detected DevEco Studio version is: ${o??"unknown"}. The bundled legacy Code Linter does not support ${s}: ${i.join(", ")}. Action: ignore the unsupported ${s} and continue the lint check with default terminal output.`)),{format:i.includes("--format")?"default":r.format,outputPath:i.includes("--output-path")?void 0:r.outputPath}}async function BI(n,e){let t=new dt;process.stderr.isTTY&&t.start("Checking code...");try{let r=await n.check(e);return t.stop(),r}catch(r){throw t.fail("Code check failed"),r}}function VI(n,e,t,r,i){if(!n.report)return console.error(zs("Failed to generate Code Linter report.")),console.error(zs(n.reportError?.message??"Native JSON report was not generated.")),n.exitCode===0?1:n.exitCode;try{if(e){qI(e,t,n.report);let o=kh(e,i);process.stdout.write(vh(n.report,o))}else process.stdout.write(yh(n.report,r));return n.exitCode}catch(o){return console.error(zs("Failed to generate Code Linter report.")),console.error(zs(o.message)),n.exitCode===0?1:n.exitCode}}function qI(n,e,t){Ui.mkdirSync(je.dirname(n),{recursive:!0});let r=e==="json"?bh(t):wh(t);try{Ui.writeFileSync(n,r,{encoding:"utf-8",flag:"wx"})}catch(i){throw i.code==="EEXIST"?new Error(`Output file already exists: ${n}`,{cause:i}):i}}function GI(n,e,t){if(!n)return;let r=YI(n,t),i=JI(n,r),o=i?je.join(r,KI(e)):r;if(i||zI(n,e),Ui.existsSync(o))throw new wn(`Output file already exists: ${kh(o,t)}`);return o}function zI(n,e){let t=Ch(e);if(je.extname(n).toLowerCase()!==t)throw new wn(`--output-path must use the ${t} extension for --format ${e}.`)}function JI(n,e){return Ui.existsSync(e)?Ui.statSync(e).isDirectory():n.endsWith("/")||n.endsWith("\\")||je.extname(n)===""}function YI(n,e){return je.resolve(e,n)}function KI(n){let e=new Date,t=[e.getFullYear(),e.getMonth()+1,e.getDate()].map((o,s)=>String(o).padStart(s===0?4:2,"0")).join(""),r=[e.getHours(),e.getMinutes(),e.getSeconds()].map(o=>String(o).padStart(2,"0")).join(""),i=String(e.getMilliseconds()).padStart(3,"0");return`${t}-${r}-${i}${Ch(n)}`}function Ch(n){return n==="json"?".json":".md"}function kh(n,e){let t=je.relative(e,n);return t&&!t.startsWith("..")&&!je.isAbsolute(t)?t:n}function XI(n){n&&process.stderr.write(n)}function Ih(n){for(let e of n){let t=e.charCodeAt(0);if(t<=31||t===127)return!0}return!1}import{InvalidArgumentError as ZI}from"commander";import*as q from"path";import*as Cl from"os";import{readdirSync as QI,existsSync as Js,readFileSync as eA,unlinkSync as tA,copyFileSync as Th,writeFileSync as xh}from"fs";import{execa as nA}from"execa";import{cyan as he,yellow as Lh}from"colorette";import rA from"ora";var ee=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function kl(n){let e=n;return n instanceof ee?n.code:e.code??e.name??"UnknownError"}async function Hr(n,e,t,r){let i=await Xe(process.pid),o=i!==null?ce(Number(i)*1024):"unknown",s={event:b.CheckCommand,args:r,mcpMemory:o,lspMemory:"unknown"},a={duration_ms:Date.now()-n,success:e,error_code:t};await I.track(s,a).catch(()=>{})}var iA=["default","csv","json"],Ah=["default","json"];function oA(n){return[...n].sort((e,t)=>{let r=Dh(e),i=Dh(t);return r.apiVersion-i.apiVersion||r.suffix.localeCompare(i.suffix)})}function Dh(n){let e=n.match(/\((\d+)\)/),t=e?Number(e[1]):0,r=n.lastIndexOf("_"),i=r>=0?n.slice(r+1):n;return{apiVersion:t,suffix:i}}function Nh(n){let t=QI(n,{withFileTypes:!0}).filter(r=>r.isFile()&&r.name.toLowerCase().endsWith(".json")).map(r=>r.name.slice(0,-5));return oA(t)}async function Oh(n){if(n=n===void 0?"default":n,!Ah.includes(n))throw new Error(`--format must be ${Ah.join(" or ")}. got "${n}"`);let e=Date.now(),t=["check","compat","versions"];try{let r=await A.new(),{apiChangeDir:i}=r.getApiscanPaths();p(he(`[compat:versions] apiChangeDir: "${i}"`));let o=Nh(i);if(n==="json")console.log(JSON.stringify({versions:o,count:o.length},null,2));else{if(o.length===0){console.log("No SDK versions available."),await Hr(e,!0,null,t);return}console.log(o.join(`
1333
- `))}await Hr(e,!0,null,t)}catch(r){let i=kl(r);throw await Hr(e,!1,i,t),r}}var Rh=new Set([".ets",".c",".cpp"]);function sA(n,e){let t=new Set(n.profile.modules.map(s=>s.name)),r=e.filter(s=>!t.has(s));if(r.length===0)return;let i=n.profile.modules.map(s=>s.name).join(", "),o=r.length>1?"are":"is";throw new ee("errorCode",`Module ${r.map(s=>`"${s}"`).join(", ")} ${o} not defined in build-profile.json5. Available modules: ${i}.`)}function aA(n){for(let e of n){let t=q.resolve(e);if(!Js(t))throw new ee("errorCode",`File "${e}" does not exist.`);let r=q.extname(t).toLowerCase();if(!Rh.has(r)){let i=Array.from(Rh).join(", ");throw new ee("errorCode",`Unsupported file extension "${r}" for "${e}". Supported: ${i}.`)}}}function cA(n){let e=[],t=[];for(let r of n)q.extname(r).toLowerCase()===".ets"?e.push(r):t.push(r);return{arkTs:e,cpp:t}}function lA(n){let e=[],t=[],r="",i=!1,o=0;for(;o<n.length;){let s=n[o];i?{field:r,inQuotes:i,i:o}=dA(n,o,s,r,i):s==='"'?(i=!0,o+=1):s===","?(t.push(r),r="",o+=1):s===`
1334
- `?(t.push(r),e.push(t),t=[],r="",o+=1):(s==="\r"||(r+=s),o+=1)}return(r.length>0||t.length>0)&&(t.push(r),e.push(t)),e}function dA(n,e,t,r,i){return t!=='"'?{field:r+t,inQuotes:i,i:e+1}:n[e+1]==='"'?{field:r+'"',inQuotes:i,i:e+2}:{field:r,inQuotes:!1,i:e+1}}function uA(n,e){return e.map(t=>{let r=i=>{let o=n.indexOf(i);return o>=0&&o<t.length?t[o]:""};return{apiDefinition:r("Api Definition"),language:r("Language"),changeId:r("ChangeId"),changedInSdk:r("Changed in SDK"),affectedVersions:r("Affected Versions"),title:r("Title"),codeLocation:r("Code Location"),changeType:r("Change Type")}})}function pA(n){let e=eA(n,"utf8"),t=e.startsWith("\uFEFF")?e.slice(1):e,r=lA(t);if(r.length<2)return[];let[i,...o]=r;return uA(i,o)}function fA(n,e){let t=n.match(/CSV saved to:\s*([^\r\n]+\.csv)/);if(!t)return null;let r=t[1].trim();if(q.isAbsolute(r))return r;let i=q.join(e,r);return S.ensurePathWithinRoot(e,i)}function mA(n,e){let t=new Map;for(let o of n){let s=o.changeType||"(unknown)";t.set(s,(t.get(s)??0)+1)}let r=Array.from(t.entries()).sort((o,s)=>s[1]-o[1]||o[0].localeCompare(s[0])),i=Math.max(5,...r.map(([o])=>o.length));console.log(he("API change scan summary:")),console.log(` ${"Total".padEnd(i)} ${n.length}`);for(let[o,s]of r)console.log(` ${o.padEnd(i)} ${s}`);e&&console.log(` ${"Report".padEnd(i)} ${e}`)}function hA(n,e){if(console.log(),n.length===0){console.log("No API changes detected.");return}let t=n.slice(0,e),r=n.length-t.length;console.log(he(`Details (showing ${t.length}${r>0?` of ${n.length}`:""}):`));let i=[["Title","title"],["Language","language"],["ChangeId","changeId"],["Changed in","changedInSdk"],["Affected Versions","affectedVersions"],["Code Location","codeLocation"]],o=Math.max(...i.map(([a])=>a.length)),s=a=>a||"<unknown>";for(let a of t){console.log(` [${s(a.changeType)}] ${s(a.apiDefinition)}`);for(let[c,l]of i)console.log(` ${c.padEnd(o)} ${s(a[l])}`)}r>0&&console.log(Lh(` ... and ${r} more. you can re-run with --output-path <dir> to save the full report.`))}function gA(n,e){let t=n.slice(0,e),r=n.length-t.length;console.log(),console.log(JSON.stringify({records:t,count:n.length},null,2)),r>0&&console.log(Lh(`... and ${r} more. you can re-run with --output-path <dir> to save the full report.`))}function yA(n,e){let t=[];for(let r of e){let i=n.profile.modules.find(o=>o.name===r);if(!i)throw new ee("errorCode",`Module "${r}" not found in build-profile.json5.`);t.push(q.resolve(n.rootDir,i.srcPath))}return t}function vA(n,e,t,r){if(!r.sourceVersion||!r.targetVersion)throw new ee("errorCode","source-version and target-version are required.");let i=[n,"--startVersion",r.sourceVersion,"--endVersion",r.targetVersion];if(e.length>0){let{arkTs:o,cpp:s}=cA(e),a=d=>q.resolve(process.cwd(),d),c=o.map(a),l=s.map(a);c.length>0&&i.push("--arkTsFiles",c.join(",")),l.length>0&&i.push("--cppFiles",l.join(","))}else if(r.modules&&r.modules.length>0){let o=yA(t,r.modules);i.push("--modulePaths",o.join(","))}else i.push("--projectPath",t.rootDir);return i.push("--outputPath",Cl.tmpdir()),i}async function wA(n,e){let t=q.dirname(e[0]);try{let i=(await nA(n.nodePath,e,{cwd:t,stdin:"ignore",stdout:"pipe",stderr:"inherit"})).stdout;return process.env.DEVECO_CLI_DEBUG&&(console.log(he("[compat:check] === scan stdout ===")),process.stdout.write(i),i.endsWith(`
1337
+ `}function pg(r,e){return[Gl(r.summary),`Full report: ${ql(e)}`,""].join(`
1338
+ `)}function fg(r){let e=["# CodeLinter report",""];return r.issues.length===0?e.push("No defects found.",""):e.push(...jA(r.issues),""),e.push("## Summary","",...$A(r.summary),""),e.join(`
1339
+ `)}function mg(r){return`${JSON.stringify(r,null,2)}
1340
+ `}function Gl(r){return`Summary: Issues: ${pt(r.issues)} | Errors: ${pt(r.errors)} | Warnings: ${pt(r.warnings)} | Suggestions: ${pt(r.suggestions)} | Files checked: ${pt(r.filesChecked)}`}function OA(r,e){return`Showing ${pt(e)} of ${pt(r)} issues. Use --output-path <path> to write all results.`}function _A(r){let e=["No","File","Line","Column","Severity","Rule","Message"],t=r.map((n,o)=>({cells:UA(n,o+1)}));return["CodeLinter report","",Ft(e,t)].join(`
1341
+ `)}function jA(r){let e=["| No | File | Line | Column | Severity | Rule | Message |","| ---: | --- | ---: | ---: | --- | --- | --- |"];for(let[t,n]of r.entries())e.push(FA(n,t+1));return e}function FA(r,e){return`| ${[String(e),ql(Cr(r.file)),ua(r.line),ua(r.column),Cr(r.severity),Cr(r.rule),Cr(r.message)].map(HA).join(" | ")} |`}function $A(r){return[`- Issues: ${pt(r.issues)}`,`- Errors: ${pt(r.errors)}`,`- Warnings: ${pt(r.warnings)}`,`- Suggestions: ${pt(r.suggestions)}`,`- Files checked: ${pt(r.filesChecked)}`]}function HA(r){return r.replace(dg,"\\\\").replace(NA,"\\|").replace(MA,"<br>")}function UA(r,e){return[String(e),ql(Cr(BA(r.file))),ua(r.line),ua(r.column),Cr(r.severity),Cr(r.rule),Cr(r.message)]}function BA(r){if(!ri.isAbsolute(r))return r;let e=ri.relative(process.cwd(),r);return!e||e.startsWith("..")||ri.isAbsolute(e)?r:e}function ql(r){return r.replace(dg,"/")}function Cr(r){let e=r?.trim();return e||lg}function ua(r){return r===void 0?lg:String(r)}function pt(r){return r.toLocaleString("en-US")}var zl=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function GA(r){let e=r;return r instanceof zl?r.code:e.code??e.name??"UnknownError"}async function hg(r,e,t,n){let o=await je(process.pid),i=o!==null?Q(Number(o)*1024):"unknown",s={event:b.CheckCommand,args:n,mcpMemory:i,lspMemory:"unknown"},a={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(s,a).catch(()=>{})}var qA=/^-?\d+$/;function Jl(){return new VA("lint").description("Run DevEco Code Linter checks for TS/ArkTS code").helpOption("-h, --help","display help for command").addArgument(new WA("[path]","File or directory to lint").argParser(XA)).option("--fix","Auto-fix fixable code issues").option("--incremental","Only check uncommitted files").option("--config-path <path>","Path to lint configuration file",JA).option("--product <product>","Product name defined in build-profile.json5",YA,"default").option("--format <format>","Report format (choices: default, json)",zA,"default").option("--output-path <path>","Complete report file or directory",KA).option("--limit <number>","Maximum terminal issues to display when --output-path is omitted",ZA).action(QA)}function zA(r){if(r==="default"||r==="json")return r;throw new kr("Invalid --format. Expected one of: default, json.")}function JA(r){Yl(r,"--config-path");let e=We.extname(r).toLowerCase();if(e!==".json"&&e!==".json5")throw new kr("`--config-path` must point to a .json or .json5 file.");return r}function YA(r){return yg(r,"product"),r}function KA(r){return Yl(r,"--output-path"),r}function XA(r){return Yl(r,"path"),r}function ZA(r){if(yg(r,"limit"),!qA.test(r))throw new kr("`--limit` must be a positive integer.");let e=Number.parseInt(r,10);if(e<=0||!Number.isSafeInteger(e))throw new kr("`--limit` must be an integer greater than 0.");return e}function yg(r,e){if(r.trim().length===0||bg(r))throw new kr(`Invalid --${e} value.`)}function Yl(r,e){let t=`\`${e}\``;if(r.length===0||bg(r))throw new kr(`${t} must be a non-empty path without control characters.`)}async function QA(r,e,t){let n=Date.now(),o=["check","lint"];try{let i=process.cwd(),s=await A.new(),a=new ti(s,i),c=rD(s,a,t,e),l=sD(c.outputPath,c.format,i);e.fix&&console.warn(gg("Running codelinter with --fix. Ensure your project source is trusted."));let d=await eD(a,r,e);uD(d.diagnostics),process.exitCode=oD(d,l,c.format,e.limit,i),await hg(n,!0,null,o)}catch(i){let s=GA(i);throw await hg(n,!1,s,o),i}}async function eD(r,e,t){return nD(r,{lintPath:e,configPath:t.configPath,product:t.product,fix:t.fix,incremental:t.incremental})}function tD(r){return[["format","--format"],["outputPath","--output-path"]].filter(([e])=>r.getOptionValueSource(e)==="cli").map(([,e])=>e)}function rD(r,e,t,n){let o=tD(t);if(o.length===0||e.supportsReportOptions)return n;let i=Xt(r.toolchainRoot),s=o.length===1?"option":"options";return console.warn(gg(`Warning: The detected DevEco Studio version is: ${i??"unknown"}. The bundled legacy Code Linter does not support ${s}: ${o.join(", ")}. Action: ignore the unsupported ${s} and continue the lint check with default terminal output.`)),{format:o.includes("--format")?"default":n.format,outputPath:o.includes("--output-path")?void 0:n.outputPath}}async function nD(r,e){let t=new Ke;process.stderr.isTTY&&t.start("Checking code...");try{let n=await r.check(e);return t.stop(),n}catch(n){throw t.fail("Code check failed"),n}}function oD(r,e,t,n,o){if(!r.report)return console.error(pa("Failed to generate Code Linter report.")),console.error(pa(r.reportError?.message??"Native JSON report was not generated.")),r.exitCode===0?1:r.exitCode;try{if(e){iD(e,t,r.report);let i=wg(e,o);process.stdout.write(pg(r.report,i))}else process.stdout.write(ug(r.report,n));return r.exitCode}catch(i){return console.error(pa("Failed to generate Code Linter report.")),console.error(pa(i.message)),r.exitCode===0?1:r.exitCode}}function iD(r,e,t){ni.mkdirSync(We.dirname(r),{recursive:!0});let n=e==="json"?mg(t):fg(t);try{ni.writeFileSync(r,n,{encoding:"utf-8",flag:"wx"})}catch(o){throw o.code==="EEXIST"?new Error(`Output file already exists: ${r}`,{cause:o}):o}}function sD(r,e,t){if(!r)return;let n=lD(r,t),o=cD(r,n),i=o?We.join(n,dD(e)):n;if(o||aD(r,e),ni.existsSync(i))throw new kr(`Output file already exists: ${wg(i,t)}`);return i}function aD(r,e){let t=vg(e);if(We.extname(r).toLowerCase()!==t)throw new kr(`--output-path must use the ${t} extension for --format ${e}.`)}function cD(r,e){return ni.existsSync(e)?ni.statSync(e).isDirectory():r.endsWith("/")||r.endsWith("\\")||We.extname(r)===""}function lD(r,e){return We.resolve(e,r)}function dD(r){let e=new Date,t=[e.getFullYear(),e.getMonth()+1,e.getDate()].map((i,s)=>String(i).padStart(s===0?4:2,"0")).join(""),n=[e.getHours(),e.getMinutes(),e.getSeconds()].map(i=>String(i).padStart(2,"0")).join(""),o=String(e.getMilliseconds()).padStart(3,"0");return`${t}-${n}-${o}${vg(r)}`}function vg(r){return r==="json"?".json":".md"}function wg(r,e){let t=We.relative(e,r);return t&&!t.startsWith("..")&&!We.isAbsolute(t)?t:r}function uD(r){r&&process.stderr.write(r)}function bg(r){for(let e of r){let t=e.charCodeAt(0);if(t<=31||t===127)return!0}return!1}import{execa as pD}from"execa";import Jt from"fs";import fD from"os";import*as G from"path";import{fileURLToPath as mD}from"url";var Sg=G.join("resources","arkts-check.cjs"),oi=class{toolProvider;cwd;constructor(e,t){this.toolProvider=e,this.cwd=t}async check(e){let t=this.resolveProjectRoot(e.projectRoot,e.files),n=this.resolveFiles(t,e.files),o=this.resolveScriptPath(),i=this.buildArgs(o,t,n,e.fix),s=this.buildEnv();u(`Executing: ${this.toolProvider.nodePath} ${i.join(" ")}`);let a=await pD(this.toolProvider.nodePath,i,{cwd:t,env:s,stdout:"pipe",stderr:"pipe",reject:!1});return this.parseResult(a.stdout,a.stderr,a.exitCode??1)}resolveProjectRoot(e,t){if(e){let o=G.resolve(this.cwd,e);if(!Jt.existsSync(o))throw new Error(`Project path not found: ${o}`);if(Jt.statSync(o).isFile()){let s=this.discoverRootFrom(G.dirname(o));if(s)return s;throw new Error(`--project path is a file, not a project root: ${o}
1342
+ Could not find a project-level build-profile.json5 above it. Pass the project root directory instead.`)}if(this.discoverRootFrom(o)!==o)throw new Error(`Not a valid Harmony project root: ${o}
1343
+ (project-level build-profile.json5 not found).`);return o}if(t&&t.length>0)for(let o of t){let i=G.isAbsolute(o)?o:G.resolve(this.cwd,o),s=this.discoverRootFrom(G.dirname(i));if(s)return s}let n=this.discoverRootFrom(this.cwd);if(n)return n;throw new Error("Not in a valid Harmony project directory (project-level build-profile.json5 not found). Run this command inside a project, or pass --project <path>.")}discoverRootFrom(e){try{return W.discover(e).rootDir}catch{return}}resolveFiles(e,t){if(t.length===0)return[];let n=t.map(a=>{if(G.isAbsolute(a))return a;let c=G.resolve(this.cwd,a);return Jt.existsSync(c)?c:G.resolve(e,a)}),o=n.filter(a=>!Jt.existsSync(a));if(o.length>0)throw new Error(`File(s) not found:
1344
+ `+o.map(a=>` ${a}`).join(`
1345
+ `));let i=n.filter(a=>{let c=G.relative(e,a);return c.startsWith("..")||G.isAbsolute(c)});if(i.length>0)throw new Error(`File(s) outside the project root ${e}:
1346
+ `+i.map(a=>` ${a}`).join(`
1347
+ `));let s=n.filter(a=>Jt.statSync(a).isFile()&&a.endsWith(".ets")&&!a.endsWith(".d.ets"));if(s.length===0)throw new Error(`No .ets files found in the given file(s):
1348
+ `+n.map(a=>` ${a}`).join(`
1349
+ `));return s}buildArgs(e,t,n,o){let i=[e,"--project",t];return i.push(o?"--fix":"--no-fix"),n.length>0&&i.push("--files",...n),i}buildEnv(){return{...process.env,DEVECO_HOME:this.resolveDevecoHome()}}resolveDevecoHome(){let e=this.toolProvider.toolchainRoot;if(fD.platform()==="darwin"&&!Jt.existsSync(G.join(e,"sdk"))){let t=G.join(e,"Contents");if(Jt.existsSync(G.join(t,"sdk")))return t}return e}parseResult(e,t,n){let o=e.trim();if(!o){let i=t.trim();throw new Error(`arkts-check exited with code ${n} but produced no output`+(i?`: ${i}`:""))}try{let i=JSON.parse(o);return{success:i.success??!1,error:i.error,errors:i.errors??[],fixed:i.fixed??[],alsoModified:i.alsoModified??[],summary:{errorCount:i.summary?.errorCount??0,warnCount:i.summary?.warnCount??0,fixedCount:i.summary?.fixedCount??0,checkerDiagCount:i.summary?.checkerDiagCount,fileCount:i.summary?.fileCount??0}}}catch(i){throw new Error(`Failed to parse arkts-check output: ${o.slice(0,500)}`,{cause:i})}}resolveScriptPath(){let e=mD(import.meta.url),t=G.dirname(e);if(e.includes("dist")){let s=G.dirname(t),a=G.join(s,"src",Sg);if(Jt.existsSync(a))return a}let n=G.dirname(t),o=G.dirname(n),i=G.join(o,"src",Sg);if(Jt.existsSync(i))return i;throw new Error("arkts-check.cjs not found in deveco-cli package resources. Reinstall deveco-cli.")}};import{red as Xl,yellow as Zl,green as Eg}from"colorette";import{Command as hD}from"commander";function gD(r){let e=r;return e.code??e.name??"UnknownError"}async function Kl(r,e,t,n){let o=await je(process.pid),i=o!==null?Q(Number(o)*1024):"unknown",s={event:b.CheckCommand,args:n,mcpMemory:i,lspMemory:"unknown"},a={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(s,a).catch(()=>{})}function Ql(){return new hD("arkts").description("Run ArkTS static checks on .ets source files").arguments("[files...]").option("--fix","Auto-fix high-confidence errors before reporting").option("--project <path>","Project root directory (default: auto-detected from cwd)").action(async(r,e)=>{await yD(r,e)})}async function yD(r,e){let t=Date.now(),n=["check","arkts"];try{let o=await A.new(),i=new oi(o,process.cwd()),s=new Ke;process.stderr.isTTY&&s.start("Checking ArkTS...");let a;try{a=await i.check({files:r,fix:e.fix,projectRoot:e.project})}catch(c){throw s.fail("ArkTS check failed"),c}if(a.error&&a.errors.length===0){s.fail("ArkTS check failed"),console.error(Xl(a.error)),process.exitCode=1,await Kl(t,!1,"CheckFailed",n);return}s.stop(),vD(a),await Kl(t,!0,null,n)}catch(o){throw await Kl(t,!1,gD(o),n),o}}function vD(r){let{errorCount:e,warnCount:t,fixedCount:n,fileCount:o}=r.summary;if(wD(r.fixed,n,r.alsoModified),e===0){console.log(Eg(`No errors found in ${o} file(s).`)),Pg(r.errors);return}bD(r.errors,e,t),process.exitCode=1}function wD(r,e,t){if(r.length!==0){console.log(Eg(`\u2713 Auto-fixed ${e} issue(s):`));for(let n of r)console.log(` ${n.file}:${n.line}:${n.column} - ${n.message}`);if(t.length>0){console.log(Zl(`Note: auto-fix also modified ${t.length} file(s) outside the checked list (added missing 'export'):`));for(let n of t)console.log(` ${n}`)}console.log()}}function bD(r,e,t){let n=r.filter(o=>o.severity==="error");console.error(Xl(`ArkTS check found ${e} error(s):`));for(let o of n){let i=o.rule?` (${o.rule})`:"";console.error(Xl(`${o.file}:${o.line}:${o.column} - ${o.severity}: ${o.message}${i}`))}Pg(r,t)}function Pg(r,e){let t=r.filter(o=>o.severity!=="error");if(t.length===0)return;let n=e??t.length;console.warn(Zl(`
1350
+ Warnings (${n}):`));for(let o of t){let i=o.rule?` (${o.rule})`:"";console.warn(Zl(`${o.file}:${o.line}:${o.column} - ${o.severity}: ${o.message}${i}`))}}import{InvalidArgumentError as SD}from"commander";import*as J from"path";import*as ed from"os";import{readdirSync as ED,existsSync as fa,readFileSync as PD,unlinkSync as CD,copyFileSync as Ag,writeFileSync as Dg}from"fs";import{execa as kD}from"execa";import{cyan as ve,yellow as Rg}from"colorette";import ID from"ora";var oe=class extends Error{code;constructor(e,t){super(t),this.name="ValidationError",this.code=e}};function td(r){let e=r;return r instanceof oe?r.code:e.code??e.name??"UnknownError"}async function Jn(r,e,t,n){let o=await je(process.pid),i=o!==null?Q(Number(o)*1024):"unknown",s={event:b.CheckCommand,args:n,mcpMemory:i,lspMemory:"unknown"},a={duration_ms:Date.now()-r,success:e,error_code:t};await I.track(s,a).catch(()=>{})}var AD=["default","csv","json"],Cg=["default","json"];function DD(r){return[...r].sort((e,t)=>{let n=kg(e),o=kg(t);return n.apiVersion-o.apiVersion||n.suffix.localeCompare(o.suffix)})}function kg(r){let e=r.match(/\((\d+)\)/),t=e?Number(e[1]):0,n=r.lastIndexOf("_"),o=n>=0?r.slice(n+1):r;return{apiVersion:t,suffix:o}}function Tg(r){let t=ED(r,{withFileTypes:!0}).filter(n=>n.isFile()&&n.name.toLowerCase().endsWith(".json")).map(n=>n.name.slice(0,-5));return DD(t)}async function xg(r){if(r=r===void 0?"default":r,!Cg.includes(r))throw new Error(`--format must be ${Cg.join(" or ")}. got "${r}"`);let e=Date.now(),t=["check","compat","versions"];try{let n=await A.new(),{apiChangeDir:o}=n.getApiscanPaths();u(ve(`[compat:versions] apiChangeDir: "${o}"`));let i=Tg(o);if(r==="json")console.log(JSON.stringify({versions:i,count:i.length},null,2));else{if(i.length===0){console.log("No SDK versions available."),await Jn(e,!0,null,t);return}console.log(i.join(`
1351
+ `))}await Jn(e,!0,null,t)}catch(n){let o=td(n);throw await Jn(e,!1,o,t),n}}var Ig=new Set([".ets",".c",".cpp"]);function RD(r,e){let t=new Set(r.profile.modules.map(s=>s.name)),n=e.filter(s=>!t.has(s));if(n.length===0)return;let o=r.profile.modules.map(s=>s.name).join(", "),i=n.length>1?"are":"is";throw new oe("errorCode",`Module ${n.map(s=>`"${s}"`).join(", ")} ${i} not defined in build-profile.json5. Available modules: ${o}.`)}function TD(r){for(let e of r){let t=J.resolve(e);if(!fa(t))throw new oe("errorCode",`File "${e}" does not exist.`);let n=J.extname(t).toLowerCase();if(!Ig.has(n)){let o=Array.from(Ig).join(", ");throw new oe("errorCode",`Unsupported file extension "${n}" for "${e}". Supported: ${o}.`)}}}function xD(r){let e=[],t=[];for(let n of r)J.extname(n).toLowerCase()===".ets"?e.push(n):t.push(n);return{arkTs:e,cpp:t}}function LD(r){let e=[],t=[],n="",o=!1,i=0;for(;i<r.length;){let s=r[i];o?{field:n,inQuotes:o,i}=ND(r,i,s,n,o):s==='"'?(o=!0,i+=1):s===","?(t.push(n),n="",i+=1):s===`
1352
+ `?(t.push(n),e.push(t),t=[],n="",i+=1):(s==="\r"||(n+=s),i+=1)}return(n.length>0||t.length>0)&&(t.push(n),e.push(t)),e}function ND(r,e,t,n,o){return t!=='"'?{field:n+t,inQuotes:o,i:e+1}:r[e+1]==='"'?{field:n+'"',inQuotes:o,i:e+2}:{field:n,inQuotes:!1,i:e+1}}function MD(r,e){return e.map(t=>{let n=o=>{let i=r.indexOf(o);return i>=0&&i<t.length?t[i]:""};return{apiDefinition:n("Api Definition"),language:n("Language"),changeId:n("ChangeId"),changedInSdk:n("Changed in SDK"),affectedVersions:n("Affected Versions"),title:n("Title"),codeLocation:n("Code Location"),changeType:n("Change Type")}})}function OD(r){let e=PD(r,"utf8"),t=e.startsWith("\uFEFF")?e.slice(1):e,n=LD(t);if(n.length<2)return[];let[o,...i]=n;return MD(o,i)}function _D(r,e){let t=r.match(/CSV saved to:\s*([^\r\n]+\.csv)/);if(!t)return null;let n=t[1].trim();if(J.isAbsolute(n))return n;let o=J.join(e,n);return S.ensurePathWithinRoot(e,o)}function jD(r,e){let t=new Map;for(let i of r){let s=i.changeType||"(unknown)";t.set(s,(t.get(s)??0)+1)}let n=Array.from(t.entries()).sort((i,s)=>s[1]-i[1]||i[0].localeCompare(s[0])),o=Math.max(5,...n.map(([i])=>i.length));console.log(ve("API change scan summary:")),console.log(` ${"Total".padEnd(o)} ${r.length}`);for(let[i,s]of n)console.log(` ${i.padEnd(o)} ${s}`);e&&console.log(` ${"Report".padEnd(o)} ${e}`)}function FD(r,e){if(console.log(),r.length===0){console.log("No API changes detected.");return}let t=r.slice(0,e),n=r.length-t.length;console.log(ve(`Details (showing ${t.length}${n>0?` of ${r.length}`:""}):`));let o=[["Title","title"],["Language","language"],["ChangeId","changeId"],["Changed in","changedInSdk"],["Affected Versions","affectedVersions"],["Code Location","codeLocation"]],i=Math.max(...o.map(([a])=>a.length)),s=a=>a||"<unknown>";for(let a of t){console.log(` [${s(a.changeType)}] ${s(a.apiDefinition)}`);for(let[c,l]of o)console.log(` ${c.padEnd(i)} ${s(a[l])}`)}n>0&&console.log(Rg(` ... and ${n} more. you can re-run with --output-path <dir> to save the full report.`))}function $D(r,e){let t=r.slice(0,e),n=r.length-t.length;console.log(),console.log(JSON.stringify({records:t,count:r.length},null,2)),n>0&&console.log(Rg(`... and ${n} more. you can re-run with --output-path <dir> to save the full report.`))}function HD(r,e){let t=[];for(let n of e){let o=r.profile.modules.find(i=>i.name===n);if(!o)throw new oe("errorCode",`Module "${n}" not found in build-profile.json5.`);t.push(J.resolve(r.rootDir,o.srcPath))}return t}function UD(r,e,t,n){if(!n.sourceVersion||!n.targetVersion)throw new oe("errorCode","source-version and target-version are required.");let o=[r,"--startVersion",n.sourceVersion,"--endVersion",n.targetVersion];if(e.length>0){let{arkTs:i,cpp:s}=xD(e),a=d=>J.resolve(process.cwd(),d),c=i.map(a),l=s.map(a);c.length>0&&o.push("--arkTsFiles",c.join(",")),l.length>0&&o.push("--cppFiles",l.join(","))}else if(n.modules&&n.modules.length>0){let i=HD(t,n.modules);o.push("--modulePaths",i.join(","))}else o.push("--projectPath",t.rootDir);return o.push("--outputPath",ed.tmpdir()),o}async function BD(r,e){let t=J.dirname(e[0]);try{let o=(await kD(r.nodePath,e,{cwd:t,stdin:"ignore",stdout:"pipe",stderr:"inherit"})).stdout;return process.env.DEVECO_CLI_DEBUG&&(console.log(ve("[compat:check] === scan stdout ===")),process.stdout.write(o),o.endsWith(`
1335
1353
  `)||process.stdout.write(`
1336
- `),console.log(he("[compat:check] === end stdout ==="))),i}catch(r){let i=r;process.env.DEVECO_CLI_DEBUG&&i.stdout&&(console.log(he("[compat:check] === scan stdout (on error) ===")),process.stdout.write(i.stdout),i.stdout.endsWith(`
1354
+ `),console.log(ve("[compat:check] === end stdout ==="))),o}catch(n){let o=n;process.env.DEVECO_CLI_DEBUG&&o.stdout&&(console.log(ve("[compat:check] === scan stdout (on error) ===")),process.stdout.write(o.stdout),o.stdout.endsWith(`
1337
1355
  `)||process.stdout.write(`
1338
- `),console.log(he("[compat:check] === end stdout ===")));let o=new ee("errorCode",`Compatibility scan failed: ${i.message}`+(i.stderr?`
1339
- ${i.stderr}`:""));throw i.stdout&&(o.stdout=i.stdout),o}}function bA(n,e){if(!iA.includes(e.format))throw new ZI(`--format must be default, csv, or json (console: default|json, file: default|csv|json). got "${e.format}"`);if(n.length>0&&e.modules&&e.modules.length>0)throw new ee("errorCode","Cannot use `--modules` together with file arguments. Use either file-level scanning (with files) or module-level scanning (with --modules).");if(!e.sourceVersion)throw new ee("errorCode","--source-version is required.");if(!e.targetVersion)throw new ee("errorCode","--target-version is required.");if(!e.outputPath&&e.format==="csv")throw new ee("errorCode","--format csv requires --output-path. For console output, use --format json or --format default (or omit the flag).")}function SA(n,e){let t=[];if(n.sourceVersion&&!e.includes(n.sourceVersion)&&t.push(`--source-version "${n.sourceVersion}"`),n.targetVersion&&!e.includes(n.targetVersion)&&t.push(`--target-version "${n.targetVersion}"`),t.length>0){let r=t.length>1?"are":"is";throw new ee("errorCode",`${t.join(" and ")} ${r} not in the available SDK version list.
1340
- Run \`devecocli compat versions\` to see all available versions.`)}if(n.sourceVersion&&n.targetVersion){let r=e.indexOf(n.sourceVersion),i=e.indexOf(n.targetVersion);if(r>=i)throw new ee("errorCode",`--target-version "${n.targetVersion}" must be later than --source-version "${n.sourceVersion}". Run \`devecocli compat versions\` to see the available order.`)}}function EA(n,e,t,r,i){i==="none"&&(t==="json"?gA(n,r):hA(n,r)),mA(n,e)}function PA(n,e){let t=q.dirname(n),r=q.basename(n),i=e.slice(1).map(o=>o.startsWith("--")?o:`"${o}"`).join(" ");p(he(`[compat:check] command: cd "${t}" && node "${r}" ${i}`))}function CA(n){try{tA(n),p(he(`[compat:check] cleaned up tmp report: "${n}"`))}catch(e){p(he(`[compat:check] failed to clean up tmp report: ${e.message}`))}}var kA=[".csv",".json"];function IA(n){return kA.includes(n.toLowerCase())}function AA(n,e){if(!n)return{kind:"none"};let t=q.extname(n).toLowerCase();if(!IA(t))return{kind:"dir",dirPath:q.resolve(n)};if(t===".csv"&&!(e==="default"||e==="csv")||t===".json"&&e!=="json")throw new ee("errorCode",`The --output-path file extension '${t}' does not match --format ${e}. Use --format ${t===".json"?"json":"default"}, or rename the file.`);return{kind:"file",filePath:q.resolve(n),ext:t}}function DA(n){if(n.kind==="file"){if(Js(n.filePath))throw new ee("errorCode",`Target file "${n.filePath}" already exists. Remove it first, or choose a different --output-path.`);let e=q.dirname(n.filePath);if(!Js(e))throw new ee("errorCode",`Target directory "${e}" does not exist. Create it first, or choose a different --output-path.`)}else if(n.kind==="dir"&&!Js(n.dirPath))throw new ee("errorCode",`Target directory "${n.dirPath}" does not exist. Create it first, or choose a different --output-path.`)}function Mh(n){return JSON.stringify({records:n,count:n.length},null,2)+`
1341
- `}function RA(n,e,t,r){r===".csv"?Th(n,t):xh(t,Mh(e),"utf8"),p(he(`[compat:check] saved report: "${t}"`))}function TA(n,e,t,r){if(r==="json"){let o=q.basename(n,".csv"),s=q.join(t,`${o}.json`);return xh(s,Mh(e),"utf8"),p(he(`[compat:check] saved report: "${s}"`)),s}let i=q.join(t,q.basename(n));return Th(n,i),p(he(`[compat:check] saved report: "${i}"`)),i}async function xA(n,e){let t=new Be(n,process.cwd(),!0),r=e.modules&&e.modules.length>0?e.modules[0]:void 0;try{await t.compileNative("default",r)}catch(i){throw new ee("errorCode",`hvigorw compileNative failed (module=${r??"<project>"}): `+i.message,{cause:i})}}async function LA(n,e){bA(n,e);let t=Y.discover(process.cwd());e.modules&&e.modules.length>0&&sA(t,e.modules),n.length>0&&aA(n);let r=await A.new(),{apiChangeDir:i,scriptPath:o}=r.getApiscanPaths();p(he(`[compat:check] script: "${o}"`));let s=Nh(i);SA(e,s),e.outputPath&&p(he(`[compat:check] outputPath: "${e.outputPath}"`));let a=AA(e.outputPath,e.format);return p(he(`[compat:check] outputTarget: ${a.kind}`)),DA(a),{project:t,scriptPath:o,target:a,toolProvider:r}}function NA(n,e,t,r){if(t.kind==="file")return RA(n,e,t.filePath,t.ext),t.filePath;if(t.kind==="dir")return TA(n,e,t.dirPath,r);if(t.kind==="none")return null;throw new ee("errorCode",`Unexpected output target kind: ${t.kind}`)}async function OA(n,e,t,r,i){let o=rA({text:"Running compatibility check...",color:"cyan"}).start();try{await xA(n.toolProvider,t);let s=vA(n.scriptPath,e,n.project,t);PA(n.scriptPath,s);let a=await wA(n.toolProvider,s),c=fA(a,Cl.tmpdir());if(!c)throw new ee("errorCode","Scanner output format unexpected: missing report path.");p(he(`[compat:check] tmp csv: "${c}"`));let l=pA(c),d=NA(c,l,n.target,t.format);CA(c),o.stop(),EA(l,d,t.format,t.limit,n.target.kind),await Hr(r,!0,null,i)}catch(s){o.fail("Compatibility check failed");let a=kl(s);throw await Hr(r,!1,a,i),s}}async function _h(n,e){let t=Date.now(),r=["check","compat"];try{let i=await LA(n,e);await OA(i,n,e,t,r)}catch(i){let o=kl(i);throw await Hr(t,!1,o,r),i}}function _A(n){let e=Number(n);if(!Number.isInteger(e)||e<=0)throw new MA(`--limit must be a positive integer (got "${n}")`);return e}var Il=new jh("compat").description("Compatibility checking utilities.");Il.description("Check source code compatibility against a target SDK version. By default, performs a project-level scan; pass positional `files...` for file-level scanning; pass `--modules` for module-level scanning.").arguments("[files...]").option("--source-version <version>","Current project SDK version (required; use `compat versions` to list available versions). On zsh, quote the value because version strings contain parentheses; run `compat versions` first to copy a real example.").option("--target-version <version>","Target SDK version (required; use `compat versions` to list available versions). On zsh, quote the value because version strings contain parentheses; run `compat versions` first to copy a real example.").option("--modules <modules...>","Modules to check (default: all modules in the project). Mutually exclusive with positional file arguments.").option("--format <format>",'Output format: "json" or "default" (text) for console; "csv", "json", or "default" for file output (--output-path). "csv" requires --output-path.',"default").option("--output-path <path>","Directory to write the detailed report CSV to (default: ./compat-output)").option("--limit <num>","Maximum number of change records to display (default: 100)",_A,100).action(async(n,e)=>{await _h(n,e)});Il.command("versions").description("List all available target SDK versions for compatibility checking").option("--format <format>","Output format: default or json").action(async(n,e)=>{let t=e.optsWithGlobals().format;await Oh(t)});var jA=new jh("check").description("Run DevEco project checks").addCommand(Il).addCommand(El()),Fh=jA;import{Command as kR}from"commander";import{green as Yl,red as IR}from"colorette";import Kl from"fs";import Eg from"path";import Pg from"json5";import{readFileSync as pD}from"fs";import{join as FA}from"path";var re={BASE_URL:"https://connect-api.cloud.huawei.com",CERT_LIST_PATH:"/api/cps/harmony-cert-manage/v1/cert/list",CERT_DELETE_PATH:"/api/cps/harmony-cert-manage/v1/cert/delete",CERT_ADD_PATH:"/api/cps/harmony-cert-manage/v1/cert/add",CERT_DOWNLOAD_URL_PATH:"/api/amis/app-manage/v1/objects/url/reapply",DEVICE_ADD_PATH:"/api/cps/device-manage/v1/device/add",DEVICE_LIST_PATH:"/api/cps/device-manage/v1/device/list",PROVISION_ADD_REAL_PATH:"/api/cps/provision-manage/v1/ide/real/provision/add",PROVISION_ADD_TEST_PATH:"/api/cps/provision-manage/v1/ide/test/provision/add",PROVISION_DELETE_PATH:"/api/cps/provision-manage/v1/provision/delete"},Fe={CERT_NAME_PREFIX:"auto_debug_",CERT_TYPE_DEBUG:"1",TEAM_ID_INVALID_CHARS:/[\\/.:]/g,CERT_PATTERN:/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/,TARGET_FRIENDLY_NAME:"debugKey",CERTIFICATE_PATTERN_GLOBAL:/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g,BUNDLE_NAME_REGEX:/^[a-zA-Z][a-zA-Z0-9._-]*$/,CERT_BEGIN_HEADER:"-----BEGIN CERTIFICATE-----",CERT_SAVE_DIR:FA(".ohos","config"),DOWNLOAD_CONNECT_TIMEOUT_MS:5e3},ge={SUCCESS_MARKER:'"code":0',SQUARE_BRACKETS:"[]",OPENPROXY_BLOCKED_URL:"Openproxy_Blocked_URL_list",CERT_LIMIT_CODE:"205389872",USER_NOT_HARMONY_CODE:"205389904",DEVICE_EXCEEDS_LIMIT_CODE:"205389859",DEVICE_NAME_REPEAT_CODE:"205389857",PROVISION_EXCEEDS_LIMIT_CODE:"205389938",PROVISION_NAME_REPEAT_CODE:"205389830"},pt={FORBIDDEN:403,UNAUTHORIZED:401},E={ERR_FORBIDDEN:"You do not have AppGallery Connect permissions for the current team. Request access from the team administrator or switch to a team where you have permissions.",ERR_UNAUTHORIZED:"Invalid AccessToken. Sign in and try again.",ERR_CERT_LIMIT_REACHED:"The number of certificates has reached the limit. Delete some certificates and try again.",ERR_CERT_NETWORK_ERROR:"Ensure the external network connection is available before downloading the certificate.",ERR_CERT_INVALIDATE:"The downloaded .cer file is invalid. Try again.",ERR_DOWNLOAD_CER:"Failed to download the certificate file. Check the following configurations: Network connection, HTTP Proxy, etc.",ERR_USER_NOT_HARMONY:"The user is not in harmony allow list, please grant the permission",ERR_READ_CSR:"Failed to read the .csr file, please try again later",ERROR_WHILE_ADD_DEVICE:"Failed to add the device, please try again.",DEVICE_LIMIT_REACHED:"The number of devices has reached the limit. Delete some unused devices and try again.",DEVICE_NAME_REPEAT:"Duplicate device name, please try again.",DEVICE_LIST_EMPTY:"No devices available.",ADD_PROFILE_FAIL:"Failed to add the profile, please try again.",NO_AGC_PERMISSION:"You do not have the AppGallery Connect permission with the current team. Apply for the permission form the team administrator, or switch to a team with which you already have the permission.",ERROR_WHILE_DOWNLOAD_PROFILE:"Failed to download the profile, please try again.",PROFILE_NAME_REPEAT:"The profile name already exists in the AGC.",ERROR_WHILE_PARSE_PROFILE:"Failed to parse the profile, please try again.",TEST_PROVISION_EXCEEDS_LIMIT:"Provision number exceeds limit.",CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT:"The certificate application file is inconsistent with the file in profile, please try again.",CERTIFICATE_HAS_EXPIRED:"The signature does not take effect or has expired. It may be the current system time is inaccurate, please calibrate the system time and sign again.",ERROR_SIGN_BUNDLE_NAME_VALIDATE:"The bundle name contains 7 to 128 characters, including only letters, digits, and underscores (_). It must be start with a letter and contain at least three segments separated by periods (.), each of the segments ending with a digit or letter."},se={TOOLCHAIN_INIT_FAILED:"Auto-sign failed: unable to initialize toolchain",LOGIN_REQUIRED:"Failed to automatically generate signatures.Run devecocli auth login to sign in.",TEAM_INFO_FAILED:"Failed to obtain user team information.Check the network connection, HTTP proxy, and other configurations.",REALNAME_REQUIRED:"Users without real-name verification are not supported.Complete real-name verification in AppGallery Connect.",SESSION_EXPIRED:"User session expired or token invalid. Please login again.",REGION_CHINA_ONLY:"This feature is only available for accounts registered in Chinese mainland.",DEVICE_MISSING:"Unable to create the profile file due to missing devices.Connect a device through IP or USB, or manually add a device in AppGallery Connect first.If you are installing the HAP package on an emulator, you can skip the signing step.",DEVICE_DETECT_FAILED:"Unable to detect devices. Please check hdc status. If installing HAP on an emulator, signature step can be skipped.",PROJECT_DIR_MISSING:"Not in a valid project directory (project-level build-profile.json5 not found).",ATOMIC_SERVICE_UNSUPPORTED:"AtomicService projects are not yet supported. Please configure signing manually."};function Ys(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}function Al(n){let e=n.replace(Fe.TEAM_ID_INVALID_CHARS,"");return`${Fe.CERT_NAME_PREFIX}${e}.cer`}function Ur(n,e,t){if(n===pt.FORBIDDEN)return e===ge.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN);if(n===pt.UNAUTHORIZED)return new Error(E.ERR_UNAUTHORIZED);if(t.includes(ge.USER_NOT_HARMONY_CODE))return new Error(E.ERR_USER_NOT_HARMONY);if(t.includes(ge.CERT_LIMIT_CODE))return new Error(E.ERR_CERT_LIMIT_REACHED);let r=$A(t);return new Error(r??E.ERR_DOWNLOAD_CER)}function $A(n){let e=$h(n);if(!e||typeof e!="object")return null;let t=e.ret;if(t==null)return null;let r=typeof t=="string"?$h(t):t;if(r&&typeof r=="object"){let i=r.msg;if(typeof i=="string"&&i.trim()!=="")return i}return null}function $h(n){try{return JSON.parse(n)}catch{return null}}function Dl(n){return JSON.parse(n)}async function Hh(n){let e=`${re.BASE_URL}${re.CERT_LIST_PATH}`,t=await L.postAllowFailure(e,{headers:Ys(n)});if(t.statusCode!==200)throw Ur(t.statusCode,t.statusText,t.data);return Dl(t.data)?.certList??[]}async function Ks(n,e){return(await Hh(n)).find(r=>r.certName===e)??null}async function Rl(n,e){let t=`${re.BASE_URL}${re.CERT_DELETE_PATH}`,r=await L.deleteAllowFailure(t,{headers:Ys(n),params:{certIds:[e]}});if(r.statusCode!==200)throw Ur(r.statusCode,r.statusText,r.data);return Dl(r.data)?.ret?.code===0}async function Tl(n,e,t){let r=`${re.BASE_URL}${re.CERT_ADD_PATH}`,i={csr:e,certName:t,certType:Fe.CERT_TYPE_DEBUG},o=await L.postAllowFailure(r,{headers:Ys(n),params:i});if(o.statusCode!==200)throw Ur(o.statusCode,o.statusText,o.data);if(!o.data.includes(ge.SUCCESS_MARKER))throw Ur(void 0,o.statusText,o.data)}async function xl(n,e){let t=`${re.BASE_URL}${re.CERT_DOWNLOAD_URL_PATH}`,r=await L.postAllowFailure(t,{headers:Ys(n),params:{sourceUrls:e}});if(r.statusCode!==200)throw Ur(r.statusCode,r.statusText,r.data);return Dl(r.data)?.urlsInfo?.[0]??null}import{mkdirSync as HA,writeFileSync as UA,existsSync as WA}from"fs";import{dirname as BA}from"path";import{createHash as VA}from"crypto";function qA(n){let e;try{e=new URL(n)}catch{throw new Error(`Invalid download URL: ${JSON.stringify(n)}`)}if(e.protocol!=="https:")throw new Error(`Download URL must use HTTPS: ${e.protocol}`);let t=e.hostname.toLowerCase();if(t==="localhost"||t==="127.0.0.1"||t==="::1"||t.startsWith("169.254.")||t.startsWith("10.")||t.startsWith("192.168.")||/^172\.(1[6-9]|2\d|3[0-1])\./.test(t)||t.endsWith(".internal")||t.endsWith(".local"))throw new Error(`Download URL points to internal/private address: ${t}`)}async function Wi(n,e,t){qA(n);let{statusCode:r,statusText:i,buffer:o}=await L.getBinaryAllowFailure(n,{timeout:Fe.DOWNLOAD_CONNECT_TIMEOUT_MS});if(r!==200)throw r===pt.FORBIDDEN&&i===ge.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_DOWNLOAD_CER);if(t){let a=VA("sha256").update(o).digest("hex");if(a!==t.toLowerCase())throw new Error(`SHA-256 mismatch for ${e}: expected ${t.toLowerCase()}, got ${a}`)}let s=BA(e);WA(s)||HA(s,{recursive:!0}),UA(e,o)}import lD from"fs/promises";import{readFileSync as dD}from"fs";import Xs from"path";import Bh from"crypto";import GA from"os";import Bi from"fs/promises";var Vh={GENERATE_KEYPAIR:"generate-keypair",GENERATE_CSR:"generate-csr"},Uh=["ECC","RSA"],Wh=["SHA256withECDSA","SHA384withECDSA","SHA256withRSA","SHA384withRSA"],zA={ECC:["NIST-P-256","NIST-P-384"],RSA:["2048","3072","4096"]},JA=8,Ll=64,YA=/[\\/:*?"<>|=-]/g,ft={productName:"default",keyAlias:"debugKey",keyAlg:"ECC",keySize:"NIST-P-256",csrSubject:"CN=DebugKey",signAlg:"SHA256withECDSA"};function KA(n){if(!n.keyAlias.trim())throw new Error("keyAlias cannot be empty");if(!n.keystoreFile.trim())throw new Error("keystoreFile cannot be empty");if(n.keyAlias.length>Ll)throw new Error(`The length of keyAlias cannot exceed ${Ll}`);if(!Uh.includes(n.keyAlg))throw new Error(`Invalid key algorithm ${n.keyAlg}, available: ${Uh.join(" / ")}`);let e=zA[n.keyAlg];if(!e.includes(n.keySize))throw new Error(`Key algorithm ${n.keyAlg} does not support size ${n.keySize}, available: ${e.join(", ")}`)}function XA(n){if(!n.keyAlias.trim())throw new Error("keyAlias cannot be empty");if(!n.keystoreFile.trim())throw new Error("keystoreFile cannot be empty");if(!n.subject.trim())throw new Error("subject cannot be empty");if(!Wh.includes(n.signAlg))throw new Error(`Invalid sign algorithm ${n.signAlg}, available: ${Wh.join(" / ")}`)}function ZA(n){return Bh.createHash("sha256").update(n,"utf8").digest().toString("base64url").replaceAll(/[-_=]/g,"")}function QA(n){let e=n?.trim()??"";return e&&e.replace(YA,"_").replace(/\.+/g,"_").slice(0,Ll)||ft.productName}async function qh(){let n=await A.new(),e=n.javaPath;if(!e)throw new Error("Java runtime not found. DevEco Studio JBR is required to run hap-sign-tool.jar.");let t=n.sdkPath;u.info(`\u8BFB\u53D6SDK\u6839\u76EE\u5F55\uFF1A${t}`);let r=Xs.join(t,"default","openharmony","toolchains","lib","hap-sign-tool.jar");try{await Bi.access(r)}catch(i){throw new Error(`Sign tool jar not found: ${r}`,{cause:i})}return{javaPath:e,jarPath:r}}async function eD(n){let{javaPath:e,jarPath:t}=await qh(),r=["-jar",t,Vh.GENERATE_KEYPAIR,"-keyAlias",n.keyAlias,"-keyAlg",n.keyAlg,"-keySize",n.keySize,"-keystoreFile",n.keystoreFile,"-keystorePwd",n.keystorePwd];n.keyPwd&&r.push("-keyPwd",n.keyPwd),n.pwdInputMode&&r.push("-pwdInputMode",n.pwdInputMode);let i=r.map((o,s)=>s>0&&["-keyPwd","-keystorePwd"].includes(r[s-1])?"******":o);return u.debug("generate-keypair \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",i.join(" ")),[e,...r]}async function tD(n){let{javaPath:e,jarPath:t}=await qh(),r=["-jar",t,Vh.GENERATE_CSR,"-keyAlias",n.keyAlias,"-subject",n.subject,"-signAlg",n.signAlg,"-keystoreFile",n.keystoreFile,"-keystorePwd",n.keystorePwd];n.outFile&&r.push("-outFile",n.outFile),n.keyPwd&&r.push("-keyPwd",n.keyPwd),n.pwdInputMode&&r.push("-pwdInputMode",n.pwdInputMode);let i=r.map((o,s)=>s>0&&["-keyPwd","-keystorePwd"].includes(r[s-1])?"******":o);return u.debug("generate-csr \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",i.join(" ")),[e,...r]}async function nD(n){u.info("\u5F00\u59CB\u751F\u6210 P12 \u5BC6\u94A5\u5E93"),KA(n);let e=await eD(n),t=await ni(e[0],e.slice(1));if(t.exitCode!==0){let r=t.stderr||t.stdout||"Unknown tool error";throw new Error(`An error occurred while generating the private key P12, exit code${t.exitCode}\uFF1A${r}`)}return u.info("\u751F\u6210P12\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}async function rD(n){u.info("\u5F00\u59CB\u751F\u6210 CSR \u8BC1\u4E66\u8BF7\u6C42"),XA(n);let e=await tD(n),t=await ni(e[0],e.slice(1));if(t.exitCode!==0){let r=t.stderr||t.stdout||"Unknown tool error";throw new Error(`An error occurred while generating the CSR, exit code${t.exitCode}\uFF1A${r}`)}return u.info("\u751F\u6210CSR\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}function iD(n=JA){return Bh.randomBytes(n).toString("base64url").replaceAll(/[-_=]/g,"")}async function oD(){let n=GA.homedir();try{await Bi.access(n)}catch(t){throw new Error("Invalid user path;",{cause:t})}let e=Xs.join(n,".ohos","config");try{await Bi.mkdir(e,{recursive:!0,mode:448})}catch(t){throw new Error(`Failed to create directory ${e}`,{cause:t})}return u.info(`\u7B7E\u540D\u914D\u7F6E\u76EE\u5F55\u5C31\u7EEA\uFF1A${e}`),e}async function Pe(n,e,t){let r=QA(n),i=Xs.basename(e),o=ZA(e),s=`${r}_${i}_${o}=.${t}`,a=await oD();return Xs.join(a,s)}function sD(n){let e;try{e=Y.discover(n).rootDir}catch(t){throw new Error(`Current directory ${n} is not a valid project root`,{cause:t})}return e}async function aD(n){try{await Bi.access(n)}catch(e){throw new Error(`Project directory ${n} is not accessible, missing read/write permissions`,{cause:e})}}async function cD(n){try{await Bi.access(n)}catch(e){throw new Error(`P12 file ${n} does not exist, terminating CSR generation.`,{cause:e})}}async function Nl(n,e,t){let r=process.cwd(),i=sD(r);await aD(i),u.info(`\u8BC6\u522B\u9879\u76EE\u6839\u76EE\u5F55\uFF1A${i}`);let o=iD(),s=await Pe(n??"",i,"p12"),a=await Pe(n??"",i,"csr");return console.log("Start generating p12"),await nD({keyAlias:e?.keyAlias??ft.keyAlias,keyPwd:o,keyAlg:e?.keyAlg??ft.keyAlg,keySize:e?.keySize??ft.keySize,keystoreFile:s,keystorePwd:o}),await cD(s),console.log("Start generating csr"),await rD({subject:t?.subject??ft.csrSubject,outFile:a,keyAlias:t?.keyAlias??ft.keyAlias,keyPwd:o,signAlg:t?.signAlg??ft.signAlg,keystoreFile:s,keystorePwd:o}),{p12FilePath:s,csrFilePath:a,keyPwd:o,keyAlias:e?.keyAlias??ft.keyAlias}}var uD=["p12","cer","csr","p7b"];async function Ol(n,e){for(let t of uD){let r=await Pe(n,e,t);await lD.rm(r,{force:!0})}}function Ml(n){let e;try{e=dD(n,"utf-8")}catch{throw new Error(E.ERR_CERT_INVALIDATE)}if(!Fe.CERT_PATTERN.test(e))throw new Error(E.ERR_CERT_INVALIDATE)}async function Gh(n,e){return{certPath:await Pe(n,e,"cer"),csrPath:await Pe(n,e,"csr"),p12Path:await Pe(n,e,"p12"),profilePath:await Pe(n,e,"p7b")}}async function _l(n,e){let t=e??"",r=Y.discover(process.cwd()).rootDir;await Ol(t,r);let i=Al(n.teamId),o=await Ks(n,i);if(o&&!await Rl(n,o.id))throw new Error(E.ERR_DOWNLOAD_CER);let s=await Nl(e),a;try{a=pD(s.csrFilePath,"utf-8")}catch{throw new Error(E.ERR_READ_CSR)}console.log("Start generating certificate"),await Tl(n,a,i);let c=await Ks(n,i);if(!c)throw new Error(E.ERR_DOWNLOAD_CER);let l=await xl(n,c.certObjectId);if(!l)throw new Error(E.ERR_DOWNLOAD_CER);let d=await Pe(t,r,"cer");await Wi(l.newUrl,d,l.sha256),Ml(d);let g=await Pe(t,r,"p7b");return{p12FilePath:s.p12FilePath,csrFilePath:s.csrFilePath,cerFilePath:d,profileFilePath:g,certId:c.id,keyAlias:s.keyAlias,keyPwd:s.keyPwd,storePassword:s.keyPwd}}import aa from"crypto";import Pn from"fs";import*as ag from"path";import OD from"json5";import{execa as ig}from"execa";import og from"node-forge";import{createCipheriv as fD,createDecipheriv as mD,pbkdf2Sync as hD,randomBytes as Hl}from"crypto";import{promises as Yn}from"fs";import{dirname as gD,join as mt}from"path";var Zs=3,Vi=16,yD=1e4,zh="material",vD=new Uint8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),Xh="aes-128-gcm",Jn=12,Qs=16,bn=4;function jl(n){return new Uint8Array(Hl(n))}function wD(n){return Hl(n).toString("hex")}function bD(...n){if(n.length===0)return new Uint8Array(0);let e=n[0].length,t=new Uint8Array(e);for(let r=0;r<e;r++){let i=0;for(let o of n)i^=o[r];t[r]=i}return t}function Jh(n,e,t=yD,r=Vi){let i=[...n,vD],o=bD(...i),s=Buffer.from(o).toString("utf8"),a=Buffer.from(s,"utf8"),c=hD(a,e,t,r,"sha256");return new Uint8Array(c)}function Yh(n,e){let t=Hl(Jn),r=fD(Xh,n,t),i=Buffer.concat([r.update(e),r.final()]),o=r.getAuthTag(),s=Buffer.concat([i,o]),a=s.length,c=Buffer.alloc(bn+Jn+s.length);return c.writeUInt32BE(a,0),t.copy(c,bn),s.copy(c,bn+Jn),c}function Kh(n,e){if(e.length<bn+Jn+Qs)throw new Error("Ciphertext too short");let t=e.readUInt32BE(0),r=e.subarray(bn,bn+Jn),i=e.subarray(bn+Jn,bn+Jn+t);if(i.length<Qs)throw new Error("Ciphertext too short for auth tag");let o=i.subarray(0,i.length-Qs),s=i.subarray(i.length-Qs),a=mD(Xh,n,r);return a.setAuthTag(s),Buffer.concat([a.update(o),a.final()])}async function SD(n){try{await Yn.rm(n,{recursive:!0,force:!0})}catch{}}async function Fl(n){let e=await Yn.readdir(n),t=e.filter(r=>r!==".DS_Store");if(t.length!==1)throw new Error(`Expected exactly 1 file in ${n}, but found ${t.length} (filtered from ${e.length})`);return Yn.readFile(mt(n,t[0]))}async function $l(n,e){let t=wD(Vi),r=mt(n,t);return await Yn.writeFile(r,e,{mode:384}),t}var Sn=class{static keyChain=Promise.resolve();static async generateMaterial(e){let t=mt(e,zh);await SD(t);let r=mt(t,"ac"),i=mt(t,"ce");await Yn.mkdir(r,{recursive:!0,mode:448}),await Yn.mkdir(i,{recursive:!0,mode:448});for(let d=0;d<Zs;d++)await Yn.mkdir(mt(t,"fd",String(d)),{recursive:!0,mode:448});let o=jl(Vi),s=[];for(let d=0;d<Zs;d++)s.push(jl(Vi));let a=jl(Vi),c=Jh(s,o),l=Yh(c,a);await $l(r,o),await $l(i,l);for(let d=0;d<Zs;d++){let g=mt(t,"fd",String(d));await $l(g,s[d])}return a}static async readMaterial(e){let t=mt(e,zh),r=mt(t,"ac"),i=new Uint8Array(await Fl(r)),o=[];for(let d=0;d<Zs;d++){let g=mt(t,"fd",String(d)),v=await Fl(g);o.push(new Uint8Array(v))}let s=mt(t,"ce"),a=await Fl(s),c=Jh(o,i),l=Kh(c,a);return new Uint8Array(l)}static async getStoreKey(e){let t,r=this.keyChain;this.keyChain=new Promise(i=>{t=i}),await r;try{let i=gD(e);try{return await this.readMaterial(i)}catch{return await this.generateMaterial(i)}}finally{t()}}static async encryptedPassword(e,t){let r=await this.getStoreKey(t),i=Buffer.from(e,"utf8");return Yh(r,i).toString("hex")}static async decryptPassword(e,t){if(!e)return"";let r=await this.getStoreKey(t),i=Buffer.from(e,"hex");return Kh(r,i).toString("utf8")}};import ng from"fs";import oa from"path";import AD from"json5";import*as ea from"fs";import*as Zh from"path";function ta(n){let e=Zh.resolve(n);if(!ea.existsSync(e))throw new Error(`SDK info file not found: ${e}`);let t;try{t=ea.readFileSync(e,"utf-8")}catch(s){throw new Error(`Failed to read SDK info file: ${e}`,{cause:s})}let r;try{r=JSON.parse(t)}catch(s){throw new Error(`Invalid JSON in SDK info file: ${e}`,{cause:s})}let i=r?.data?.apiVersion;if(i==null||i==="")throw new Error(`Missing data.apiVersion in SDK info file: ${e}`);let o=Number(i);if(!Number.isFinite(o))throw new Error(`Invalid data.apiVersion in SDK info file: ${String(i)}`);return o}import*as Br from"fs";import*as $e from"path";import{debuglog as Wr}from"util";var Qh={"acl.SYSTEM_FLOAT_WINDOW.instead.name":"PiPWindow","acl.READ_CONTACTS.instead.name":"contact.selectContacts","acl.READ_IMAGEVIDEO.instead.name":"PhotoViewPicker","acl.WRITE_IMAGEVIDEO.instead.name":"SaveButton","acl.READ_AUDIO.instead.name":"AudioViewPicker","acl.WRITE_AUDIO.instead.name":"AudioViewPicker","acl.READ_PASTEBOARD.instead.name":"PasteButton"};function ED(n){return Object.prototype.hasOwnProperty.call(Qh,n)}function na(n){if(ED(n))return Qh[n]}var eg={DUPLICATE_PERMISSION:"Duplicate permissions detected. Make sure each permission is unique in the same module and try again."};import{fileURLToPath as PD}from"url";var ia=class{permissionName;permissionDisplayName;minSupportApiLevel;permissionInsteadName;permissionHelpUrlKey;constructor(e={}){this.permissionName=e.permissionName??"",this.permissionDisplayName=e.permissionDisplayName??"",this.minSupportApiLevel=e.minSupportApiLevel??"",this.permissionInsteadName=e.permissionInsteadName,this.permissionHelpUrlKey=e.permissionHelpUrlKey}};function ra(n){return typeof n=="object"&&n!==null&&!Array.isArray(n)}function tg(n){return n==null||n.length===0}function CD(n){return!tg(n)}function Ul(n,e){let t=n[e];return typeof t=="string"?t:t==null?"":String(t)}function kD(n,e){let t=n[e];if(typeof t=="boolean")return t;if(typeof t=="number")return t!==0;if(typeof t=="string"){let r=t.trim().toLowerCase();return r==="true"||r==="1"}return!1}function ID(n,e){let t=n[e];if(typeof t=="number")return Math.trunc(t);if(typeof t=="string"){let r=Number.parseInt(t,10);return Number.isNaN(r)?0:r}return 0}var En=class{static MIN_API_TO_FIND_ACL_IN_SDK=23;static ACL_PREFIX="ohos.permission.";static ACL_PERMISSIONS_CONFIG_PATH=$e.join("aclPermission","aclPermissionsInfo.json");static ACL_HAVE_INSTEAD_NAME=new Set(["ohos.permission.SYSTEM_FLOAT_WINDOW","ohos.permission.READ_CONTACTS","ohos.permission.READ_IMAGEVIDEO","ohos.permission.WRITE_IMAGEVIDEO","ohos.permission.READ_AUDIO","ohos.permission.WRITE_AUDIO","ohos.permission.READ_PASTEBOARD"]);static ACL_AVAILABLE_LEVEL_VALUE="system_basic";static ACL_AVAILABLE_TYPE_VALUE="NORMAL";static ACL_AVAILABLE_LEVEL_KEY="availableLevel";static ACL_AVAILABLE_TYPE_KEY="availableType";static ACL_PROVISION_ENABLE_KEY="provisionEnable";static ACL_NAME_KEY="name";static ACL_CONFIG_PREFIX="acl.";static ACL_INSTEAD_NAME_SUFFIX=".instead.name";static ACL_HELP_URL_KEY_SUFFIX=".help.key";static ACL_DEFINE_PERMISSION_KEY="definePermissions";static ACL_SINCE_KEY="since";static PERMISSION_DEFINITIONS_RELATIVE_PATH=$e.join("lib","PermissionDefinitions.json");static INCLUDE_ACL_PERMISSIONS=new Set(["ohos.permission.FILE_ACCESS_PERSIST","ohos.permission.READ_WRITE_DOWNLOAD_DIRECTORY","ohos.permission.READ_WRITE_DOCUMENTS_DIRECTORY"]);static EXCLUDE_ACL_PERMISSIONS=new Set(["ohos.permission.READ_DOCUMENT","ohos.permission.WRITE_DOCUMENT"]);static handleSpecificAclPermissions(){this.addAclWhiteList(this.INCLUDE_ACL_PERMISSIONS),this.addAclBlackList(this.EXCLUDE_ACL_PERMISSIONS)}static aclPermissionInfoMap=new Map;static aclPermissionNamesMap=new Map;static aclWhiteList=new Set;static aclBlackList=new Set;static builtInConfigTextLoader;static initAclPermission(e,t){let r=e.rootDir,i=this.getOrCreateSet(this.aclPermissionNamesMap,r),o=this.getOrCreateSet(this.aclPermissionInfoMap,r);i.clear(),o.clear();let s=$e.join(t.sdkPath,"default","sdk-pkg.json"),a=ta(s);this.MIN_API_TO_FIND_ACL_IN_SDK-a>0?this.initAclPermissionFromBuiltInConfig(i,o):this.initAclPermissionFromSDK(t,i,o)}static getAclPermissionInfos(e){return this.aclPermissionInfoMap.get(e.rootDir)??new Set}static getAclPermissionNames(e){return this.aclPermissionNamesMap.get(e.rootDir)??new Set}static addAclWhiteList(e){for(let t of e)this.aclWhiteList.add(t)}static addAclBlackList(e){for(let t of e)this.aclBlackList.add(t)}static getOrCreateSet(e,t){let r=e.get(t);return r||(r=new Set,e.set(t,r)),r}static readBuiltInConfigText(){if(this.builtInConfigTextLoader)return this.builtInConfigTextLoader();let e=$e.join(this.getResourcesDir(),this.ACL_PERMISSIONS_CONFIG_PATH);if(Br.existsSync(e))return Br.readFileSync(e,"utf-8")}static getResourcesDir(){let e=import.meta.url,t=PD(e);if(t.includes("dist")){let s=$e.dirname(t),a=$e.dirname(s);return $e.join(a,"src","resources")}let r=$e.dirname(t),i=$e.dirname(r),o=$e.dirname(i);return $e.join(o,"src","resources")}static initAclPermissionFromBuiltInConfig(e,t){let r;try{r=this.readBuiltInConfigText()}catch{Wr("read builtin acl permission failed.");return}if(r!==void 0)try{let i=JSON.parse(r),s=(Array.isArray(i)?i:ra(i)?Object.values(i):[]).filter(ra).map(a=>new ia(a));s.forEach(a=>{let c=a.permissionInsteadName;CD(c)&&(a.permissionInsteadName=na(c)),e.add(a.permissionName)}),s.forEach(a=>{t.add(a)})}catch(i){Wr(`failed to parse aclPermissionsInfo.json: ${i}`)}}static initAclPermissionFromSDK(e,t,r){let i=this.parsePermissionDefinitionFile(e);i&&i.forEach(o=>{if(!ra(o))return;let s=o,a=Ul(s,this.ACL_NAME_KEY);this.isAclPermission(s,a)&&(tg(a)||(this.generateAclInfos(r,a,s),t.add(a)))})}static isAclPermission(e,t){return this.aclWhiteList.has(t)?!0:this.aclBlackList.has(t)||Ul(e,this.ACL_AVAILABLE_LEVEL_KEY)!==this.ACL_AVAILABLE_LEVEL_VALUE||Ul(e,this.ACL_AVAILABLE_TYPE_KEY)!==this.ACL_AVAILABLE_TYPE_VALUE?!1:kD(e,this.ACL_PROVISION_ENABLE_KEY)}static generateAclInfos(e,t,r){let i=new ia;i.permissionName=t;let o=t.startsWith(this.ACL_PREFIX)?t.slice(this.ACL_PREFIX.length):t;i.permissionDisplayName=o;let s=ID(r,this.ACL_SINCE_KEY);i.minSupportApiLevel=String(s),this.handleInsteadName(i,o),e.add(i)}static parsePermissionDefinitionFile(e){let t=$e.join(e.sdkPath,"default","openharmony","toolchains",this.PERMISSION_DEFINITIONS_RELATIVE_PATH);if(!Br.existsSync(t))return;let r;try{r=Br.readFileSync(t,"utf-8")}catch(s){Wr(`failed to load permissionDefinitions.json: ${s}`);return}let i;try{let s=JSON.parse(r);if(!ra(s)){Wr("json object is null");return}i=s}catch(s){Wr(`failed to parse permissionDefinitions.json: ${s}`);return}let o=i[this.ACL_DEFINE_PERMISSION_KEY];if(!Array.isArray(o)){Wr("definePermissions is not an array");return}return o}static handleInsteadName(e,t){this.ACL_HAVE_INSTEAD_NAME.has(e.permissionName)&&(e.permissionInsteadName=na(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_INSTEAD_NAME_SUFFIX}`),e.permissionHelpUrlKey=na(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_HELP_URL_KEY_SUFFIX}`))}};function sa(n,e){let t=new Set,r=new Set;En.handleSpecificAclPermissions(),En.initAclPermission(n,e);for(let i of n.profile.modules){let o=rg(i,n,e,r,oa.join("src","main"));for(let a of o)t.add(a);let s=rg(i,n,e,r,oa.join("src","ohosTest"));for(let a of s)t.add(a)}return DD(r),t}function DD(n){if(n.size>0)throw new Error(eg.DUPLICATE_PERMISSION)}function rg(n,e,t,r,i){let o=TD(e.rootDir,n,i);if(o==null)return new Set;let s=[];for(let v of o){if(typeof v!="object"||v===null)continue;let D=RD(v,"name");D&&s.push(D)}let a=new Set(s);a.size!==s.length&&r.add(n.name);let c=oa.join(t.sdkPath,"default","sdk-pkg.json"),l=ta(c),d=En.getAclPermissionInfos(e),g=new Set(Array.from(d).filter(v=>{let D=Number(v.minSupportApiLevel);return Number.isFinite(D)&&D<=l}).map(v=>v.permissionName));for(let v of Array.from(a))g.has(v)||a.delete(v);return a}function RD(n,e){let t=n[e];return typeof t=="string"?t:""}function TD(n,e,t){let r=oa.join(n,e.srcPath,t,"module.json5"),i=xD(r);if(i==null)return null;let o=LD(i,"module");return o==null?null:ND(o,"requestPermissions")}function xD(n){try{if(!ng.existsSync(n))return null;let e=ng.readFileSync(n,"utf-8");return AD.parse(e)}catch{return null}}function LD(n,e){if(n==null||typeof n!="object")return null;let t=n[e];return t!=null&&typeof t=="object"&&!Array.isArray(t)?t:null}function ND(n,e){if(n==null||typeof n!="object")return null;let t=n[e];return Array.isArray(t)?t:null}var Bl=class{verifyStorePassword(e,t){try{let r=Pn.readFileSync(e),i=og.asn1.fromDer(r.toString("binary"));return og.pkcs12.pkcs12FromAsn1(i,t),!0}catch{return!1}}getLocalCerFingerprints(e){let r=Pn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g);if(r&&r.length>0)return r.map(i=>this.formatFp(new aa.X509Certificate(i).fingerprint256));try{return[this.formatFp(new aa.X509Certificate(Pn.readFileSync(e)).fingerprint256)]}catch{return[]}}getLocalCerExpiry(e,t){if(!t)return null;let i=Pn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g)??[];for(let o of i)try{let s=new aa.X509Certificate(o);if(this.formatFp(s.fingerprint256)===t){let a=new Date(s.validTo);return isNaN(a.getTime())?null:a}}catch{}return null}formatFp(e){let t=e.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}};function MD(n){let e=Pn.readFileSync(n,"utf-8"),t=_D(e),r=null;if(t)try{r=JSON.parse(t)}catch{r=null}let i=r?.["bundle-info"]??{};return{rawContent:e,bundleNameInProfile:Wl(i["bundle-name"]),expiryDate:jD(r?.validity?.["not-after"]),cerFingerprintInProfile:FD(Wl(i["development-certificate"])),deviceUdidsInProfile:$D(r?.["debug-info"]?.["device-ids"]),aclPermissionsInProfile:HD(r?.acls?.["allowed-acls"]),teamIdInProfile:Wl(i["developer-id"])}}function _D(n){let e=n.indexOf("{");if(e<0)return null;let t=0,r=-1,i=!1,o=!1;for(let s=e;s<n.length;s++){let a=n[s];if(i){o?o=!1:a==="\\"?o=!0:a==='"'&&(i=!1);continue}if(a==='"')i=!0;else if(a==="{")t++;else if(a==="}"&&(t--,t===0)){r=s;break}}return r<0?null:n.slice(e,r+1)}function jD(n){if(typeof n!="number"||!Number.isFinite(n))return null;let e=new Date(n*1e3);return isNaN(e.getTime())?null:e}function FD(n){if(!n)return null;try{let t=new aa.X509Certificate(n).fingerprint256.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}catch{return null}}function $D(n){if(!Array.isArray(n))return[];let e=[];for(let t of n)if(typeof t=="string"){let r=t.toUpperCase();e.includes(r)||e.push(r)}return e}function HD(n){if(!Array.isArray(n))return[];let e=[];for(let t of n)typeof t=="string"?e.push(t):t&&typeof t=="object"&&typeof t.name=="string"&&e.push(t.name);return[...new Set(e)].sort()}function Wl(n){return typeof n=="string"?n:null}var qi=class n{static async shouldRegenerate(e,t){let r=await n.#e(e,t);return n.#t(r)??n.#n(r)??n.#r(r)??n.#i(r)??n.#o(r)??n.#s(r)??n.#a(r)??n.#c(r)??n.#l(r)??n.#d(r)??await n.#u(r)??n.#p()}static async#e(e,t){let r=e.force,i=e.teamId,o=e.productName??"default",s=Y.discover(process.cwd()),a=s.rootDir,[c,l]=await Promise.all([UD(o,a),BD(t.hdcPath)]),d=null;if(sg(c).allExist)try{d=MD(c.profileFile)}catch{}return{force:r,teamId:i,productName:o,projectPath:a,materialPaths:c,bundleName:s.getBundleName(o),deviceUdids:l,storePassword:await WD(a,o,c.storeFile),localAclPermissions:[...sa(s,t)].sort(),hapSignTool:new Bl,profileInfo:d}}static#t(e){return e.force?(p("[reGenerateSign] --force flag set, skipping all checks"),{shouldRegenerate:!0,reason:"--force flag set",checkDetails:Ge({force:!0})}):null}static#n(e){let t=sg(e.materialPaths);return t.allExist?null:(p(`[reGenerateSign] missing files: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Missing files: ${t.missing.join(", ")}`,checkDetails:Ge({allFilesExist:!1,missingFiles:t.missing})})}static#r(e){return(e.profileInfo?.rawContent??"").trim().length>0?null:(p("[reGenerateSign] profile content is empty"),{shouldRegenerate:!0,reason:"Profile file content is empty",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!1})})}static#i(e){let t=e.profileInfo?.expiryDate;return!t||t>=new Date?null:(p(`[reGenerateSign] profile expired at ${t.toISOString()}`),{shouldRegenerate:!0,reason:`Profile expired at ${t.toISOString()}`,checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!1})})}static#o(e){let t=e.profileInfo?.bundleNameInProfile;return t&&t===e.bundleName?null:(p(`[reGenerateSign] bundleName mismatch \u2014 current=${e.bundleName}, profile=${t}`),{shouldRegenerate:!0,reason:`bundleName mismatch: current=${e.bundleName}, in profile=${t}`,checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!1})})}static#s(e){let t=e.profileInfo?.teamIdInProfile;return t&&t===e.teamId?null:(p(`[reGenerateSign] teamId mismatch \u2014 current=${e.teamId}, profile=${t}`),{shouldRegenerate:!0,reason:`teamId mismatch: current=${e.teamId}, in profile=${t}`,checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!1})})}static#a(e){let t=qD(e.profileInfo?.deviceUdidsInProfile??[],e.deviceUdids);return t.allPresent?null:(p(`[reGenerateSign] missing device UDIDs: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Device UDID(s) not in profile: ${t.missing.join(", ")}`,checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!1,missingDeviceUdids:t.missing})})}static#c(e){return GD(e.localAclPermissions,e.profileInfo?.aclPermissionsInProfile??[])?null:(p("[reGenerateSign] ACL permissions mismatch"),{shouldRegenerate:!0,reason:"ACL permissions mismatch between project and profile",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!1})})}static#l(e){let t=e.hapSignTool.getLocalCerFingerprints(e.materialPaths.cerFile),r=e.profileInfo?.cerFingerprintInProfile;return r&&t.includes(r)?null:(p("[reGenerateSign] certificate mismatch"),{shouldRegenerate:!0,reason:"Certificate mismatch between profile and local .cer file",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!1})})}static#d(e){let t=e.profileInfo?.cerFingerprintInProfile,r=e.hapSignTool.getLocalCerExpiry(e.materialPaths.cerFile,t);return!r||r>=new Date?null:(p(`[reGenerateSign] local certificate expired at ${r.toISOString()}`),{shouldRegenerate:!0,reason:`Local certificate expired at ${r.toISOString()}`,checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!1})})}static async#u(e){return e.storePassword?e.hapSignTool.verifyStorePassword(e.materialPaths.storeFile,e.storePassword)?null:(p("[reGenerateSign] keystore password verification failed"),{shouldRegenerate:!0,reason:"Keystore password verification failed (storeFile may be corrupted or password changed)",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})}):(p("[reGenerateSign] no stored keystore password"),{shouldRegenerate:!0,reason:"No stored keystore password available for verification",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})})}static#p(){return p("[reGenerateSign] all checks passed \u2014 skip regeneration"),{shouldRegenerate:!1,reason:"",checkDetails:Ge({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!0})}}};async function UD(n,e){let[t,r,i,o]=await Promise.all([Pe(n,e,"p12"),Pe(n,e,"csr"),Pe(n,e,"cer"),Pe(n,e,"p7b")]);return{storeFile:t,csrFile:r,cerFile:i,profileFile:o}}async function WD(n,e,t){let r=ag.join(n,"build-profile.json5");if(!Pn.existsSync(r))return;let i;try{i=OD.parse(Pn.readFileSync(r,"utf-8"))}catch{return}let a=(i?.app?.signingConfigs??[]).find(c=>c.name===e)?.material?.storePassword;if(a)try{return await Sn.decryptPassword(a,t)}catch{return}}async function BD(n){p(`Executing: ${n} list targets`);let{stdout:e}=await ig(n,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let i of e.split(`
1342
- `)){let o=i.trim();if(!o||o.startsWith("[Empty]"))continue;let s=o.split(/\s+/),a=s[0],c=s.length>=2?s[1]:"device";a&&!a.startsWith("[Empty]")&&c.toLowerCase()!=="unauthorized"&&t.push(a)}let r=[];for(let i of t)try{p(`Executing: ${n} -t ${i} shell bm get -u`);let{stdout:o}=await ig(n,["-t",i,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),s=VD(o);s&&r.push(s)}catch{p(`[reGenerateSign] Failed to get UDID for ${i}, skipping`)}return r}function VD(n){let e=n.trim();if(!e)return null;let t=e.split(`
1343
- `);for(let i=0;i<t.length-1;i++)if(t[i].includes("udid of current device is")){let s=t[i+1].trim().match(/^[A-Fa-f0-9]{64}$/);if(s)return s[0].toUpperCase()}let r=e.match(/[A-Fa-f0-9]{64}/);return r?r[0].toUpperCase():null}function sg(n){let e=[n.storeFile,n.csrFile,n.cerFile,n.profileFile],t=[];for(let r of e)Pn.existsSync(r)||t.push(r);return{allExist:t.length===0,missing:t}}function qD(n,e){let t=[];for(let r of e)n.includes(r)||t.push(r);return{allPresent:t.length===0,missing:t}}function GD(n,e){let t=[...n].sort(),r=[...e].sort();return t.length!==r.length?!1:t.every((i,o)=>i===r[o])}function Ge(n){let e={force:!1,allFilesExist:!1,missingFiles:[],profileContentNotEmpty:!1,profileNotExpired:!1,bundleNameMatched:!1,teamIdMatched:!1,allDevicesInProfile:!1,missingDeviceUdids:[],aclMatched:!1,cerMatched:!1,cerNotExpired:!1,storePasswordValid:!1};return n.force?{...e,force:!0}:{...e,...n,force:!1}}import{debuglog as Vl}from"util";import{execa as ql}from"execa";async function lg(n,e){let t=await ca(n);if(!t)throw new Error(E.DEVICE_LIST_EMPTY);let r=await YD(e);if(t.length===0)for(let s of r)await zD(n,s.udid,s.deviceName);else for(let s of r)await JD(n,t,s.udid,s.deviceName);let o=(await ca(n)).map(s=>s.id);if(o.length===0)throw new Error(E.DEVICE_LIST_EMPTY);return o}async function zD(n,e,t){await pg(n,e,dg(t))}async function JD(n,e,t,r){for(let i=0;i<e.length;i++){if(t===e[i].udid)return;if(i===e.length-1){await pg(n,t,dg(r));return}}}function dg(n){switch(n){case"liteWearable":return"1";case"wearable":return"2";case"tv":return"3";default:return"4"}}async function cg(n,e=1,t=100){let r=`${re.BASE_URL}${re.DEVICE_LIST_PATH}?encodeFlag=0&start=${e}&pageSize=${t}`,i=fg(n),o=await L.get(r,{headers:i});if(!o)throw Vl("query devices failed: response is null"),new Error(E.ERROR_WHILE_ADD_DEVICE);if(o.statusCode!==200)throw ug(o.statusCode,o.statusText,o.data);let s=JSON.parse(o.data);if(!s||!s.list)throw Vl("query devices failed: response list is null"),new Error(s.ret?.msg||E.ERROR_WHILE_ADD_DEVICE);return{deviceList:s.list,total:s.totalCount||0}}function ug(n,e,t){return n===pt.FORBIDDEN?e===ge.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN):n===pt.UNAUTHORIZED?new Error(E.ERR_UNAUTHORIZED):t.includes(ge.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(E.DEVICE_LIMIT_REACHED):new Error(E.ERROR_WHILE_ADD_DEVICE)}async function ca(n){let t=await cg(n,1,100);if(!t||!t.deviceList||t.deviceList.length===0)return[];let r=[...t.deviceList],i=t.total,o=Math.floor(i/100)+(i%100===0?0:1);for(let s=2;s<=o;s++){let a=await cg(n,s,100);if(!a||!a.deviceList||a.deviceList.length===0)break;r.push(...a.deviceList)}return r}async function pg(n,e,t){let r=`${re.BASE_URL}${re.DEVICE_ADD_PATH}`,i=fg(n),s={deviceName:`auto_sign_device_No.${Math.floor(Math.random()*3e3)}${Date.now()}`,udid:e,deviceType:t},a=await L.postAllowFailure(r,{headers:i,params:s});if(!a)throw Vl("add device failed: response is null"),new Error(E.ERROR_WHILE_ADD_DEVICE);if(a.statusCode!==200)throw ug(a.statusCode,a.statusText,a.data);let c=a.data,l=JSON.parse(a.data);if(!l||!l.ret||l.ret.code!==0)throw c.includes(ge.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(E.DEVICE_LIMIT_REACHED):c.includes(ge.DEVICE_NAME_REPEAT_CODE)?new Error(E.DEVICE_NAME_REPEAT):new Error(E.ERROR_WHILE_ADD_DEVICE)}function fg(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}async function YD(n){let{stdout:e}=await ql(n,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let i of e.split(`
1344
- `)){let o=i.trim();if(!o||o.startsWith("[Empty]"))continue;let s=o.split(/\s+/),a=s[0],c=s.length>=2?s[1]:"device";a&&!a.startsWith("[Empty]")&&c.toLowerCase()!=="unauthorized"&&t.push(a)}let r=[];for(let i of t)try{let o=await KD(i,n),s=await XD(i,n);o.length>0&&r.push({id:"",udid:o,deviceName:s})}catch{p(`Failed to get device info for ${i}, skipping`)}return r}async function KD(n,e){let{stdout:t}=await ql(e,["-t",n,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),r=t.trim();if(!r)return"";let i=r.split(`
1345
- `);for(let s=0;s<i.length-1;s++)if(i[s].includes("udid of current device is")){let c=i[s+1].trim().match(/^[A-Fa-f0-9]{64}$/);if(c)return c[0].toUpperCase()}let o=r.match(/[A-Fa-f0-9]{64}/);return o?o[0].toUpperCase():""}async function XD(n,e){let{stdout:t}=await ql(e,["-c","-t",n,"shell","getprop","hw_sc.build.os.deviceType"],{stdio:["ignore","pipe","pipe"]});return ZD(t)}function ZD(n){let e=n.trim();return!e||e.includes("inaccessible")?"phone":n.includes("liteWearable")?"liteWearable":n.includes("wearable")?"wearable":n.includes("tv")?"tv":"phone"}import Kn from"fs";import{createHash as QD}from"crypto";import{debuglog as Ht}from"util";import{Buffer as hg}from"buffer";import{createPublicKey as eR,X509Certificate as Gl}from"crypto";import{readFileSync as tR}from"fs";import Xn from"node-forge";async function gg(n,e){console.log("Start generating profile");let{productName:t,bundleName:r,projectPath:i,aclPermissionList:o,allDeviceIds:s,certIds:a,keyAlias:c,keyPwd:l}=e;if(s==null||s.length===0)throw new Error(E.DEVICE_LIST_EMPTY);let d=`${re.BASE_URL}${re.PROVISION_ADD_TEST_PATH}`,g=nR(t,r),v=await iR(n,d,a||[],r,s,g,o||[]);if(!v||!v.profileInfo||!v.profileInfo.provisionFileUrl)throw Ht("add provision failed, the provision file url is null"),new Error(E.ADD_PROFILE_FAIL);let D=v.profileInfo,ye=(await cR(n,D.provisionFileUrl)).urlList,ze=v.profileInfo.id;if(ye&&ye.length>0){let Cn=await Gh(t,i),Ut=Cn.profilePath;if(!await lR(ye,Ut))throw await mg(n,ze),new Error(E.ERROR_WHILE_DOWNLOAD_PROFILE);if(await mg(n,ze),Kn.existsSync(Cn.certPath)&&Kn.existsSync(Ut)&&Kn.existsSync(Cn.p12Path)){let Ig=Kn.readFileSync(Cn.certPath,"utf8"),Ag=Kn.readFileSync(Ut,"utf8");return dR(Ag,Ig,Cn.p12Path,c,l)||aR(Ut),Ut}}throw new Error(E.ADD_PROFILE_FAIL)}function nR(n,e){let t=n?`${n}_`:"";return`${rR(`${t}${e}_${e}`)}`}function rR(n){return QD("sha256").update(n).digest("hex").substring(0,16)}async function iR(n,e,t,r,i,o,s){oR(r);let a=Jl(n),c={certList:t,packageName:r,deviceList:i,provisionName:o};s.length&&(c.aclPermissionList=s);let l=await L.postAllowFailure(e,{headers:a,params:c});if(!l)throw Ht("add provision failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(l.statusCode!==200)throw zl(l.statusCode,l.statusText,l.data);let d=JSON.parse(l.data);if(!d||!d.ret||d.ret.code!==0)throw Ht(`add provision fail: ${l.data}`),sR(l.data,o),new Error(d.ret?.msg||E.ADD_PROFILE_FAIL);let g=d.provisionFileUrl;return{profileInfo:{id:d.id,name:o,provisionFileUrl:g}}}function zl(n,e,t){return n===pt.FORBIDDEN?e===ge.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN):n===pt.UNAUTHORIZED?new Error(E.ERR_UNAUTHORIZED):t.includes(ge.PROVISION_EXCEEDS_LIMIT_CODE)?new Error(E.TEST_PROVISION_EXCEEDS_LIMIT):new Error(E.ADD_PROFILE_FAIL)}function oR(n){if(!n||n.trim().length===0)throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE);if(!Fe.BUNDLE_NAME_REGEX.test(n))throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE)}function sR(n,e){if(n.includes(ge.PROVISION_EXCEEDS_LIMIT_CODE))throw new Error(E.TEST_PROVISION_EXCEEDS_LIMIT);if(n.includes(ge.PROVISION_NAME_REPEAT_CODE)&&e)throw new Error(E.PROFILE_NAME_REPEAT)}async function mg(n,e){if(!e||e.trim().length===0)return;let t=`${re.BASE_URL}${re.PROVISION_DELETE_PATH}?id=${e}`,r=await L.deleteAllowFailure(t,{headers:Jl(n)});if(r.statusCode!==200)throw zl(r.statusCode,r.statusText,r.data);let i=JSON.parse(r.data);(!i||!i.ret||i.ret.code!==0)&&Ht(`delete provision failed: ${r.data}`)}function aR(...n){for(let e of n)try{Kn.existsSync(e)&&Kn.unlinkSync(e)}catch(t){Ht(`delete local sign file error: ${t.message}`)}}async function cR(n,e){let t=`${re.BASE_URL}${re.CERT_DOWNLOAD_URL_PATH}`,r=Jl(n),i={sourceUrls:e},o=await L.postAllowFailure(t,{headers:r,params:i});if(!o)throw Ht("get download list failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(o.statusCode!==200)throw zl(o.statusCode,o.statusText,o.data);let s=JSON.parse(o.data);if(!s||!s.urlsInfo||s.urlsInfo.length===0)throw Ht("download: The application does not exist"),new Error(s.ret?.msg||E.ADD_PROFILE_FAIL);return{urlList:s.urlsInfo,hasPermission:!0}}async function lR(n,e){if(!n||n.length===0)return!1;let t=n[0];return await Wi(t.newUrl,e,t.sha256),!0}function dR(n,e,t,r,i){return uR(n,e),r=r||Fe.TARGET_FRIENDLY_NAME,i=i||"",pR(e,t,r,i),!0}function uR(n,e){if(e.lastIndexOf(Fe.CERT_BEGIN_HEADER)<0)throw new Error(E.ERROR_WHILE_PARSE_PROFILE);let t=JSON.stringify(e.substring(e.lastIndexOf(Fe.CERT_BEGIN_HEADER))).replace(/\\r/g,"");if(!n.includes(t))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT);return!0}function pR(n,e,t,r){let i=n.matchAll(Fe.CERTIFICATE_PATTERN_GLOBAL),o=[],s=new Date;for(let c of i)try{let l=c[0],d=fR(l),g=new Date(d.validFrom),v=new Date(d.validTo);if(s<g||s>v){let D=`Certificate is not valid, Valid from ${g} to ${v}`;throw console.warn(`checkCertificateInValidityPeriod: ${D}`),new Error(E.CERTIFICATE_HAS_EXPIRED)}o.push(d)}catch(l){throw console.warn(`checkCertificateInValidityPeriod\uFF1A ${l.message}`),new Error(E.CERTIFICATE_HAS_EXPIRED,{cause:l})}if(!o||o.length===0)throw new Error(E.CERTIFICATE_HAS_EXPIRED);if(!hR(e,t,r,o))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT)}function fR(n){let e="-----BEGIN CERTIFICATE-----",t=n.trim();try{if(t.startsWith(e))return new Gl(t);let r=hg.from(t,"base64");return new Gl(r)}catch(r){throw new Error("decodeBase64ToX509Certificate",{cause:r})}}function mR(n){if(n.cert){let e=Xn.pki.publicKeyToPem(n.cert.publicKey);return eR(e).export({type:"spki",format:"der"})}if(n.asn1)try{let e=Xn.asn1.toDer(n.asn1).getBytes(),t=hg.from(e,"binary");return new Gl(t).publicKey.export({type:"spki",format:"der"})}catch(e){return Ht(`Failed to parse cert from asn1: ${e}`),null}return null}function hR(n,e,t,r){try{let i=tR(n),o=Xn.asn1.fromDer(Xn.util.createBuffer(i)),c=Xn.pkcs12.pkcs12FromAsn1(o,t).getBags({bagType:Xn.pki.oids.certBag})[Xn.pki.oids.certBag]||[];for(let l of c){let d=l.attributes?.friendlyName?.[0];if(!d||d.toLowerCase()!==e.toLowerCase())continue;let g=mR(l);if(!g)continue;if(r.some(D=>{let He=D.publicKey.export({type:"spki",format:"der"});return g.equals(He)}))return!0}return!1}catch(i){let o=i instanceof Error?i.message:String(i);return Ht(`Failed to process P12 file: ${n}, error: ${o}`),!1}}function Jl(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}var vg="https://developer.huawei.com",gR={"ohos.permission.SYSTEM_FLOAT_WINDOW":"/consumer/cn/doc/harmonyos-guides/window-pipwindow","ohos.permission.READ_CONTACTS":"/consumer/cn/doc/harmonyos-references/js-apis-contact#contactselectcontacts10","ohos.permission.READ_IMAGEVIDEO":"/consumer/cn/doc/harmonyos-guides/select-user-file#%E9%80%89%E6%8B%A9%E5%9B%BE%E7%89%87%E6%88%96%E8%A7%86%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.WRITE_IMAGEVIDEO":"/consumer/cn/doc/harmonyos-guides/savebutton","ohos.permission.READ_AUDIO":"/consumer/cn/doc/harmonyos-guides/select-user-file#%E9%80%89%E6%8B%A9%E9%9F%B3%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.WRITE_AUDIO":"/consumer/cn/doc/harmonyos-guides/save-user-file#%E4%BF%9D%E5%AD%98%E9%9F%B3%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.READ_PASTEBOARD":"/consumer/cn/doc/harmonyos-guides/pastebutton"},yR="/consumer/cn/doc/harmonyos-guides/restricted-permissions";function vR(n){let e=gR[n];return e?`${vg}${e}`:void 0}function wR(){return`${vg}${yR}`}var bR={"acl.can.apply.text":"Permission Application Scenarios","acl.permissions.warn":"Note: You are applying for restricted ACL permissions: {0} These permissions are subject to review together with your app release. For a faster review process, apply for the following permissions instead, if they are sufficient for your purposes: {1} {2}"};function yg(n,e){return(bR[n]??n).replace(/\{(\d+)\}/g,(r,i)=>String(e[Number(i)]??""))}function SR(n){return Array.from(n).join(", ")}function wg(n,e){if(n.size===0)return;let t=En.getAclPermissionInfos(e),r=new Set;for(let g of t)n.has(g.permissionName)&&r.add(g);for(let g of r){let v=vR(g.permissionName);v!=null&&(g.permissionHelpUrlKey=v)}let i=new Set;for(let g of r)i.add(g.permissionDisplayName);let o=new Set;for(let g of r)if(g.permissionHelpUrlKey!=null){let v=g.permissionInsteadName??g.permissionDisplayName;o.add(`${v} (${g.permissionHelpUrlKey})`)}let s=wR(),a=yg("acl.can.apply.text",[]),c=s?`${a} (${s})`:a,l=o.size>0?Array.from(o).join(", ")+".":"",d=yg("acl.permissions.warn",[SR(i),l,c]);console.log(d)}var la=class{_project=null;get project(){if(!this._project)throw new Error("Project not initialized. Call checkProjectDir first.");return this._project}checkProjectDir(e){try{return this._project=Y.discover(process.cwd()),{passed:!0,message:""}}catch(t){return p(`[EnvCheck] Project.discover() failed: ${t.message}`),e(se.PROJECT_DIR_MISSING)}}checkProduct(e,t){try{return this._project.validateProduct(e),{passed:!0,message:""}}catch(r){return p(`[EnvCheck] Product validation failed: ${r.message}`),t(`Product "${e}" not found.Check the product property in the build-profile.json5 file.`)}}checkBundleName(e,t){try{return this._project.getBundleName(),{passed:!0,message:""}}catch(r){return p(`[EnvCheck] BundleName check failed: ${r.message}`),t(`bundleName was not found under product "${e}".Check the bundleName configuration.`)}}checkAtomicService(){return this._project.isAtomicService()?{passed:!1,message:se.ATOMIC_SERVICE_UNSUPPORTED}:{passed:!0,message:""}}};import ER from"fs";import bg from"path";var da=class{constructor(e){this.toolProvider=e}toolProvider;checkJava(e){try{return this.toolProvider.assertJava(),{passed:!0,message:""}}catch(t){return p(`[EnvCheck] Java check failed: ${t.message}`),e(`${t.message}`)}}checkHapSignTools(e){let t=this.toolProvider.sdkPath,r=bg.join(t,"default","openharmony","toolchains","lib","hap-sign-tool.jar");if(!ER.existsSync(r)){let i=bg.join("sdk","default","openharmony","toolchains","lib","hap_sign_tools.jar");return e(`hap_sign_tools.jar not found.Check whether ${i} exists.`)}return{passed:!0,message:""}}};var ua=class{_userInfo=null;async ensureUserInfo(){if(!this._userInfo)try{this._userInfo=await De.getUserInfo()}catch(e){return p(`[EnvCheck] Failed to load user info: ${e.message}`),null}return this._userInfo}async checkLogin(e){try{return await De.isLoggedIn()?(await this.ensureUserInfo(),{passed:!0,message:""}):e(se.LOGIN_REQUIRED)}catch(t){return p(`[EnvCheck] Login check failed: ${t.message}`),e(se.LOGIN_REQUIRED)}}async checkTeamInfo(e){if(!await this.ensureUserInfo())return e(se.TEAM_INFO_FAILED);try{if((await nn()).teamList.length>0)return{passed:!0,message:""}}catch(r){return p(`[EnvCheck] Team API error: ${r.message}`),e(se.TEAM_INFO_FAILED)}return p("[EnvCheck] No teams found for current user"),e(se.TEAM_INFO_FAILED)}async checkRealname(e){let t=await this.ensureUserInfo();return t?t.isRealName===!1?e(se.REALNAME_REQUIRED):t.isRealName!==!0?(p("[EnvCheck] Scenario 3 Real-name check: AGC API did not return realName field"),e(se.REALNAME_REQUIRED)):{passed:!0,message:""}:e(se.SESSION_EXPIRED)}async checkTeamId(e){let t=await this.ensureUserInfo();if(!t)return{passed:!0,message:""};let r=e??"";try{let i=await nn();if(r=e??(i.teamList.length>0?i.teamList[0].id:t.userId)??"",!i.teamList.some(s=>s.id===r)){let s=`team-id for ${r} not found.Run devecocli auth team list to view the team to which the logged-in user belongs.`;return p(`[EnvCheck] ${s}`),{passed:!1,message:s}}return{passed:!0,message:""}}catch(i){return p(`[EnvCheck] Team ID check failed: ${i.message}`),{passed:!1,message:`team-id for ${r} not found.Run devecocli auth team list to view the team to which the logged-in user belongs.`}}}async checkRegion(e){let t=await this.ensureUserInfo();return t?t.countryCode?t.countryCode!=="CN"?e(se.REGION_CHINA_ONLY):{passed:!0,message:""}:(p("[EnvCheck] Scenario 12 Region check: AGC API did not return nationalCode field"),e(se.REGION_CHINA_ONLY)):e("User session expired or token invalid. Please login again.")}};async function PR(n){try{let{teamList:e}=await nn();if(e.length>0)return e[0].id}catch(e){p(`[EnvCheck] resolveDefaultTeamId failed: ${e.message}`)}return n??""}async function CR(n){let e=await De.getUserInfo(),t=await De.refreshToken();if(!e||!t?.accessToken)throw new Error("Not logged in");let r=n||await PR(e.userId);if(!r)throw new Error("No team found");let i={uid:e.userId??"",teamId:r,accessToken:t.accessToken};return(await ca(i)).map(s=>({deviceId:s.udid,deviceName:s.deviceName}))}var pa=class{constructor(e){this.toolProvider=e}toolProvider;async checkDevice(e,t){try{let r=await CR(t);if(r.length>0)return p(`[EnvCheck] Scenario 4 Device check: ${r.length} device(s) found in AGC cloud, skipping local device check`),{passed:!0,message:""};p("[EnvCheck] Scenario 4 Device check: no cloud devices found, falling back to local hdc");let o=await oe.from(this.toolProvider).listDevices();return o.length===0?(p("[EnvCheck] Scenario 4 Device check: no local devices found"),e(se.DEVICE_MISSING)):o.some(a=>yt(a.serial))?{passed:!0,message:""}:(p("[EnvCheck] Scenario 4 Device check: local device found but not an emulator"),e(se.DEVICE_MISSING))}catch(r){return p(`[EnvCheck] Scenario 4 Device check failed: ${r.message}`),e(se.DEVICE_DETECT_FAILED)}}};var fa=class{projectChecker=new la;toolchainChecker=null;authChecker=new ua;deviceChecker=null;constructor(){}async preflight(e){let t=r=>this.blockingFail(r);return!(!await this.runAuthChain(e,t)||!await this.initToolchain()||!await this.runDeviceCheck(e,t)||!await this.runProjectChecks(e,t)||!await this.runAuxChecks(e))}async runAuthChain(e,t){let r=o=>(o.passed||this.fail(o),!0),i=[()=>this.authChecker.checkLogin(t),()=>this.authChecker.checkRealname(t),()=>this.authChecker.checkTeamInfo(t)];for(let o of i)if(!r(await o()))return!1;return!(e.teamId&&!r(await this.authChecker.checkTeamId(e.teamId)))}async initToolchain(){try{let e=await A.new();return this.toolchainChecker=new da(e),this.deviceChecker=new pa(e),!0}catch(e){throw p(`[EnvCheck] ToolProvider.new() failed: ${e.message}`),new Error(se.TOOLCHAIN_INIT_FAILED,{cause:e})}}async runDeviceCheck(e,t){return(i=>i.passed?!0:(this.fail(i),!1))(await this.deviceChecker.checkDevice(t,e.teamId))}async runProjectChecks(e,t){let r=o=>o.passed?!0:(this.fail(o),!1);if(!r(this.projectChecker.checkProjectDir(t))||!r(this.projectChecker.checkAtomicService()))return!1;let i=[()=>this.projectChecker.checkProduct(e.productName,t),()=>this.projectChecker.checkBundleName(e.productName,t),()=>this.toolchainChecker.checkJava(t),()=>this.toolchainChecker.checkHapSignTools(t)];for(let o of i)if(!r(o()))return!1;return!0}async runAuxChecks(e){let t=r=>r.passed?!0:(this.fail(r),!1);return!e.teamId&&!t(await this.authChecker.checkTeamId(e.teamId))?!1:(await this.authChecker.checkRegion(r=>this.blockingFail(r)),!0)}blockingFail(e){return{passed:!1,message:e}}fail(e){throw p(`[EnvCheck] FAIL: ${e.message}`),new Error(e.message)}};var Sg=5*1024*1024;function AR(n){try{let e=Kl.statSync(n);if(e.size>Sg)throw new Error(`Profile file too large: ${e.size} bytes (max ${Sg} bytes): ${n}`);let t=Kl.readFileSync(n,"utf-8");return Pg.parse(t)}catch(e){if(e.code==="ENOENT")return{app:{signingConfigs:[],products:[]}};throw new Error(`Failed to read profile: ${n}`,{cause:e})}}function DR(n){n.app||(n.app={signingConfigs:[],products:[]}),n.app.signingConfigs||(n.app.signingConfigs=[]),n.app.products||(n.app.products=[])}async function RR(n){if(n.keyPwd===n.storePassword){let r=await Sn.encryptedPassword(n.keyPwd,n.p12FilePath);return{keyPassword:r,storePassword:r}}let e=await Sn.encryptedPassword(n.keyPwd,n.p12FilePath),t=await Sn.encryptedPassword(n.storePassword,n.p12FilePath);return{keyPassword:e,storePassword:t}}async function TR(n,e,t){let r=Eg.join(n,"build-profile.json5"),i=AR(r);DR(i);let o=t??"default",{keyPassword:s,storePassword:a}=await RR(e),c={name:o,type:"HarmonyOS",material:{certpath:e.cerFilePath,keyAlias:e.keyAlias,keyPassword:s,profile:e.profileFilePath,signAlg:ft.signAlg,storeFile:e.p12FilePath,storePassword:a}},l=i.app?.signingConfigs?.findIndex(g=>g.name===o);l!==void 0&&l>=0?i.app.signingConfigs[l]=c:i.app.signingConfigs.push(c);let d=i.app?.products?.findIndex(g=>g.name===o);d!==void 0&&d>=0?i.app.products[d].signingConfig=o:i.app.products.push({name:o,signingConfig:o}),Kl.writeFileSync(r,Pg.stringify(i,null,2),"utf-8")}async function xR(n){let e=await De.getUserInfo(),t=await De.refreshToken();if(!e||!t)throw new Error("Failed to obtain login credentials. Run `devecocli auth login` again.");return{uid:e.userId??"",teamId:n.teamId??e.userId??"",accessToken:t.accessToken??""}}async function LR(n){let e=n.product||"default";await new fa().preflight({productName:e,teamId:n.teamId}),console.log("Executing signature generate command");let r=await xR(n),i=await A.new(),{shouldRegenerate:o}=await qi.shouldRegenerate({force:n.force??!1,teamId:r.teamId,productName:n.product},i);if(!o){console.log(Yl("Signature generation completed successfully."));return}await NR(n,r,i),console.log(Yl("Signature generation completed successfully."))}async function NR(n,e,t){let r=await _l(e,n.product),i=OR(n,e,r,t);i.allDeviceIds=await lg(e,t.hdcPath),await gg(e,i);let o=Y.discover(process.cwd()).rootDir;await TR(o,r,n.product??"default"),console.log(Yl(`Signing config written to ${Eg.join(o,"build-profile.json5")}`))}function OR(n,e,t,r){let i=process.cwd(),o=Y.discover(i),s=sa(o,r);return wg(s,o),{productName:n.product||"default",bundleName:o.getBundleName(n.product||"default"),projectPath:o.rootDir,teamId:e.teamId,force:n.force||!1,aclPermissionList:[...s],certIds:[t.certId],keyAlias:t.keyAlias,keyPwd:t.keyPwd}}var Cg=new kR("signature").description("Generate application signature.");Cg.command("generate").description("Automatically generate signing materials and write them to the project configuration.").option("--force","Force overwrite existing local signing materials.").option("--team-id <team-id>","Specify the team ID to use.").option("--product <product>","Specify the product. The default value is default.").action(async n=>{let e={event:b.CommandExecuted,args:["signature","generate",...n.force?["--force"]:[],...n.teamId?["--team-id"]:[],...n.product?["--product"]:[]]},t=Date.now(),r=!0,i=null;try{await LR(n)}catch(o){r=!1,i=B(o),console.error(IR(o.message)),process.exitCode=1}finally{let o={duration_ms:Date.now()-t,success:r,error_code:i};await I.track(e,o)}});var kg=Cg;if(!Bt())try{I.init(ma.join(be(),"TraceLogData")),I.startScheduler()}catch(n){h.error(`[telemetry] init failed: ${n instanceof Error?n.message:String(n)}`)}(async()=>{if(!Bt())try{let n=await A.new();I.setSourceType(n.sourceType);let e=await A.getCltVersion();e&&I.setCltVersion(e);let t=await A.getStudioVersion();t&&I.setStudioVersion(t)}catch(n){h.error(`[telemetry] toolchain info failed: ${n instanceof Error?n.message:String(n)}`)}})();ae.name("devecocli").description(`HarmonyOS application development command line tool
1356
+ `),console.log(ve("[compat:check] === end stdout ===")));let i=new oe("errorCode",`Compatibility scan failed: ${o.message}`+(o.stderr?`
1357
+ ${o.stderr}`:""));throw o.stdout&&(i.stdout=o.stdout),i}}function WD(r,e){if(!AD.includes(e.format))throw new SD(`--format must be default, csv, or json (console: default|json, file: default|csv|json). got "${e.format}"`);if(r.length>0&&e.modules&&e.modules.length>0)throw new oe("errorCode","Cannot use `--modules` together with file arguments. Use either file-level scanning (with files) or module-level scanning (with --modules).");if(!e.sourceVersion)throw new oe("errorCode","--source-version is required.");if(!e.targetVersion)throw new oe("errorCode","--target-version is required.");if(!e.outputPath&&e.format==="csv")throw new oe("errorCode","--format csv requires --output-path. For console output, use --format json or --format default (or omit the flag).")}function VD(r,e){let t=[];if(r.sourceVersion&&!e.includes(r.sourceVersion)&&t.push(`--source-version "${r.sourceVersion}"`),r.targetVersion&&!e.includes(r.targetVersion)&&t.push(`--target-version "${r.targetVersion}"`),t.length>0){let n=t.length>1?"are":"is";throw new oe("errorCode",`${t.join(" and ")} ${n} not in the available SDK version list.
1358
+ Run \`devecocli compat versions\` to see all available versions.`)}if(r.sourceVersion&&r.targetVersion){let n=e.indexOf(r.sourceVersion),o=e.indexOf(r.targetVersion);if(n>=o)throw new oe("errorCode",`--target-version "${r.targetVersion}" must be later than --source-version "${r.sourceVersion}". Run \`devecocli compat versions\` to see the available order.`)}}function GD(r,e,t,n,o){o==="none"&&(t==="json"?$D(r,n):FD(r,n)),jD(r,e)}function qD(r,e){let t=J.dirname(r),n=J.basename(r),o=e.slice(1).map(i=>i.startsWith("--")?i:`"${i}"`).join(" ");u(ve(`[compat:check] command: cd "${t}" && node "${n}" ${o}`))}function zD(r){try{CD(r),u(ve(`[compat:check] cleaned up tmp report: "${r}"`))}catch(e){u(ve(`[compat:check] failed to clean up tmp report: ${e.message}`))}}var JD=[".csv",".json"];function YD(r){return JD.includes(r.toLowerCase())}function KD(r,e){if(!r)return{kind:"none"};let t=J.extname(r).toLowerCase();if(!YD(t))return{kind:"dir",dirPath:J.resolve(r)};if(t===".csv"&&!(e==="default"||e==="csv")||t===".json"&&e!=="json")throw new oe("errorCode",`The --output-path file extension '${t}' does not match --format ${e}. Use --format ${t===".json"?"json":"default"}, or rename the file.`);return{kind:"file",filePath:J.resolve(r),ext:t}}function XD(r){if(r.kind==="file"){if(fa(r.filePath))throw new oe("errorCode",`Target file "${r.filePath}" already exists. Remove it first, or choose a different --output-path.`);let e=J.dirname(r.filePath);if(!fa(e))throw new oe("errorCode",`Target directory "${e}" does not exist. Create it first, or choose a different --output-path.`)}else if(r.kind==="dir"&&!fa(r.dirPath))throw new oe("errorCode",`Target directory "${r.dirPath}" does not exist. Create it first, or choose a different --output-path.`)}function Lg(r){return JSON.stringify({records:r,count:r.length},null,2)+`
1359
+ `}function ZD(r,e,t,n){n===".csv"?Ag(r,t):Dg(t,Lg(e),"utf8"),u(ve(`[compat:check] saved report: "${t}"`))}function QD(r,e,t,n){if(n==="json"){let i=J.basename(r,".csv"),s=J.join(t,`${i}.json`);return Dg(s,Lg(e),"utf8"),u(ve(`[compat:check] saved report: "${s}"`)),s}let o=J.join(t,J.basename(r));return Ag(r,o),u(ve(`[compat:check] saved report: "${o}"`)),o}async function eR(r,e){let t=new ze(r,process.cwd(),!0),n=e.modules&&e.modules.length>0?e.modules[0]:void 0;try{await t.compileNative("default",n)}catch(o){throw new oe("errorCode",`hvigorw compileNative failed (module=${n??"<project>"}): `+o.message,{cause:o})}}async function tR(r,e){WD(r,e);let t=W.discover(process.cwd());e.modules&&e.modules.length>0&&RD(t,e.modules),r.length>0&&TD(r);let n=await A.new(),{apiChangeDir:o,scriptPath:i}=n.getApiscanPaths();u(ve(`[compat:check] script: "${i}"`));let s=Tg(o);VD(e,s),e.outputPath&&u(ve(`[compat:check] outputPath: "${e.outputPath}"`));let a=KD(e.outputPath,e.format);return u(ve(`[compat:check] outputTarget: ${a.kind}`)),XD(a),{project:t,scriptPath:i,target:a,toolProvider:n}}function rR(r,e,t,n){if(t.kind==="file")return ZD(r,e,t.filePath,t.ext),t.filePath;if(t.kind==="dir")return QD(r,e,t.dirPath,n);if(t.kind==="none")return null;throw new oe("errorCode",`Unexpected output target kind: ${t.kind}`)}async function nR(r,e,t,n,o){let i=ID({text:"Running compatibility check...",color:"cyan"}).start();try{await eR(r.toolProvider,t);let s=UD(r.scriptPath,e,r.project,t);qD(r.scriptPath,s);let a=await BD(r.toolProvider,s),c=_D(a,ed.tmpdir());if(!c)throw new oe("errorCode","Scanner output format unexpected: missing report path.");u(ve(`[compat:check] tmp csv: "${c}"`));let l=OD(c),d=rR(c,l,r.target,t.format);zD(c),i.stop(),GD(l,d,t.format,t.limit,r.target.kind),await Jn(n,!0,null,o)}catch(s){i.fail("Compatibility check failed");let a=td(s);throw await Jn(n,!1,a,o),s}}async function Ng(r,e){let t=Date.now(),n=["check","compat"];try{let o=await tR(r,e);await nR(o,r,e,t,n)}catch(o){let i=td(o);throw await Jn(t,!1,i,n),o}}function iR(r){let e=Number(r);if(!Number.isInteger(e)||e<=0)throw new oR(`--limit must be a positive integer (got "${r}")`);return e}var rd=new Mg("compat").description("Compatibility checking utilities.");rd.description("Check source code compatibility against a target SDK version. By default, performs a project-level scan; pass positional `files...` for file-level scanning; pass `--modules` for module-level scanning.").arguments("[files...]").option("--source-version <version>","Current project SDK version (required; use `compat versions` to list available versions). On zsh, quote the value because version strings contain parentheses; run `compat versions` first to copy a real example.").option("--target-version <version>","Target SDK version (required; use `compat versions` to list available versions). On zsh, quote the value because version strings contain parentheses; run `compat versions` first to copy a real example.").option("--modules <modules...>","Modules to check (default: all modules in the project). Mutually exclusive with positional file arguments.").option("--format <format>",'Output format: "json" or "default" (text) for console; "csv", "json", or "default" for file output (--output-path). "csv" requires --output-path.',"default").option("--output-path <path>","Directory to write the detailed report CSV to (default: ./compat-output)").option("--limit <num>","Maximum number of change records to display (default: 100)",iR,100).action(async(r,e)=>{await Ng(r,e)});rd.command("versions").description("List all available target SDK versions for compatibility checking").option("--format <format>","Output format: default or json").action(async(r,e)=>{let t=e.optsWithGlobals().format;await xg(t)});var sR=new Mg("check").description("Run DevEco project checks").addCommand(rd).addCommand(Jl()).addCommand(Ql()),Og=sR;import{Command as JT}from"commander";import{green as kd,red as YT}from"colorette";import Id from"fs";import wy from"path";import by from"json5";import{readFileSync as OR}from"fs";import{join as aR}from"path";var ce={BASE_URL:"https://connect-api.cloud.huawei.com",CERT_LIST_PATH:"/api/cps/harmony-cert-manage/v1/cert/list",CERT_DELETE_PATH:"/api/cps/harmony-cert-manage/v1/cert/delete",CERT_ADD_PATH:"/api/cps/harmony-cert-manage/v1/cert/add",CERT_DOWNLOAD_URL_PATH:"/api/amis/app-manage/v1/objects/url/reapply",DEVICE_ADD_PATH:"/api/cps/device-manage/v1/device/add",DEVICE_LIST_PATH:"/api/cps/device-manage/v1/device/list",PROVISION_ADD_REAL_PATH:"/api/cps/provision-manage/v1/ide/real/provision/add",PROVISION_ADD_TEST_PATH:"/api/cps/provision-manage/v1/ide/test/provision/add",PROVISION_DELETE_PATH:"/api/cps/provision-manage/v1/provision/delete"},Ve={CERT_NAME_PREFIX:"auto_debug_",CERT_TYPE_DEBUG:"1",TEAM_ID_INVALID_CHARS:/[\\/.:]/g,CERT_PATTERN:/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/,TARGET_FRIENDLY_NAME:"debugKey",CERTIFICATE_PATTERN_GLOBAL:/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g,BUNDLE_NAME_REGEX:/^[a-zA-Z][a-zA-Z0-9._-]*$/,CERT_BEGIN_HEADER:"-----BEGIN CERTIFICATE-----",CERT_SAVE_DIR:aR(".ohos","config"),DOWNLOAD_CONNECT_TIMEOUT_MS:5e3},we={SUCCESS_MARKER:'"code":0',SQUARE_BRACKETS:"[]",OPENPROXY_BLOCKED_URL:"Openproxy_Blocked_URL_list",CERT_LIMIT_CODE:"205389872",USER_NOT_HARMONY_CODE:"205389904",DEVICE_EXCEEDS_LIMIT_CODE:"205389859",DEVICE_NAME_REPEAT_CODE:"205389857",PROVISION_EXCEEDS_LIMIT_CODE:"205389938",PROVISION_NAME_REPEAT_CODE:"205389830"},vt={FORBIDDEN:403,UNAUTHORIZED:401},E={ERR_FORBIDDEN:"You do not have AppGallery Connect permissions for the current team. Request access from the team administrator or switch to a team where you have permissions.",ERR_UNAUTHORIZED:"Invalid AccessToken. Sign in and try again.",ERR_CERT_LIMIT_REACHED:"The number of certificates has reached the limit. Delete some certificates and try again.",ERR_CERT_NETWORK_ERROR:"Ensure the external network connection is available before downloading the certificate.",ERR_CERT_INVALIDATE:"The downloaded .cer file is invalid. Try again.",ERR_DOWNLOAD_CER:"Failed to download the certificate file. Check the following configurations: Network connection, HTTP Proxy, etc.",ERR_USER_NOT_HARMONY:"The user is not in harmony allow list, please grant the permission",ERR_READ_CSR:"Failed to read the .csr file, please try again later",ERROR_WHILE_ADD_DEVICE:"Failed to add the device, please try again.",DEVICE_LIMIT_REACHED:"The number of devices has reached the limit. Delete some unused devices and try again.",DEVICE_NAME_REPEAT:"Duplicate device name, please try again.",DEVICE_LIST_EMPTY:"No devices available.",ADD_PROFILE_FAIL:"Failed to add the profile, please try again.",NO_AGC_PERMISSION:"You do not have the AppGallery Connect permission with the current team. Apply for the permission form the team administrator, or switch to a team with which you already have the permission.",ERROR_WHILE_DOWNLOAD_PROFILE:"Failed to download the profile, please try again.",PROFILE_NAME_REPEAT:"The profile name already exists in the AGC.",ERROR_WHILE_PARSE_PROFILE:"Failed to parse the profile, please try again.",TEST_PROVISION_EXCEEDS_LIMIT:"Provision number exceeds limit.",CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT:"The certificate application file is inconsistent with the file in profile, please try again.",CERTIFICATE_HAS_EXPIRED:"The signature does not take effect or has expired. It may be the current system time is inaccurate, please calibrate the system time and sign again.",ERROR_SIGN_BUNDLE_NAME_VALIDATE:"The bundle name contains 7 to 128 characters, including only letters, digits, and underscores (_). It must be start with a letter and contain at least three segments separated by periods (.), each of the segments ending with a digit or letter."},ue={TOOLCHAIN_INIT_FAILED:"Auto-sign failed: unable to initialize toolchain",LOGIN_REQUIRED:"Failed to automatically generate signatures.Run devecocli auth login to sign in.",TEAM_INFO_FAILED:"Failed to obtain user team information.Check the network connection, HTTP proxy, and other configurations.",REALNAME_REQUIRED:"Users without real-name verification are not supported.Complete real-name verification in AppGallery Connect.",SESSION_EXPIRED:"User session expired or token invalid. Please login again.",REGION_CHINA_ONLY:"This feature is only available for accounts registered in Chinese mainland.",DEVICE_MISSING:"Unable to create the profile file due to missing devices.Connect a device through IP or USB, or manually add a device in AppGallery Connect first.If you are installing the HAP package on an emulator, you can skip the signing step.",DEVICE_DETECT_FAILED:"Unable to detect devices. Please check hdc status. If installing HAP on an emulator, signature step can be skipped.",PROJECT_DIR_MISSING:"Not in a valid project directory (project-level build-profile.json5 not found).",ATOMIC_SERVICE_UNSUPPORTED:"AtomicService projects are not yet supported. Please configure signing manually."};function ma(r){return{uid:r.uid,teamId:r.teamId,oauth2Token:r.accessToken}}function nd(r){let e=r.replace(Ve.TEAM_ID_INVALID_CHARS,"");return`${Ve.CERT_NAME_PREFIX}${e}.cer`}function Yn(r,e,t){if(r===vt.FORBIDDEN)return e===we.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN);if(r===vt.UNAUTHORIZED)return new Error(E.ERR_UNAUTHORIZED);if(t.includes(we.USER_NOT_HARMONY_CODE))return new Error(E.ERR_USER_NOT_HARMONY);if(t.includes(we.CERT_LIMIT_CODE))return new Error(E.ERR_CERT_LIMIT_REACHED);let n=cR(t);return new Error(n??E.ERR_DOWNLOAD_CER)}function cR(r){let e=_g(r);if(!e||typeof e!="object")return null;let t=e.ret;if(t==null)return null;let n=typeof t=="string"?_g(t):t;if(n&&typeof n=="object"){let o=n.msg;if(typeof o=="string"&&o.trim()!=="")return o}return null}function _g(r){try{return JSON.parse(r)}catch{return null}}function od(r){return JSON.parse(r)}async function jg(r){let e=`${ce.BASE_URL}${ce.CERT_LIST_PATH}`,t=await L.postAllowFailure(e,{headers:ma(r)});if(t.statusCode!==200)throw Yn(t.statusCode,t.statusText,t.data);return od(t.data)?.certList??[]}async function ha(r,e){return(await jg(r)).find(n=>n.certName===e)??null}async function id(r,e){let t=`${ce.BASE_URL}${ce.CERT_DELETE_PATH}`,n=await L.deleteAllowFailure(t,{headers:ma(r),params:{certIds:[e]}});if(n.statusCode!==200)throw Yn(n.statusCode,n.statusText,n.data);return od(n.data)?.ret?.code===0}async function sd(r,e,t){let n=`${ce.BASE_URL}${ce.CERT_ADD_PATH}`,o={csr:e,certName:t,certType:Ve.CERT_TYPE_DEBUG},i=await L.postAllowFailure(n,{headers:ma(r),params:o});if(i.statusCode!==200)throw Yn(i.statusCode,i.statusText,i.data);if(!i.data.includes(we.SUCCESS_MARKER))throw Yn(void 0,i.statusText,i.data)}async function ad(r,e){let t=`${ce.BASE_URL}${ce.CERT_DOWNLOAD_URL_PATH}`,n=await L.postAllowFailure(t,{headers:ma(r),params:{sourceUrls:e}});if(n.statusCode!==200)throw Yn(n.statusCode,n.statusText,n.data);return od(n.data)?.urlsInfo?.[0]??null}import{mkdirSync as lR,writeFileSync as dR,existsSync as uR}from"fs";import{dirname as pR}from"path";import{createHash as fR}from"crypto";function mR(r){let e;try{e=new URL(r)}catch{throw new Error(`Invalid download URL: ${JSON.stringify(r)}`)}if(e.protocol!=="https:")throw new Error(`Download URL must use HTTPS: ${e.protocol}`);let t=e.hostname.toLowerCase();if(t==="localhost"||t==="127.0.0.1"||t==="::1"||t.startsWith("169.254.")||t.startsWith("10.")||t.startsWith("192.168.")||/^172\.(1[6-9]|2\d|3[0-1])\./.test(t)||t.endsWith(".internal")||t.endsWith(".local"))throw new Error(`Download URL points to internal/private address: ${t}`)}async function ii(r,e,t){mR(r);let{statusCode:n,statusText:o,buffer:i}=await L.getBinaryAllowFailure(r,{timeout:Ve.DOWNLOAD_CONNECT_TIMEOUT_MS});if(n!==200)throw n===vt.FORBIDDEN&&o===we.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_DOWNLOAD_CER);if(t){let a=fR("sha256").update(i).digest("hex");if(a!==t.toLowerCase())throw new Error(`SHA-256 mismatch for ${e}: expected ${t.toLowerCase()}, got ${a}`)}let s=pR(e);uR(s)||lR(s,{recursive:!0}),dR(e,i)}import LR from"fs/promises";import{readFileSync as NR}from"fs";import ga from"path";import Hg from"crypto";import hR from"os";import si from"fs/promises";var Ug={GENERATE_KEYPAIR:"generate-keypair",GENERATE_CSR:"generate-csr"},Fg=["ECC","RSA"],$g=["SHA256withECDSA","SHA384withECDSA","SHA256withRSA","SHA384withRSA"],gR={ECC:["NIST-P-256","NIST-P-384"],RSA:["2048","3072","4096"]},yR=8,cd=64,vR=/[\\/:*?"<>|=-]/g,wt={productName:"default",keyAlias:"debugKey",keyAlg:"ECC",keySize:"NIST-P-256",csrSubject:"CN=DebugKey",signAlg:"SHA256withECDSA"};function wR(r){if(!r.keyAlias.trim())throw new Error("keyAlias cannot be empty");if(!r.keystoreFile.trim())throw new Error("keystoreFile cannot be empty");if(r.keyAlias.length>cd)throw new Error(`The length of keyAlias cannot exceed ${cd}`);if(!Fg.includes(r.keyAlg))throw new Error(`Invalid key algorithm ${r.keyAlg}, available: ${Fg.join(" / ")}`);let e=gR[r.keyAlg];if(!e.includes(r.keySize))throw new Error(`Key algorithm ${r.keyAlg} does not support size ${r.keySize}, available: ${e.join(", ")}`)}function bR(r){if(!r.keyAlias.trim())throw new Error("keyAlias cannot be empty");if(!r.keystoreFile.trim())throw new Error("keystoreFile cannot be empty");if(!r.subject.trim())throw new Error("subject cannot be empty");if(!$g.includes(r.signAlg))throw new Error(`Invalid sign algorithm ${r.signAlg}, available: ${$g.join(" / ")}`)}function SR(r){return Hg.createHash("sha256").update(r,"utf8").digest().toString("base64url").replaceAll(/[-_=]/g,"")}function ER(r){let e=r?.trim()??"";return e&&e.replace(vR,"_").replace(/\.+/g,"_").slice(0,cd)||wt.productName}async function Bg(){let r=await A.new(),e=r.javaPath;if(!e)throw new Error("Java runtime not found. DevEco Studio JBR is required to run hap-sign-tool.jar.");let t=r.sdkPath;m.info(`\u8BFB\u53D6SDK\u6839\u76EE\u5F55\uFF1A${t}`);let n=ga.join(t,"default","openharmony","toolchains","lib","hap-sign-tool.jar");try{await si.access(n)}catch(o){throw new Error(`Sign tool jar not found: ${n}`,{cause:o})}return{javaPath:e,jarPath:n}}async function PR(r){let{javaPath:e,jarPath:t}=await Bg(),n=["-jar",t,Ug.GENERATE_KEYPAIR,"-keyAlias",r.keyAlias,"-keyAlg",r.keyAlg,"-keySize",r.keySize,"-keystoreFile",r.keystoreFile,"-keystorePwd",r.keystorePwd];r.keyPwd&&n.push("-keyPwd",r.keyPwd),r.pwdInputMode&&n.push("-pwdInputMode",r.pwdInputMode);let o=n.map((i,s)=>s>0&&["-keyPwd","-keystorePwd"].includes(n[s-1])?"******":i);return m.debug("generate-keypair \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),[e,...n]}async function CR(r){let{javaPath:e,jarPath:t}=await Bg(),n=["-jar",t,Ug.GENERATE_CSR,"-keyAlias",r.keyAlias,"-subject",r.subject,"-signAlg",r.signAlg,"-keystoreFile",r.keystoreFile,"-keystorePwd",r.keystorePwd];r.outFile&&n.push("-outFile",r.outFile),r.keyPwd&&n.push("-keyPwd",r.keyPwd),r.pwdInputMode&&n.push("-pwdInputMode",r.pwdInputMode);let o=n.map((i,s)=>s>0&&["-keyPwd","-keystorePwd"].includes(n[s-1])?"******":i);return m.debug("generate-csr \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),[e,...n]}async function kR(r){m.info("\u5F00\u59CB\u751F\u6210 P12 \u5BC6\u94A5\u5E93"),wR(r);let e=await PR(r),t=await uo(e[0],e.slice(1));if(t.exitCode!==0){let n=t.stderr||t.stdout||"Unknown tool error";throw new Error(`An error occurred while generating the private key P12, exit code${t.exitCode}\uFF1A${n}`)}return m.info("\u751F\u6210P12\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}async function IR(r){m.info("\u5F00\u59CB\u751F\u6210 CSR \u8BC1\u4E66\u8BF7\u6C42"),bR(r);let e=await CR(r),t=await uo(e[0],e.slice(1));if(t.exitCode!==0){let n=t.stderr||t.stdout||"Unknown tool error";throw new Error(`An error occurred while generating the CSR, exit code${t.exitCode}\uFF1A${n}`)}return m.info("\u751F\u6210CSR\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}function AR(r=yR){return Hg.randomBytes(r).toString("base64url").replaceAll(/[-_=]/g,"")}async function DR(){let r=hR.homedir();try{await si.access(r)}catch(t){throw new Error("Invalid user path;",{cause:t})}let e=ga.join(r,".ohos","config");try{await si.mkdir(e,{recursive:!0,mode:448})}catch(t){throw new Error(`Failed to create directory ${e}`,{cause:t})}return m.info(`\u7B7E\u540D\u914D\u7F6E\u76EE\u5F55\u5C31\u7EEA\uFF1A${e}`),e}async function Ie(r,e,t){let n=ER(r),o=ga.basename(e),i=SR(e),s=`${n}_${o}_${i}=.${t}`,a=await DR();return ga.join(a,s)}function RR(r){let e;try{e=W.discover(r).rootDir}catch(t){throw new Error(`Current directory ${r} is not a valid project root`,{cause:t})}return e}async function TR(r){try{await si.access(r)}catch(e){throw new Error(`Project directory ${r} is not accessible, missing read/write permissions`,{cause:e})}}async function xR(r){try{await si.access(r)}catch(e){throw new Error(`P12 file ${r} does not exist, terminating CSR generation.`,{cause:e})}}async function ld(r,e,t){let n=process.cwd(),o=RR(n);await TR(o),m.info(`\u8BC6\u522B\u9879\u76EE\u6839\u76EE\u5F55\uFF1A${o}`);let i=AR(),s=await Ie(r??"",o,"p12"),a=await Ie(r??"",o,"csr");return console.log("Start generating p12"),await kR({keyAlias:e?.keyAlias??wt.keyAlias,keyPwd:i,keyAlg:e?.keyAlg??wt.keyAlg,keySize:e?.keySize??wt.keySize,keystoreFile:s,keystorePwd:i}),await xR(s),console.log("Start generating csr"),await IR({subject:t?.subject??wt.csrSubject,outFile:a,keyAlias:t?.keyAlias??wt.keyAlias,keyPwd:i,signAlg:t?.signAlg??wt.signAlg,keystoreFile:s,keystorePwd:i}),{p12FilePath:s,csrFilePath:a,keyPwd:i,keyAlias:e?.keyAlias??wt.keyAlias}}var MR=["p12","cer","csr","p7b"];async function dd(r,e){for(let t of MR){let n=await Ie(r,e,t);await LR.rm(n,{force:!0})}}function ud(r){let e;try{e=NR(r,"utf-8")}catch{throw new Error(E.ERR_CERT_INVALIDATE)}if(!Ve.CERT_PATTERN.test(e))throw new Error(E.ERR_CERT_INVALIDATE)}async function Wg(r,e){return{certPath:await Ie(r,e,"cer"),csrPath:await Ie(r,e,"csr"),p12Path:await Ie(r,e,"p12"),profilePath:await Ie(r,e,"p7b")}}async function pd(r,e){let t=e??"",n=W.discover(process.cwd()).rootDir;await dd(t,n);let o=nd(r.teamId),i=await ha(r,o);if(i&&!await id(r,i.id))throw new Error(E.ERR_DOWNLOAD_CER);let s=await ld(e),a;try{a=OR(s.csrFilePath,"utf-8")}catch{throw new Error(E.ERR_READ_CSR)}console.log("Start generating certificate"),await sd(r,a,o);let c=await ha(r,o);if(!c)throw new Error(E.ERR_DOWNLOAD_CER);let l=await ad(r,c.certObjectId);if(!l)throw new Error(E.ERR_DOWNLOAD_CER);let d=await Ie(t,n,"cer");await ii(l.newUrl,d,l.sha256),ud(d);let g=await Ie(t,n,"p7b");return{p12FilePath:s.p12FilePath,csrFilePath:s.csrFilePath,cerFilePath:d,profileFilePath:g,certId:c.id,keyAlias:s.keyAlias,keyPwd:s.keyPwd,storePassword:s.keyPwd}}import Ia from"crypto";import Rr from"fs";import*as oy from"path";import nT from"json5";import{execa as ty}from"execa";import ry from"node-forge";import{createCipheriv as _R,createDecipheriv as jR,pbkdf2Sync as FR,randomBytes as gd}from"crypto";import{promises as rn}from"fs";import{dirname as $R,join as bt}from"path";var ya=3,ai=16,HR=1e4,Vg="material",UR=new Uint8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),Jg="aes-128-gcm",tn=12,va=16,Ir=4;function fd(r){return new Uint8Array(gd(r))}function BR(r){return gd(r).toString("hex")}function WR(...r){if(r.length===0)return new Uint8Array(0);let e=r[0].length,t=new Uint8Array(e);for(let n=0;n<e;n++){let o=0;for(let i of r)o^=i[n];t[n]=o}return t}function Gg(r,e,t=HR,n=ai){let o=[...r,UR],i=WR(...o),s=Buffer.from(i).toString("utf8"),a=Buffer.from(s,"utf8"),c=FR(a,e,t,n,"sha256");return new Uint8Array(c)}function qg(r,e){let t=gd(tn),n=_R(Jg,r,t),o=Buffer.concat([n.update(e),n.final()]),i=n.getAuthTag(),s=Buffer.concat([o,i]),a=s.length,c=Buffer.alloc(Ir+tn+s.length);return c.writeUInt32BE(a,0),t.copy(c,Ir),s.copy(c,Ir+tn),c}function zg(r,e){if(e.length<Ir+tn+va)throw new Error("Ciphertext too short");let t=e.readUInt32BE(0),n=e.subarray(Ir,Ir+tn),o=e.subarray(Ir+tn,Ir+tn+t);if(o.length<va)throw new Error("Ciphertext too short for auth tag");let i=o.subarray(0,o.length-va),s=o.subarray(o.length-va),a=jR(Jg,r,n);return a.setAuthTag(s),Buffer.concat([a.update(i),a.final()])}async function VR(r){try{await rn.rm(r,{recursive:!0,force:!0})}catch{}}async function md(r){let e=await rn.readdir(r),t=e.filter(n=>n!==".DS_Store");if(t.length!==1)throw new Error(`Expected exactly 1 file in ${r}, but found ${t.length} (filtered from ${e.length})`);return rn.readFile(bt(r,t[0]))}async function hd(r,e){let t=BR(ai),n=bt(r,t);return await rn.writeFile(n,e,{mode:384}),t}var Ar=class{static keyChain=Promise.resolve();static async generateMaterial(e){let t=bt(e,Vg);await VR(t);let n=bt(t,"ac"),o=bt(t,"ce");await rn.mkdir(n,{recursive:!0,mode:448}),await rn.mkdir(o,{recursive:!0,mode:448});for(let d=0;d<ya;d++)await rn.mkdir(bt(t,"fd",String(d)),{recursive:!0,mode:448});let i=fd(ai),s=[];for(let d=0;d<ya;d++)s.push(fd(ai));let a=fd(ai),c=Gg(s,i),l=qg(c,a);await hd(n,i),await hd(o,l);for(let d=0;d<ya;d++){let g=bt(t,"fd",String(d));await hd(g,s[d])}return a}static async readMaterial(e){let t=bt(e,Vg),n=bt(t,"ac"),o=new Uint8Array(await md(n)),i=[];for(let d=0;d<ya;d++){let g=bt(t,"fd",String(d)),v=await md(g);i.push(new Uint8Array(v))}let s=bt(t,"ce"),a=await md(s),c=Gg(i,o),l=zg(c,a);return new Uint8Array(l)}static async getStoreKey(e){let t,n=this.keyChain;this.keyChain=new Promise(o=>{t=o}),await n;try{let o=$R(e);try{return await this.readMaterial(o)}catch{return await this.generateMaterial(o)}}finally{t()}}static async encryptedPassword(e,t){let n=await this.getStoreKey(t),o=Buffer.from(e,"utf8");return qg(n,o).toString("hex")}static async decryptPassword(e,t){if(!e)return"";let n=await this.getStoreKey(t),o=Buffer.from(e,"hex");return zg(n,o).toString("utf8")}};import Qg from"fs";import Ca from"path";import KR from"json5";import*as wa from"fs";import*as Yg from"path";function ba(r){let e=Yg.resolve(r);if(!wa.existsSync(e))throw new Error(`SDK info file not found: ${e}`);let t;try{t=wa.readFileSync(e,"utf-8")}catch(s){throw new Error(`Failed to read SDK info file: ${e}`,{cause:s})}let n;try{n=JSON.parse(t)}catch(s){throw new Error(`Invalid JSON in SDK info file: ${e}`,{cause:s})}let o=n?.data?.apiVersion;if(o==null||o==="")throw new Error(`Missing data.apiVersion in SDK info file: ${e}`);let i=Number(o);if(!Number.isFinite(i))throw new Error(`Invalid data.apiVersion in SDK info file: ${String(o)}`);return i}import*as Xn from"fs";import*as Ge from"path";import{debuglog as Kn}from"util";var Kg={"acl.SYSTEM_FLOAT_WINDOW.instead.name":"PiPWindow","acl.READ_CONTACTS.instead.name":"contact.selectContacts","acl.READ_IMAGEVIDEO.instead.name":"PhotoViewPicker","acl.WRITE_IMAGEVIDEO.instead.name":"SaveButton","acl.READ_AUDIO.instead.name":"AudioViewPicker","acl.WRITE_AUDIO.instead.name":"AudioViewPicker","acl.READ_PASTEBOARD.instead.name":"PasteButton"};function GR(r){return Object.prototype.hasOwnProperty.call(Kg,r)}function Sa(r){if(GR(r))return Kg[r]}var Xg={DUPLICATE_PERMISSION:"Duplicate permissions detected. Make sure each permission is unique in the same module and try again."};import{fileURLToPath as qR}from"url";var Pa=class{permissionName;permissionDisplayName;minSupportApiLevel;permissionInsteadName;permissionHelpUrlKey;constructor(e={}){this.permissionName=e.permissionName??"",this.permissionDisplayName=e.permissionDisplayName??"",this.minSupportApiLevel=e.minSupportApiLevel??"",this.permissionInsteadName=e.permissionInsteadName,this.permissionHelpUrlKey=e.permissionHelpUrlKey}};function Ea(r){return typeof r=="object"&&r!==null&&!Array.isArray(r)}function Zg(r){return r==null||r.length===0}function zR(r){return!Zg(r)}function yd(r,e){let t=r[e];return typeof t=="string"?t:t==null?"":String(t)}function JR(r,e){let t=r[e];if(typeof t=="boolean")return t;if(typeof t=="number")return t!==0;if(typeof t=="string"){let n=t.trim().toLowerCase();return n==="true"||n==="1"}return!1}function YR(r,e){let t=r[e];if(typeof t=="number")return Math.trunc(t);if(typeof t=="string"){let n=Number.parseInt(t,10);return Number.isNaN(n)?0:n}return 0}var Dr=class{static MIN_API_TO_FIND_ACL_IN_SDK=23;static ACL_PREFIX="ohos.permission.";static ACL_PERMISSIONS_CONFIG_PATH=Ge.join("aclPermission","aclPermissionsInfo.json");static ACL_HAVE_INSTEAD_NAME=new Set(["ohos.permission.SYSTEM_FLOAT_WINDOW","ohos.permission.READ_CONTACTS","ohos.permission.READ_IMAGEVIDEO","ohos.permission.WRITE_IMAGEVIDEO","ohos.permission.READ_AUDIO","ohos.permission.WRITE_AUDIO","ohos.permission.READ_PASTEBOARD"]);static ACL_AVAILABLE_LEVEL_VALUE="system_basic";static ACL_AVAILABLE_TYPE_VALUE="NORMAL";static ACL_AVAILABLE_LEVEL_KEY="availableLevel";static ACL_AVAILABLE_TYPE_KEY="availableType";static ACL_PROVISION_ENABLE_KEY="provisionEnable";static ACL_NAME_KEY="name";static ACL_CONFIG_PREFIX="acl.";static ACL_INSTEAD_NAME_SUFFIX=".instead.name";static ACL_HELP_URL_KEY_SUFFIX=".help.key";static ACL_DEFINE_PERMISSION_KEY="definePermissions";static ACL_SINCE_KEY="since";static PERMISSION_DEFINITIONS_RELATIVE_PATH=Ge.join("lib","PermissionDefinitions.json");static INCLUDE_ACL_PERMISSIONS=new Set(["ohos.permission.FILE_ACCESS_PERSIST","ohos.permission.READ_WRITE_DOWNLOAD_DIRECTORY","ohos.permission.READ_WRITE_DOCUMENTS_DIRECTORY"]);static EXCLUDE_ACL_PERMISSIONS=new Set(["ohos.permission.READ_DOCUMENT","ohos.permission.WRITE_DOCUMENT"]);static handleSpecificAclPermissions(){this.addAclWhiteList(this.INCLUDE_ACL_PERMISSIONS),this.addAclBlackList(this.EXCLUDE_ACL_PERMISSIONS)}static aclPermissionInfoMap=new Map;static aclPermissionNamesMap=new Map;static aclWhiteList=new Set;static aclBlackList=new Set;static builtInConfigTextLoader;static initAclPermission(e,t){let n=e.rootDir,o=this.getOrCreateSet(this.aclPermissionNamesMap,n),i=this.getOrCreateSet(this.aclPermissionInfoMap,n);o.clear(),i.clear();let s=Ge.join(t.sdkPath,"default","sdk-pkg.json"),a=ba(s);this.MIN_API_TO_FIND_ACL_IN_SDK-a>0?this.initAclPermissionFromBuiltInConfig(o,i):this.initAclPermissionFromSDK(t,o,i)}static getAclPermissionInfos(e){return this.aclPermissionInfoMap.get(e.rootDir)??new Set}static getAclPermissionNames(e){return this.aclPermissionNamesMap.get(e.rootDir)??new Set}static addAclWhiteList(e){for(let t of e)this.aclWhiteList.add(t)}static addAclBlackList(e){for(let t of e)this.aclBlackList.add(t)}static getOrCreateSet(e,t){let n=e.get(t);return n||(n=new Set,e.set(t,n)),n}static readBuiltInConfigText(){if(this.builtInConfigTextLoader)return this.builtInConfigTextLoader();let e=Ge.join(this.getResourcesDir(),this.ACL_PERMISSIONS_CONFIG_PATH);if(Xn.existsSync(e))return Xn.readFileSync(e,"utf-8")}static getResourcesDir(){let e=import.meta.url,t=qR(e);if(t.includes("dist")){let s=Ge.dirname(t),a=Ge.dirname(s);return Ge.join(a,"src","resources")}let n=Ge.dirname(t),o=Ge.dirname(n),i=Ge.dirname(o);return Ge.join(i,"src","resources")}static initAclPermissionFromBuiltInConfig(e,t){let n;try{n=this.readBuiltInConfigText()}catch{Kn("read builtin acl permission failed.");return}if(n!==void 0)try{let o=JSON.parse(n),s=(Array.isArray(o)?o:Ea(o)?Object.values(o):[]).filter(Ea).map(a=>new Pa(a));s.forEach(a=>{let c=a.permissionInsteadName;zR(c)&&(a.permissionInsteadName=Sa(c)),e.add(a.permissionName)}),s.forEach(a=>{t.add(a)})}catch(o){Kn(`failed to parse aclPermissionsInfo.json: ${o}`)}}static initAclPermissionFromSDK(e,t,n){let o=this.parsePermissionDefinitionFile(e);o&&o.forEach(i=>{if(!Ea(i))return;let s=i,a=yd(s,this.ACL_NAME_KEY);this.isAclPermission(s,a)&&(Zg(a)||(this.generateAclInfos(n,a,s),t.add(a)))})}static isAclPermission(e,t){return this.aclWhiteList.has(t)?!0:this.aclBlackList.has(t)||yd(e,this.ACL_AVAILABLE_LEVEL_KEY)!==this.ACL_AVAILABLE_LEVEL_VALUE||yd(e,this.ACL_AVAILABLE_TYPE_KEY)!==this.ACL_AVAILABLE_TYPE_VALUE?!1:JR(e,this.ACL_PROVISION_ENABLE_KEY)}static generateAclInfos(e,t,n){let o=new Pa;o.permissionName=t;let i=t.startsWith(this.ACL_PREFIX)?t.slice(this.ACL_PREFIX.length):t;o.permissionDisplayName=i;let s=YR(n,this.ACL_SINCE_KEY);o.minSupportApiLevel=String(s),this.handleInsteadName(o,i),e.add(o)}static parsePermissionDefinitionFile(e){let t=Ge.join(e.sdkPath,"default","openharmony","toolchains",this.PERMISSION_DEFINITIONS_RELATIVE_PATH);if(!Xn.existsSync(t))return;let n;try{n=Xn.readFileSync(t,"utf-8")}catch(s){Kn(`failed to load permissionDefinitions.json: ${s}`);return}let o;try{let s=JSON.parse(n);if(!Ea(s)){Kn("json object is null");return}o=s}catch(s){Kn(`failed to parse permissionDefinitions.json: ${s}`);return}let i=o[this.ACL_DEFINE_PERMISSION_KEY];if(!Array.isArray(i)){Kn("definePermissions is not an array");return}return i}static handleInsteadName(e,t){this.ACL_HAVE_INSTEAD_NAME.has(e.permissionName)&&(e.permissionInsteadName=Sa(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_INSTEAD_NAME_SUFFIX}`),e.permissionHelpUrlKey=Sa(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_HELP_URL_KEY_SUFFIX}`))}};function ka(r,e){let t=new Set,n=new Set;Dr.handleSpecificAclPermissions(),Dr.initAclPermission(r,e);for(let o of r.profile.modules){let i=ey(o,r,e,n,Ca.join("src","main"));for(let a of i)t.add(a);let s=ey(o,r,e,n,Ca.join("src","ohosTest"));for(let a of s)t.add(a)}return XR(n),t}function XR(r){if(r.size>0)throw new Error(Xg.DUPLICATE_PERMISSION)}function ey(r,e,t,n,o){let i=QR(e.rootDir,r,o);if(i==null)return new Set;let s=[];for(let v of i){if(typeof v!="object"||v===null)continue;let P=ZR(v,"name");P&&s.push(P)}let a=new Set(s);a.size!==s.length&&n.add(r.name);let c=Ca.join(t.sdkPath,"default","sdk-pkg.json"),l=ba(c),d=Dr.getAclPermissionInfos(e),g=new Set(Array.from(d).filter(v=>{let P=Number(v.minSupportApiLevel);return Number.isFinite(P)&&P<=l}).map(v=>v.permissionName));for(let v of Array.from(a))g.has(v)||a.delete(v);return a}function ZR(r,e){let t=r[e];return typeof t=="string"?t:""}function QR(r,e,t){let n=Ca.join(r,e.srcPath,t,"module.json5"),o=eT(n);if(o==null)return null;let i=tT(o,"module");return i==null?null:rT(i,"requestPermissions")}function eT(r){try{if(!Qg.existsSync(r))return null;let e=Qg.readFileSync(r,"utf-8");return KR.parse(e)}catch{return null}}function tT(r,e){if(r==null||typeof r!="object")return null;let t=r[e];return t!=null&&typeof t=="object"&&!Array.isArray(t)?t:null}function rT(r,e){if(r==null||typeof r!="object")return null;let t=r[e];return Array.isArray(t)?t:null}var wd=class{verifyStorePassword(e,t){try{let n=Rr.readFileSync(e),o=ry.asn1.fromDer(n.toString("binary"));return ry.pkcs12.pkcs12FromAsn1(o,t),!0}catch{return!1}}getLocalCerFingerprints(e){let n=Rr.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g);if(n&&n.length>0)return n.map(o=>this.formatFp(new Ia.X509Certificate(o).fingerprint256));try{return[this.formatFp(new Ia.X509Certificate(Rr.readFileSync(e)).fingerprint256)]}catch{return[]}}getLocalCerExpiry(e,t){if(!t)return null;let o=Rr.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g)??[];for(let i of o)try{let s=new Ia.X509Certificate(i);if(this.formatFp(s.fingerprint256)===t){let a=new Date(s.validTo);return isNaN(a.getTime())?null:a}}catch{}return null}formatFp(e){let t=e.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}};function oT(r){let e=Rr.readFileSync(r,"utf-8"),t=iT(e),n=null;if(t)try{n=JSON.parse(t)}catch{n=null}let o=n?.["bundle-info"]??{};return{rawContent:e,bundleNameInProfile:vd(o["bundle-name"]),expiryDate:sT(n?.validity?.["not-after"]),cerFingerprintInProfile:aT(vd(o["development-certificate"])),deviceUdidsInProfile:cT(n?.["debug-info"]?.["device-ids"]),aclPermissionsInProfile:lT(n?.acls?.["allowed-acls"]),teamIdInProfile:vd(o["developer-id"])}}function iT(r){let e=r.indexOf("{");if(e<0)return null;let t=0,n=-1,o=!1,i=!1;for(let s=e;s<r.length;s++){let a=r[s];if(o){i?i=!1:a==="\\"?i=!0:a==='"'&&(o=!1);continue}if(a==='"')o=!0;else if(a==="{")t++;else if(a==="}"&&(t--,t===0)){n=s;break}}return n<0?null:r.slice(e,n+1)}function sT(r){if(typeof r!="number"||!Number.isFinite(r))return null;let e=new Date(r*1e3);return isNaN(e.getTime())?null:e}function aT(r){if(!r)return null;try{let t=new Ia.X509Certificate(r).fingerprint256.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}catch{return null}}function cT(r){if(!Array.isArray(r))return[];let e=[];for(let t of r)if(typeof t=="string"){let n=t.toUpperCase();e.includes(n)||e.push(n)}return e}function lT(r){if(!Array.isArray(r))return[];let e=[];for(let t of r)typeof t=="string"?e.push(t):t&&typeof t=="object"&&typeof t.name=="string"&&e.push(t.name);return[...new Set(e)].sort()}function vd(r){return typeof r=="string"?r:null}var ci=class r{static async shouldRegenerate(e,t){let n=await r.#e(e,t);return r.#t(n)??r.#r(n)??r.#n(n)??r.#o(n)??r.#i(n)??r.#s(n)??r.#a(n)??r.#c(n)??r.#l(n)??r.#d(n)??await r.#u(n)??r.#p()}static async#e(e,t){let n=e.force,o=e.teamId,i=e.productName??"default",s=W.discover(process.cwd()),a=s.rootDir,[c,l]=await Promise.all([dT(i,a),pT(t.hdcPath)]),d=null;if(ny(c).allExist)try{d=oT(c.profileFile)}catch{}return{force:n,teamId:o,productName:i,projectPath:a,materialPaths:c,bundleName:s.getBundleName(i),deviceUdids:l,storePassword:await uT(a,i,c.storeFile),localAclPermissions:[...ka(s,t)].sort(),hapSignTool:new wd,profileInfo:d}}static#t(e){return e.force?(u("[reGenerateSign] --force flag set, skipping all checks"),{shouldRegenerate:!0,reason:"--force flag set",checkDetails:Xe({force:!0})}):null}static#r(e){let t=ny(e.materialPaths);return t.allExist?null:(u(`[reGenerateSign] missing files: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Missing files: ${t.missing.join(", ")}`,checkDetails:Xe({allFilesExist:!1,missingFiles:t.missing})})}static#n(e){return(e.profileInfo?.rawContent??"").trim().length>0?null:(u("[reGenerateSign] profile content is empty"),{shouldRegenerate:!0,reason:"Profile file content is empty",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!1})})}static#o(e){let t=e.profileInfo?.expiryDate;return!t||t>=new Date?null:(u(`[reGenerateSign] profile expired at ${t.toISOString()}`),{shouldRegenerate:!0,reason:`Profile expired at ${t.toISOString()}`,checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!1})})}static#i(e){let t=e.profileInfo?.bundleNameInProfile;return t&&t===e.bundleName?null:(u(`[reGenerateSign] bundleName mismatch \u2014 current=${e.bundleName}, profile=${t}`),{shouldRegenerate:!0,reason:`bundleName mismatch: current=${e.bundleName}, in profile=${t}`,checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!1})})}static#s(e){let t=e.profileInfo?.teamIdInProfile;return t&&t===e.teamId?null:(u(`[reGenerateSign] teamId mismatch \u2014 current=${e.teamId}, profile=${t}`),{shouldRegenerate:!0,reason:`teamId mismatch: current=${e.teamId}, in profile=${t}`,checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!1})})}static#a(e){let t=mT(e.profileInfo?.deviceUdidsInProfile??[],e.deviceUdids);return t.allPresent?null:(u(`[reGenerateSign] missing device UDIDs: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Device UDID(s) not in profile: ${t.missing.join(", ")}`,checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!1,missingDeviceUdids:t.missing})})}static#c(e){return hT(e.localAclPermissions,e.profileInfo?.aclPermissionsInProfile??[])?null:(u("[reGenerateSign] ACL permissions mismatch"),{shouldRegenerate:!0,reason:"ACL permissions mismatch between project and profile",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!1})})}static#l(e){let t=e.hapSignTool.getLocalCerFingerprints(e.materialPaths.cerFile),n=e.profileInfo?.cerFingerprintInProfile;return n&&t.includes(n)?null:(u("[reGenerateSign] certificate mismatch"),{shouldRegenerate:!0,reason:"Certificate mismatch between profile and local .cer file",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!1})})}static#d(e){let t=e.profileInfo?.cerFingerprintInProfile,n=e.hapSignTool.getLocalCerExpiry(e.materialPaths.cerFile,t);return!n||n>=new Date?null:(u(`[reGenerateSign] local certificate expired at ${n.toISOString()}`),{shouldRegenerate:!0,reason:`Local certificate expired at ${n.toISOString()}`,checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!1})})}static async#u(e){return e.storePassword?e.hapSignTool.verifyStorePassword(e.materialPaths.storeFile,e.storePassword)?null:(u("[reGenerateSign] keystore password verification failed"),{shouldRegenerate:!0,reason:"Keystore password verification failed (storeFile may be corrupted or password changed)",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})}):(u("[reGenerateSign] no stored keystore password"),{shouldRegenerate:!0,reason:"No stored keystore password available for verification",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})})}static#p(){return u("[reGenerateSign] all checks passed \u2014 skip regeneration"),{shouldRegenerate:!1,reason:"",checkDetails:Xe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!0})}}};async function dT(r,e){let[t,n,o,i]=await Promise.all([Ie(r,e,"p12"),Ie(r,e,"csr"),Ie(r,e,"cer"),Ie(r,e,"p7b")]);return{storeFile:t,csrFile:n,cerFile:o,profileFile:i}}async function uT(r,e,t){let n=oy.join(r,"build-profile.json5");if(!Rr.existsSync(n))return;let o;try{o=nT.parse(Rr.readFileSync(n,"utf-8"))}catch{return}let a=(o?.app?.signingConfigs??[]).find(c=>c.name===e)?.material?.storePassword;if(a)try{return await Ar.decryptPassword(a,t)}catch{return}}async function pT(r){u(`Executing: ${r} list targets`);let{stdout:e}=await ty(r,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let o of e.split(`
1360
+ `)){let i=o.trim();if(!i||i.startsWith("[Empty]"))continue;let s=i.split(/\s+/),a=s[0],c=s.length>=2?s[1]:"device";a&&!a.startsWith("[Empty]")&&c.toLowerCase()!=="unauthorized"&&t.push(a)}let n=[];for(let o of t)try{u(`Executing: ${r} -t ${o} shell bm get -u`);let{stdout:i}=await ty(r,["-t",o,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),s=fT(i);s&&n.push(s)}catch{u(`[reGenerateSign] Failed to get UDID for ${o}, skipping`)}return n}function fT(r){let e=r.trim();if(!e)return null;let t=e.split(`
1361
+ `);for(let o=0;o<t.length-1;o++)if(t[o].includes("udid of current device is")){let s=t[o+1].trim().match(/^[A-Fa-f0-9]{64}$/);if(s)return s[0].toUpperCase()}let n=e.match(/[A-Fa-f0-9]{64}/);return n?n[0].toUpperCase():null}function ny(r){let e=[r.storeFile,r.csrFile,r.cerFile,r.profileFile],t=[];for(let n of e)Rr.existsSync(n)||t.push(n);return{allExist:t.length===0,missing:t}}function mT(r,e){let t=[];for(let n of e)r.includes(n)||t.push(n);return{allPresent:t.length===0,missing:t}}function hT(r,e){let t=[...r].sort(),n=[...e].sort();return t.length!==n.length?!1:t.every((o,i)=>o===n[i])}function Xe(r){let e={force:!1,allFilesExist:!1,missingFiles:[],profileContentNotEmpty:!1,profileNotExpired:!1,bundleNameMatched:!1,teamIdMatched:!1,allDevicesInProfile:!1,missingDeviceUdids:[],aclMatched:!1,cerMatched:!1,cerNotExpired:!1,storePasswordValid:!1};return r.force?{...e,force:!0}:{...e,...r,force:!1}}import{debuglog as bd}from"util";import{execa as Sd}from"execa";async function sy(r,e){let t=await Aa(r);if(!t)throw new Error(E.DEVICE_LIST_EMPTY);let n=await vT(e);if(t.length===0)for(let s of n)await gT(r,s.udid,s.deviceName);else for(let s of n)await yT(r,t,s.udid,s.deviceName);let i=(await Aa(r)).map(s=>s.id);if(i.length===0)throw new Error(E.DEVICE_LIST_EMPTY);return i}async function gT(r,e,t){await ly(r,e,ay(t))}async function yT(r,e,t,n){for(let o=0;o<e.length;o++){if(t===e[o].udid)return;if(o===e.length-1){await ly(r,t,ay(n));return}}}function ay(r){switch(r){case"liteWearable":return"1";case"wearable":return"2";case"tv":return"3";default:return"4"}}async function iy(r,e=1,t=100){let n=`${ce.BASE_URL}${ce.DEVICE_LIST_PATH}?encodeFlag=0&start=${e}&pageSize=${t}`,o=dy(r),i=await L.get(n,{headers:o});if(!i)throw bd("query devices failed: response is null"),new Error(E.ERROR_WHILE_ADD_DEVICE);if(i.statusCode!==200)throw cy(i.statusCode,i.statusText,i.data);let s=JSON.parse(i.data);if(!s||!s.list)throw bd("query devices failed: response list is null"),new Error(s.ret?.msg||E.ERROR_WHILE_ADD_DEVICE);return{deviceList:s.list,total:s.totalCount||0}}function cy(r,e,t){return r===vt.FORBIDDEN?e===we.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN):r===vt.UNAUTHORIZED?new Error(E.ERR_UNAUTHORIZED):t.includes(we.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(E.DEVICE_LIMIT_REACHED):new Error(E.ERROR_WHILE_ADD_DEVICE)}async function Aa(r){let t=await iy(r,1,100);if(!t||!t.deviceList||t.deviceList.length===0)return[];let n=[...t.deviceList],o=t.total,i=Math.floor(o/100)+(o%100===0?0:1);for(let s=2;s<=i;s++){let a=await iy(r,s,100);if(!a||!a.deviceList||a.deviceList.length===0)break;n.push(...a.deviceList)}return n}async function ly(r,e,t){let n=`${ce.BASE_URL}${ce.DEVICE_ADD_PATH}`,o=dy(r),s={deviceName:`auto_sign_device_No.${Math.floor(Math.random()*3e3)}${Date.now()}`,udid:e,deviceType:t},a=await L.postAllowFailure(n,{headers:o,params:s});if(!a)throw bd("add device failed: response is null"),new Error(E.ERROR_WHILE_ADD_DEVICE);if(a.statusCode!==200)throw cy(a.statusCode,a.statusText,a.data);let c=a.data,l=JSON.parse(a.data);if(!l||!l.ret||l.ret.code!==0)throw c.includes(we.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(E.DEVICE_LIMIT_REACHED):c.includes(we.DEVICE_NAME_REPEAT_CODE)?new Error(E.DEVICE_NAME_REPEAT):new Error(E.ERROR_WHILE_ADD_DEVICE)}function dy(r){return{uid:r.uid,teamId:r.teamId,oauth2Token:r.accessToken}}async function vT(r){let{stdout:e}=await Sd(r,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let o of e.split(`
1362
+ `)){let i=o.trim();if(!i||i.startsWith("[Empty]"))continue;let s=i.split(/\s+/),a=s[0],c=s.length>=2?s[1]:"device";a&&!a.startsWith("[Empty]")&&c.toLowerCase()!=="unauthorized"&&t.push(a)}let n=[];for(let o of t)try{let i=await wT(o,r),s=await bT(o,r);i.length>0&&n.push({id:"",udid:i,deviceName:s})}catch{u(`Failed to get device info for ${o}, skipping`)}return n}async function wT(r,e){let{stdout:t}=await Sd(e,["-t",r,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),n=t.trim();if(!n)return"";let o=n.split(`
1363
+ `);for(let s=0;s<o.length-1;s++)if(o[s].includes("udid of current device is")){let c=o[s+1].trim().match(/^[A-Fa-f0-9]{64}$/);if(c)return c[0].toUpperCase()}let i=n.match(/[A-Fa-f0-9]{64}/);return i?i[0].toUpperCase():""}async function bT(r,e){let{stdout:t}=await Sd(e,["-c","-t",r,"shell","getprop","hw_sc.build.os.deviceType"],{stdio:["ignore","pipe","pipe"]});return ST(t)}function ST(r){let e=r.trim();return!e||e.includes("inaccessible")?"phone":r.includes("liteWearable")?"liteWearable":r.includes("wearable")?"wearable":r.includes("tv")?"tv":"phone"}import nn from"fs";import{createHash as ET}from"crypto";import{debuglog as Yt}from"util";import{Buffer as py}from"buffer";import{createPublicKey as PT,X509Certificate as Ed}from"crypto";import{readFileSync as CT}from"fs";import on from"node-forge";async function fy(r,e){console.log("Start generating profile");let{productName:t,bundleName:n,projectPath:o,aclPermissionList:i,allDeviceIds:s,certIds:a,keyAlias:c,keyPwd:l}=e;if(s==null||s.length===0)throw new Error(E.DEVICE_LIST_EMPTY);let d=`${ce.BASE_URL}${ce.PROVISION_ADD_TEST_PATH}`,g=kT(t,n),v=await AT(r,d,a||[],n,s,g,i||[]);if(!v||!v.profileInfo||!v.profileInfo.provisionFileUrl)throw Yt("add provision failed, the provision file url is null"),new Error(E.ADD_PROFILE_FAIL);let P=v.profileInfo,B=(await xT(r,P.provisionFileUrl)).urlList,Ae=v.profileInfo.id;if(B&&B.length>0){let Ze=await Wg(t,o),St=Ze.profilePath;if(!await LT(B,St))throw await uy(r,Ae),new Error(E.ERROR_WHILE_DOWNLOAD_PROFILE);if(await uy(r,Ae),nn.existsSync(Ze.certPath)&&nn.existsSync(St)&&nn.existsSync(Ze.p12Path)){let Ma=nn.readFileSync(Ze.certPath,"utf8"),Oa=nn.readFileSync(St,"utf8");return NT(Oa,Ma,Ze.p12Path,c,l)||TT(St),St}}throw new Error(E.ADD_PROFILE_FAIL)}function kT(r,e){let t=r?`${r}_`:"";return`${IT(`${t}${e}_${e}`)}`}function IT(r){return ET("sha256").update(r).digest("hex").substring(0,16)}async function AT(r,e,t,n,o,i,s){DT(n);let a=Cd(r),c={certList:t,packageName:n,deviceList:o,provisionName:i};s.length&&(c.aclPermissionList=s);let l=await L.postAllowFailure(e,{headers:a,params:c});if(!l)throw Yt("add provision failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(l.statusCode!==200)throw Pd(l.statusCode,l.statusText,l.data);let d=JSON.parse(l.data);if(!d||!d.ret||d.ret.code!==0)throw Yt(`add provision fail: ${l.data}`),RT(l.data,i),new Error(d.ret?.msg||E.ADD_PROFILE_FAIL);let g=d.provisionFileUrl;return{profileInfo:{id:d.id,name:i,provisionFileUrl:g}}}function Pd(r,e,t){return r===vt.FORBIDDEN?e===we.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN):r===vt.UNAUTHORIZED?new Error(E.ERR_UNAUTHORIZED):t.includes(we.PROVISION_EXCEEDS_LIMIT_CODE)?new Error(E.TEST_PROVISION_EXCEEDS_LIMIT):new Error(E.ADD_PROFILE_FAIL)}function DT(r){if(!r||r.trim().length===0)throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE);if(!Ve.BUNDLE_NAME_REGEX.test(r))throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE)}function RT(r,e){if(r.includes(we.PROVISION_EXCEEDS_LIMIT_CODE))throw new Error(E.TEST_PROVISION_EXCEEDS_LIMIT);if(r.includes(we.PROVISION_NAME_REPEAT_CODE)&&e)throw new Error(E.PROFILE_NAME_REPEAT)}async function uy(r,e){if(!e||e.trim().length===0)return;let t=`${ce.BASE_URL}${ce.PROVISION_DELETE_PATH}?id=${e}`,n=await L.deleteAllowFailure(t,{headers:Cd(r)});if(n.statusCode!==200)throw Pd(n.statusCode,n.statusText,n.data);let o=JSON.parse(n.data);(!o||!o.ret||o.ret.code!==0)&&Yt(`delete provision failed: ${n.data}`)}function TT(...r){for(let e of r)try{nn.existsSync(e)&&nn.unlinkSync(e)}catch(t){Yt(`delete local sign file error: ${t.message}`)}}async function xT(r,e){let t=`${ce.BASE_URL}${ce.CERT_DOWNLOAD_URL_PATH}`,n=Cd(r),o={sourceUrls:e},i=await L.postAllowFailure(t,{headers:n,params:o});if(!i)throw Yt("get download list failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(i.statusCode!==200)throw Pd(i.statusCode,i.statusText,i.data);let s=JSON.parse(i.data);if(!s||!s.urlsInfo||s.urlsInfo.length===0)throw Yt("download: The application does not exist"),new Error(s.ret?.msg||E.ADD_PROFILE_FAIL);return{urlList:s.urlsInfo,hasPermission:!0}}async function LT(r,e){if(!r||r.length===0)return!1;let t=r[0];return await ii(t.newUrl,e,t.sha256),!0}function NT(r,e,t,n,o){return MT(r,e),n=n||Ve.TARGET_FRIENDLY_NAME,o=o||"",OT(e,t,n,o),!0}function MT(r,e){if(e.lastIndexOf(Ve.CERT_BEGIN_HEADER)<0)throw new Error(E.ERROR_WHILE_PARSE_PROFILE);let t=JSON.stringify(e.substring(e.lastIndexOf(Ve.CERT_BEGIN_HEADER))).replace(/\\r/g,"");if(!r.includes(t))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT);return!0}function OT(r,e,t,n){let o=r.matchAll(Ve.CERTIFICATE_PATTERN_GLOBAL),i=[],s=new Date;for(let c of o)try{let l=c[0],d=_T(l),g=new Date(d.validFrom),v=new Date(d.validTo);if(s<g||s>v){let P=`Certificate is not valid, Valid from ${g} to ${v}`;throw console.warn(`checkCertificateInValidityPeriod: ${P}`),new Error(E.CERTIFICATE_HAS_EXPIRED)}i.push(d)}catch(l){throw console.warn(`checkCertificateInValidityPeriod\uFF1A ${l.message}`),new Error(E.CERTIFICATE_HAS_EXPIRED,{cause:l})}if(!i||i.length===0)throw new Error(E.CERTIFICATE_HAS_EXPIRED);if(!FT(e,t,n,i))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT)}function _T(r){let e="-----BEGIN CERTIFICATE-----",t=r.trim();try{if(t.startsWith(e))return new Ed(t);let n=py.from(t,"base64");return new Ed(n)}catch(n){throw new Error("decodeBase64ToX509Certificate",{cause:n})}}function jT(r){if(r.cert){let e=on.pki.publicKeyToPem(r.cert.publicKey);return PT(e).export({type:"spki",format:"der"})}if(r.asn1)try{let e=on.asn1.toDer(r.asn1).getBytes(),t=py.from(e,"binary");return new Ed(t).publicKey.export({type:"spki",format:"der"})}catch(e){return Yt(`Failed to parse cert from asn1: ${e}`),null}return null}function FT(r,e,t,n){try{let o=CT(r),i=on.asn1.fromDer(on.util.createBuffer(o)),c=on.pkcs12.pkcs12FromAsn1(i,t).getBags({bagType:on.pki.oids.certBag})[on.pki.oids.certBag]||[];for(let l of c){let d=l.attributes?.friendlyName?.[0];if(!d||d.toLowerCase()!==e.toLowerCase())continue;let g=jT(l);if(!g)continue;if(n.some(P=>{let ie=P.publicKey.export({type:"spki",format:"der"});return g.equals(ie)}))return!0}return!1}catch(o){let i=o instanceof Error?o.message:String(o);return Yt(`Failed to process P12 file: ${r}, error: ${i}`),!1}}function Cd(r){return{uid:r.uid,teamId:r.teamId,oauth2Token:r.accessToken}}var hy="https://developer.huawei.com",$T={"ohos.permission.SYSTEM_FLOAT_WINDOW":"/consumer/cn/doc/harmonyos-guides/window-pipwindow","ohos.permission.READ_CONTACTS":"/consumer/cn/doc/harmonyos-references/js-apis-contact#contactselectcontacts10","ohos.permission.READ_IMAGEVIDEO":"/consumer/cn/doc/harmonyos-guides/select-user-file#%E9%80%89%E6%8B%A9%E5%9B%BE%E7%89%87%E6%88%96%E8%A7%86%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.WRITE_IMAGEVIDEO":"/consumer/cn/doc/harmonyos-guides/savebutton","ohos.permission.READ_AUDIO":"/consumer/cn/doc/harmonyos-guides/select-user-file#%E9%80%89%E6%8B%A9%E9%9F%B3%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.WRITE_AUDIO":"/consumer/cn/doc/harmonyos-guides/save-user-file#%E4%BF%9D%E5%AD%98%E9%9F%B3%E9%A2%91%E7%B1%BB%E6%96%87%E4%BB%B6","ohos.permission.READ_PASTEBOARD":"/consumer/cn/doc/harmonyos-guides/pastebutton"},HT="/consumer/cn/doc/harmonyos-guides/restricted-permissions";function UT(r){let e=$T[r];return e?`${hy}${e}`:void 0}function BT(){return`${hy}${HT}`}var WT={"acl.can.apply.text":"Permission Application Scenarios","acl.permissions.warn":"Note: You are applying for restricted ACL permissions: {0} These permissions are subject to review together with your app release. For a faster review process, apply for the following permissions instead, if they are sufficient for your purposes: {1} {2}"};function my(r,e){return(WT[r]??r).replace(/\{(\d+)\}/g,(n,o)=>String(e[Number(o)]??""))}function VT(r){return Array.from(r).join(", ")}function gy(r,e){if(r.size===0)return;let t=Dr.getAclPermissionInfos(e),n=new Set;for(let g of t)r.has(g.permissionName)&&n.add(g);for(let g of n){let v=UT(g.permissionName);v!=null&&(g.permissionHelpUrlKey=v)}let o=new Set;for(let g of n)o.add(g.permissionDisplayName);let i=new Set;for(let g of n)if(g.permissionHelpUrlKey!=null){let v=g.permissionInsteadName??g.permissionDisplayName;i.add(`${v} (${g.permissionHelpUrlKey})`)}let s=BT(),a=my("acl.can.apply.text",[]),c=s?`${a} (${s})`:a,l=i.size>0?Array.from(i).join(", ")+".":"",d=my("acl.permissions.warn",[VT(o),l,c]);console.log(d)}var Da=class{_project=null;get project(){if(!this._project)throw new Error("Project not initialized. Call checkProjectDir first.");return this._project}checkProjectDir(e){try{return this._project=W.discover(process.cwd()),{passed:!0,message:""}}catch(t){return u(`[EnvCheck] Project.discover() failed: ${t.message}`),e(ue.PROJECT_DIR_MISSING)}}checkProduct(e,t){try{return this._project.validateProduct(e),{passed:!0,message:""}}catch(n){return u(`[EnvCheck] Product validation failed: ${n.message}`),t(`Product "${e}" not found.Check the product property in the build-profile.json5 file.`)}}checkBundleName(e,t){try{return this._project.getBundleName(),{passed:!0,message:""}}catch(n){return u(`[EnvCheck] BundleName check failed: ${n.message}`),t(`bundleName was not found under product "${e}".Check the bundleName configuration.`)}}checkAtomicService(){return this._project.isAtomicService()?{passed:!1,message:ue.ATOMIC_SERVICE_UNSUPPORTED}:{passed:!0,message:""}}};import GT from"fs";import yy from"path";var Ra=class{constructor(e){this.toolProvider=e}checkJava(e){try{return this.toolProvider.assertJava(),{passed:!0,message:""}}catch(t){return u(`[EnvCheck] Java check failed: ${t.message}`),e(`${t.message}`)}}checkHapSignTools(e){let t=this.toolProvider.sdkPath,n=yy.join(t,"default","openharmony","toolchains","lib","hap-sign-tool.jar");if(!GT.existsSync(n)){let o=yy.join("sdk","default","openharmony","toolchains","lib","hap_sign_tools.jar");return e(`hap_sign_tools.jar not found.Check whether ${o} exists.`)}return{passed:!0,message:""}}};var Ta=class{_userInfo=null;async ensureUserInfo(){if(!this._userInfo)try{this._userInfo=await Ne.getUserInfo()}catch(e){return u(`[EnvCheck] Failed to load user info: ${e.message}`),null}return this._userInfo}async checkLogin(e){try{return await Ne.isLoggedIn()?(await this.ensureUserInfo(),{passed:!0,message:""}):e(ue.LOGIN_REQUIRED)}catch(t){return u(`[EnvCheck] Login check failed: ${t.message}`),e(ue.LOGIN_REQUIRED)}}async checkTeamInfo(e){if(!await this.ensureUserInfo())return e(ue.TEAM_INFO_FAILED);try{if((await ur()).teamList.length>0)return{passed:!0,message:""}}catch(n){return u(`[EnvCheck] Team API error: ${n.message}`),e(ue.TEAM_INFO_FAILED)}return u("[EnvCheck] No teams found for current user"),e(ue.TEAM_INFO_FAILED)}async checkRealname(e){let t=await this.ensureUserInfo();return t?t.isRealName===!1?e(ue.REALNAME_REQUIRED):t.isRealName!==!0?(u("[EnvCheck] Scenario 3 Real-name check: AGC API did not return realName field"),e(ue.REALNAME_REQUIRED)):{passed:!0,message:""}:e(ue.SESSION_EXPIRED)}async checkTeamId(e){let t=await this.ensureUserInfo();if(!t)return{passed:!0,message:""};let n=e??"";try{let o=await ur();if(n=e??(o.teamList.length>0?o.teamList[0].id:t.userId)??"",!o.teamList.some(s=>s.id===n)){let s=`team-id for ${n} not found.Run devecocli auth team list to view the team to which the logged-in user belongs.`;return u(`[EnvCheck] ${s}`),{passed:!1,message:s}}return{passed:!0,message:""}}catch(o){return u(`[EnvCheck] Team ID check failed: ${o.message}`),{passed:!1,message:`team-id for ${n} not found.Run devecocli auth team list to view the team to which the logged-in user belongs.`}}}async checkRegion(e){let t=await this.ensureUserInfo();return t?t.countryCode?t.countryCode!=="CN"?e(ue.REGION_CHINA_ONLY):{passed:!0,message:""}:(u("[EnvCheck] Scenario 12 Region check: AGC API did not return nationalCode field"),e(ue.REGION_CHINA_ONLY)):e("User session expired or token invalid. Please login again.")}};async function qT(r){try{let{teamList:e}=await ur();if(e.length>0)return e[0].id}catch(e){u(`[EnvCheck] resolveDefaultTeamId failed: ${e.message}`)}return r??""}async function zT(r){let e=await Ne.getUserInfo(),t=await Ne.refreshToken();if(!e||!t?.accessToken)throw new Error("Not logged in");let n=r||await qT(e.userId);if(!n)throw new Error("No team found");let o={uid:e.userId??"",teamId:n,accessToken:t.accessToken};return(await Aa(o)).map(s=>({deviceId:s.udid,deviceName:s.deviceName}))}var xa=class{constructor(e){this.toolProvider=e}async checkDevice(e,t){try{let n=await zT(t);if(n.length>0)return u(`[EnvCheck] Scenario 4 Device check: ${n.length} device(s) found in AGC cloud, skipping local device check`),{passed:!0,message:""};u("[EnvCheck] Scenario 4 Device check: no cloud devices found, falling back to local hdc");let i=await de.from(this.toolProvider).listDevices();return i.length===0?(u("[EnvCheck] Scenario 4 Device check: no local devices found"),e(ue.DEVICE_MISSING)):i.some(a=>It(a.serial))?{passed:!0,message:""}:(u("[EnvCheck] Scenario 4 Device check: local device found but not an emulator"),e(ue.DEVICE_MISSING))}catch(n){return u(`[EnvCheck] Scenario 4 Device check failed: ${n.message}`),e(ue.DEVICE_DETECT_FAILED)}}};var La=class{projectChecker=new Da;toolchainChecker=null;authChecker=new Ta;deviceChecker=null;constructor(){}async preflight(e){let t=n=>this.blockingFail(n);return!(!await this.runAuthChain(e,t)||!await this.initToolchain()||!await this.runDeviceCheck(e,t)||!await this.runProjectChecks(e,t)||!await this.runAuxChecks(e))}async runAuthChain(e,t){let n=i=>(i.passed||this.fail(i),!0),o=[()=>this.authChecker.checkLogin(t),()=>this.authChecker.checkRealname(t),()=>this.authChecker.checkTeamInfo(t)];for(let i of o)if(!n(await i()))return!1;return!(e.teamId&&!n(await this.authChecker.checkTeamId(e.teamId)))}async initToolchain(){try{let e=await A.new();return this.toolchainChecker=new Ra(e),this.deviceChecker=new xa(e),!0}catch(e){throw u(`[EnvCheck] ToolProvider.new() failed: ${e.message}`),new Error(ue.TOOLCHAIN_INIT_FAILED,{cause:e})}}async runDeviceCheck(e,t){return(o=>o.passed?!0:(this.fail(o),!1))(await this.deviceChecker.checkDevice(t,e.teamId))}async runProjectChecks(e,t){let n=i=>i.passed?!0:(this.fail(i),!1);if(!n(this.projectChecker.checkProjectDir(t))||!n(this.projectChecker.checkAtomicService()))return!1;let o=[()=>this.projectChecker.checkProduct(e.productName,t),()=>this.projectChecker.checkBundleName(e.productName,t),()=>this.toolchainChecker.checkJava(t),()=>this.toolchainChecker.checkHapSignTools(t)];for(let i of o)if(!n(i()))return!1;return!0}async runAuxChecks(e){let t=n=>n.passed?!0:(this.fail(n),!1);return!e.teamId&&!t(await this.authChecker.checkTeamId(e.teamId))?!1:(await this.authChecker.checkRegion(n=>this.blockingFail(n)),!0)}blockingFail(e){return{passed:!1,message:e}}fail(e){throw u(`[EnvCheck] FAIL: ${e.message}`),new Error(e.message)}};var vy=5*1024*1024;function KT(r){try{let e=Id.statSync(r);if(e.size>vy)throw new Error(`Profile file too large: ${e.size} bytes (max ${vy} bytes): ${r}`);let t=Id.readFileSync(r,"utf-8");return by.parse(t)}catch(e){if(e.code==="ENOENT")return{app:{signingConfigs:[],products:[]}};throw new Error(`Failed to read profile: ${r}`,{cause:e})}}function XT(r){r.app||(r.app={signingConfigs:[],products:[]}),r.app.signingConfigs||(r.app.signingConfigs=[]),r.app.products||(r.app.products=[])}async function ZT(r){if(r.keyPwd===r.storePassword){let n=await Ar.encryptedPassword(r.keyPwd,r.p12FilePath);return{keyPassword:n,storePassword:n}}let e=await Ar.encryptedPassword(r.keyPwd,r.p12FilePath),t=await Ar.encryptedPassword(r.storePassword,r.p12FilePath);return{keyPassword:e,storePassword:t}}async function QT(r,e,t){let n=wy.join(r,"build-profile.json5"),o=KT(n);XT(o);let i=t??"default",{keyPassword:s,storePassword:a}=await ZT(e),c={name:i,type:"HarmonyOS",material:{certpath:e.cerFilePath,keyAlias:e.keyAlias,keyPassword:s,profile:e.profileFilePath,signAlg:wt.signAlg,storeFile:e.p12FilePath,storePassword:a}},l=o.app?.signingConfigs?.findIndex(g=>g.name===i);l!==void 0&&l>=0?o.app.signingConfigs[l]=c:o.app.signingConfigs.push(c);let d=o.app?.products?.findIndex(g=>g.name===i);d!==void 0&&d>=0?o.app.products[d].signingConfig=i:o.app.products.push({name:i,signingConfig:i}),Id.writeFileSync(n,by.stringify(o,null,2),"utf-8")}async function ex(r){let e=await Ne.getUserInfo(),t=await Ne.refreshToken();if(!e||!t)throw new Error("Failed to obtain login credentials. Run `devecocli auth login` again.");return{uid:e.userId??"",teamId:r.teamId??e.userId??"",accessToken:t.accessToken??""}}async function tx(r){let e=r.product||"default";await new La().preflight({productName:e,teamId:r.teamId}),console.log("Executing signature generate command");let n=await ex(r),o=await A.new(),{shouldRegenerate:i}=await ci.shouldRegenerate({force:r.force??!1,teamId:n.teamId,productName:r.product},o);if(!i){console.log(kd("Signature generation completed successfully."));return}await rx(r,n,o),console.log(kd("Signature generation completed successfully."))}async function rx(r,e,t){let n=await pd(e,r.product),o=nx(r,e,n,t);o.allDeviceIds=await sy(e,t.hdcPath),await fy(e,o);let i=W.discover(process.cwd()).rootDir;await QT(i,n,r.product??"default"),console.log(kd(`Signing config written to ${wy.join(i,"build-profile.json5")}`))}function nx(r,e,t,n){let o=process.cwd(),i=W.discover(o),s=ka(i,n);return gy(s,i),{productName:r.product||"default",bundleName:i.getBundleName(r.product||"default"),projectPath:i.rootDir,teamId:e.teamId,force:r.force||!1,aclPermissionList:[...s],certIds:[t.certId],keyAlias:t.keyAlias,keyPwd:t.keyPwd}}var Sy=new JT("signature").description("Generate application signature.");Sy.command("generate").description("Automatically generate signing materials and write them to the project configuration.").option("--force","Force overwrite existing local signing materials.").option("--team-id <team-id>","Specify the team ID to use.").option("--product <product>","Specify the product. The default value is default.").action(async r=>{let e={event:b.CommandExecuted,args:["signature","generate",...r.force?["--force"]:[],...r.teamId?["--team-id"]:[],...r.product?["--product"]:[]]},t=Date.now(),n=!0,o=null;try{await tx(r)}catch(i){n=!1,o=q(i),console.error(YT(i.message)),process.exitCode=1}finally{let i={duration_ms:Date.now()-t,success:n,error_code:o};await I.track(e,i)}});var Ey=Sy;if(!Et())try{I.init(Na.join(Pe(),"TraceLogData")),I.startScheduler()}catch(r){h.error(`[telemetry] init failed: ${r instanceof Error?r.message:String(r)}`)}(async()=>{if(!Et())try{let r=await A.new();I.setSourceType(r.sourceType);let e=await A.getCltVersion();e&&I.setCltVersion(e);let t=await A.getStudioVersion();t&&I.setStudioVersion(t)}catch(r){h.error(`[telemetry] toolchain info failed: ${r instanceof Error?r.message:String(r)}`)}})();le.name("devecocli").description(`HarmonyOS application development command line tool
1346
1364
 
1347
- Privacy: ${qr.PRIVACY_URL}`).version("1.3.1");ae.addCommand(au);ae.addCommand(Lu);ae.addCommand(Vu);ae.addCommand(lp);ae.addCommand(_p);ae.addCommand(sf);ae.addCommand(Nf);ae.addCommand(_f);ae.addCommand(zf);ae.addCommand(nm);ae.addCommand(Am);ae.addCommand(Om);ae.addCommand(oh);ae.addCommand(Fh);ae.addCommand(kg);var Xl=process.argv.slice(2);Xl.length>=2&&Xl[Xl.length-1]==="help"&&(process.argv=[...process.argv.slice(0,-1),"--help"]);function _R(n){let e=n;for(;e.parent&&e.parent!==ae;)e=e.parent;return e}var jR=new Set(["update","auth","serve"]);ae.hook("preAction",async(n,e)=>{let t=_R(e),r=cr();if(t.name()==="update")return;let i=new Zt(ma.join(be(),"update")),o=Xt();if(r==="off"&&i.getBlockedVersions().includes(o))throw new Error(`devecocli ${o} has been disabled, run \`devecocli update\` to upgrade`);process.env.DEVECO_CLI_SKIP_VERSION_CHECK||jR.has(t.name())||await A.checkVersion()});ae.hook("postAction",async(n,e)=>{if(process.exitCode||cr()!=="off")return;await new di(e).checkAndNotify()});ae.parseAsync(process.argv).finally(()=>{I.stopScheduler();try{Da(ma.join(be(),"TraceLogData"))}catch(n){h.error(`[telemetry] background upload spawn check failed: ${n instanceof Error?n.message:String(n)}`)}}).catch(n=>{let e=n instanceof Error?n.message:String(n??"Unknown error");console.error(MR(`Error: ${e}`)),process.env.DEVECO_CLI_DEBUG==="1"&&n instanceof Error&&n.stack&&console.error(n.stack),process.exit(1)});
1365
+ Privacy: ${Qn.PRIVACY_URL}`).version("1.3.3-Test.3");var Py=le.options.find(r=>r.long==="--version");Py&&(Py.flags="-V, -v, --version");le.addCommand(Fu);le.addCommand(jp);le.addCommand(Yp);le.addCommand(gf);le.addCommand(Bf);le.addCommand(pm);le.addCommand($m);le.addCommand(Bm);le.addCommand(Qm);le.addCommand(ch);le.addCommand(Mh);le.addCommand(Uh);le.addCommand(Qh);le.addCommand(Og);le.addCommand(Ey);for(let r=2;r<process.argv.length;r++){let e=process.argv[r];if(e==="-v"){process.argv[r]="-V";break}if(!e.startsWith("-"))break}var Ad=process.argv.slice(2);Ad.length>=2&&Ad[Ad.length-1]==="help"&&(process.argv=[...process.argv.slice(0,-1),"--help"]);function ix(r){let e=r;for(;e.parent&&e.parent!==le;)e=e.parent;return e}var sx=new Set(["update","auth","serve"]);le.hook("preAction",async(r,e)=>{let t=ix(e),n=wn();if(t.name()==="update")return;let o=new sr(Na.join(Pe(),"update")),i=ir();if(n==="off"&&o.getBlockedVersions().includes(i))throw new Error(`devecocli ${i} has been disabled, run \`devecocli update\` to upgrade`);process.env.DEVECO_CLI_SKIP_VERSION_CHECK||sx.has(t.name())||await A.checkVersion()});le.hook("postAction",async(r,e)=>{if(process.exitCode||wn()!=="off")return;await new ko(e).checkAndNotify()});le.parseAsync(process.argv).finally(()=>{I.stopScheduler();try{Ya(Na.join(Pe(),"TraceLogData"))}catch(r){h.error(`[telemetry] background upload spawn check failed: ${r instanceof Error?r.message:String(r)}`)}}).catch(r=>{let e=r instanceof Error?r.message:String(r??"Unknown error");console.error(ox(`Error: ${e}`)),process.env.DEVECO_CLI_DEBUG==="1"&&r instanceof Error&&r.stack&&console.error(r.stack),process.exit(1)});