@deveco-test/hmos-deveco-cli 0.3.3 → 0.3.4
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 +19 -19
- package/index.zip +0 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
var ov=Object.defineProperty;var iv=(n,e)=>{for(var t in e)ov(n,t,{get:e[t],enumerable:!0})};import{program as oe}from"commander";import{red as kL}from"colorette";import{Command as eS}from"commander";import{green as xc,red as Nc,yellow as Lc}from"colorette";import X from"fs";import*as H from"path";import Ct from"json5";import*as hc from"fs";import*as we from"path";function m(n){process.env.DEVECO_CLI_DEBUG&&process.stderr.write(`[DEBUG] ${n}
|
|
3
3
|
`)}var R=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 o=Number.parseInt(r,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(`
|
|
4
4
|
`)}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 n.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 assertRelativeTimeRange(e,t){if(e!==void 0&&t!==void 0&&e<t)throw new Error("--from must be greater than or equal to --to when both are provided (e.g. --from 30s --to 10s)")}static filterLogsByRelativeWindow(e,t,r,o=new Date){if(!t&&!r)return e;let[i,s]=n.resolveTimeBounds(t,r,o),a=e.split(/\r?\n/),c=[],l=!1;for(let d of a){let h=n.extractTimestampFromLogLine(d,o);h&&(l=n.isWithinBounds(h,i,s)),l&&c.push(d)}return c.join(`
|
|
5
|
-
`)}static resolveTimeBounds(e,t,r){let o=e?new Date(r.getTime()-e*1e3):null,i=t?new Date(r.getTime()-t*1e3):null;return o&&i?o<i?[o,i]:[i,o]:o?[o,r]:i?[null,i]:[null,null]}static isWithinBounds(e,t,r){let o=e.getTime(),i=t?Math.floor(t.getTime()/1e3)*1e3:null,s=r?Math.floor(r.getTime()/1e3)*1e3+999:null;return!(i!==null&&o<i||s!==null&&o>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 o=t.getFullYear(),i=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",h=Number.parseInt(d.padEnd(3,"0").slice(0,3),10),w=new Date(o,i,s,a,c,l,h);return w.getTime()>t.getTime()+1440*60*1e3&&w.setFullYear(o-1),w}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 o=0;o<t.length;o++){let i=t[o];if(!r.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 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 o=r.charCodeAt(0);return o<=n.ASCII_CONTROL_MAX||o===n.ASCII_DELETE}))throw new Error(`Invalid keyword: ${JSON.stringify(e)}`)}static quotePosixShellArg(e){let r=`'${e.replace(/'/g,"'\\''")}'`;return m(`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),o=we.relative(r,t);if(o.split(we.sep)[0]===".."||we.isAbsolute(o))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),o=we.relative(t,r);return n.isPathEscaping(o)?{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 o;try{o=hc.realpathSync(t)}catch{return{contained:!1,reason:`Project root directory does not exist or cannot be resolved: ${t}`}}let i=we.resolve(o,e),s;try{s=hc.realpathSync(i)}catch{return{contained:!1,reason:`Path does not exist or cannot be resolved: ${i}`}}return n.isPathContained(s,o)}};var G=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 o=H.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=H.join(e,"build-profile.json5");if(!X.existsSync(t))return null;try{let r=X.readFileSync(t,"utf-8"),o=Ct.parse(r);return o.app?o: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(i=>i.name===e);if(!t)throw new Error(`Module '${e}' not found in project-level build-profile.json5.`);let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"src","main","module.json5");if(!X.existsSync(o))return"entry";try{let i=X.readFileSync(o,"utf-8");return Ct.parse(i)?.module?.type||"entry"}catch(i){return console.warn(`Warning: Failed to parse ${o}:`,i),"entry"}}findOwningModule(e){let t=H.normalize(e);for(let r of this.profile.modules){let o=H.normalize(H.join(this.rootDir,r.srcPath)),i=o+H.sep;if(t.startsWith(i)||t===o)return r.name}return null}getModuleProfile(e){let t=this.profile.modules.find(a=>a.name===e);if(!t)throw new Error(`Module '${e}' not found in project-level build-profile.json5.`);let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"build-profile.json5");if(!X.existsSync(o))throw new Error(`Build profile for module '${e}' not found at ${o}.`);let i=X.readFileSync(o,"utf-8");return Ct.parse(i)}getBundleName(){let e=H.join(this.rootDir,"AppScope","app.json5");if(X.existsSync(e))try{let t=X.readFileSync(e,"utf-8"),r=Ct.parse(t);if(r?.app?.bundleName)return r.app.bundleName}catch(t){console.warn(`Warning: Failed to parse ${e}:`,t)}throw new Error("Could not find bundleName in AppScope/app.json5.")}isAtomicService(){let e=H.join(this.rootDir,"AppScope","app.json5");if(!X.existsSync(e))return!1;try{let t=X.readFileSync(e,"utf-8");return Ct.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 o=R.resolvePathWithinRoot(this.rootDir,r.srcPath),i=H.join(o,"src","main","module.json5");if(!X.existsSync(i))return"EntryAbility";try{let s=X.readFileSync(i,"utf-8"),c=Ct.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 Error(`Invalid product name '${e}'. Product names must only contain letters, digits, underscores, and hyphens.`);if(!this.profile.app.products?.some(r=>r.name===e)){let r=this.profile.app.products?.map(o=>o.name).join(", ")||"none";throw new Error(`Product '${e}' not found in project configuration. Available products: ${r}`)}}getModuleDependencies(e){let t=this.profile.modules.find(s=>s.name===e);if(!t)return[];let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"oh-package.json5");if(!X.existsSync(o))return[];let i=[];try{let s=X.readFileSync(o,"utf-8"),c=Ct.parse(s)?.dependencies||{};for(let l of Object.values(c)){if(typeof l!="string")continue;let d=l;if(!(d.startsWith("file:")||d.startsWith(".")||d.startsWith("..")))continue;d.startsWith("file:")&&(d=d.substring(5));let w=H.join(t.srcPath,d),v=R.resolvePathWithinRoot(this.rootDir,w),A=this.profile.modules.find(ie=>H.resolve(this.rootDir,ie.srcPath)===v);A&&i.push(A.name)}}catch{}return i}getModuleName(e){let t=this.profile.modules.find(i=>i.name===e);if(!t)return e;let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"src","main","module.json5");if(!X.existsSync(o))return e;try{let i=X.readFileSync(o,"utf-8");return Ct.parse(i)?.module?.name||e}catch(i){return console.warn(`Warning: Failed to parse ${o}:`,i),e}}collectNonHarDependentModuleList(e){let t=[],r=[],o=new Set;for(r.push(e),o.add(e);r.length>0;){let i=r.shift();this.getModuleType(i)!=="har"&&t.push(i);let a=this.getModuleDependencies(i);for(let c of a)o.has(c)||(r.push(c),o.add(c))}return t}resolveModuleMetadata(e,t,r){this.validateProduct(r);let o=this.profile.modules.find(l=>l.name===e);if(!o){let l=this.getRunnableModuleNames();throw new Error(`Module '${e}' not found. Available modules: ${l}`)}let i=this.getModuleType(e)==="shared",s=i?"hspName":"hapName",a=this.buildOutputPath(o.srcPath,r,["intermediates",i?"hsp_metadata":"hap_metadata",t,"output_metadata.json"]);if(!X.existsSync(a))throw new Error(`Build metadata not found for module '${e}' at ${a}. Build the project first.`);let c=this.parseOutputMetadata(a,s);return{moduleNode:o,isShared:i,metadataPath:a,metadata:c}}findArtifactPath(e,t,r,o="default"){let{moduleNode:i,isShared:s,metadata:a}=this.resolveModuleMetadata(e,t,o),{packageName:c,isSigned:l}=a,d=c;if(!l){let v=this.getSignedHapName(c,i.srcPath,o,t);v&&(d=v)}let h=s?"-signed.hsp":"-signed.hap";if(!r&&!d.endsWith(h))throw new Error(`Target device is a real device, but the artifact for '${e}' is not signed. Real devices cannot install unsigned packages.`);let w=this.buildOutputPath(i.srcPath,o,["outputs",t,d]);if(!X.existsSync(w))throw new Error(`Generated package file not found in ${w}.`);return w}findRemoteHspPaths(e,t,r="default"){let{moduleNode:o,metadata:i}=this.resolveModuleMetadata(e,t,r),s=[],a=new Set;for(let{hspPath:c}of i.dependRemoteHsps){if(a.has(c))continue;a.add(c);let l=H.isAbsolute(c)?c:this.buildOutputPath(o.srcPath,r,["outputs",t,c]);if(!X.existsSync(l))throw new Error(`Remote HSP dependency not found: ${l}`);s.push(l)}return s}getSignedHapName(e,t,r,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,r,["outputs",o,i]);return X.existsSync(s)?i:null}buildOutputPath(e,t,r){let o=R.resolvePathWithinRoot(this.rootDir,e),i=H.resolve(o,"build",t,...r);return R.ensurePathWithinRoot(this.rootDir,i)}collectRemoteHsps(e){return e.flatMap(t=>{let r=t.dependRemoteHsps;return Array.isArray(r)?r.filter(o=>!!(o.hspName&&o.hspPath)).map(o=>({hspName:o.hspName,hspPath:o.hspPath})):[]})}parseOutputMetadata(e,t){let r=X.readFileSync(e,"utf-8"),o=Ct.parse(r),i,s=!1,a=Array.isArray(o)?o:[o];for(let l of a)i||(i=l[t]),s||(s=l.isSigned===!0);if(!i)throw new Error(`Could not find ${t} in output_metadata.json at ${e}`);this.validatePackageName(i);let c=this.collectRemoteHsps(a);return{packageName:i,isSigned:s,dependRemoteHsps:c}}validatePackageName(e){let t=H.basename(e);if(t!==e)throw new Error(`Invalid traversal name: '${e}'. It must contain path characters.`);if(!t.endsWith(".hap")&&!t.endsWith(".hsp"))throw new Error(`Invalid package name '${t}'.It must be a .hap or .hsp file.`)}};import ue from"fs";import*as Be from"os";import*as S from"path";import Cu from"fs";import*as ki from"os";import*as Ti from"path";import cv from"regedit";import{execFileSync as sv}from"child_process";import Su from"fs";import*as bu from"os";import*as gc from"path";function Ri(n,e){let t=gc.join(n,"Contents","Info.plist");if(!Su.existsSync(t)){m(`[ToolProvider] Info.plist not found at: ${t}`);return}for(let[r,o]of[["/usr/libexec/PlistBuddy",["-c",`Print :${e}`,t]],["plutil",["-extract",e,"raw","-o","-",t]]])try{let i=sv(r,o,{encoding:"utf8",stdio:["ignore","pipe","ignore"]}).trim();if(i&&!i.includes("Does Not Exist"))return i}catch{}}function av(n){let e=Ri(n,"CFBundleShortVersionString");if(!e)return Ri(n,"CFBundleVersion");let t=e.split(".").slice(0,3).join(""),r=[Ri(n,"CFBundleVersion"),Ri(n,"CFBundleGetInfoString")?.match(/DS-[\d.]+/)?.[0]];for(let o of r){let i=o?.split(".").at(-1)?.replace(new RegExp(`^${t}`),"");if(i&&/^\d+$/.test(i))return`${e}.${i}`}return e}function so(n){if(bu.platform()==="darwin")return av(n);let e=gc.join(n,"product-info.json");try{let t=JSON.parse(Su.readFileSync(e,"utf8")).version;return typeof t=="string"&&t.trim()?t.trim():void 0}catch{return}}function ao(n,e){let t=Math.max(n.split(".").length,e.split(".").length);for(let r=0;r<t;r++){let o=Number(n.split(".")[r]??0)-Number(e.split(".")[r]??0);if(o)return o}return 0}function lv(n){return n.filter(e=>{try{return Cu.statSync(e).isDirectory()}catch{return!1}})}function dv(){let n=[];for(let e of[Ti.join(ki.homedir(),"Applications"),"/Applications"])try{n.push(...Cu.readdirSync(e).filter(t=>t.endsWith(".app")&&t.toLowerCase().includes("deveco")).map(t=>Ti.join(e,t)))}catch{}return n}function Eu(n){return new Promise((e,t)=>cv.list(n,(r,o)=>r?t(r):e(o)))}async function Pu(n,e,t){let o=((await Eu([n]))[n]?.keys??[]).filter(e).map(s=>`${n}\\${s}`);if(o.length===0)return[];let i=await Eu(o);return o.flatMap(s=>{let a=i[s]?.values?.[t]?.value;return a?[a]:[]})}async function uv(){let n=[Ti.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 Pu(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 Pu(e,()=>!0,""))}catch{}return n}async function Iu(){let n=ki.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"?dv():await uv(),t=lv(e).flatMap(r=>{let o=so(r);return o?(m(`[ToolProvider] ${r} => version ${o}`),[{root:r,version:o}]):(m(`[ToolProvider] Skipping ${r}: could not read version`),[])});if(!t.length)throw new Error("DevEco Studio installation not found in default locations.");return t.reduce((r,o)=>ao(o.version,r.version)>0?o:r)}import*as Au from"fs";import*as Te from"path";function co(n,e){let t=Te.relative(e,n);return t===""||!Te.isAbsolute(t)&&!t.startsWith(`..${Te.sep}`)&&t!==".."}function yt(n){let e=Te.resolve(n),t=[],r=e;for(;;)try{let o=Au.realpathSync(r);return t.length===0?o:Te.join(o,...t.reverse())}catch(o){if(o.code!=="ENOENT")throw o;let i=Te.dirname(r);if(i===r)return e;t.push(Te.basename(r)),r=i}}function xi(n,e){let t=yt(e),r=yt(n);return co(r,t)?r:null}function Ni(n){let e=n.trim();return(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))&&(e=e.slice(1,-1).trim()),e}function Li(n){let e=Ni(n);if(!e)throw new Error("Path must not be empty.");return yt(e)}var lo={LOGIN_TIMEOUT_MS:6e5,HTTP_TIMEOUT_MS:2e4,TOKEN_VALIDITY_DAYS:30},Oi={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"},q={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"},Nn={ALGORITHM:"aes-256-gcm",KEY_LENGTH:32,IV_LENGTH:12,KEK_VERSIONS:["kek-v1","kek-v2","kek-v3"]},uo={baseUrl:q.LOGIN_URL,authUrl:q.AUTH_APPLY_PATH,tempTokenCheckUrl:q.TEMP_TOKEN_CHECK_PATH,jwtTokenCheckUrl:q.JWT_TOKEN_CHECK_PATH,successRedirectUrl:q.LOGIN_SUCCESS_PATH,failedRedirectUrl:q.LOGIN_FAILED_PATH,logoutUrl:q.LOGOUT_PATH,agcTeamListUrl:q.AGC_TEAM_LIST_URL,appId:ve.APP_ID,timeout:lo.LOGIN_TIMEOUT_MS,countryCode:"CN"};import{homedir as Xt}from"os";import It from"path";import{xdgConfig as pv}from"xdg-basedir";var de={"trae-cn":It.join(Xt(),".trae-cn"),opencode:It.join(pv,"opencode"),cursor:It.join(Xt(),".cursor"),codebuddy:It.join(Xt(),".codebuddy"),qoder:It.join(Xt(),".qoder"),"claude-code":It.join(Xt(),".claude"),codex:It.join(Xt(),".codex"),bitfun:It.join(Xt(),".bitfun"),opendesk:It.join(Xt(),".opendesk")};import Zt from"path";import*as Du from"os";function b(){return yc().toLowerCase().includes("openharmony")}function yc(){return Du.platform()}var wc="https://matrix.openharmony.cn",ot={TAGS_API_URL:`${wc}/api/model_base/model/tags?serviceType=skill`,SKILLS_API_URL:`${wc}/api/registry/skill/skills`,SKILL_API_BASE:`${wc}/api/registry/skill`,DEFAULT_PAGE_SIZE:20,SUCCESS_CODE:"20000"},Ru={"trae-cn":{path:Zt.join(de["trae-cn"],"skills"),displayName:"trae-cn"},opencode:{path:Zt.join(de.opencode,"skills"),displayName:"opencode"},cursor:{path:Zt.join(de.cursor,"skills"),displayName:"cursor"},codebuddy:{path:Zt.join(de.codebuddy,"skills"),displayName:"codebuddy"},qoder:{path:Zt.join(de.qoder,"skills"),displayName:"qoder"},"claude-code":{path:Zt.join(de["claude-code"],"skills"),projectPath:".claude/skills",displayName:"claude-code"},codex:{path:Zt.join(de.codex,"skills"),displayName:"codex"}},Tu={opencode:{path:Zt.join(de.opencode,"skills"),displayName:"opencode"}};function At(){return b()?Tu:Ru}import{homedir as po}from"os";import Ue from"path";var wt="deveco-mcp";var Qt={opencode:{name:"opencode",displayName:"OpenCode",supportsGlobal:!0,globalConfigPath:Ue.join(de.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(po(),"AppData","Roaming"),"Trae CN","User"):Ue.join(po(),"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(de.cursor,"mcp.json"),projectConfigPath:".cursor/mcp.json",mcpServersKey:"mcpServers",format:"standard"},codebuddy:{name:"codebuddy",displayName:"Codebuddy",supportsGlobal:!0,globalConfigPath:Ue.join(de.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(po(),"AppData","Roaming"),"Qoder","SharedClientCache"):Ue.join(po(),"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(po(),".claude.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"claude-code"},codex:{name:"codex",displayName:"Codex",supportsGlobal:!0,globalConfigPath:Ue.join(de.codex,"config.toml"),projectConfigPath:".codex/config.toml",mcpServersKey:"mcp_servers",format:"codex"}};function xu(n){return{type:"local",command:["devecocli","serve","mcp"],environment:{PROJECT_PATH:n??"."},enabled:!0}}function ku(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"."},enabled:!0}}function Nu(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"${workspaceFolder}"}}}function Mi(n,e){return n.format==="opencode"?xu(e):n.format==="claude-code"||n.format==="codex"?ku(e):Nu(e)}var it={OH_PACKAGE_JSON5:"oh-package.json5",BUILD_PROFILE_JSON5:"build-profile.json5",SYNC_OUTPUT_PATH:".hvigor/outputs/sync/output.json"};var vc="https://developer.huawei.com/consumer/cn/download/";var fv=/^#\s*Version:\s*(\S+)/,mv="26.0.0.810",hv=["sdk","default","openharmony","native","llvm","bin","clangd"];function gv(n){try{let e=JSON.parse(ue.readFileSync(n,"utf8")),t=Number(e.apiVersion??e.data?.apiVersion);return Number.isInteger(t)&&t>=17?t:void 0}catch{return}}function yv(n){let e=S.join(n,"default","openharmony");return[S.join(n,"default","sdk-pkg.json"),...["toolchains","native","previewer"].map(t=>S.join(e,t,"oh-uni-package.json"))]}var I=class n{constructor(e,t,r,o,i,s,a,c,l,d,h="",w=""){this._sourceType=e;this._toolchainRoot=t;this._devecoStudioPath=r;this._nodePath=o;this._ohpmJsPath=i;this._hvigorJsPath=s;this._javaPath=a;this._sdkPath=c;this._hdcPath=l;this._emulatorPath=d;this._clangdPath=h;this._lspServerPath=w}_sourceType;_toolchainRoot;_devecoStudioPath;_nodePath;_ohpmJsPath;_hvigorJsPath;_javaPath;_sdkPath;_hdcPath;_emulatorPath;_clangdPath;_lspServerPath;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 javaPath(){return this._javaPath??""}get sdkPath(){return this._sdkPath}get hdcPath(){return this._hdcPath}get emulatorPath(){return this._emulatorPath}get emulatorLauncherPath(){return this.emulatorPath}get clangdPath(){return this._clangdPath&&ue.existsSync(this._clangdPath)?this._clangdPath:""}get lspServerPath(){return this._lspServerPath&&ue.existsSync(this._lspServerPath)?this._lspServerPath:""}assertJava(){if(!b()&&(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 ao(e,t)}static async checkVersion(){if(b())return;let e=await n.resolveInstallSource();(e.sourceType==="clt"?n.fromCLT(e.toolchainRoot):n.fromIDE(e.toolchainRoot,e.sourceType)).assertVersion()}static async new(){if(b())return n.fromOpenHarmony();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,n.resolveClangdPath(e),n.resolveLspServerPath(e))}static OPENHARMONY_STUDIO_ROOT="/data/service/hnp/hmos-clt.org/hmos-clt_1.0.0";static fromOpenHarmony(){let e=process.env.COMMAND_LINE_TOOL_PATH?.trim();if(!e&&!n.isDirectory(n.OPENHARMONY_STUDIO_ROOT))throw new Error("No toolchain found. Set COMMAND_LINE_TOOL_PATH.");return e?(m(`[ToolProvider] Using COMMAND_LINE_TOOL_PATH \u2192 ${e}`),n.buildOpenHarmonyProvider("clt",e)):(m("[ToolProvider] COMMAND_LINE_TOOL_PATH not set, using fallback DevEco Studio toolchain"),n.buildOpenHarmonyProvider("studio",n.OPENHARMONY_STUDIO_ROOT))}static buildOpenHarmonyToolPaths(e){let t=S.join(e,"sdk");return{nodePath:S.join(e,"node","bin","node"),ohpmJsPath:S.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:t,hdcPath:S.join(t,"default","openharmony","toolchains","hdc"),emulatorPath:"",clangdPath:S.join(e,"clangd","clangd"),lspServerPath:S.join(e,"ace-server","out","index.js")}}static buildOpenHarmonyProvider(e,t){let r=e==="clt"?"COMMAND_LINE_TOOL_PATH is invalid":"DevEco Studio toolchain is invalid";if(!n.isDirectory(t))throw new Error(`${r}: ${t} is not a valid directory.`);let o=n.buildOpenHarmonyToolPaths(t),i=Object.entries({node:o.nodePath,ohpm:o.ohpmJsPath,hvigor:o.hvigorJsPath,hdc:o.hdcPath}).filter(([,s])=>!s||!ue.existsSync(s)).map(([s])=>s);if(i.length>0)throw new Error(`${r}: ${t} \u2014 missing required: ${i.join(", ")}.`);return n.assertBuiltPathsInsideRoot(t,o,!1),new n(e,t,e==="studio"?t:void 0,o.nodePath,o.ohpmJsPath,o.hvigorJsPath,"",o.sdkPath,o.hdcPath,o.emulatorPath,o.clangdPath,o.lspServerPath)}static devecoContentRootForClangd(e){return Be.platform()==="darwin"&&e.endsWith(".app")?S.join(e,"Contents"):e}static clangdCandidatesFromDevecoHome(e){let t=new Set,r=[e,n.devecoContentRootForClangd(e)];for(let o of r){let i=S.join(o,...hv);t.add(Be.platform()==="win32"?i+".exe":i)}return[...t]}static resolveClangdPath(e){let t=n.clangdCandidatesFromDevecoHome(e);for(let r of t)if(ue.existsSync(r))return r;return""}static resolveLspServerPath(e){let t=Be.platform(),r;if(t==="win32")r=S.join(e,"plugins","openharmony");else if(t==="darwin")r=S.join(e,"Contents","plugins","openharmony");else return"";let o=S.join(r,"ace-server","out","index.js");return ue.existsSync(o)?o:""}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.1.0"){b()||(this.assertStudio(),n.assertMinimumVersion(so(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,o,i){if(!e)throw new Error(`Failed to determine ${t} version from ${r} at ${i}`);if(!/^\d+(?:\.\d+){1,3}$/.test(e))throw new Error(`Invalid ${t} version "${e}" from ${r} at ${i}`);if(ao(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:
|
|
5
|
+
`)}static resolveTimeBounds(e,t,r){let o=e?new Date(r.getTime()-e*1e3):null,i=t?new Date(r.getTime()-t*1e3):null;return o&&i?o<i?[o,i]:[i,o]:o?[o,r]:i?[null,i]:[null,null]}static isWithinBounds(e,t,r){let o=e.getTime(),i=t?Math.floor(t.getTime()/1e3)*1e3:null,s=r?Math.floor(r.getTime()/1e3)*1e3+999:null;return!(i!==null&&o<i||s!==null&&o>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 o=t.getFullYear(),i=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",h=Number.parseInt(d.padEnd(3,"0").slice(0,3),10),w=new Date(o,i,s,a,c,l,h);return w.getTime()>t.getTime()+1440*60*1e3&&w.setFullYear(o-1),w}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 o=0;o<t.length;o++){let i=t[o];if(!r.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 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 o=r.charCodeAt(0);return o<=n.ASCII_CONTROL_MAX||o===n.ASCII_DELETE}))throw new Error(`Invalid keyword: ${JSON.stringify(e)}`)}static quotePosixShellArg(e){let r=`'${e.replace(/'/g,"'\\''")}'`;return m(`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),o=we.relative(r,t);if(o.split(we.sep)[0]===".."||we.isAbsolute(o))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),o=we.relative(t,r);return n.isPathEscaping(o)?{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 o;try{o=hc.realpathSync(t)}catch{return{contained:!1,reason:`Project root directory does not exist or cannot be resolved: ${t}`}}let i=we.resolve(o,e),s;try{s=hc.realpathSync(i)}catch{return{contained:!1,reason:`Path does not exist or cannot be resolved: ${i}`}}return n.isPathContained(s,o)}};var G=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 o=H.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=H.join(e,"build-profile.json5");if(!X.existsSync(t))return null;try{let r=X.readFileSync(t,"utf-8"),o=Ct.parse(r);return o.app?o: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(i=>i.name===e);if(!t)throw new Error(`Module '${e}' not found in project-level build-profile.json5.`);let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"src","main","module.json5");if(!X.existsSync(o))return"entry";try{let i=X.readFileSync(o,"utf-8");return Ct.parse(i)?.module?.type||"entry"}catch(i){return console.warn(`Warning: Failed to parse ${o}:`,i),"entry"}}findOwningModule(e){let t=H.normalize(e);for(let r of this.profile.modules){let o=H.normalize(H.join(this.rootDir,r.srcPath)),i=o+H.sep;if(t.startsWith(i)||t===o)return r.name}return null}getModuleProfile(e){let t=this.profile.modules.find(a=>a.name===e);if(!t)throw new Error(`Module '${e}' not found in project-level build-profile.json5.`);let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"build-profile.json5");if(!X.existsSync(o))throw new Error(`Build profile for module '${e}' not found at ${o}.`);let i=X.readFileSync(o,"utf-8");return Ct.parse(i)}getBundleName(){let e=H.join(this.rootDir,"AppScope","app.json5");if(X.existsSync(e))try{let t=X.readFileSync(e,"utf-8"),r=Ct.parse(t);if(r?.app?.bundleName)return r.app.bundleName}catch(t){console.warn(`Warning: Failed to parse ${e}:`,t)}throw new Error("Could not find bundleName in AppScope/app.json5.")}isAtomicService(){let e=H.join(this.rootDir,"AppScope","app.json5");if(!X.existsSync(e))return!1;try{let t=X.readFileSync(e,"utf-8");return Ct.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 o=R.resolvePathWithinRoot(this.rootDir,r.srcPath),i=H.join(o,"src","main","module.json5");if(!X.existsSync(i))return"EntryAbility";try{let s=X.readFileSync(i,"utf-8"),c=Ct.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 Error(`Invalid product name '${e}'. Product names must only contain letters, digits, underscores, and hyphens.`);if(!this.profile.app.products?.some(r=>r.name===e)){let r=this.profile.app.products?.map(o=>o.name).join(", ")||"none";throw new Error(`Product '${e}' not found in project configuration. Available products: ${r}`)}}getModuleDependencies(e){let t=this.profile.modules.find(s=>s.name===e);if(!t)return[];let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"oh-package.json5");if(!X.existsSync(o))return[];let i=[];try{let s=X.readFileSync(o,"utf-8"),c=Ct.parse(s)?.dependencies||{};for(let l of Object.values(c)){if(typeof l!="string")continue;let d=l;if(!(d.startsWith("file:")||d.startsWith(".")||d.startsWith("..")))continue;d.startsWith("file:")&&(d=d.substring(5));let w=H.join(t.srcPath,d),v=R.resolvePathWithinRoot(this.rootDir,w),A=this.profile.modules.find(ie=>H.resolve(this.rootDir,ie.srcPath)===v);A&&i.push(A.name)}}catch{}return i}getModuleName(e){let t=this.profile.modules.find(i=>i.name===e);if(!t)return e;let r=R.resolvePathWithinRoot(this.rootDir,t.srcPath),o=H.join(r,"src","main","module.json5");if(!X.existsSync(o))return e;try{let i=X.readFileSync(o,"utf-8");return Ct.parse(i)?.module?.name||e}catch(i){return console.warn(`Warning: Failed to parse ${o}:`,i),e}}collectNonHarDependentModuleList(e){let t=[],r=[],o=new Set;for(r.push(e),o.add(e);r.length>0;){let i=r.shift();this.getModuleType(i)!=="har"&&t.push(i);let a=this.getModuleDependencies(i);for(let c of a)o.has(c)||(r.push(c),o.add(c))}return t}resolveModuleMetadata(e,t,r){this.validateProduct(r);let o=this.profile.modules.find(l=>l.name===e);if(!o){let l=this.getRunnableModuleNames();throw new Error(`Module '${e}' not found. Available modules: ${l}`)}let i=this.getModuleType(e)==="shared",s=i?"hspName":"hapName",a=this.buildOutputPath(o.srcPath,r,["intermediates",i?"hsp_metadata":"hap_metadata",t,"output_metadata.json"]);if(!X.existsSync(a))throw new Error(`Build metadata not found for module '${e}' at ${a}. Build the project first.`);let c=this.parseOutputMetadata(a,s);return{moduleNode:o,isShared:i,metadataPath:a,metadata:c}}findArtifactPath(e,t,r,o="default"){let{moduleNode:i,isShared:s,metadata:a}=this.resolveModuleMetadata(e,t,o),{packageName:c,isSigned:l}=a,d=c;if(!l){let v=this.getSignedHapName(c,i.srcPath,o,t);v&&(d=v)}let h=s?"-signed.hsp":"-signed.hap";if(!r&&!d.endsWith(h))throw new Error(`Target device is a real device, but the artifact for '${e}' is not signed. Real devices cannot install unsigned packages.`);let w=this.buildOutputPath(i.srcPath,o,["outputs",t,d]);if(!X.existsSync(w))throw new Error(`Generated package file not found in ${w}.`);return w}findRemoteHspPaths(e,t,r="default"){let{moduleNode:o,metadata:i}=this.resolveModuleMetadata(e,t,r),s=[],a=new Set;for(let{hspPath:c}of i.dependRemoteHsps){if(a.has(c))continue;a.add(c);let l=H.isAbsolute(c)?c:this.buildOutputPath(o.srcPath,r,["outputs",t,c]);if(!X.existsSync(l))throw new Error(`Remote HSP dependency not found: ${l}`);s.push(l)}return s}getSignedHapName(e,t,r,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,r,["outputs",o,i]);return X.existsSync(s)?i:null}buildOutputPath(e,t,r){let o=R.resolvePathWithinRoot(this.rootDir,e),i=H.resolve(o,"build",t,...r);return R.ensurePathWithinRoot(this.rootDir,i)}collectRemoteHsps(e){return e.flatMap(t=>{let r=t.dependRemoteHsps;return Array.isArray(r)?r.filter(o=>!!(o.hspName&&o.hspPath)).map(o=>({hspName:o.hspName,hspPath:o.hspPath})):[]})}parseOutputMetadata(e,t){let r=X.readFileSync(e,"utf-8"),o=Ct.parse(r),i,s=!1,a=Array.isArray(o)?o:[o];for(let l of a)i||(i=l[t]),s||(s=l.isSigned===!0);if(!i)throw new Error(`Could not find ${t} in output_metadata.json at ${e}`);this.validatePackageName(i);let c=this.collectRemoteHsps(a);return{packageName:i,isSigned:s,dependRemoteHsps:c}}validatePackageName(e){let t=H.basename(e);if(t!==e)throw new Error(`Invalid traversal name: '${e}'. It must contain path characters.`);if(!t.endsWith(".hap")&&!t.endsWith(".hsp"))throw new Error(`Invalid package name '${t}'.It must be a .hap or .hsp file.`)}};import ue from"fs";import*as Be from"os";import*as S from"path";import Cu from"fs";import*as ki from"os";import*as Ti from"path";import cv from"regedit";import{execFileSync as sv}from"child_process";import Su from"fs";import*as bu from"os";import*as gc from"path";function Ri(n,e){let t=gc.join(n,"Contents","Info.plist");if(!Su.existsSync(t)){m(`[ToolProvider] Info.plist not found at: ${t}`);return}for(let[r,o]of[["/usr/libexec/PlistBuddy",["-c",`Print :${e}`,t]],["plutil",["-extract",e,"raw","-o","-",t]]])try{let i=sv(r,o,{encoding:"utf8",stdio:["ignore","pipe","ignore"]}).trim();if(i&&!i.includes("Does Not Exist"))return i}catch{}}function av(n){let e=Ri(n,"CFBundleShortVersionString");if(!e)return Ri(n,"CFBundleVersion");let t=e.split(".").slice(0,3).join(""),r=[Ri(n,"CFBundleVersion"),Ri(n,"CFBundleGetInfoString")?.match(/DS-[\d.]+/)?.[0]];for(let o of r){let i=o?.split(".").at(-1)?.replace(new RegExp(`^${t}`),"");if(i&&/^\d+$/.test(i))return`${e}.${i}`}return e}function so(n){if(bu.platform()==="darwin")return av(n);let e=gc.join(n,"product-info.json");try{let t=JSON.parse(Su.readFileSync(e,"utf8")).version;return typeof t=="string"&&t.trim()?t.trim():void 0}catch{return}}function ao(n,e){let t=Math.max(n.split(".").length,e.split(".").length);for(let r=0;r<t;r++){let o=Number(n.split(".")[r]??0)-Number(e.split(".")[r]??0);if(o)return o}return 0}function lv(n){return n.filter(e=>{try{return Cu.statSync(e).isDirectory()}catch{return!1}})}function dv(){let n=[];for(let e of[Ti.join(ki.homedir(),"Applications"),"/Applications"])try{n.push(...Cu.readdirSync(e).filter(t=>t.endsWith(".app")&&t.toLowerCase().includes("deveco")).map(t=>Ti.join(e,t)))}catch{}return n}function Eu(n){return new Promise((e,t)=>cv.list(n,(r,o)=>r?t(r):e(o)))}async function Pu(n,e,t){let o=((await Eu([n]))[n]?.keys??[]).filter(e).map(s=>`${n}\\${s}`);if(o.length===0)return[];let i=await Eu(o);return o.flatMap(s=>{let a=i[s]?.values?.[t]?.value;return a?[a]:[]})}async function uv(){let n=[Ti.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 Pu(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 Pu(e,()=>!0,""))}catch{}return n}async function Iu(){let n=ki.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"?dv():await uv(),t=lv(e).flatMap(r=>{let o=so(r);return o?(m(`[ToolProvider] ${r} => version ${o}`),[{root:r,version:o}]):(m(`[ToolProvider] Skipping ${r}: could not read version`),[])});if(!t.length)throw new Error("DevEco Studio installation not found in default locations.");return t.reduce((r,o)=>ao(o.version,r.version)>0?o:r)}import*as Au from"fs";import*as Te from"path";function co(n,e){let t=Te.relative(e,n);return t===""||!Te.isAbsolute(t)&&!t.startsWith(`..${Te.sep}`)&&t!==".."}function yt(n){let e=Te.resolve(n),t=[],r=e;for(;;)try{let o=Au.realpathSync(r);return t.length===0?o:Te.join(o,...t.reverse())}catch(o){if(o.code!=="ENOENT")throw o;let i=Te.dirname(r);if(i===r)return e;t.push(Te.basename(r)),r=i}}function xi(n,e){let t=yt(e),r=yt(n);return co(r,t)?r:null}function Ni(n){let e=n.trim();return(e.startsWith('"')&&e.endsWith('"')||e.startsWith("'")&&e.endsWith("'"))&&(e=e.slice(1,-1).trim()),e}function Li(n){let e=Ni(n);if(!e)throw new Error("Path must not be empty.");return yt(e)}var lo={LOGIN_TIMEOUT_MS:6e5,HTTP_TIMEOUT_MS:2e4,TOKEN_VALIDITY_DAYS:30},Oi={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"},q={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"},Nn={ALGORITHM:"aes-256-gcm",KEY_LENGTH:32,IV_LENGTH:12,KEK_VERSIONS:["kek-v1","kek-v2","kek-v3"]},uo={baseUrl:q.LOGIN_URL,authUrl:q.AUTH_APPLY_PATH,tempTokenCheckUrl:q.TEMP_TOKEN_CHECK_PATH,jwtTokenCheckUrl:q.JWT_TOKEN_CHECK_PATH,successRedirectUrl:q.LOGIN_SUCCESS_PATH,failedRedirectUrl:q.LOGIN_FAILED_PATH,logoutUrl:q.LOGOUT_PATH,agcTeamListUrl:q.AGC_TEAM_LIST_URL,appId:ve.APP_ID,timeout:lo.LOGIN_TIMEOUT_MS,countryCode:"CN"};import{homedir as Xt}from"os";import It from"path";import{xdgConfig as pv}from"xdg-basedir";var de={"trae-cn":It.join(Xt(),".trae-cn"),opencode:It.join(pv,"opencode"),cursor:It.join(Xt(),".cursor"),codebuddy:It.join(Xt(),".codebuddy"),qoder:It.join(Xt(),".qoder"),"claude-code":It.join(Xt(),".claude"),codex:It.join(Xt(),".codex"),bitfun:It.join(Xt(),".bitfun"),opendesk:It.join(Xt(),".opendesk")};import Zt from"path";import*as Du from"os";function E(){return yc().toLowerCase().includes("openharmony")}function yc(){return Du.platform()}var wc="https://matrix.openharmony.cn",ot={TAGS_API_URL:`${wc}/api/model_base/model/tags?serviceType=skill`,SKILLS_API_URL:`${wc}/api/registry/skill/skills`,SKILL_API_BASE:`${wc}/api/registry/skill`,DEFAULT_PAGE_SIZE:20,SUCCESS_CODE:"20000"},Ru={"trae-cn":{path:Zt.join(de["trae-cn"],"skills"),displayName:"trae-cn"},opencode:{path:Zt.join(de.opencode,"skills"),displayName:"opencode"},cursor:{path:Zt.join(de.cursor,"skills"),displayName:"cursor"},codebuddy:{path:Zt.join(de.codebuddy,"skills"),displayName:"codebuddy"},qoder:{path:Zt.join(de.qoder,"skills"),displayName:"qoder"},"claude-code":{path:Zt.join(de["claude-code"],"skills"),projectPath:".claude/skills",displayName:"claude-code"},codex:{path:Zt.join(de.codex,"skills"),displayName:"codex"}},Tu={opencode:{path:Zt.join(de.opencode,"skills"),displayName:"opencode"}};function At(){return E()?Tu:Ru}import{homedir as po}from"os";import Ue from"path";var wt="deveco-mcp";var Qt={opencode:{name:"opencode",displayName:"OpenCode",supportsGlobal:!0,globalConfigPath:Ue.join(de.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(po(),"AppData","Roaming"),"Trae CN","User"):Ue.join(po(),"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(de.cursor,"mcp.json"),projectConfigPath:".cursor/mcp.json",mcpServersKey:"mcpServers",format:"standard"},codebuddy:{name:"codebuddy",displayName:"Codebuddy",supportsGlobal:!0,globalConfigPath:Ue.join(de.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(po(),"AppData","Roaming"),"Qoder","SharedClientCache"):Ue.join(po(),"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(po(),".claude.json"),projectConfigPath:".mcp.json",mcpServersKey:"mcpServers",format:"claude-code"},codex:{name:"codex",displayName:"Codex",supportsGlobal:!0,globalConfigPath:Ue.join(de.codex,"config.toml"),projectConfigPath:".codex/config.toml",mcpServersKey:"mcp_servers",format:"codex"}};function xu(n){return{type:"local",command:["devecocli","serve","mcp"],environment:{PROJECT_PATH:n??"."},enabled:!0}}function ku(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"."},enabled:!0}}function Nu(n){return{type:"stdio",command:"devecocli",args:["serve","mcp"],env:{PROJECT_PATH:n??"${workspaceFolder}"}}}function Mi(n,e){return n.format==="opencode"?xu(e):n.format==="claude-code"||n.format==="codex"?ku(e):Nu(e)}var it={OH_PACKAGE_JSON5:"oh-package.json5",BUILD_PROFILE_JSON5:"build-profile.json5",SYNC_OUTPUT_PATH:".hvigor/outputs/sync/output.json"};var vc="https://developer.huawei.com/consumer/cn/download/";var fv=/^#\s*Version:\s*(\S+)/,mv="26.0.0.810",hv=["sdk","default","openharmony","native","llvm","bin","clangd"];function gv(n){try{let e=JSON.parse(ue.readFileSync(n,"utf8")),t=Number(e.apiVersion??e.data?.apiVersion);return Number.isInteger(t)&&t>=17?t:void 0}catch{return}}function yv(n){let e=S.join(n,"default","openharmony");return[S.join(n,"default","sdk-pkg.json"),...["toolchains","native","previewer"].map(t=>S.join(e,t,"oh-uni-package.json"))]}var I=class n{constructor(e,t,r,o,i,s,a,c,l,d,h="",w=""){this._sourceType=e;this._toolchainRoot=t;this._devecoStudioPath=r;this._nodePath=o;this._ohpmJsPath=i;this._hvigorJsPath=s;this._javaPath=a;this._sdkPath=c;this._hdcPath=l;this._emulatorPath=d;this._clangdPath=h;this._lspServerPath=w}_sourceType;_toolchainRoot;_devecoStudioPath;_nodePath;_ohpmJsPath;_hvigorJsPath;_javaPath;_sdkPath;_hdcPath;_emulatorPath;_clangdPath;_lspServerPath;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 javaPath(){return this._javaPath??""}get sdkPath(){return this._sdkPath}get hdcPath(){return this._hdcPath}get emulatorPath(){return this._emulatorPath}get emulatorLauncherPath(){return this.emulatorPath}get clangdPath(){return this._clangdPath&&ue.existsSync(this._clangdPath)?this._clangdPath:""}get lspServerPath(){return this._lspServerPath&&ue.existsSync(this._lspServerPath)?this._lspServerPath:""}assertJava(){if(!E()&&(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 ao(e,t)}static async checkVersion(){if(E())return;let e=await n.resolveInstallSource();(e.sourceType==="clt"?n.fromCLT(e.toolchainRoot):n.fromIDE(e.toolchainRoot,e.sourceType)).assertVersion()}static async new(){if(E())return n.fromOpenHarmony();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,n.resolveClangdPath(e),n.resolveLspServerPath(e))}static OPENHARMONY_STUDIO_ROOT="/data/service/hnp/hmos-clt.org/hmos-clt_1.0.0";static fromOpenHarmony(){let e=process.env.COMMAND_LINE_TOOL_PATH?.trim();if(!e&&!n.isDirectory(n.OPENHARMONY_STUDIO_ROOT))throw new Error("No toolchain found. Set COMMAND_LINE_TOOL_PATH.");return e?(m(`[ToolProvider] Using COMMAND_LINE_TOOL_PATH \u2192 ${e}`),n.buildOpenHarmonyProvider("clt",e)):(m("[ToolProvider] COMMAND_LINE_TOOL_PATH not set, using fallback DevEco Studio toolchain"),n.buildOpenHarmonyProvider("studio",n.OPENHARMONY_STUDIO_ROOT))}static buildOpenHarmonyToolPaths(e){let t=S.join(e,"sdk");return{nodePath:S.join(e,"node","bin","node"),ohpmJsPath:S.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:t,hdcPath:S.join(t,"default","openharmony","toolchains","hdc"),emulatorPath:"",clangdPath:S.join(e,"clangd","clangd"),lspServerPath:S.join(e,"ace-server","out","index.js")}}static buildOpenHarmonyProvider(e,t){let r=e==="clt"?"COMMAND_LINE_TOOL_PATH is invalid":"DevEco Studio toolchain is invalid";if(!n.isDirectory(t))throw new Error(`${r}: ${t} is not a valid directory.`);let o=n.buildOpenHarmonyToolPaths(t),i=Object.entries({node:o.nodePath,ohpm:o.ohpmJsPath,hvigor:o.hvigorJsPath,hdc:o.hdcPath}).filter(([,s])=>!s||!ue.existsSync(s)).map(([s])=>s);if(i.length>0)throw new Error(`${r}: ${t} \u2014 missing required: ${i.join(", ")}.`);return n.assertBuiltPathsInsideRoot(t,o,!1),new n(e,t,e==="studio"?t:void 0,o.nodePath,o.ohpmJsPath,o.hvigorJsPath,"",o.sdkPath,o.hdcPath,o.emulatorPath,o.clangdPath,o.lspServerPath)}static devecoContentRootForClangd(e){return Be.platform()==="darwin"&&e.endsWith(".app")?S.join(e,"Contents"):e}static clangdCandidatesFromDevecoHome(e){let t=new Set,r=[e,n.devecoContentRootForClangd(e)];for(let o of r){let i=S.join(o,...hv);t.add(Be.platform()==="win32"?i+".exe":i)}return[...t]}static resolveClangdPath(e){let t=n.clangdCandidatesFromDevecoHome(e);for(let r of t)if(ue.existsSync(r))return r;return""}static resolveLspServerPath(e){let t=Be.platform(),r;if(t==="win32")r=S.join(e,"plugins","openharmony");else if(t==="darwin")r=S.join(e,"Contents","plugins","openharmony");else return"";let o=S.join(r,"ace-server","out","index.js");return ue.existsSync(o)?o:""}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.1.0"){E()||(this.assertStudio(),n.assertMinimumVersion(so(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,o,i){if(!e)throw new Error(`Failed to determine ${t} version from ${r} at ${i}`);if(!/^\d+(?:\.\d+){1,3}$/.test(e))throw new Error(`Invalid ${t} version "${e}" from ${r} at ${i}`);if(ao(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:
|
|
6
6
|
${vc}`)}static resolveCodelinterPath(e,t){let r=n.getCodelinterCandidates(e,t),o=r.find(n.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 Error(`${a}
|
|
7
7
|
Searched paths:
|
|
8
8
|
${r.join(`
|
|
9
|
-
`)}`)}let i=yt(e),s=yt(o);return n.assertInsideRoot(s,i,"codelinter"),s}static getCodelinterCandidates(e,t){if(t==="studio"){if(b())return[S.join(e,"codelinter","index.js")];let r=Be.platform()==="darwin"?["Contents"]:[];return[S.join(e,...r,"plugins","codelinter","run","index.js"),S.join(e,...r,"plugins","codelinter","index.js"),S.join(e,...r,"tools","codelinter","bin","codelinter.js"),S.join(e,...r,"tools","codelinter","codelinter.js")]}return[S.join(e,"codelinter","index.js"),S.join(e,"codelinter","run","index.js"),S.join(e,"tool","codelinter","bin","codelinter.js"),S.join(e,"tool","codelinter","codelinter.js")]}static isValidRoot(e,t){if(!n.isDirectory(e))return!1;if(t==="clt")return ue.existsSync(S.join(e,"version.txt"));let r=Be.platform()==="darwin"?S.join(e,"Contents"):e,o=Be.platform()==="darwin"?S.join(r,"Info.plist"):S.join(r,"product-info.json");if(!ue.existsSync(o))return!1;let i=n.buildToolPaths(e,"studio");return[i.nodePath,i.ohpmJsPath,i.hvigorJsPath].every(ue.existsSync)}static buildToolPaths(e,t){return t==="clt"?n.buildCltToolPaths(e):n.buildStudioToolPaths(e)}static buildCltToolPaths(e){let t=S.join(e,"sdk"),r=Be.platform()==="win32",o=r?".exe":"";return{nodePath:r?S.join(e,"tool","node","node.exe"):S.join(e,"tool","node","bin","node"),ohpmJsPath:S.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:t,hdcPath:S.join(t,"default","openharmony","toolchains",`hdc${o}`),emulatorPath:S.join(e,"emulator",r?"Emulator.exe":"Emulator")}}static buildStudioToolPaths(e){let t=Be.platform()==="darwin",r=Be.platform()==="win32",o=t?S.join(e,"Contents"):e,i=S.join(o,"tools"),s=S.join(o,"sdk"),a=r?".exe":"";return{nodePath:r?S.join(i,"node","node.exe"):S.join(i,"node","bin","node"),ohpmJsPath:S.join(i,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(i,"hvigor","bin","hvigorw.js"),javaPath:r?S.join(e,"jbr","bin","java.exe"):t?S.join(o,"jbr","Contents","Home","bin","java"):S.join(o,"jbr","bin","java"),sdkPath:s,hdcPath:S.join(s,"default","openharmony","toolchains",`hdc${a}`),emulatorPath:S.join(i,"emulator",r?"Emulator.exe":"Emulator")}}static isFile(e){try{return ue.statSync(e).isFile()}catch{return!1}}static isDirectory(e){try{return ue.existsSync(e)&&ue.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,o,i]of e){let s=process.env[r]?.trim();if(s){let a=n.resolveExplicitRoot(s,o,r);return m(`[ToolProvider] Using ${r} \u2192 ${a}`),{sourceType:i,toolchainRoot:a}}}let t=await Iu();return m(`[ToolProvider] Using auto \u2192 ${t.root} (${t.version})`),{sourceType:"studio",toolchainRoot:t.root}}static resolveExplicitRoot(e,t,r){let o;try{o=Li(e)}catch(i){throw new Error(`Invalid ${r}: ${i instanceof Error?i.message:String(i)}`,{cause:i})}return t==="studio"&&Be.platform()==="darwin"&&(o=n.normalizeMacStudioRoot(o)),n.isValidRoot(o,t)?o:n.throwInvalidSource(o,t,r,e)}static assertBuiltPathsInsideRoot(e,t,r){let o=yt(e),i=[["node",t.nodePath],["ohpm",t.ohpmJsPath],["hvigor",t.hvigorJsPath],["sdk",t.sdkPath],["hdc",t.hdcPath],["emulator",t.emulatorPath]];r&&t.javaPath&&i.push(["java",t.javaPath]);for(let[s,a]of i)a&&n.assertInsideRoot(a,o,s)}static assertInsideRoot(e,t,r){if(xi(e,t)===null)throw new Error(`Unsafe toolchain path: ${r} resolves outside the toolchain root`)}static throwInvalidSource(e,t,r,o){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}: ${o}`)}static normalizeMacStudioRoot(e){let t=`${S.sep}Contents`,r=S.normalize(e);return r.endsWith(t)?r.slice(0,-t.length):r}static readCltVersion(e){try{return ue.readFileSync(S.join(e,"version.txt"),"utf-8").split(/\r?\n/).map(t=>t.match(fv)?.[1]?.trim()).find(Boolean)}catch{return}}static resolveCltJava(e){let t=process.env.JAVA_HOME?.trim(),r=t&&(n.javaIn(S.join(t,"bin"))??n.javaIn(t)),o=(process.env.Path??process.env.PATH??"").split(S.delimiter).map(s=>n.javaIn(s.trim())).find(Boolean),i=r??o;if(i)return ue.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(Be.platform()==="win32"?["java.exe","java.cmd"]:["java"]).map(r=>S.join(e,r)).find(ue.existsSync)}getMaxApiLevel(){for(let e of yv(this.sdkPath)){let t=gv(e);if(t!==void 0)return t}return 23}detectApiLevel(){return this.getMaxApiLevel()}_apiscanPaths;getApiscanPaths(){if(this._apiscanPaths)return this._apiscanPaths;let e=Be.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=S.join(this._devecoStudioPath,t,"plugins","harmony","arkanalyzer-apiscan"),o=S.join(r,"resources","apiChange"),i=S.join(r,"api-change-scan.js");if(!ue.existsSync(o)||!ue.existsSync(i)){let s=so(this._toolchainRoot)??"unknown";throw new Error(`A required component is missing. The detected DevEco Studio version is ${s}. The minimum required version is ${mv}. Upgrade before using 'check compat' at ${vc}`)}return this._apiscanPaths={apiChangeDir:o,scriptPath:i},this._apiscanPaths}};import{execa as wv}from"execa";import*as Dt from"path";import*as _i from"fs";import*as Sc from"os";var ke=class{toolProvider;projectRoot;env;silent;constructor(e,t,r=!1){this.toolProvider=e,this.projectRoot=t,this.silent=r;let o={...process.env,DEVECO_SDK_HOME:e.sdkPath};if(e.javaPath){let i=Dt.dirname(e.javaPath);o.PATH=`${i}${Dt.delimiter}${process.env.PATH||""}`,e.sourceType==="clt"&&(o.JAVA_HOME=Dt.dirname(i))}b()&&(o.HVIGOR_USER_HOME=Dt.join(Sc.homedir(),".hvigor")),this.env=o}async sync(e,t){let r=["--sync","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(r)}async buildProduct(e,t){let r=["assembleApp","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(r)}async buildModules(e,t,r,o){let i=[...Array.from(o),"--mode","module","-p",`module=${r.join(",")}`,"-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(i)}async clean(){let e=["clean","--analyze=normal","--parallel","--no-daemon"];await this.runHvigor(e)}async stopDaemon(){b()||await this.runHvigor(["--stop-daemon"])}async ensureDaemonRunning(){if(this.findProjectDaemon()){m("[HvigorAdapter] Daemon already running.");return}m("[HvigorAdapter] No daemon running, starting via --sync --daemon (no hap build)."),await this.runHvigor(["--sync","--daemon"])}isDaemonRunning(e){return this.findProjectDaemon(e)!==null}findProjectDaemon(e){let t=this.getDaemonRegistryPath();if(!_i.existsSync(t))return null;try{let r=_i.readFileSync(t,"utf-8"),o=JSON.parse(r),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||Dt.join(Sc.homedir(),".hvigor");return Dt.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"];t&&r.push("-p",`module=${t}`),r.push("-p",`product=${e}`,"compileNative","--analyze=normal"),await this.runHvigor(r)}async runHvigor(e){b()&&(e=e.includes("--no-daemon")?e:["--no-daemon",...e]);let t=this.toolProvider.nodePath,r=[this.toolProvider.hvigorJsPath,...e];m(`Executing: ${t} ${r.join(" ")}`);let o=this.silent&&!process.env.DEVECO_CLI_DEBUG?"pipe":"inherit";await wv(t,r,{cwd:this.projectRoot,env:this.env,stdout:o,stderr:o})}};import{execa as vv}from"execa";var en=class{toolProvider;projectRoot;constructor(e,t){this.toolProvider=e,this.projectRoot=t}async installAll(){let e=this.toolProvider.nodePath,t=["--no-deprecation",this.toolProvider.ohpmJsPath,"install","--all"];m(`Executing: ${e} ${t.join(" ")}`),await vv(e,t,{cwd:this.projectRoot,env:{...process.env,DEVECO_SDK_HOME:this.toolProvider.sdkPath},stdout:"inherit",stderr:"inherit"})}};import{mkdir as Sv}from"fs/promises";import{dirname as bv,resolve as Ev}from"path";import{execa as Pv}from"execa";import{lock as bc,check as uM}from"proper-lockfile";function Ec(n){return Ev(n,".hvigor",".build-lock")}function Cv(n){let e=!1;return()=>{e||(e=!0,n?.())}}async function Lu(n){let e=bv(Ec(n));if(await Sv(e,{recursive:!0}),process.platform==="win32")try{await Pv("attrib",["+h",e])}catch{}}async function Iv(n,e){let t=new AbortController,r=Cv(e);await Lu(n);let o={lockfilePath:Ec(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()};try{return{release:await bc(n,{...o,retries:0}),signal:t.signal}}catch(s){if(s&&typeof s=="object"&&"code"in s&&s.code!=="ELOCKED")throw s}return r(),{release:await bc(n,{...o,retries:{forever:!0,minTimeout:1e3,maxTimeout:1e3}}),signal:t.signal}}async function Rt(n,e,t){let{release:r,signal:o}=await Iv(n,t);try{return await e(o)}finally{await r()}}async function Fi(n,e){let t=new AbortController;await Lu(n);let r={lockfilePath:Ec(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()},o;try{o=await bc(n,{...r,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 tn from"fs";import*as Ln from"path";import Av from"json5";var Dv=1e3;function Hi(n){m(`[ProjectCheck] Checking sync required at project root: ${n}`);let e=Ln.join(n,it.SYNC_OUTPUT_PATH);if(!tn.existsSync(e)){let l={required:!0,reason:`sync baseline file not found: ${e}`};return m(`[ProjectCheck] ${l.reason}`),l}let t=tn.statSync(e).mtimeMs;m(`[ProjectCheck] Sync baseline: ${new Date(t).toISOString()} (${e})`);let r=Rv(n);if(r===null){let l={required:!0,reason:"failed to parse build-profile.json5"};return m(`[ProjectCheck] ${l.reason}`),l}let o=Ln.join(n,it.OH_PACKAGE_JSON5),i=ji(o,t,"root");if(i.required)return m(`[ProjectCheck] Root check: ${i.reason}`),i;let s=Ln.join(n,it.BUILD_PROFILE_JSON5),a=ji(s,t,"build-profile");if(a.required)return m(`[ProjectCheck] Build profile check: ${a.reason}`),a;for(let l of r){let d=Ln.join(n,l.srcPath,it.OH_PACKAGE_JSON5),h=ji(d,t,l.name);if(h.required)return m(`[ProjectCheck] Module '${l.name}' check: ${h.reason}`),h;let w=Ln.join(n,l.srcPath,it.BUILD_PROFILE_JSON5),v=ji(w,t,l.name);if(v.required)return m(`[ProjectCheck] Module '${l.name}' build-profile check: ${v.reason}`),v}let c=`all configuration files are up-to-date (sync baseline: ${new Date(t).toISOString()})`;return m(`[ProjectCheck] ${c}`),{required:!1,reason:c}}function ji(n,e,t){if(!tn.existsSync(n))return{required:!1,reason:`${t}: source not found, skip`};let r=tn.statSync(n).mtimeMs;return r-e>Dv?{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 Rv(n){let e=Ln.join(n,it.BUILD_PROFILE_JSON5);try{let t=tn.readFileSync(e,"utf-8");if(!t.trim())return null;let r=Av.parse(t);if(typeof r!="object"||r===null)return null;let o=r.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 Ge from"fs";import*as at from"path";import*as Bu from"util";import*as M from"fs";import*as qi from"path";import ee from"fs";import*as $i from"os";import*as z from"path";import Tv from"json5";var Ou=3;function Ui(n){if(!ee.existsSync(n)||!ee.statSync(n).isDirectory())return!1;let e=ee.existsSync(z.join(n,"build-profile.json5")),t=ee.existsSync(z.join(n,"hvigorfile.js"))||ee.existsSync(z.join(n,"hvigorfile.ts"));if(!e||!t)return!1;try{let r=ee.readFileSync(z.join(n,"build-profile.json5"),"utf-8");return Tv.parse(r).app!==void 0}catch{return!1}}function Pc(n,e,t){if(e>=t)return null;let r=kv(n),o=xv(r);if(o)return o;for(let i of r){let s=Pc(i,e+1,t);if(s)return s}return null}function kv(n){try{let e=ee.readdirSync(n,{withFileTypes:!0}),t=[];for(let r of e)r.isDirectory()&&t.push(z.join(n,r.name));return t}catch{return[]}}function xv(n){for(let e of n)if(Ui(e))return e;return null}function Tt(n){if(!n||n.trim()==="")return null;let e=z.resolve(n),t;try{t=ee.realpathSync(e)}catch{t=e}if(!ee.existsSync(t))return null;if(Ui(t))return t;let r=t;for(let o=1;o<=3;o++){let i=z.dirname(r);if(i===r)break;if(Ui(i))return i;r=i}if(ee.statSync(t).isDirectory()){let o=Pc(t,0,Ou);if(o)return o}return null}function Bi(n){if(!n||n.trim()==="")return null;let e=z.resolve(n),t;try{t=ee.realpathSync(e)}catch{t=e}return!ee.existsSync(t)||!ee.statSync(t).isDirectory()?null:Ui(t)?t:Pc(t,0,Ou)}var Cc=[b()?".bitfun":".idea",".deveco",b()?".cxx":"cxx","compile_commands.json"];function sr(n){return z.join(n,...Cc)}function Mu(n){return new Promise(e=>setTimeout(e,n))}var Nv=new Set(["c","cc","cpp","cxx","c++","h","hh","hpp","hxx","h++","ipp","ixx","inl","inc","tpp"]);function On(n){let e=z.extname(n).replace(/^\./,"").toLowerCase();return e.length>0&&Nv.has(e)}function Wi(n){return z.extname(n).replace(/^\./,"").toLowerCase()==="c"?"c":"cpp"}function pe(n){let e=n.replace(/\\/g,"/");return process.platform==="win32"&&/^[a-zA-Z]:/.test(e)&&(e=e[0].toUpperCase()+e.slice(1)),e}function Lv(n){return pe(n)}function Mn(n){let e=Lv(n);return e.startsWith("/")?`file://${e}`:`file:///${e}`}function nn(){if(process.platform==="win32"){let n=process.env.LOCALAPPDATA??z.join($i.homedir(),"AppData","Local");return z.join(n,"devecocli-mcp-server","logs")}return process.platform==="darwin"?z.join($i.homedir(),"Library","Logs","devecocli-mcp-server"):z.join($i.homedir(),".local","share","devecocli-mcp-server","logs")}function _u(n,e){let t=Ov(e),r=Mv(t,n);if(r!==null)return r;let o=Date.now(),s=`${n.replace(/:/g,"\\:")}=${o}`,a=_v(t,n,s);return Fv(e,a),o}function Ov(n){let e;try{e=ee.readFileSync(n,"utf8")}catch{e=""}return e.length>0?e.split(/\r?\n/):[]}function Mv(n,e){for(let t of n){let r=t.indexOf("=");if(r<=0||t.slice(0,r).replace(/\\:/g,":")!==e)continue;let i=parseInt(t.slice(r+1),10);return Number.isFinite(i)&&i>0?i:null}return null}function _v(n,e,t){let r=!1,o=n.map(i=>{if(r)return i;let s=i.indexOf("=");return s<=0?i:i.slice(0,s).replace(/\\:/g,":")===e?(r=!0,t):i});return r||o.push(t),o}function Fv(n,e){try{ee.mkdirSync(z.dirname(n),{recursive:!0})}catch{}try{ee.writeFileSync(n,e.join(`
|
|
9
|
+
`)}`)}let i=yt(e),s=yt(o);return n.assertInsideRoot(s,i,"codelinter"),s}static getCodelinterCandidates(e,t){if(t==="studio"){if(E())return[S.join(e,"codelinter","index.js")];let r=Be.platform()==="darwin"?["Contents"]:[];return[S.join(e,...r,"plugins","codelinter","run","index.js"),S.join(e,...r,"plugins","codelinter","index.js"),S.join(e,...r,"tools","codelinter","bin","codelinter.js"),S.join(e,...r,"tools","codelinter","codelinter.js")]}return[S.join(e,"codelinter","index.js"),S.join(e,"codelinter","run","index.js"),S.join(e,"tool","codelinter","bin","codelinter.js"),S.join(e,"tool","codelinter","codelinter.js")]}static isValidRoot(e,t){if(!n.isDirectory(e))return!1;if(t==="clt")return ue.existsSync(S.join(e,"version.txt"));let r=Be.platform()==="darwin"?S.join(e,"Contents"):e,o=Be.platform()==="darwin"?S.join(r,"Info.plist"):S.join(r,"product-info.json");if(!ue.existsSync(o))return!1;let i=n.buildToolPaths(e,"studio");return[i.nodePath,i.ohpmJsPath,i.hvigorJsPath].every(ue.existsSync)}static buildToolPaths(e,t){return t==="clt"?n.buildCltToolPaths(e):n.buildStudioToolPaths(e)}static buildCltToolPaths(e){let t=S.join(e,"sdk"),r=Be.platform()==="win32",o=r?".exe":"";return{nodePath:r?S.join(e,"tool","node","node.exe"):S.join(e,"tool","node","bin","node"),ohpmJsPath:S.join(e,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(e,"hvigor","bin","hvigorw.js"),javaPath:"",sdkPath:t,hdcPath:S.join(t,"default","openharmony","toolchains",`hdc${o}`),emulatorPath:S.join(e,"emulator",r?"Emulator.exe":"Emulator")}}static buildStudioToolPaths(e){let t=Be.platform()==="darwin",r=Be.platform()==="win32",o=t?S.join(e,"Contents"):e,i=S.join(o,"tools"),s=S.join(o,"sdk"),a=r?".exe":"";return{nodePath:r?S.join(i,"node","node.exe"):S.join(i,"node","bin","node"),ohpmJsPath:S.join(i,"ohpm","bin","pm-cli.js"),hvigorJsPath:S.join(i,"hvigor","bin","hvigorw.js"),javaPath:r?S.join(e,"jbr","bin","java.exe"):t?S.join(o,"jbr","Contents","Home","bin","java"):S.join(o,"jbr","bin","java"),sdkPath:s,hdcPath:S.join(s,"default","openharmony","toolchains",`hdc${a}`),emulatorPath:S.join(i,"emulator",r?"Emulator.exe":"Emulator")}}static isFile(e){try{return ue.statSync(e).isFile()}catch{return!1}}static isDirectory(e){try{return ue.existsSync(e)&&ue.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,o,i]of e){let s=process.env[r]?.trim();if(s){let a=n.resolveExplicitRoot(s,o,r);return m(`[ToolProvider] Using ${r} \u2192 ${a}`),{sourceType:i,toolchainRoot:a}}}let t=await Iu();return m(`[ToolProvider] Using auto \u2192 ${t.root} (${t.version})`),{sourceType:"studio",toolchainRoot:t.root}}static resolveExplicitRoot(e,t,r){let o;try{o=Li(e)}catch(i){throw new Error(`Invalid ${r}: ${i instanceof Error?i.message:String(i)}`,{cause:i})}return t==="studio"&&Be.platform()==="darwin"&&(o=n.normalizeMacStudioRoot(o)),n.isValidRoot(o,t)?o:n.throwInvalidSource(o,t,r,e)}static assertBuiltPathsInsideRoot(e,t,r){let o=yt(e),i=[["node",t.nodePath],["ohpm",t.ohpmJsPath],["hvigor",t.hvigorJsPath],["sdk",t.sdkPath],["hdc",t.hdcPath],["emulator",t.emulatorPath]];r&&t.javaPath&&i.push(["java",t.javaPath]);for(let[s,a]of i)a&&n.assertInsideRoot(a,o,s)}static assertInsideRoot(e,t,r){if(xi(e,t)===null)throw new Error(`Unsafe toolchain path: ${r} resolves outside the toolchain root`)}static throwInvalidSource(e,t,r,o){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}: ${o}`)}static normalizeMacStudioRoot(e){let t=`${S.sep}Contents`,r=S.normalize(e);return r.endsWith(t)?r.slice(0,-t.length):r}static readCltVersion(e){try{return ue.readFileSync(S.join(e,"version.txt"),"utf-8").split(/\r?\n/).map(t=>t.match(fv)?.[1]?.trim()).find(Boolean)}catch{return}}static resolveCltJava(e){let t=process.env.JAVA_HOME?.trim(),r=t&&(n.javaIn(S.join(t,"bin"))??n.javaIn(t)),o=(process.env.Path??process.env.PATH??"").split(S.delimiter).map(s=>n.javaIn(s.trim())).find(Boolean),i=r??o;if(i)return ue.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(Be.platform()==="win32"?["java.exe","java.cmd"]:["java"]).map(r=>S.join(e,r)).find(ue.existsSync)}getMaxApiLevel(){for(let e of yv(this.sdkPath)){let t=gv(e);if(t!==void 0)return t}return 23}detectApiLevel(){return this.getMaxApiLevel()}_apiscanPaths;getApiscanPaths(){if(this._apiscanPaths)return this._apiscanPaths;let e=Be.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=S.join(this._devecoStudioPath,t,"plugins","harmony","arkanalyzer-apiscan"),o=S.join(r,"resources","apiChange"),i=S.join(r,"api-change-scan.js");if(!ue.existsSync(o)||!ue.existsSync(i)){let s=so(this._toolchainRoot)??"unknown";throw new Error(`A required component is missing. The detected DevEco Studio version is ${s}. The minimum required version is ${mv}. Upgrade before using 'check compat' at ${vc}`)}return this._apiscanPaths={apiChangeDir:o,scriptPath:i},this._apiscanPaths}};import{execa as wv}from"execa";import*as Dt from"path";import*as _i from"fs";import*as Sc from"os";var ke=class{toolProvider;projectRoot;env;silent;constructor(e,t,r=!1){this.toolProvider=e,this.projectRoot=t,this.silent=r;let o={...process.env,DEVECO_SDK_HOME:e.sdkPath};if(e.javaPath){let i=Dt.dirname(e.javaPath);o.PATH=`${i}${Dt.delimiter}${process.env.PATH||""}`,e.sourceType==="clt"&&(o.JAVA_HOME=Dt.dirname(i))}E()&&(o.HVIGOR_USER_HOME=Dt.join(Sc.homedir(),".hvigor")),this.env=o}async sync(e,t){let r=["--sync","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(r)}async buildProduct(e,t){let r=["assembleApp","-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(r)}async buildModules(e,t,r,o){let i=[...Array.from(o),"--mode","module","-p",`module=${r.join(",")}`,"-p",`product=${e}`,"-p",`buildMode=${t}`,"--analyze=normal","--parallel","--incremental"];await this.runHvigor(i)}async clean(){let e=["clean","--analyze=normal","--parallel","--no-daemon"];await this.runHvigor(e)}async stopDaemon(){E()||await this.runHvigor(["--stop-daemon"])}async ensureDaemonRunning(){if(this.findProjectDaemon()){m("[HvigorAdapter] Daemon already running.");return}m("[HvigorAdapter] No daemon running, starting via --sync --daemon (no hap build)."),await this.runHvigor(["--sync","--daemon"])}isDaemonRunning(e){return this.findProjectDaemon(e)!==null}findProjectDaemon(e){let t=this.getDaemonRegistryPath();if(!_i.existsSync(t))return null;try{let r=_i.readFileSync(t,"utf-8"),o=JSON.parse(r),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||Dt.join(Sc.homedir(),".hvigor");return Dt.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"];t&&r.push("-p",`module=${t}`),r.push("-p",`product=${e}`,"compileNative","--analyze=normal"),await this.runHvigor(r)}async runHvigor(e){E()&&(e=e.includes("--no-daemon")?e:["--no-daemon",...e]);let t=this.toolProvider.nodePath,r=[this.toolProvider.hvigorJsPath,...e];m(`Executing: ${t} ${r.join(" ")}`);let o=this.silent&&!process.env.DEVECO_CLI_DEBUG?"pipe":"inherit";await wv(t,r,{cwd:this.projectRoot,env:this.env,stdout:o,stderr:o})}};import{execa as vv}from"execa";var en=class{toolProvider;projectRoot;constructor(e,t){this.toolProvider=e,this.projectRoot=t}async installAll(){let e=this.toolProvider.nodePath,t=["--no-deprecation",this.toolProvider.ohpmJsPath,"install","--all"];m(`Executing: ${e} ${t.join(" ")}`),await vv(e,t,{cwd:this.projectRoot,env:{...process.env,DEVECO_SDK_HOME:this.toolProvider.sdkPath},stdout:"inherit",stderr:"inherit"})}};import{mkdir as Sv}from"fs/promises";import{dirname as bv,resolve as Ev}from"path";import{execa as Pv}from"execa";import{lock as bc,check as uM}from"proper-lockfile";function Ec(n){return Ev(n,".hvigor",".build-lock")}function Cv(n){let e=!1;return()=>{e||(e=!0,n?.())}}async function Lu(n){let e=bv(Ec(n));if(await Sv(e,{recursive:!0}),process.platform==="win32")try{await Pv("attrib",["+h",e])}catch{}}async function Iv(n,e){let t=new AbortController,r=Cv(e);await Lu(n);let o={lockfilePath:Ec(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()};try{return{release:await bc(n,{...o,retries:0}),signal:t.signal}}catch(s){if(s&&typeof s=="object"&&"code"in s&&s.code!=="ELOCKED")throw s}return r(),{release:await bc(n,{...o,retries:{forever:!0,minTimeout:1e3,maxTimeout:1e3}}),signal:t.signal}}async function Rt(n,e,t){let{release:r,signal:o}=await Iv(n,t);try{return await e(o)}finally{await r()}}async function Fi(n,e){let t=new AbortController;await Lu(n);let r={lockfilePath:Ec(n),realpath:!1,stale:5e3,update:2e3,onCompromised:()=>t.abort()},o;try{o=await bc(n,{...r,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 tn from"fs";import*as Ln from"path";import Av from"json5";var Dv=1e3;function Hi(n){m(`[ProjectCheck] Checking sync required at project root: ${n}`);let e=Ln.join(n,it.SYNC_OUTPUT_PATH);if(!tn.existsSync(e)){let l={required:!0,reason:`sync baseline file not found: ${e}`};return m(`[ProjectCheck] ${l.reason}`),l}let t=tn.statSync(e).mtimeMs;m(`[ProjectCheck] Sync baseline: ${new Date(t).toISOString()} (${e})`);let r=Rv(n);if(r===null){let l={required:!0,reason:"failed to parse build-profile.json5"};return m(`[ProjectCheck] ${l.reason}`),l}let o=Ln.join(n,it.OH_PACKAGE_JSON5),i=ji(o,t,"root");if(i.required)return m(`[ProjectCheck] Root check: ${i.reason}`),i;let s=Ln.join(n,it.BUILD_PROFILE_JSON5),a=ji(s,t,"build-profile");if(a.required)return m(`[ProjectCheck] Build profile check: ${a.reason}`),a;for(let l of r){let d=Ln.join(n,l.srcPath,it.OH_PACKAGE_JSON5),h=ji(d,t,l.name);if(h.required)return m(`[ProjectCheck] Module '${l.name}' check: ${h.reason}`),h;let w=Ln.join(n,l.srcPath,it.BUILD_PROFILE_JSON5),v=ji(w,t,l.name);if(v.required)return m(`[ProjectCheck] Module '${l.name}' build-profile check: ${v.reason}`),v}let c=`all configuration files are up-to-date (sync baseline: ${new Date(t).toISOString()})`;return m(`[ProjectCheck] ${c}`),{required:!1,reason:c}}function ji(n,e,t){if(!tn.existsSync(n))return{required:!1,reason:`${t}: source not found, skip`};let r=tn.statSync(n).mtimeMs;return r-e>Dv?{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 Rv(n){let e=Ln.join(n,it.BUILD_PROFILE_JSON5);try{let t=tn.readFileSync(e,"utf-8");if(!t.trim())return null;let r=Av.parse(t);if(typeof r!="object"||r===null)return null;let o=r.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 Ge from"fs";import*as at from"path";import*as Bu from"util";import*as M from"fs";import*as qi from"path";import ee from"fs";import*as $i from"os";import*as z from"path";import Tv from"json5";var Ou=3;function Ui(n){if(!ee.existsSync(n)||!ee.statSync(n).isDirectory())return!1;let e=ee.existsSync(z.join(n,"build-profile.json5")),t=ee.existsSync(z.join(n,"hvigorfile.js"))||ee.existsSync(z.join(n,"hvigorfile.ts"));if(!e||!t)return!1;try{let r=ee.readFileSync(z.join(n,"build-profile.json5"),"utf-8");return Tv.parse(r).app!==void 0}catch{return!1}}function Pc(n,e,t){if(e>=t)return null;let r=kv(n),o=xv(r);if(o)return o;for(let i of r){let s=Pc(i,e+1,t);if(s)return s}return null}function kv(n){try{let e=ee.readdirSync(n,{withFileTypes:!0}),t=[];for(let r of e)r.isDirectory()&&t.push(z.join(n,r.name));return t}catch{return[]}}function xv(n){for(let e of n)if(Ui(e))return e;return null}function Tt(n){if(!n||n.trim()==="")return null;let e=z.resolve(n),t;try{t=ee.realpathSync(e)}catch{t=e}if(!ee.existsSync(t))return null;if(Ui(t))return t;let r=t;for(let o=1;o<=3;o++){let i=z.dirname(r);if(i===r)break;if(Ui(i))return i;r=i}if(ee.statSync(t).isDirectory()){let o=Pc(t,0,Ou);if(o)return o}return null}function Bi(n){if(!n||n.trim()==="")return null;let e=z.resolve(n),t;try{t=ee.realpathSync(e)}catch{t=e}return!ee.existsSync(t)||!ee.statSync(t).isDirectory()?null:Ui(t)?t:Pc(t,0,Ou)}var Cc=[E()?".bitfun":".idea",".deveco",E()?".cxx":"cxx","compile_commands.json"];function sr(n){return z.join(n,...Cc)}function Mu(n){return new Promise(e=>setTimeout(e,n))}var Nv=new Set(["c","cc","cpp","cxx","c++","h","hh","hpp","hxx","h++","ipp","ixx","inl","inc","tpp"]);function On(n){let e=z.extname(n).replace(/^\./,"").toLowerCase();return e.length>0&&Nv.has(e)}function Wi(n){return z.extname(n).replace(/^\./,"").toLowerCase()==="c"?"c":"cpp"}function pe(n){let e=n.replace(/\\/g,"/");return process.platform==="win32"&&/^[a-zA-Z]:/.test(e)&&(e=e[0].toUpperCase()+e.slice(1)),e}function Lv(n){return pe(n)}function Mn(n){let e=Lv(n);return e.startsWith("/")?`file://${e}`:`file:///${e}`}function nn(){if(process.platform==="win32"){let n=process.env.LOCALAPPDATA??z.join($i.homedir(),"AppData","Local");return z.join(n,"devecocli-mcp-server","logs")}return process.platform==="darwin"?z.join($i.homedir(),"Library","Logs","devecocli-mcp-server"):z.join($i.homedir(),".local","share","devecocli-mcp-server","logs")}function _u(n,e){let t=Ov(e),r=Mv(t,n);if(r!==null)return r;let o=Date.now(),s=`${n.replace(/:/g,"\\:")}=${o}`,a=_v(t,n,s);return Fv(e,a),o}function Ov(n){let e;try{e=ee.readFileSync(n,"utf8")}catch{e=""}return e.length>0?e.split(/\r?\n/):[]}function Mv(n,e){for(let t of n){let r=t.indexOf("=");if(r<=0||t.slice(0,r).replace(/\\:/g,":")!==e)continue;let i=parseInt(t.slice(r+1),10);return Number.isFinite(i)&&i>0?i:null}return null}function _v(n,e,t){let r=!1,o=n.map(i=>{if(r)return i;let s=i.indexOf("=");return s<=0?i:i.slice(0,s).replace(/\\:/g,":")===e?(r=!0,t):i});return r||o.push(t),o}function Fv(n,e){try{ee.mkdirSync(z.dirname(n),{recursive:!0})}catch{}try{ee.writeFileSync(n,e.join(`
|
|
10
10
|
`)+`
|
|
11
11
|
`,"utf8")}catch{}}function Ic(n,e,t="[Cleanup]"){try{let r=z.dirname(n);if(!ee.existsSync(r))return;let o=Date.now();for(let i of ee.readdirSync(r,{withFileTypes:!0}))i.isDirectory()&&jv(z.join(r,i.name),o,e,t)}catch{}}function jv(n,e,t,r){try{let{mtimeMs:o}=ee.statSync(n);if(e-o<=t)return;ee.rmSync(n,{recursive:!0,force:!0});let i=Math.floor((e-o)/1e3);console.error(`${r} Removed expired dir (age ${Math.floor(i/86400)}d ${Math.floor(i%86400/3600)}h): ${n}`)}catch(o){console.error(`${r} Failed to remove expired dir ${n}: ${o}`)}}var Fu="mcp-server.log",Hv="mcp-server",$v={maxSize:10*1024*1024,maxFiles:4},Ac=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={...$v,...t},this.minLevel=e?"debug":"info",e?(this.mode="console",this.logDir=null,this.currentLogFile=null):(this.mode="file",this.logDir=nn(),this.currentLogFile=qi.join(this.logDir,Fu),M.existsSync(this.logDir)||M.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"),o=String(e.getDate()).padStart(2,"0");return`${t}-${r}-${o}`}getRotatedFileName(e,t){return qi.join(this.logDir,`${Hv}-${e}.log.${t}`)}fileExists(e){try{return M.accessSync(e,M.constants.F_OK),!0}catch{return!1}}cleanupOrphanLogFiles(){if(this.logDir)try{let e=M.readdirSync(this.logDir),t=[];for(let o of e)if(o===Fu||/^mcp-server-\d{4}-\d{2}-\d{2}\.log\.\d+$/.test(o)){let i=qi.join(this.logDir,o),s=M.statSync(i);t.push({name:o,mtime:s.mtime,path:i})}t.sort((o,i)=>i.mtime.getTime()-o.mtime.getTime());let r=1+this.rotationOptions.maxFiles;for(let o=r;o<t.length;o++)try{M.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)&&M.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)&&M.renameSync(i,s)}let r=this.getRotatedFileName(e,1);M.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=M.statSync(this.currentLogFile);this.currentFileSize=e.size}else this.currentFileSize=0}catch{this.currentFileSize=0}try{this.fd=M.openSync(this.currentLogFile,"a")}catch{this.fd=null}}}closeLogFile(){if(this.fd!==null){try{M.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 o=r.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}
|
|
12
12
|
`;if(this.mode==="file"&&this.currentLogFile){if(this.fd===null&&this.openLogFile(),this.fd!==null)try{let c=Buffer.from(a);M.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{M.fsyncSync(this.fd)}catch{}}getLogFilePath(){return this.currentLogFile}getLogDirectory(){return this.logDir}},ze=null;function _n(n=!1){ze&&ze.dispose(),ze=new Ac(n)}function ju(){ze&&(ze.dispose(),ze=null)}function Hu(){ze&&ze.flush()}function $u(){return ze?.getLogFilePath()??null}function Uu(){return ze?.getLogDirectory()??null}function Gi(){return ze||_n(!1),ze}var g={debug:(n,...e)=>Gi().debug(n,...e),info:(n,...e)=>Gi().info(n,...e),warn:(n,...e)=>Gi().warn(n,...e),error:(n,...e)=>Gi().error(n,...e)};var Dc="";function Vi(n){if(!n||n==="auto"||n==="stdout"||n==="none"){Dc="";return}Dc=n}function Wu(){return Dc||(Uu()??"")}function zi(n,...e){if(e.length===0)return n;try{return Bu.format(n,...e)}catch{return[n,...e.map(t=>typeof t=="string"?t:JSON.stringify(t))].join(" ")}}var f={info(n,...e){g.info(`[lsp] ${zi(n,...e)}`)},warn(n,...e){g.warn(`[lsp] ${zi(n,...e)}`)},error(n,...e){g.error(`[lsp] ${zi(n,...e)}`)},debug(n,...e){g.debug(`[lsp] ${zi(n,...e)}`)}};import*as fo from"fs";import*as mo from"os";import*as ar from"path";import Uv 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 Gu=8192,Rc=100,qu=.03,zu=.7,Ve=900*1e3,Yi="/data/app/sdk.org/sdk_1.0.0";function We(n){if(!fo.existsSync(n))return null;try{let e=fo.readFileSync(n,"utf-8");return e.trim()?Uv.parse(e):null}catch{return null}}function Ji(n,e){let t=Math.floor(mo.totalmem()/1048576),r=Math.floor(t*zu),o,i;e!==void 0&&Number.isFinite(e)&&e>0?(o=e,i=`override(${e})`):(o=Gu,n>Rc&&(o+=(n-Rc)*qu*1024),i=`formula(moduleCount=${n})`);let s=r>0&&o>r;s&&(o=r);let a=Math.round(o);return f.info(`[computeLspServerMaxSize] source=${i}, physicalTotal=${t}MB, physicalCap(70%)=${r}MB, finalSize=${a}MB${s?" (capped)":""}`),a}function st(n){if(n.startsWith("file:"))return n;try{let e=ar.resolve(n),t=new URL(`file://${e}`).toString();if(mo.platform()==="win32"){let r=t.match(/^file:\/\/\/([A-Za-z]):/);if(r){let o=r[1].toUpperCase(),i=t.substring(`file:///${r[1]}:`.length);t=`file:///${o}%3A${i}`}}return t}catch{return n}}function cr(n){return n&&n.replace(/\\/g,"/")}function U(n){let e=ar.normalize(n).replace(/\\/g,"/");if(mo.platform()==="win32"){let t=e.match(/^([A-Za-z]):/);t&&(e=`${t[1].toUpperCase()}:${e.substring(2)}`)}return e}function Vu(n){return ar.join(n,"build-profile.json5")}var kt=class{constructor(e){this.projectRoot=e}projectRoot;getAllModuleInfo(){let e=Vu(this.projectRoot);try{let t=We(e);if(typeof t!="object"||t===null)return[];let r=t.modules;return Array.isArray(r)?r.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 f.warn(`[ConfigFileWatcher] Failed to parse build-profile.json5: ${t instanceof Error?t.message:String(t)}`),[]}}};import*as Yu from"os";import*as Ju from"path";import{spawn as Bv}from"child_process";var Wv=600*1e3;function Gv(n){let e=[],t=[];return n.stdout?.on("data",r=>{e.push(r.toString())}),n.stderr?.on("data",r=>{t.push(r.toString())}),{stdout:e,stderr:t}}function Ki(n){return n.join("")}function qv(n,e,t){if(e)return{success:!1,output:"Build process killed by signal "+e+`.
|
|
@@ -15,7 +15,7 @@ Output so far:
|
|
|
15
15
|
`).trim();r({success:!1,output:`Build process timeout after 10 minutes.
|
|
16
16
|
Output so far:
|
|
17
17
|
`+c,exitCode:-1})},Wv);o.on("close",(c,l)=>{clearTimeout(a);let d=[Ki(i),Ki(s)].filter(Boolean).join(`
|
|
18
|
-
`).trim()||"";r(qv(c,l,d))}),o.on("error",c=>{clearTimeout(a),r({success:!1,output:`Build execution exception: ${c.message}`,exitCode:-1})})})}async function Tc(n,e,t,r,o){let i={...process.env,DEVECO_SDK_HOME:r};return
|
|
18
|
+
`).trim()||"";r(qv(c,l,d))}),o.on("error",c=>{clearTimeout(a),r({success:!1,output:`Build execution exception: ${c.message}`,exitCode:-1})})})}async function Tc(n,e,t,r,o){let i={...process.env,DEVECO_SDK_HOME:r};return E()&&(i.HVIGOR_USER_HOME=Ju.join(Yu.homedir(),".hvigor")),await zv([e,[t,...o]],n,i)}var Vv=["--sync","-p","product=default","--analyze=normal","--parallel","--incremental","--no-daemon"];async function Ku(n,e){try{return(await Tc(n,e.nodePath,e.hvigorJsPath,e.sdkPath,Vv)).success}catch(t){return f.info(`syncProject failed: ${JSON.stringify(t)}`),!1}}function Yv(n){let e=at.extname(n).replace(/^\./,"").toLowerCase();return["c","cpp","cxx","cc","h","hpp","hxx","hh","c++","h++"].includes(e)}function Jv(n,e){let t=at.join(n,e.name);return e.isDirectory()?e.name===".cxx"||Xu(t):Yv(t)}function Xu(n){if(!Ge.existsSync(n))return!1;try{return Ge.readdirSync(n,{withFileTypes:!0}).some(t=>Jv(n,t))}catch{}return!1}function Fn(n){try{let t=new kt(n).getAllModuleInfo(),r=[];for(let o of t){let i=at.resolve(n,o.srcPath);Xu(i)&&r.push(o)}return r}catch(e){throw g.error(`[CppCompile] findCppModules threw: ${e instanceof Error?e.message:String(e)}`),e}}function Kv(n){let e=[],r=new kt(n).getAllModuleInfo();for(let o of r){let i=at.resolve(n,o.srcPath),s=at.join(i,".cxx");Ge.existsSync(s)&&Zu(s,e)}return e}function Zu(n,e){try{let t=Ge.readdirSync(n,{withFileTypes:!0});for(let r of t){let o=at.join(n,r.name);r.isDirectory()?Zu(o,e):r.name==="compile_commands.json"&&e.push(o)}}catch{}}function Xv(n){let e=[];for(let t of n)try{let r=Ge.readFileSync(t,"utf8"),o=JSON.parse(r);e.push(...o)}catch{}return e}function Zv(n,e){let t=at.join(n,...Cc.slice(0,-1));Ge.mkdirSync(t,{recursive:!0});let r=at.join(t,"compile_commands.json");Ge.writeFileSync(r,JSON.stringify(e,null,2),"utf8")}function kc(n){let e=Kv(n);if(e.length>0){let t=Xv(e);Zv(n,t),g.info(`[CppCompile] compile_commands.json generated, ${t.length} compile commands`)}else g.warn("[CppCompile] No compile_commands.json files found")}async function Qv(n,e,t){g.info(`[CppCompile] devecoPath: ${e.devecoStudioPath}, sdkPath: ${e.sdkPath}, nodePath: ${e.nodePath},hvigorJsPath:${e.hvigorJsPath}`);for(let r of t){let o=["--mode","module","-p",`module=${r.name}`,"-p","product=default","compileNative","--analyze=normal","--parallel","--incremental","--no-daemon"];g.info(`[CppCompile] Running compileNative for module: ${r.name}`);let i=await Tc(n,e.nodePath,e.hvigorJsPath,e.sdkPath,o);i.success?g.info(`[CppCompile] compileNative ${r.name} succeeded`):g.warn(`[CppCompile] compileNative ${r.name} failed: ${i.output}`)}}async function Qu(n,e){let t=Fn(n);if(t.length===0){g.info("[CppCompile] No C++ modules found, skipping initialization");return}g.info(`[CppCompile] Found ${t.length} C++ module(s): ${t.map(r=>r.name).join(", ")}`),await Qv(n,e,t),kc(n)}function tS(n,e){if(e.product&&n.validateProduct(e.product),e.buildMode&&!n.profile.app.buildModeSet.some(r=>r.name===e.buildMode))throw new Error(`Build mode '${e.buildMode}' not found in project build-profile.json5.`)}function nS(n,e){let t;if(e.modules&&e.modules.length>0)t=e.modules;else{let o=n.profile.modules,i=o.filter(s=>n.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 Error(`Multiple entry modules found (${i.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`):new Error(`No entry module found and multiple modules available (${o.map(s=>s.name).join(", ")}). Please specify which module to build with --modules.`)}let r=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";r.add(`${s}@${a}`)}return Array.from(r)}function go(n,e){let t=new Set;for(let r of e){let o=r.indexOf("@"),i=o!==-1?r.substring(0,o):r,s=n.getModuleType(i);s==="shared"?t.add("assembleHsp"):s==="har"?t.add("assembleHar"):t.add("assembleHap")}return t}function ho(n,e){let t=e,r=`${n} failed`;console.error(Nc(r));let o=t.stdout||t.message;throw o&&console.error(o),t.stderr&&console.error(t.stderr),new Error(r,{cause:e})}async function yo(n,e,t,r,o,i){let s=Hi(i);console.log(`
|
|
19
19
|
[ohpm install] Running...`);try{await n.installAll()}catch(a){ho("ohpm install",a)}if(s.required){console.log(`
|
|
20
20
|
[hvigor sync] Running...`);try{await e.sync(t,r)}catch(a){ho("hvigor sync",a)}}else console.log(`
|
|
21
21
|
[hvigor sync] Skipped (configurations unchanged)`);console.log(`
|
|
@@ -30,8 +30,8 @@ Failed to merge compile_commands.json: ${e.message}`))}}var ep=new eS("build").d
|
|
|
30
30
|
`),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 rp(n,e,t){let r=n.endsWith("\r")?n.slice(0,-1):n;r.length>0&&t.onData([r],e)}function cS(n,e){return{stdout:n.stdoutChunks.join(""),stderr:n.stderrChunks.join(""),exitCode:e??-1}}function lS(){return{stdoutChunks:[],stderrChunks:[],stdoutLineBuffer:"",stderrLineBuffer:"",settled:!1}}function dS(n,e,t,r,o){n.stdout?.on("data",i=>{let s=i.toString();e.stdoutChunks.push(s),e.stdoutLineBuffer=np(e.stdoutLineBuffer+s,"stdout",t)}),n.stderr?.on("data",i=>{let s=i.toString();e.stderrChunks.push(s),e.stderrLineBuffer=np(e.stderrLineBuffer+s,"stderr",t)}),n.on("error",i=>{e.settled||(e.settled=!0,t.onError(i),o(i))}),n.on("close",i=>{if(e.settled)return;e.settled=!0,rp(e.stdoutLineBuffer,"stdout",t),rp(e.stderrLineBuffer,"stderr",t),t.onClose(i);let s=cS(e,i);r(s)})}async function wo(n,e=[],t={}){try{let{stdout:r,stderr:o}=await aS(n,e,t);return{stdout:typeof r=="string"?r.trim():"",stderr:typeof o=="string"?o.trim():"",exitCode:0}}catch(r){let o=r;return{stdout:o.stdout?.trim()||"",stderr:o.stderr?.trim()||o.message,exitCode:typeof o.code=="number"?o.code:1}}}async function op(n,e,t){return await new Promise((r,o)=>{let i=iS(n,e,{stdio:["inherit","pipe","pipe"]}),s=lS();dS(i,s,t,r,o)})}function ip(n){let e=n.trim(),t=e.indexOf("=");return t!==-1?e.slice(t+1).trim():e}var uS=[/communication channel is being established/i,/please wait for several seconds and try again/i,/device offline/i,/\[E0+04\]/i,/not connected/i],pS=[/\[fail\]/i,/\bfail!/i,/not found/i,/permission denied/i,/device unauthorized/i];function lr(n){return n?uS.some(e=>e.test(n))?"transient":pS.some(e=>e.test(n))?"fatal":"ok":"ok"}var Oc=[800,1500,2500];function fS(n){return new Promise(e=>setTimeout(e,n))}async function se(n,e){let t=1+Oc.length,r={stdout:"",stderr:"",exitCode:-1};for(let o=0;o<t;o++){if(r=await wo(n,e),r.exitCode===0||lr(r.stderr)!=="transient"||o>=t-1)return r;m(`hdc transient failure on \`${e.join(" ")}\`: retrying in ${Oc[o]}ms`),await fS(Oc[o])}return r}var sp=/^[\w.-]+$/;async function Xi(n,e,t){if(!sp.test(t)){m(`Skipping invalid param key: ${JSON.stringify(t)}`);return}let r=["-t",e,"shell","param","get",t];m(`Executing: ${n} ${r.join(" ")}`);let o=await se(n,r);if(o.exitCode!==0)return;let i=o.stdout.trim();if(!(!i||lr(i)!=="ok"))return ip(i)}var Mc="__DEVECO_PARAM_DELIM__";function mS(n,e){let t=new Map,r=n.split(Mc);for(let o=0;o<e.length;o++){let i=(r[o]??"").trim();if(!i||lr(i)!=="ok")continue;let s=ip(i);s&&t.set(e[o],s)}return t}async function dr(n,e,t){let r=t.filter(a=>sp.test(a)?!0:(m(`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 Xi(n,e,r[0]);return c&&a.set(r[0],c),a}let o=r.map(a=>`param get ${a}`).join(`; echo ${Mc}; `)+`; echo ${Mc}`,i=await se(n,["-t",e,"shell",o]);if(i.exitCode===0){let a=mS(i.stdout,r);if(a.size>0)return a}m(`Batched param fetch failed (exit=${i.exitCode}), falling back to individual calls for ${e}`);let s=new Map;for(let a of r){let c=await Xi(n,e,a);c&&s.set(a,c)}return s}function jn(n){return n.startsWith("127.0.0.1:")}var ap=["ohos.qemu.hvd.name","const.product.name","const.product.model","const.product.brand","const.product.devicetype","const.build.product"],te=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(),o=t?.trim();if(!r||!o)return r;let i=new RegExp(`^${this.escapeRegExp(o)}(\\s+|[-_]+)?`,"i");return r.replace(i,"").trim()||r}async executeHdc(e){return m(`Executing: ${this.hdcPath} ${e.join(" ")}`),hS(this.hdcPath,e,{stdio:["ignore","pipe","pipe"]})}async listDevices(){let{stdout:e}=await this.executeHdc(["list","targets"]),t=[];for(let r of e.split(`
|
|
31
31
|
`)){let o=r.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"){m(`[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 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 dr(this.hdcPath,e,[...ap]);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 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 Error(`Multiple devices match "${t}". Use a serial instead:
|
|
32
32
|
`+i.map(s=>` - ${s.name} (${s.device.serial})`).join(`
|
|
33
|
-
`)):new Error(`Device "${t}" not found. Use \`devecocli device list\` to see available targets.`)}return e[0]}async getDeviceDetail(e){let t={serial:e,status:"device"};try{let r=await dr(this.hdcPath,e,["const.product.devicetype","const.ohos.apiversion","const.ohos.releasetype"]);t.deviceType=r.get("const.product.devicetype");let o=r.get("const.ohos.apiversion"),i=r.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=
|
|
34
|
-
`).map(t=>t.trim()).filter(t=>t.length>0&&t!=="[Empty]")}async isDevEcoStudioRunningViaHdc(e){return(await this.runHdc(["-t",e,"shell","ps -ef | grep com.huawei.devecostudio | grep -v grep"],!1)).trim().length>0}async launchPreview(e,t,r,o,i,s,a,c,l){let h=JSON.stringify({bundleName:t,abilityName:r,moduleName:s,productName:o,productType:i,subProductType:a,instanceId:c,launchDeviceIndex:l,launchFlag:"{}",isCustom:!1,nativeDebuggable:!1,appDebuggable:!1}).replace(/'/g,"'\\''"),w=`aa start -a DevEcoViewerAbility -b com.huawei.devecostudio -m DevEcoViewer --pi instanceId ${c} --ps paramJson '${h}'`;return await this.runHdc(["-t",e,"shell",w])}async forceStopApp(e,t){let r=["-t",e,"shell","aa","force-stop",t];return await this.runHdc(r,!1)}};import _c from"fs";import*as Hn from"path";function vo(n,e){if(!_c.existsSync(n))throw new Error(`Apply file list not found: ${n}`);let r=_c.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 o=Hn.resolve(e),i=new Set,s=[];for(let a of r){let c=Hn.resolve(o,a),l=Hn.isAbsolute(a)?Hn.relative(o,a):a;if(l.startsWith(".."))throw new Error(`File path is outside the project directory: ${a}`);let d=R.isPathContainedWithSymlink(l,o);if(!d.contained){if(!_c.existsSync(c))throw new Error(`File not found: ${a}`);let h=d.reason?`; ${d.reason}`:"";throw new Error(`File path is outside the project directory: ${a}${h}`)}i.has(c)||(i.add(c),s.push(c))}return s}import Fc from"fs";import ur from"path";import{execa as SS}from"execa";import cp from"fs";import*as lp from"path";import wS from"json5";function vS(n,e){try{let r=wS.parse(cp.readFileSync(n,"utf-8")).modules?.find(o=>o.name===e);return r?.srcPath?r.srcPath.replace(/^\.\//,""):null}catch(t){return m(`[apply] resolveModuleSrcPath fallback (module=${e}): ${t.message}`),null}}function vt(n,e){let t=lp.join(n,"build-profile.json5");return cp.existsSync(t)?vS(t,e)??e:e}import*as dp from"os";async function up(n,e,t,r){let o={...process.env,DEVECO_SDK_HOME:n.sdkPath};if(n.javaPath){let c=ur.dirname(n.javaPath);o.PATH=`${c}${ur.delimiter}${process.env.PATH||""}`}b()&&(o.HVIGOR_USER_HOME=ur.join(dp.homedir(),".hvigor"));let i=[n.hvigorJsPath,"--mode","module","-p",`module=${t.join(",")}@${r}`,"-p",`product=${r}`,"-p","debuggable=true","assembleDevHqf","--analyze=normal","--parallel","--incremental","--no-daemon"];m(`[buildSignedHqf] ${n.nodePath} ${i.join(" ")}`);let s=await SS(n.nodePath,i,{cwd:e,env:o,stdout:"inherit",stderr:"inherit",reject:!1}),a=(s.exitCode??0)|0;if(a===-1)throw new Error("hvigor hot compile produced invalid abc (exit code -1)");if(a!==0)throw new Error(`hvigor assembleDevHqf failed with exit code ${s.exitCode}`);return t.map(c=>ES(e,c,r))}function pp(n,e,t){let r=vt(n,e);return ur.join(n,r,"build",t,"outputs")}function bS(n,e,t){return ur.join(pp(n,e,t),`${e}-${t}-signed.hqf`)}function ES(n,e,t){let r=pp(n,e,t),o=bS(n,e,t);if(Fc.existsSync(o))return o;let i=jc(r,"-signed.hqf")??jc(r,".hqf");if(!i)throw new Error(`Signed hqf not found at ${o} (and no *.hqf under ${r})`);return m(`[buildSignedHqf] signed hqf not at exact path, using fallback: ${i}`),i}function jc(n,e){if(!Fc.existsSync(n))return null;for(let t of Fc.readdirSync(n,{withFileTypes:!0})){let r=ur.join(n,t.name);if(t.isDirectory()){let o=jc(r,e);if(o)return o}else if(t.isFile()&&t.name.endsWith(e))return r}return null}import V from"fs";import*as N from"path";import Hc from"json5";var fp="default",pr=class n{static writeChangedFileLists(e,t,r,o){let i=t||fp,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),h=n.collectChanges(r,e,a,l,d);return{writtenModules:n.flushCollectors(e,i,c,d,o),skippedFiles:h}}static initEmptyChangedFileLists(e,t,r){let o=t||fp,i=n.loadBuildProfile(e);if(!i)return[];let s=i.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,o,c.srcPath,d),a.push(c.name)}return a}static filterRunnableModules(e,t){return t.filter(r=>{let o=n.getModuleType(e,r.srcPath);return o==="entry"||o==="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,o,i){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 h=n.resolveTargetModules(d,t,r,o);if(h.length===0){s.push(c);continue}n.dispatchToCollectors(h,i,c,l,d.srcPath,t)}return s}static resolveTargetModules(e,t,r,o){let i=n.getModuleType(t,e.srcPath);return i==="entry"||i==="shared"?[e.name]:Array.from(n.findTopLevelConsumers(e.name,o,t,r))}static dispatchToCollectors(e,t,r,o,i,s){for(let a of e){let c=t.get(a);c&&n.addFileToCollector(c,r,o.fileClass,i,s)}}static flushCollectors(e,t,r,o,i){let s=[];for(let a of r){let c=o.get(a.name);if(!c||!n.hasAnyChange(c))continue;(!i||a.name===i)&&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,o){let i=N.join(e,r,"build",t,"intermediates","patch","default"),s=N.join(i,"changedFileList.json");if(V.existsSync(s)||(V.mkdirSync(i,{recursive:!0}),V.writeFileSync(s,JSON.stringify({resources:{resFile:[],rawFile:[]},modifiedFiles:[]}),"utf-8")),!o)return;let a=N.join(e,r,"build",t,"intermediates","hotReload"),c=N.join(a,"changedFileList.json");V.existsSync(c)||(V.mkdirSync(a,{recursive:!0}),V.writeFileSync(c,JSON.stringify({modifiedFilesV2:[]},null,2),"utf-8"))}static loadBuildProfile(e){let t=N.join(e,"build-profile.json5");if(!V.existsSync(t))return null;try{let r=V.readFileSync(t,"utf-8");return Hc.parse(r)}catch{return null}}static classifyFile(e,t,r){let o=N.extname(e).toLowerCase();if(o===".ets"||o===".ts")return{fileClass:"ets_ts",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};if(o===".cpp"||o===".cc"||o===".c"||o===".h"||o===".hpp")return{fileClass:"native",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};let i=e.replace(/\\/g,"/");return i.includes("/resources/rawfile/")?{fileClass:"raw_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:i.includes("/resources/resfile/")?{fileClass:"res_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:{fileClass:"unknown",moduleSrcPath:""}}static findModuleByFilePath(e,t,r){let o=N.normalize(e);for(let i of r){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 r=N.join(e,t,"src","main","module.json5");if(!V.existsSync(r))return"entry";try{let o=V.readFileSync(r,"utf-8");return Hc.parse(o)?.module?.type||"entry"}catch{return"entry"}}static buildReverseDependencyMap(e,t){let r=new Map;for(let o of t){let i=n.readLocalDependencies(e,o.srcPath);for(let s of i){let a=r.get(s)||[];a.includes(o.name)||a.push(o.name),r.set(s,a)}}return r}static readLocalDependencies(e,t){let r=N.join(e,t,"oh-package.json5");if(!V.existsSync(r))return[];try{let o=V.readFileSync(r,"utf-8"),i=Hc.parse(o);return n.resolveDepModuleNames(e,t,i.dependencies||{})}catch{return[]}}static resolveDepModuleNames(e,t,r){let o=n.loadBuildProfile(e);if(!o)return[];let i=o.modules,s=[];for(let a of Object.values(r)){if(typeof a!="string")continue;let c=n.tryResolveDepModule(e,t,a,i);c&&s.push(c)}return s}static tryResolveDepModule(e,t,r,o){let i=r;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,r,o){let i=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,o,i,a))}return i}static processDependents(e,t,r,o,i,s){let a=t.get(e)||[];for(let c of a){let l=o.find(h=>h.name===c);if(!l)continue;let d=n.getModuleType(r,l.srcPath);(d==="entry"||d==="shared")&&i.add(c),d==="har"&&s.push(c)}}static addFileToCollector(e,t,r,o,i){let s=N.join(i,o,"src","main","resources");r==="ets_ts"?(e.hotReloadEntries.push({filePath:t,belongProjectPath:i}),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,o){let i=t.replace(/^\.\//,""),s=N.join(e,i,"build",r,"intermediates","hotReload","changedFileList.json"),a=n.readExistingApply(s),c=n.mergeApplyEntries(a,o),l=N.dirname(s);V.existsSync(l)||V.mkdirSync(l,{recursive:!0}),V.writeFileSync(s,JSON.stringify({modifiedFilesV2:c},null,2),"utf-8"),m(`[ChangedFileListWriter] Written hotReload: ${s} (${c.length} entries)`)}static readExistingApply(e){if(!V.existsSync(e))return[];try{let t=V.readFileSync(e,"utf-8");return JSON.parse(t)?.modifiedFilesV2||[]}catch{return[]}}static writePatchFile(e,t,r,o,i,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"),h=o.map($e=>n.resolveRelativePathForPatch($e,d)),w=n.mergeStrings(l.modifiedFiles,h),v=n.mergePatchResources(l.rawFile,i),A=n.mergePatchResources(l.resFile,s),ie=N.dirname(c);V.existsSync(ie)||V.mkdirSync(ie,{recursive:!0}),V.writeFileSync(c,JSON.stringify({resources:{resFile:A,rawFile:v},modifiedFiles:w}),"utf-8"),m(`[ChangedFileListWriter] Written patch: ${c}`)}static readExistingPatch(e){if(!V.existsSync(e))return{modifiedFiles:[],rawFile:[],resFile:[]};try{let t=V.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,o=[];for(let i of[...e,...t])r.has(i.filePath)||(r.add(i.filePath),o.push(i));return o}static mergeStrings(e,t){let r=new Set,o=[];for(let i of[...e,...t])r.has(i)||(r.add(i),o.push(i));return o}static mergePatchResources(e,t){let r=new Set,o=[];for(let i of[...e,...t])r.has(i.filePath)||(r.add(i.filePath),o.push(i));return o}};import PS from"fs";import{randomUUID as CS}from"crypto";import{execa as IS}from"execa";var fr=class{toolProvider;constructor(e){this.toolProvider=e}async install(e,t,r){for(let a of t)if(!PS.existsSync(a)){let c=`Signed hqf file not found: ${a}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}let i=`/data/local/tmp/${CS()}`,s=[];try{for(let a=0;a<t.length;a++){let c=`${i}/${r}_${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,r,o){console.log(`[Apply] Pushing hqf to device ${e}: ${t}`),await this.runHdc(["-t",e,"shell","mkdir","-p",r]);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 r=["-t",e,"shell","bm","quickfix","-a","-f",...t,"-d"];await this.getApiVersion(e)>17&&r.push("-o");let i=await this.runHdc(r,!1);if(m(`[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),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;m(`[InstallHqf] Executing: ${r} ${e.join(" ")}`);try{let{stdout:o}=await IS(r,e,{env:{...process.env}});return o}catch(o){if(t)throw o;return o.stdout||""}}};var AS="6.1.1",Zi=class{constructor(e,t){this.toolProvider=e;this.projectRoot=t}toolProvider;projectRoot;async execute(e){await Rt(this.projectRoot,()=>this.executeSteps(e),()=>console.log("[Apply] Waiting for another build to finish..."))}async executeSteps(e){this.toolProvider.assertIdeVersion(AS);let t=vo(e.applyFile,this.projectRoot);console.log(`[Apply] Parsed ${t.length} changed file(s)`);let r=this.writeChangeFileList(e,t),o=await this.buildHqf(e,r);await this.stopApp(e),await this.installHqf(e,o),await this.launchApp(e),console.log("[Apply] Apply complete")}writeChangeFileList(e,t){let r=pr.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 m(`[Apply] hvigor assembleDevHqf --no-daemon (modules=${t.join(",")})`),await up(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 fr(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 xt(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 xt(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 mp from"fs";import*as F from"path";var Qi=class n{static generate(e,t,r,o){let i=vt(e,t),s=F.join(e,i),a=F.join(s,"build","config"),c=n.buildConfig(e,s,r,o);mp.mkdirSync(a,{recursive:!0}),mp.writeFileSync(F.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),m(`[BuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,r,o){let i=F.dirname(o.nodePath)+F.sep,s=F.join(t,"build",r),a=F.join(s,"intermediates"),c=F.join(a,"loader_out",r),l=F.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:F.join(e,"build-profile.json5"),localPropertiesPath:F.join(e,"local.properties"),appResource:F.join(l,"ResourceTable.txt"),cachePath:F.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:F.join(a,"loader",r,"loader.json"),aceModuleJsonPath:F.join(l,"module.json"),aceSoPath:F.join(c,"nativeDependencies.txt"),aceModuleRoot:F.join(t,"src","main","ets"),aceModuleBuild:F.join(c,"ets"),aceProfilePath:F.join(l,"resources","base","profile"),aceSuperVisualPath:F.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:F.join(c,"ets"),changedFileList:F.join(a,"patch","default","changedFileList.json"),patchAbcPath:F.join(a,"patch","default","ets"),removeChangedFileListInSdk:"true"}}}};import hp from"fs";import*as j from"path";var es=class n{static generate(e,t,r,o){let i=vt(e,t),s=j.join(e,i),a=j.join(s,"build","config"),c=n.buildConfig(e,s,r,o);hp.mkdirSync(a,{recursive:!0}),hp.writeFileSync(j.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),m(`[HotReloadBuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,r,o){let i=j.dirname(o.nodePath)+j.sep,s=j.join(t,"build",r),a=j.join(s,"intermediates"),c=j.join(a,"loader_out",r),l=j.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:j.join(e,"build-profile.json5"),localPropertiesPath:j.join(e,"local.properties"),appResource:j.join(l,"ResourceTable.txt"),cachePath:j.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:j.join(a,"loader",r,"loader.json"),aceModuleJsonPath:j.join(l,"module.json"),aceSoPath:j.join(c,"nativeDependencies.txt"),aceModuleRoot:j.join(t,"src","main","ets"),aceModuleBuild:j.join(c,"ets"),aceProfilePath:j.join(l,"resources","base","profile"),aceSuperVisualPath:j.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:j.join(c,"ets"),changedFileList:j.join(a,"hotReload","changedFileList.json"),patchAbcPath:j.join(a,"hotReload","patchAbcPath","ets"),removeChangedFileListInSdk:"true"}}}};import gp from"crypto";import Ye from"fs";import Je from"path";import yp from"os";import{io as DS}from"socket.io-client";var RS=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),mr=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),o=this.watchLogPath;Ye.mkdirSync(Je.dirname(o),{recursive:!0}),Ye.writeFileSync(o,"");let i=this.createWatchLogBuffer(o);r.on("WatchLog",i.onWatchLog),r.on("WatchResult",i.onWatchResult),await this.awaitInitialBuild(r,e)}createWatchLogBuffer(e){let r=[];return{onWatchLog:s=>{let a=n.extractText(s);a.trim()&&(r.push(a.endsWith(`
|
|
33
|
+
`)):new Error(`Device "${t}" not found. Use \`devecocli device list\` to see available targets.`)}return e[0]}async getDeviceDetail(e){let t={serial:e,status:"device"};try{let r=await dr(this.hdcPath,e,["const.product.devicetype","const.ohos.apiversion","const.ohos.releasetype"]);t.deviceType=r.get("const.product.devicetype");let o=r.get("const.ohos.apiversion"),i=r.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=E()?!1:jn(e),r,o;try{let i=await dr(this.hdcPath,e,[...ap]);r=this.extractDisplayName(i),o=i.get("const.product.devicetype")}catch{}return{serial:e,name:r,isEmulator:t,deviceType:o}}};var xt=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=te.from(e)}async runHdc(e,t=!0){let r=this.toolProvider.hdcPath;m(`Executing: ${r} ${e.join(" ")}`);try{let{stdout:o}=await yS(r,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){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 o=`/data/local/tmp/${gS()}`;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,r){let o=["-t",e,"shell","aa","start","-a",r,"-b",t];return await this.runHdc(o)}async connectTarget(e){await this.runHdc(["tconn",e])}async disconnectTarget(e){await this.runHdc(["tconn",e,"-remove"],!1)}async listRawTargets(){return(await this.runHdc(["list","targets"],!1)).split(`
|
|
34
|
+
`).map(t=>t.trim()).filter(t=>t.length>0&&t!=="[Empty]")}async isDevEcoStudioRunningViaHdc(e){return(await this.runHdc(["-t",e,"shell","ps -ef | grep com.huawei.devecostudio | grep -v grep"],!1)).trim().length>0}async launchPreview(e,t,r,o,i,s,a,c,l){let h=JSON.stringify({bundleName:t,abilityName:r,moduleName:s,productName:o,productType:i,subProductType:a,instanceId:c,launchDeviceIndex:l,launchFlag:"{}",isCustom:!1,nativeDebuggable:!1,appDebuggable:!1}).replace(/'/g,"'\\''"),w=`aa start -a DevEcoViewerAbility -b com.huawei.devecostudio -m DevEcoViewer --pi instanceId ${c} --ps paramJson '${h}'`;return await this.runHdc(["-t",e,"shell",w])}async forceStopApp(e,t){let r=["-t",e,"shell","aa","force-stop",t];return await this.runHdc(r,!1)}};import _c from"fs";import*as Hn from"path";function vo(n,e){if(!_c.existsSync(n))throw new Error(`Apply file list not found: ${n}`);let r=_c.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 o=Hn.resolve(e),i=new Set,s=[];for(let a of r){let c=Hn.resolve(o,a),l=Hn.isAbsolute(a)?Hn.relative(o,a):a;if(l.startsWith(".."))throw new Error(`File path is outside the project directory: ${a}`);let d=R.isPathContainedWithSymlink(l,o);if(!d.contained){if(!_c.existsSync(c))throw new Error(`File not found: ${a}`);let h=d.reason?`; ${d.reason}`:"";throw new Error(`File path is outside the project directory: ${a}${h}`)}i.has(c)||(i.add(c),s.push(c))}return s}import Fc from"fs";import ur from"path";import{execa as SS}from"execa";import cp from"fs";import*as lp from"path";import wS from"json5";function vS(n,e){try{let r=wS.parse(cp.readFileSync(n,"utf-8")).modules?.find(o=>o.name===e);return r?.srcPath?r.srcPath.replace(/^\.\//,""):null}catch(t){return m(`[apply] resolveModuleSrcPath fallback (module=${e}): ${t.message}`),null}}function vt(n,e){let t=lp.join(n,"build-profile.json5");return cp.existsSync(t)?vS(t,e)??e:e}import*as dp from"os";async function up(n,e,t,r){let o={...process.env,DEVECO_SDK_HOME:n.sdkPath};if(n.javaPath){let c=ur.dirname(n.javaPath);o.PATH=`${c}${ur.delimiter}${process.env.PATH||""}`}E()&&(o.HVIGOR_USER_HOME=ur.join(dp.homedir(),".hvigor"));let i=[n.hvigorJsPath,"--mode","module","-p",`module=${t.join(",")}@${r}`,"-p",`product=${r}`,"-p","debuggable=true","assembleDevHqf","--analyze=normal","--parallel","--incremental","--no-daemon"];m(`[buildSignedHqf] ${n.nodePath} ${i.join(" ")}`);let s=await SS(n.nodePath,i,{cwd:e,env:o,stdout:"inherit",stderr:"inherit",reject:!1}),a=(s.exitCode??0)|0;if(a===-1)throw new Error("hvigor hot compile produced invalid abc (exit code -1)");if(a!==0)throw new Error(`hvigor assembleDevHqf failed with exit code ${s.exitCode}`);return t.map(c=>ES(e,c,r))}function pp(n,e,t){let r=vt(n,e);return ur.join(n,r,"build",t,"outputs")}function bS(n,e,t){return ur.join(pp(n,e,t),`${e}-${t}-signed.hqf`)}function ES(n,e,t){let r=pp(n,e,t),o=bS(n,e,t);if(Fc.existsSync(o))return o;let i=jc(r,"-signed.hqf")??jc(r,".hqf");if(!i)throw new Error(`Signed hqf not found at ${o} (and no *.hqf under ${r})`);return m(`[buildSignedHqf] signed hqf not at exact path, using fallback: ${i}`),i}function jc(n,e){if(!Fc.existsSync(n))return null;for(let t of Fc.readdirSync(n,{withFileTypes:!0})){let r=ur.join(n,t.name);if(t.isDirectory()){let o=jc(r,e);if(o)return o}else if(t.isFile()&&t.name.endsWith(e))return r}return null}import V from"fs";import*as N from"path";import Hc from"json5";var fp="default",pr=class n{static writeChangedFileLists(e,t,r,o){let i=t||fp,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),h=n.collectChanges(r,e,a,l,d);return{writtenModules:n.flushCollectors(e,i,c,d,o),skippedFiles:h}}static initEmptyChangedFileLists(e,t,r){let o=t||fp,i=n.loadBuildProfile(e);if(!i)return[];let s=i.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,o,c.srcPath,d),a.push(c.name)}return a}static filterRunnableModules(e,t){return t.filter(r=>{let o=n.getModuleType(e,r.srcPath);return o==="entry"||o==="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,o,i){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 h=n.resolveTargetModules(d,t,r,o);if(h.length===0){s.push(c);continue}n.dispatchToCollectors(h,i,c,l,d.srcPath,t)}return s}static resolveTargetModules(e,t,r,o){let i=n.getModuleType(t,e.srcPath);return i==="entry"||i==="shared"?[e.name]:Array.from(n.findTopLevelConsumers(e.name,o,t,r))}static dispatchToCollectors(e,t,r,o,i,s){for(let a of e){let c=t.get(a);c&&n.addFileToCollector(c,r,o.fileClass,i,s)}}static flushCollectors(e,t,r,o,i){let s=[];for(let a of r){let c=o.get(a.name);if(!c||!n.hasAnyChange(c))continue;(!i||a.name===i)&&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,o){let i=N.join(e,r,"build",t,"intermediates","patch","default"),s=N.join(i,"changedFileList.json");if(V.existsSync(s)||(V.mkdirSync(i,{recursive:!0}),V.writeFileSync(s,JSON.stringify({resources:{resFile:[],rawFile:[]},modifiedFiles:[]}),"utf-8")),!o)return;let a=N.join(e,r,"build",t,"intermediates","hotReload"),c=N.join(a,"changedFileList.json");V.existsSync(c)||(V.mkdirSync(a,{recursive:!0}),V.writeFileSync(c,JSON.stringify({modifiedFilesV2:[]},null,2),"utf-8"))}static loadBuildProfile(e){let t=N.join(e,"build-profile.json5");if(!V.existsSync(t))return null;try{let r=V.readFileSync(t,"utf-8");return Hc.parse(r)}catch{return null}}static classifyFile(e,t,r){let o=N.extname(e).toLowerCase();if(o===".ets"||o===".ts")return{fileClass:"ets_ts",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};if(o===".cpp"||o===".cc"||o===".c"||o===".h"||o===".hpp")return{fileClass:"native",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""};let i=e.replace(/\\/g,"/");return i.includes("/resources/rawfile/")?{fileClass:"raw_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:i.includes("/resources/resfile/")?{fileClass:"res_file",moduleSrcPath:n.findModuleByFilePath(e,t,r)?.srcPath??""}:{fileClass:"unknown",moduleSrcPath:""}}static findModuleByFilePath(e,t,r){let o=N.normalize(e);for(let i of r){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 r=N.join(e,t,"src","main","module.json5");if(!V.existsSync(r))return"entry";try{let o=V.readFileSync(r,"utf-8");return Hc.parse(o)?.module?.type||"entry"}catch{return"entry"}}static buildReverseDependencyMap(e,t){let r=new Map;for(let o of t){let i=n.readLocalDependencies(e,o.srcPath);for(let s of i){let a=r.get(s)||[];a.includes(o.name)||a.push(o.name),r.set(s,a)}}return r}static readLocalDependencies(e,t){let r=N.join(e,t,"oh-package.json5");if(!V.existsSync(r))return[];try{let o=V.readFileSync(r,"utf-8"),i=Hc.parse(o);return n.resolveDepModuleNames(e,t,i.dependencies||{})}catch{return[]}}static resolveDepModuleNames(e,t,r){let o=n.loadBuildProfile(e);if(!o)return[];let i=o.modules,s=[];for(let a of Object.values(r)){if(typeof a!="string")continue;let c=n.tryResolveDepModule(e,t,a,i);c&&s.push(c)}return s}static tryResolveDepModule(e,t,r,o){let i=r;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,r,o){let i=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,o,i,a))}return i}static processDependents(e,t,r,o,i,s){let a=t.get(e)||[];for(let c of a){let l=o.find(h=>h.name===c);if(!l)continue;let d=n.getModuleType(r,l.srcPath);(d==="entry"||d==="shared")&&i.add(c),d==="har"&&s.push(c)}}static addFileToCollector(e,t,r,o,i){let s=N.join(i,o,"src","main","resources");r==="ets_ts"?(e.hotReloadEntries.push({filePath:t,belongProjectPath:i}),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,o){let i=t.replace(/^\.\//,""),s=N.join(e,i,"build",r,"intermediates","hotReload","changedFileList.json"),a=n.readExistingApply(s),c=n.mergeApplyEntries(a,o),l=N.dirname(s);V.existsSync(l)||V.mkdirSync(l,{recursive:!0}),V.writeFileSync(s,JSON.stringify({modifiedFilesV2:c},null,2),"utf-8"),m(`[ChangedFileListWriter] Written hotReload: ${s} (${c.length} entries)`)}static readExistingApply(e){if(!V.existsSync(e))return[];try{let t=V.readFileSync(e,"utf-8");return JSON.parse(t)?.modifiedFilesV2||[]}catch{return[]}}static writePatchFile(e,t,r,o,i,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"),h=o.map($e=>n.resolveRelativePathForPatch($e,d)),w=n.mergeStrings(l.modifiedFiles,h),v=n.mergePatchResources(l.rawFile,i),A=n.mergePatchResources(l.resFile,s),ie=N.dirname(c);V.existsSync(ie)||V.mkdirSync(ie,{recursive:!0}),V.writeFileSync(c,JSON.stringify({resources:{resFile:A,rawFile:v},modifiedFiles:w}),"utf-8"),m(`[ChangedFileListWriter] Written patch: ${c}`)}static readExistingPatch(e){if(!V.existsSync(e))return{modifiedFiles:[],rawFile:[],resFile:[]};try{let t=V.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,o=[];for(let i of[...e,...t])r.has(i.filePath)||(r.add(i.filePath),o.push(i));return o}static mergeStrings(e,t){let r=new Set,o=[];for(let i of[...e,...t])r.has(i)||(r.add(i),o.push(i));return o}static mergePatchResources(e,t){let r=new Set,o=[];for(let i of[...e,...t])r.has(i.filePath)||(r.add(i.filePath),o.push(i));return o}};import PS from"fs";import{randomUUID as CS}from"crypto";import{execa as IS}from"execa";var fr=class{toolProvider;constructor(e){this.toolProvider=e}async install(e,t,r){for(let a of t)if(!PS.existsSync(a)){let c=`Signed hqf file not found: ${a}`;return console.error(`[Apply] ${c}`),{success:!1,message:c}}let i=`/data/local/tmp/${CS()}`,s=[];try{for(let a=0;a<t.length;a++){let c=`${i}/${r}_${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,r,o){console.log(`[Apply] Pushing hqf to device ${e}: ${t}`),await this.runHdc(["-t",e,"shell","mkdir","-p",r]);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 r=["-t",e,"shell","bm","quickfix","-a","-f",...t,"-d"];await this.getApiVersion(e)>17&&r.push("-o");let i=await this.runHdc(r,!1);if(m(`[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),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;m(`[InstallHqf] Executing: ${r} ${e.join(" ")}`);try{let{stdout:o}=await IS(r,e,{env:{...process.env}});return o}catch(o){if(t)throw o;return o.stdout||""}}};var AS="6.1.1",Zi=class{constructor(e,t){this.toolProvider=e;this.projectRoot=t}toolProvider;projectRoot;async execute(e){await Rt(this.projectRoot,()=>this.executeSteps(e),()=>console.log("[Apply] Waiting for another build to finish..."))}async executeSteps(e){this.toolProvider.assertIdeVersion(AS);let t=vo(e.applyFile,this.projectRoot);console.log(`[Apply] Parsed ${t.length} changed file(s)`);let r=this.writeChangeFileList(e,t),o=await this.buildHqf(e,r);await this.stopApp(e),await this.installHqf(e,o),await this.launchApp(e),console.log("[Apply] Apply complete")}writeChangeFileList(e,t){let r=pr.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 m(`[Apply] hvigor assembleDevHqf --no-daemon (modules=${t.join(",")})`),await up(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 fr(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 xt(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 xt(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 mp from"fs";import*as F from"path";var Qi=class n{static generate(e,t,r,o){let i=vt(e,t),s=F.join(e,i),a=F.join(s,"build","config"),c=n.buildConfig(e,s,r,o);mp.mkdirSync(a,{recursive:!0}),mp.writeFileSync(F.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),m(`[BuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,r,o){let i=F.dirname(o.nodePath)+F.sep,s=F.join(t,"build",r),a=F.join(s,"intermediates"),c=F.join(a,"loader_out",r),l=F.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:F.join(e,"build-profile.json5"),localPropertiesPath:F.join(e,"local.properties"),appResource:F.join(l,"ResourceTable.txt"),cachePath:F.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:F.join(a,"loader",r,"loader.json"),aceModuleJsonPath:F.join(l,"module.json"),aceSoPath:F.join(c,"nativeDependencies.txt"),aceModuleRoot:F.join(t,"src","main","ets"),aceModuleBuild:F.join(c,"ets"),aceProfilePath:F.join(l,"resources","base","profile"),aceSuperVisualPath:F.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:F.join(c,"ets"),changedFileList:F.join(a,"patch","default","changedFileList.json"),patchAbcPath:F.join(a,"patch","default","ets"),removeChangedFileListInSdk:"true"}}}};import hp from"fs";import*as j from"path";var es=class n{static generate(e,t,r,o){let i=vt(e,t),s=j.join(e,i),a=j.join(s,"build","config"),c=n.buildConfig(e,s,r,o);hp.mkdirSync(a,{recursive:!0}),hp.writeFileSync(j.join(a,"buildConfig.json"),JSON.stringify(c,null,2),"utf-8"),m(`[HotReloadBuildConfigManager] buildConfig.json written to ${a}`)}static buildConfig(e,t,r,o){let i=j.dirname(o.nodePath)+j.sep,s=j.join(t,"build",r),a=j.join(s,"intermediates"),c=j.join(a,"loader_out",r),l=j.join(a,"res",r);return{compileConfig:{deviceType:"default",buildMode:"debug",compilerType:"ark",note:"false",logLevel:"3",hapMode:"false",img2bin:"true",Path:i,projectProfilePath:j.join(e,"build-profile.json5"),localPropertiesPath:j.join(e,"local.properties"),appResource:j.join(l,"ResourceTable.txt"),cachePath:j.join(s,"cache",r,`${r}@CompileArkTS`,"esmodule","debug"),aceBuildJson:j.join(a,"loader",r,"loader.json"),aceModuleJsonPath:j.join(l,"module.json"),aceSoPath:j.join(c,"nativeDependencies.txt"),aceModuleRoot:j.join(t,"src","main","ets"),aceModuleBuild:j.join(c,"ets"),aceProfilePath:j.join(l,"resources","base","profile"),aceSuperVisualPath:j.join(t,"src","main","supervisual"),watchMode:"true"},patchConfig:{enableMap:"true",mode:"hotReload",oldMapFilePath:j.join(c,"ets"),changedFileList:j.join(a,"hotReload","changedFileList.json"),patchAbcPath:j.join(a,"hotReload","patchAbcPath","ets"),removeChangedFileListInSdk:"true"}}}};import gp from"crypto";import Ye from"fs";import Je from"path";import yp from"os";import{io as DS}from"socket.io-client";var RS=new Int8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),mr=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),o=this.watchLogPath;Ye.mkdirSync(Je.dirname(o),{recursive:!0}),Ye.writeFileSync(o,"");let i=this.createWatchLogBuffer(o);r.on("WatchLog",i.onWatchLog),r.on("WatchResult",i.onWatchResult),await this.awaitInitialBuild(r,e)}createWatchLogBuffer(e){let r=[];return{onWatchLog:s=>{let a=n.extractText(s);a.trim()&&(r.push(a.endsWith(`
|
|
35
35
|
`)?a:a+`
|
|
36
36
|
`),r.length>100&&r.shift())},onWatchResult:s=>{let a=n.extractText(s);if(!a.trim())return;let c=`[WatchResult] ${a}`;console.log(c),Ye.writeFileSync(e,[...r,c+`
|
|
37
37
|
`].join("")),r.length=0}}}awaitInitialBuild(e,t){return new Promise((r,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),r()):(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 Je.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=DS(`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);r.once("connect",()=>{clearTimeout(s),o()}),r.once("connect_error",a=>{clearTimeout(s),i(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((o,i)=>{let s=!1,a=Date.now(),c=this.createHotCompileHandlers(r,()=>s,d=>s=d,i),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`),o(d.exitCode??0)):(d.status==="reject"||d.status==="close")&&(s=!0,c.detach(),r.off("BuildStatus",l),this.invalidateSocket(),i(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,o){let i=w=>{t()||(r(!0),h(),this.invalidateSocket(),o(new Error(`Socket disconnected: ${w}`)))},s=this.createOutputHandler(),{onWatchLog:a,onWatchResult:c,onWatchCompileResult:l,onWatchCompileData:d}=this.getDataHandler(),h=()=>{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:h}}getDataHandler(){let e=n.extractText;return{onWatchLog:s=>{let a=e(s);a.trim()&&process.stdout.write(a+(a.endsWith(`
|
|
@@ -39,7 +39,7 @@ Failed to merge compile_commands.json: ${e.message}`))}}var ep=new eS("build").d
|
|
|
39
39
|
`))},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 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(!Ye.existsSync(e))return null;try{let t=Ye.readFileSync(e,"utf-8"),r=JSON.parse(t),o=Object.values(r).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(),r=Je.join(t,"fd"),o=Je.join(t,"ac"),i=Je.join(t,"ce"),s=this.readComponents(r),a=this.xorBuffers([s[0],s[1],s[2],Buffer.from(RS)]),c=this.readSingleFile(o),l=gp.pbkdf2Sync(Buffer.from(a).toString(),c,1e4,16,"sha256"),d=this.readSingleFile(i),h=this.aesGcmDecrypt(l,d),w=Buffer.from(e,"hex");return this.aesGcmDecrypt(h,w).toString("utf-8")}aesGcmDecrypt(e,t){let r=0,o=t.readUInt32BE(r);r+=4;let i=t.subarray(r,r+12);r+=12;let s=o-16,a=t.subarray(r,r+s);r+=s;let c=t.subarray(r,r+16),l=gp.createDecipheriv("aes-128-gcm",e,i);return l.setAuthTag(c),Buffer.concat([l.update(a),l.final()])}readComponents(e){let t=Ye.readdirSync(e).map(r=>Je.join(e,r)).filter(r=>Ye.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 o=Ye.readdirSync(r);if(o.length===0)throw new Error(`No file in ${r}`);return Ye.readFileSync(Je.join(r,o[0]))})}readSingleFile(e){let t=Ye.readdirSync(e).map(r=>Je.join(e,r)).filter(r=>Ye.statSync(r).isFile());if(t.length===0)throw new Error(`No file in ${e}`);return Ye.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 o=Buffer.isBuffer(e[r])?e[r]:Buffer.from(e[r]);for(let i=0;i<t.length;i++)t[i]^=o[i]}return t}getRegistryPath(){let e=process.env.HVIGOR_USER_HOME||Je.join(yp.homedir(),".hvigor");return Je.join(e,"daemon","cache","daemon-sec.json")}getMetaDir(){let e=process.env.HVIGOR_USER_HOME||Je.join(yp.homedir(),".hvigor");return Je.join(e,"meta")}isProcessAlive(e){try{return process.kill(e,0),!0}catch{return!1}}};import Sp from"fs";import*as Nt from"path";import{green as os,yellow as $c}from"colorette";import $n from"fs";import*as Un from"path";import TS from"json5";var kS=2e6,xS=1e6,NS="hotreload",ts=class n{static generateOrUpdate(e,t,r){let o=n.readAppConfig(e),i=Un.resolve(e,t),s=Un.join(i,"patch.json"),a;return $n.existsSync(s)?(m(`[PatchManager] patch.json found at ${s}, incrementing patchVersionCode`),a=n.readExistingPatch(s),a.app.patchVersionCode+=1):(m(`[PatchManager] patch.json not found, generating new one at ${s}`),a={app:{bundleName:o.bundleName,patchVersionCode:kS,versionCode:o.versionCode},module:{name:r,type:NS}}),n.writePatchJson(s,a),a}static readAppConfig(e){let t=Un.join(e,"AppScope","app.json5");if(!$n.existsSync(t))throw new Error(`AppScope/app.json5 not found at ${t}. Unable to read bundleName and versionCode.`);let r=$n.readFileSync(t,"utf-8"),o=TS.parse(r),i=o?.app?.bundleName;if(!i)throw new Error("bundleName is missing in AppScope/app.json5");let s=o?.app?.versionCode??xS;return{bundleName:i,versionCode:s}}static readExistingPatch(e){let t=$n.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=Un.dirname(e);$n.existsSync(r)||$n.mkdirSync(r,{recursive:!0});let o=JSON.stringify(t,null,2);$n.writeFileSync(e,o,"utf-8"),m(`[PatchManager] patch.json written to ${e}`),m(`[PatchManager] Content: ${o}`)}};import fe from"fs";import*as $ from"path";import wp from"crypto";import LS from"json5";import{execa as vp}from"execa";var ns=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}`);m(`[DecipherUtil] Decrypting ${r}, encrypted length: ${t.length}`);let o=$.resolve(e,"material"),i=n.getKey(o,r),s=new Int8Array(Buffer.from(t,"hex"));return m(`[DecipherUtil] Data length: ${s.length}, key length: ${i.length}`),n.decrypt(i,s).toString("utf-8")}static getKey(e,t){let r=$.resolve(e,n.DIRS[0]),o=n.readFd(r,t),i=n.readDirBytes($.resolve(e,n.DIRS[1]),t),s=n.getRootKey(o,i,t),a=n.readDirBytes($.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 o=[...e,n.COMPONENT],i=n.xor(o[0],o[1],r);for(let a=2;a<o.length;a++)i=n.xor(i,o[a],r);let s=wp.pbkdf2Sync(Buffer.from(i).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 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 r=(255&t[0])<<24|(255&t[1])<<16|(255&t[2])<<8|255&t[3],o=t.length-4-r,i=t.slice(4,4+o),s=t.slice(t.length-16),a=wp.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 r=fe.readdirSync(e).filter(i=>i!==".DS_Store");if(r.length!==3)throw new Error(`fd directory must have 3 entries for ${t}`);let o=[];for(let i of r){let s=$.join(e,i);o.push(n.readDirBytes(s,t))}return o}static readDirBytes(e,t){if(fe.statSync(e).isDirectory()){let o=fe.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(fe.readFileSync($.join(e,o[0])))}return new Int8Array(fe.readFileSync(e))}},rs=class{toolProvider;projectRoot;env;constructor(e,t){this.toolProvider=e,this.projectRoot=t;let o=`${$.dirname(e.javaPath)}${$.delimiter}${process.env.PATH||""}`;this.env={...process.env,PATH:o,DEVECO_SDK_HOME:e.sdkPath}}async generateAndSign(e,t,r,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(r,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=$.join(e,"ets","modules.abc");if(fe.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(!fe.existsSync(e))return null;let t=fe.readdirSync(e,{withFileTypes:!0});for(let r of t){let o=$.join(e,r.name);if(r.isDirectory()){let i=this.findFirstAbc(o);if(i)return i}else if(r.isFile()&&r.name.endsWith(".abc"))return o}return null}resolveHqfPaths(e,t){let r=vt(this.projectRoot,e),o=$.join(this.projectRoot,r,"build",t,"outputs","default");return fe.existsSync(o)||fe.mkdirSync(o,{recursive:!0}),{unsignedHqfPath:$.join(o,`${e}-default-unsigned.hqf`),signedHqfPath:$.join(o,`${e}-default-signed.hqf`)}}async generateHqf(e,t,r){let o=this.resolvePackingTool();if(!o)return console.error("[HotReload] app_packing_tool.jar not found in SDK."),!1;let i=$.dirname(t),s=this.toolProvider.javaPath,a=["-jar",o,"--mode","hqf","--json-path",e,"--ets-path",i,"--out-path",r,"--force","true"];m(`[GenSignHqf] Packing: ${s} ${a.join(" ")}`);try{let c=Date.now(),l=await vp(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):fe.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 o=this.buildSignArgs(r,e,t),i=this.toolProvider.javaPath;m(`[GenSignHqf] Signing: ${i} ${o.join(" ")}`);try{let s=Date.now(),a=await vp(i,o,{cwd:this.projectRoot,stdout:"pipe",stderr:"pipe",reject:!1});return console.log(`[Timing] sign (JVM#2): ${Date.now()-s}ms`),a.stdout&&console.log(a.stdout),a.stderr&&console.error(a.stderr),a.exitCode!==0?this.signFailResult(e,`hqf signing failed with exit code ${a.exitCode}`):fe.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(s){return this.signFailResult(e,`hqf signing failed: ${s.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 o=ns.decryptPwd(r,t.storePassword,"storePassword"),i=ns.decryptPwd(r,t.keyPassword,"keyPassword");return{signToolPath:e,storePwd:o,keyPwd:i,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=$.resolve(e.storeFile,".."),r=$.join(t,"material");return fe.existsSync(r)?t:null}readSigningConfig(e){let t=$.join(this.projectRoot,"build-profile.json5");if(!fe.existsSync(t))return null;try{let r=fe.readFileSync(t,"utf-8"),o=LS.parse(r),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=[$.join(e,"default","openharmony","toolchains","lib","hap-sign-tool.jar"),$.join(e,"toolchains","lib","hap-sign-tool.jar")];for(let r of t)if(fe.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=[$.join(e,"default","openharmony","toolchains","lib","app_packing_tool.jar"),$.join(e,"toolchains","lib","app_packing_tool.jar")];for(let r of t)if(fe.existsSync(r))return r;return null}};async function bp(n){let e=Date.now(),t=vt(n.projectPath,n.moduleName),r=OS(n);console.log($c("[HotReload] Ensure the project source is trusted before proceeding."));let o=MS(n),i=vo(r,n.projectPath);console.log(`[HotReload] Parsed ${i.length} changed file(s) from ${n.applyFileName}`),_S(n,i),FS(n,t),await jS(n,o);let s=Nt.join(n.projectPath,t,"patch.json"),a=await $S(n,t,s);return await US(n,a),console.log(os("[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 OS(n){if(Nt.basename(n.applyFileName)!==n.applyFileName)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${n.applyFileName}`);return Nt.join(n.projectPath,".hvigor",n.applyFileName)}function MS(n){let{projectPath:e,toolProvider:t}=n,r=new mr(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 _S(n,e){let t=pr.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(os(`[HotReload] changedFileList written for: ${t.writtenModules.join(", ")}`)),t.skippedFiles.length>0&&console.warn($c(`[HotReload] skipped ${t.skippedFiles.length} file(s)`))}function FS(n,e){let t=ts.generateOrUpdate(n.projectPath,e,n.moduleName);console.log(os(`[HotReload] patch.json ready (patchVersionCode=${t.app.patchVersionCode})`))}async function jS(n,e){let t=Date.now(),r=e.getWatchLogPath();try{console.log("[HotReload] Daemon hot compile (socket short connection)...");let o=await e.sendHotCompile({moduleSpecs:n.moduleSpecs,productName:n.productName});if(o!==0){let i=HS(r);throw new Error(`Daemon hot compile exited with code ${o}`+(i?`
|
|
40
40
|
--- compile output (from watch session) ---
|
|
41
41
|
${i}`:""))}}finally{e.disconnect()}console.log(`[Timing] daemon hot compile: ${Date.now()-t}ms`)}function HS(n){try{return Sp.existsSync(n)?Sp.readFileSync(n,"utf8").split(/\r?\n/).filter(t=>t.trim()).slice(-40).join(`
|
|
42
|
-
`):""}catch{return""}}async function $S(n,e,t){let r=Nt.join(n.projectPath,e,"build",n.productName,"intermediates"),o=[Nt.join(r,"hotReload","patchAbcPath"),Nt.join(r,"patch","default")],i=Date.now(),s=new rs(n.toolProvider,n.projectPath),a=n.targetDeviceId.includes("127.0.0.1")||n.targetDeviceId.includes("localhost"),c=null;for(let l of o){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()-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 US(n,e){let t=Date.now(),o=await new fr(n.toolProvider).install(n.targetDeviceId,e,n.bundleName);if(console.log(`[Timing] quickfix install: ${Date.now()-t}ms`),!o.success)throw new Error(`hqf install failed: ${o.message}`)}function Uc(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 Ep(n,e,t){let r=Nt.join(n.rootDir,".hvigor",t),o;try{o=vo(r,n.rootDir)}catch{return}let i=new Set;for(let s of o){let a=n.findOwningModule(s);if(!a||a===e)continue;let c=n.getModuleType(a);(c==="feature"||c==="shared")&&i.add(`${a} (${c})`)}i.size>0&&console.warn($c(`[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 Pp(n,e,t,r,o){let i=new Set,s=n.collectNonHarDependentModuleList(e);for(let a of s)i.add(n.findArtifactPath(a,t,r,o));return i.add(n.findArtifactPath(e,t,r,o)),[...i]}async function Cp(n,e){await new ke(n,e.rootDir).stopDaemon(),console.log(os("Hvigor daemon stopped."))}import{execa as Gc}from"execa";import*as Ip from"readline/promises";import{stdin as VS,stdout as YS}from"process";import{green as hr,red as as,yellow as qc}from"colorette";import ss from"fs";import*as bo from"path";import JS from"json5";var BS=[{productIndex:0,productName:"Pura 90 Pro",productType:"phone",subProductType:"phone"},{productIndex:1,productName:"MatePad 11.5'S",productType:"tablet",subProductType:"tablet"},{productIndex:2,productName:"Mate X7",productType:"phone",subProductType:"foldable"},{productIndex:3,productName:"Pura X",productType:"phone",subProductType:"widefold"},{productIndex:4,productName:"Mate XT",productType:"phone",subProductType:"triplefold"}],So={productIndex:0,productName:"phone",productType:"phone",subProductType:"phone"};async function WS(){return[]}async function Bc(){let n=await WS();return n.length>0?n:BS}function is(n){return n.toLowerCase().replace(/[\s\W]+/g,"")}var GS={phone:"Pura 90 Pro",tablet:"MatePad 11.5'S",pad:"MatePad 11.5'S",fold:"Mate X7",foldable:"Mate X7",widefold:"Pura X",wide:"Pura X",triplefold:"Mate XT",triple:"Mate XT",pura90:"Pura 90 Pro",pura90pro:"Pura 90 Pro",matepad:"MatePad 11.5'S",matex7:"Mate X7",purax:"Pura X",matext:"Mate XT"};function qS(n,e){let t=n.length,r=e.length;if(t===0)return r;if(r===0)return t;let o=new Array(r+1),i=new Array(r+1);for(let s=0;s<=r;s++)o[s]=s;for(let s=1;s<=t;s++){i[0]=s;for(let a=1;a<=r;a++){let c=n[s-1]===e[a-1]?0:1;i[a]=Math.min(o[a]+1,i[a-1]+1,o[a-1]+c)}for(let a=0;a<=r;a++)o[a]=i[a]}return o[r]}function zS(n,e){let t=n.map(i=>({spec:i,dist:qS(e,is(i.productName))})),r=t.reduce((i,s)=>Math.min(i,s.dist),1/0);if(r>2)return;let o=t.filter(i=>i.dist===r);return o.length===1?{spec:o[0].spec,matchedName:o[0].spec.productName,fuzzy:!0,matchType:"fuzzy"}:{matchType:"none",ambiguous:o.map(i=>i.spec.productName)}}function Wc(n,e){if(/[\u4e00-\u9fff\u3400-\u4dbf\u3040-\u30ff\uac00-\ud7af]/.test(e))return{matchType:"none"};let t=is(e);if(t.length===0)return{matchType:"none"};let r=n.find(a=>is(a.productName)===t);if(r)return{spec:r,matchedName:r.productName,matchType:"exact"};let o=GS[t];if(o){let a=n.find(c=>c.productName===o);if(a)return{spec:a,matchedName:a.productName,matchType:"alias"}}let i=n.filter(a=>{let c=is(a.productName);return c.includes(t)||t.includes(c)});if(i.length===1)return{spec:i[0],matchedName:i[0].productName,matchType:"substring"};if(i.length>1)return{matchType:"none",ambiguous:i.map(a=>a.productName)};let s=zS(n,t);return s||{matchType:"none"}}async function KS(n){for(let e of n){let{stdout:t}=await Gc("tasklist",["/FI",`IMAGENAME eq ${e}`,"/FO","CSV","/NH"],{reject:!1});if(t.toLowerCase().includes(e.toLowerCase()))return!0}return!1}async function XS(){try{let n=yc();if(n==="win32")return KS(["devecostudio64.exe","devecostudio.exe"]);if(n==="darwin"){let{stdout:e}=await Gc("pgrep",["-x","DevEco Studio"],{reject:!1});return e.trim().length>0}if(n==="openharmony"||n==="linux"){let{stdout:e}=await Gc("pgrep",["-f","com.huawei.devecostudio"],{reject:!1});return e.trim().length>0}}catch{}return!1}async function ZS(n,e){if(!
|
|
42
|
+
`):""}catch{return""}}async function $S(n,e,t){let r=Nt.join(n.projectPath,e,"build",n.productName,"intermediates"),o=[Nt.join(r,"hotReload","patchAbcPath"),Nt.join(r,"patch","default")],i=Date.now(),s=new rs(n.toolProvider,n.projectPath),a=n.targetDeviceId.includes("127.0.0.1")||n.targetDeviceId.includes("localhost"),c=null;for(let l of o){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()-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 US(n,e){let t=Date.now(),o=await new fr(n.toolProvider).install(n.targetDeviceId,e,n.bundleName);if(console.log(`[Timing] quickfix install: ${Date.now()-t}ms`),!o.success)throw new Error(`hqf install failed: ${o.message}`)}function Uc(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 Ep(n,e,t){let r=Nt.join(n.rootDir,".hvigor",t),o;try{o=vo(r,n.rootDir)}catch{return}let i=new Set;for(let s of o){let a=n.findOwningModule(s);if(!a||a===e)continue;let c=n.getModuleType(a);(c==="feature"||c==="shared")&&i.add(`${a} (${c})`)}i.size>0&&console.warn($c(`[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 Pp(n,e,t,r,o){let i=new Set,s=n.collectNonHarDependentModuleList(e);for(let a of s)i.add(n.findArtifactPath(a,t,r,o));return i.add(n.findArtifactPath(e,t,r,o)),[...i]}async function Cp(n,e){await new ke(n,e.rootDir).stopDaemon(),console.log(os("Hvigor daemon stopped."))}import{execa as Gc}from"execa";import*as Ip from"readline/promises";import{stdin as VS,stdout as YS}from"process";import{green as hr,red as as,yellow as qc}from"colorette";import ss from"fs";import*as bo from"path";import JS from"json5";var BS=[{productIndex:0,productName:"Pura 90 Pro",productType:"phone",subProductType:"phone"},{productIndex:1,productName:"MatePad 11.5'S",productType:"tablet",subProductType:"tablet"},{productIndex:2,productName:"Mate X7",productType:"phone",subProductType:"foldable"},{productIndex:3,productName:"Pura X",productType:"phone",subProductType:"widefold"},{productIndex:4,productName:"Mate XT",productType:"phone",subProductType:"triplefold"}],So={productIndex:0,productName:"phone",productType:"phone",subProductType:"phone"};async function WS(){return[]}async function Bc(){let n=await WS();return n.length>0?n:BS}function is(n){return n.toLowerCase().replace(/[\s\W]+/g,"")}var GS={phone:"Pura 90 Pro",tablet:"MatePad 11.5'S",pad:"MatePad 11.5'S",fold:"Mate X7",foldable:"Mate X7",widefold:"Pura X",wide:"Pura X",triplefold:"Mate XT",triple:"Mate XT",pura90:"Pura 90 Pro",pura90pro:"Pura 90 Pro",matepad:"MatePad 11.5'S",matex7:"Mate X7",purax:"Pura X",matext:"Mate XT"};function qS(n,e){let t=n.length,r=e.length;if(t===0)return r;if(r===0)return t;let o=new Array(r+1),i=new Array(r+1);for(let s=0;s<=r;s++)o[s]=s;for(let s=1;s<=t;s++){i[0]=s;for(let a=1;a<=r;a++){let c=n[s-1]===e[a-1]?0:1;i[a]=Math.min(o[a]+1,i[a-1]+1,o[a-1]+c)}for(let a=0;a<=r;a++)o[a]=i[a]}return o[r]}function zS(n,e){let t=n.map(i=>({spec:i,dist:qS(e,is(i.productName))})),r=t.reduce((i,s)=>Math.min(i,s.dist),1/0);if(r>2)return;let o=t.filter(i=>i.dist===r);return o.length===1?{spec:o[0].spec,matchedName:o[0].spec.productName,fuzzy:!0,matchType:"fuzzy"}:{matchType:"none",ambiguous:o.map(i=>i.spec.productName)}}function Wc(n,e){if(/[\u4e00-\u9fff\u3400-\u4dbf\u3040-\u30ff\uac00-\ud7af]/.test(e))return{matchType:"none"};let t=is(e);if(t.length===0)return{matchType:"none"};let r=n.find(a=>is(a.productName)===t);if(r)return{spec:r,matchedName:r.productName,matchType:"exact"};let o=GS[t];if(o){let a=n.find(c=>c.productName===o);if(a)return{spec:a,matchedName:a.productName,matchType:"alias"}}let i=n.filter(a=>{let c=is(a.productName);return c.includes(t)||t.includes(c)});if(i.length===1)return{spec:i[0],matchedName:i[0].productName,matchType:"substring"};if(i.length>1)return{matchType:"none",ambiguous:i.map(a=>a.productName)};let s=zS(n,t);return s||{matchType:"none"}}async function KS(n){for(let e of n){let{stdout:t}=await Gc("tasklist",["/FI",`IMAGENAME eq ${e}`,"/FO","CSV","/NH"],{reject:!1});if(t.toLowerCase().includes(e.toLowerCase()))return!0}return!1}async function XS(){try{let n=yc();if(n==="win32")return KS(["devecostudio64.exe","devecostudio.exe"]);if(n==="darwin"){let{stdout:e}=await Gc("pgrep",["-x","DevEco Studio"],{reject:!1});return e.trim().length>0}if(n==="openharmony"||n==="linux"){let{stdout:e}=await Gc("pgrep",["-f","com.huawei.devecostudio"],{reject:!1});return e.trim().length>0}}catch{}return!1}async function ZS(n,e){if(!E()){if(await XS()){console.log("DevEco Studio is already running.");return}throw new Error(`DevEco Studio is not running. The previewer requires DevEco Studio to be running.
|
|
43
43
|
Please start DevEco Studio manually, then retry.`)}if(!n||!e)throw new Error("Internal error: hdcAdapter and targetDeviceId are required for IDE detection on HarmonyOS.");if(await n.isDevEcoStudioRunningViaHdc(e)){console.log("DevEco Studio is already running.");return}throw new Error(`DevEco Studio is not running. The previewer requires DevEco Studio to be running.
|
|
44
44
|
Please start DevEco Studio manually, then retry.`)}async function QS(n,e){let t=await e.listDevices();if(t.length===0)return!1;let r=await e.listDevicesWithName();for(let o of n){if(t.some(s=>s.serial===o))return!0;let i=o.toLowerCase();if(r.some(s=>s.name.toLowerCase()===i))return!0}return!1}async function Ap(n,e){if(!n)return!1;let t=n.split(",").map(i=>i.trim()).filter(i=>i.length>0);if(t.length===0||e&&await QS(t,e))return!1;let r=await Bc(),o=r.length>0?r:[So];return t.every(i=>Wc(o,i).spec!==void 0)}function eb(n,e){if(!n)return[e[0]||So];let t=n.split(",").map(i=>i.trim()).filter(i=>i.length>0);if(t.length===0)return[e[0]||So];let r=[],o=[];for(let i of t){let s=Wc(e,i);if(s.spec)r.push(s.spec),s.matchType==="fuzzy"?console.warn(qc(` [fuzzy] "${i}" \u2192 ${s.matchedName}`)):(s.matchType==="alias"||s.matchType==="substring")&&console.log(` [${s.matchType}] "${i}" \u2192 ${s.matchedName}`);else{if(s.ambiguous&&s.ambiguous.length>0)throw new Error(`Ambiguous device name "${i}". Candidates:
|
|
45
45
|
`+s.ambiguous.map(a=>` - ${a}`).join(`
|
|
@@ -49,21 +49,21 @@ Available: ${i}`)}return tb(r)}function tb(n){let e=new Set,t=[];for(let r of n)
|
|
|
49
49
|
Please either:
|
|
50
50
|
1. Run with --device 127.0.0.1:<port>, or
|
|
51
51
|
2. Set DEVECO_HDC_PORT env var, or
|
|
52
|
-
3. Open wireless debugging in system settings first.`)}async function ob(n,e){let t=await n.listDevices();if(t.length===0)throw new Error(
|
|
52
|
+
3. Open wireless debugging in system settings first.`)}async function ob(n,e){let t=await n.listDevices();if(t.length===0)throw new Error(E()?"No active devices found. Connect a physical device.":"No active devices found. Start an emulator or connect a physical device.");if(!e&&t.length>1){let o=await n.listDevicesWithName();throw new Error("Multiple devices found. Please specify a target device using `--device <Name>` or `--device <ID>`.\nAvailable devices:\n"+o.map(i=>` - ${i.name} (${i.serial})`).join(`
|
|
53
53
|
`))}let r=await n.getDeviceInfo(t,e);if(!r)throw new Error("No active devices found.");if(!e){let o=await n.getDeviceName(r.serial);console.log(`Auto-selected device: ${o} (${r.serial})`)}return r.serial}function ib(n){if(!ss.existsSync(n))throw new Error(`app.json5 not found at ${n}`);let e=ss.readFileSync(n,"utf8"),t=JS.parse(e);return t.app?.multiAppMode?(console.log("[multi-preview] app.json5 already has multiAppMode, skipping injection."),()=>{}):(t.app||(t.app={}),t.app.multiAppMode={multiAppModeType:"appClone",maxCount:5},ss.writeFileSync(n,JSON.stringify(t,null,2),"utf8"),console.log(`[multi-preview] Injected multiAppMode into ${bo.basename(n)}`),()=>{ss.writeFileSync(n,e,"utf8"),console.log(`[multi-preview] Restored original ${bo.basename(n)}`)})}async function sb(n){let{options:e,project:t,toolProvider:r,hdcAdapter:o,moduleName:i,isMulti:s,targetDeviceId:a}=n,c=bo.join(t.rootDir,"AppScope","app.json5"),l=s?ib(c):()=>{},d=s?"[multi-preview]":"[preview]";try{let h=e.product||"default",w=e.buildMode||"debug",v="default";if(s||!e.skipBuild){console.log(s?`
|
|
54
54
|
${d} Building with multiAppMode (appClone) for multi-instance preview...`:`
|
|
55
55
|
${d} Building and installing hap for preview...`);let ie=new en(r,t.rootDir),$e=new ke(r,t.rootDir),rt=t.collectNonHarDependentModuleList(i).map(mc=>`${mc}@${v}`),vu=go(t,rt),fc={type:"modules",modulesToBuild:rt,moduleTasks:vu};await Rt(t.rootDir,async()=>{await yo(ie,$e,h,w,fc,t.rootDir)},()=>console.log("Another build is already running. Waiting...")),console.log(hr(`${d} Build completed.`))}else console.log(`${d} Skipping build (--skip-build), installing existing hap...`);let A=t.findArtifactPath(i,v,!1,h);console.log(`${d} Installing hap to ${a}...`),await o.installApp(a,[A]),console.log(hr(`${d} Installed hap.`))}finally{l()}}function ab(n){console.log(`
|
|
56
56
|
Launching DevEco Studio previewer on ${n.targetDeviceId}...`),console.log(` bundleName : ${n.bundleName}`),console.log(` abilityName : ${n.mainAbility}`),console.log(` moduleName : ${n.moduleJsonName}`),console.log(` instanceId : ${n.instanceId}`),console.log(` mode : ${n.isMulti?"multi":"single"}`),console.log(` previewers : ${n.targets.map(e=>e.productName).join(", ")}`)}async function cb(n){let{hdcAdapter:e,targets:t,isMulti:r,targetDeviceId:o,bundleName:i,mainAbility:s,moduleJsonName:a,instanceId:c}=n,l=[];for(let d=0;d<t.length;d++){let h=t[d],w=r?d:-1;console.log(`
|
|
57
57
|
[${d+1}/${t.length}] Launching ${h.productName} (${h.productType}/${h.subProductType})...`);try{let v=await e.launchPreview(o,i,s,h.productName,h.productType,a,h.subProductType,c,w),A=/start ability successfully/i.test(v);l.push({name:h.productName,success:A,output:v}),A?console.log(hr(` \u2713 ${h.productName}: ${v.trim()}`)):console.error(as(` \u2717 ${h.productName}: ${v.trim()}`))}catch(v){let A=v.message;l.push({name:h.productName,success:!1,output:A}),console.error(as(` \u2717 ${h.productName}: ${A}`))}}return l}function lb(n){console.log(`
|
|
58
|
-
`+"\u2500".repeat(50));let e=n.filter(r=>r.success).length,t=n.length-e;console.log(`Previewer launch summary: ${hr(String(e))} succeeded, ${t>0?as(String(t)):"0"} failed.`);for(let r of n){let o=r.success?hr("\u2713"):as("\u2717");console.log(` ${o} ${r.name}`)}return t===0}async function Dp(n,e,t,r,o,i){let s=await Bc(),a=s.length>0?s:[So],c=eb(n.device,a),l=c.length>1,d;if(
|
|
58
|
+
`+"\u2500".repeat(50));let e=n.filter(r=>r.success).length,t=n.length-e;console.log(`Previewer launch summary: ${hr(String(e))} succeeded, ${t>0?as(String(t)):"0"} failed.`);for(let r of n){let o=r.success?hr("\u2713"):as("\u2717");console.log(` ${o} ${r.name}`)}return t===0}async function Dp(n,e,t,r,o,i){let s=await Bc(),a=s.length>0?s:[So],c=eb(n.device,a),l=c.length>1,d;if(E()){let A=(await r.listRawTargets()).find(ie=>ie.includes("127.0.0.1:"));A?(d=A,console.log(`Using self-connected device: ${d}`)):(console.warn(qc("hdc \u672A\u81EA\u8054\u5230\u672C\u673A\u8BBE\u5907(\u9700\u8981 127.0.0.1:<port>)\u3002\u6B63\u5728\u5C1D\u8BD5\u81EA\u52A8\u8FDE\u63A5...")),d=await rb(r,void 0))}else d=await ob(o,void 0);let h={options:n,project:e,toolProvider:t,hdcAdapter:r,moduleName:i,targetDeviceId:d,isMulti:l,targets:c,bundleName:e.getBundleName(),mainAbility:e.getMainAbility(i,n.ability),moduleJsonName:e.getModuleName(i),instanceId:process.pid};await sb(h),await ZS(r,d),ab(h);let w=await cb(h);return lb(w)}function zc(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 ds(n,e){let t=await n.listDevices();if(t.length===0)throw new Error(E()?"No active devices found. Connect a physical device.":"No active devices found. Start an emulator or connect a physical device.");if(!e&&t.length>1){let o=await n.listDevicesWithName();throw new Error("Multiple devices found. Specify a target device using `--device <Name>` or `--device <ID>`.\nAvailable devices:\n"+o.map(i=>` - ${i.name} (${i.serial})`).join(`
|
|
59
59
|
`))}let r=await n.getDeviceInfo(t,e);if(!r)throw new Error("No active devices found.");if(!e){let o=await n.getDeviceName(r.serial);console.log(`Auto-selected device: ${o} (${r.serial})`)}return r.serial}function Vc(n,e){if(e&&e.length>0)return e;let t=n.profile.modules.filter(r=>{let o=n.getModuleType(r.name);return o==="entry"||o==="feature"||o==="shared"});if(t.length===1){let r=t[0].name;return console.log(`Auto-selected module: ${r}`),[r]}throw new Error(`Specify module(s) using --module <name> [<name>...].
|
|
60
60
|
Available runnable modules:
|
|
61
61
|
`+t.map(r=>` - ${r.name}`).join(`
|
|
62
62
|
`))}function Rp(n,e,t){if(t)return t;let r=e.find(({moduleName:i})=>n.getModuleType(i)==="entry");if(r)return n.getMainAbility(r.moduleName);let o=e.find(({moduleName:i})=>n.getModuleType(i)==="feature");if(o)return n.getMainAbility(o.moduleName)}async function Tp(n,e,t,r,o,i){if(i&&(console.log(`Uninstalling ${t}...`),await n.uninstallApp(e,t)||console.log(`App ${t} not installed; skipping uninstallation.`)),console.log(`
|
|
63
63
|
Installing artifacts to device ${e}...`),await n.installApp(e,r),o){console.log(`Launching ${t}/${o}...`);let s=await n.launchApp(e,t,o);console.log(Eo(`
|
|
64
64
|
Application '${t}': ${s}`))}else console.log(`
|
|
65
|
-
Application '${t}' installed successfully (no ability to launch).`)}var Yc=new db("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/");
|
|
66
|
-
`+Eo("Build completed successfully."))}async function fb(n,e,t,r,o){let i=new xt(t),s=te.from(t),a=r[0]?.moduleName||o[0];await Dp(n,e,t,i,s,a)}function mb(n,e){for(let{moduleName:t}of e){let r=n.getModuleType(t);if(r!=="entry"&&r!=="feature"&&r!=="shared")throw new Error(`Module '${t}' '${r}' is not runnable. Specify an entry or feature module.`)}}async function hb(n){let e=G.discover(process.cwd());console.warn(cs("Ensure the project source is trusted before proceeding."));let t=await I.new();if(n.skipBuild||t.assertJava(),n.hotreloadApply){await yb(n,e,t);return}if(n.hotreload){await gb(n,e,t);return}if(n.apply){await vb(n,e,t);return}await kp(n,e,t)}async function gb(n,e,t){if(n.hotreload==="stop"){await Cp(t,e);return}let o=Vc(e,n.module).map(zc),{moduleName:i,targetName:s}=o[0];Uc(n.module,i);let a=new xt(t),c=te.from(t),l=await ds(c,n.device),d=l.includes("127.0.0.1")||l.includes("localhost"),h=n.product||"default";e.validateProduct(h);let w=e.getBundleName(),v=Rp(e,o,n.ability);es.generate(e.rootDir,i,h,t);let A=new ke(t,e.rootDir);console.log(Eo("Ensuring hvigor daemon is running (via --sync --daemon, no hap build)...")),await A.ensureDaemonRunning();let ie=[`${i}@${h}`];for(let rt of e.collectNonHarDependentModuleList(i))ie.includes(`${rt}@${h}`)||ie.push(`${rt}@${h}`);console.log(Eo("Building hap + starting watch session (socket -> CommonBuild assembleHap --hot-reload-build --watch, kept open)..."));let $e=new mr(e.rootDir,t);await $e.startWatchSession({moduleSpecs:ie,productName:h});let nt=Pp(e,i,s,d,h);await Tp(a,l,w,nt,v,!!n.uninstall),console.log(Eo("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.")),$e.onSocketDisconnect(()=>{console.log("Daemon disconnected (likely via --hotreload stop). Exiting watch session."),process.exit(0)}),await new Promise(()=>{})}async function yb(n,e,t){let r=n.hotreloadApply;if(!r)throw new Error("hotreload-apply requires --hotreload-apply <fileName> (under .hvigor/)");let o=Vc(e,n.module),{moduleName:i}=zc(o[0]);Uc(n.module,i);let s=te.from(t),a=await ds(s,n.device),c=n.product||"default";e.validateProduct(c);let l=e.getBundleName();Ep(e,i,r);let d=[`${i}@${c}`],h=await bp({applyFileName:r,projectPath:e.rootDir,moduleName:i,productName:c,bundleName:l,toolProvider:t,targetDeviceId:a,moduleSpecs:d});if(!h.success)throw new Error(h.message)}function wb(n,e,t,r){let o=new Set;for(let{moduleName:i,targetName:s}of e)for(let a of n.collectNonHarDependentModuleList(i)){o.add(n.findArtifactPath(a,s,t,r));for(let c of n.findRemoteHspPaths(a,s,r))o.add(c)}return[...o]}async function kp(n,e,t){let r=Vc(e,n.module),o=r.map(zc),i=te.from(t);if(await Ap(n.device,i)){await fb(n,e,t,o,r);return}mb(e,o);let s=new xt(t),a=await ds(i,n.device),c=a.includes("127.0.0.1")||a.includes("localhost"),l=n.product||"default";e.validateProduct(l);let d=n.buildMode||"debug";n.skipBuild||await pb(e,t,o,l,d);let h=wb(e,o,c,l),w=e.getBundleName(),v=Rp(e,o,n.ability);await Tp(s,a,w,h,v,!!n.uninstall)}async function vb(n,e,t){let r=n.apply;if(!r)throw new Error("apply requires --apply <fileName> (under .hvigor/)");if(ls.basename(r)!==r)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${r}`);let o=ls.join(e.rootDir,".hvigor",r),i=te.from(t),s=await ds(i,n.device),a=n.product||"default";e.validateProduct(a);let c=e.getBundleName(),l=e.profile.modules.find(w=>e.getModuleType(w.name)==="entry")?.name,d=l?e.getMainAbility(l,n.ability):n.ability||"EntryAbility",h=new Zi(t,e.rootDir);try{await h.execute({applyFile:o,productName:a,targetDeviceId:s,bundleName:c,abilityName:d}),console.log(cs("[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(w){console.warn(cs(`[Apply] \u5931\u8D25\uFF1A${w.message}`)),console.warn(cs("[Apply] \u81EA\u52A8\u56DE\u9000\u5230\u5168\u91CF devecocli run..."))}await kp(n,e,t)}var xp=Yc;import{Command as Sb}from"commander";import{green as Np,red as Lp,cyan as Jc}from"colorette";import{execa as Op}from"execa";function bb(){return"stable"}function Eb(){return"@deveco-test/hmos-deveco-cli"}function Pb(){return"0.3.
|
|
65
|
+
Application '${t}' installed successfully (no ability to launch).`)}var Yc=new db("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/");E()||Yc.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.");Yc.action(async n=>{try{await hb(n)}catch(e){console.error(ub(e.message)),process.exit(1)}});async function pb(n,e,t,r,o){let i=new en(e,n.rootDir),s=new ke(e,n.rootDir),a=new Set,c=new Set;for(let{moduleName:w,targetName:v}of t)for(let A of n.collectNonHarDependentModuleList(w))a.add(`${A}@${v}`),c.add(A);let l=[...a],d=go(n,l),h={type:"modules",modulesToBuild:l,moduleTasks:d};for(let w of c)Qi.generate(n.rootDir,w,r,e);await Rt(n.rootDir,()=>yo(i,s,r,o,h,n.rootDir),()=>console.log("Another build is already running for this project. Waiting for completion...")),console.log(`
|
|
66
|
+
`+Eo("Build completed successfully."))}async function fb(n,e,t,r,o){let i=new xt(t),s=te.from(t),a=r[0]?.moduleName||o[0];await Dp(n,e,t,i,s,a)}function mb(n,e){for(let{moduleName:t}of e){let r=n.getModuleType(t);if(r!=="entry"&&r!=="feature"&&r!=="shared")throw new Error(`Module '${t}' '${r}' is not runnable. Specify an entry or feature module.`)}}async function hb(n){let e=G.discover(process.cwd());console.warn(cs("Ensure the project source is trusted before proceeding."));let t=await I.new();if(n.skipBuild||t.assertJava(),n.hotreloadApply){await yb(n,e,t);return}if(n.hotreload){await gb(n,e,t);return}if(n.apply){await vb(n,e,t);return}await kp(n,e,t)}async function gb(n,e,t){if(n.hotreload==="stop"){await Cp(t,e);return}let o=Vc(e,n.module).map(zc),{moduleName:i,targetName:s}=o[0];Uc(n.module,i);let a=new xt(t),c=te.from(t),l=await ds(c,n.device),d=l.includes("127.0.0.1")||l.includes("localhost"),h=n.product||"default";e.validateProduct(h);let w=e.getBundleName(),v=Rp(e,o,n.ability);es.generate(e.rootDir,i,h,t);let A=new ke(t,e.rootDir);console.log(Eo("Ensuring hvigor daemon is running (via --sync --daemon, no hap build)...")),await A.ensureDaemonRunning();let ie=[`${i}@${h}`];for(let rt of e.collectNonHarDependentModuleList(i))ie.includes(`${rt}@${h}`)||ie.push(`${rt}@${h}`);console.log(Eo("Building hap + starting watch session (socket -> CommonBuild assembleHap --hot-reload-build --watch, kept open)..."));let $e=new mr(e.rootDir,t);await $e.startWatchSession({moduleSpecs:ie,productName:h});let nt=Pp(e,i,s,d,h);await Tp(a,l,w,nt,v,!!n.uninstall),console.log(Eo("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.")),$e.onSocketDisconnect(()=>{console.log("Daemon disconnected (likely via --hotreload stop). Exiting watch session."),process.exit(0)}),await new Promise(()=>{})}async function yb(n,e,t){let r=n.hotreloadApply;if(!r)throw new Error("hotreload-apply requires --hotreload-apply <fileName> (under .hvigor/)");let o=Vc(e,n.module),{moduleName:i}=zc(o[0]);Uc(n.module,i);let s=te.from(t),a=await ds(s,n.device),c=n.product||"default";e.validateProduct(c);let l=e.getBundleName();Ep(e,i,r);let d=[`${i}@${c}`],h=await bp({applyFileName:r,projectPath:e.rootDir,moduleName:i,productName:c,bundleName:l,toolProvider:t,targetDeviceId:a,moduleSpecs:d});if(!h.success)throw new Error(h.message)}function wb(n,e,t,r){let o=new Set;for(let{moduleName:i,targetName:s}of e)for(let a of n.collectNonHarDependentModuleList(i)){o.add(n.findArtifactPath(a,s,t,r));for(let c of n.findRemoteHspPaths(a,s,r))o.add(c)}return[...o]}async function kp(n,e,t){let r=Vc(e,n.module),o=r.map(zc),i=te.from(t);if(await Ap(n.device,i)){await fb(n,e,t,o,r);return}mb(e,o);let s=new xt(t),a=await ds(i,n.device),c=a.includes("127.0.0.1")||a.includes("localhost"),l=n.product||"default";e.validateProduct(l);let d=n.buildMode||"debug";n.skipBuild||await pb(e,t,o,l,d);let h=wb(e,o,c,l),w=e.getBundleName(),v=Rp(e,o,n.ability);await Tp(s,a,w,h,v,!!n.uninstall)}async function vb(n,e,t){let r=n.apply;if(!r)throw new Error("apply requires --apply <fileName> (under .hvigor/)");if(ls.basename(r)!==r)throw new Error(`apply file must be a plain file name (under .hvigor/), got: ${r}`);let o=ls.join(e.rootDir,".hvigor",r),i=te.from(t),s=await ds(i,n.device),a=n.product||"default";e.validateProduct(a);let c=e.getBundleName(),l=e.profile.modules.find(w=>e.getModuleType(w.name)==="entry")?.name,d=l?e.getMainAbility(l,n.ability):n.ability||"EntryAbility",h=new Zi(t,e.rootDir);try{await h.execute({applyFile:o,productName:a,targetDeviceId:s,bundleName:c,abilityName:d}),console.log(cs("[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(w){console.warn(cs(`[Apply] \u5931\u8D25\uFF1A${w.message}`)),console.warn(cs("[Apply] \u81EA\u52A8\u56DE\u9000\u5230\u5168\u91CF devecocli run..."))}await kp(n,e,t)}var xp=Yc;import{Command as Sb}from"commander";import{green as Np,red as Lp,cyan as Jc}from"colorette";import{execa as Op}from"execa";function bb(){return"stable"}function Eb(){return"@deveco-test/hmos-deveco-cli"}function Pb(){return"0.3.4"}var Cb=new Sb("update").description("Update deveco-cli to latest").action(async()=>{let n=Eb(),e=Pb(),t=bb();console.log(Jc("Checking for updates..."));try{let{stdout:r}=await Op("npm",["view",n,`dist-tags.${t}`]),o=r.trim();if(!o||o===e){console.log(Np(`
|
|
67
67
|
${n} is already up to date (v${e}, tag: ${t})`));return}console.log(Jc(`
|
|
68
68
|
New version found: ${o} (current: ${e})`)),console.log(Jc(`Updating ${n}...`)),await Op("npm",["install","-g",`${n}@${t}`],{stdio:"inherit"}),console.log(`
|
|
69
69
|
`+Np(`${n} updated successfully to version ${o}.`))}catch(r){let o=r;console.error(Lp(`Failed to update ${n}`)),o.message&&console.error(Lp(o.message)),process.exit(1)}}),Mp=Cb;import{Command as eE}from"commander";import{execa as ps}from"execa";function Se(n){return n.normalize("NFKC").replace(/\s+/g," ").trim()}import{spawn as Ib}from"child_process";var Ab=2500;function Db(n,e,t,r,o,i){n.once("exit",s=>{if(i())return;clearTimeout(e);let a=t();s===0||s===null?r():o(a||`Emulator process exited with code ${s}`)})}function Rb(n,e,t,r){let o=!1,i=()=>o,s=()=>Buffer.concat(e).toString("utf8").trim(),a=()=>{o||(o=!0,clearTimeout(l),n.removeAllListeners(),n.stderr?.removeAllListeners(),n.stderr?.destroy(),n.unref(),t())},c=d=>{if(!o){o=!0,clearTimeout(l),n.removeAllListeners(),n.stderr?.removeAllListeners();try{n.kill()}catch{}r(new Error(d))}},l=setTimeout(a,Ab);n.once("error",d=>c(d.message)),Db(n,l,s,a,c,i)}function _p(n,e,t){return m(`Spawning emulator: ${n} ${t.join(" ")}`),new Promise((r,o)=>{let i=[],s=Ib(n,t,{detached:!0,stdio:["ignore","ignore","pipe"],env:{...process.env,DEVECO_SDK_HOME:e},windowsHide:!0});s.stderr?.on("data",a=>i.push(a)),Rb(s,i,r,o)})}import*as gr from"path";function Tb(n){let e=new Set,t=[];for(let r of n){let o=JSON.stringify(r);e.has(o)||(e.add(o),t.push(r))}return t}function kb(n){let e=n.instancePath?.trim();if(e)return gr.dirname(gr.normalize(e)).replace(/\\/g,"/");let t=n.path?.trim();return t?gr.dirname(gr.normalize(t)).replace(/\\/g,"/"):""}function xb(n){let e=[];return n&&e.push(["-imageRoot",n]),e.push([]),e}function Fp(n,e){return e?[...n,"-bootmode",e]:n}function Nb(n,e,t){let r=[Fp(["-start",n],t)],o=kb(e);if(o)for(let i of xb(e.imageRoot))r.push(Fp(["-hvd",n,"-path",o,...i],t));return Tb(r)}async function jp(n,e,t,r){let o=new Error("No start strategy ran"),i=Nb(n,e,r);for(let s of i)try{return await t(s),{ok:!0}}catch(a){o=a}return{ok:!1,lastError:o}}async function Kc(n){return(await te.withHdcPath(n).listDevices()).map(t=>t.serial).filter(jn)}async function Xc(n){let e=await Kc(n);return e.length===0?[]:(await Promise.all(e.map(r=>Xi(n,r,"ohos.qemu.hvd.name")))).filter(r=>!!r)}async function Hp(n,e){return(await Xc(n)).includes(e)}import*as wr from"path";import{existsSync as Lb,statSync as Ob}from"fs";function yr(n,e){for(let t of e){let r=n[t];if(typeof r=="string"&&r.trim())return r.trim()}return""}function Mb(n){let e=yr(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 o=t.toLowerCase();if(o.includes("instance")&&(o.includes("path")||o.includes("dir"))||o==="deployedpath")return r.trim()}return""}function _b(n){return yr(n,["uuid","UUID","Uuid","instanceUuid","instance_uuid","InstanceUuid"])}function Fb(n){let e=n.find(r=>r.instancePath?.trim());if(!e?.instancePath?.trim())return;let t=wr.dirname(wr.normalize(e.instancePath));for(let r of n){if(r.instancePath?.trim())continue;let o=wr.join(t,r.name);Lb(o)&&Ob(o).isDirectory()&&(r.instancePath=o.replace(/\\/g,"/"))}}function jb(n){try{let e=JSON.parse(n);return Array.isArray(e)?e.map(t=>{let r=_b(t),o=yr(t,["deviceType","DeviceType","devicetype"]),i=yr(t,["os.osVersion","osVersion","OsVersion","OSVersion"]);return{name:t.name||t.Name||"",isRunning:t.isRunning===!0||String(t.isRunning).toLowerCase()==="true",instancePath:Mb(t),path:yr(t,["path","Path","hvdPath","hvd_path"]),imageRoot:yr(t,["imageRoot","image_root","ImageRoot"]),uuid:r||void 0,deviceType:o||void 0,osVersion:i||void 0}}).filter(t=>t.name):null}catch{return null}}function Hb(n){let e=[],t=/^(name|isrunning|instancepath|path|imageroot|devicetype|os\.osversion)\s*:\s*(.+)/gim,r=null,o;for(;(o=t.exec(n))!==null;){let[,i,s]=o;if(i.toLowerCase()==="name")r&&e.push(r),r={name:s.trim()};else if(r){let a=i.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 $p(n){let t=jb(n)??Hb(n);return Fb(t),t}function Zc(n,e){for(let t of e){let r=n[t];if(typeof r=="string"&&r.trim())return r.trim()}return""}function $b(n){let e=n.downloaded??n.Downloaded;return e===!0||String(e).toLowerCase()==="true"}function Ub(n){if(!$b(n))return null;let e=Zc(n,["osVersion","OsVersion","OSVersion"]),t=Zc(n,["SoftWareVersion","SoftwareVersion","softwareVersion"]),r=Zc(n,["deviceType","DeviceType"]);return!e&&!t?null:{osVersion:e,softwareVersion:t,deviceType:r}}function us(n){let e=n.trim();if(!e)return[];try{let t=JSON.parse(e);if(!Array.isArray(t))return[];let r=[];for(let o of t){if(!o||typeof o!="object")continue;let i=Ub(o);i&&r.push(i)}return r}catch{return[]}}function Up(n){let t=us(n).map(r=>r.osVersion).filter(Boolean);return[...new Set(t)]}var Bp=/no images are available/i,Bb="7.0.0",Wb={foldable:["open","half-open","close"],"2in1_foldable":["open","vertical-open","half-open","close"],triplefold:["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"]};function ct(n){return n.normalize("NFKC").trim().toLowerCase()}function Gb(n,e){let t=n.deviceType?.trim(),r=t?Wb[ct(t)]:void 0;if(!r)throw new Error(`Fold-state control is not supported for emulator "${n.name}" (device type: ${t||"unknown"}).`);if(!r.includes(e))throw new Error(`Fold state "${e}" is not supported by emulator "${n.name}" (device type: ${t}). Available states: ${r.join(", ")}.`)}function qb(n){let e=n.message||"";return Bp.test(e)}function zb(n){return n.normalize("NFKC").match(/(\d+(?:\.\d+){1,3})/)?.[1]}function Po(n,e){return`${n} ${e.join(" ")}`.trim()}function Vb(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 vr=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 m(`Executing: ${Po(this.emulatorPath,e)}`),ps(this.emulatorPath,e,{stdio:["ignore","pipe","pipe"],env:{...process.env,DEVECO_SDK_HOME:this.sdkPath}})}executeEmulatorDetached(e){return _p(this.emulatorPath,this.sdkPath,e)}async listEmulators(){let{stdout:e}=await this.executeEmulator(["-list","-details"]);return $p(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),o=t.find(a=>Se(a.name)===r);if(!o)throw new Error(`Emulator "${e}" not found.`);let i=o.name;if(await this.isAlreadyRunning(i,o))return"already-running";await this.assertSystemImageAvailable(o);let s=await jp(i,o,a=>this.executeEmulatorDetached(a),"snapshot");if(s.ok)return"started";if(await this.isAlreadyRunning(i))return"already-running";throw new Error(`Unable to start emulator "${e}". All methods failed.
|
|
@@ -73,7 +73,7 @@ Last error: ${s.lastError.message||"unknown"}`)}async isAlreadyRunning(e,t){retu
|
|
|
73
73
|
`).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,t){let r=await this.listEmulators(),o=Se(e),i=r.find(s=>Se(s.name)===o);if(i)if(t)await this.deleteVirtualDevice(i.name);else throw new Error(`Emulator "${e}" already exists. Use \`--force\` to overwrite.`);return o}async createVirtualDevice(e){let t=await this.checkExistingVirtualDevice(e.name,e.force),r=["-create",e.name,"-deviceType",e.deviceType,"-osVersion",e.osVersion];if(await this.runEmulatorChecked(r,{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(`
|
|
74
74
|
`)}),!await this.waitForEmulatorPresenceByList(t))throw new Error(`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.`)}async waitForEmulatorPresenceByList(e,t=1e4,r=500){let o=Date.now()+t;for(;Date.now()<o;){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),o=t.find(s=>Se(s.name)===r);if(!o)throw new Error(`Emulator "${e}" not found.`);let i=o.name;if(o.isRunning===!0||await this.isAlreadyRunning(i,o))throw new Error(`Failed to delete device: ${i}
|
|
75
75
|
The device may be running.`);return await this.runEmulatorChecked(["-delete",i,"-force"],{printOutputOnSuccess:!1}),i}};import{red as el,yellow as qp,gray as zp}from"colorette";import tE from"ora";import{red as Yb}from"colorette";function fs(n,e){n?n.fail(e):console.error(Yb(e)),process.exit(1)}import{green as Jb}from"colorette";var Kb=[[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]],Xb=[[0,31],[127,159],[768,879],[6832,6911],[7616,7679],[8203,8207],[8400,8447],[65024,65039],[65056,65071],[8205,8205]],Zb=new RegExp("\x1B\\[([0-9;]*)[a-zA-Z]","g");function Wp(n,e){for(let[t,r]of e)if(n>=t&&n<=r)return!0;return!1}function Qc(n){let e=n.replace(Zb,""),t=0,r=0;for(;r<e.length;){let o=e.codePointAt(r);if(o===void 0)break;Wp(o,Xb)||(Wp(o,Kb)?t+=2:t+=1),r+=o>65535?2:1}return t}function Gp(n,e){let t=Qc(n);return n+" ".repeat(Math.max(0,e-t))}function Qb(n,e){return n.map((t,r)=>{let o=Qc(t);for(let i of e){let s=i.cells[r]??"";o=Math.max(o,Qc(s))}return o})}function Lt(n,e){let t=Qb(n,e),r=[];r.push(n.map((o,i)=>Gp(o,t[i])).join(" ")),r.push(t.map(o=>"-".repeat(o)).join(" "));for(let o of e){let i=o.cells.map((s,a)=>Gp(s??"",t[a])).join(" ").trimEnd();r.push(o.highlight?Jb(i):i)}return r.join(`
|
|
76
|
-
`)}function nE(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 rE=["Name","Serial","Kind","Device Type"];function oE(n){return{cells:[n.name??n.serial,n.serial,n.isEmulator?"emulator":"device",n.deviceType??"-"],highlight:!0}}function iE(n,e){return n.isEmulator!==e.isEmulator?n.isEmulator?1:-1:(n.name??n.serial).localeCompare(e.name??e.serial)}function sE(){console.log(qp(" No active devices.")),console.log(zp(
|
|
76
|
+
`)}function nE(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 rE=["Name","Serial","Kind","Device Type"];function oE(n){return{cells:[n.name??n.serial,n.serial,n.isEmulator?"emulator":"device",n.deviceType??"-"],highlight:!0}}function iE(n,e){return n.isEmulator!==e.isEmulator?n.isEmulator?1:-1:(n.name??n.serial).localeCompare(e.name??e.serial)}function sE(){console.log(qp(" No active devices.")),console.log(zp(E()?" Connect a USB device with debugging enabled.":" Connect a USB device with debugging enabled, or start an emulator with `devecocli emulator start <name>`."))}function aE(n){let t=[...n].sort(iE).map(oE);console.log(Lt(rE,t))}async function cE(n,e){if(E()||!n.some(o=>o.isEmulator)||!e.emulatorPath)return;let r=await vr.from(e).getDeviceTypeByName();nE(n,r)}async function lE(n,e,t){try{let r=await n.getConnectedEntries();await cE(r,e),t?.stop(),r.length===0?sE():aE(r)}catch(r){fs(t,`Failed to list devices: ${r.message}`)}}async function dE(n,e){let t=await n.listDevices();if(!(t.length<2)){console.error(el("Multiple devices connected. Specify a device with:"));for(let r of t){let o=await n.getDeviceName(r.serial);console.error(zp(` ${e} -t ${r.serial} # ${o}`))}process.exit(1)}}async function uE(n,e){try{e||await dE(n,"devecocli device view");let t=await n.listDevices(),r=await n.getDeviceInfo(t,e);r||(console.log(qp("No connected device found.")),process.exit(1));let o=await n.getDeviceDetail(r.serial),i=await n.getDeviceName(r.serial);console.log(` Serial: ${r.serial}`),console.log(` Device Name: ${i}`),o.deviceType&&console.log(` Device Type: ${o.deviceType}`),o.osVersion&&console.log(` OS Version: ${o.osVersion}`)}catch(t){console.error(el(`Failed to show device details: ${t.message}`)),process.exit(1)}}async function Vp(){try{let n=await I.new();return{manager:te.from(n),toolProvider:n}}catch(n){console.error(el(`Failed to initialize device manager: ${n.message}`)),process.exit(1);return}}var tl=new eE("device").description("Manage connected devices");tl.command("list").description("List all connected devices").action(async()=>{let{manager:n,toolProvider:e}=await Vp(),t=tE({text:"Querying connected devices\u2026",color:"cyan"}).start();await lE(n,e,t)});tl.command("view").description("Show detailed device information").option("-t, --target <serialOrName>","Target device serial or device name").action(async n=>{let{manager:e}=await Vp();await uE(e,n.target)});var Yp=tl;import{Argument as cl,Command as ll,Option as Do}from"commander";import{green as Ro,cyan as br,red as Pe,yellow as St,gray as Ao}from"colorette";import DE from"ora";import pE from"readline/promises";import{execa as Kp}from"execa";import*as rn from"fs/promises";import*as rl from"os";import*as Bn from"path";var nl=`1/4:\r
|
|
77
77
|
---------------------------------------\r
|
|
78
78
|
Statement About HarmonyOS and Privacy\r
|
|
79
79
|
\r
|
|
@@ -1278,7 +1278,7 @@ ${St("Tip: ")}${Ao("Unquoted --os-version values with spaces/parentheses are spl
|
|
|
1278
1278
|
${br('devecocli emulator create 123 --device-type phone --os-version="HarmonyOS 6.0.1(21)"')}
|
|
1279
1279
|
`)}});bf.action(async(n,e)=>{try{OE(n),ME(e.osVersion);let{manager:t}=await Xe(),r=await t.listDownloadedImageOsVersions();_E(e.osVersion,r),console.log(br(`Creating emulator "${n}"...`)),await t.createVirtualDevice({name:n,deviceType:e.deviceType,osVersion:e.osVersion,force:e.force===!0}),console.log(Ro(`Emulator "${n}" created successfully.`))}catch(t){console.error(Pe(`${t.message}`)),process.exit(1)}});me.command("delete <name>").description("Delete a local emulator instance").action(async n=>{let{manager:e}=await Xe();console.log(br(`Deleting emulator "${n}"...`));try{let t=await e.deleteVirtualDevice(n);console.log(Ro(`Emulator "${t}" deleted successfully.`))}catch(t){let r=t;console.error(Pe(r.message)),r.stdout&&console.error(Ao(r.stdout)),r.stderr&&console.error(Ao(r.stderr)),process.exit(1)}});var Ef=me;import{Command as IP}from"commander";import{red as gl,cyan as jt}from"colorette";import*as Wf from"readline";import*as Uf from"crypto";import*as Pf from"http";import*as Cf from"crypto";import{URL as sP}from"url";var vs=class{server=null;port=0;clientSecret;callbackPath="/callback";resolveCallback=null;rejectCallback=null;timeoutId=null;baseUrl;successRedirectUrl;failedRedirectUrl;constructor(e,t,r,o){this.clientSecret=e,this.baseUrl=t,this.successRedirectUrl=r,this.failedRedirectUrl=o}async start(){return new Promise((e,t)=>{let r=Pf.createServer((o,i)=>{this.handleRequest(o,i)});r.keepAliveTimeout=1,r.on("error",o=>{t(new Error("Failed to start local auth server",{cause:o}))}),r.listen(0,"127.0.0.1",()=>{this.server=r;let o=r.address();this.port=o.port,e()})})}async waitForCallback(e=3e4){return new Promise((t,r)=>{this.resolveCallback=o=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),t(o)},this.rejectCallback=o=>{this.timeoutId&&(clearTimeout(this.timeoutId),this.timeoutId=null),r(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 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 i=new sP(e.url??"",`http://${r}`);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,r){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,r,o)})}handleCallbackRequest(e,t,r,o){try{let i=this.parseParams(r,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"),r=Buffer.from(this.clientSecret,"utf8");return t.length===r.length&&Cf.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 on from"path";import{homedir as fP}from"os";var Mt={};iv(Mt,{LocalCrypto:()=>Mt,decryptForLocalStorage:()=>dP,decryptForLocalStorageFromDirectory:()=>uP,encryptForLocalStorage:()=>lP,isEncryptedBlob:()=>pP});import*as Y from"fs";import*as Ie from"path";import*as xe from"crypto";import*as Af from"os";import{homedir as Df}from"os";var Ce=class extends Error{constructor(e){super(e),this.name="DefinedError"}};var To=Nn.ALGORITHM,Rf=Nn.IV_LENGTH,ko=Nn.KEY_LENGTH,xo=Nn.KEY_LENGTH,Wn=Nn.KEK_VERSIONS,Ss=process.env.DEVECO_CLI_DATA_DIR||Ie.join(Df(),ve.CONFIG_DIR_NAME,ve.APP_NAME),bs=Ie.join(Df(),".local","share",ve.APP_NAME,"keys"),Er=Ie.join(Ss,ve.KEY_FILE_NAME);function If(n){return Af.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 ul(n){return Ie.join(bs,`${n}.bin`)}function Tf(){if(!Y.existsSync(Ss))try{Y.mkdirSync(Ss,{recursive:!0,mode:448})}catch(n){throw n.code==="EACCES"?new Ce(If(Ss)):n}if(!Y.existsSync(bs))try{Y.mkdirSync(bs,{recursive:!0,mode:448})}catch(n){throw n.code==="EACCES"?new Ce(If(Ie.dirname(bs))):n}}function kf(){Tf();for(let n of Wn){let e=ul(n);Y.existsSync(e)||Y.writeFileSync(e,xe.randomBytes(ko),{mode:384})}}function xf(n){if(!Wn.includes(n))throw new Error(`Invalid kekId: ${n}`);kf();let e=ul(n),t=Y.readFileSync(e);if(t.length===ko)return t;let r=xe.randomBytes(ko);return Y.writeFileSync(e,r,{mode:384}),r}function pl(n,e){let t=xe.randomBytes(Rf),r=xf(e),o=xe.createCipheriv(To,r,t),i=Buffer.concat([o.update(n),o.final()]),s=o.getAuthTag();return{version:1,algorithm:To,kekId:e,encryptedDek:i.toString("base64"),iv:t.toString("base64"),authTag:s.toString("base64"),timeStamp:Date.now()}}function Nf(n,e){return Lf(Buffer.from(n.encryptedDek,"base64"),e,n.iv,n.authTag)}function Lf(n,e,t,r){let o=xe.createDecipheriv(To,e,Buffer.from(t,"base64"));return o.setAuthTag(Buffer.from(r,"base64")),Buffer.concat([o.update(n),o.final()])}function Of(n,e){return Lf(Buffer.from(n.ciphertext,"base64"),e,n.iv,n.authTag).toString("utf8")}function aP(){if(kf(),Y.existsSync(Er))return;let n=xe.randomBytes(xo),e=pl(n,Wn[0]);Y.writeFileSync(Er,JSON.stringify(e,null,2),{mode:384})}function Mf(){aP();let n=JSON.parse(Y.readFileSync(Er,"utf8")),e=Nf(n,xf(n.kekId));if(e.length===xo)return e;let t=xe.randomBytes(xo),r=pl(t,Wn[0]);return Y.writeFileSync(Er,JSON.stringify(r,null,2),{mode:384}),t}function cP(){Tf();for(let t of Wn){let r=ul(t);Y.existsSync(r)||Y.writeFileSync(r,xe.randomBytes(ko),{mode:384})}if(Y.existsSync(Er))return;let n=xe.randomBytes(xo),e=pl(n,Wn[0]);Y.writeFileSync(Er,JSON.stringify(e,null,2),{mode:384})}function lP(n){let e=Mf(),t=xe.randomBytes(Rf),r=xe.createCipheriv(To,e,t),o=Buffer.concat([r.update(n,"utf8"),r.final()]),i=r.getAuthTag();return{version:1,algorithm:To,ciphertext:o.toString("base64"),iv:t.toString("base64"),authTag:i.toString("base64"),timeStamp:Date.now()}}function dP(n){try{return Of(n,Mf())}catch{throw cP(),new Error("Failed to decrypt local ciphertext")}}function uP(n,e){let t=Ie.join(e,ve.KEY_FILE_NAME),r=JSON.parse(Y.readFileSync(t,"utf8"));if(!Wn.includes(r.kekId))throw new Error(`Invalid kekId: ${r.kekId}`);let o=Ie.join(e,"keys",`${r.kekId}.bin`),i=Ie.resolve(o),s=Ie.resolve(Ie.join(e,"keys"));if(!i.startsWith(s+Ie.sep)&&i!==s)throw new Error("kekId resolves outside the keys directory");let a=Y.readFileSync(i);if(a.length!==ko)throw new Error("Invalid external root key");let c=Nf(r,a);if(c.length!==xo)throw new Error("Invalid external data encryption key");return Of(n,c)}function pP(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 lt(){return process.env.DEVECO_CLI_AUTH_SOURCE===ve.AUTH_SOURCE_DEVECO_CODE}var Es=class{getLocalTokenFilePath(){let e=process.env.DEVECO_CLI_DATA_DIR||on.join(fP(),ve.CONFIG_DIR_NAME,ve.APP_NAME);return on.join(e,ve.TOKEN_FILE_NAME)}ensureConfigDir(){let e=on.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=Mt.encryptForLocalStorage(e);this.ensureConfigDir();let r=this.getLocalTokenFilePath();Ne.writeFileSync(r,JSON.stringify(t,null,2),{mode:384})}async loadJwtToken(){return lt()?this.loadDevecoCodeToken():this.loadLocalJwtToken()}loadDevecoCodeToken(){if(!lt())return null;let e=process.env.DEVECO_CODE_AUTH_DIR?.trim();if(!e)return null;let t=on.resolve(e);try{let r=on.join(t,ve.TOKEN_FILE_NAME);if(!Ne.existsSync(r))return null;let o=JSON.parse(Ne.readFileSync(r,"utf8"));return Mt.isEncryptedBlob(o)?Mt.decryptForLocalStorageFromDirectory(o,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 Mt.isEncryptedBlob(t)?Mt.decryptForLocalStorage(t):null}catch(t){let r=t.code;return r==="EACCES"||r==="EPERM"||r==="ENOENT"||await this.clearToken(),null}}async clearToken(){if(lt()){m("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})}}},_t=new Es;import{exec as mP}from"child_process";import{promisify as hP}from"util";var gP=hP(mP);async function _f(n){let e=process.platform,t;switch(e){case"win32":t=`start "" "${n}"`;break;case"darwin":t=`open "${n}"`;break;case"openharmony":console.log("\u65E0\u6CD5\u81EA\u52A8\u6253\u5F00\u6D4F\u89C8\u5668\uFF0C\u8BF7\u624B\u52A8\u590D\u5236\u4EE5\u4E0B\u767B\u5F55\u94FE\u63A5\u5230\u6D4F\u89C8\u5668\u6253\u5F00\uFF1A"),console.log(n);return;default:t=`xdg-open "${n}"`;break}try{await gP(t)}catch(r){throw new Error("Failed to open browser",{cause:r})}}import yP from"axios";import{getProxyForUrl as wP}from"proxy-from-env";function vP(n){let e=new URL(n);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 fl=class{client;constructor(){let e={timeout:lo.HTTP_TIMEOUT_MS,headers:{"User-Agent":Oi.USER_AGENT,"accept-language":Oi.ACCEPT_LANGUAGE},transformResponse:[t=>t]};this.client=yP.create(e),this.client.interceptors.request.use(t=>{let r=wP(t.url??"");return t.proxy=r?vP(r):!1,t}),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}
|
|
1280
1280
|
${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){return JSON.parse(e.data)}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}),o=Buffer.from(r.data),i=o.toString("utf8");return{statusCode:r.status,statusText:r.statusText??"",buffer:o,body:i}}},x=new fl;function Ff(n){let e=n.split(".");return e.length===3&&e.every(t=>t.length>0)}var Ft={CHINA:"CN",RUSSIA:"RU",SINGAPORE:"SG",EUROPE:"EU"},Gn={CHINA:"zh_CN",RUSSIA:"ru_RU",EUROPE:"de_DE"},Ps={CHINA:"1",SINGAPORE:"5",EUROPE:"7",RUSSIA:"8"},SP={[Ft.CHINA]:Gn.CHINA,[Ft.RUSSIA]:Gn.RUSSIA,[Ft.EUROPE]:Gn.EUROPE,[Ft.SINGAPORE]:Gn.CHINA},bP={[Ps.CHINA]:Ft.CHINA,[Ps.SINGAPORE]:Ft.SINGAPORE,[Ps.EUROPE]:Ft.EUROPE,[Ps.RUSSIA]:Ft.RUSSIA};function jf(n){return SP[n]??Gn.CHINA}function Hf(n){return bP[n]??Ft.CHINA}var ml=class{async getJwtToken(e,t,r,o,i){let s=e.split("&")[0],a=Hf(t),c={tempToken:s,site:a,version:ve.API_VERSION,appid:i},l=`${r}/${o}`,d=await x.get(l,{params:c});if(d.statusCode!==200)throw new Error(`Failed to get jwtToken: status=${d.statusCode}`);let h=d.data.trim();if(!Ff(h))throw new Error("Invalid jwtToken format");return h}},$f=new ml;var hl=class{async checkJwtToken(e,t,r=!1){let o={refresh:String(r),jwtToken:e},i=`${t}/${q.JWT_TOKEN_CHECK_PATH}`,s=await x.get(i,{headers:o});if(s.statusCode!==200)throw new Error(`Failed to check jwtToken: ${s.statusCode}`);return x.parseJson(s)}async refreshToken(e){let t=await _t.loadJwtToken();return t?this.refreshTokenWithToken(t,e):null}async refreshTokenWithToken(e,t){try{let r={refresh:"true",jwtToken:e},o=`${t}/${q.JWT_TOKEN_CHECK_PATH}`,i=await x.get(o,{headers:r});if(i.statusCode!==200)return null;let s=x.parseJson(i);return!s.status||!s.userInfo?null:{accessToken:s.userInfo.accessToken,refreshToken:s.userInfo.refreshToken??""}}catch(r){let o=r;return console.error(`Failed to refresh token: ${o.code??""} ${o.message??""}`),null}}async getUserInfoFromJwt(e,t,r=!1){let o=await this.checkJwtToken(e,t,r);return!o.status||!o.userInfo||!o.userInfo.accessToken?(m("jwtToken invalid."),await _t.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:jf(o.userInfo.nationalCode),isRealName:String(o.userInfo.realName)==="true"}}async fetchUserInfo(e,t){let r=await _t.loadJwtToken();return r?this.getUserInfoFromJwt(r,e,t):null}},Pr=new hl;var Cs=class{config;server=null;constructor(e){this.config={...uo,...e}}updateConfig(e){this.config={...this.config,...e}}getConfig(){return{...this.config}}async login(){try{m(`Login started, isDevecoCodeAuth: ${lt()}`);let e=this.generateClientSecret();this.server=new vs(e,q.CN_LOGIN_URL,this.config.successRedirectUrl,this.config.failedRedirectUrl),await this.server.start(),m(`Local auth server started on port ${this.server.getPort()}`),await this.openLoginPage(this.server.getPort(),e),m("Browser opened for authentication");let t=await this.server.waitForCallback(this.config.timeout);if(m(`Callback received: siteId=${t.siteId}`),t.siteId!=="1")throw new Ce("Non-China accounts are not supported.");let r=await $f.getJwtToken(t.tempToken,t.siteId,q.CN_LOGIN_URL,this.config.tempTokenCheckUrl,this.config.appId);m("JWT token received");let o=await Pr.getUserInfoFromJwt(r,q.CN_LOGIN_URL);if(!o)throw new Ce("Login failed: failed to get user info");return m(`User info received: ${o.userName}`),await _t.saveJwtToken(r),m("JWT token saved"),o}finally{this.server&&(await this.server.stop(),this.server=null)}}async isLoggedIn(){return await this.getUserInfo(!0)!==null}async logout(){let e=await _t.loadJwtToken();if(!e)return!1;let r=`${q.CN_LOGIN_URL}/${this.config.logoutUrl}?jwtToken=${e}`;try{await x.post(r,{timeout:5e3})}catch{m("Logout: server notification failed, local token cleared")}finally{await _t.clearToken()}return!0}async getUserInfo(e=!0){return Pr.fetchUserInfo(q.CN_LOGIN_URL,e)}generateClientSecret(){return Uf.randomUUID().replace(/-/g,"")}async openLoginPage(e,t){let o=`${q.CN_LOGIN_URL}/${this.config.authUrl}?port=${e}&appid=${this.config.appId}&code=${t}`;await _f(o)}async refreshToken(){return Pr.refreshToken(q.CN_LOGIN_URL)}},Ae=new Cs;function PP(){return lt()?"Not logged in. Please login via DevEco Code first.":"Please run `devecocli auth login` first."}function CP(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 Is=class{config;constructor(e){this.config={...uo,...e}}updateConfig(e){this.config={...this.config,...e}}async listTeams(){let e=await Pr.fetchUserInfo(q.CN_LOGIN_URL,!0);if(!e)throw new Ce(PP());let t=await this.fetchTeamList(e.accessToken,e.userId),r=CP(t);return{userId:e.userId,teamList:r}}async fetchTeamList(e,t){let r=this.config.agcTeamListUrl,o;try{o=await x.get(r,{headers:{oauth2Token:e,uid:t,source:"cli",lang:Gn.CHINA},timeout:15e3})}catch(i){let s=i.message;throw s.includes("401")?new Ce("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}},Bf=new Is;async function sn(){return Bf.listTeams()}function AP(n){if(n.length===0)return jt("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))),o=s=>s.map((a,c)=>a.padEnd(r[c])).join(" "),i=r.map(s=>"-".repeat(s)).join(" ");return[o(e),i,...t.map(o)].join(`
|
|
1281
|
-
`)}function DP(){return new Promise(n=>{let e=Wf.createInterface({input:process.stdin,output:process.stdout});e.question("",()=>{e.close(),n()})})}var No=new IP("auth").description("Authentication commands (login, logout, status, team)");No.command("login").description("Log in to your Huawei Developer account").action(async()=>{if(lt()){console.log(gl("Login is managed by DevEco Code. Login from DevEco Code instead."));return}try{let n=await Ae.getUserInfo();if(n){console.log(jt(`Already logged in, User Name:${n.userName}`));return}console.log(jt("Starting login process...")),console.log(jt("Press Enter to open browser for login...")),await DP();let e=await Ae.login();console.log(jt(`Login successful. Logged in as ${e.userName}.`))}catch(n){throw n instanceof Ce||(n instanceof Error?n.message:String(n)).includes("Network connection failed")?n:new Error("Login failed",{cause:n})}});No.command("logout").description("Log out of your Huawei Developer account").action(async()=>{if(lt()){console.log(gl("Login is managed by DevEco Code. Log out from DevEco Code instead."));return}try{let n=await Ae.logout();console.log(n?jt("Logout successful"):jt("Already logged out."))}catch(n){throw new Error("Logout failed",{cause:n})}});No.command("status").description("Show the currently logged-in user").action(async()=>{let n=await Ae.getUserInfo();if(!n){console.log(jt("Not logged in"));return}console.log(jt(`Current user: ${n.userName}`))});var RP=No.command("team").description("Team-related commands");RP.command("list").description("List team accounts the current user has joined").action(async()=>{try{let n=await sn();console.log(AP(n.teamList))}catch(n){if(n instanceof Ce){console.log(gl(n.message));return}throw n}});var Gf=No;import{Command as UP}from"commander";import{green as BP,red as Fo,cyan as pm,yellow as fm,dim as mm}from"colorette";import WP from"p-limit";import TP from"ora";var dt=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 qf from"fs";import*as zf from"path";var Vf=["DevEco"];async function As(){let n=await x.get(ot.TAGS_API_URL),t=Ds(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 kP(n){let e=[],t=ot.DEFAULT_PAGE_SIZE,r=1;for(;;){let o=await x.post(ot.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:r,pageSize:t,tagIds:[n]}}),i=Ds(o,"Skills API");if(e.push(...i.data.list),i.data.list.length<t)break;r++}return e}async function yl(n){let e=new Map,t=n.map(o=>kP(o)),r=await Promise.all(t);for(let o of r)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=>!Vf.includes(i.name)))}async function xP(n,e){let t=await x.post(ot.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:1,pageSize:ot.DEFAULT_PAGE_SIZE,keyword:n,tagIds:[e]}});return Ds(t,"Skills API").data.list}async function wl(n,e){let t=new Map,r=e.map(i=>xP(n,i)),o=await Promise.all(r);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=>!Vf.includes(s.name)))}function Yf(n){let e=[],t=At();for(let[,r]of Object.entries(t)){let o=zf.join(r.path,n);qf.existsSync(o)&&e.push(r.displayName)}return e.sort()}function Ds(n,e){if(n.statusCode!==200)throw new Error(`${e} Request failed: HTTP ${n.statusCode}`);let t=x.parseJson(n);if(t.code!==ot.SUCCESS_CODE)throw new Error(`${e} Error returned: ${t.code} - ${t.message}`);return t}async function Jf(n){let e=`${ot.SKILL_API_BASE}/${n}/checksum`,t=await x.get(e);return Ds(t,"Checksum API").data}import NP from"adm-zip";import LP from"crypto";import Xf from"fs";import re from"path";import{fileURLToPath as OP}from"url";import{red as MP}from"colorette";var Ht=Xf.promises;function vl(n){if(!/^[A-Za-z0-9._-]+$/.test(n)||n==="."||n==="..")throw new Error(`Unsafe skill name: ${JSON.stringify(n)}`)}function Kf(n,e){let t=re.resolve(e),r=re.resolve(n),o=re.relative(r,t);if(o.startsWith("..")||re.isAbsolute(o))throw new Error(`Path traversal detected: ${e}.`)}function Sl(n){return re.isAbsolute(n)?n:re.resolve(process.cwd(),n)}function _P(n){return LP.createHash("sha256").update(n).digest("hex")}async function FP(n,e){if(n.length!==e.size)throw new Error("Skill zip integrity verification failed: Size mismatch");let r=_P(n),o=e.sha256.toLowerCase();if(r!==o)throw new Error("Skill zip integrity verification failed: SHA256 mismatch")}async function Zf(n){let e=`${ot.SKILL_API_BASE}/${n}/install?format=zip`,t=await x.getBinary(e),r=await Jf(n);return await FP(t,r),t}async function jP(n,e,t){vl(t);let r=new NP(n),o=r.getEntries();try{await Ht.stat(e)}catch{await Ht.mkdir(e,{recursive:!0})}let i=re.join(e,t);Kf(e,i);for(let s of o){let a=re.join(i,s.entryName);Kf(i,a)}r.extractAllTo(i,!0)}async function bl(n){let e=At();if(!e[n])throw new Error(`Invalid agent: ${n}, Valid options are: ${Object.keys(e).join(", ")}`);let r=de[n];try{return await Ht.access(r),!0}catch{return!1}}function El(n){return At()[n].path}function Pl(n,e){let r=At()[e],o="projectPath"in r?r.projectPath:re.join("."+e,"skills");return re.join(n,o)}async function HP(n,e,t){vl(e);let r=re.join(n,e);try{if(await Ht.access(r),t)await Ht.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 Cl(n,e,t){await jP(n,e,t),console.log(`Skill ${t} installed to ${re.join(e,t)}.`)}async function Il(n,e,t){let r=re.join(e,t);await Ht.mkdir(r,{recursive:!0});let o=re.join(r,re.basename(n));await Ht.copyFile(n,o),console.log(`Skill ${t} installed to ${r}.`)}function Qf(n,e,t=""){let r=e instanceof Error?e.message:t;return console.log(MP(`Faild to exute operation for skill "${n}": ${r}`)),{success:!1,error:r}}async function Cr(n,e,t,r){try{let o=await e(),{shouldSkip:i}=await HP(o,n,r);return i?{success:!0,skipped:!0}:(await t(o),{success:!0})}catch(o){return Qf(n,o,"Installation failed")}}async function Al(n,e){try{vl(n);let t=await e(),r=re.join(t,n);try{await Ht.access(r)}catch{return console.log(`Skill ${n} not found in ${t}`),{success:!0,skipped:!0}}return await Ht.rm(r,{recursive:!0,force:!0}),console.log(`Skill ${n} removed from ${r}.`),{success:!0}}catch(t){return Qf(n,t,"Removal failed")}}async function em(n,e,t,r=!1){return Cr(n,()=>El(e),o=>Cl(t,o,n),r)}async function tm(n,e,t,r=!1){return Cr(n,()=>t,o=>Cl(e,o,n),r)}async function nm(n,e,t,r,o=!1){return Cr(n,()=>Pl(t,r),i=>Cl(e,i,n),o)}async function rm(n,e,t,r=!1){return Cr(n,()=>El(t),o=>Il(e,o,n),r)}async function om(n,e,t,r,o=!1){return Cr(n,()=>Pl(t,r),i=>Il(e,i,n),o)}async function im(n,e,t,r=!1){return Cr(n,()=>t,o=>Il(e,o,n),r)}async function sm(n,e){return Al(n,()=>El(e))}async function am(n,e){return Al(n,()=>e)}async function cm(n,e,t){return Al(n,()=>Pl(e,t))}function lm(){let e=re.dirname(OP(import.meta.url));for(;;){let t=re.join(e,"SKILL.md");if(Xf.existsSync(t))return t;let r=re.dirname(e);if(r===e)break;e=r}throw new Error("SKILL.md not found in deveco-cli package. Reinstall deveco-cli.")}import dm from"fs";import{cyan as $P}from"colorette";async function Lo(n){if(!n)return[];let e=[],t=n.split(",").map(r=>r.trim());for(let r of t){if(!await bl(r))throw new Error(`Agent ${r} not found`);e.push(r)}return e}async function Oo(){let n=[],e=At();for(let t of Object.keys(e))await bl(t)&&n.push(t);return n}function Mo(n){let e=n.filter(o=>o.success&&!o.skipped).length,t=n.filter(o=>o.skipped).length,r=n.filter(o=>!o.success).length;console.log(),console.log($P("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${r}`),r>0&&(process.exitCode=1)}function an(n,e,t){if(!dm.existsSync(n)){if(t)return;throw new Error(`${e} "${n}" not found`)}if(!dm.statSync(n).isDirectory())throw new Error(`"${n}" is not a directory`)}function _o(n,e,t){if(n&&(e||t))throw new Error("Cannot use `--path` with `--project` or `--agent`");return{resolvedPath:n?Sl(n):void 0,resolvedProject:e?Sl(e):void 0}}async function Rs(n,e,t){let r=[],o=[],i;if(e?i=e:t&&n.agent?o=(await Lo(n.agent)).map(a=>({project:t,agent:a})):t?o=(await Oo()).map(a=>({project:t,agent:a})):n.agent?r=await Lo(n.agent):r=await Oo(),!i&&r.length===0&&o.length===0)throw new Error("No agents found. Install an AI agent (opencode, etc.) or use `--path` for a custom location.");return{agents:r,projectAgents:o,customPath:i}}async function GP(n){let e=await As();if(n.all)return(await yl(e)).map(r=>r.enName);{let r=(await wl(n.skill,e)).find(o=>o.enName===n.skill);if(!r)throw new Error(`Skill "${n.skill}" not found`);return[r.enName]}}async function qP(n,e,t,r){let o=[];if(t.customPath){let i=await tm(n,e,t.customPath,r);return o.push(i),o}for(let i of t.agents){let s=await em(n,i,e,r);o.push(s)}for(let{project:i,agent:s}of t.projectAgents){let a=await nm(n,e,i,s,r);o.push(a)}return o}function zP(n){if(n.all&&n.skill)throw new Error("`--all` and `--skill` cannot be specified together.");if(!n.all&&!n.skill)throw new Error("Must specify `--all` or `--skill`");let{resolvedPath:e,resolvedProject:t}=_o(n.path,n.project,n.agent);return t&&an(t,"Project directory",n.force),e&&an(e,"Directory",n.force),{resolvedPath:e,resolvedProject:t}}async function VP(n,e,t){let r=await Rs(n,e,t);return{skillNames:await GP(n),targets:r}}async function YP(n,e,t,r){let o=[],i=n.length,s=WP(5),a=n.map(c=>s(()=>JP(c)));for(let c=0;c<n.length;c++){let l=n[c],d=i>1?` (${c+1}/${i})`:"";r.start(`Installing ${l}${d}...`);let h=await a[c];if(!h.success){r.fail(),console.log(Fo(`${l}: Download failed - ${h.error}`)),o.push({success:!1});continue}r.stop();let w=await qP(l,h.buffer,e,t);o.push(...w)}return o}async function JP(n){try{let e=await Zf(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 KP(n){let e=new dt;try{e.start("Installing skill...");let{resolvedPath:t,resolvedProject:r}=zP(n),{skillNames:o,targets:i}=await VP(n,t,r),s=await YP(o,i,n.force||!1,e);e.stop(),Mo(s)}catch(t){throw e.stop(),t}}function XP(n){let{resolvedPath:e,resolvedProject:t}=_o(n.path,n.project,n.agent);return t&&an(t,"Project directory"),e&&an(e,"Directory"),{resolvedPath:e,resolvedProject:t}}async function ZP(n,e){let t=new dt;try{t.start("Removing skill...");let{resolvedPath:r,resolvedProject:o}=XP(e);t.stop();let i=await QP(e,n,r,o);t.stop(),Mo(i)}catch(r){throw t.stop(),r}}function um(n,e=""){if(n.length===0)throw new Error(`No agents found. Install an AI agent (cursor, opencode, etc.) ${e}`)}async function Ts(n,e){let t=[];for(let r of e){let o=r.type==="agent"?await sm(n,r.agent):await cm(n,r.project,r.agent);t.push(o)}return t}async function QP(n,e,t,r){if(t)return[await am(e,t)];if(r&&n.agent){let a=(await Lo(n.agent)).map(c=>({type:"projectAgent",agent:c,project:r}));return Ts(e,a)}if(r){let s=await Oo();um(s);let a=s.map(c=>({type:"projectAgent",agent:c,project:r}));return Ts(e,a)}if(n.agent){let a=(await Lo(n.agent)).map(c=>({type:"agent",agent:c}));return Ts(e,a)}let o=await Oo();um(o,"or use --path for a custom location.");let i=o.map(s=>({type:"agent",agent:s}));return Ts(e,i)}var jo=new UP("skills").description("Manage HarmonyOS skills");jo.command("list").description("List all available HarmonyOS skills").option("-l, --long","Show detailed information including description and installation status").action(async n=>{let e=new dt;try{e.start("Fetching skills...");let t=await As(),r=await yl(t);if(r.length===0){e.stop(),console.log(fm("No skills available."));return}e.succeed(`Fetched ${r.length} skills`);for(let o of r)if(n.long){console.log(pm(o.enName)),console.log(mm(o.description));let i=Yf(o.enName);i.length>0&&console.log(BP(`Installed for: ${i.join(", ")}`)),console.log()}else console.log(o.enName)}catch(t){e.stop(),console.error(Fo(t.message)),process.exit(1)}});jo.command("find <keyword>").description("Search skills by keyword").action(async n=>{let e=new dt;try{e.start("Searching skills...");let t=await As(),r=await wl(n,t);if(r.length===0){console.log(fm(`No skills found matching '${n}'.`)),e.stop();return}e.succeed(`Found ${r.length} skills.`);for(let o of r)console.log(pm(o.enName)),console.log(mm(o.description)),console.log()}catch(t){e.stop(),console.error(Fo(t.message)),process.exit(1)}});jo.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 KP(n)}catch(e){console.error(Fo(e.message)),process.exit(1)}});jo.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 ZP(n.skill,n)}catch(e){console.error(Fo(e.message)),process.exit(1)}});var hm=jo;import{Command as tC,InvalidArgumentError as xs}from"commander";import{cyan as ks}from"colorette";function qn(n,e){if(n.exitCode===0)return null;let t=n.stderr||n.stdout,r=lr(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 Dl=[800,1500,2500];function eC(n){return new Promise(e=>setTimeout(e,n))}function gm(){return b()?"No active devices found. Connect a physical device.":"No active devices found. Start an emulator or connect a physical device."}var Ir=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=te.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(`
|
|
1281
|
+
`)}function DP(){return new Promise(n=>{let e=Wf.createInterface({input:process.stdin,output:process.stdout});e.question("",()=>{e.close(),n()})})}var No=new IP("auth").description("Authentication commands (login, logout, status, team)");No.command("login").description("Log in to your Huawei Developer account").action(async()=>{if(lt()){console.log(gl("Login is managed by DevEco Code. Login from DevEco Code instead."));return}try{let n=await Ae.getUserInfo();if(n){console.log(jt(`Already logged in, User Name:${n.userName}`));return}console.log(jt("Starting login process...")),console.log(jt("Press Enter to open browser for login...")),await DP();let e=await Ae.login();console.log(jt(`Login successful. Logged in as ${e.userName}.`))}catch(n){throw n instanceof Ce||(n instanceof Error?n.message:String(n)).includes("Network connection failed")?n:new Error("Login failed",{cause:n})}});No.command("logout").description("Log out of your Huawei Developer account").action(async()=>{if(lt()){console.log(gl("Login is managed by DevEco Code. Log out from DevEco Code instead."));return}try{let n=await Ae.logout();console.log(n?jt("Logout successful"):jt("Already logged out."))}catch(n){throw new Error("Logout failed",{cause:n})}});No.command("status").description("Show the currently logged-in user").action(async()=>{let n=await Ae.getUserInfo();if(!n){console.log(jt("Not logged in"));return}console.log(jt(`Current user: ${n.userName}`))});var RP=No.command("team").description("Team-related commands");RP.command("list").description("List team accounts the current user has joined").action(async()=>{try{let n=await sn();console.log(AP(n.teamList))}catch(n){if(n instanceof Ce){console.log(gl(n.message));return}throw n}});var Gf=No;import{Command as UP}from"commander";import{green as BP,red as Fo,cyan as pm,yellow as fm,dim as mm}from"colorette";import WP from"p-limit";import TP from"ora";var dt=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 qf from"fs";import*as zf from"path";var Vf=["DevEco"];async function As(){let n=await x.get(ot.TAGS_API_URL),t=Ds(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 kP(n){let e=[],t=ot.DEFAULT_PAGE_SIZE,r=1;for(;;){let o=await x.post(ot.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:r,pageSize:t,tagIds:[n]}}),i=Ds(o,"Skills API");if(e.push(...i.data.list),i.data.list.length<t)break;r++}return e}async function yl(n){let e=new Map,t=n.map(o=>kP(o)),r=await Promise.all(t);for(let o of r)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=>!Vf.includes(i.name)))}async function xP(n,e){let t=await x.post(ot.SKILLS_API_URL,{headers:{"Content-Type":"application/json"},params:{pageNum:1,pageSize:ot.DEFAULT_PAGE_SIZE,keyword:n,tagIds:[e]}});return Ds(t,"Skills API").data.list}async function wl(n,e){let t=new Map,r=e.map(i=>xP(n,i)),o=await Promise.all(r);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=>!Vf.includes(s.name)))}function Yf(n){let e=[],t=At();for(let[,r]of Object.entries(t)){let o=zf.join(r.path,n);qf.existsSync(o)&&e.push(r.displayName)}return e.sort()}function Ds(n,e){if(n.statusCode!==200)throw new Error(`${e} Request failed: HTTP ${n.statusCode}`);let t=x.parseJson(n);if(t.code!==ot.SUCCESS_CODE)throw new Error(`${e} Error returned: ${t.code} - ${t.message}`);return t}async function Jf(n){let e=`${ot.SKILL_API_BASE}/${n}/checksum`,t=await x.get(e);return Ds(t,"Checksum API").data}import NP from"adm-zip";import LP from"crypto";import Xf from"fs";import re from"path";import{fileURLToPath as OP}from"url";import{red as MP}from"colorette";var Ht=Xf.promises;function vl(n){if(!/^[A-Za-z0-9._-]+$/.test(n)||n==="."||n==="..")throw new Error(`Unsafe skill name: ${JSON.stringify(n)}`)}function Kf(n,e){let t=re.resolve(e),r=re.resolve(n),o=re.relative(r,t);if(o.startsWith("..")||re.isAbsolute(o))throw new Error(`Path traversal detected: ${e}.`)}function Sl(n){return re.isAbsolute(n)?n:re.resolve(process.cwd(),n)}function _P(n){return LP.createHash("sha256").update(n).digest("hex")}async function FP(n,e){if(n.length!==e.size)throw new Error("Skill zip integrity verification failed: Size mismatch");let r=_P(n),o=e.sha256.toLowerCase();if(r!==o)throw new Error("Skill zip integrity verification failed: SHA256 mismatch")}async function Zf(n){let e=`${ot.SKILL_API_BASE}/${n}/install?format=zip`,t=await x.getBinary(e),r=await Jf(n);return await FP(t,r),t}async function jP(n,e,t){vl(t);let r=new NP(n),o=r.getEntries();try{await Ht.stat(e)}catch{await Ht.mkdir(e,{recursive:!0})}let i=re.join(e,t);Kf(e,i);for(let s of o){let a=re.join(i,s.entryName);Kf(i,a)}r.extractAllTo(i,!0)}async function bl(n){let e=At();if(!e[n])throw new Error(`Invalid agent: ${n}, Valid options are: ${Object.keys(e).join(", ")}`);let r=de[n];try{return await Ht.access(r),!0}catch{return!1}}function El(n){return At()[n].path}function Pl(n,e){let r=At()[e],o="projectPath"in r?r.projectPath:re.join("."+e,"skills");return re.join(n,o)}async function HP(n,e,t){vl(e);let r=re.join(n,e);try{if(await Ht.access(r),t)await Ht.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 Cl(n,e,t){await jP(n,e,t),console.log(`Skill ${t} installed to ${re.join(e,t)}.`)}async function Il(n,e,t){let r=re.join(e,t);await Ht.mkdir(r,{recursive:!0});let o=re.join(r,re.basename(n));await Ht.copyFile(n,o),console.log(`Skill ${t} installed to ${r}.`)}function Qf(n,e,t=""){let r=e instanceof Error?e.message:t;return console.log(MP(`Faild to exute operation for skill "${n}": ${r}`)),{success:!1,error:r}}async function Cr(n,e,t,r){try{let o=await e(),{shouldSkip:i}=await HP(o,n,r);return i?{success:!0,skipped:!0}:(await t(o),{success:!0})}catch(o){return Qf(n,o,"Installation failed")}}async function Al(n,e){try{vl(n);let t=await e(),r=re.join(t,n);try{await Ht.access(r)}catch{return console.log(`Skill ${n} not found in ${t}`),{success:!0,skipped:!0}}return await Ht.rm(r,{recursive:!0,force:!0}),console.log(`Skill ${n} removed from ${r}.`),{success:!0}}catch(t){return Qf(n,t,"Removal failed")}}async function em(n,e,t,r=!1){return Cr(n,()=>El(e),o=>Cl(t,o,n),r)}async function tm(n,e,t,r=!1){return Cr(n,()=>t,o=>Cl(e,o,n),r)}async function nm(n,e,t,r,o=!1){return Cr(n,()=>Pl(t,r),i=>Cl(e,i,n),o)}async function rm(n,e,t,r=!1){return Cr(n,()=>El(t),o=>Il(e,o,n),r)}async function om(n,e,t,r,o=!1){return Cr(n,()=>Pl(t,r),i=>Il(e,i,n),o)}async function im(n,e,t,r=!1){return Cr(n,()=>t,o=>Il(e,o,n),r)}async function sm(n,e){return Al(n,()=>El(e))}async function am(n,e){return Al(n,()=>e)}async function cm(n,e,t){return Al(n,()=>Pl(e,t))}function lm(){let e=re.dirname(OP(import.meta.url));for(;;){let t=re.join(e,"SKILL.md");if(Xf.existsSync(t))return t;let r=re.dirname(e);if(r===e)break;e=r}throw new Error("SKILL.md not found in deveco-cli package. Reinstall deveco-cli.")}import dm from"fs";import{cyan as $P}from"colorette";async function Lo(n){if(!n)return[];let e=[],t=n.split(",").map(r=>r.trim());for(let r of t){if(!await bl(r))throw new Error(`Agent ${r} not found`);e.push(r)}return e}async function Oo(){let n=[],e=At();for(let t of Object.keys(e))await bl(t)&&n.push(t);return n}function Mo(n){let e=n.filter(o=>o.success&&!o.skipped).length,t=n.filter(o=>o.skipped).length,r=n.filter(o=>!o.success).length;console.log(),console.log($P("Finished:")),console.log(` Success: ${e}`),console.log(` Skipped: ${t}`),console.log(` Failed: ${r}`),r>0&&(process.exitCode=1)}function an(n,e,t){if(!dm.existsSync(n)){if(t)return;throw new Error(`${e} "${n}" not found`)}if(!dm.statSync(n).isDirectory())throw new Error(`"${n}" is not a directory`)}function _o(n,e,t){if(n&&(e||t))throw new Error("Cannot use `--path` with `--project` or `--agent`");return{resolvedPath:n?Sl(n):void 0,resolvedProject:e?Sl(e):void 0}}async function Rs(n,e,t){let r=[],o=[],i;if(e?i=e:t&&n.agent?o=(await Lo(n.agent)).map(a=>({project:t,agent:a})):t?o=(await Oo()).map(a=>({project:t,agent:a})):n.agent?r=await Lo(n.agent):r=await Oo(),!i&&r.length===0&&o.length===0)throw new Error("No agents found. Install an AI agent (opencode, etc.) or use `--path` for a custom location.");return{agents:r,projectAgents:o,customPath:i}}async function GP(n){let e=await As();if(n.all)return(await yl(e)).map(r=>r.enName);{let r=(await wl(n.skill,e)).find(o=>o.enName===n.skill);if(!r)throw new Error(`Skill "${n.skill}" not found`);return[r.enName]}}async function qP(n,e,t,r){let o=[];if(t.customPath){let i=await tm(n,e,t.customPath,r);return o.push(i),o}for(let i of t.agents){let s=await em(n,i,e,r);o.push(s)}for(let{project:i,agent:s}of t.projectAgents){let a=await nm(n,e,i,s,r);o.push(a)}return o}function zP(n){if(n.all&&n.skill)throw new Error("`--all` and `--skill` cannot be specified together.");if(!n.all&&!n.skill)throw new Error("Must specify `--all` or `--skill`");let{resolvedPath:e,resolvedProject:t}=_o(n.path,n.project,n.agent);return t&&an(t,"Project directory",n.force),e&&an(e,"Directory",n.force),{resolvedPath:e,resolvedProject:t}}async function VP(n,e,t){let r=await Rs(n,e,t);return{skillNames:await GP(n),targets:r}}async function YP(n,e,t,r){let o=[],i=n.length,s=WP(5),a=n.map(c=>s(()=>JP(c)));for(let c=0;c<n.length;c++){let l=n[c],d=i>1?` (${c+1}/${i})`:"";r.start(`Installing ${l}${d}...`);let h=await a[c];if(!h.success){r.fail(),console.log(Fo(`${l}: Download failed - ${h.error}`)),o.push({success:!1});continue}r.stop();let w=await qP(l,h.buffer,e,t);o.push(...w)}return o}async function JP(n){try{let e=await Zf(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 KP(n){let e=new dt;try{e.start("Installing skill...");let{resolvedPath:t,resolvedProject:r}=zP(n),{skillNames:o,targets:i}=await VP(n,t,r),s=await YP(o,i,n.force||!1,e);e.stop(),Mo(s)}catch(t){throw e.stop(),t}}function XP(n){let{resolvedPath:e,resolvedProject:t}=_o(n.path,n.project,n.agent);return t&&an(t,"Project directory"),e&&an(e,"Directory"),{resolvedPath:e,resolvedProject:t}}async function ZP(n,e){let t=new dt;try{t.start("Removing skill...");let{resolvedPath:r,resolvedProject:o}=XP(e);t.stop();let i=await QP(e,n,r,o);t.stop(),Mo(i)}catch(r){throw t.stop(),r}}function um(n,e=""){if(n.length===0)throw new Error(`No agents found. Install an AI agent (cursor, opencode, etc.) ${e}`)}async function Ts(n,e){let t=[];for(let r of e){let o=r.type==="agent"?await sm(n,r.agent):await cm(n,r.project,r.agent);t.push(o)}return t}async function QP(n,e,t,r){if(t)return[await am(e,t)];if(r&&n.agent){let a=(await Lo(n.agent)).map(c=>({type:"projectAgent",agent:c,project:r}));return Ts(e,a)}if(r){let s=await Oo();um(s);let a=s.map(c=>({type:"projectAgent",agent:c,project:r}));return Ts(e,a)}if(n.agent){let a=(await Lo(n.agent)).map(c=>({type:"agent",agent:c}));return Ts(e,a)}let o=await Oo();um(o,"or use --path for a custom location.");let i=o.map(s=>({type:"agent",agent:s}));return Ts(e,i)}var jo=new UP("skills").description("Manage HarmonyOS skills");jo.command("list").description("List all available HarmonyOS skills").option("-l, --long","Show detailed information including description and installation status").action(async n=>{let e=new dt;try{e.start("Fetching skills...");let t=await As(),r=await yl(t);if(r.length===0){e.stop(),console.log(fm("No skills available."));return}e.succeed(`Fetched ${r.length} skills`);for(let o of r)if(n.long){console.log(pm(o.enName)),console.log(mm(o.description));let i=Yf(o.enName);i.length>0&&console.log(BP(`Installed for: ${i.join(", ")}`)),console.log()}else console.log(o.enName)}catch(t){e.stop(),console.error(Fo(t.message)),process.exit(1)}});jo.command("find <keyword>").description("Search skills by keyword").action(async n=>{let e=new dt;try{e.start("Searching skills...");let t=await As(),r=await wl(n,t);if(r.length===0){console.log(fm(`No skills found matching '${n}'.`)),e.stop();return}e.succeed(`Found ${r.length} skills.`);for(let o of r)console.log(pm(o.enName)),console.log(mm(o.description)),console.log()}catch(t){e.stop(),console.error(Fo(t.message)),process.exit(1)}});jo.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 KP(n)}catch(e){console.error(Fo(e.message)),process.exit(1)}});jo.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 ZP(n.skill,n)}catch(e){console.error(Fo(e.message)),process.exit(1)}});var hm=jo;import{Command as tC,InvalidArgumentError as xs}from"commander";import{cyan as ks}from"colorette";function qn(n,e){if(n.exitCode===0)return null;let t=n.stderr||n.stdout,r=lr(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 Dl=[800,1500,2500];function eC(n){return new Promise(e=>setTimeout(e,n))}function gm(){return E()?"No active devices found. Connect a physical device.":"No active devices found. Start an emulator or connect a physical device."}var Ir=class{toolProvider;deviceManager;constructor(e){this.toolProvider=e,this.deviceManager=te.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(`
|
|
1282
1282
|
`)}async loadConnectedDevicesByName(){return this.getConnectedDevices()}async selectDevice(e){let t=await this.getConnectedDeviceSerials();if(!e&&t.length===1){let o=t[0];return m(ks(`Using device serial: ${o}`)),o}if(e&&t.includes(e))return m(ks(`Using device serial: ${e}`)),e;let r=await this.loadConnectedDevicesByName();if(e){let o=this.findDeviceByArg(r,e);if(o)return m(ks(`Using device: ${o.name} (${o.serial})`)),o.serial;let i=this.formatConnectedDeviceList(r);throw new Error(`Device '${e}' not found.
|
|
1283
1283
|
Available devices:
|
|
1284
1284
|
${i}`)}if(r.length===1){let o=r[0];return m(ks(`Using device: ${o.name} (${o.serial})`)),o.serial}throw new Error("Multiple devices found. Specify a target device using `--device <name>` or `--device <serial>`.\nAvailable devices:\n"+this.formatConnectedDeviceList(r))}async getConnectedDeviceSerials(){let e=await this.deviceManager.listDevices();if(e.length===0)throw new Error(gm());return e.map(t=>t.serial)}async getConnectedDevices(){let e=await this.deviceManager.listDevicesWithName();if(e.length===0)throw new Error(gm());return e}async getPidForBundle(e,t,r){m(`Retrieving PID for bundle ${r}`),R.assertBundleNameStrict(r);let o=await se(e,["-t",t,"shell","pidof",r]),i=qn(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 m(`Found PID for ${r}: ${a}`),a}return m(`No PID found for bundle: ${r}`),null}async resizeHilogBuffer(e,t,r){m(`Setting hilog buffer size to: ${r}`);let o=await se(e,["-t",t,"shell","hilog","-G",r]),i=qn(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,r,o){let i=this.buildHilogShellCommand(r,o);return[e,["-t",t,"shell",i]]}buildHilogShellCommand(e,t){let r=["hilog"];return e.isFollow||r.push("-x"),e.tag&&(R.assertHilogToken(e.tag,"tag"),r.push("-T",e.tag)),e.level&&(R.assertHilogLevel(e.level),r.push("-L",e.level)),e.domain&&(R.assertHilogToken(e.domain,"domain"),r.push("-D",e.domain)),t&&r.push("-P",t),e.keyword&&(R.assertHilogKeyword(e.keyword),r.push("-e",R.quotePosixShellArg(e.keyword))),r.join(" ")}async followHilog(e,t,r,o,i){let a=await op(e,t,{onData:r,onError:o,onClose:i});return{stdout:a.stdout,stderr:a.stderr,exitCode:a.exitCode}}async runHilogWithSpawnRetry(e,t,r,o,i){let s=1+Dl.length,a={stdout:"",stderr:"",exitCode:-1};for(let c=0;c<s;c++){if(a=await this.followHilog(e,t,r,o,i),a.exitCode===0||lr(a.stderr)!=="transient"||c>=s-1)return a;m(`hdc transient failure on \`${t.join(" ")}\`: retrying in ${Dl[c]}ms`),await eC(Dl[c])}return a}async runHilogStreamingCollect(e,t,r){return this.runHilogWithSpawnRetry(e,t,()=>{},o=>{m(`Callback triggered when an error occurs during ${r}: ${o.message}`)},()=>{})}async printTailSnapshotIfNeeded(e,t,r,o){if(!r.tail&&!r.fromSeconds&&!r.toSeconds)return;let i={...r,isFollow:!1},[s,a]=this.buildHilogCommand(e,t,i,o);m(`Ready to run hilog snapshot command: ${s} ${a.join(" ")}`);let c=await this.runHilogStreamingCollect(s,a,"a hilog snapshot streaming read"),l=qn(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=R.filterLogsByRelativeWindow(c.stdout||c.stderr,r.fromSeconds,r.toSeconds);d=R.getLastLines(d,r.tail),d.trim()&&console.log(d)}async getHilogOnce(e,t,r,o){let[i,s]=this.buildHilogCommand(e,t,r,o);m(`Ready to run hilog command: ${i} ${s.join(" ")}`);let a=await this.runHilogStreamingCollect(i,s,"a single hilog streaming read"),c=qn(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=R.filterLogsByRelativeWindow(l,r.fromSeconds,r.toSeconds);return d=R.getLastLines(d,r.tail),d}async runHilogFollow(e,t,r,o){try{await this.printTailSnapshotIfNeeded(e,t,r,o)}catch(l){console.error(`Warning: Failed to fetch log snapshot, continuing with live stream: ${l.message}`)}let[i,s]=this.buildHilogCommand(e,t,r,o);m(`Ready to run hilog command which contain \`follow\` and \`tail\`: ${i} ${s.join(" ")}`);let a=await this.runHilogWithSpawnRetry(i,s,this.createFollowLineHandler(),l=>{m(`Spawn error during hilog follow: ${l.message}`)},()=>{}),c=qn(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,o=t.bundleName?await this.getPidForBundle(r,e,t.bundleName):void 0;if(t.bundleName&&!o)throw new Error(`No running process found for bundle '${t.bundleName}'. Ensure the app is launched on the device before fetching logs.`);return t.logSize&&await this.resizeHilogBuffer(r,e,t.logSize),t.isFollow?await this.runHilogFollow(r,e,t,o||""):await this.getHilogOnce(r,e,t,o||"")}async getCrashLog(e,t){m(`Fetching crash logs from device: ${e}`);let r=this.toolProvider.hdcPath,o=await this.listCrashLogs(r,e,t);if(o.length===0)return t?`No crash logs found for bundle '${t}'.`:"No crash logs found.";let s=[...o].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 o=["-t",t,"shell","hidumper","-s","1201","-a","-p Faultlogger"];m(`Running command: ${e} ${o.join(" ")}`);let i=await this.runHilogStreamingCollect(e,o,"a crash log list streaming read"),s=qn(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 m(`Crash logs list output:
|
|
@@ -1301,14 +1301,14 @@ ${t}`}handleData(t){for(this.buffer=Buffer.concat([this.buffer,t]);;){let r=this
|
|
|
1301
1301
|
`):"No valid C/C++ files"}],isError:!0};this.manager.patchSdkPathInCompileCommands();for(let c of o){await wI(gI);try{let l=await this.checkFile(c);r.push(yI(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(`
|
|
1302
1302
|
`)),r.length>0&&s.push(r.join(`
|
|
1303
1303
|
`));let a=s.join(`
|
|
1304
|
-
`).trim();return!i&&r.length===0&&(a="No diagnostic information collected"),{content:[{type:"text",text:a}],isError:i}}async checkFile(e){let t=Mn(e),r=await fn.promises.readFile(e,"utf8"),o=Wi(e),i=this.manager.registerDiagnosticCallback(t);this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:t,text:r,languageId:o,version:r.length}}});try{return await i}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:t}}})}}collectValidFiles(e,t){let r=this.manager.projectRoot,o=[];for(let i of e){let s=Hr.resolve(Hr.isAbsolute(i)?i:Hr.join(r,i));if(!fn.existsSync(s)){t.push(`File does not exist: ${i}`);continue}if(!fn.statSync(s).isFile()){t.push(`Not a regular file: ${i}`);continue}if(!On(s)){t.push(`Not a supported C/C++ file: ${i}`);continue}try{o.push(fn.realpathSync(s))}catch{o.push(s)}}return o}};function yI(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 wI(n){return new Promise(e=>setTimeout(e,n))}import*as Ur from"fs";import*as la from"path";var $r=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 Fr();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 o=n.FEATURE_METHOD_MAP[e];if(!o)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};g.info(`[ClangdLspTool] handleLspFeature: ${e} file=${r} line=${t.line} char=${t.character}`);try{let i=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(o,c)});return{content:[{type:"text",text:i==null?`${e}: no result`:`${e}: ${JSON.stringify(i,null,2)}`}]}}catch(i){return ca(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 g.error(`[ClangdLspTool] handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.manager.ready)return Fr();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};g.info(`[ClangdLspTool] handleDocumentSymbol: file=${t}`);try{let r=await this.withOpenFile(t,async i=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:i}}));return{content:[{type:"text",text:r==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(r,null,2)}`}]}}catch(r){return ca("documentSymbol",r)}}async handleCallHierarchy(e){if(!this.manager.ready)return Fr();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};g.info(`[ClangdLspTool] handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let r=await this.withOpenFile(t,i=>this.fetchCallHierarchyResult(i,e));return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(r,null,2)}`}]}}catch(r){return ca("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}}),o=this.normalizeCallHierarchyItems(r);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 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=Mn(e),o=await Ur.promises.readFile(e,"utf8"),i=Wi(e);g.info(`[ClangdLspTool] withOpenFile didOpen uri=${r} langId=${i} len=${o.length}`),this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:r,text:o,languageId:i,version:o.length}}});try{return await t(r)}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:r}}})}}resolveSingleFile(e){let t=la.isAbsolute(e)?e:la.join(this.manager.projectRoot,e);return!Ur.existsSync(t)||!Ur.statSync(t).isFile()||!On(t)?null:t}};import{spawn as vI}from"child_process";import*as ua from"fs";import*as Xm from"path";var SI=30*1e3,bI=30*1e3,da=class{config;client=null;clangdProcess=null;nextRequestId=1;requestCallbacks=new ln;diagnosticWaiters=new Map;lastStartErrorMessage=null;onMessage=()=>{};disposeOnce=null;constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}async start(e){let t=!1;try{f.info(`[ClangdLspProxy] clangdPath: ${this.config.clangdPath}`),f.info(`[ClangdLspProxy] workspaceRoot: ${this.config.workspaceRoot}`),f.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,nodePath:this.config.nodePath};this.client=new cn(r),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,Ve),f.info("[ClangdLspProxy] initialize response received"),this.sendNotification(y.INITIALIZED,{}),t=!0}catch(r){this.lastStartErrorMessage=r instanceof Error?r.message:String(r),f.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){f.warn("[ClangdLspProxy] sendNotification before ready, dropped");return}this.client.sendNotification(e,t)}registerDiagnosticCallback(e){let t=this.normalizeClangdUri(e);if(this.diagnosticWaiters.has(t)){f.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,o)=>{let i=setTimeout(()=>{this.diagnosticWaiters.delete(t)&&o(new Error(`Wait for clangd diagnostics timeout, uri: ${t}`))},bI);this.diagnosticWaiters.set(t,{resolve:r,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=>{f.warn(`[ClangdLspProxy] shutdown request failed: ${e}`)}),this.sendNotification(y.EXIT,null),await this.client.waitForExitOrTimeout(300)}catch(e){f.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=${U(this.config.compileCommandsDir)}`,"--log=info","--pch-storage=memory","--limit-results=100"];f.info(`[ClangdLspProxy] spawn: ${this.config.clangdPath} ${e.join(" ")}`);let t=vI(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=cr(this.config.workspaceRoot),t=st(e),r=Xm.basename(e)||"workspace";return{processId:process.pid,clientInfo:{name:"devecocli-mcp-server",version:"0.3.3"},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=SI){if(!this.client)return Promise.reject(new Error("[ClangdLspProxy] client not ready"));let o=this.nextRequestId++,i=this.requestCallbacks.registerPending(o,e,r);return this.client.sendRequest(e,t,o),i}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(r){let o=r instanceof Error?r.message:String(r);f.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):f.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){let o=e.error;f.warn(`[ClangdLspProxy] LSP error id=${r}: code=${o.code??-1} message=${o.message??"unknown"}`),this.requestCallbacks.rejectPending(r,new Error(`LSP error ${o.code??-1}: ${o.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:f.info(`[ClangdLspProxy] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:f.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 o=Array.isArray(e.diagnostics)?e.diagnostics:[],i=o.length;f.info(`[ClangdLspProxy] diagnostics received uri=${t} count=${i}`),r.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{ua.existsSync(this.config.logPath)||ua.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)),st(r)}}catch{}return e}};import*as Vo from"path";import*as Wt from"fs";var Yo=class{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 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){f.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.patchSdkPathInCompileCommands(),this.proxy.sendFeatureRequest(e,t)}registerDiagnosticCallback(e){return this.proxy?this.proxy.registerDiagnosticCallback(e):Promise.reject(new Error("[ClangdLspManager] LSP not ready"))}patchSdkPathInCompileCommands(){if(!b()||this.config.toolProvider.sourceType==="studio"||process.env.COMMAND_LINE_TOOL_PATH?.trim()===I.OPENHARMONY_STUDIO_ROOT)return;let e=sr(this.projectRoot);if(!Wt.existsSync(e))return;let t=Wt.readFileSync(e,"utf8");if(!t.includes(Yi))return;let r=t.replaceAll(Yi,this.config.toolProvider.sdkPath);Wt.writeFileSync(e,r,"utf8"),f.info(`[CppCheck] Patched SDK path in compile_commands.json: ${Yi} -> ${this.config.toolProvider.sdkPath}`)}static async handleSyncCppProject(e,t){if(f.info("[ClangdLspManager] Received cpp/syncProject"),!e)return f.error("[ClangdLspManager] handleSyncCppProject: workspaceRoot or devecoPath is empty"),{status:"failed",reason:"workspaceRoot or devecoPath is empty"};if(Fn(e).length===0)return f.info("[ClangdLspManager] No C++ modules found, skipping compileNative"),{status:"success"};let o=await Fi(e,async()=>{try{return await Qu(e,t),f.info("[ClangdLspManager] compileNative + merge compile_commands completed"),{status:"success"}}catch(i){let s=i instanceof Error?i.message:String(i);return f.error(`[ClangdLspManager] compileNative failed: ${s}`),{status:"failed",reason:s}}});return o.acquired?o.result:(f.info("[ClangdLspManager] 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}doStart(){return new Promise((e,t)=>{this.initResolve=e,this.initReject=t,this.armInitTimer(Ve);try{this.startProxy()}catch(r){this.failInit(r instanceof Error?r:new Error(String(r)))}})}startProxy(){let e=Tt(this.config.workspaceRoot);this.resolvedRoot=e?pe(e):pe(this.config.workspaceRoot);let t=this.config.logPath??this.getLogPath();Vi(t);let r=this.config.toolProvider.clangdPath;if(!r){let s="clangd executable not found inside DevEco Studio SDK";f.error(`[ClangdLspManager] ${s}`),this.failInit(new Error(s));return}let o=Vo.dirname(sr(this.resolvedRoot));try{Wt.mkdirSync(o,{recursive:!0})}catch(s){f.warn(`[ClangdLspManager] Failed to create compile_commands dir: ${s}`)}f.info(`[ClangdLspManager] clangdPath: ${r}`),f.info(`[ClangdLspManager] workspaceRoot: ${this.resolvedRoot}`),f.info(`[ClangdLspManager] compileCommandsDir: ${o}`);let i=new da({clangdPath:r,workspaceRoot:this.resolvedRoot,compileCommandsDir:o,logPath:t,nodePath:this.config.toolProvider.nodePath});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,f.info("[ClangdLspManager] clangd initialized");let r=this.initResolve;this.clearInitHandlers(),r?.()}else{let r=t??this.proxy?.consumeStartErrorMessage()??"unknown error";f.error(`[ClangdLspManager] clangd initialization failed: ${r}`),this.isInitialized=!1,this.proxy=null;let o=this.initReject;this.clearInitHandlers(),o?.(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){f.warn("[ClangdLspManager] dispatchNotification: missing method");return}let o=t.params;switch(r){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(r,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){f.warn(`[ClangdLspManager] proxy dispose error: ${t}`)}this.proxy=null}this.isInitialized=!1,this.initPromise=null}getLogPath(){try{let e=Vo.join(nn(),"CppCheck"),t=`${Date.now()}${process.hrtime.bigint()%1000000n}`,r=Vo.join(e,"lsp-log",t);return Wt.mkdirSync(r,{recursive:!0}),pe(r)}catch{return"auto"}}};function Zm(n){let e=Hi(n);return f.info(`[SyncGuard] ${e.reason}`),e}var Hl=(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))(Hl||{}),eh=(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))(eh||{}),bt=3,Fl=600*1e3,jl=100,pa=class{server;toolRouter;config;arktsCheckTool=null;cppCheckTool=null;cppLspTool=null;cppLspManager=null;projectState=0;workspaceRoot="";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;constructor(e){this.config=e,_n(e.debug??!1);let t,r=e.projectPath?.trim()??"";this.originalProjectPath=r,r==="."?(t=process.cwd(),g.info(`Constructor: configuredPath is '.', startPath: '${t}'`)):r===""?(t="",g.info("Constructor: configuredPath is empty, startPath remains empty")):(t=r,g.info(`Constructor: using configured path as startPath: '${t}'`));let o=Tt(t);g.info(`Constructor: findHarmonyProject('${t}') => ${o??"null"}`),this.config.projectPath=o??void 0,this.server=new EI({name:"devecocli-mcp-server",version:"0.0.1"}),this.toolRouter=Ll(),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). 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:le.object({target:le.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:le.object({files:le.array(le.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){g.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=le.object({file:le.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:le.number().describe("Line number (0-based)"),character:le.number().describe("Character offset in the line (0-based)")});for(let{name:t,description:r,feature:o}of this.getPositionFeatures())this.toolRouter.add({name:t,description:r,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:le.object({query:le.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:le.object({file:le.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:le.object({file:le.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:le.number().describe("Line number (0-based)"),character:le.number().describe("Character offset in the line (0-based)"),direction:le.enum(["incoming","outgoing"]).describe('"incoming" = who calls this function, "outgoing" = what this function calls')})},async e=>this.handleCallHierarchyCall(e))}detectStandardProtocolAvailable(){try{let e=this.config.toolProvider.lspServerPath;if(!e)return g.info("Standard LSP protocol unavailable: arkts-lang-server path not found"),!1;let t=mn.join(mn.dirname(e),"standardIndex","index.js"),r=Qm.existsSync(t);return g.info(`ArktsCheck protocol: ${r?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${r})`),r}catch(e){return g.warn(`Failed to detect standard LSP protocol availability: ${e}`),!1}}validateContainment(e){let t=this.config.projectPath;if(t){let o=[];for(let i of e){let s=R.isPathContainedWithSymlink(i,t);s.contained||(g.warn(`Containment check failed: ${s.reason}`),o.push(s.reason))}return o.length>0?{content:[{type:"text",text:o.join(`
|
|
1304
|
+
`).trim();return!i&&r.length===0&&(a="No diagnostic information collected"),{content:[{type:"text",text:a}],isError:i}}async checkFile(e){let t=Mn(e),r=await fn.promises.readFile(e,"utf8"),o=Wi(e),i=this.manager.registerDiagnosticCallback(t);this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:t,text:r,languageId:o,version:r.length}}});try{return await i}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:t}}})}}collectValidFiles(e,t){let r=this.manager.projectRoot,o=[];for(let i of e){let s=Hr.resolve(Hr.isAbsolute(i)?i:Hr.join(r,i));if(!fn.existsSync(s)){t.push(`File does not exist: ${i}`);continue}if(!fn.statSync(s).isFile()){t.push(`Not a regular file: ${i}`);continue}if(!On(s)){t.push(`Not a supported C/C++ file: ${i}`);continue}try{o.push(fn.realpathSync(s))}catch{o.push(s)}}return o}};function yI(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 wI(n){return new Promise(e=>setTimeout(e,n))}import*as Ur from"fs";import*as la from"path";var $r=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 Fr();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 o=n.FEATURE_METHOD_MAP[e];if(!o)return{content:[{type:"text",text:`Unknown feature: ${e}`}],isError:!0};g.info(`[ClangdLspTool] handleLspFeature: ${e} file=${r} line=${t.line} char=${t.character}`);try{let i=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(o,c)});return{content:[{type:"text",text:i==null?`${e}: no result`:`${e}: ${JSON.stringify(i,null,2)}`}]}}catch(i){return ca(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 g.error(`[ClangdLspTool] handleWorkspaceSymbolRaw failed: ${t.message}`),null}}async handleDocumentSymbol(e){if(!this.manager.ready)return Fr();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};g.info(`[ClangdLspTool] handleDocumentSymbol: file=${t}`);try{let r=await this.withOpenFile(t,async i=>this.manager.sendFeatureRequest(y.DOCUMENT_SYMBOL,{textDocument:{uri:i}}));return{content:[{type:"text",text:r==null?"documentSymbol: no result":`documentSymbol: ${JSON.stringify(r,null,2)}`}]}}catch(r){return ca("documentSymbol",r)}}async handleCallHierarchy(e){if(!this.manager.ready)return Fr();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};g.info(`[ClangdLspTool] handleCallHierarchy: file=${t} line=${e.line} char=${e.character} direction=${e.direction}`);try{let r=await this.withOpenFile(t,i=>this.fetchCallHierarchyResult(i,e));return{content:[{type:"text",text:`callHierarchy (${e.direction}): ${JSON.stringify(r,null,2)}`}]}}catch(r){return ca("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}}),o=this.normalizeCallHierarchyItems(r);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 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=Mn(e),o=await Ur.promises.readFile(e,"utf8"),i=Wi(e);g.info(`[ClangdLspTool] withOpenFile didOpen uri=${r} langId=${i} len=${o.length}`),this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didOpen",params:{textDocument:{uri:r,text:o,languageId:i,version:o.length}}});try{return await t(r)}finally{this.manager.sendNotification({jsonrpc:"2.0",method:"textDocument/didClose",params:{textDocument:{uri:r}}})}}resolveSingleFile(e){let t=la.isAbsolute(e)?e:la.join(this.manager.projectRoot,e);return!Ur.existsSync(t)||!Ur.statSync(t).isFile()||!On(t)?null:t}};import{spawn as vI}from"child_process";import*as ua from"fs";import*as Xm from"path";var SI=30*1e3,bI=30*1e3,da=class{config;client=null;clangdProcess=null;nextRequestId=1;requestCallbacks=new ln;diagnosticWaiters=new Map;lastStartErrorMessage=null;onMessage=()=>{};disposeOnce=null;constructor(e){this.config=e}setOnMessage(e){this.onMessage=e}consumeStartErrorMessage(){let e=this.lastStartErrorMessage;return this.lastStartErrorMessage=null,e}async start(e){let t=!1;try{f.info(`[ClangdLspProxy] clangdPath: ${this.config.clangdPath}`),f.info(`[ClangdLspProxy] workspaceRoot: ${this.config.workspaceRoot}`),f.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,nodePath:this.config.nodePath};this.client=new cn(r),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,Ve),f.info("[ClangdLspProxy] initialize response received"),this.sendNotification(y.INITIALIZED,{}),t=!0}catch(r){this.lastStartErrorMessage=r instanceof Error?r.message:String(r),f.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){f.warn("[ClangdLspProxy] sendNotification before ready, dropped");return}this.client.sendNotification(e,t)}registerDiagnosticCallback(e){let t=this.normalizeClangdUri(e);if(this.diagnosticWaiters.has(t)){f.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,o)=>{let i=setTimeout(()=>{this.diagnosticWaiters.delete(t)&&o(new Error(`Wait for clangd diagnostics timeout, uri: ${t}`))},bI);this.diagnosticWaiters.set(t,{resolve:r,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=>{f.warn(`[ClangdLspProxy] shutdown request failed: ${e}`)}),this.sendNotification(y.EXIT,null),await this.client.waitForExitOrTimeout(300)}catch(e){f.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=${U(this.config.compileCommandsDir)}`,"--log=info","--pch-storage=memory","--limit-results=100"];f.info(`[ClangdLspProxy] spawn: ${this.config.clangdPath} ${e.join(" ")}`);let t=vI(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=cr(this.config.workspaceRoot),t=st(e),r=Xm.basename(e)||"workspace";return{processId:process.pid,clientInfo:{name:"devecocli-mcp-server",version:"0.3.4"},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=SI){if(!this.client)return Promise.reject(new Error("[ClangdLspProxy] client not ready"));let o=this.nextRequestId++,i=this.requestCallbacks.registerPending(o,e,r);return this.client.sendRequest(e,t,o),i}handleRawMessage(e){let t;try{t=JSON.parse(e)}catch(r){let o=r instanceof Error?r.message:String(r);f.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):f.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){let o=e.error;f.warn(`[ClangdLspProxy] LSP error id=${r}: code=${o.code??-1} message=${o.message??"unknown"}`),this.requestCallbacks.rejectPending(r,new Error(`LSP error ${o.code??-1}: ${o.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:f.info(`[ClangdLspProxy] window/showMessage: ${JSON.stringify(e.params)}`);break;case y.WINDOW_LOG_MESSAGE:f.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 o=Array.isArray(e.diagnostics)?e.diagnostics:[],i=o.length;f.info(`[ClangdLspProxy] diagnostics received uri=${t} count=${i}`),r.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{ua.existsSync(this.config.logPath)||ua.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)),st(r)}}catch{}return e}};import*as Vo from"path";import*as Wt from"fs";var Yo=class{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 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){f.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.patchSdkPathInCompileCommands(),this.proxy.sendFeatureRequest(e,t)}registerDiagnosticCallback(e){return this.proxy?this.proxy.registerDiagnosticCallback(e):Promise.reject(new Error("[ClangdLspManager] LSP not ready"))}patchSdkPathInCompileCommands(){if(!E()||this.config.toolProvider.sourceType==="studio"||process.env.COMMAND_LINE_TOOL_PATH?.trim()===I.OPENHARMONY_STUDIO_ROOT)return;let e=sr(this.projectRoot);if(!Wt.existsSync(e))return;let t=Wt.readFileSync(e,"utf8");if(!t.includes(Yi))return;let r=t.replaceAll(Yi,this.config.toolProvider.sdkPath);Wt.writeFileSync(e,r,"utf8"),f.info(`[CppCheck] Patched SDK path in compile_commands.json: ${Yi} -> ${this.config.toolProvider.sdkPath}`)}static async handleSyncCppProject(e,t){if(f.info("[ClangdLspManager] Received cpp/syncProject"),!e)return f.error("[ClangdLspManager] handleSyncCppProject: workspaceRoot or devecoPath is empty"),{status:"failed",reason:"workspaceRoot or devecoPath is empty"};if(Fn(e).length===0)return f.info("[ClangdLspManager] No C++ modules found, skipping compileNative"),{status:"success"};let o=await Fi(e,async()=>{try{return await Qu(e,t),f.info("[ClangdLspManager] compileNative + merge compile_commands completed"),{status:"success"}}catch(i){let s=i instanceof Error?i.message:String(i);return f.error(`[ClangdLspManager] compileNative failed: ${s}`),{status:"failed",reason:s}}});return o.acquired?o.result:(f.info("[ClangdLspManager] 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}doStart(){return new Promise((e,t)=>{this.initResolve=e,this.initReject=t,this.armInitTimer(Ve);try{this.startProxy()}catch(r){this.failInit(r instanceof Error?r:new Error(String(r)))}})}startProxy(){let e=Tt(this.config.workspaceRoot);this.resolvedRoot=e?pe(e):pe(this.config.workspaceRoot);let t=this.config.logPath??this.getLogPath();Vi(t);let r=this.config.toolProvider.clangdPath;if(!r){let s="clangd executable not found inside DevEco Studio SDK";f.error(`[ClangdLspManager] ${s}`),this.failInit(new Error(s));return}let o=Vo.dirname(sr(this.resolvedRoot));try{Wt.mkdirSync(o,{recursive:!0})}catch(s){f.warn(`[ClangdLspManager] Failed to create compile_commands dir: ${s}`)}f.info(`[ClangdLspManager] clangdPath: ${r}`),f.info(`[ClangdLspManager] workspaceRoot: ${this.resolvedRoot}`),f.info(`[ClangdLspManager] compileCommandsDir: ${o}`);let i=new da({clangdPath:r,workspaceRoot:this.resolvedRoot,compileCommandsDir:o,logPath:t,nodePath:this.config.toolProvider.nodePath});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,f.info("[ClangdLspManager] clangd initialized");let r=this.initResolve;this.clearInitHandlers(),r?.()}else{let r=t??this.proxy?.consumeStartErrorMessage()??"unknown error";f.error(`[ClangdLspManager] clangd initialization failed: ${r}`),this.isInitialized=!1,this.proxy=null;let o=this.initReject;this.clearInitHandlers(),o?.(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){f.warn("[ClangdLspManager] dispatchNotification: missing method");return}let o=t.params;switch(r){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(r,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){f.warn(`[ClangdLspManager] proxy dispose error: ${t}`)}this.proxy=null}this.isInitialized=!1,this.initPromise=null}getLogPath(){try{let e=Vo.join(nn(),"CppCheck"),t=`${Date.now()}${process.hrtime.bigint()%1000000n}`,r=Vo.join(e,"lsp-log",t);return Wt.mkdirSync(r,{recursive:!0}),pe(r)}catch{return"auto"}}};function Zm(n){let e=Hi(n);return f.info(`[SyncGuard] ${e.reason}`),e}var Hl=(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))(Hl||{}),eh=(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))(eh||{}),bt=3,Fl=600*1e3,jl=100,pa=class{server;toolRouter;config;arktsCheckTool=null;cppCheckTool=null;cppLspTool=null;cppLspManager=null;projectState=0;workspaceRoot="";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;constructor(e){this.config=e,_n(e.debug??!1);let t,r=e.projectPath?.trim()??"";this.originalProjectPath=r,r==="."?(t=process.cwd(),g.info(`Constructor: configuredPath is '.', startPath: '${t}'`)):r===""?(t="",g.info("Constructor: configuredPath is empty, startPath remains empty")):(t=r,g.info(`Constructor: using configured path as startPath: '${t}'`));let o=Tt(t);g.info(`Constructor: findHarmonyProject('${t}') => ${o??"null"}`),this.config.projectPath=o??void 0,this.server=new EI({name:"devecocli-mcp-server",version:"0.0.1"}),this.toolRouter=Ll(),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). 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:le.object({target:le.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:le.object({files:le.array(le.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){g.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=le.object({file:le.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:le.number().describe("Line number (0-based)"),character:le.number().describe("Character offset in the line (0-based)")});for(let{name:t,description:r,feature:o}of this.getPositionFeatures())this.toolRouter.add({name:t,description:r,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:le.object({query:le.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:le.object({file:le.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:le.object({file:le.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:le.number().describe("Line number (0-based)"),character:le.number().describe("Character offset in the line (0-based)"),direction:le.enum(["incoming","outgoing"]).describe('"incoming" = who calls this function, "outgoing" = what this function calls')})},async e=>this.handleCallHierarchyCall(e))}detectStandardProtocolAvailable(){try{let e=this.config.toolProvider.lspServerPath;if(!e)return g.info("Standard LSP protocol unavailable: arkts-lang-server path not found"),!1;let t=mn.join(mn.dirname(e),"standardIndex","index.js"),r=Qm.existsSync(t);return g.info(`ArktsCheck protocol: ${r?"standard LSP":"legacy ace-server"} (standardIndex/index.js exists=${r})`),r}catch(e){return g.warn(`Failed to detect standard LSP protocol availability: ${e}`),!1}}validateContainment(e){let t=this.config.projectPath;if(t){let o=[];for(let i of e){let s=R.isPathContainedWithSymlink(i,t);s.contained||(g.warn(`Containment check failed: ${s.reason}`),o.push(s.reason))}return o.length>0?{content:[{type:"text",text:o.join(`
|
|
1305
1305
|
`)}],isError:!0}:null}let r=e.filter(o=>mn.isAbsolute(o));return r.length>0?(g.warn(`Absolute paths rejected (no project root): ${r.join(", ")}`),{content:[{type:"text",text:r.map(o=>`Absolute path is not allowed: ${o}`).join(`
|
|
1306
1306
|
`)}],isError:!0}):null}async handleCheckCall(e){let t=Array.isArray(e.files)?e.files.filter(d=>typeof d=="string"):[];if(t.length===0)return g.warn("check tool called with empty files list"),{content:[{type:"text",text:"No files provided"}],isError:!0};if(t.length>jl)return g.warn(`check tool called with ${t.length} files (max: ${jl})`),{content:[{type:"text",text:`Too many files: ${t.length}. Maximum allowed is ${jl}.`}],isError:!0};let{etsFiles:r,cppFiles:o,unsupported:i}=CI(t);i.length>0&&g.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=[];r.length>0&&this.mergeCheckResult(await this.callArktsCheck(r),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(`
|
|
1307
1307
|
`),s.join(`
|
|
1308
1308
|
`)].filter(d=>d.trim().length>0).join(`
|
|
1309
1309
|
`).trim()||"No diagnostics collected"}],isError:c}}async callArktsCheck(e){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return g.warn(`ArkTS check rejected: project is ${Hl[this.projectState]}, files: ${e.join(", ")}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return g.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 g.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,o=t.line,i=t.character;return typeof r!="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(r,e,async()=>{if(r.endsWith(".ets"))return this.arktsCheckTool.handleLspFeature(e,{file:r,line:o,character:i});let s=e;return this.cppLspTool.handleLspFeature(s,{file:r,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,r=this.cppProjectState===4&&!this.cppHasNoCppCode&&this.cppLspTool!==null;if(!t&&!r){let a=this.describeArktsState(),c=this.describeCppState();return g.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){g.warn(`workspaceSymbol ArkTS query failed: ${a.message}`)}if(r)try{this.mergeSymbolItems(await this.cppLspTool.handleWorkspaceSymbolRaw(e),i,o)}catch(a){g.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,r=t?.location?.uri??"",o=t?.location?.range?.start?.line??0,i=t?.location?.range?.start?.character??0;return`${r}:${o}:${i}`}mergeSymbolItems(e,t,r){if(e)for(let o of e){let i=this.symbolDedupKey(o);t.has(i)||(t.add(i),r.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}/${bt})`;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}/${bt})`;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,o=e.character,i=e.direction;return typeof t!="string"||typeof r!="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:r,character:o,direction:i}):this.cppLspTool.handleCallHierarchy({file:t,line:r,character:o,direction:i}))}async handleCodeActionCall(e){let{file:t,line:r,character:o}=this.extractPositionArgs(e);return t?this.routeArktsRequest("codeAction",()=>this.arktsCheckTool.handleCodeAction({file:t,line:r,character:o})):{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:o}=this.extractPositionArgs(e),i=e.newName;return!t||typeof i!="string"||i.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:o,newName:i}))}async handleTypeHierarchyCall(e){let{file:t,line:r,character:o}=this.extractPositionArgs(e),i=e.direction;return t?i!=="supertypes"&&i!=="subtypes"?{content:[{type:"text",text:'Parameter direction must be "supertypes" or "subtypes".'}],isError:!0}:this.routeArktsRequest(`typeHierarchy(${i})`,()=>this.arktsCheckTool.handleTypeHierarchy({file:t,line:r,character:o,direction:i})):{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,o=e.character;return typeof t!="string"||typeof r!="number"||typeof o!="number"?{file:null,line:0,character:0}:{file:t,line:r,character:o}}async routeArktsRequest(e,t){switch(this.projectState){case 0:return this.handleIdleCheck();case 1:case 2:return g.warn(`ArkTS ${e} rejected: project is ${Hl[this.projectState]}`),{content:[{type:"text",text:"Project is syncing, please retry in 10 seconds"}],isError:!0};case 3:return g.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 g.error(`ArkTS ${e}: unknown project state ${this.projectState}`),{content:[{type:"text",text:`Unknown project state: ${this.projectState}`}],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"),g.info(`Idle check: project '${this.config.projectPath}' already known, triggering init (${t})`),{content:[{type:"text",text:e}],isError:!0}}return this.workspaceRoot||this.originalProjectPath?(g.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}):(g.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>=bt?(g.error(`Init retry limit reached (${this.initRetryCount}/${bt}), will not auto-retry`),{content:[{type:"text",text:`Project initialization failed repeatedly (auto-retry exhausted: ${this.initRetryCount}/${bt}). 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}):(g.info(`Error check: auto-retrying (${this.initRetryCount}/${bt})`),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 g.warn(`C++ ${e} rejected: C++ project is ${eh[this.cppProjectState]}`),{content:[{type:"text",text:"C++ project is syncing (compileNative), please retry in 25 seconds"}],isError:!0};case 3:return g.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.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};default:return g.error(`C++ ${e}: unknown C++ project state ${this.cppProjectState}`),{content:[{type:"text",text:`Unknown C++ project state: ${this.cppProjectState}`}],isError:!0}}}async routeLspRequest(e,t,r){return e.endsWith(".ets")?this.routeArktsRequest(t,r):On(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",g.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>=bt?(g.error(`C++ init retry limit reached (${this.cppInitRetryCount}/${bt}), will not auto-retry`),{content:[{type:"text",text:`C++ project initialization failed repeatedly (auto-retry exhausted: ${this.cppInitRetryCount}/${bt}). 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}):(g.info(`C++ error check: auto-retrying (${this.cppInitRetryCount}/${bt})`),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 o=e.content.map(i=>i.text).filter(i=>i&&i.trim().length>0).join(`
|
|
1310
|
-
`);o&&(e.isError?t.push(o):r.push(o))}async handleRestartCall(e){let t=e.target,r=t==="cpp"?"cpp":t==="arkts"?"arkts":"all";return 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){g.info(`[restart] resetting tools + state, re-init (target=${e})`),(e==="arkts"||e==="all")&&this.restartArkts(),(e==="cpp"||e==="all")&&this.restartCpp()}restartArkts(){this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(e=>g.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,g.info("[restart] ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(e=>g.warn("Failed to re-init ArkTS project during restart:",e)))}restartCpp(){this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(e=>g.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,g.info("[restart] C++ init is running, will reinit after current init completes")):(this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>g.warn("Failed to re-init C++ project during restart:",e)))}setProjectPath(e){this.config.projectPath=e,this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(t=>{g.warn("Failed to shutdown ArktsCheckTool during setProjectPath:",t)}),this.arktsCheckTool=null),this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(t=>{g.warn("Failed to dispose ClangdLspManager during setProjectPath:",t)}),this.cppLspManager=null),this.initPromise?(this.needsReinit=!0,g.info("Project path changed while ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(t=>{g.warn("Failed to re-init project after setProjectPath:",t)})),this.cppInitPromise?(this.cppNeedsReinit=!0,g.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=>{g.warn("Failed to re-init C++ project after setProjectPath:",t)}))}async start(){this.toolRouter.registerToServer(this.server);let e=new PI;if(await this.server.connect(e),g.info("devecocli-mcp-server started"),!this.config.debug){let t=$u();t&&g.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=Tt(t);r?(g.info(`Detected project path from client root: ${r}`),this.config.projectPath=r):g.warn(`Client root '${t}' is not a HarmonyOS project`)}else this.originalProjectPath?g.warn(`PROJECT_PATH '${this.originalProjectPath}' was provided but no HarmonyOS project was found in it`):g.info("project path is empty (no PROJECT_PATH env and client did not provide roots)")}this.ensureProjectReady().catch(t=>{g.warn("Background project init failed:",t)})}async getProjectRootFromClient(){try{let t=(await this.server.server.listRoots()).roots?.[0];if(!t)return g.warn("Client did not provide any roots"),null;let r=t.uri;return this.resolveFileUri(r)}catch(e){return g.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){g.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,g.info("stdin closed (MCP client disconnected), shutting down..."),this.shutdown().then(()=>{g.info("shutdown completed, exiting process"),process.exit(0)}).catch(r=>{g.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=>{g.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?Tt(this.workspaceRoot):null;return!t&&this.originalProjectPath&&(t=Tt(this.originalProjectPath),t&&g.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()){this.ensureCppProjectReady().catch(e=>{g.warn("Background C++ project init failed:",e)}),this.projectState=3,this.arktsCheckTool=new _r(this.config.projectPath,this.config.toolProvider,this.config.nodeMaxOldSpaceSize),this.arktsCheckTool.setOnConfigChanged(()=>{g.info("Config files changed, resetting to IDLE state for reinit"),this.configChangedTriggeredResync=!0,this.needsReinit=!0,this.projectState=0});try{await this.arktsCheckTool.initialize(),this.projectState=4,this.initRetryCount=0,g.info("Project fully initialized, check tool is available")}catch(e){g.error("LSP initialization failed:",e),this.arktsCheckTool=null,this.initRetryCount++,this.projectState=5}}}async ensureProjectSynced(){let e=this.config.projectPath,t=Zm(e),r=!t.required;return g.info(`Sync check: skipHvigor=${r}, reason=${t.reason}`),this.runSync(e,{skipHvigorSync:r})}async runSync(e,t){this.projectState=2,g.info("Starting project sync...");let r=await Mr.handleSyncProject(e,this.config.toolProvider,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 o=Date.now()-this.syncSkipStartedAt,i=Math.round(o/1e3);return o>=Fl?(g.error(`Sync skipped for ${i}s due to lock contention, giving up`),this.initRetryCount++,this.syncSkipStartedAt=0,this.projectState=5,!1):(g.warn(`Sync skipped: ${r.reason}, resetting to IDLE for retry (elapsed ${i}s / ${Fl/1e3}s)`),this.projectState=0,!1)}case"failed":return g.error(`Project sync failed: ${r.reason}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1;default:return g.error(`Project sync: unknown status ${r.status}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1}}async ensureCppProjectReady(){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=>{g.warn("Failed to re-init C++ project after cppNeedsReinit:",e)}))}}async doEnsureCppProjectReady(){let e=this.config.projectPath;if(!e){g.info("[Cpp] No project path, skipping C++ init");return}this.cppProjectState=1;let t=Fn(e);if(t.length===0){g.info('[Cpp] No C++ modules found, C++ tools will return "no C++ code"'),this.cppHasNoCppCode=!0,this.cppProjectState=4,this.cppInitRetryCount=0;return}if(this.cppHasNoCppCode=!1,g.info(`[Cpp] Found ${t.length} C++ module(s): ${t.map(r=>r.name).join(", ")}`),!!await this.runSyncCpp(e)){this.cppProjectState=3,this.cppLspManager=new Yo({workspaceRoot:e,toolProvider:this.config.toolProvider});try{await this.cppLspManager.start(),this.cppCheckTool=new jr(this.cppLspManager,this.config.toolProvider),this.cppLspTool=new $r(this.cppLspManager),this.cppProjectState=4,this.cppInitRetryCount=0,g.info("[Cpp] C++ project fully initialized, C++ tools are available")}catch(r){g.error("[Cpp] C++ LSP initialization failed:",r),this.cppLspManager&&this.cppLspManager.dispose().catch(()=>{}),this.cppLspManager=null,this.cppCheckTool=null,this.cppLspTool=null,this.cppInitRetryCount++,this.cppProjectState=5}}}async runSyncCpp(e){this.cppProjectState=2,g.info("[Cpp] Starting C++ project sync (compileNative)...");let t=await Yo.handleSyncCppProject(e,this.config.toolProvider);switch(t.status){case"success":return this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,!0;case"skipped":{this.cppSyncSkippedDueToLock=!0,this.cppSyncSkipStartedAt===0&&(this.cppSyncSkipStartedAt=Date.now());let r=Date.now()-this.cppSyncSkipStartedAt,o=Math.round(r/1e3);return r>=Fl?(g.error(`[Cpp] C++ sync skipped for ${o}s due to lock contention, giving up`),this.cppInitRetryCount++,this.cppSyncSkipStartedAt=0,this.cppProjectState=5,!1):(g.warn(`[Cpp] C++ sync skipped: ${t.reason}, resetting to IDLE_CPP for retry (elapsed ${o}s)`),this.cppProjectState=0,!1)}case"failed":return g.error(`[Cpp] C++ project sync failed: ${t.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){g.warn("Failed to close MCP server connection:",e)}g.info("devecocli-mcp-server stopped"),Hu(),ju()}getToolRouter(){return this.toolRouter}getServer(){return this.server}};function CI(n){let e=[],t=[],r=[];for(let o of n)mn.extname(o).toLowerCase()===".ets"?e.push(o):On(o)?t.push(o):r.push(o);return{etsFiles:e,cppFiles:t,unsupported:r}}function $l(n){return new pa(n)}import*as Ul from"fs";import*as hn from"path";import{spawn as II}from"child_process";async function th(n){_n(!1);let{serverPath:e,logPath:t,projectPath:r,serverMaxSize:o}=await AI(n),i=TI(e,t,r,n.toolProvider,o);g.info("ace-server started, bridging stdio (initialize is left to the client)"),xI(i)}async function AI(n){b()||n.toolProvider.require({clt:!1});let e;if(n.projectPath)e=pe(hn.resolve(n.projectPath)),g.info(`projectPath=specified ('${e}'), no search`);else if(n.autoDetect){let a=Bi(process.cwd());e=pe(a??process.cwd()),g.info(`findHarmonyProjectInDir('${process.cwd()}') => ${a??"null, fallback to cwd"}`)}else e=pe(process.cwd()),g.info(`projectPath=cwd ('${e}'), no search (pass --auto-detect to search subdirs)`);let t=n.toolProvider.sdkPath,r=n.toolProvider.lspServerPath;r||(g.error("ace-server not found in DevEco Studio installation."),process.exit(1));let o=hn.resolve(hn.dirname(r),"standardIndex","index.js"),i=hn.join(nn(),"lsp-server",String(Date.now()));Ul.mkdirSync(i,{recursive:!0});let s=DI(e,t);return g.info(`projectPath=${e}, sdkPath=${t}, serverPath=${o}, logPath=${i}, serverMaxSize=${s}MB`),{projectPath:e,serverPath:o,logPath:i,serverMaxSize:s}}function DI(n,e){let t=process.env.NODE_MAX_OLD_SPACE_SIZE,r=t?parseInt(t,10):NaN,o=Number.isFinite(r)&&r>0?r:void 0,i=RI(n,e),s=Ji(i,o);return g.info(`[serve-lsp] serverMaxSize=${s}MB (moduleCount=${i}, override=${o??"none"})`),s}function RI(n,e){try{let t=[];return new Yn(n,e).getAllDependencyMap(t).status==="OK"?t.length:new kt(n).getAllModuleInfo().length}catch{return 0}}function TI(n,e,t,r,o){let i=hn.join(e,"lspLog");Ul.mkdirSync(i,{recursive:!0});let s=kI(n,i,t,r.sdkPath,o),a=r.nodePath;return g.info(`[serve-lsp] spawn: ${a} ${s.join(" ")}`),II(a,s,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function kI(n,e,t,r,o){let i=U(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}`,n,"--stdio",`--logger-path=${i}`,"--logger-level=TRACE",`--projectPath=${U(t)}`,`--sdkPath=${U(r)}`]}function xI(n){n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("data",e=>{g.error(`[ace-server] ${e.toString("utf8").trim()}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{g.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{g.info(`ace-server exited with code ${e}`),process.exit(e??0)})}import*as nh from"fs";import*as Jn from"path";import{spawn as NI}from"child_process";async function rh(n){_n(!1);let{clangdPath:e,compileCommandsDir:t,projectPath:r}=await LI(n),o=Jn.join(t,"compile_commands.json");nh.existsSync(o)||g.warn(`compile_commands.json not found at ${o}. Cross-file navigation/completion will be limited. Run \`devecocli build\` first to generate it.`);let i=OI(e,t,r);g.info("clangd started, bridging stdio (initialize is left to the client)"),_I(i)}async function LI(n){let e;if(n.projectPath)e=pe(Jn.resolve(n.projectPath)),g.info(`projectPath=specified ('${e}'), no search`);else if(n.autoDetect){let i=Bi(process.cwd());e=pe(i??process.cwd()),g.info(`findHarmonyProjectInDir('${process.cwd()}') => ${i??"null, fallback to cwd"}`)}else e=pe(Jn.resolve(process.cwd())),g.info(`projectPath=cwd ('${e}'), no search (pass --auto-detect to search subdirs)`);let t=n.toolProvider.clangdPath;t||(g.error("clangd not found in DevEco Studio SDK. Expected at <deveco>/sdk/default/openharmony/native/llvm/bin/clangd"),process.exit(1));let r=sr(e),o=Jn.dirname(r);return g.info(`projectPath=${e}, clangdPath=${t}, compileCommandsDir=${o}`),{projectPath:e,clangdPath:t,compileCommandsDir:o}}function OI(n,e,t){let r=MI(e);return g.info(`[serve-lsp-cpp] spawn: ${n} ${r.join(" ")}`),NI(n,r,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function MI(n){return[`--compile-commands-dir=${U(n)}`,"--log=info","--pch-storage=memory"]}function _I(n){n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("data",e=>{g.error(`[clangd] ${e.toString("utf8").trim()}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{g.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{g.info(`clangd exited with code ${e}`),process.exit(e??0)})}async function jI(){let n=process.env.PROJECT_PATH||"",e=process.env.NODE_MAX_OLD_SPACE_SIZE,t=process.env.DEBUG==="true"||process.env.DEBUG==="1",r=await I.new();b()||r.require({clt:!1});let i=$l({toolProvider:r,projectPath:n,nodeMaxOldSpaceSize:e,debug:t}),s=async()=>{await i.shutdown(),process.exit(0)};process.once("SIGINT",s),process.once("SIGTERM",s),process.platform==="win32"&&process.once("SIGBREAK",s);try{await i.start()}catch(a){console.error("Failed to start MCP server:",a),process.exit(1)}}var Bl=new FI("serve").description("Host bundled auxiliary protocol servers");Bl.command("mcp").description("Start a local stdio-based MCP server").action(async()=>{await jI()});Bl.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));let e=await I.new();n.arkts?await th({toolProvider:e,projectPath:n.projectPath,autoDetect:n.autoDetect}):n.cpp?await rh({toolProvider:e,projectPath:n.projectPath,autoDetect:n.autoDetect}):(console.error("Use --arkts or --cpp to specify which language server to start."),process.exit(1))});var oh=Bl;import{Command as $R,InvalidArgumentError as Nd}from"commander";import{red as $a,dim as UR}from"colorette";import*as ne from"fs";import*as Et from"path";import CR from"adm-zip";import IR from"proper-lockfile";import py from"ora";import*as pt from"fs";import*as oi from"path";var gn=["harmonyos-guides","harmonyos-references","best-practices","harmonyos-faqs","harmonyos-releases","harmonyos-roadmap"],Kn={"harmonyos-guides":"\u5F00\u53D1\u6307\u5357","harmonyos-references":"API\u53C2\u8003","best-practices":"\u6700\u4F73\u5B9E\u8DF5","harmonyos-faqs":"FAQ","harmonyos-releases":"\u7248\u672C\u8BF4\u660E","harmonyos-roadmap":"\u53D8\u66F4\u9884\u544A"};var Br="1.9.1",qz=48*1024*1024,ih=280,sh=6,ah=100,ch=3,lh=28,Wl=10,dh=/API参考|APIReference/i,Jo=200,uh=12,ph=4,Gl=8,fh=6,fa=700,ql=250,zl=400,mh=1320,hh=120,gh=450,yh=250,wh=500,vh=480,Sh=80,bh=200,Eh=60,Ph=200,Ch=40,Ih=200,Ah=200,Dh=40,Wr=500,Rh=Object.fromEntries(gn.map((n,e)=>[Kn[n],e])),yn=Object.fromEntries(gn.map((n,e)=>[n,e]));import*as Ko from"fs";import*as O from"path";import{fileURLToPath as Nh}from"url";import*as wn from"fs";import*as Th from"path";import{homedir as HI}from"os";var $I="deveco-cli",Vl,Xn=class extends Error{constructor(e){super(e),this.name="CliDataDirError"}};function UI(){let n=process.env.DEVECO_CLI_DATA_DIR;return n!==void 0&&Ni(n)!==""}function kh(){let n=process.env.DEVECO_CLI_DATA_DIR,t=(n===void 0||n===""?"":Ni(n))||Th.join(HI(),".local","share",$I);try{return Li(t)}catch(r){throw new Xn(r instanceof Error?r.message:String(r))}}async function xh(){let n=kh();await wn.promises.mkdir(n,{recursive:!0});let e;try{e=await wn.promises.realpath(n)}catch(r){throw new Xn(`DEVECO_CLI_DATA_DIR is not usable: ${r instanceof Error?r.message:String(r)}`)}if(!(await wn.promises.stat(e)).isDirectory())throw new Xn("DEVECO_CLI_DATA_DIR must be a writable directory.");return Vl=e,e}function ma(n){let e=Gr();return UI()?[`Data directory (DEVECO_CLI_DATA_DIR): ${e}`,"If you changed this in System Environment Variables, open a new terminal and retry.",`Log file: ${n}`]:[`Data directory (default): ${e}`,"To use a custom location, set DEVECO_CLI_DATA_DIR and open a new terminal.",`Log file: ${n}`]}function Gr(){if(Vl!==void 0)return Vl;let n=kh();try{if(wn.existsSync(n))return wn.realpathSync(n)}catch{}return n}var BI="docs";function qr(){return O.join(Gr(),BI)}function Z(){return O.join(qr(),".index")}function ha(){return O.join(Z(),"build.lock")}function Xo(){return O.join(Z(),"build-status.json")}function zr(){return O.join(Z(),"build-meta.json")}function Zn(){return O.join(Z(),"search.db")}function Zo(){return O.join(Z(),"sqlite-backend.json")}function Qo(){return O.join(Z(),"jieba-backend.json")}function Gt(){return O.join(Z(),".tmp")}function WI(){return O.join(Gr(),"logs")}function Vr(){return O.join(WI(),"doc-init.log")}function GI(n,e){let t=e;for(;!t.endsWith(`${O.sep}dist`)&&t!==O.dirname(t);)t=O.dirname(t);return t}function Lh(n,e){return O.dirname(GI(n,e))}function Oh(){let n=Nh(import.meta.url),e=O.dirname(n);return n.includes(`${O.sep}dist${O.sep}`)?Lh(n,e):O.join(e,"..","..","..")}function qI(...n){let e=Nh(import.meta.url),t=O.dirname(e);return e.includes(`${O.sep}dist${O.sep}`)?[O.join(Lh(e,t),...n)]:[O.join(t,"..","..","..",...n)]}function Mh(...n){let e=Oh(),t=Ko.realpathSync(e);for(let r of qI(...n))try{let o=Ko.lstatSync(r);if(o.isSymbolicLink()||!o.isFile())throw new Error(`Unsafe documentation package asset: ${n.join("/")} must be a regular file.`);let i=Ko.realpathSync(r);if(!co(i,t))throw new Error(`Unsafe documentation package asset: ${n.join("/")} is outside the package.`);return i}catch(o){if(o.code!=="ENOENT")throw o}return null}function vn(){return Mh("docs.zip")}function Yl(){return Mh("index.zip")}function _h(){return O.join(Oh(),"index","data")}import*as qt from"fs";import*as Qn from"path";var zt=["harmonyos-terms.txt","harmonyos-synonyms.json","harmonyos-stopwords.txt"],ga=class extends Error{constructor(e){super(e),this.name="LexiconNotFoundError"}};function Fh(n){return n instanceof ga}var Jl=null;function Kl(n){Jl=n}function Xl(){if(Jl)return Jl;let n=Z();if(zt.every(o=>qt.existsSync(Qn.join(n,o))))return n;let t=_h();if(zt.every(o=>qt.existsSync(Qn.join(t,o))))return t;throw new ga("Lexicon files not found. Install the documentation index first (index.zip).")}function jh(){Xl()}function er(n){let e=Qn.join(Xl(),n);return qt.readFileSync(e,"utf-8")}function Hh(n,e){return qt.readFileSync(Qn.join(e,n),"utf-8")}async function $h(n,e=Xl()){await qt.promises.mkdir(n,{recursive:!0});for(let t of zt){let r=Qn.join(e,t),o=Qn.join(n,t);await qt.promises.copyFile(r,o)}}import*as ya from"fs";import*as Uh from"path";import*as Bh from"yauzl";var ei=null;function zI(n){return new Promise((e,t)=>{Bh.open(n,{lazyEntries:!0,decodeStrings:!1,autoClose:!1},(r,o)=>{if(r||!o){t(r??new Error(`Failed to open zip: ${n}`));return}e(o)})})}function VI(n){let e=n.fileName;return(Buffer.isBuffer(e)?e.toString("utf-8"):String(e)).replace(/\\/g,"/")}function YI(n){let e=new Map;return new Promise((t,r)=>{n.readEntry(),n.on("entry",o=>{let i=VI(o);i.endsWith("/")||e.set(i,o),n.readEntry()}),n.on("end",()=>{t(e)}),n.on("error",r)})}function JI(){ei?.zipfile.close(),ei=null}async function KI(n){let e=Uh.resolve(n),t=await ya.promises.stat(e),r=ei;if(r&&r.zipPath===e&&r.mtimeMs===t.mtimeMs&&r.size===t.size)return r;JI();let o=await zI(e),i=await YI(o);return ei={zipPath:e,mtimeMs:t.mtimeMs,size:t.size,zipfile:o,entries:i,readChain:Promise.resolve()},ei}function XI(n,e){return new Promise((t,r)=>{n.openReadStream(e,(o,i)=>{if(o||!i){r(o??new Error(`Failed to read zip entry: ${e.fileName}`));return}let s=[];i.on("data",a=>{s.push(Buffer.isBuffer(a)?a:Buffer.from(a))}),i.on("end",()=>{t(Buffer.concat(s))}),i.on("error",r)})})}async function ZI(n,e){let t=n.readChain,r;n.readChain=new Promise(o=>{r=o}),await t;try{return await XI(n.zipfile,e)}finally{r()}}function QI(n){let e=n.replace(/\\/g,"/").replace(/\.md$/,"");if(e.split("/").includes(".."))throw new Error("Invalid document ID: path traversal is not allowed.");return[`docs/${e}.md`,`${e}.md`,`docs/${e}`,e]}function eA(n,e){for(let t of e){let r=n.get(t.replace(/\\/g,"/"));if(r)return r}return null}async function Wh(n){let e=vn();if(!e)throw new Error("docs.zip not found");let t=await KI(e),r=eA(t.entries,QI(n));if(!r)throw new Error(`Document not found: ${n}`);return(await ZI(t,r)).toString("utf-8")}function Zl(){let n=vn();return n!==null&&ya.existsSync(n)}import*as he from"fs";import*as Vt from"path";import Gh from"adm-zip";import*as ti from"fs";import*as va from"path";var wa=class extends Error{constructor(e){super(`Unsafe documentation path: ${e}`),this.name="DocPathSafetyError"}};function ni(n){return n instanceof Xn||n instanceof wa||n instanceof Error&&(n.name==="CliDataDirError"||n.name==="DocPathSafetyError")}function td(n){return new wa(n)}function tA(){return yt(Gr())}function ed(n,e,t){let r=xi(n,e);if(r===null)throw td(`${t} resolves outside the data directory.`);return r}async function Ql(n,e){await ti.promises.mkdir(n,{recursive:!0});let t=ed(n,e,"directory");if(!(await ti.promises.stat(t)).isDirectory())throw td("path must be a directory.")}function ri(n){let e=tA();try{let t=ed(n,e,"file");if(!ti.statSync(t).isFile())throw td("path must be a regular file.")}catch(t){if(t.code==="ENOENT"){ed(va.dirname(n),e,"file parent");return}throw t}}async function Yr(n={}){let e=n.mode??"write",t=await xh();await Ql(qr(),t),await Ql(Z(),t),e==="write"&&await Ql(Gt(),t);for(let r of[Zn(),zr(),Xo(),ha(),Qo(),Zo(),...zt.map(o=>va.join(Z(),o))])ri(r)}var nd=["search.db","build-meta.json",...zt],nA=["corpus.json","corpus-offsets.json","orama.dpack"];async function rA(n){for(let e of nA)await he.promises.rm(Vt.join(n,e),{force:!0})}async function oA(n){let e=await he.promises.readdir(n,{withFileTypes:!0});for(let t of e)t.name!==".index"&&await he.promises.rm(Vt.join(n,t.name),{recursive:!0,force:!0})}function qh(n){let t=new Gh(n).getEntry("build-meta.json");if(!t)throw new Error("index.zip is missing build-meta.json");return JSON.parse(t.getData().toString("utf-8"))}async function iA(n){let e=Z();await he.promises.mkdir(e,{recursive:!0});for(let t of nd){let r=Vt.join(e,t);await he.promises.rm(r,{force:!0}),await he.promises.rename(Vt.join(n,t),r)}await rA(e),await he.promises.rm(Gt(),{recursive:!0,force:!0})}function zh(n){let e=Yl();if(!e)return!1;try{let t=qh(e);return t.indexVersion===Br&&t.docsZipSha256===n&&t.segmentCount>0}catch{return!1}}async function Vh(n){await Yr({mode:"write"});let e=Yl();if(!e)throw new Error("index.zip not found");let t=qh(e);if(t.docsZipSha256!==n)throw new Error("Bundled index.zip does not match docs.zip. Rebuild index.zip with npm run build:index.");if(t.segmentCount<=0)throw new Error("Bundled index.zip is empty");let r=Gt();await he.promises.rm(r,{recursive:!0,force:!0}),await he.promises.mkdir(r,{recursive:!0});let o=new Gh(e);for(let s of nd){let a=o.getEntry(s);if(!a)throw new Error(`index.zip is missing ${s}`);await he.promises.writeFile(Vt.join(r,s),a.getData())}let i=JSON.parse(await he.promises.readFile(Vt.join(r,"build-meta.json"),"utf-8"));if(!he.existsSync(Vt.join(r,"search.db")))throw new Error("index.zip is missing search.db");return await iA(r),await he.promises.mkdir(qr(),{recursive:!0}),await oA(qr()),i}async function Yh(){await he.promises.rm(Gt(),{recursive:!0,force:!0});let n=Z();for(let e of nd)await he.promises.rm(Vt.join(n,e),{force:!0})}import{createHash as Jh}from"crypto";import*as Kh from"fs";async function Sa(n){return new Promise((e,t)=>{let r=Jh("sha256"),o=Kh.createReadStream(n);o.on("data",i=>r.update(i)),o.on("error",t),o.on("end",()=>e(r.digest("hex")))})}function Xh(n){return Jh("sha256").update(n,"utf8").digest("hex")}var rd=null;function sA(){let n=er("harmonyos-synonyms.json");return JSON.parse(n)}function aA(n){let e=new Map;for(let t of n){let r=t.map(o=>o.trim()).filter(Boolean);for(let o of r){let i=r.filter(s=>s!==o);e.set(o.toLowerCase(),i),o!==o.toLowerCase()&&e.set(o,i)}}return e}function cA(){let n=aA(sA()),e=new Map;for(let[t,r]of n)e.set(t,new Set(r));return e}function lA(){return rd||(rd=cA()),rd}function od(n,e){let t=lA(),r=n.split(/\s+/).filter(Boolean),o=new Set,i=Number.isFinite(e)?e:r.length;for(let s=0;s<r.length&&o.size<i;s+=1){let a=r[s];o.add(a);let c=t.get(a)??t.get(a.toLowerCase());if(c)for(let l of c){if(o.size>=i)break;o.add(l)}}return[...o].join(" ")}function Zh(n,e){let t=e?Hh(n,e):er(n);return Xh(t)}function ba(n){return Zh("harmonyos-synonyms.json",n)}function Ea(n){return Zh("harmonyos-terms.txt",n)}var dA={state:"idle",phase:0,phaseLabel:"Idle",current:0,total:0,message:"",startedAt:0,updatedAt:0,error:null};async function Pa(){try{let n=await pt.promises.readFile(Xo(),"utf-8");return JSON.parse(n)}catch{return{...dA}}}async function id(n){let e=Xo();await pt.promises.mkdir(oi.dirname(e),{recursive:!0}),await pt.promises.writeFile(e,JSON.stringify(n,null,2))}function Qh(n){let e=Date.now();return{state:"extracting",phase:1,phaseLabel:"Extracting documentation",current:0,total:0,message:n,startedAt:e,updatedAt:e,error:null}}async function Sn(n){let t={...await Pa(),...n,updatedAt:Date.now()};return await id(t),t}async function sd(){let n=vn();return n?Sa(n):null}async function ad(){try{let n=await pt.promises.readFile(zr(),"utf-8");return JSON.parse(n)}catch{return null}}async function Ca(n=!1){if(n)return"no-index";let e=await ad();if(!e||e.segmentCount===0)return"no-index";let t=await sd();return t&&e.docsZipSha256!==t?"docs-changed":e.indexVersion!==Br?"engine-upgraded":e.termsHash!==Ea()?"terms-changed":e.synonymsHash!==ba()?"synonyms-changed":null}function ii(){if(!Zl()||!pt.existsSync(Zn())||!pt.existsSync(zr()))return!1;let n=oi.dirname(Zn());if(!zt.every(e=>pt.existsSync(oi.join(n,e))))return!1;try{let e=pt.readFileSync(zr(),"utf-8");return JSON.parse(e).segmentCount>0}catch{return!1}}async function cd(n=!1){return n?!0:Zl()?ii()?await Ca()!==null:!0:!1}async function eg(){let n=await Pa();return["installing","indexing","persisting"].includes(n.state)}import*as be from"fs";import*as iy from"os";import*as Me from"path";var tg=new Set(["picker","dialog","sheet","panel","popup","menu","layout","view","gesture","animation","transition","recognizer","manager","kit"]),ld=new Set(["wifi","wlan","notification","bluetooth","location","sensor","power","battery","account","pasteboard","calendar","telephony","contact"]),ng=new Set(["a","an","and","api","app","application","arkts","arkui","for","get","harmonyos","how","in","oh","ohos","on","or","set","the","to","use","using","what","when","where","which","with","without","data","file","main","model","name","network","stage","system","type","user"]),rg=new Set(["ability","extension","module","service","context","options","config","info","event","code","state","type","data","request","response","client","server","handler","helper","utils","factory","builder","listener","callback","observer","provider","consumer","delegate","adapter","driver","buffer","stream","channel","session","task","worker","controller","component","container","attribute","descriptor","modifier","validator","parser","formatter","encoder","decoder","filter","converter","generator","iterator","dispatcher","resolver","scanner","tracker","monitor","scheduler","renderer","loader","subscriber","proxy","button","surface","stack","heap","map","set","array","list"]);var uA=/@ohos\.[a-z][a-zA-Z0-9.]+/gi,pA=/\b[a-z][a-z0-9]*[A-Z][a-zA-Z0-9]+\b/g,fA=/[A-Z][a-zA-Z0-9]{2,}/g,mA=/@[A-Z][a-zA-Z0-9]*/g,hA=/[a-z][a-zA-Z0-9]*\.[a-zA-Z][a-zA-Z0-9]+/g,og=6,gA=/^[a-z][a-z0-9]{2,}$/,yA=/^([a-z][a-z0-9]{2,})\s+([a-z][a-z0-9]{2,})$/,wA=/^@ohos\.[a-z][a-zA-Z0-9.]+$/i,vA=/^[a-z][a-z0-9]*[A-Z][a-zA-Z0-9]+$/,SA=/^[A-Z][a-zA-Z0-9]+$/;function bA(n){return`"${n.replace(/"/g,'""')}"`}function ai(n,e){let t=[...new Set(n.filter(Boolean))];return t.length===0?'""':t.map(bA).join(` ${e} `)}function si(n){return ai(n,"OR")}function ig(n,e){let t=[...new Set(n.filter(Boolean))],r=[...new Set(e.filter(Boolean))];return t.length===0||r.length===0?si([...t,...r]):`(${si(t)}) AND (${si(r)})`}function ci(n){return wA.test(n)}function sg(n){return vA.test(n)&&n.length>=og}function EA(n){return SA.test(n)}function li(n){return ci(n)||sg(n)||EA(n)}function PA(n){let e=n.trim().toLowerCase();return rg.has(e)?!1:tg.has(e)}function CA(n,e){let t=e.trim().charAt(0).toUpperCase(),r=e.trim().slice(1).toLowerCase();return`${n.trim().toLowerCase()}${t}${r}`}function Ia(n){let t=n.replace(/^@ohos\./i,"").split(".").filter(Boolean);return t[t.length-1]?.trim()||void 0}function dd(n){return[...n.matchAll(uA)].map(e=>e[0])}function ud(n,e=og){let t=[];for(let r of n.matchAll(pA))r[0].length>=e&&t.push(r[0]);return t}function Jr(n){return n.filter(e=>{let t=e.toLowerCase();return!n.some(r=>{if(r===e)return!1;let o=r.toLowerCase();return o.length>t.length&&o.endsWith(t)&&t.length>=4})})}function ft(n,e){let t=e.trim();if(!t)return;n.add(t);let r=t.toLowerCase();r!==t&&n.add(r)}function IA(n){let e=new Set;ft(e,n);let t=Ia(n);return t&&ft(e,t),Jr([...e])}function Aa(n){if(ci(n))return IA(n);let e=new Set;return ft(e,n),Jr([...e])}function Da(n){let e=n.trim();if(/[A-Z]/.test(e))return null;let t=e.match(yA);if(!t)return null;let r=t[1].toLowerCase(),o=t[2].toLowerCase();if(!gA.test(r)||ng.has(r)||!PA(o))return null;let i=CA(r,o);return{first:r,second:o,camelCase:i,lower:i.toLowerCase()}}function pd(n){let e=Da(n.trim());return!e||e.second!=="manager"?null:e}function AA(n){let e=n.match(/^([a-z][a-z0-9]*)Manager$/i);return e?e[1].toLowerCase():null}function ag(n){let e=n.trim(),t=pd(e);if(t&&ld.has(t.first))return!0;if(sg(e)){let r=AA(e);return r!==null&&ld.has(r)}return!1}function fd(n,e,t){let r=t.toLowerCase(),o=new RegExp(`@ohos\\.[^\\s(]*${t}`,"i");for(let i of[n,e])if(i&&(i.toLowerCase().includes(r)||o.test(i)))return!0;return!1}function md(n){let e=n.trim();if(li(e))return Aa(e);let t=new Set;for(let r of dd(n)){ft(t,r);let o=Ia(r);o&&ft(t,o)}for(let r of ud(n))ft(t,r);for(let r of n.matchAll(mA))t.add(r[0]);for(let r of n.matchAll(hA))t.add(r[0]);for(let r of n.matchAll(fA))r[0].length>=4&&t.add(r[0]);return Jr([...t])}function cg(n){let e=n.trim();if(li(e))return Aa(e);let t=new Set,r=Da(e);r&&ft(t,r.camelCase);for(let o of md(e))t.add(o);for(let o of e.matchAll(/\b[a-z][a-zA-Z0-9]{3,}\b/g)){let i=o[0];i!==i.toLowerCase()&&t.add(i)}return Jr([...t])}function lg(n){return li(n)}var J={pureApiSymbol:/^[A-Z][a-zA-Z0-9]+$/,stageModelExact:/^Stage\s*模型$/i,stageModelEnglishExact:/^stage\s+model$/i,stageModel:/Stage\s*模型/i,stageModelEntryPage:/Stage\s*模型.*EntryAbility.*(页面|新页面)/,declarePermissionBoost:/声明.*权限|应用权限.*声明|如何声明应用权限/,declarePermissionCatalog:/如何声明应用权限/,declarePermissionTokens:/如何声明应用权限|声明应用权限/,uiAbilityLifecycleBoost:/UIAbility.*生命周期|生命周期.*UIAbility|UIAblity/i,uiAbilityLifecycleCatalog:/UIAblity.*生命周期|UIAbility.*生命周期/i,entryAbilityPage:/EntryAbility.*(页面|启动|跳转|新页面)/,stateDecoratorBoost:/@State|@Prop|@Link|@Provide|@Consume/,stateDecoratorCatalog:/@State\s*装饰器|@Prop\s*装饰器|@Link\s*装饰器/,stateManagement:/状态管理原理/,routerRoute:/Router\s+路由/,dialogPopupExact:/^Dialog\s+弹窗$/,dialogPopupBoost:/Dialog\s+弹窗/};function dg(n){return J.pureApiSymbol.test(n.trim())}function di(n){let e=n.trim();return J.stageModelExact.test(e)||J.stageModelEnglishExact.test(e)}function ug(n){let e=[];return di(n.trim())&&e.push("Stage\u6A21\u578B","Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0"),J.declarePermissionTokens.test(n)&&e.push("\u58F0\u660E\u6743\u9650"),J.stageModelEntryPage.test(n)&&e.push("\u9875\u9762\u8DEF\u7531","pushUrl"),/UIAblity|UIAbility/.test(n)&&/生命周期/.test(n)&&e.push("UIAbility\u7EC4\u4EF6\u751F\u547D\u5468\u671F"),e}function pg(n){return di(n)?{expandedQuery:"Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0",tokens:["Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0","Stage\u6A21\u578B"]}:null}var DA=[{matches:n=>J.uiAbilityLifecycleBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.85},{catalog:"harmonyos-references",multiplier:.65},{catalog:"harmonyos-faqs",multiplier:.82}]},{matches:n=>di(n),weights:[{catalog:"harmonyos-guides",multiplier:1.85},{catalog:"harmonyos-references",multiplier:.55},{catalog:"harmonyos-faqs",multiplier:.85}]},{matches:n=>!di(n)&&J.stageModel.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-references",multiplier:.65}]},{matches:n=>J.entryAbilityPage.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.75},{catalog:"harmonyos-references",multiplier:.48}]},{matches:n=>J.declarePermissionBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"best-practices",multiplier:.68}]},{matches:n=>J.stateDecoratorBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.75},{catalog:"harmonyos-references",multiplier:.42}]},{matches:n=>J.stateManagement.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.6},{catalog:"best-practices",multiplier:.78}]},{matches:n=>J.routerRoute.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-references",multiplier:1.4},{catalog:"harmonyos-faqs",multiplier:.72},{catalog:"best-practices",multiplier:.72}]},{matches:n=>J.dialogPopupBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-faqs",multiplier:.72},{catalog:"best-practices",multiplier:.72}]}];function RA(n,e){for(let{catalog:t,multiplier:r}of e){let o=yn[t];n.set(o,(n.get(o)??1)*r)}}function fg(n,e){for(let t of DA)t.matches(n)&&RA(e,t.weights)}function mg(n,e){if(e!==void 0)return!1;let t=n.trim();return ci(t)||J.pureApiSymbol.test(t)||ag(t)}function hg(n){let e=n.trim();if(ci(e)||J.pureApiSymbol.test(e))return"harmonyos-references";if(di(e)||J.uiAbilityLifecycleCatalog.test(e)||J.stateDecoratorCatalog.test(e)||J.stateManagement.test(e)||J.declarePermissionCatalog.test(e)||J.stageModelEntryPage.test(e)||J.routerRoute.test(e)||J.dialogPopupExact.test(e))return"harmonyos-guides"}import*as Kr from"fs";import*as yg from"path";var Ra=null,hd=null,gd=null;function TA(){return Kr.existsSync(Qo())}function kA(n){let e=Qo(),t={backend:"jieba-wasm",reason:"native-jieba-load-failed",message:n,createdAt:new Date().toISOString()};Kr.mkdirSync(yg.dirname(e),{recursive:!0}),ri(e),Kr.writeFileSync(e,JSON.stringify(t,null,2))}function xA(){if(Ra)return Ra;let n=er("harmonyos-stopwords.txt");return Ra=new Set(n.split(`
|
|
1311
|
-
`).map(e=>e.trim()).filter(Boolean)),Ra}function NA(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t]?.trim();if(!r)continue;let o=n[t+1]?.trim();if(r==="@"&&o&&/^[A-Z][a-zA-Z0-9]*$/.test(o)){e.push(`@${o}`),t+=1;continue}e.push(r)}return e}function wg(n){let e=xA(),t=[];for(let r of NA(n)){let o=r.trim();!o||e.has(o)||(t.push(o.toLowerCase()),/[A-Z]/.test(o)&&/[a-zA-Z]/.test(o)&&t.push(o))}return t}async function vg(n){let{dict:e}=await import("@node-rs/jieba/dict.js"),t=n.withDict(e),r=er("harmonyos-terms.txt");return t.loadDict(Buffer.from(r,"utf-8")),t}async function LA(){let{Jieba:n}=await import("@node-rs/jieba");return vg(n)}async function gg(){let{Jieba:n}=await import("@node-rs/jieba-wasm32-wasi");return vg(n)}async function OA(){let n=await import("jieba-wasm"),e=er("harmonyos-terms.txt");return n.with_dict(e),{cut:n.cut,cutForSearch:n.cut_for_search}}async function MA(){if(
|
|
1310
|
+
`);o&&(e.isError?t.push(o):r.push(o))}async handleRestartCall(e){let t=e.target,r=t==="cpp"?"cpp":t==="arkts"?"arkts":"all";return 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){g.info(`[restart] resetting tools + state, re-init (target=${e})`),(e==="arkts"||e==="all")&&this.restartArkts(),(e==="cpp"||e==="all")&&this.restartCpp()}restartArkts(){this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(e=>g.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,g.info("[restart] ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(e=>g.warn("Failed to re-init ArkTS project during restart:",e)))}restartCpp(){this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(e=>g.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,g.info("[restart] C++ init is running, will reinit after current init completes")):(this.cppProjectState=0,this.ensureCppProjectReady().catch(e=>g.warn("Failed to re-init C++ project during restart:",e)))}setProjectPath(e){this.config.projectPath=e,this.arktsCheckTool&&(this.arktsCheckTool.shutdown().catch(t=>{g.warn("Failed to shutdown ArktsCheckTool during setProjectPath:",t)}),this.arktsCheckTool=null),this.cppCheckTool=null,this.cppLspTool=null,this.cppLspManager&&(this.cppLspManager.dispose().catch(t=>{g.warn("Failed to dispose ClangdLspManager during setProjectPath:",t)}),this.cppLspManager=null),this.initPromise?(this.needsReinit=!0,g.info("Project path changed while ArkTS init is running, will reinit after current init completes")):(this.projectState=0,this.ensureProjectReady().catch(t=>{g.warn("Failed to re-init project after setProjectPath:",t)})),this.cppInitPromise?(this.cppNeedsReinit=!0,g.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=>{g.warn("Failed to re-init C++ project after setProjectPath:",t)}))}async start(){this.toolRouter.registerToServer(this.server);let e=new PI;if(await this.server.connect(e),g.info("devecocli-mcp-server started"),!this.config.debug){let t=$u();t&&g.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=Tt(t);r?(g.info(`Detected project path from client root: ${r}`),this.config.projectPath=r):g.warn(`Client root '${t}' is not a HarmonyOS project`)}else this.originalProjectPath?g.warn(`PROJECT_PATH '${this.originalProjectPath}' was provided but no HarmonyOS project was found in it`):g.info("project path is empty (no PROJECT_PATH env and client did not provide roots)")}this.ensureProjectReady().catch(t=>{g.warn("Background project init failed:",t)})}async getProjectRootFromClient(){try{let t=(await this.server.server.listRoots()).roots?.[0];if(!t)return g.warn("Client did not provide any roots"),null;let r=t.uri;return this.resolveFileUri(r)}catch(e){return g.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){g.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,g.info("stdin closed (MCP client disconnected), shutting down..."),this.shutdown().then(()=>{g.info("shutdown completed, exiting process"),process.exit(0)}).catch(r=>{g.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=>{g.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?Tt(this.workspaceRoot):null;return!t&&this.originalProjectPath&&(t=Tt(this.originalProjectPath),t&&g.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()){this.ensureCppProjectReady().catch(e=>{g.warn("Background C++ project init failed:",e)}),this.projectState=3,this.arktsCheckTool=new _r(this.config.projectPath,this.config.toolProvider,this.config.nodeMaxOldSpaceSize),this.arktsCheckTool.setOnConfigChanged(()=>{g.info("Config files changed, resetting to IDLE state for reinit"),this.configChangedTriggeredResync=!0,this.needsReinit=!0,this.projectState=0});try{await this.arktsCheckTool.initialize(),this.projectState=4,this.initRetryCount=0,g.info("Project fully initialized, check tool is available")}catch(e){g.error("LSP initialization failed:",e),this.arktsCheckTool=null,this.initRetryCount++,this.projectState=5}}}async ensureProjectSynced(){let e=this.config.projectPath,t=Zm(e),r=!t.required;return g.info(`Sync check: skipHvigor=${r}, reason=${t.reason}`),this.runSync(e,{skipHvigorSync:r})}async runSync(e,t){this.projectState=2,g.info("Starting project sync...");let r=await Mr.handleSyncProject(e,this.config.toolProvider,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 o=Date.now()-this.syncSkipStartedAt,i=Math.round(o/1e3);return o>=Fl?(g.error(`Sync skipped for ${i}s due to lock contention, giving up`),this.initRetryCount++,this.syncSkipStartedAt=0,this.projectState=5,!1):(g.warn(`Sync skipped: ${r.reason}, resetting to IDLE for retry (elapsed ${i}s / ${Fl/1e3}s)`),this.projectState=0,!1)}case"failed":return g.error(`Project sync failed: ${r.reason}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1;default:return g.error(`Project sync: unknown status ${r.status}`),this.syncSkippedDueToLock=!1,this.syncSkipStartedAt=0,this.initRetryCount++,this.projectState=5,!1}}async ensureCppProjectReady(){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=>{g.warn("Failed to re-init C++ project after cppNeedsReinit:",e)}))}}async doEnsureCppProjectReady(){let e=this.config.projectPath;if(!e){g.info("[Cpp] No project path, skipping C++ init");return}this.cppProjectState=1;let t=Fn(e);if(t.length===0){g.info('[Cpp] No C++ modules found, C++ tools will return "no C++ code"'),this.cppHasNoCppCode=!0,this.cppProjectState=4,this.cppInitRetryCount=0;return}if(this.cppHasNoCppCode=!1,g.info(`[Cpp] Found ${t.length} C++ module(s): ${t.map(r=>r.name).join(", ")}`),!!await this.runSyncCpp(e)){this.cppProjectState=3,this.cppLspManager=new Yo({workspaceRoot:e,toolProvider:this.config.toolProvider});try{await this.cppLspManager.start(),this.cppCheckTool=new jr(this.cppLspManager,this.config.toolProvider),this.cppLspTool=new $r(this.cppLspManager),this.cppProjectState=4,this.cppInitRetryCount=0,g.info("[Cpp] C++ project fully initialized, C++ tools are available")}catch(r){g.error("[Cpp] C++ LSP initialization failed:",r),this.cppLspManager&&this.cppLspManager.dispose().catch(()=>{}),this.cppLspManager=null,this.cppCheckTool=null,this.cppLspTool=null,this.cppInitRetryCount++,this.cppProjectState=5}}}async runSyncCpp(e){this.cppProjectState=2,g.info("[Cpp] Starting C++ project sync (compileNative)...");let t=await Yo.handleSyncCppProject(e,this.config.toolProvider);switch(t.status){case"success":return this.cppSyncSkippedDueToLock=!1,this.cppSyncSkipStartedAt=0,!0;case"skipped":{this.cppSyncSkippedDueToLock=!0,this.cppSyncSkipStartedAt===0&&(this.cppSyncSkipStartedAt=Date.now());let r=Date.now()-this.cppSyncSkipStartedAt,o=Math.round(r/1e3);return r>=Fl?(g.error(`[Cpp] C++ sync skipped for ${o}s due to lock contention, giving up`),this.cppInitRetryCount++,this.cppSyncSkipStartedAt=0,this.cppProjectState=5,!1):(g.warn(`[Cpp] C++ sync skipped: ${t.reason}, resetting to IDLE_CPP for retry (elapsed ${o}s)`),this.cppProjectState=0,!1)}case"failed":return g.error(`[Cpp] C++ project sync failed: ${t.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){g.warn("Failed to close MCP server connection:",e)}g.info("devecocli-mcp-server stopped"),Hu(),ju()}getToolRouter(){return this.toolRouter}getServer(){return this.server}};function CI(n){let e=[],t=[],r=[];for(let o of n)mn.extname(o).toLowerCase()===".ets"?e.push(o):On(o)?t.push(o):r.push(o);return{etsFiles:e,cppFiles:t,unsupported:r}}function $l(n){return new pa(n)}import*as Ul from"fs";import*as hn from"path";import{spawn as II}from"child_process";async function th(n){_n(!1);let{serverPath:e,logPath:t,projectPath:r,serverMaxSize:o}=await AI(n),i=TI(e,t,r,n.toolProvider,o);g.info("ace-server started, bridging stdio (initialize is left to the client)"),xI(i)}async function AI(n){E()||n.toolProvider.require({clt:!1});let e;if(n.projectPath)e=pe(hn.resolve(n.projectPath)),g.info(`projectPath=specified ('${e}'), no search`);else if(n.autoDetect){let a=Bi(process.cwd());e=pe(a??process.cwd()),g.info(`findHarmonyProjectInDir('${process.cwd()}') => ${a??"null, fallback to cwd"}`)}else e=pe(process.cwd()),g.info(`projectPath=cwd ('${e}'), no search (pass --auto-detect to search subdirs)`);let t=n.toolProvider.sdkPath,r=n.toolProvider.lspServerPath;r||(g.error("ace-server not found in DevEco Studio installation."),process.exit(1));let o=hn.resolve(hn.dirname(r),"standardIndex","index.js"),i=hn.join(nn(),"lsp-server",String(Date.now()));Ul.mkdirSync(i,{recursive:!0});let s=DI(e,t);return g.info(`projectPath=${e}, sdkPath=${t}, serverPath=${o}, logPath=${i}, serverMaxSize=${s}MB`),{projectPath:e,serverPath:o,logPath:i,serverMaxSize:s}}function DI(n,e){let t=process.env.NODE_MAX_OLD_SPACE_SIZE,r=t?parseInt(t,10):NaN,o=Number.isFinite(r)&&r>0?r:void 0,i=RI(n,e),s=Ji(i,o);return g.info(`[serve-lsp] serverMaxSize=${s}MB (moduleCount=${i}, override=${o??"none"})`),s}function RI(n,e){try{let t=[];return new Yn(n,e).getAllDependencyMap(t).status==="OK"?t.length:new kt(n).getAllModuleInfo().length}catch{return 0}}function TI(n,e,t,r,o){let i=hn.join(e,"lspLog");Ul.mkdirSync(i,{recursive:!0});let s=kI(n,i,t,r.sdkPath,o),a=r.nodePath;return g.info(`[serve-lsp] spawn: ${a} ${s.join(" ")}`),II(a,s,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function kI(n,e,t,r,o){let i=U(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}`,n,"--stdio",`--logger-path=${i}`,"--logger-level=TRACE",`--projectPath=${U(t)}`,`--sdkPath=${U(r)}`]}function xI(n){n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("data",e=>{g.error(`[ace-server] ${e.toString("utf8").trim()}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{g.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{g.info(`ace-server exited with code ${e}`),process.exit(e??0)})}import*as nh from"fs";import*as Jn from"path";import{spawn as NI}from"child_process";async function rh(n){_n(!1);let{clangdPath:e,compileCommandsDir:t,projectPath:r}=await LI(n),o=Jn.join(t,"compile_commands.json");nh.existsSync(o)||g.warn(`compile_commands.json not found at ${o}. Cross-file navigation/completion will be limited. Run \`devecocli build\` first to generate it.`);let i=OI(e,t,r);g.info("clangd started, bridging stdio (initialize is left to the client)"),_I(i)}async function LI(n){let e;if(n.projectPath)e=pe(Jn.resolve(n.projectPath)),g.info(`projectPath=specified ('${e}'), no search`);else if(n.autoDetect){let i=Bi(process.cwd());e=pe(i??process.cwd()),g.info(`findHarmonyProjectInDir('${process.cwd()}') => ${i??"null, fallback to cwd"}`)}else e=pe(Jn.resolve(process.cwd())),g.info(`projectPath=cwd ('${e}'), no search (pass --auto-detect to search subdirs)`);let t=n.toolProvider.clangdPath;t||(g.error("clangd not found in DevEco Studio SDK. Expected at <deveco>/sdk/default/openharmony/native/llvm/bin/clangd"),process.exit(1));let r=sr(e),o=Jn.dirname(r);return g.info(`projectPath=${e}, clangdPath=${t}, compileCommandsDir=${o}`),{projectPath:e,clangdPath:t,compileCommandsDir:o}}function OI(n,e,t){let r=MI(e);return g.info(`[serve-lsp-cpp] spawn: ${n} ${r.join(" ")}`),NI(n,r,{cwd:t,stdio:["pipe","pipe","pipe"],windowsHide:!0})}function MI(n){return[`--compile-commands-dir=${U(n)}`,"--log=info","--pch-storage=memory"]}function _I(n){n.stdout?.on("data",e=>process.stdout.write(e)),n.stderr?.on("data",e=>{g.error(`[clangd] ${e.toString("utf8").trim()}`)}),process.stdin.on("data",e=>{n.stdin?.write(e)}),process.stdin.on("end",()=>{g.info("Editor disconnected, shutting down"),n.kill(),process.exit(0)}),n.on("exit",e=>{g.info(`clangd exited with code ${e}`),process.exit(e??0)})}async function jI(){let n=process.env.PROJECT_PATH||"",e=process.env.NODE_MAX_OLD_SPACE_SIZE,t=process.env.DEBUG==="true"||process.env.DEBUG==="1",r=await I.new();E()||r.require({clt:!1});let i=$l({toolProvider:r,projectPath:n,nodeMaxOldSpaceSize:e,debug:t}),s=async()=>{await i.shutdown(),process.exit(0)};process.once("SIGINT",s),process.once("SIGTERM",s),process.platform==="win32"&&process.once("SIGBREAK",s);try{await i.start()}catch(a){console.error("Failed to start MCP server:",a),process.exit(1)}}var Bl=new FI("serve").description("Host bundled auxiliary protocol servers");Bl.command("mcp").description("Start a local stdio-based MCP server").action(async()=>{await jI()});Bl.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));let e=await I.new();n.arkts?await th({toolProvider:e,projectPath:n.projectPath,autoDetect:n.autoDetect}):n.cpp?await rh({toolProvider:e,projectPath:n.projectPath,autoDetect:n.autoDetect}):(console.error("Use --arkts or --cpp to specify which language server to start."),process.exit(1))});var oh=Bl;import{Command as $R,InvalidArgumentError as Nd}from"commander";import{red as $a,dim as UR}from"colorette";import*as ne from"fs";import*as Et from"path";import CR from"adm-zip";import IR from"proper-lockfile";import py from"ora";import*as pt from"fs";import*as oi from"path";var gn=["harmonyos-guides","harmonyos-references","best-practices","harmonyos-faqs","harmonyos-releases","harmonyos-roadmap"],Kn={"harmonyos-guides":"\u5F00\u53D1\u6307\u5357","harmonyos-references":"API\u53C2\u8003","best-practices":"\u6700\u4F73\u5B9E\u8DF5","harmonyos-faqs":"FAQ","harmonyos-releases":"\u7248\u672C\u8BF4\u660E","harmonyos-roadmap":"\u53D8\u66F4\u9884\u544A"};var Br="1.9.1",qz=48*1024*1024,ih=280,sh=6,ah=100,ch=3,lh=28,Wl=10,dh=/API参考|APIReference/i,Jo=200,uh=12,ph=4,Gl=8,fh=6,fa=700,ql=250,zl=400,mh=1320,hh=120,gh=450,yh=250,wh=500,vh=480,Sh=80,bh=200,Eh=60,Ph=200,Ch=40,Ih=200,Ah=200,Dh=40,Wr=500,Rh=Object.fromEntries(gn.map((n,e)=>[Kn[n],e])),yn=Object.fromEntries(gn.map((n,e)=>[n,e]));import*as Ko from"fs";import*as O from"path";import{fileURLToPath as Nh}from"url";import*as wn from"fs";import*as Th from"path";import{homedir as HI}from"os";var $I="deveco-cli",Vl,Xn=class extends Error{constructor(e){super(e),this.name="CliDataDirError"}};function UI(){let n=process.env.DEVECO_CLI_DATA_DIR;return n!==void 0&&Ni(n)!==""}function kh(){let n=process.env.DEVECO_CLI_DATA_DIR,t=(n===void 0||n===""?"":Ni(n))||Th.join(HI(),".local","share",$I);try{return Li(t)}catch(r){throw new Xn(r instanceof Error?r.message:String(r))}}async function xh(){let n=kh();await wn.promises.mkdir(n,{recursive:!0});let e;try{e=await wn.promises.realpath(n)}catch(r){throw new Xn(`DEVECO_CLI_DATA_DIR is not usable: ${r instanceof Error?r.message:String(r)}`)}if(!(await wn.promises.stat(e)).isDirectory())throw new Xn("DEVECO_CLI_DATA_DIR must be a writable directory.");return Vl=e,e}function ma(n){let e=Gr();return UI()?[`Data directory (DEVECO_CLI_DATA_DIR): ${e}`,"If you changed this in System Environment Variables, open a new terminal and retry.",`Log file: ${n}`]:[`Data directory (default): ${e}`,"To use a custom location, set DEVECO_CLI_DATA_DIR and open a new terminal.",`Log file: ${n}`]}function Gr(){if(Vl!==void 0)return Vl;let n=kh();try{if(wn.existsSync(n))return wn.realpathSync(n)}catch{}return n}var BI="docs";function qr(){return O.join(Gr(),BI)}function Z(){return O.join(qr(),".index")}function ha(){return O.join(Z(),"build.lock")}function Xo(){return O.join(Z(),"build-status.json")}function zr(){return O.join(Z(),"build-meta.json")}function Zn(){return O.join(Z(),"search.db")}function Zo(){return O.join(Z(),"sqlite-backend.json")}function Qo(){return O.join(Z(),"jieba-backend.json")}function Gt(){return O.join(Z(),".tmp")}function WI(){return O.join(Gr(),"logs")}function Vr(){return O.join(WI(),"doc-init.log")}function GI(n,e){let t=e;for(;!t.endsWith(`${O.sep}dist`)&&t!==O.dirname(t);)t=O.dirname(t);return t}function Lh(n,e){return O.dirname(GI(n,e))}function Oh(){let n=Nh(import.meta.url),e=O.dirname(n);return n.includes(`${O.sep}dist${O.sep}`)?Lh(n,e):O.join(e,"..","..","..")}function qI(...n){let e=Nh(import.meta.url),t=O.dirname(e);return e.includes(`${O.sep}dist${O.sep}`)?[O.join(Lh(e,t),...n)]:[O.join(t,"..","..","..",...n)]}function Mh(...n){let e=Oh(),t=Ko.realpathSync(e);for(let r of qI(...n))try{let o=Ko.lstatSync(r);if(o.isSymbolicLink()||!o.isFile())throw new Error(`Unsafe documentation package asset: ${n.join("/")} must be a regular file.`);let i=Ko.realpathSync(r);if(!co(i,t))throw new Error(`Unsafe documentation package asset: ${n.join("/")} is outside the package.`);return i}catch(o){if(o.code!=="ENOENT")throw o}return null}function vn(){return Mh("docs.zip")}function Yl(){return Mh("index.zip")}function _h(){return O.join(Oh(),"index","data")}import*as qt from"fs";import*as Qn from"path";var zt=["harmonyos-terms.txt","harmonyos-synonyms.json","harmonyos-stopwords.txt"],ga=class extends Error{constructor(e){super(e),this.name="LexiconNotFoundError"}};function Fh(n){return n instanceof ga}var Jl=null;function Kl(n){Jl=n}function Xl(){if(Jl)return Jl;let n=Z();if(zt.every(o=>qt.existsSync(Qn.join(n,o))))return n;let t=_h();if(zt.every(o=>qt.existsSync(Qn.join(t,o))))return t;throw new ga("Lexicon files not found. Install the documentation index first (index.zip).")}function jh(){Xl()}function er(n){let e=Qn.join(Xl(),n);return qt.readFileSync(e,"utf-8")}function Hh(n,e){return qt.readFileSync(Qn.join(e,n),"utf-8")}async function $h(n,e=Xl()){await qt.promises.mkdir(n,{recursive:!0});for(let t of zt){let r=Qn.join(e,t),o=Qn.join(n,t);await qt.promises.copyFile(r,o)}}import*as ya from"fs";import*as Uh from"path";import*as Bh from"yauzl";var ei=null;function zI(n){return new Promise((e,t)=>{Bh.open(n,{lazyEntries:!0,decodeStrings:!1,autoClose:!1},(r,o)=>{if(r||!o){t(r??new Error(`Failed to open zip: ${n}`));return}e(o)})})}function VI(n){let e=n.fileName;return(Buffer.isBuffer(e)?e.toString("utf-8"):String(e)).replace(/\\/g,"/")}function YI(n){let e=new Map;return new Promise((t,r)=>{n.readEntry(),n.on("entry",o=>{let i=VI(o);i.endsWith("/")||e.set(i,o),n.readEntry()}),n.on("end",()=>{t(e)}),n.on("error",r)})}function JI(){ei?.zipfile.close(),ei=null}async function KI(n){let e=Uh.resolve(n),t=await ya.promises.stat(e),r=ei;if(r&&r.zipPath===e&&r.mtimeMs===t.mtimeMs&&r.size===t.size)return r;JI();let o=await zI(e),i=await YI(o);return ei={zipPath:e,mtimeMs:t.mtimeMs,size:t.size,zipfile:o,entries:i,readChain:Promise.resolve()},ei}function XI(n,e){return new Promise((t,r)=>{n.openReadStream(e,(o,i)=>{if(o||!i){r(o??new Error(`Failed to read zip entry: ${e.fileName}`));return}let s=[];i.on("data",a=>{s.push(Buffer.isBuffer(a)?a:Buffer.from(a))}),i.on("end",()=>{t(Buffer.concat(s))}),i.on("error",r)})})}async function ZI(n,e){let t=n.readChain,r;n.readChain=new Promise(o=>{r=o}),await t;try{return await XI(n.zipfile,e)}finally{r()}}function QI(n){let e=n.replace(/\\/g,"/").replace(/\.md$/,"");if(e.split("/").includes(".."))throw new Error("Invalid document ID: path traversal is not allowed.");return[`docs/${e}.md`,`${e}.md`,`docs/${e}`,e]}function eA(n,e){for(let t of e){let r=n.get(t.replace(/\\/g,"/"));if(r)return r}return null}async function Wh(n){let e=vn();if(!e)throw new Error("docs.zip not found");let t=await KI(e),r=eA(t.entries,QI(n));if(!r)throw new Error(`Document not found: ${n}`);return(await ZI(t,r)).toString("utf-8")}function Zl(){let n=vn();return n!==null&&ya.existsSync(n)}import*as he from"fs";import*as Vt from"path";import Gh from"adm-zip";import*as ti from"fs";import*as va from"path";var wa=class extends Error{constructor(e){super(`Unsafe documentation path: ${e}`),this.name="DocPathSafetyError"}};function ni(n){return n instanceof Xn||n instanceof wa||n instanceof Error&&(n.name==="CliDataDirError"||n.name==="DocPathSafetyError")}function td(n){return new wa(n)}function tA(){return yt(Gr())}function ed(n,e,t){let r=xi(n,e);if(r===null)throw td(`${t} resolves outside the data directory.`);return r}async function Ql(n,e){await ti.promises.mkdir(n,{recursive:!0});let t=ed(n,e,"directory");if(!(await ti.promises.stat(t)).isDirectory())throw td("path must be a directory.")}function ri(n){let e=tA();try{let t=ed(n,e,"file");if(!ti.statSync(t).isFile())throw td("path must be a regular file.")}catch(t){if(t.code==="ENOENT"){ed(va.dirname(n),e,"file parent");return}throw t}}async function Yr(n={}){let e=n.mode??"write",t=await xh();await Ql(qr(),t),await Ql(Z(),t),e==="write"&&await Ql(Gt(),t);for(let r of[Zn(),zr(),Xo(),ha(),Qo(),Zo(),...zt.map(o=>va.join(Z(),o))])ri(r)}var nd=["search.db","build-meta.json",...zt],nA=["corpus.json","corpus-offsets.json","orama.dpack"];async function rA(n){for(let e of nA)await he.promises.rm(Vt.join(n,e),{force:!0})}async function oA(n){let e=await he.promises.readdir(n,{withFileTypes:!0});for(let t of e)t.name!==".index"&&await he.promises.rm(Vt.join(n,t.name),{recursive:!0,force:!0})}function qh(n){let t=new Gh(n).getEntry("build-meta.json");if(!t)throw new Error("index.zip is missing build-meta.json");return JSON.parse(t.getData().toString("utf-8"))}async function iA(n){let e=Z();await he.promises.mkdir(e,{recursive:!0});for(let t of nd){let r=Vt.join(e,t);await he.promises.rm(r,{force:!0}),await he.promises.rename(Vt.join(n,t),r)}await rA(e),await he.promises.rm(Gt(),{recursive:!0,force:!0})}function zh(n){let e=Yl();if(!e)return!1;try{let t=qh(e);return t.indexVersion===Br&&t.docsZipSha256===n&&t.segmentCount>0}catch{return!1}}async function Vh(n){await Yr({mode:"write"});let e=Yl();if(!e)throw new Error("index.zip not found");let t=qh(e);if(t.docsZipSha256!==n)throw new Error("Bundled index.zip does not match docs.zip. Rebuild index.zip with npm run build:index.");if(t.segmentCount<=0)throw new Error("Bundled index.zip is empty");let r=Gt();await he.promises.rm(r,{recursive:!0,force:!0}),await he.promises.mkdir(r,{recursive:!0});let o=new Gh(e);for(let s of nd){let a=o.getEntry(s);if(!a)throw new Error(`index.zip is missing ${s}`);await he.promises.writeFile(Vt.join(r,s),a.getData())}let i=JSON.parse(await he.promises.readFile(Vt.join(r,"build-meta.json"),"utf-8"));if(!he.existsSync(Vt.join(r,"search.db")))throw new Error("index.zip is missing search.db");return await iA(r),await he.promises.mkdir(qr(),{recursive:!0}),await oA(qr()),i}async function Yh(){await he.promises.rm(Gt(),{recursive:!0,force:!0});let n=Z();for(let e of nd)await he.promises.rm(Vt.join(n,e),{force:!0})}import{createHash as Jh}from"crypto";import*as Kh from"fs";async function Sa(n){return new Promise((e,t)=>{let r=Jh("sha256"),o=Kh.createReadStream(n);o.on("data",i=>r.update(i)),o.on("error",t),o.on("end",()=>e(r.digest("hex")))})}function Xh(n){return Jh("sha256").update(n,"utf8").digest("hex")}var rd=null;function sA(){let n=er("harmonyos-synonyms.json");return JSON.parse(n)}function aA(n){let e=new Map;for(let t of n){let r=t.map(o=>o.trim()).filter(Boolean);for(let o of r){let i=r.filter(s=>s!==o);e.set(o.toLowerCase(),i),o!==o.toLowerCase()&&e.set(o,i)}}return e}function cA(){let n=aA(sA()),e=new Map;for(let[t,r]of n)e.set(t,new Set(r));return e}function lA(){return rd||(rd=cA()),rd}function od(n,e){let t=lA(),r=n.split(/\s+/).filter(Boolean),o=new Set,i=Number.isFinite(e)?e:r.length;for(let s=0;s<r.length&&o.size<i;s+=1){let a=r[s];o.add(a);let c=t.get(a)??t.get(a.toLowerCase());if(c)for(let l of c){if(o.size>=i)break;o.add(l)}}return[...o].join(" ")}function Zh(n,e){let t=e?Hh(n,e):er(n);return Xh(t)}function ba(n){return Zh("harmonyos-synonyms.json",n)}function Ea(n){return Zh("harmonyos-terms.txt",n)}var dA={state:"idle",phase:0,phaseLabel:"Idle",current:0,total:0,message:"",startedAt:0,updatedAt:0,error:null};async function Pa(){try{let n=await pt.promises.readFile(Xo(),"utf-8");return JSON.parse(n)}catch{return{...dA}}}async function id(n){let e=Xo();await pt.promises.mkdir(oi.dirname(e),{recursive:!0}),await pt.promises.writeFile(e,JSON.stringify(n,null,2))}function Qh(n){let e=Date.now();return{state:"extracting",phase:1,phaseLabel:"Extracting documentation",current:0,total:0,message:n,startedAt:e,updatedAt:e,error:null}}async function Sn(n){let t={...await Pa(),...n,updatedAt:Date.now()};return await id(t),t}async function sd(){let n=vn();return n?Sa(n):null}async function ad(){try{let n=await pt.promises.readFile(zr(),"utf-8");return JSON.parse(n)}catch{return null}}async function Ca(n=!1){if(n)return"no-index";let e=await ad();if(!e||e.segmentCount===0)return"no-index";let t=await sd();return t&&e.docsZipSha256!==t?"docs-changed":e.indexVersion!==Br?"engine-upgraded":e.termsHash!==Ea()?"terms-changed":e.synonymsHash!==ba()?"synonyms-changed":null}function ii(){if(!Zl()||!pt.existsSync(Zn())||!pt.existsSync(zr()))return!1;let n=oi.dirname(Zn());if(!zt.every(e=>pt.existsSync(oi.join(n,e))))return!1;try{let e=pt.readFileSync(zr(),"utf-8");return JSON.parse(e).segmentCount>0}catch{return!1}}async function cd(n=!1){return n?!0:Zl()?ii()?await Ca()!==null:!0:!1}async function eg(){let n=await Pa();return["installing","indexing","persisting"].includes(n.state)}import*as be from"fs";import*as iy from"os";import*as Me from"path";var tg=new Set(["picker","dialog","sheet","panel","popup","menu","layout","view","gesture","animation","transition","recognizer","manager","kit"]),ld=new Set(["wifi","wlan","notification","bluetooth","location","sensor","power","battery","account","pasteboard","calendar","telephony","contact"]),ng=new Set(["a","an","and","api","app","application","arkts","arkui","for","get","harmonyos","how","in","oh","ohos","on","or","set","the","to","use","using","what","when","where","which","with","without","data","file","main","model","name","network","stage","system","type","user"]),rg=new Set(["ability","extension","module","service","context","options","config","info","event","code","state","type","data","request","response","client","server","handler","helper","utils","factory","builder","listener","callback","observer","provider","consumer","delegate","adapter","driver","buffer","stream","channel","session","task","worker","controller","component","container","attribute","descriptor","modifier","validator","parser","formatter","encoder","decoder","filter","converter","generator","iterator","dispatcher","resolver","scanner","tracker","monitor","scheduler","renderer","loader","subscriber","proxy","button","surface","stack","heap","map","set","array","list"]);var uA=/@ohos\.[a-z][a-zA-Z0-9.]+/gi,pA=/\b[a-z][a-z0-9]*[A-Z][a-zA-Z0-9]+\b/g,fA=/[A-Z][a-zA-Z0-9]{2,}/g,mA=/@[A-Z][a-zA-Z0-9]*/g,hA=/[a-z][a-zA-Z0-9]*\.[a-zA-Z][a-zA-Z0-9]+/g,og=6,gA=/^[a-z][a-z0-9]{2,}$/,yA=/^([a-z][a-z0-9]{2,})\s+([a-z][a-z0-9]{2,})$/,wA=/^@ohos\.[a-z][a-zA-Z0-9.]+$/i,vA=/^[a-z][a-z0-9]*[A-Z][a-zA-Z0-9]+$/,SA=/^[A-Z][a-zA-Z0-9]+$/;function bA(n){return`"${n.replace(/"/g,'""')}"`}function ai(n,e){let t=[...new Set(n.filter(Boolean))];return t.length===0?'""':t.map(bA).join(` ${e} `)}function si(n){return ai(n,"OR")}function ig(n,e){let t=[...new Set(n.filter(Boolean))],r=[...new Set(e.filter(Boolean))];return t.length===0||r.length===0?si([...t,...r]):`(${si(t)}) AND (${si(r)})`}function ci(n){return wA.test(n)}function sg(n){return vA.test(n)&&n.length>=og}function EA(n){return SA.test(n)}function li(n){return ci(n)||sg(n)||EA(n)}function PA(n){let e=n.trim().toLowerCase();return rg.has(e)?!1:tg.has(e)}function CA(n,e){let t=e.trim().charAt(0).toUpperCase(),r=e.trim().slice(1).toLowerCase();return`${n.trim().toLowerCase()}${t}${r}`}function Ia(n){let t=n.replace(/^@ohos\./i,"").split(".").filter(Boolean);return t[t.length-1]?.trim()||void 0}function dd(n){return[...n.matchAll(uA)].map(e=>e[0])}function ud(n,e=og){let t=[];for(let r of n.matchAll(pA))r[0].length>=e&&t.push(r[0]);return t}function Jr(n){return n.filter(e=>{let t=e.toLowerCase();return!n.some(r=>{if(r===e)return!1;let o=r.toLowerCase();return o.length>t.length&&o.endsWith(t)&&t.length>=4})})}function ft(n,e){let t=e.trim();if(!t)return;n.add(t);let r=t.toLowerCase();r!==t&&n.add(r)}function IA(n){let e=new Set;ft(e,n);let t=Ia(n);return t&&ft(e,t),Jr([...e])}function Aa(n){if(ci(n))return IA(n);let e=new Set;return ft(e,n),Jr([...e])}function Da(n){let e=n.trim();if(/[A-Z]/.test(e))return null;let t=e.match(yA);if(!t)return null;let r=t[1].toLowerCase(),o=t[2].toLowerCase();if(!gA.test(r)||ng.has(r)||!PA(o))return null;let i=CA(r,o);return{first:r,second:o,camelCase:i,lower:i.toLowerCase()}}function pd(n){let e=Da(n.trim());return!e||e.second!=="manager"?null:e}function AA(n){let e=n.match(/^([a-z][a-z0-9]*)Manager$/i);return e?e[1].toLowerCase():null}function ag(n){let e=n.trim(),t=pd(e);if(t&&ld.has(t.first))return!0;if(sg(e)){let r=AA(e);return r!==null&&ld.has(r)}return!1}function fd(n,e,t){let r=t.toLowerCase(),o=new RegExp(`@ohos\\.[^\\s(]*${t}`,"i");for(let i of[n,e])if(i&&(i.toLowerCase().includes(r)||o.test(i)))return!0;return!1}function md(n){let e=n.trim();if(li(e))return Aa(e);let t=new Set;for(let r of dd(n)){ft(t,r);let o=Ia(r);o&&ft(t,o)}for(let r of ud(n))ft(t,r);for(let r of n.matchAll(mA))t.add(r[0]);for(let r of n.matchAll(hA))t.add(r[0]);for(let r of n.matchAll(fA))r[0].length>=4&&t.add(r[0]);return Jr([...t])}function cg(n){let e=n.trim();if(li(e))return Aa(e);let t=new Set,r=Da(e);r&&ft(t,r.camelCase);for(let o of md(e))t.add(o);for(let o of e.matchAll(/\b[a-z][a-zA-Z0-9]{3,}\b/g)){let i=o[0];i!==i.toLowerCase()&&t.add(i)}return Jr([...t])}function lg(n){return li(n)}var J={pureApiSymbol:/^[A-Z][a-zA-Z0-9]+$/,stageModelExact:/^Stage\s*模型$/i,stageModelEnglishExact:/^stage\s+model$/i,stageModel:/Stage\s*模型/i,stageModelEntryPage:/Stage\s*模型.*EntryAbility.*(页面|新页面)/,declarePermissionBoost:/声明.*权限|应用权限.*声明|如何声明应用权限/,declarePermissionCatalog:/如何声明应用权限/,declarePermissionTokens:/如何声明应用权限|声明应用权限/,uiAbilityLifecycleBoost:/UIAbility.*生命周期|生命周期.*UIAbility|UIAblity/i,uiAbilityLifecycleCatalog:/UIAblity.*生命周期|UIAbility.*生命周期/i,entryAbilityPage:/EntryAbility.*(页面|启动|跳转|新页面)/,stateDecoratorBoost:/@State|@Prop|@Link|@Provide|@Consume/,stateDecoratorCatalog:/@State\s*装饰器|@Prop\s*装饰器|@Link\s*装饰器/,stateManagement:/状态管理原理/,routerRoute:/Router\s+路由/,dialogPopupExact:/^Dialog\s+弹窗$/,dialogPopupBoost:/Dialog\s+弹窗/};function dg(n){return J.pureApiSymbol.test(n.trim())}function di(n){let e=n.trim();return J.stageModelExact.test(e)||J.stageModelEnglishExact.test(e)}function ug(n){let e=[];return di(n.trim())&&e.push("Stage\u6A21\u578B","Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0"),J.declarePermissionTokens.test(n)&&e.push("\u58F0\u660E\u6743\u9650"),J.stageModelEntryPage.test(n)&&e.push("\u9875\u9762\u8DEF\u7531","pushUrl"),/UIAblity|UIAbility/.test(n)&&/生命周期/.test(n)&&e.push("UIAbility\u7EC4\u4EF6\u751F\u547D\u5468\u671F"),e}function pg(n){return di(n)?{expandedQuery:"Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0",tokens:["Stage\u6A21\u578B\u5F00\u53D1\u6982\u8FF0","Stage\u6A21\u578B"]}:null}var DA=[{matches:n=>J.uiAbilityLifecycleBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.85},{catalog:"harmonyos-references",multiplier:.65},{catalog:"harmonyos-faqs",multiplier:.82}]},{matches:n=>di(n),weights:[{catalog:"harmonyos-guides",multiplier:1.85},{catalog:"harmonyos-references",multiplier:.55},{catalog:"harmonyos-faqs",multiplier:.85}]},{matches:n=>!di(n)&&J.stageModel.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-references",multiplier:.65}]},{matches:n=>J.entryAbilityPage.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.75},{catalog:"harmonyos-references",multiplier:.48}]},{matches:n=>J.declarePermissionBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"best-practices",multiplier:.68}]},{matches:n=>J.stateDecoratorBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.75},{catalog:"harmonyos-references",multiplier:.42}]},{matches:n=>J.stateManagement.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.6},{catalog:"best-practices",multiplier:.78}]},{matches:n=>J.routerRoute.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-references",multiplier:1.4},{catalog:"harmonyos-faqs",multiplier:.72},{catalog:"best-practices",multiplier:.72}]},{matches:n=>J.dialogPopupBoost.test(n),weights:[{catalog:"harmonyos-guides",multiplier:1.65},{catalog:"harmonyos-faqs",multiplier:.72},{catalog:"best-practices",multiplier:.72}]}];function RA(n,e){for(let{catalog:t,multiplier:r}of e){let o=yn[t];n.set(o,(n.get(o)??1)*r)}}function fg(n,e){for(let t of DA)t.matches(n)&&RA(e,t.weights)}function mg(n,e){if(e!==void 0)return!1;let t=n.trim();return ci(t)||J.pureApiSymbol.test(t)||ag(t)}function hg(n){let e=n.trim();if(ci(e)||J.pureApiSymbol.test(e))return"harmonyos-references";if(di(e)||J.uiAbilityLifecycleCatalog.test(e)||J.stateDecoratorCatalog.test(e)||J.stateManagement.test(e)||J.declarePermissionCatalog.test(e)||J.stageModelEntryPage.test(e)||J.routerRoute.test(e)||J.dialogPopupExact.test(e))return"harmonyos-guides"}import*as Kr from"fs";import*as yg from"path";var Ra=null,hd=null,gd=null;function TA(){return Kr.existsSync(Qo())}function kA(n){let e=Qo(),t={backend:"jieba-wasm",reason:"native-jieba-load-failed",message:n,createdAt:new Date().toISOString()};Kr.mkdirSync(yg.dirname(e),{recursive:!0}),ri(e),Kr.writeFileSync(e,JSON.stringify(t,null,2))}function xA(){if(Ra)return Ra;let n=er("harmonyos-stopwords.txt");return Ra=new Set(n.split(`
|
|
1311
|
+
`).map(e=>e.trim()).filter(Boolean)),Ra}function NA(n){let e=[];for(let t=0;t<n.length;t++){let r=n[t]?.trim();if(!r)continue;let o=n[t+1]?.trim();if(r==="@"&&o&&/^[A-Z][a-zA-Z0-9]*$/.test(o)){e.push(`@${o}`),t+=1;continue}e.push(r)}return e}function wg(n){let e=xA(),t=[];for(let r of NA(n)){let o=r.trim();!o||e.has(o)||(t.push(o.toLowerCase()),/[A-Z]/.test(o)&&/[a-zA-Z]/.test(o)&&t.push(o))}return t}async function vg(n){let{dict:e}=await import("@node-rs/jieba/dict.js"),t=n.withDict(e),r=er("harmonyos-terms.txt");return t.loadDict(Buffer.from(r,"utf-8")),t}async function LA(){let{Jieba:n}=await import("@node-rs/jieba");return vg(n)}async function gg(){let{Jieba:n}=await import("@node-rs/jieba-wasm32-wasi");return vg(n)}async function OA(){let n=await import("jieba-wasm"),e=er("harmonyos-terms.txt");return n.with_dict(e),{cut:n.cut,cutForSearch:n.cut_for_search}}async function MA(){if(E())return OA();if(TA())return gg();try{let e=await LA();return m("doc-index: using @node-rs/jieba backend"),e}catch(e){let t=e instanceof Error?e.message:String(e);kA(t),m(`doc-index: @node-rs/jieba unavailable (${t}); falling back to wasm32-wasi`)}let n=await gg();return m("doc-index: using @node-rs/jieba-wasm32-wasi backend"),n}async function bn(){return hd||(gd||(gd=MA().then(n=>(hd=n,n))),gd)}async function _A(n){let e=await bn();return wg(e.cutForSearch(n,!0))}async function Sg(n){let e=await bn();return wg(e.cut(n,!0))}async function Ta(n,e){let t=n.trim();if(!t||e<=0)return"";let r=(await _A(t)).join(" ");return r.length<=e?r:r.slice(0,e)}async function FA(n,e){let t=[];for(let o of n){let i=o.trim();i&&(t.push(i.toLowerCase()),/[A-Z]/.test(i)&&t.push(i))}let r=[...new Set(t)].join(" ");return r.length<=e?r:r.slice(0,e)}async function ka(n){let e=!!n.sectionTitle.trim(),t=n.titleTokens.trim(),r=e?vh:mh,o=e?bh:gh,i=e?await FA(n.apiSymbols,o):await Ta(n.apiSymbols.join(" "),o),a=(await Promise.all([Ta(t,e?Sh:hh),Promise.resolve(i),Ta(n.headingsText,e?Eh:yh),Ta(n.bodySample,e?Ph:wh)])).filter(Boolean).join(" ");return a.length<=r?a:a.slice(0,r)}function jA(n){return n.join(" ").replace(/\s+/g," ").trim().slice(0,Jo)}function yd(n,e){let t=new Set,r=[];for(let o of[...n,...e]){let i=o.toLowerCase();if(!(!o||t.has(i))&&(t.add(i),r.push(o),r.length>=uh))break}return r}function HA(n){return n.length>=2&&n.length<=ph}function $A(n,e){let t=od(n,Gl),r=t.split(/\s+/).filter(Boolean),o=[e.first,...r.filter(a=>a!==e.second),e.lower,e.camelCase],i=[e.second,e.lower,e.camelCase],s=yd(o,i);return{rawQuery:n,expandedQuery:t,tokens:s,preferAnd:!1,ftsMatch:ig(o,i)}}function UA(n,e){let t=yd(Aa(e),[]);return{rawQuery:n,expandedQuery:n,tokens:t,preferAnd:!1,ftsMatch:si(t)}}async function bg(n){let e=jA(n),t=e.trim(),r=pg(t);if(r)return{rawQuery:e,expandedQuery:r.expandedQuery,tokens:r.tokens,preferAnd:!1};let o=Da(t);if(o)return $A(e,o);if(li(t))return UA(e,t);let i=ug(e),s=[...md(e),...i],c=lg(t)?e:od(e,Gl),l=await Sg(c),d=yd(s,l);return{rawQuery:e,expandedQuery:c,tokens:d,preferAnd:i.length===0&&HA(d)}}var Eg=["harmonyos-releases","harmonyos-roadmap"],BA=new Set(Eg.map(n=>yn[n])),WA=Eg.map(n=>`${Kn[n]}/`);function GA(n){return BA.has(n)}function qA(n){return WA.some(e=>n.startsWith(e))}function Pg(n){let e=[],t=[];for(let r of n)GA(r.catalog_id)?t.push(r):e.push(r);return[...e,...t]}function Cg(n){let e=[],t=[];for(let r of n)qA(r.documentId)?t.push(r):e.push(r);return[...e,...t]}var zA=[{pattern:/@ohos\./i,catalog:"harmonyos-references",multiplier:1.5},{pattern:/@[A-Z][a-zA-Z]+/,catalog:"harmonyos-guides",multiplier:1.35},{pattern:/(如何|怎么|怎样|步骤)/,catalog:"harmonyos-guides",multiplier:1.45},{pattern:/(生命周期|原理|概述|什么是|模型|介绍)/,catalog:"harmonyos-guides",multiplier:1.35},{pattern:/(报错|失败|错误|异常|排查)/,catalog:"harmonyos-guides",multiplier:1.25},{pattern:/(报错|失败|FAQ)/i,catalog:"harmonyos-faqs",multiplier:1.2},{pattern:/(构建|签名|打包|发布|上架|应用市场|hvigor|ohpm)/i,catalog:"harmonyos-guides",multiplier:1.3},{pattern:/(行为变更|changelog|升级|适配|版本说明)/i,catalog:"harmonyos-releases",multiplier:1.3},{pattern:/(路由|弹窗|手势|页面|权限|装饰器)/,catalog:"harmonyos-guides",multiplier:1.25,skipForPureApiSymbol:!0}];function ui(n,e,t){let r=yn[e];n.set(r,(n.get(r)??1)*t)}function VA(n,e){let t=n.trim(),r=/[\u4e00-\u9fff]/.test(t),o=/\b[A-Z][a-zA-Z0-9]{2,}\b/.test(t),i=/\b[a-z][a-zA-Z0-9]{3,}\b/.test(t);if(r&&(o||i)){ui(e,"harmonyos-guides",1.45),ui(e,"harmonyos-references",1.35);return}(o||i)&&ui(e,"harmonyos-references",1.55),/\b[A-Z][a-zA-Z]*(Gesture|Dialog|Sheet|Transition|Recognizer)\b/.test(t)&&ui(e,"harmonyos-references",1.75)}function Ig(n){let e=new Map,t=n.trim();if(!t)return e;let r=dg(t);VA(t,e),fg(t,e);for(let o of zA)o.pattern.test(t)&&(o.skipForPureApiSymbol&&r||ui(e,o.catalog,o.multiplier));return e}function Ag(n){return hg(n)}import*as Zr from"fs";import*as Og from"path";var YA=[" ","\u3002","\uFF0C","\uFF1B","\u3001",".","!","?"];function Dg(n,e){let t=-1;for(let r of YA){let o=n.lastIndexOf(r);o>t&&(t=o)}return t>=e?t:-1}function Rg(n,e){let t=n.trim();if(t.length<=e)return{text:t,excerptTruncated:!1};let r=t.slice(0,e),o=Dg(r,e-20),i=o>=0?o:e;return{text:t.slice(0,i).trimEnd(),excerptTruncated:!0}}function Tg(n,e,t={}){let{maxLen:r=Ah,contextChars:o=Dh,excerptTruncated:i=!1}=t,s=n.replace(/\s+/g," ").trim();if(!s)return"";if(s.length<=r)return i?`${s}...`:s;let a=e.split(/\s+/).map($e=>$e.trim()).filter(Boolean),c=0;for(let $e of a){let nt=s.toLowerCase().indexOf($e.toLowerCase());if(nt>=0){c=nt;break}}let l=Math.max(0,c-o),d=Math.min(s.length,l+r),h=s.slice(l,d),w=Dg(h,r-25);w>=0&&(d=l+w);let v=s.slice(l,d).trim(),A=l>0?"...":"",ie=d<s.length||i?"...":"";return`${A}${v}${ie}`}var JA=`
|
|
1312
1312
|
SELECT d.document_id, d.doc_title, s.section_title, s.lead_text, s.excerpt_truncated,
|
|
1313
1313
|
d.catalog_id, bm25(segments_fts) AS bm25
|
|
1314
1314
|
FROM segments_fts
|
|
@@ -1371,7 +1371,7 @@ CREATE INDEX segments_doc_id_idx ON segments(doc_id);
|
|
|
1371
1371
|
INSERT INTO segments(doc_id, section_title, lead_text, search_text, excerpt_truncated)
|
|
1372
1372
|
VALUES (?, ?, ?, ?, ?)
|
|
1373
1373
|
`),a=t.length;for(let c=0;c<a;c+=Wr){let l=t.slice(c,c+Wr),d=await Promise.all(l.map(async w=>({source:w,searchText:await ka(w)})));o.transaction(w=>{for(let v of w){let A=gD(o,i,v.source);s.run(A,v.source.sectionTitle,v.source.leadText,v.searchText,v.source.excerptTruncated?1:0)}})(d),await r?.(Math.min(c+l.length,a),a)}o.exec("ANALYZE"),o.exec("VACUUM"),o.close()}function wD(n,e,t,r,o,i,s){let a=mD(n,e);return Na({all(c,...l){return a.prepare(c).all(...l)}},t,r,o,i,s)}async function Ng(){let e=(await import("better-sqlite3")).default;return{kind:"better-sqlite3",resetCache:fD,buildSearchIndex:(t,r,o)=>yD(e,t,r,o),searchIndex:(t,r,o,i,s,a,c)=>Promise.resolve(wD(e,i,r,o,s,a,c))}}import{readFile as vD,stat as SD,writeFile as bD}from"fs/promises";var bd=null,En=null;async function Ed(){return bd||(bd=(async()=>{let n=(await import("@sqlite.org/sqlite-wasm")).default;return n()})()),bd}function ED(n){return{all(e,...t){let r=n.prepare(e);t.length>0&&r.bind(t);let o=[];for(;r.step();)o.push(r.get({}));return r.finalize(),o}}}async function PD(n){let e=await SD(n);if(En&&En.dbPath===n&&En.mtimeMs===e.mtimeMs)return En.db;En?.db.close();let t=await Ed(),r=t.capi,o=t.wasm,i=new Uint8Array(await vD(n)),s=o.allocFromTypedArray(i),a=new t.oo1.DB(":memory:"),c=r.SQLITE_DESERIALIZE_READONLY|r.SQLITE_DESERIALIZE_RESIZEABLE|r.SQLITE_DESERIALIZE_FREEONCLOSE;return r.sqlite3_deserialize(a.pointer,"main",s,i.byteLength,i.byteLength,c),En={dbPath:n,mtimeMs:e.mtimeMs,db:a},a}function Lg(){En?.db.close(),En=null}async function CD(n,e,t,r){n.exec("BEGIN");for(let o of r){let i=t(o.source);e.bind([i,o.source.sectionTitle,o.source.leadText,o.searchText,o.source.excerptTruncated?1:0]),e.step(),e.reset()}n.exec("COMMIT")}function ID(n,e,t){return r=>{let o=e.get(r.documentId);if(o!==void 0)return o;let i=n.selectValue("SELECT id FROM documents WHERE document_id = ?",[r.documentId]);if(i!=null){let a=Number(i);return e.set(r.documentId,a),a}t.bind([r.documentId,r.catalogId,r.docTitle]),t.step(),t.reset();let s=Number(n.selectValue("SELECT last_insert_rowid()"));return e.set(r.documentId,s),s}}async function AD(n,e,t){await bn();let r=await Ed(),o=new r.oo1.DB(":memory:","c");o.exec(La);let i=new Map,s=o.prepare("INSERT INTO documents(document_id, catalog_id, doc_title) VALUES (?, ?, ?)"),a=o.prepare("INSERT INTO segments(doc_id, section_title, lead_text, search_text, excerpt_truncated) VALUES (?, ?, ?, ?, ?)"),c=ID(o,i,s),l=e.length;for(let h=0;h<l;h+=Wr){let w=e.slice(h,h+Wr),v=await Promise.all(w.map(async A=>({source:A,searchText:await ka(A)})));await CD(o,a,c,v),await t?.(Math.min(h+w.length,l),l)}o.exec("ANALYZE");let d=r.capi.sqlite3_js_db_export(o);await bD(n,d),o.close(),Lg()}async function DD(n,e,t,r,o,i){let s=await PD(n);return Na(ED(s),e,t,r,o,i)}async function Pd(){return await Ed(),{kind:"sqlite-wasm",resetCache:Lg,buildSearchIndex:AD,searchIndex:(n,e,t,r,o,i,s)=>DD(r,e,t,o,i,s)}}var Oa=null,Cd=null;function RD(){return Zr.existsSync(Zo())}function TD(n){let e=Zo(),t={backend:"sqlite-wasm",reason:"better-sqlite3-load-failed",message:n,createdAt:new Date().toISOString()};Zr.mkdirSync(Og.dirname(e),{recursive:!0}),ri(e),Zr.writeFileSync(e,JSON.stringify(t,null,2))}async function kD(){if(RD())return Pd();try{let n=await Ng();return m("doc-index: using better-sqlite3 SQLite backend"),n}catch(n){let e=n instanceof Error?n.message:String(n);TD(e),m(`doc-index: better-sqlite3 unavailable (${e}); falling back to sqlite-wasm`)}return Pd()}async function pi(){return Oa||(Oa=kD().then(n=>(Cd=n,n))),Oa}function Mg(){Cd?.resetCache(),Oa=null,Cd=null}async function xD(n,e,t,r,o,i,s){let a=await pi(),c=s??Zn();return a.searchIndex(n,e,t,c,r,o,i)}function Qr(){Mg()}async function Fg(n,e,t){await(await pi()).buildSearchIndex(n,e,t)}function jg(n,e,t){let r=new Set,o=[];for(let i of[...n,...e])if(!r.has(i.documentId)&&(r.add(i.documentId),o.push(i),o.length>=t))break;return o}function Ma(n,e,t,r,o,i){return xD(n,e,t,o,r.expandedQuery,r.rawQuery,i)}async function ND(n,e,t,r,o){let i=await Ma(n,e,t,r,ai(r.tokens,"AND"),o);if(i.length>=t)return i;let s=await Ma(n,e,t,r,ai(r.tokens,"OR"),o);return jg(i,s,t)}async function Id(n,e,t,r,o){return r.ftsMatch?Ma(n,e,t,r,r.ftsMatch,o):r.preferAnd?ND(n,e,t,r,o):Ma(n,e,t,r,ai(r.tokens,"OR"),o)}async function LD(n,e,t,r){let o=await Id(n,"harmonyos-references",e,t,r);if(o.length>=e)return o;let i=await Id(n,void 0,e,t,r);return jg(o,i,e)}function _g(n,e){return e!==void 0?n:Cg(n)}async function Ad(n,e,t=20,r){let o=await bg(n);if(mg(o.rawQuery,e)){let a=await LD(n,t,o,r);return _g(a,e)}let i=e??Ag(o.rawQuery),s=await Id(n,i,t,o,r);return _g(s,e)}import{unified as zg}from"unified";import Vg from"remark-parse";import Yg from"remark-gfm";import{toString as Fa}from"mdast-util-to-string";var OD=/^(.+?)(\d+\+)?(对象|枚举|错误码)说明$/,MD=/^\[h2\]([A-Za-z][A-Za-z0-9]*)(\d+\+)?$/,_D=/^(.{2,20}?)\s*[((]([A-Za-z][a-zA-Z0-9]{1,40})[))]\s*$/,FD=/^([A-Za-z@][A-Za-z0-9@]*?)(\d+\+)?$/,jD=/^(系统能力|元服务API|参数|返回值|说明|\*\*|表格|\|)/;function _a(n){let e=n.trim(),t=e.match(FD);return t?t[1]:e}function HD(n){let e=n.match(OD);if(!e)return;let t=_a(e[1].trim());return{displayTitle:n,symbolName:t,searchExtras:[t,e[3]]}}function $D(n){let e=_a(n.replace(/\([^)]*\)$/,""));if(/^[A-Z][A-Za-z0-9]*$/.test(e))return{displayTitle:n,symbolName:e,searchExtras:[e]};if(/^[A-Z][A-Za-z0-9]*(\([^)]*\))?$/.test(n))return{displayTitle:n,symbolName:e,searchExtras:[e]}}function fi(n){let e=n.trim();return e?HD(e)??(()=>{let t=e.match(MD);if(t){let r=t[1];return{displayTitle:e,symbolName:r,searchExtras:[r]}}})()??(()=>{let t=e.match(_D);if(!t)return;let r=t[1].trim(),o=t[2].trim();return{displayTitle:e,symbolName:o,searchExtras:[r,o]}})()??$D(e)??{displayTitle:e,searchExtras:[]}:{displayTitle:"",searchExtras:[]}}function UD(n){if(n.length<2||n.length>36||jD.test(n))return!1;let e=[...n.replace(/\s/g,"")];return e.length===0?!1:e.filter(r=>new RegExp("\\p{Script=Han}","u").test(r)).length/e.length>=.4}function Hg(n){for(let e of n){let t=e.trim().replace(/[。.!!??;;]+$/u,"").trim();if(UD(t))return t}return""}function $g(n,e,t){let r=[n,...t.searchExtras,e].filter(Boolean);return[...new Set(r)].join(" ")}var BD=/[A-Z][a-zA-Z0-9]+(?:\.[a-zA-Z][a-zA-Z0-9]+)*/g,mi=/@[A-Z][a-zA-Z]+/g,WD=/^[A-Z][A-Za-z0-9]*\.[A-Za-z][A-Za-z0-9]+/,GD=/^[A-Z][A-Za-z0-9]+(?:\([^)]*\))?$/,qD=/^[a-z0-9]+(?:[-_][a-z0-9]+)+$/,zD=new Set(["API","Action","Code","Connect","Connection","Context","Direction","Element","Elements","Entry","Focused","Module","Modules","Name","Names","Stage","Type","Types","Value","Values","Rect","Error"]),VD=new Set(["HAP","HSP","HAR","NAPI","CAPI","NDK","ArkTS","ArkUI","OHPM"]),YD=new Set(["JSON","Object","Array","Promise","console","Math","Date","String","Number","Boolean","Error","Function","Map","Set","RegExp"]);function Jg(n,e){let t=new Set,r=[n,...e];for(let o of r){for(let i of dd(o)){ft(t,i);let s=Ia(i);s&&ft(t,s)}for(let i of ud(o))ft(t,i);for(let i of o.matchAll(BD)){let s=i[0];JD(s)&&t.add(s)}for(let i of o.matchAll(mi))t.add(i[0])}return Jr([...t])}function JD(n){let e=n.trim();if(!e||mi.test(e))return!!e;if(e.includes(".")){let t=e.split(".")[0]??"";return YD.has(t)?!1:/^[A-Z]/.test(t)}return zD.has(e)?!1:VD.has(e)?!0:e.length<=3?!1:/^[A-Z][a-z]+[A-Z]/.test(e)?!0:e.length>=6&&/^[A-Z][A-Za-z0-9]+$/.test(e)}function Ug(n){let e=n.trim();return!!(!e||qD.test(e)||e.length>28&&!/[A-Z\u4e00-\u9fff]/.test(e)&&/^[a-z0-9_-]+$/.test(e))}function Kg(n,e){let t=e.jsonTitle?.trim(),r=QD(n,"").trim(),o=e.fileName.trim();return t&&!Ug(t)?t:r&&!Ug(r)?r:t||r||o}function Xg(n){return WD.test(n.trim())}function Dd(n){let e=n.trim().replace(/\([^)]*\)$/,""),t=_a(e);return GD.test(t)}function ja(n){let e=n.trim();return e?mi.test(e)||Xg(e)||Dd(e)?!0:!!fi(e).symbolName:!1}function KD(n){let e=n.trim();return!(!e||Xg(e)||Dd(e))}function XD(n){let e=new Set,t=[];for(let r of n){let o=r.trim();!KD(o)||e.has(o)||(e.add(o),t.push(o))}return t}function Bg(n){if(!n.includes("."))return 0;let e=n.split(".").pop()??"";return/^[a-z]/.test(e)?1:2}function ZD(n,e){let t=Bg(n)-Bg(e);return t!==0?t:n.localeCompare(e)}function Zg(n,e=[]){let t=[...new Set(e.map(i=>i.trim()).filter(Boolean))],r=new Set(t),o=[...new Set(n.map(i=>i.trim()).filter(Boolean))].filter(i=>!r.has(i));return o.sort(ZD),[...t,...o].slice(0,Ch)}function Ha(n){return n.replace(/\s+/g," ").trim()}function Wg(n){return n.replace(/\\([\\`*_{}[\]()#+.!-])/g,"$1")}function QD(n,e=""){let t=n.split(/\r?\n/),r=0;for(;r<t.length&&!t[r].trim();)r+=1;if(r>=t.length)return e;let o=Wg(t[r].trim()),i=o.match(/^#+\s+(.+)$/);if(i)return Wg(i[1].trim());if(r+1<t.length){let s=t[r+1].trim();if(/^=+$/.test(s)||/^-+$/.test(s))return o}return o||e}function Qg(n){let e=Ha(n.join(" "));if(e.length<=fa)return e;let t=e.slice(0,fa);return e.length<=fa+ql?t:`${t} ${e.slice(-ql)}`}function eR(n){let e=XD(n).join(" ");return e.length<=zl?e:e.slice(0,zl)}function ey(n){let e=Ha(n),{text:t,excerptTruncated:r}=Rg(e,Ih);return{leadText:t,excerptTruncated:r}}function tR(n,e){let{leadText:t,excerptTruncated:r}=ey(n);return{leadText:t,excerptTruncated:r||!!e.trim()}}function ty(n,e){if(n.type==="code"){e.codeBlocks.push(n.value??"");return}if("children"in n&&Array.isArray(n.children)){for(let r of n.children)ty(r,e);return}let t=Ha(Fa(n));t&&e.bodyParts.push(t)}function nR(n){let e=zg().use(Vg).use(Yg).parse(n),t=[],r=null,o=()=>{r&&((r.sectionTitle||r.bodyParts.length||r.codeBlocks.length)&&t.push(r),r=null)},i=()=>{r||(r={sectionTitle:"",bodyParts:[],codeBlocks:[]})};for(let s of e.children){if(s.type==="heading"){let a=s,c=Fa(a).trim();if(a.depth>=4&&c&&ja(c)){o(),r={sectionTitle:c,bodyParts:[],codeBlocks:[]};continue}i(),c&&r.bodyParts.push(c);continue}i(),ty(s,r)}return o(),t.length===0?[{sectionTitle:"",bodyParts:[],codeBlocks:[]}]:t}function rR(n){return dh.test(n)}function oR(n){return n.filter(e=>e.sectionTitle&&ja(e.sectionTitle)).length}function iR(n){return{sectionTitle:n.map(e=>e.sectionTitle.trim()).join(" | "),bodyParts:n.flatMap(e=>e.bodyParts).slice(0,40),codeBlocks:n.flatMap(e=>e.codeBlocks).slice(0,8)}}function Gg(n){let e=n.trim();return!e||mi.test(e)?mi.test(e):/对象说明$|枚举说明$/.test(e)?!0:Dd(e)}function sR(n){let e=n.filter(h=>!h.sectionTitle||!ja(h.sectionTitle)),t=n.filter(h=>h.sectionTitle&&ja(h.sectionTitle)),r=t.filter(h=>Gg(h.sectionTitle)),o=t.filter(h=>!Gg(h.sectionTitle)),i=Math.max(0,lh-r.length),s=o.slice(0,i),a=o.slice(i),c=a.filter(h=>qg(h.sectionTitle)),l=a.filter(h=>!qg(h.sectionTitle)),d=[];for(let h=0;h<l.length;h+=Wl)d.push(iR(l.slice(h,h+Wl)));return[...e,...r,...s,...c,...d]}function aR(n,e,t){let r=n.split(/\r?\n/).length,o=oR(e);return o===0?!1:rR(t)?r>=ah&&o>=ch:r>=ih&&o>=sh}var cR=/^\[h2\][A-Za-z]/;function qg(n){return cR.test(n.trim())}function ny(n){if(!n.includes(" | ")){let t=fi(n);return t.symbolName?[t.symbolName]:[]}let e=[];for(let t of n.split(" | ")){let r=fi(t.trim()).symbolName;r&&e.push(r)}return e}function lR(n,e,t,r){let o=ny(n),i=Jg(t,r);return e.symbolName&&i.push(e.symbolName),Zg([...o,...i],o)}function dR(n,e){let t=Qg(n.bodyParts),r=n.sectionTitle.trim(),o=fi(r),i=Hg(n.bodyParts),s=$g(r,i,o),a=ny(r),c=r?a.length>0?`${e.docTitle} ${a.join(" ")}`:`${e.docTitle} ${o.symbolName??r}`:e.docTitle,l=[e.docTitle,s,...n.bodyParts].join(" "),{leadText:d,excerptTruncated:h}=tR(t,r);return{documentId:e.documentId,catalogId:e.catalogId,docTitle:e.docTitle,sectionTitle:r,titleTokens:c,headingsText:s,apiSymbols:lR(r,o,l,n.codeBlocks),bodySample:t,leadText:d,excerptTruncated:h}}function ry(n,e){for(let t of n){if(t.type==="heading"){let o=Fa(t).trim();o&&e.headings.push(o);continue}if(t.type==="code"){e.codeBlocks.push(t.value??"");continue}if("children"in t&&Array.isArray(t.children)){ry(t.children,e);continue}let r=Ha(Fa(t));r&&e.bodyParts.push(r)}}function uR(n){let e=zg().use(Vg).use(Yg).parse(n),t={headings:[],bodyParts:[],codeBlocks:[]};return ry(e.children,t),t}function pR(n,e){let t=uR(n),r=e.docTitle?.trim()||e.documentId,o=Qg(t.bodyParts),i=[r,...t.headings,o].join(" "),{leadText:s,excerptTruncated:a}=ey(o);return{documentId:e.documentId,catalogId:e.catalogId,docTitle:r,sectionTitle:"",titleTokens:r,headingsText:eR(t.headings),apiSymbols:Zg(Jg(i,t.codeBlocks)),bodySample:o,leadText:s,excerptTruncated:a}}function oy(n,e){let t=e.docTitle?.trim()||e.documentId,r=nR(n);return aR(n,r,e.documentId)?sR(r).filter(o=>o.sectionTitle||o.bodyParts.length>0||o.codeBlocks.length>0).map(o=>dR(o,{...e,docTitle:t})):[pR(n,{...e,docTitle:t})]}async function fR(n){let e=[];async function t(r){let o=await be.promises.readdir(r,{withFileTypes:!0});for(let i of o){if(i.name.startsWith("."))continue;let s=Me.join(r,i.name);i.isDirectory()?await t(s):i.isFile()&&i.name.endsWith(".md")&&e.push(s)}}return await t(n),e}function mR(n,e){let t=Me.relative(e,n).split(Me.sep).join("/").split("/");if(t[0]==="docs"&&(t=t.slice(1)),t.length<2)return null;let r=t[0],o=Rh[r];if(o===void 0)return null;let i=t[t.length-1].replace(/\.md$/,"");return t[t.length-1]=i,{documentId:t.join("/"),catalogId:o,docTitle:i}}async function hR(n){let e=n.replace(/\.md$/,".json");try{let t=await be.promises.readFile(e,"utf-8");return JSON.parse(t).title?.trim()||void 0}catch{return}}async function gR(n,e){let t=mR(n,e);if(!t)return[];let r=await be.promises.readFile(n,"utf-8"),o=Kg(r,{jsonTitle:await hR(n),fileName:t.docTitle});return oy(r,{...t,docTitle:o})}async function yR(n,e,t){let r=Me.join(e,"search.db");return await Fg(r,n,async(o,i)=>{await t?.({current:o,total:i,message:`Building search index\u2026 ${o.toLocaleString()} / ${i.toLocaleString()} segments`})}),n.length}async function wR(n){let e=await fR(n),t=[];for(let r of e){let o=await gR(r,n);t.push(...o)}return t}function vR(n,e){return{indexVersion:Br,docsZipSha256:n.docsZipSha256,termsHash:n.termsHash,synonymsHash:n.synonymsHash,segmentCount:e,builtAt:Date.now(),builtBy:n.builtBy}}async function sy(n){n.lexiconDir&&Kl(n.lexiconDir);try{let e=await wR(n.docsDir);await n.onProgress?.({current:0,total:e.length,message:`Building search index\u2026 0 / ${e.length.toLocaleString()} segments`}),await be.promises.mkdir(n.tmpDir,{recursive:!0});let t=await yR(e,n.tmpDir,n.onProgress),r=vR(n,t);return await be.promises.writeFile(Me.join(n.tmpDir,"build-meta.json"),JSON.stringify(r,null,2)),await $h(n.tmpDir),r}finally{n.lexiconDir&&Kl(null)}}async function ay(){return be.promises.mkdtemp(Me.join(iy.tmpdir(),"deveco-docs-"))}async function SR(n,e){try{await be.promises.rename(n,e)}catch(t){let r=t.code;if(r!=="EPERM"&&r!=="EXDEV")throw t;await be.promises.cp(n,e,{recursive:!0}),await be.promises.rm(n,{recursive:!0,force:!0})}}async function cy(n){let e=Me.join(n,"docs");try{await be.promises.access(e)}catch{return}let t=new Set(["docs","docs.zip"]);for(let r of await be.promises.readdir(e,{withFileTypes:!0})){if(t.has(r.name))continue;let o=Me.join(e,r.name),i=Me.join(n,r.name);await be.promises.rm(i,{recursive:!0,force:!0}),await SR(o,i)}await be.promises.rm(Me.join(e,"docs"),{recursive:!0,force:!0}),await be.promises.rm(Me.join(e,"docs.zip"),{force:!0}),await be.promises.rm(e,{recursive:!0,force:!0})}var hi=class extends Error{constructor(e){super(e),this.name="NativeDepsError"}};function bR(){let n=Vr(),e=Z();return["Documentation search index is not installed yet.","",...ma(n),`Index directory: ${e}`,"","Try:"," 1. Wait a moment and run the docs command again (postinstall may still be running)"," 2. Reinstall: npm uninstall -g @deveco/deveco-cli && npm install -g <package.tgz>"," 3. Check the log file above for setup errors"].join(`
|
|
1374
|
-
`)}function ER(){let n=Vr();return[`Chinese tokenizer (${
|
|
1374
|
+
`)}function ER(){let n=Vr();return[`Chinese tokenizer (${E()?"jieba-wasm":"@node-rs/jieba"}) failed to load.`,"",`Node.js: ${process.version} (required: >=18)`,"",...ma(n),"","Try:"," 1. Reinstall: npm uninstall -g @deveco/deveco-cli && npm install -g <package.tgz>"," 2. Use Node.js 18 or newer",E()?" 3. Verify jieba-wasm package is installed (WASM backend for OpenHarmony)":" 3. Configure npm registry/proxy if your network blocks optional platform packages"].join(`
|
|
1375
1375
|
`)}function PR(n){let e=Vr();return[n,"",...ma(e)].join(`
|
|
1376
1376
|
`)}async function ly(){try{jh()}catch(n){throw Fh(n)?new hi(`${bR()}
|
|
1377
1377
|
|
|
@@ -1410,8 +1410,8 @@ ${Bd(n.summary)}
|
|
|
1410
1410
|
`),console.log(ge("[compat:check] === end stdout ===")));let i=new Error(`Compatibility scan failed: ${o.message}`+(o.stderr?`
|
|
1411
1411
|
${o.stderr}`:""));throw o.stdout&&(i.stdout=o.stdout),i}}function vx(n,e){if(n.length>0&&e.modules&&e.modules.length>0)throw new Error("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 Error("--source-version is required.");if(!e.targetVersion)throw new Error("--target-version is required.");if(!e.outputPath&&e.format==="csv")throw new Error("--format csv requires --output-path. For console output, use --format json or --format default (or omit the flag).")}function Sx(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 Error(`${t.join(" and ")} ${r} not in the available SDK version list.
|
|
1412
1412
|
Run \`devecocli compat versions\` to see all available versions.`)}if(n.sourceVersion&&n.targetVersion){let r=e.indexOf(n.sourceVersion),o=e.indexOf(n.targetVersion);if(r>=o)throw new Error(`--target-version "${n.targetVersion}" must be later than --source-version "${n.sourceVersion}". Run \`devecocli compat versions\` to see the available order.`)}}function bx(n,e,t,r,o){o==="none"&&(t==="json"?hx(n,r):mx(n,r)),fx(n,e)}function Ex(n,e){let t=W.dirname(n),r=W.basename(n),o=e.slice(1).map(i=>i.startsWith("--")?i:`"${i}"`).join(" ");m(ge(`[compat:check] command: cd "${t}" && node "${r}" ${o}`))}function Px(n){try{Zk(n),m(ge(`[compat:check] cleaned up tmp report: "${n}"`))}catch(e){m(ge(`[compat:check] failed to clean up tmp report: ${e.message}`))}}var Cx=[".csv",".json"];function Ix(n){return Cx.includes(n.toLowerCase())}function Ax(n,e){if(!n)return{kind:"none"};let t=W.extname(n).toLowerCase();if(!Ix(t))return{kind:"dir",dirPath:W.resolve(n)};if(t===".csv"&&!(e==="default"||e==="csv")||t===".json"&&e!=="json")throw new Error(`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:W.resolve(n),ext:t}}function Dx(n){if(n.kind==="file"){if(Va(n.filePath))throw new Error(`Target file "${n.filePath}" already exists. Remove it first, or choose a different --output-path.`);let e=W.dirname(n.filePath);if(!Va(e))throw new Error(`Target directory "${e}" does not exist. Create it first, or choose a different --output-path.`)}else if(n.kind==="dir"&&!Va(n.dirPath))throw new Error(`Target directory "${n.dirPath}" does not exist. Create it first, or choose a different --output-path.`)}function hw(n){return JSON.stringify({count:n.length,records:n},null,2)+`
|
|
1413
|
-
`}function Rx(n,e,t,r){r===".csv"?dw(n,t):uw(t,hw(e),"utf8"),m(ge(`[compat:check] saved report: "${t}"`))}function Tx(n,e,t,r){if(r==="json"){let i=W.basename(n,".csv"),s=W.join(t,`${i}.json`);return uw(s,hw(e),"utf8"),m(ge(`[compat:check] saved report: "${s}"`)),s}let o=W.join(t,W.basename(n));return dw(n,o),m(ge(`[compat:check] saved report: "${o}"`)),o}async function kx(n,e){let t=new ke(n,process.cwd(),!0),r=e.modules&&e.modules.length>0?e.modules[0]:void 0;try{await t.compileNative("default",r)}catch(o){throw new Error(`hvigorw compileNative failed (module=${r??"<project>"}): `+o.message,{cause:o})}}async function xx(n,e){vx(n,e);let t=G.discover(process.cwd());e.modules&&e.modules.length>0&&ix(t,e.modules),n.length>0&&sx(n);let r=await I.new(),{apiChangeDir:o,scriptPath:i}=r.getApiscanPaths();m(ge(`[compat:check] script: "${i}"`));let s=mw(o);Sx(e,s),e.outputPath&&m(ge(`[compat:check] outputPath: "${e.outputPath}"`));let a=Ax(e.outputPath,e.format);return m(ge(`[compat:check] outputTarget: ${a.kind}`)),Dx(a),{project:t,scriptPath:i,target:a,toolProvider:r}}async function Nx(n,e){let{project:t,scriptPath:r,target:o,toolProvider:i}=await xx(n,e),s=ex({text:"Running compatibility check...",color:"cyan"}).start();try{await kx(i,e);let a=yx(r,n,t,e);Ex(r,a);let c=await wx(i,a),l=px(c,zd.tmpdir());if(!l)throw new Error("Scanner output format unexpected: missing report path.");m(ge(`[compat:check] tmp csv: "${l}"`));let d=ux(l),h=null;if(o.kind==="file")Rx(l,d,o.filePath,o.ext),h=o.filePath;else if(o.kind==="dir")h=Tx(l,d,o.dirPath,e.format);else if(o.kind!=="none")throw new Error(`Unexpected output target kind: ${o.kind}`);Px(l),s.stop(),bx(d,h,e.format,e.limit,o.kind)}catch(a){throw s.fail("Compatibility check failed"),a}}var Vd=new Jk("compat").description("Compatibility checking utilities.");Vd.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.',fw,"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)",tx,100).action(async(n,e)=>{await Nx(n,e)});Vd.command("versions").description("List all available target SDK versions for compatibility checking").action(async()=>{let n=rx("csv");await ox(n)});var gw=Vd;var yw=new Lx("check").description("Run DevEco project checks").addCommand(Gd());b()||yw.addCommand(gw);var ww=yw;import{Command as vL}from"commander";import{green as gu,red as SL}from"colorette";import yu from"fs";import tv from"path";import bL from"json5";import{readFileSync as sN}from"fs";import{join as Ox}from"path";var Q={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"},je={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:Ox(".ohos","config"),DOWNLOAD_CONNECT_TIMEOUT_MS:5e3},ye={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"},mt={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."},K={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.",JAVA_PLATFORM_UNSUPPORTED:"Java environment not found (Windows/macOS/Linux only).",JAVA_REQUIRED:"Java runtime is required to run hvigor.Set JAVA_HOME or add Java to PATH.",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 Ya(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}function Yd(n){let e=n.replace(je.TEAM_ID_INVALID_CHARS,"");return`${je.CERT_NAME_PREFIX}${e}.cer`}function ro(n,e,t){if(n===mt.FORBIDDEN)return e===ye.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN);if(n===mt.UNAUTHORIZED)return new Error(E.ERR_UNAUTHORIZED);if(t.includes(ye.USER_NOT_HARMONY_CODE))return new Error(E.ERR_USER_NOT_HARMONY);if(t.includes(ye.CERT_LIMIT_CODE))return new Error(E.ERR_CERT_LIMIT_REACHED);let r=Mx(t);return new Error(r??E.ERR_DOWNLOAD_CER)}function Mx(n){let e=vw(n);if(!e||typeof e!="object")return null;let t=e.ret;if(t==null)return null;let r=typeof t=="string"?vw(t):t;if(r&&typeof r=="object"){let o=r.msg;if(typeof o=="string"&&o.trim()!=="")return o}return null}function vw(n){try{return JSON.parse(n)}catch{return null}}function Jd(n){return JSON.parse(n)}async function Sw(n){let e=`${Q.BASE_URL}${Q.CERT_LIST_PATH}`,t=await x.postAllowFailure(e,{headers:Ya(n)});if(t.statusCode!==200)throw ro(t.statusCode,t.statusText,t.data);return Jd(t.data)?.certList??[]}async function Ja(n,e){return(await Sw(n)).find(r=>r.certName===e)??null}async function Kd(n,e){let t=`${Q.BASE_URL}${Q.CERT_DELETE_PATH}`,r=await x.deleteAllowFailure(t,{headers:Ya(n),params:{certIds:[e]}});if(r.statusCode!==200)throw ro(r.statusCode,r.statusText,r.data);return Jd(r.data)?.ret?.code===0}async function Xd(n,e,t){let r=`${Q.BASE_URL}${Q.CERT_ADD_PATH}`,o={csr:e,certName:t,certType:je.CERT_TYPE_DEBUG},i=await x.postAllowFailure(r,{headers:Ya(n),params:o});if(i.statusCode!==200)throw ro(i.statusCode,i.statusText,i.data);if(!i.data.includes(ye.SUCCESS_MARKER))throw ro(void 0,i.statusText,i.data)}async function Zd(n,e){let t=`${Q.BASE_URL}${Q.CERT_DOWNLOAD_URL_PATH}`,r=await x.postAllowFailure(t,{headers:Ya(n),params:{sourceUrls:e}});if(r.statusCode!==200)throw ro(r.statusCode,r.statusText,r.data);return Jd(r.data)?.urlsInfo?.[0]?.newUrl??null}import{mkdirSync as _x,writeFileSync as Fx,existsSync as jx}from"fs";import{dirname as Hx}from"path";async function Ci(n,e){let{statusCode:t,statusText:r,buffer:o}=await x.getBinaryAllowFailure(n,{timeout:je.DOWNLOAD_CONNECT_TIMEOUT_MS});if(t!==200)throw t===mt.FORBIDDEN&&r===ye.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_DOWNLOAD_CER);let i=Hx(e);jx(i)||_x(i,{recursive:!0}),Fx(e,o)}import rN from"fs/promises";import{readFileSync as oN}from"fs";import Ka from"path";import Pw from"crypto";import $x from"os";import Ii from"fs/promises";var Cw={GENERATE_KEYPAIR:"generate-keypair",GENERATE_CSR:"generate-csr"},bw=["ECC","RSA"],Ew=["SHA256withECDSA","SHA384withECDSA","SHA256withRSA","SHA384withRSA"],Ux={ECC:["NIST-P-256","NIST-P-384"],RSA:["2048","3072","4096"]},Bx=8,Qd=64,Wx=/[\\:*?"<>|=-]/g,ht={productName:"default",keyAlias:"debugKey",keyAlg:"ECC",keySize:"NIST-P-256",csrSubject:"CN=DebugKey",signAlg:"SHA256withECDSA"};function Gx(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>Qd)throw new Error(`The length of keyAlias cannot exceed ${Qd}`);if(!bw.includes(n.keyAlg))throw new Error(`Invalid key algorithm ${n.keyAlg}, available: ${bw.join(" / ")}`);let e=Ux[n.keyAlg];if(!e.includes(n.keySize))throw new Error(`Key algorithm ${n.keyAlg} does not support size ${n.keySize}, available: ${e.join(", ")}`)}function qx(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(!Ew.includes(n.signAlg))throw new Error(`Invalid sign algorithm ${n.signAlg}, available: ${Ew.join(" / ")}`)}function zx(n){return Pw.createHash("sha256").update(n,"utf8").digest().toString("base64url").replaceAll(/[-_=]/g,"")}function Vx(n){let e=n?.trim()??"";return e&&e.replace(Wx,"_").slice(0,Qd)||ht.productName}async function Iw(){let n=await I.new(),e=n.javaPath;if(!e&&!b())throw new Error("Java runtime not found. DevEco Studio JBR is required to run hap-sign-tool.jar.");let t=n.sdkPath;f.info(`\u8BFB\u53D6SDK\u6839\u76EE\u5F55\uFF1A${t}`);let r=b()?"hap-sign-tool":"hap-sign-tool.jar",o=Ka.join(t,"default","openharmony","toolchains","lib",r);try{await Ii.access(o)}catch(i){throw new Error(`${r} not found: ${o}`,{cause:i})}return{javaPath:e,toolPath:o}}async function Yx(n){let{javaPath:e,toolPath:t}=await Iw(),r=[Cw.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 o=r.map(i=>["-keyPwd","-keystorePwd"].includes(i)?`${i} ******`:i);return f.debug("generate-keypair \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),b()?[t,...r]:[e,"-jar",t,...r]}async function Jx(n){let{javaPath:e,toolPath:t}=await Iw(),r=[Cw.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 o=r.map(i=>["-keyPwd","-keystorePwd"].includes(i)?`${i} ******`:i);return f.debug("generate-csr \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),b()?[t,...r]:[e,"-jar",t,...r]}async function Kx(n){f.info("\u5F00\u59CB\u751F\u6210 P12 \u5BC6\u94A5\u5E93"),Gx(n);let e=await Yx(n),t=await wo(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 f.info("\u751F\u6210P12\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}async function Xx(n){f.info("\u5F00\u59CB\u751F\u6210 CSR \u8BC1\u4E66\u8BF7\u6C42"),qx(n);let e=await Jx(n),t=await wo(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 f.info("\u751F\u6210CSR\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}function Zx(n=Bx){return Pw.randomBytes(n).toString("base64url").replaceAll(/[-_=]/g,"")}async function Qx(){let n=$x.homedir();try{await Ii.access(n)}catch(t){throw new Error("Invalid user path;",{cause:t})}let e=Ka.join(n,b()?"Documents":"",".ohos","config");try{await Ii.mkdir(e,{recursive:!0,mode:448})}catch(t){throw new Error(`Failed to create directory ${e}`,{cause:t})}return f.info(`\u7B7E\u540D\u914D\u7F6E\u76EE\u5F55\u5C31\u7EEA\uFF1A${e}`),e}async function Ee(n,e,t){let r=Vx(n),o=Ka.basename(e),i=zx(e),s=`${r}_${o}_${i}=.${t}`,a=await Qx();return Ka.join(a,s)}function eN(n){let e;try{e=G.discover(n).rootDir}catch(t){throw new Error(`Current directory ${n} is not a valid project root`,{cause:t})}return e}async function tN(n){try{await Ii.access(n)}catch(e){throw new Error(`Project directory ${n} is not accessible, missing read/write permissions`,{cause:e})}}async function nN(n){try{await Ii.access(n)}catch(e){throw new Error(`P12 file ${n} does not exist, terminating CSR generation.`,{cause:e})}}async function eu(n,e,t){let r=process.cwd(),o=eN(r);await tN(o),f.info(`\u8BC6\u522B\u9879\u76EE\u6839\u76EE\u5F55\uFF1A${o}`);let i=Zx(),s=await Ee(n??"",o,"p12"),a=await Ee(n??"",o,"csr");return console.log("Start generating p12"),await Kx({keyAlias:e?.keyAlias??ht.keyAlias,keyPwd:i,keyAlg:e?.keyAlg??ht.keyAlg,keySize:e?.keySize??ht.keySize,keystoreFile:s,keystorePwd:i}),await nN(s),console.log("Start generating csr"),await Xx({subject:t?.subject??ht.csrSubject,outFile:a,keyAlias:t?.keyAlias??ht.keyAlias,keyPwd:i,signAlg:t?.signAlg??ht.signAlg,keystoreFile:s,keystorePwd:i}),{p12FilePath:s,csrFilePath:a,keyPwd:i,keyAlias:e?.keyAlias??ht.keyAlias}}var iN=["p12","cer","csr","p7b"];async function tu(n,e){for(let t of iN){let r=await Ee(n,e,t);await rN.rm(r,{force:!0})}}function nu(n){let e;try{e=oN(n,"utf-8")}catch{throw new Error(E.ERR_CERT_INVALIDATE)}if(!je.CERT_PATTERN.test(e))throw new Error(E.ERR_CERT_INVALIDATE)}async function Aw(n,e){return{certPath:await Ee(n,e,"cer"),csrPath:await Ee(n,e,"csr"),p12Path:await Ee(n,e,"p12"),profilePath:await Ee(n,e,"p7b")}}async function ru(n,e){let t=e??"",r=G.discover(process.cwd()).rootDir;await tu(t,r);let o=Yd(n.teamId),i=await Ja(n,o);if(i&&!await Kd(n,i.id))throw new Error(E.ERR_DOWNLOAD_CER);let s=await eu(e),a;try{a=sN(s.csrFilePath,"utf-8")}catch{throw new Error(E.ERR_READ_CSR)}console.log("Start generating certificate"),await Xd(n,a,o);let c=await Ja(n,o);if(!c)throw new Error(E.ERR_DOWNLOAD_CER);let l=await Zd(n,c.certObjectId);if(!l)throw new Error(E.ERR_DOWNLOAD_CER);let d=await Ee(t,r,"cer");await Ci(l,d),nu(d);let h=await Ee(t,r,"p7b");return{p12FilePath:s.p12FilePath,csrFilePath:s.csrFilePath,cerFilePath:d,profileFilePath:h,certId:c.id,keyAlias:s.keyAlias,keyPwd:s.keyPwd,storePassword:s.keyPwd}}import sc from"crypto";import xn from"fs";import*as Uw from"path";import RN from"json5";import{execa as jw}from"execa";import Hw from"node-forge";import{createCipheriv as aN,createDecipheriv as cN,pbkdf2Sync as lN,randomBytes as au}from"crypto";import{promises as rr}from"fs";import{dirname as dN,join as gt}from"path";var Xa=3,Ai=16,uN=1e4,Dw="material",pN=new Uint8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),xw="aes-128-gcm",nr=12,Za=16,Rn=4;function ou(n){return new Uint8Array(au(n))}function fN(n){return au(n).toString("hex")}function mN(...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 o=0;for(let i of n)o^=i[r];t[r]=o}return t}function Rw(n,e,t=uN,r=Ai){let o=[...n,pN],i=mN(...o),s=Buffer.from(i).toString("utf8"),a=Buffer.from(s,"utf8"),c=lN(a,e,t,r,"sha256");return new Uint8Array(c)}function Tw(n,e){let t=au(nr),r=aN(xw,n,t),o=Buffer.concat([r.update(e),r.final()]),i=r.getAuthTag(),s=Buffer.concat([o,i]),a=s.length,c=Buffer.alloc(Rn+nr+s.length);return c.writeUInt32BE(a,0),t.copy(c,Rn),s.copy(c,Rn+nr),c}function kw(n,e){if(e.length<Rn+nr+Za)throw new Error("Ciphertext too short");let t=e.readUInt32BE(0),r=e.subarray(Rn,Rn+nr),o=e.subarray(Rn+nr,Rn+nr+t);if(o.length<Za)throw new Error("Ciphertext too short for auth tag");let i=o.subarray(0,o.length-Za),s=o.subarray(o.length-Za),a=cN(xw,n,r);return a.setAuthTag(s),Buffer.concat([a.update(i),a.final()])}async function hN(n){try{await rr.rm(n,{recursive:!0,force:!0})}catch{}}async function iu(n){let e=await rr.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 rr.readFile(gt(n,t[0]))}async function su(n,e){let t=fN(Ai),r=gt(n,t);return await rr.writeFile(r,e),t}var Tn=class{static async generateMaterial(e){let t=gt(e,Dw);await hN(t);let r=gt(t,"ac"),o=gt(t,"ce");await rr.mkdir(r,{recursive:!0}),await rr.mkdir(o,{recursive:!0});for(let d=0;d<Xa;d++)await rr.mkdir(gt(t,"fd",String(d)),{recursive:!0});let i=ou(Ai),s=[];for(let d=0;d<Xa;d++)s.push(ou(Ai));let a=ou(Ai),c=Rw(s,i),l=Tw(c,a);await su(r,i),await su(o,l);for(let d=0;d<Xa;d++){let h=gt(t,"fd",String(d));await su(h,s[d])}return a}static async readMaterial(e){let t=gt(e,Dw),r=gt(t,"ac"),o=new Uint8Array(await iu(r)),i=[];for(let d=0;d<Xa;d++){let h=gt(t,"fd",String(d)),w=await iu(h);i.push(new Uint8Array(w))}let s=gt(t,"ce"),a=await iu(s),c=Rw(i,o),l=kw(c,a);return new Uint8Array(l)}static async getStoreKey(e){let t=dN(e);try{return await this.readMaterial(t)}catch{return await this.generateMaterial(t)}}static async encryptedPassword(e,t){let r=await this.getStoreKey(t),o=Buffer.from(e,"utf8");return Tw(r,o).toString("hex")}static async decryptPassword(e,t){if(!e)return"";let r=await this.getStoreKey(t),o=Buffer.from(e,"hex");return kw(r,o).toString("utf8")}};import _w from"fs";import oc from"path";import bN from"json5";import*as Qa from"fs";import*as Nw from"path";function ec(n){let e=Nw.resolve(n);if(!Qa.existsSync(e))throw new Error(`SDK info file not found: ${e}`);let t;try{t=Qa.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 o=r?.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 io from"fs";import*as He from"path";import{debuglog as oo}from"util";var Lw={"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 gN(n){return Object.prototype.hasOwnProperty.call(Lw,n)}function tc(n){if(gN(n))return Lw[n]}var Ow={DUPLICATE_PERMISSION:"Duplicate permissions detected. Make sure each permission is unique in the same module and try again."};import{fileURLToPath as yN}from"url";var rc=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 nc(n){return typeof n=="object"&&n!==null&&!Array.isArray(n)}function Mw(n){return n==null||n.length===0}function wN(n){return!Mw(n)}function cu(n,e){let t=n[e];return typeof t=="string"?t:t==null?"":String(t)}function vN(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 SN(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 kn=class{static MIN_API_TO_FIND_ACL_IN_SDK=23;static ACL_PREFIX="ohos.permission.";static ACL_PERMISSIONS_CONFIG_PATH=He.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=He.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,o=this.getOrCreateSet(this.aclPermissionNamesMap,r),i=this.getOrCreateSet(this.aclPermissionInfoMap,r);o.clear(),i.clear();let s=He.join(t.sdkPath,"default","sdk-pkg.json"),a=ec(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 r=e.get(t);return r||(r=new Set,e.set(t,r)),r}static readBuiltInConfigText(){if(this.builtInConfigTextLoader)return this.builtInConfigTextLoader();let e=He.join(this.getResourcesDir(),this.ACL_PERMISSIONS_CONFIG_PATH);if(io.existsSync(e))return io.readFileSync(e,"utf-8")}static getResourcesDir(){let e=import.meta.url,t=yN(e);if(t.includes("dist")){let s=He.dirname(t),a=He.dirname(s);return He.join(a,"src","resources")}let r=He.dirname(t),o=He.dirname(r),i=He.dirname(o);return He.join(i,"src","resources")}static initAclPermissionFromBuiltInConfig(e,t){let r;try{r=this.readBuiltInConfigText()}catch{oo("read builtin acl permission failed.");return}if(r!==void 0)try{let o=JSON.parse(r),s=(Array.isArray(o)?o:nc(o)?Object.values(o):[]).filter(nc).map(a=>new rc(a));s.forEach(a=>{let c=a.permissionInsteadName;wN(c)&&(a.permissionInsteadName=tc(c)),e.add(a.permissionName)}),s.forEach(a=>{t.add(a)})}catch(o){oo(`failed to parse aclPermissionsInfo.json: ${o}`)}}static initAclPermissionFromSDK(e,t,r){let o=this.parsePermissionDefinitionFile(e);o&&o.forEach(i=>{if(!nc(i))return;let s=i,a=cu(s,this.ACL_NAME_KEY);this.isAclPermission(s,a)&&(Mw(a)||(this.generateAclInfos(r,a,s),t.add(a)))})}static isAclPermission(e,t){return this.aclWhiteList.has(t)?!0:this.aclBlackList.has(t)||cu(e,this.ACL_AVAILABLE_LEVEL_KEY)!==this.ACL_AVAILABLE_LEVEL_VALUE||cu(e,this.ACL_AVAILABLE_TYPE_KEY)!==this.ACL_AVAILABLE_TYPE_VALUE?!1:vN(e,this.ACL_PROVISION_ENABLE_KEY)}static generateAclInfos(e,t,r){let o=new rc;o.permissionName=t;let i=t.startsWith(this.ACL_PREFIX)?t.slice(this.ACL_PREFIX.length):t;o.permissionDisplayName=i;let s=SN(r,this.ACL_SINCE_KEY);o.minSupportApiLevel=String(s),this.handleInsteadName(o,i),e.add(o)}static parsePermissionDefinitionFile(e){let t=He.join(e.sdkPath,"default","openharmony","toolchains",this.PERMISSION_DEFINITIONS_RELATIVE_PATH);if(!io.existsSync(t))return;let r;try{r=io.readFileSync(t,"utf-8")}catch(s){oo(`failed to load permissionDefinitions.json: ${s}`);return}let o;try{let s=JSON.parse(r);if(!nc(s)){oo("json object is null");return}o=s}catch(s){oo(`failed to parse permissionDefinitions.json: ${s}`);return}let i=o[this.ACL_DEFINE_PERMISSION_KEY];if(!Array.isArray(i)){oo("definePermissions is not an array");return}return i}static handleInsteadName(e,t){this.ACL_HAVE_INSTEAD_NAME.has(e.permissionName)&&(e.permissionInsteadName=tc(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_INSTEAD_NAME_SUFFIX}`),e.permissionHelpUrlKey=tc(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_HELP_URL_KEY_SUFFIX}`))}};function ic(n,e){let t=new Set,r=new Set;kn.handleSpecificAclPermissions(),kn.initAclPermission(n,e);for(let o of n.profile.modules){let i=Fw(o,n,e,r,oc.join("src","main"));for(let a of i)t.add(a);let s=Fw(o,n,e,r,oc.join("src","ohosTest"));for(let a of s)t.add(a)}return EN(r),t}function EN(n){if(n.size>0)throw new Error(Ow.DUPLICATE_PERMISSION)}function Fw(n,e,t,r,o){let i=CN(e.rootDir,n,o);if(i==null)return new Set;let s=[];for(let w of i){if(typeof w!="object"||w===null)continue;let v=PN(w,"name");v&&s.push(v)}let a=new Set(s);a.size!==s.length&&r.add(n.name);let c=oc.join(t.sdkPath,"default","sdk-pkg.json"),l=ec(c),d=kn.getAclPermissionInfos(e),h=new Set(Array.from(d).filter(w=>{let v=Number(w.minSupportApiLevel);return Number.isFinite(v)&&v<=l}).map(w=>w.permissionName));for(let w of Array.from(a))h.has(w)||a.delete(w);return a}function PN(n,e){let t=n[e];return typeof t=="string"?t:""}function CN(n,e,t){let r=oc.join(n,e.srcPath,t,"module.json5"),o=IN(r);if(o==null)return null;let i=AN(o,"module");return i==null?null:DN(i,"requestPermissions")}function IN(n){try{if(!_w.existsSync(n))return null;let e=_w.readFileSync(n,"utf-8");return bN.parse(e)}catch{return null}}function AN(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 DN(n,e){if(n==null||typeof n!="object")return null;let t=n[e];return Array.isArray(t)?t:null}var du=class{verifyStorePassword(e,t){try{let r=xn.readFileSync(e),o=Hw.asn1.fromDer(r.toString("binary"));return Hw.pkcs12.pkcs12FromAsn1(o,t),!0}catch{return!1}}getLocalCerFingerprints(e){let r=xn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g);if(r&&r.length>0)return r.map(o=>this.formatFp(new sc.X509Certificate(o).fingerprint256));try{return[this.formatFp(new sc.X509Certificate(xn.readFileSync(e)).fingerprint256)]}catch{return[]}}getLocalCerExpiry(e,t){if(!t)return null;let o=xn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g)??[];for(let i of o)try{let s=new sc.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 TN(n){let e=xn.readFileSync(n,"utf-8"),t=kN(e),r=null;if(t)try{r=JSON.parse(t)}catch{r=null}let o=r?.["bundle-info"]??{};return{rawContent:e,bundleNameInProfile:lu(o["bundle-name"]),expiryDate:xN(r?.validity?.["not-after"]),cerFingerprintInProfile:NN(lu(o["development-certificate"])),deviceUdidsInProfile:LN(r?.["debug-info"]?.["device-ids"]),aclPermissionsInProfile:ON(r?.acls?.["allowed-acls"]),teamIdInProfile:lu(o["developer-id"])}}function kN(n){let e=n.indexOf("{");if(e<0)return null;let t=0,r=-1,o=!1,i=!1;for(let s=e;s<n.length;s++){let a=n[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)){r=s;break}}return r<0?null:n.slice(e,r+1)}function xN(n){if(typeof n!="number"||!Number.isFinite(n))return null;let e=new Date(n*1e3);return isNaN(e.getTime())?null:e}function NN(n){if(!n)return null;try{let t=new sc.X509Certificate(n).fingerprint256.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}catch{return null}}function LN(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 ON(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 lu(n){return typeof n=="string"?n:null}var Di=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.#o(r)??n.#i(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,o=e.teamId,i=e.productName??"default",s=G.discover(process.cwd()),a=s.rootDir,[c,l]=await Promise.all([MN(i,a),FN(t.hdcPath)]),d=null;if($w(c).allExist)try{d=TN(c.profileFile)}catch{}return{force:r,teamId:o,productName:i,projectPath:a,materialPaths:c,bundleName:s.getBundleName(),deviceUdids:l,storePassword:await _N(a,i,c.storeFile),localAclPermissions:[...ic(s,t)].sort(),hapSignTool:new du,profileInfo:d}}static#t(e){return e.force?(m("[reGenerateSign] --force flag set, skipping all checks"),{shouldRegenerate:!0,reason:"--force flag set",checkDetails:qe({force:!0})}):null}static#n(e){let t=$w(e.materialPaths);return t.allExist?null:(m(`[reGenerateSign] missing files: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Missing files: ${t.missing.join(", ")}`,checkDetails:qe({allFilesExist:!1,missingFiles:t.missing})})}static#r(e){return(e.profileInfo?.rawContent??"").trim().length>0?null:(m("[reGenerateSign] profile content is empty"),{shouldRegenerate:!0,reason:"Profile file content is empty",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!1})})}static#o(e){let t=e.profileInfo?.expiryDate;return!t||t>=new Date?null:(m(`[reGenerateSign] profile expired at ${t.toISOString()}`),{shouldRegenerate:!0,reason:`Profile expired at ${t.toISOString()}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!1})})}static#i(e){let t=e.profileInfo?.bundleNameInProfile;return t&&t===e.bundleName?null:(m(`[reGenerateSign] bundleName mismatch \u2014 current=${e.bundleName}, profile=${t}`),{shouldRegenerate:!0,reason:`bundleName mismatch: current=${e.bundleName}, in profile=${t}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!1})})}static#s(e){let t=e.profileInfo?.teamIdInProfile;return t&&t===e.teamId?null:(m(`[reGenerateSign] teamId mismatch \u2014 current=${e.teamId}, profile=${t}`),{shouldRegenerate:!0,reason:`teamId mismatch: current=${e.teamId}, in profile=${t}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!1})})}static#a(e){let t=HN(e.profileInfo?.deviceUdidsInProfile??[],e.deviceUdids);return t.allPresent?null:(m(`[reGenerateSign] missing device UDIDs: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Device UDID(s) not in profile: ${t.missing.join(", ")}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!1,missingDeviceUdids:t.missing})})}static#c(e){return $N(e.localAclPermissions,e.profileInfo?.aclPermissionsInProfile??[])?null:(m("[reGenerateSign] ACL permissions mismatch"),{shouldRegenerate:!0,reason:"ACL permissions mismatch between project and profile",checkDetails:qe({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:(m("[reGenerateSign] certificate mismatch"),{shouldRegenerate:!0,reason:"Certificate mismatch between profile and local .cer file",checkDetails:qe({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:(m(`[reGenerateSign] local certificate expired at ${r.toISOString()}`),{shouldRegenerate:!0,reason:`Local certificate expired at ${r.toISOString()}`,checkDetails:qe({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:(m("[reGenerateSign] keystore password verification failed"),{shouldRegenerate:!0,reason:"Keystore password verification failed (storeFile may be corrupted or password changed)",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})}):(m("[reGenerateSign] no stored keystore password"),{shouldRegenerate:!0,reason:"No stored keystore password available for verification",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})})}static#p(){return m("[reGenerateSign] all checks passed \u2014 skip regeneration"),{shouldRegenerate:!1,reason:"",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!0})}}};async function MN(n,e){let[t,r,o,i]=await Promise.all([Ee(n,e,"p12"),Ee(n,e,"csr"),Ee(n,e,"cer"),Ee(n,e,"p7b")]);return{storeFile:t,csrFile:r,cerFile:o,profileFile:i}}async function _N(n,e,t){let r=Uw.join(n,"build-profile.json5");if(!xn.existsSync(r))return;let o;try{o=RN.parse(xn.readFileSync(r,"utf-8"))}catch{return}let a=(o?.app?.signingConfigs??[]).find(c=>c.name===e)?.material?.storePassword;if(a)try{return await Tn.decryptPassword(a,t)}catch{return}}async function FN(n){m(`Executing: ${n} list targets`);let{stdout:e}=await jw(n,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let o of e.split(`
|
|
1413
|
+
`}function Rx(n,e,t,r){r===".csv"?dw(n,t):uw(t,hw(e),"utf8"),m(ge(`[compat:check] saved report: "${t}"`))}function Tx(n,e,t,r){if(r==="json"){let i=W.basename(n,".csv"),s=W.join(t,`${i}.json`);return uw(s,hw(e),"utf8"),m(ge(`[compat:check] saved report: "${s}"`)),s}let o=W.join(t,W.basename(n));return dw(n,o),m(ge(`[compat:check] saved report: "${o}"`)),o}async function kx(n,e){let t=new ke(n,process.cwd(),!0),r=e.modules&&e.modules.length>0?e.modules[0]:void 0;try{await t.compileNative("default",r)}catch(o){throw new Error(`hvigorw compileNative failed (module=${r??"<project>"}): `+o.message,{cause:o})}}async function xx(n,e){vx(n,e);let t=G.discover(process.cwd());e.modules&&e.modules.length>0&&ix(t,e.modules),n.length>0&&sx(n);let r=await I.new(),{apiChangeDir:o,scriptPath:i}=r.getApiscanPaths();m(ge(`[compat:check] script: "${i}"`));let s=mw(o);Sx(e,s),e.outputPath&&m(ge(`[compat:check] outputPath: "${e.outputPath}"`));let a=Ax(e.outputPath,e.format);return m(ge(`[compat:check] outputTarget: ${a.kind}`)),Dx(a),{project:t,scriptPath:i,target:a,toolProvider:r}}async function Nx(n,e){let{project:t,scriptPath:r,target:o,toolProvider:i}=await xx(n,e),s=ex({text:"Running compatibility check...",color:"cyan"}).start();try{await kx(i,e);let a=yx(r,n,t,e);Ex(r,a);let c=await wx(i,a),l=px(c,zd.tmpdir());if(!l)throw new Error("Scanner output format unexpected: missing report path.");m(ge(`[compat:check] tmp csv: "${l}"`));let d=ux(l),h=null;if(o.kind==="file")Rx(l,d,o.filePath,o.ext),h=o.filePath;else if(o.kind==="dir")h=Tx(l,d,o.dirPath,e.format);else if(o.kind!=="none")throw new Error(`Unexpected output target kind: ${o.kind}`);Px(l),s.stop(),bx(d,h,e.format,e.limit,o.kind)}catch(a){throw s.fail("Compatibility check failed"),a}}var Vd=new Jk("compat").description("Compatibility checking utilities.");Vd.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.',fw,"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)",tx,100).action(async(n,e)=>{await Nx(n,e)});Vd.command("versions").description("List all available target SDK versions for compatibility checking").action(async()=>{let n=rx("csv");await ox(n)});var gw=Vd;var yw=new Lx("check").description("Run DevEco project checks").addCommand(Gd());E()||yw.addCommand(gw);var ww=yw;import{Command as vL}from"commander";import{green as gu,red as SL}from"colorette";import yu from"fs";import tv from"path";import bL from"json5";import{readFileSync as sN}from"fs";import{join as Ox}from"path";var Q={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"},je={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:Ox(".ohos","config"),DOWNLOAD_CONNECT_TIMEOUT_MS:5e3},ye={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"},mt={FORBIDDEN:403,UNAUTHORIZED:401},b={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."},K={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.",JAVA_PLATFORM_UNSUPPORTED:"Java environment not found (Windows/macOS/Linux only).",JAVA_REQUIRED:"Java runtime is required to run hvigor.Set JAVA_HOME or add Java to PATH.",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 Ya(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}function Yd(n){let e=n.replace(je.TEAM_ID_INVALID_CHARS,"");return`${je.CERT_NAME_PREFIX}${e}.cer`}function ro(n,e,t){if(n===mt.FORBIDDEN)return e===ye.OPENPROXY_BLOCKED_URL?new Error(b.ERR_CERT_NETWORK_ERROR):new Error(b.ERR_FORBIDDEN);if(n===mt.UNAUTHORIZED)return new Error(b.ERR_UNAUTHORIZED);if(t.includes(ye.USER_NOT_HARMONY_CODE))return new Error(b.ERR_USER_NOT_HARMONY);if(t.includes(ye.CERT_LIMIT_CODE))return new Error(b.ERR_CERT_LIMIT_REACHED);let r=Mx(t);return new Error(r??b.ERR_DOWNLOAD_CER)}function Mx(n){let e=vw(n);if(!e||typeof e!="object")return null;let t=e.ret;if(t==null)return null;let r=typeof t=="string"?vw(t):t;if(r&&typeof r=="object"){let o=r.msg;if(typeof o=="string"&&o.trim()!=="")return o}return null}function vw(n){try{return JSON.parse(n)}catch{return null}}function Jd(n){return JSON.parse(n)}async function Sw(n){let e=`${Q.BASE_URL}${Q.CERT_LIST_PATH}`,t=await x.postAllowFailure(e,{headers:Ya(n)});if(t.statusCode!==200)throw ro(t.statusCode,t.statusText,t.data);return Jd(t.data)?.certList??[]}async function Ja(n,e){return(await Sw(n)).find(r=>r.certName===e)??null}async function Kd(n,e){let t=`${Q.BASE_URL}${Q.CERT_DELETE_PATH}`,r=await x.deleteAllowFailure(t,{headers:Ya(n),params:{certIds:[e]}});if(r.statusCode!==200)throw ro(r.statusCode,r.statusText,r.data);return Jd(r.data)?.ret?.code===0}async function Xd(n,e,t){let r=`${Q.BASE_URL}${Q.CERT_ADD_PATH}`,o={csr:e,certName:t,certType:je.CERT_TYPE_DEBUG},i=await x.postAllowFailure(r,{headers:Ya(n),params:o});if(i.statusCode!==200)throw ro(i.statusCode,i.statusText,i.data);if(!i.data.includes(ye.SUCCESS_MARKER))throw ro(void 0,i.statusText,i.data)}async function Zd(n,e){let t=`${Q.BASE_URL}${Q.CERT_DOWNLOAD_URL_PATH}`,r=await x.postAllowFailure(t,{headers:Ya(n),params:{sourceUrls:e}});if(r.statusCode!==200)throw ro(r.statusCode,r.statusText,r.data);return Jd(r.data)?.urlsInfo?.[0]?.newUrl??null}import{mkdirSync as _x,writeFileSync as Fx,existsSync as jx}from"fs";import{dirname as Hx}from"path";async function Ci(n,e){let{statusCode:t,statusText:r,buffer:o}=await x.getBinaryAllowFailure(n,{timeout:je.DOWNLOAD_CONNECT_TIMEOUT_MS});if(t!==200)throw t===mt.FORBIDDEN&&r===ye.OPENPROXY_BLOCKED_URL?new Error(b.ERR_CERT_NETWORK_ERROR):new Error(b.ERR_DOWNLOAD_CER);let i=Hx(e);jx(i)||_x(i,{recursive:!0}),Fx(e,o)}import rN from"fs/promises";import{readFileSync as oN}from"fs";import Ka from"path";import Pw from"crypto";import $x from"os";import Ii from"fs/promises";var Cw={GENERATE_KEYPAIR:"generate-keypair",GENERATE_CSR:"generate-csr"},bw=["ECC","RSA"],Ew=["SHA256withECDSA","SHA384withECDSA","SHA256withRSA","SHA384withRSA"],Ux={ECC:["NIST-P-256","NIST-P-384"],RSA:["2048","3072","4096"]},Bx=8,Qd=64,Wx=/[\\:*?"<>|=-]/g,ht={productName:"default",keyAlias:"debugKey",keyAlg:"ECC",keySize:"NIST-P-256",csrSubject:"CN=DebugKey",signAlg:"SHA256withECDSA"};function Gx(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>Qd)throw new Error(`The length of keyAlias cannot exceed ${Qd}`);if(!bw.includes(n.keyAlg))throw new Error(`Invalid key algorithm ${n.keyAlg}, available: ${bw.join(" / ")}`);let e=Ux[n.keyAlg];if(!e.includes(n.keySize))throw new Error(`Key algorithm ${n.keyAlg} does not support size ${n.keySize}, available: ${e.join(", ")}`)}function qx(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(!Ew.includes(n.signAlg))throw new Error(`Invalid sign algorithm ${n.signAlg}, available: ${Ew.join(" / ")}`)}function zx(n){return Pw.createHash("sha256").update(n,"utf8").digest().toString("base64url").replaceAll(/[-_=]/g,"")}function Vx(n){let e=n?.trim()??"";return e&&e.replace(Wx,"_").slice(0,Qd)||ht.productName}async function Iw(){let n=await I.new(),e=n.javaPath;if(!e&&!E())throw new Error("Java runtime not found. DevEco Studio JBR is required to run hap-sign-tool.jar.");let t=n.sdkPath;f.info(`\u8BFB\u53D6SDK\u6839\u76EE\u5F55\uFF1A${t}`);let r=E()?"hap-sign-tool":"hap-sign-tool.jar",o=Ka.join(t,"default","openharmony","toolchains","lib",r);try{await Ii.access(o)}catch(i){throw new Error(`${r} not found: ${o}`,{cause:i})}return{javaPath:e,toolPath:o}}async function Yx(n){let{javaPath:e,toolPath:t}=await Iw(),r=[Cw.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 o=r.map(i=>["-keyPwd","-keystorePwd"].includes(i)?`${i} ******`:i);return f.debug("generate-keypair \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),E()?[t,...r]:[e,"-jar",t,...r]}async function Jx(n){let{javaPath:e,toolPath:t}=await Iw(),r=[Cw.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 o=r.map(i=>["-keyPwd","-keystorePwd"].includes(i)?`${i} ******`:i);return f.debug("generate-csr \u547D\u4EE4\uFF08\u8131\u654F\uFF09\uFF1A",o.join(" ")),E()?[t,...r]:[e,"-jar",t,...r]}async function Kx(n){f.info("\u5F00\u59CB\u751F\u6210 P12 \u5BC6\u94A5\u5E93"),Gx(n);let e=await Yx(n),t=await wo(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 f.info("\u751F\u6210P12\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}async function Xx(n){f.info("\u5F00\u59CB\u751F\u6210 CSR \u8BC1\u4E66\u8BF7\u6C42"),qx(n);let e=await Jx(n),t=await wo(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 f.info("\u751F\u6210CSR\u547D\u4EE4\u6267\u884C\u5B8C\u6210"),t}function Zx(n=Bx){return Pw.randomBytes(n).toString("base64url").replaceAll(/[-_=]/g,"")}async function Qx(){let n=$x.homedir();try{await Ii.access(n)}catch(t){throw new Error("Invalid user path;",{cause:t})}let e=Ka.join(n,".ohos","config");try{await Ii.mkdir(e,{recursive:!0,mode:448})}catch(t){throw new Error(`Failed to create directory ${e}`,{cause:t})}return f.info(`\u7B7E\u540D\u914D\u7F6E\u76EE\u5F55\u5C31\u7EEA\uFF1A${e}`),e}async function Ee(n,e,t){let r=Vx(n),o=Ka.basename(e),i=zx(e),s=`${r}_${o}_${i}=.${t}`,a=await Qx();return Ka.join(a,s)}function eN(n){let e;try{e=G.discover(n).rootDir}catch(t){throw new Error(`Current directory ${n} is not a valid project root`,{cause:t})}return e}async function tN(n){try{await Ii.access(n)}catch(e){throw new Error(`Project directory ${n} is not accessible, missing read/write permissions`,{cause:e})}}async function nN(n){try{await Ii.access(n)}catch(e){throw new Error(`P12 file ${n} does not exist, terminating CSR generation.`,{cause:e})}}async function eu(n,e,t){let r=process.cwd(),o=eN(r);await tN(o),f.info(`\u8BC6\u522B\u9879\u76EE\u6839\u76EE\u5F55\uFF1A${o}`);let i=Zx(),s=await Ee(n??"",o,"p12"),a=await Ee(n??"",o,"csr");return console.log("Start generating p12"),await Kx({keyAlias:e?.keyAlias??ht.keyAlias,keyPwd:i,keyAlg:e?.keyAlg??ht.keyAlg,keySize:e?.keySize??ht.keySize,keystoreFile:s,keystorePwd:i}),await nN(s),console.log("Start generating csr"),await Xx({subject:t?.subject??ht.csrSubject,outFile:a,keyAlias:t?.keyAlias??ht.keyAlias,keyPwd:i,signAlg:t?.signAlg??ht.signAlg,keystoreFile:s,keystorePwd:i}),{p12FilePath:s,csrFilePath:a,keyPwd:i,keyAlias:e?.keyAlias??ht.keyAlias}}var iN=["p12","cer","csr","p7b"];async function tu(n,e){for(let t of iN){let r=await Ee(n,e,t);await rN.rm(r,{force:!0})}}function nu(n){let e;try{e=oN(n,"utf-8")}catch{throw new Error(b.ERR_CERT_INVALIDATE)}if(!je.CERT_PATTERN.test(e))throw new Error(b.ERR_CERT_INVALIDATE)}async function Aw(n,e){return{certPath:await Ee(n,e,"cer"),csrPath:await Ee(n,e,"csr"),p12Path:await Ee(n,e,"p12"),profilePath:await Ee(n,e,"p7b")}}async function ru(n,e){let t=e??"",r=G.discover(process.cwd()).rootDir;await tu(t,r);let o=Yd(n.teamId),i=await Ja(n,o);if(i&&!await Kd(n,i.id))throw new Error(b.ERR_DOWNLOAD_CER);let s=await eu(e),a;try{a=sN(s.csrFilePath,"utf-8")}catch{throw new Error(b.ERR_READ_CSR)}console.log("Start generating certificate"),await Xd(n,a,o);let c=await Ja(n,o);if(!c)throw new Error(b.ERR_DOWNLOAD_CER);let l=await Zd(n,c.certObjectId);if(!l)throw new Error(b.ERR_DOWNLOAD_CER);let d=await Ee(t,r,"cer");await Ci(l,d),nu(d);let h=await Ee(t,r,"p7b");return{p12FilePath:s.p12FilePath,csrFilePath:s.csrFilePath,cerFilePath:d,profileFilePath:h,certId:c.id,keyAlias:s.keyAlias,keyPwd:s.keyPwd,storePassword:s.keyPwd}}import sc from"crypto";import xn from"fs";import*as Uw from"path";import RN from"json5";import{execa as jw}from"execa";import Hw from"node-forge";import{createCipheriv as aN,createDecipheriv as cN,pbkdf2Sync as lN,randomBytes as au}from"crypto";import{promises as rr}from"fs";import{dirname as dN,join as gt}from"path";var Xa=3,Ai=16,uN=1e4,Dw="material",pN=new Uint8Array([49,243,9,115,214,175,91,184,211,190,177,88,101,131,192,119]),xw="aes-128-gcm",nr=12,Za=16,Rn=4;function ou(n){return new Uint8Array(au(n))}function fN(n){return au(n).toString("hex")}function mN(...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 o=0;for(let i of n)o^=i[r];t[r]=o}return t}function Rw(n,e,t=uN,r=Ai){let o=[...n,pN],i=mN(...o),s=Buffer.from(i).toString("utf8"),a=Buffer.from(s,"utf8"),c=lN(a,e,t,r,"sha256");return new Uint8Array(c)}function Tw(n,e){let t=au(nr),r=aN(xw,n,t),o=Buffer.concat([r.update(e),r.final()]),i=r.getAuthTag(),s=Buffer.concat([o,i]),a=s.length,c=Buffer.alloc(Rn+nr+s.length);return c.writeUInt32BE(a,0),t.copy(c,Rn),s.copy(c,Rn+nr),c}function kw(n,e){if(e.length<Rn+nr+Za)throw new Error("Ciphertext too short");let t=e.readUInt32BE(0),r=e.subarray(Rn,Rn+nr),o=e.subarray(Rn+nr,Rn+nr+t);if(o.length<Za)throw new Error("Ciphertext too short for auth tag");let i=o.subarray(0,o.length-Za),s=o.subarray(o.length-Za),a=cN(xw,n,r);return a.setAuthTag(s),Buffer.concat([a.update(i),a.final()])}async function hN(n){try{await rr.rm(n,{recursive:!0,force:!0})}catch{}}async function iu(n){let e=await rr.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 rr.readFile(gt(n,t[0]))}async function su(n,e){let t=fN(Ai),r=gt(n,t);return await rr.writeFile(r,e),t}var Tn=class{static async generateMaterial(e){let t=gt(e,Dw);await hN(t);let r=gt(t,"ac"),o=gt(t,"ce");await rr.mkdir(r,{recursive:!0}),await rr.mkdir(o,{recursive:!0});for(let d=0;d<Xa;d++)await rr.mkdir(gt(t,"fd",String(d)),{recursive:!0});let i=ou(Ai),s=[];for(let d=0;d<Xa;d++)s.push(ou(Ai));let a=ou(Ai),c=Rw(s,i),l=Tw(c,a);await su(r,i),await su(o,l);for(let d=0;d<Xa;d++){let h=gt(t,"fd",String(d));await su(h,s[d])}return a}static async readMaterial(e){let t=gt(e,Dw),r=gt(t,"ac"),o=new Uint8Array(await iu(r)),i=[];for(let d=0;d<Xa;d++){let h=gt(t,"fd",String(d)),w=await iu(h);i.push(new Uint8Array(w))}let s=gt(t,"ce"),a=await iu(s),c=Rw(i,o),l=kw(c,a);return new Uint8Array(l)}static async getStoreKey(e){let t=dN(e);try{return await this.readMaterial(t)}catch{return await this.generateMaterial(t)}}static async encryptedPassword(e,t){let r=await this.getStoreKey(t),o=Buffer.from(e,"utf8");return Tw(r,o).toString("hex")}static async decryptPassword(e,t){if(!e)return"";let r=await this.getStoreKey(t),o=Buffer.from(e,"hex");return kw(r,o).toString("utf8")}};import _w from"fs";import oc from"path";import bN from"json5";import*as Qa from"fs";import*as Nw from"path";function ec(n){let e=Nw.resolve(n);if(!Qa.existsSync(e))throw new Error(`SDK info file not found: ${e}`);let t;try{t=Qa.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 o=r?.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 io from"fs";import*as He from"path";import{debuglog as oo}from"util";var Lw={"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 gN(n){return Object.prototype.hasOwnProperty.call(Lw,n)}function tc(n){if(gN(n))return Lw[n]}var Ow={DUPLICATE_PERMISSION:"Duplicate permissions detected. Make sure each permission is unique in the same module and try again."};import{fileURLToPath as yN}from"url";var rc=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 nc(n){return typeof n=="object"&&n!==null&&!Array.isArray(n)}function Mw(n){return n==null||n.length===0}function wN(n){return!Mw(n)}function cu(n,e){let t=n[e];return typeof t=="string"?t:t==null?"":String(t)}function vN(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 SN(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 kn=class{static MIN_API_TO_FIND_ACL_IN_SDK=23;static ACL_PREFIX="ohos.permission.";static ACL_PERMISSIONS_CONFIG_PATH=He.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=He.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,o=this.getOrCreateSet(this.aclPermissionNamesMap,r),i=this.getOrCreateSet(this.aclPermissionInfoMap,r);o.clear(),i.clear();let s=He.join(t.sdkPath,"default","sdk-pkg.json"),a=ec(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 r=e.get(t);return r||(r=new Set,e.set(t,r)),r}static readBuiltInConfigText(){if(this.builtInConfigTextLoader)return this.builtInConfigTextLoader();let e=He.join(this.getResourcesDir(),this.ACL_PERMISSIONS_CONFIG_PATH);if(io.existsSync(e))return io.readFileSync(e,"utf-8")}static getResourcesDir(){let e=import.meta.url,t=yN(e);if(t.includes("dist")){let s=He.dirname(t),a=He.dirname(s);return He.join(a,"src","resources")}let r=He.dirname(t),o=He.dirname(r),i=He.dirname(o);return He.join(i,"src","resources")}static initAclPermissionFromBuiltInConfig(e,t){let r;try{r=this.readBuiltInConfigText()}catch{oo("read builtin acl permission failed.");return}if(r!==void 0)try{let o=JSON.parse(r),s=(Array.isArray(o)?o:nc(o)?Object.values(o):[]).filter(nc).map(a=>new rc(a));s.forEach(a=>{let c=a.permissionInsteadName;wN(c)&&(a.permissionInsteadName=tc(c)),e.add(a.permissionName)}),s.forEach(a=>{t.add(a)})}catch(o){oo(`failed to parse aclPermissionsInfo.json: ${o}`)}}static initAclPermissionFromSDK(e,t,r){let o=this.parsePermissionDefinitionFile(e);o&&o.forEach(i=>{if(!nc(i))return;let s=i,a=cu(s,this.ACL_NAME_KEY);this.isAclPermission(s,a)&&(Mw(a)||(this.generateAclInfos(r,a,s),t.add(a)))})}static isAclPermission(e,t){return this.aclWhiteList.has(t)?!0:this.aclBlackList.has(t)||cu(e,this.ACL_AVAILABLE_LEVEL_KEY)!==this.ACL_AVAILABLE_LEVEL_VALUE||cu(e,this.ACL_AVAILABLE_TYPE_KEY)!==this.ACL_AVAILABLE_TYPE_VALUE?!1:vN(e,this.ACL_PROVISION_ENABLE_KEY)}static generateAclInfos(e,t,r){let o=new rc;o.permissionName=t;let i=t.startsWith(this.ACL_PREFIX)?t.slice(this.ACL_PREFIX.length):t;o.permissionDisplayName=i;let s=SN(r,this.ACL_SINCE_KEY);o.minSupportApiLevel=String(s),this.handleInsteadName(o,i),e.add(o)}static parsePermissionDefinitionFile(e){let t=He.join(e.sdkPath,"default","openharmony","toolchains",this.PERMISSION_DEFINITIONS_RELATIVE_PATH);if(!io.existsSync(t))return;let r;try{r=io.readFileSync(t,"utf-8")}catch(s){oo(`failed to load permissionDefinitions.json: ${s}`);return}let o;try{let s=JSON.parse(r);if(!nc(s)){oo("json object is null");return}o=s}catch(s){oo(`failed to parse permissionDefinitions.json: ${s}`);return}let i=o[this.ACL_DEFINE_PERMISSION_KEY];if(!Array.isArray(i)){oo("definePermissions is not an array");return}return i}static handleInsteadName(e,t){this.ACL_HAVE_INSTEAD_NAME.has(e.permissionName)&&(e.permissionInsteadName=tc(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_INSTEAD_NAME_SUFFIX}`),e.permissionHelpUrlKey=tc(`${this.ACL_CONFIG_PREFIX}${t}${this.ACL_HELP_URL_KEY_SUFFIX}`))}};function ic(n,e){let t=new Set,r=new Set;kn.handleSpecificAclPermissions(),kn.initAclPermission(n,e);for(let o of n.profile.modules){let i=Fw(o,n,e,r,oc.join("src","main"));for(let a of i)t.add(a);let s=Fw(o,n,e,r,oc.join("src","ohosTest"));for(let a of s)t.add(a)}return EN(r),t}function EN(n){if(n.size>0)throw new Error(Ow.DUPLICATE_PERMISSION)}function Fw(n,e,t,r,o){let i=CN(e.rootDir,n,o);if(i==null)return new Set;let s=[];for(let w of i){if(typeof w!="object"||w===null)continue;let v=PN(w,"name");v&&s.push(v)}let a=new Set(s);a.size!==s.length&&r.add(n.name);let c=oc.join(t.sdkPath,"default","sdk-pkg.json"),l=ec(c),d=kn.getAclPermissionInfos(e),h=new Set(Array.from(d).filter(w=>{let v=Number(w.minSupportApiLevel);return Number.isFinite(v)&&v<=l}).map(w=>w.permissionName));for(let w of Array.from(a))h.has(w)||a.delete(w);return a}function PN(n,e){let t=n[e];return typeof t=="string"?t:""}function CN(n,e,t){let r=oc.join(n,e.srcPath,t,"module.json5"),o=IN(r);if(o==null)return null;let i=AN(o,"module");return i==null?null:DN(i,"requestPermissions")}function IN(n){try{if(!_w.existsSync(n))return null;let e=_w.readFileSync(n,"utf-8");return bN.parse(e)}catch{return null}}function AN(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 DN(n,e){if(n==null||typeof n!="object")return null;let t=n[e];return Array.isArray(t)?t:null}var du=class{verifyStorePassword(e,t){try{let r=xn.readFileSync(e),o=Hw.asn1.fromDer(r.toString("binary"));return Hw.pkcs12.pkcs12FromAsn1(o,t),!0}catch{return!1}}getLocalCerFingerprints(e){let r=xn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g);if(r&&r.length>0)return r.map(o=>this.formatFp(new sc.X509Certificate(o).fingerprint256));try{return[this.formatFp(new sc.X509Certificate(xn.readFileSync(e)).fingerprint256)]}catch{return[]}}getLocalCerExpiry(e,t){if(!t)return null;let o=xn.readFileSync(e,"utf-8").match(/-----BEGIN CERTIFICATE-----[\s\S]*?-----END CERTIFICATE-----/g)??[];for(let i of o)try{let s=new sc.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 TN(n){let e=xn.readFileSync(n,"utf-8"),t=kN(e),r=null;if(t)try{r=JSON.parse(t)}catch{r=null}let o=r?.["bundle-info"]??{};return{rawContent:e,bundleNameInProfile:lu(o["bundle-name"]),expiryDate:xN(r?.validity?.["not-after"]),cerFingerprintInProfile:NN(lu(o["development-certificate"])),deviceUdidsInProfile:LN(r?.["debug-info"]?.["device-ids"]),aclPermissionsInProfile:ON(r?.acls?.["allowed-acls"]),teamIdInProfile:lu(o["developer-id"])}}function kN(n){let e=n.indexOf("{");if(e<0)return null;let t=0,r=-1,o=!1,i=!1;for(let s=e;s<n.length;s++){let a=n[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)){r=s;break}}return r<0?null:n.slice(e,r+1)}function xN(n){if(typeof n!="number"||!Number.isFinite(n))return null;let e=new Date(n*1e3);return isNaN(e.getTime())?null:e}function NN(n){if(!n)return null;try{let t=new sc.X509Certificate(n).fingerprint256.replace(/:/g,"");return t.match(/.{2}/g)?.join(":")??t}catch{return null}}function LN(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 ON(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 lu(n){return typeof n=="string"?n:null}var Di=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.#o(r)??n.#i(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,o=e.teamId,i=e.productName??"default",s=G.discover(process.cwd()),a=s.rootDir,[c,l]=await Promise.all([MN(i,a),FN(t.hdcPath)]),d=null;if($w(c).allExist)try{d=TN(c.profileFile)}catch{}return{force:r,teamId:o,productName:i,projectPath:a,materialPaths:c,bundleName:s.getBundleName(),deviceUdids:l,storePassword:await _N(a,i,c.storeFile),localAclPermissions:[...ic(s,t)].sort(),hapSignTool:new du,profileInfo:d}}static#t(e){return e.force?(m("[reGenerateSign] --force flag set, skipping all checks"),{shouldRegenerate:!0,reason:"--force flag set",checkDetails:qe({force:!0})}):null}static#n(e){let t=$w(e.materialPaths);return t.allExist?null:(m(`[reGenerateSign] missing files: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Missing files: ${t.missing.join(", ")}`,checkDetails:qe({allFilesExist:!1,missingFiles:t.missing})})}static#r(e){return(e.profileInfo?.rawContent??"").trim().length>0?null:(m("[reGenerateSign] profile content is empty"),{shouldRegenerate:!0,reason:"Profile file content is empty",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!1})})}static#o(e){let t=e.profileInfo?.expiryDate;return!t||t>=new Date?null:(m(`[reGenerateSign] profile expired at ${t.toISOString()}`),{shouldRegenerate:!0,reason:`Profile expired at ${t.toISOString()}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!1})})}static#i(e){let t=e.profileInfo?.bundleNameInProfile;return t&&t===e.bundleName?null:(m(`[reGenerateSign] bundleName mismatch \u2014 current=${e.bundleName}, profile=${t}`),{shouldRegenerate:!0,reason:`bundleName mismatch: current=${e.bundleName}, in profile=${t}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!1})})}static#s(e){let t=e.profileInfo?.teamIdInProfile;return t&&t===e.teamId?null:(m(`[reGenerateSign] teamId mismatch \u2014 current=${e.teamId}, profile=${t}`),{shouldRegenerate:!0,reason:`teamId mismatch: current=${e.teamId}, in profile=${t}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!1})})}static#a(e){let t=HN(e.profileInfo?.deviceUdidsInProfile??[],e.deviceUdids);return t.allPresent?null:(m(`[reGenerateSign] missing device UDIDs: ${t.missing.join(",")}`),{shouldRegenerate:!0,reason:`Device UDID(s) not in profile: ${t.missing.join(", ")}`,checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!1,missingDeviceUdids:t.missing})})}static#c(e){return $N(e.localAclPermissions,e.profileInfo?.aclPermissionsInProfile??[])?null:(m("[reGenerateSign] ACL permissions mismatch"),{shouldRegenerate:!0,reason:"ACL permissions mismatch between project and profile",checkDetails:qe({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:(m("[reGenerateSign] certificate mismatch"),{shouldRegenerate:!0,reason:"Certificate mismatch between profile and local .cer file",checkDetails:qe({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:(m(`[reGenerateSign] local certificate expired at ${r.toISOString()}`),{shouldRegenerate:!0,reason:`Local certificate expired at ${r.toISOString()}`,checkDetails:qe({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:(m("[reGenerateSign] keystore password verification failed"),{shouldRegenerate:!0,reason:"Keystore password verification failed (storeFile may be corrupted or password changed)",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})}):(m("[reGenerateSign] no stored keystore password"),{shouldRegenerate:!0,reason:"No stored keystore password available for verification",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!1})})}static#p(){return m("[reGenerateSign] all checks passed \u2014 skip regeneration"),{shouldRegenerate:!1,reason:"",checkDetails:qe({allFilesExist:!0,profileContentNotEmpty:!0,profileNotExpired:!0,bundleNameMatched:!0,teamIdMatched:!0,allDevicesInProfile:!0,aclMatched:!0,cerMatched:!0,cerNotExpired:!0,storePasswordValid:!0})}}};async function MN(n,e){let[t,r,o,i]=await Promise.all([Ee(n,e,"p12"),Ee(n,e,"csr"),Ee(n,e,"cer"),Ee(n,e,"p7b")]);return{storeFile:t,csrFile:r,cerFile:o,profileFile:i}}async function _N(n,e,t){let r=Uw.join(n,"build-profile.json5");if(!xn.existsSync(r))return;let o;try{o=RN.parse(xn.readFileSync(r,"utf-8"))}catch{return}let a=(o?.app?.signingConfigs??[]).find(c=>c.name===e)?.material?.storePassword;if(a)try{return await Tn.decryptPassword(a,t)}catch{return}}async function FN(n){m(`Executing: ${n} list targets`);let{stdout:e}=await jw(n,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let o of e.split(`
|
|
1414
1414
|
`)){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 r=[];for(let o of t)try{m(`Executing: ${n} -t ${o} shell bm get -u`);let{stdout:i}=await jw(n,["-t",o,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),s=jN(i);s&&r.push(s)}catch{m(`[reGenerateSign] Failed to get UDID for ${o}, skipping`)}return r}function jN(n){let e=n.trim();if(!e)return null;let t=e.split(`
|
|
1415
|
-
`);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 r=e.match(/[A-Fa-f0-9]{64}/);return r?r[0].toUpperCase():null}function $w(n){let e=[n.storeFile,n.csrFile,n.cerFile,n.profileFile],t=[];for(let r of e)xn.existsSync(r)||t.push(r);return{allExist:t.length===0,missing:t}}function HN(n,e){let t=[];for(let r of e)n.includes(r)||t.push(r);return{allPresent:t.length===0,missing:t}}function $N(n,e){let t=[...n].sort(),r=[...e].sort();return t.length!==r.length?!1:t.every((o,i)=>o===r[i])}function qe(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 uu}from"util";import{execa as pu}from"execa";async function Ww(n,e){let t=await ac(n);if(!t)throw new Error(
|
|
1415
|
+
`);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 r=e.match(/[A-Fa-f0-9]{64}/);return r?r[0].toUpperCase():null}function $w(n){let e=[n.storeFile,n.csrFile,n.cerFile,n.profileFile],t=[];for(let r of e)xn.existsSync(r)||t.push(r);return{allExist:t.length===0,missing:t}}function HN(n,e){let t=[];for(let r of e)n.includes(r)||t.push(r);return{allPresent:t.length===0,missing:t}}function $N(n,e){let t=[...n].sort(),r=[...e].sort();return t.length!==r.length?!1:t.every((o,i)=>o===r[i])}function qe(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 uu}from"util";import{execa as pu}from"execa";async function Ww(n,e){let t=await ac(n);if(!t)throw new Error(b.DEVICE_LIST_EMPTY);let r=await WN(e);if(t.length===0)for(let s of r)await UN(n,s.udid,s.deviceName);else for(let s of r)await BN(n,t,s.udid,s.deviceName);let i=(await ac(n)).map(s=>s.id);if(i.length===0)throw new Error(b.DEVICE_LIST_EMPTY);return i}async function UN(n,e,t){await zw(n,e,Gw(t))}async function BN(n,e,t,r){for(let o=0;o<e.length;o++){if(t===e[o].udid)return;if(o===e.length-1){await zw(n,t,Gw(r));return}}}function Gw(n){switch(n){case"liteWearable":return"1";case"wearable":return"2";case"tv":return"3";default:return"4"}}async function Bw(n,e=1,t=100){let r=`${Q.BASE_URL}${Q.DEVICE_LIST_PATH}?encodeFlag=0&start=${e}&pageSize=${t}`,o=Vw(n),i=await x.get(r,{headers:o});if(!i)throw uu("query devices failed: response is null"),new Error(b.ERROR_WHILE_ADD_DEVICE);if(i.statusCode!==200)throw qw(i.statusCode,i.statusText,i.data);let s=JSON.parse(i.data);if(!s||!s.list)throw uu("query devices failed: response list is null"),new Error(s.ret?.msg||b.ERROR_WHILE_ADD_DEVICE);return{deviceList:s.list,total:s.totalCount||0}}function qw(n,e,t){return n===mt.FORBIDDEN?e===ye.OPENPROXY_BLOCKED_URL?new Error(b.ERR_CERT_NETWORK_ERROR):new Error(b.ERR_FORBIDDEN):n===mt.UNAUTHORIZED?new Error(b.ERR_UNAUTHORIZED):t.includes(ye.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(b.DEVICE_LIMIT_REACHED):new Error(b.ERROR_WHILE_ADD_DEVICE)}async function ac(n){let t=await Bw(n,1,100);if(!t||!t.deviceList||t.deviceList.length===0)return[];let r=[...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 Bw(n,s,100);if(!a||!a.deviceList||a.deviceList.length===0)break;r.push(...a.deviceList)}return r}async function zw(n,e,t){let r=`${Q.BASE_URL}${Q.DEVICE_ADD_PATH}`,o=Vw(n),s={deviceName:`auto_sign_device_No.${Math.floor(Math.random()*3e3)}${Date.now()}`,udid:e,deviceType:t},a=await x.postAllowFailure(r,{headers:o,params:s});if(!a)throw uu("add device failed: response is null"),new Error(b.ERROR_WHILE_ADD_DEVICE);if(a.statusCode!==200)throw qw(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(ye.DEVICE_EXCEEDS_LIMIT_CODE)?new Error(b.DEVICE_LIMIT_REACHED):c.includes(ye.DEVICE_NAME_REPEAT_CODE)?new Error(b.DEVICE_NAME_REPEAT):new Error(b.ERROR_WHILE_ADD_DEVICE)}function Vw(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}async function WN(n){let{stdout:e}=await pu(n,["list","targets"],{stdio:["ignore","pipe","pipe"]}),t=[];for(let o of e.split(`
|
|
1416
1416
|
`)){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 r=[];for(let o of t)try{let i=await GN(o,n),s=await qN(o,n);i.length>0&&r.push({id:"",udid:i,deviceName:s})}catch{m(`Failed to get device info for ${o}, skipping`)}return r}async function GN(n,e){let{stdout:t}=await pu(e,["-t",n,"shell","bm","get","-u"],{stdio:["ignore","pipe","pipe"]}),r=t.trim();if(!r)return"";let o=r.split(`
|
|
1417
|
-
`);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=r.match(/[A-Fa-f0-9]{64}/);return i?i[0].toUpperCase():""}async function qN(n,e){let{stdout:t}=await pu(e,["-c","-t",n,"shell","getprop","hw_sc.build.os.deviceType"],{stdio:["ignore","pipe","pipe"]});return zN(t)}function zN(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 or from"fs";import{createHash as VN}from"crypto";import{debuglog as Kt}from"util";import{Buffer as Jw}from"buffer";import{createPublicKey as YN,X509Certificate as fu}from"crypto";import{readFileSync as JN}from"fs";import ir from"node-forge";async function Kw(n,e){console.log("Start generating profile");let{productName:t,bundleName:r,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=`${Q.BASE_URL}${Q.PROVISION_ADD_TEST_PATH}`,h=KN(t,r),w=await ZN(n,d,a||[],r,s,h,i||[]);if(!w||!w.profileInfo||!w.profileInfo.provisionFileUrl)throw Kt("add provision failed, the provision file url is null"),new Error(E.ADD_PROFILE_FAIL);let v=w.profileInfo,ie=(await nL(n,v.provisionFileUrl)).urlList,$e=w.profileInfo.id;if(ie&&ie.length>0){let nt=await Aw(t,o),rt=nt.profilePath;if(!await rL(ie,rt))throw await Yw(n,$e),new Error(E.ERROR_WHILE_DOWNLOAD_PROFILE);if(await Yw(n,$e),or.existsSync(nt.certPath)&&or.existsSync(rt)&&or.existsSync(nt.p12Path)){let fc=or.readFileSync(nt.certPath,"utf8"),mc=or.readFileSync(rt,"utf8");return oL(mc,fc,nt.p12Path,c,l)||tL(rt),rt}}throw new Error(E.ADD_PROFILE_FAIL)}function KN(n,e){let t=n?`${n}_`:"";return`${XN(`${t}${e}_${e}`)}`}function XN(n){return VN("sha256").update(n).digest("hex").substring(0,16)}async function ZN(n,e,t,r,o,i,s){QN(r);let a=hu(n),c={certList:t,packageName:r,deviceList:o,provisionName:i};s.length&&(c.aclPermissionList=s);let l=await x.postAllowFailure(e,{headers:a,params:c});if(!l)throw Kt("add provision failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(l.statusCode!==200)throw mu(l.statusCode,l.statusText,l.data);let d=JSON.parse(l.data);if(!d||!d.ret||d.ret.code!==0)throw Kt(`add provision fail: ${l.data}`),eL(l.data,i),new Error(d.ret?.msg||E.ADD_PROFILE_FAIL);let h=d.provisionFileUrl;return{profileInfo:{id:d.id,name:i,provisionFileUrl:h}}}function mu(n,e,t){return n===mt.FORBIDDEN?e===ye.OPENPROXY_BLOCKED_URL?new Error(E.ERR_CERT_NETWORK_ERROR):new Error(E.ERR_FORBIDDEN):n===mt.UNAUTHORIZED?new Error(E.ERR_UNAUTHORIZED):t.includes(ye.PROVISION_EXCEEDS_LIMIT_CODE)?new Error(E.TEST_PROVISION_EXCEEDS_LIMIT):new Error(E.ADD_PROFILE_FAIL)}function QN(n){if(!n||n.trim().length===0)throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE);if(!je.BUNDLE_NAME_REGEX.test(n))throw new Error(E.ERROR_SIGN_BUNDLE_NAME_VALIDATE)}function eL(n,e){if(n.includes(ye.PROVISION_EXCEEDS_LIMIT_CODE))throw new Error(E.TEST_PROVISION_EXCEEDS_LIMIT);if(n.includes(ye.PROVISION_NAME_REPEAT_CODE)&&e)throw new Error(E.PROFILE_NAME_REPEAT)}async function Yw(n,e){if(!e||e.trim().length===0)return;let t=`${Q.BASE_URL}${Q.PROVISION_DELETE_PATH}?id=${e}`,r=await x.deleteAllowFailure(t,{headers:hu(n)});if(r.statusCode!==200)throw mu(r.statusCode,r.statusText,r.data);let o=JSON.parse(r.data);(!o||!o.ret||o.ret.code!==0)&&Kt(`delete provision failed: ${r.data}`)}function tL(...n){for(let e of n)try{or.existsSync(e)&&or.unlinkSync(e)}catch(t){Kt(`delete local sign file error: ${t.message}`)}}async function nL(n,e){let t=`${Q.BASE_URL}${Q.CERT_DOWNLOAD_URL_PATH}`,r=hu(n),o={sourceUrls:e},i=await x.postAllowFailure(t,{headers:r,params:o});if(!i)throw Kt("get download list failed: response is null"),new Error(E.ADD_PROFILE_FAIL);if(i.statusCode!==200)throw mu(i.statusCode,i.statusText,i.data);let s=JSON.parse(i.data);if(!s||!s.urlsInfo||s.urlsInfo.length===0)throw Kt("download: The application does not exist"),new Error(s.ret?.msg||E.ADD_PROFILE_FAIL);return{urlList:s.urlsInfo,hasPermission:!0}}async function rL(n,e){if(!n||n.length===0)return!1;let t=n[0].newUrl;return await Ci(t,e),!0}function oL(n,e,t,r,o){return iL(n,e),r=r||je.TARGET_FRIENDLY_NAME,o=o||"",sL(e,t,r,o),!0}function iL(n,e){if(e.lastIndexOf(je.CERT_BEGIN_HEADER)<0)throw new Error(E.ERROR_WHILE_PARSE_PROFILE);let t=JSON.stringify(e.substring(e.lastIndexOf(je.CERT_BEGIN_HEADER))).replace(/\\r/g,"");if(!n.includes(t))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT);return!0}function sL(n,e,t,r){let o=n.matchAll(je.CERTIFICATE_PATTERN_GLOBAL),i=[],s=new Date;for(let c of o)try{let l=c[0],d=aL(l),h=new Date(d.validFrom),w=new Date(d.validTo);if(s<h||s>w){let v=`Certificate is not valid, Valid from ${h} to ${w}`;throw console.warn(`checkCertificateInValidityPeriod: ${v}`),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(!lL(e,t,r,i))throw new Error(E.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT)}function aL(n){let e="-----BEGIN CERTIFICATE-----",t=n.trim();try{if(t.startsWith(e))return new fu(t);let r=Jw.from(t,"base64");return new fu(r)}catch(r){throw new Error("decodeBase64ToX509Certificate",{cause:r})}}function cL(n){if(n.cert){let e=ir.pki.publicKeyToPem(n.cert.publicKey);return YN(e).export({type:"spki",format:"der"})}if(n.asn1)try{let e=ir.asn1.toDer(n.asn1).getBytes(),t=Jw.from(e,"binary");return new fu(t).publicKey.export({type:"spki",format:"der"})}catch(e){return Kt(`Failed to parse cert from asn1: ${e}`),null}return null}function lL(n,e,t,r){try{let o=JN(n),i=ir.asn1.fromDer(ir.util.createBuffer(o)),c=ir.pkcs12.pkcs12FromAsn1(i,t).getBags({bagType:ir.pki.oids.certBag})[ir.pki.oids.certBag]||[];for(let l of c){let d=l.attributes?.friendlyName?.[0];if(!d||d.toLowerCase()!==e.toLowerCase())continue;let h=cL(l);if(!h)continue;if(r.some(v=>{let A=v.publicKey.export({type:"spki",format:"der"});return h.equals(A)}))return!0}return!1}catch(o){let i=o instanceof Error?o.message:String(o);return Kt(`Failed to process P12 file: ${n}, error: ${i}`),!1}}function hu(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}var Zw="https://developer.huawei.com",dL={"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"},uL="/consumer/cn/doc/harmonyos-guides/restricted-permissions";function pL(n){let e=dL[n];return e?`${Zw}${e}`:void 0}function fL(){return`${Zw}${uL}`}var mL={"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 Xw(n,e){return(mL[n]??n).replace(/\{(\d+)\}/g,(r,o)=>String(e[Number(o)]??""))}function hL(n){return Array.from(n).join(", ")}function Qw(n,e){if(n.size===0)return;let t=kn.getAclPermissionInfos(e),r=new Set;for(let h of t)n.has(h.permissionName)&&r.add(h);for(let h of r){let w=pL(h.permissionName);w!=null&&(h.permissionHelpUrlKey=w)}let o=new Set;for(let h of r)o.add(h.permissionDisplayName);let i=new Set;for(let h of r)if(h.permissionHelpUrlKey!=null){let w=h.permissionInsteadName??h.permissionDisplayName;i.add(`${w} (${h.permissionHelpUrlKey})`)}let s=fL(),a=Xw("acl.can.apply.text",[]),c=s?`${a} (${s})`:a,l=i.size>0?Array.from(i).join(", ")+".":"",d=Xw("acl.permissions.warn",[hL(o),l,c]);console.log(d)}var cc=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=G.discover(process.cwd()),{passed:!0,message:""}}catch(t){return m(`[EnvCheck] Project.discover() failed: ${t.message}`),e(K.PROJECT_DIR_MISSING)}}checkProduct(e,t){try{return this._project.validateProduct(e),{passed:!0,message:""}}catch(r){return m(`[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 m(`[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:K.ATOMIC_SERVICE_UNSUPPORTED}:{passed:!0,message:""}}};import gL from"fs";import ev from"path";var lc=class{constructor(e){this.toolProvider=e}toolProvider;checkJava(e){try{return this.toolProvider.assertJava(),{passed:!0,message:""}}catch(t){return m(`[EnvCheck] Java check failed: ${t.message}`),e(K.JAVA_PLATFORM_UNSUPPORTED)}}checkHapSignTools(e){let t=this.toolProvider.sdkPath,r=b()?"hap-sign-tool":"hap-sign-tool.jar",o=ev.join(t,"default","openharmony","toolchains","lib",r);if(!gL.existsSync(o)){let i=ev.join("sdk","default","openharmony","toolchains","lib",r);return e(`${r} not found.Check whether ${i} exists.`)}return{passed:!0,message:""}}};var dc=class{_userInfo=null;async ensureUserInfo(){if(!this._userInfo)try{this._userInfo=await Ae.getUserInfo()}catch(e){return m(`[EnvCheck] Failed to load user info: ${e.message}`),null}return this._userInfo}async checkLogin(e){try{return await Ae.isLoggedIn()?(await this.ensureUserInfo(),{passed:!0,message:""}):e(K.LOGIN_REQUIRED)}catch(t){return m(`[EnvCheck] Login check failed: ${t.message}`),e(K.LOGIN_REQUIRED)}}async checkTeamInfo(e){if(!await this.ensureUserInfo())return e(K.TEAM_INFO_FAILED);try{if((await sn()).teamList.length>0)return{passed:!0,message:""}}catch(r){return m(`[EnvCheck] Team API error: ${r.message}`),e(K.TEAM_INFO_FAILED)}return m("[EnvCheck] No teams found for current user"),e(K.TEAM_INFO_FAILED)}async checkRealname(e){let t=await this.ensureUserInfo();return t?t.isRealName===!1?e(K.REALNAME_REQUIRED):t.isRealName!==!0?(m("[EnvCheck] Scenario 3 Real-name check: AGC API did not return realName field"),e(K.REALNAME_REQUIRED)):{passed:!0,message:""}:e(K.SESSION_EXPIRED)}async checkTeamId(e){let t=await this.ensureUserInfo();if(!t)return{passed:!0,message:""};let r=e??"";try{let o=await sn();if(r=e??(o.teamList.length>0?o.teamList[0].id:t.userId)??"",!o.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 m(`[EnvCheck] ${s}`),{passed:!1,message:s}}return{passed:!0,message:""}}catch(o){return m(`[EnvCheck] Team ID check failed: ${o.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(K.REGION_CHINA_ONLY):{passed:!0,message:""}:(m("[EnvCheck] Scenario 12 Region check: AGC API did not return nationalCode field"),e(K.REGION_CHINA_ONLY)):e("User session expired or token invalid. Please login again.")}};async function yL(n){try{let{teamList:e}=await sn();if(e.length>0)return e[0].id}catch(e){m(`[EnvCheck] resolveDefaultTeamId failed: ${e.message}`)}return n??""}async function wL(n){let e=await Ae.getUserInfo(),t=await Ae.refreshToken();if(!e||!t?.accessToken)throw new Error("Not logged in");let r=n||await yL(e.userId);if(!r)throw new Error("No team found");let o={uid:e.userId??"",teamId:r,accessToken:t.accessToken};return(await ac(o)).map(s=>({deviceId:s.udid,deviceName:s.deviceName}))}var uc=class{constructor(e){this.toolProvider=e}toolProvider;async checkDevice(e,t){try{let r=await wL(t);if(r.length>0)return m(`[EnvCheck] Scenario 4 Device check: ${r.length} device(s) found in AGC cloud, skipping local device check`),{passed:!0,message:""};m("[EnvCheck] Scenario 4 Device check: no cloud devices found, falling back to local hdc");let i=await te.from(this.toolProvider).listDevices();return i.length===0?(m("[EnvCheck] Scenario 4 Device check: no local devices found"),e(K.DEVICE_MISSING)):i.some(a=>jn(a.serial))?{passed:!0,message:""}:(m("[EnvCheck] Scenario 4 Device check: local device found but not an emulator"),e(K.DEVICE_MISSING))}catch(r){return m(`[EnvCheck] Scenario 4 Device check failed: ${r.message}`),e(K.DEVICE_DETECT_FAILED)}}};var pc=class{projectChecker=new cc;toolchainChecker=null;authChecker=new dc;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=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(!r(await i()))return!1;return!(e.teamId&&!r(await this.authChecker.checkTeamId(e.teamId)))}async initToolchain(){try{let e=await I.new();return this.toolchainChecker=new lc(e),this.deviceChecker=new uc(e),!0}catch(e){throw m(`[EnvCheck] ToolProvider.new() failed: ${e.message}`),new Error(K.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 r=i=>i.passed?!0:(this.fail(i),!1);if(!r(this.projectChecker.checkProjectDir(t))||!r(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(!r(i()))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 m(`[EnvCheck] FAIL: ${e.message}`),new Error(e.message)}};function EL(n){if(yu.existsSync(n)){let e=yu.readFileSync(n,"utf-8");return bL.parse(e)}return{app:{signingConfigs:[],products:[]}}}function PL(n){n.app||(n.app={signingConfigs:[],products:[]}),n.app.signingConfigs||(n.app.signingConfigs=[]),n.app.products||(n.app.products=[])}async function CL(n){if(n.keyPwd===n.storePassword){let r=await Tn.encryptedPassword(n.keyPwd,n.p12FilePath);return{keyPassword:r,storePassword:r}}let e=await Tn.encryptedPassword(n.keyPwd,n.p12FilePath),t=await Tn.encryptedPassword(n.storePassword,n.p12FilePath);return{keyPassword:e,storePassword:t}}async function IL(n,e,t){let r=tv.join(n,"build-profile.json5"),o=EL(r);PL(o);let i=t??"default",{keyPassword:s,storePassword:a}=await CL(e),c={name:i,type:"HarmonyOS",material:{certpath:e.cerFilePath,keyAlias:e.keyAlias,keyPassword:s,profile:e.profileFilePath,signAlg:ht.signAlg,storeFile:e.p12FilePath,storePassword:a}},l=o.app?.signingConfigs?.findIndex(h=>h.name===i);l!==void 0&&l>=0?o.app.signingConfigs[l]=c:o.app.signingConfigs.push(c);let d=o.app?.products?.findIndex(h=>h.name===i);d!==void 0&&d>=0?o.app.products[d].signingConfig=i:o.app.products.push({name:i,signingConfig:i}),yu.writeFileSync(r,JSON.stringify(o,null,2),"utf-8")}async function AL(n){let e=await Ae.getUserInfo(),t=await Ae.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 DL(n){let e=n.product||"default";await new pc().preflight({productName:e,teamId:n.teamId}),console.log("Executing signature generate command");let r=await AL(n),o=await I.new(),{shouldRegenerate:i}=await Di.shouldRegenerate({force:n.force??!1,teamId:r.teamId,productName:n.product},o);if(!i){console.log(gu("Signature generation completed successfully."));return}await RL(n,r,o),console.log(gu("Signature generation completed successfully."))}async function RL(n,e,t){let r=await ru(e,n.product),o=TL(n,e,r,t);o.allDeviceIds=await Ww(e,t.hdcPath),await Kw(e,o);let i=G.discover(process.cwd()).rootDir;await IL(i,r,n.product??"default"),console.log(gu(`Signing config written to ${tv.join(i,"build-profile.json5")}`))}function TL(n,e,t,r){let o=process.cwd(),i=G.discover(o),s=ic(i,r);return Qw(s,i),{productName:n.product||"default",bundleName:i.getBundleName(),projectPath:i.rootDir,teamId:e.teamId,force:n.force||!1,aclPermissionList:[...s],certIds:[t.certId],keyAlias:t.keyAlias,keyPwd:t.keyPwd}}var nv=new vL("signature").description("Generate application signature.");nv.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=>{try{await DL(n)}catch(e){console.error(SL(e.message)),process.exit(1)}});var rv=nv;oe.name("devecocli").description("HarmonyOS application development command line tool").version("0.3.3");oe.addCommand(tp);oe.addCommand(xp);oe.addCommand(Mp);oe.addCommand(Yp);oe.addCommand(Gf);oe.addCommand(hm);oe.addCommand(vm);oe.addCommand(km);oe.addCommand(jm);oe.addCommand(oh);oe.addCommand(hy);oe.addCommand(rv);oe.addCommand(ww);oe.addCommand($y);b()||oe.addCommand(Ef);var wu=process.argv.slice(2);wu.length>=2&&wu[wu.length-1]==="help"&&(process.argv=[...process.argv.slice(0,-1),"--help"]);var xL=new Set(["update","auth"]);oe.hook("preAction",async(n,e)=>{if(process.env.DEVECO_CLI_SKIP_VERSION_CHECK)return;let t=e;for(;t.parent&&t.parent!==oe;)t=t.parent;xL.has(t.name())||await I.checkVersion()});oe.parseAsync(process.argv).catch(n=>{let e=n instanceof Error?n.message:String(n??"Unknown error");console.error(kL(`Error: ${e}`)),process.env.DEVECO_CLI_DEBUG==="1"&&n instanceof Error&&n.stack&&console.error(n.stack),process.exit(1)});
|
|
1417
|
+
`);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=r.match(/[A-Fa-f0-9]{64}/);return i?i[0].toUpperCase():""}async function qN(n,e){let{stdout:t}=await pu(e,["-c","-t",n,"shell","getprop","hw_sc.build.os.deviceType"],{stdio:["ignore","pipe","pipe"]});return zN(t)}function zN(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 or from"fs";import{createHash as VN}from"crypto";import{debuglog as Kt}from"util";import{Buffer as Jw}from"buffer";import{createPublicKey as YN,X509Certificate as fu}from"crypto";import{readFileSync as JN}from"fs";import ir from"node-forge";async function Kw(n,e){console.log("Start generating profile");let{productName:t,bundleName:r,projectPath:o,aclPermissionList:i,allDeviceIds:s,certIds:a,keyAlias:c,keyPwd:l}=e;if(s==null||s.length===0)throw new Error(b.DEVICE_LIST_EMPTY);let d=`${Q.BASE_URL}${Q.PROVISION_ADD_TEST_PATH}`,h=KN(t,r),w=await ZN(n,d,a||[],r,s,h,i||[]);if(!w||!w.profileInfo||!w.profileInfo.provisionFileUrl)throw Kt("add provision failed, the provision file url is null"),new Error(b.ADD_PROFILE_FAIL);let v=w.profileInfo,ie=(await nL(n,v.provisionFileUrl)).urlList,$e=w.profileInfo.id;if(ie&&ie.length>0){let nt=await Aw(t,o),rt=nt.profilePath;if(!await rL(ie,rt))throw await Yw(n,$e),new Error(b.ERROR_WHILE_DOWNLOAD_PROFILE);if(await Yw(n,$e),or.existsSync(nt.certPath)&&or.existsSync(rt)&&or.existsSync(nt.p12Path)){let fc=or.readFileSync(nt.certPath,"utf8"),mc=or.readFileSync(rt,"utf8");return oL(mc,fc,nt.p12Path,c,l)||tL(rt),rt}}throw new Error(b.ADD_PROFILE_FAIL)}function KN(n,e){let t=n?`${n}_`:"";return`${XN(`${t}${e}_${e}`)}`}function XN(n){return VN("sha256").update(n).digest("hex").substring(0,16)}async function ZN(n,e,t,r,o,i,s){QN(r);let a=hu(n),c={certList:t,packageName:r,deviceList:o,provisionName:i};s.length&&(c.aclPermissionList=s);let l=await x.postAllowFailure(e,{headers:a,params:c});if(!l)throw Kt("add provision failed: response is null"),new Error(b.ADD_PROFILE_FAIL);if(l.statusCode!==200)throw mu(l.statusCode,l.statusText,l.data);let d=JSON.parse(l.data);if(!d||!d.ret||d.ret.code!==0)throw Kt(`add provision fail: ${l.data}`),eL(l.data,i),new Error(d.ret?.msg||b.ADD_PROFILE_FAIL);let h=d.provisionFileUrl;return{profileInfo:{id:d.id,name:i,provisionFileUrl:h}}}function mu(n,e,t){return n===mt.FORBIDDEN?e===ye.OPENPROXY_BLOCKED_URL?new Error(b.ERR_CERT_NETWORK_ERROR):new Error(b.ERR_FORBIDDEN):n===mt.UNAUTHORIZED?new Error(b.ERR_UNAUTHORIZED):t.includes(ye.PROVISION_EXCEEDS_LIMIT_CODE)?new Error(b.TEST_PROVISION_EXCEEDS_LIMIT):new Error(b.ADD_PROFILE_FAIL)}function QN(n){if(!n||n.trim().length===0)throw new Error(b.ERROR_SIGN_BUNDLE_NAME_VALIDATE);if(!je.BUNDLE_NAME_REGEX.test(n))throw new Error(b.ERROR_SIGN_BUNDLE_NAME_VALIDATE)}function eL(n,e){if(n.includes(ye.PROVISION_EXCEEDS_LIMIT_CODE))throw new Error(b.TEST_PROVISION_EXCEEDS_LIMIT);if(n.includes(ye.PROVISION_NAME_REPEAT_CODE)&&e)throw new Error(b.PROFILE_NAME_REPEAT)}async function Yw(n,e){if(!e||e.trim().length===0)return;let t=`${Q.BASE_URL}${Q.PROVISION_DELETE_PATH}?id=${e}`,r=await x.deleteAllowFailure(t,{headers:hu(n)});if(r.statusCode!==200)throw mu(r.statusCode,r.statusText,r.data);let o=JSON.parse(r.data);(!o||!o.ret||o.ret.code!==0)&&Kt(`delete provision failed: ${r.data}`)}function tL(...n){for(let e of n)try{or.existsSync(e)&&or.unlinkSync(e)}catch(t){Kt(`delete local sign file error: ${t.message}`)}}async function nL(n,e){let t=`${Q.BASE_URL}${Q.CERT_DOWNLOAD_URL_PATH}`,r=hu(n),o={sourceUrls:e},i=await x.postAllowFailure(t,{headers:r,params:o});if(!i)throw Kt("get download list failed: response is null"),new Error(b.ADD_PROFILE_FAIL);if(i.statusCode!==200)throw mu(i.statusCode,i.statusText,i.data);let s=JSON.parse(i.data);if(!s||!s.urlsInfo||s.urlsInfo.length===0)throw Kt("download: The application does not exist"),new Error(s.ret?.msg||b.ADD_PROFILE_FAIL);return{urlList:s.urlsInfo,hasPermission:!0}}async function rL(n,e){if(!n||n.length===0)return!1;let t=n[0].newUrl;return await Ci(t,e),!0}function oL(n,e,t,r,o){return iL(n,e),r=r||je.TARGET_FRIENDLY_NAME,o=o||"",sL(e,t,r,o),!0}function iL(n,e){if(e.lastIndexOf(je.CERT_BEGIN_HEADER)<0)throw new Error(b.ERROR_WHILE_PARSE_PROFILE);let t=JSON.stringify(e.substring(e.lastIndexOf(je.CERT_BEGIN_HEADER))).replace(/\\r/g,"");if(!n.includes(t))throw new Error(b.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT);return!0}function sL(n,e,t,r){let o=n.matchAll(je.CERTIFICATE_PATTERN_GLOBAL),i=[],s=new Date;for(let c of o)try{let l=c[0],d=aL(l),h=new Date(d.validFrom),w=new Date(d.validTo);if(s<h||s>w){let v=`Certificate is not valid, Valid from ${h} to ${w}`;throw console.warn(`checkCertificateInValidityPeriod: ${v}`),new Error(b.CERTIFICATE_HAS_EXPIRED)}i.push(d)}catch(l){throw console.warn(`checkCertificateInValidityPeriod\uFF1A ${l.message}`),new Error(b.CERTIFICATE_HAS_EXPIRED,{cause:l})}if(!i||i.length===0)throw new Error(b.CERTIFICATE_HAS_EXPIRED);if(!lL(e,t,r,i))throw new Error(b.CERTIFICATION_AND_PROFILE_NOT_INCONSISTENT)}function aL(n){let e="-----BEGIN CERTIFICATE-----",t=n.trim();try{if(t.startsWith(e))return new fu(t);let r=Jw.from(t,"base64");return new fu(r)}catch(r){throw new Error("decodeBase64ToX509Certificate",{cause:r})}}function cL(n){if(n.cert){let e=ir.pki.publicKeyToPem(n.cert.publicKey);return YN(e).export({type:"spki",format:"der"})}if(n.asn1)try{let e=ir.asn1.toDer(n.asn1).getBytes(),t=Jw.from(e,"binary");return new fu(t).publicKey.export({type:"spki",format:"der"})}catch(e){return Kt(`Failed to parse cert from asn1: ${e}`),null}return null}function lL(n,e,t,r){try{let o=JN(n),i=ir.asn1.fromDer(ir.util.createBuffer(o)),c=ir.pkcs12.pkcs12FromAsn1(i,t).getBags({bagType:ir.pki.oids.certBag})[ir.pki.oids.certBag]||[];for(let l of c){let d=l.attributes?.friendlyName?.[0];if(!d||d.toLowerCase()!==e.toLowerCase())continue;let h=cL(l);if(!h)continue;if(r.some(v=>{let A=v.publicKey.export({type:"spki",format:"der"});return h.equals(A)}))return!0}return!1}catch(o){let i=o instanceof Error?o.message:String(o);return Kt(`Failed to process P12 file: ${n}, error: ${i}`),!1}}function hu(n){return{uid:n.uid,teamId:n.teamId,oauth2Token:n.accessToken}}var Zw="https://developer.huawei.com",dL={"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"},uL="/consumer/cn/doc/harmonyos-guides/restricted-permissions";function pL(n){let e=dL[n];return e?`${Zw}${e}`:void 0}function fL(){return`${Zw}${uL}`}var mL={"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 Xw(n,e){return(mL[n]??n).replace(/\{(\d+)\}/g,(r,o)=>String(e[Number(o)]??""))}function hL(n){return Array.from(n).join(", ")}function Qw(n,e){if(n.size===0)return;let t=kn.getAclPermissionInfos(e),r=new Set;for(let h of t)n.has(h.permissionName)&&r.add(h);for(let h of r){let w=pL(h.permissionName);w!=null&&(h.permissionHelpUrlKey=w)}let o=new Set;for(let h of r)o.add(h.permissionDisplayName);let i=new Set;for(let h of r)if(h.permissionHelpUrlKey!=null){let w=h.permissionInsteadName??h.permissionDisplayName;i.add(`${w} (${h.permissionHelpUrlKey})`)}let s=fL(),a=Xw("acl.can.apply.text",[]),c=s?`${a} (${s})`:a,l=i.size>0?Array.from(i).join(", ")+".":"",d=Xw("acl.permissions.warn",[hL(o),l,c]);console.log(d)}var cc=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=G.discover(process.cwd()),{passed:!0,message:""}}catch(t){return m(`[EnvCheck] Project.discover() failed: ${t.message}`),e(K.PROJECT_DIR_MISSING)}}checkProduct(e,t){try{return this._project.validateProduct(e),{passed:!0,message:""}}catch(r){return m(`[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 m(`[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:K.ATOMIC_SERVICE_UNSUPPORTED}:{passed:!0,message:""}}};import gL from"fs";import ev from"path";var lc=class{constructor(e){this.toolProvider=e}toolProvider;checkJava(e){try{return this.toolProvider.assertJava(),{passed:!0,message:""}}catch(t){return m(`[EnvCheck] Java check failed: ${t.message}`),e(K.JAVA_PLATFORM_UNSUPPORTED)}}checkHapSignTools(e){let t=this.toolProvider.sdkPath,r=E()?"hap-sign-tool":"hap-sign-tool.jar",o=ev.join(t,"default","openharmony","toolchains","lib",r);if(!gL.existsSync(o)){let i=ev.join("sdk","default","openharmony","toolchains","lib",r);return e(`${r} not found.Check whether ${i} exists.`)}return{passed:!0,message:""}}};var dc=class{_userInfo=null;async ensureUserInfo(){if(!this._userInfo)try{this._userInfo=await Ae.getUserInfo()}catch(e){return m(`[EnvCheck] Failed to load user info: ${e.message}`),null}return this._userInfo}async checkLogin(e){try{return await Ae.isLoggedIn()?(await this.ensureUserInfo(),{passed:!0,message:""}):e(K.LOGIN_REQUIRED)}catch(t){return m(`[EnvCheck] Login check failed: ${t.message}`),e(K.LOGIN_REQUIRED)}}async checkTeamInfo(e){if(!await this.ensureUserInfo())return e(K.TEAM_INFO_FAILED);try{if((await sn()).teamList.length>0)return{passed:!0,message:""}}catch(r){return m(`[EnvCheck] Team API error: ${r.message}`),e(K.TEAM_INFO_FAILED)}return m("[EnvCheck] No teams found for current user"),e(K.TEAM_INFO_FAILED)}async checkRealname(e){let t=await this.ensureUserInfo();return t?t.isRealName===!1?e(K.REALNAME_REQUIRED):t.isRealName!==!0?(m("[EnvCheck] Scenario 3 Real-name check: AGC API did not return realName field"),e(K.REALNAME_REQUIRED)):{passed:!0,message:""}:e(K.SESSION_EXPIRED)}async checkTeamId(e){let t=await this.ensureUserInfo();if(!t)return{passed:!0,message:""};let r=e??"";try{let o=await sn();if(r=e??(o.teamList.length>0?o.teamList[0].id:t.userId)??"",!o.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 m(`[EnvCheck] ${s}`),{passed:!1,message:s}}return{passed:!0,message:""}}catch(o){return m(`[EnvCheck] Team ID check failed: ${o.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(K.REGION_CHINA_ONLY):{passed:!0,message:""}:(m("[EnvCheck] Scenario 12 Region check: AGC API did not return nationalCode field"),e(K.REGION_CHINA_ONLY)):e("User session expired or token invalid. Please login again.")}};async function yL(n){try{let{teamList:e}=await sn();if(e.length>0)return e[0].id}catch(e){m(`[EnvCheck] resolveDefaultTeamId failed: ${e.message}`)}return n??""}async function wL(n){let e=await Ae.getUserInfo(),t=await Ae.refreshToken();if(!e||!t?.accessToken)throw new Error("Not logged in");let r=n||await yL(e.userId);if(!r)throw new Error("No team found");let o={uid:e.userId??"",teamId:r,accessToken:t.accessToken};return(await ac(o)).map(s=>({deviceId:s.udid,deviceName:s.deviceName}))}var uc=class{constructor(e){this.toolProvider=e}toolProvider;async checkDevice(e,t){try{let r=await wL(t);if(r.length>0)return m(`[EnvCheck] Scenario 4 Device check: ${r.length} device(s) found in AGC cloud, skipping local device check`),{passed:!0,message:""};m("[EnvCheck] Scenario 4 Device check: no cloud devices found, falling back to local hdc");let i=await te.from(this.toolProvider).listDevices();return i.length===0?(m("[EnvCheck] Scenario 4 Device check: no local devices found"),e(K.DEVICE_MISSING)):i.some(a=>jn(a.serial))?{passed:!0,message:""}:(m("[EnvCheck] Scenario 4 Device check: local device found but not an emulator"),e(K.DEVICE_MISSING))}catch(r){return m(`[EnvCheck] Scenario 4 Device check failed: ${r.message}`),e(K.DEVICE_DETECT_FAILED)}}};var pc=class{projectChecker=new cc;toolchainChecker=null;authChecker=new dc;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=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(!r(await i()))return!1;return!(e.teamId&&!r(await this.authChecker.checkTeamId(e.teamId)))}async initToolchain(){try{let e=await I.new();return this.toolchainChecker=new lc(e),this.deviceChecker=new uc(e),!0}catch(e){throw m(`[EnvCheck] ToolProvider.new() failed: ${e.message}`),new Error(K.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 r=i=>i.passed?!0:(this.fail(i),!1);if(!r(this.projectChecker.checkProjectDir(t))||!r(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(!r(i()))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 m(`[EnvCheck] FAIL: ${e.message}`),new Error(e.message)}};function EL(n){if(yu.existsSync(n)){let e=yu.readFileSync(n,"utf-8");return bL.parse(e)}return{app:{signingConfigs:[],products:[]}}}function PL(n){n.app||(n.app={signingConfigs:[],products:[]}),n.app.signingConfigs||(n.app.signingConfigs=[]),n.app.products||(n.app.products=[])}async function CL(n){if(n.keyPwd===n.storePassword){let r=await Tn.encryptedPassword(n.keyPwd,n.p12FilePath);return{keyPassword:r,storePassword:r}}let e=await Tn.encryptedPassword(n.keyPwd,n.p12FilePath),t=await Tn.encryptedPassword(n.storePassword,n.p12FilePath);return{keyPassword:e,storePassword:t}}async function IL(n,e,t){let r=tv.join(n,"build-profile.json5"),o=EL(r);PL(o);let i=t??"default",{keyPassword:s,storePassword:a}=await CL(e),c={name:i,type:"HarmonyOS",material:{certpath:e.cerFilePath,keyAlias:e.keyAlias,keyPassword:s,profile:e.profileFilePath,signAlg:ht.signAlg,storeFile:e.p12FilePath,storePassword:a}},l=o.app?.signingConfigs?.findIndex(h=>h.name===i);l!==void 0&&l>=0?o.app.signingConfigs[l]=c:o.app.signingConfigs.push(c);let d=o.app?.products?.findIndex(h=>h.name===i);d!==void 0&&d>=0?o.app.products[d].signingConfig=i:o.app.products.push({name:i,signingConfig:i}),yu.writeFileSync(r,JSON.stringify(o,null,2),"utf-8")}async function AL(n){let e=await Ae.getUserInfo(),t=await Ae.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 DL(n){let e=n.product||"default";await new pc().preflight({productName:e,teamId:n.teamId}),console.log("Executing signature generate command");let r=await AL(n),o=await I.new(),{shouldRegenerate:i}=await Di.shouldRegenerate({force:n.force??!1,teamId:r.teamId,productName:n.product},o);if(!i){console.log(gu("Signature generation completed successfully."));return}await RL(n,r,o),console.log(gu("Signature generation completed successfully."))}async function RL(n,e,t){let r=await ru(e,n.product),o=TL(n,e,r,t);o.allDeviceIds=await Ww(e,t.hdcPath),await Kw(e,o);let i=G.discover(process.cwd()).rootDir;await IL(i,r,n.product??"default"),console.log(gu(`Signing config written to ${tv.join(i,"build-profile.json5")}`))}function TL(n,e,t,r){let o=process.cwd(),i=G.discover(o),s=ic(i,r);return Qw(s,i),{productName:n.product||"default",bundleName:i.getBundleName(),projectPath:i.rootDir,teamId:e.teamId,force:n.force||!1,aclPermissionList:[...s],certIds:[t.certId],keyAlias:t.keyAlias,keyPwd:t.keyPwd}}var nv=new vL("signature").description("Generate application signature.");nv.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=>{try{await DL(n)}catch(e){console.error(SL(e.message)),process.exit(1)}});var rv=nv;oe.name("devecocli").description("HarmonyOS application development command line tool").version("0.3.4");oe.addCommand(tp);oe.addCommand(xp);oe.addCommand(Mp);oe.addCommand(Yp);oe.addCommand(Gf);oe.addCommand(hm);oe.addCommand(vm);oe.addCommand(km);oe.addCommand(jm);oe.addCommand(oh);oe.addCommand(hy);oe.addCommand(rv);oe.addCommand(ww);oe.addCommand($y);E()||oe.addCommand(Ef);var wu=process.argv.slice(2);wu.length>=2&&wu[wu.length-1]==="help"&&(process.argv=[...process.argv.slice(0,-1),"--help"]);var xL=new Set(["update","auth"]);oe.hook("preAction",async(n,e)=>{if(process.env.DEVECO_CLI_SKIP_VERSION_CHECK)return;let t=e;for(;t.parent&&t.parent!==oe;)t=t.parent;xL.has(t.name())||await I.checkVersion()});oe.parseAsync(process.argv).catch(n=>{let e=n instanceof Error?n.message:String(n??"Unknown error");console.error(kL(`Error: ${e}`)),process.env.DEVECO_CLI_DEBUG==="1"&&n instanceof Error&&n.stack&&console.error(n.stack),process.exit(1)});
|