1/* 2* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. 3* Licensed under the Apache License, Version 2.0 (the "License"); 4* you may not use this file except in compliance with the License. 5* You may obtain a copy of the License at 6* 7* http://www.apache.org/licenses/LICENSE-2.0 8* 9* Unless required by applicable law or agreed to in writing, software 10* distributed under the License is distributed on an "AS IS" BASIS, 11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12* See the License for the specific language governing permissions and 13* limitations under the License. 14*/ 15const { analyzeFile } = require("./analyze"); 16const { generateAll } = require("./generate"); 17const { NapiLog } = require("./tools/NapiLog"); 18const re = require("./tools/re"); 19var fs = require('fs'); 20 21function doGenerate(ifname, destdir, imports,numberType) { 22 let structOfTs = analyzeFile(ifname); 23 let fn = re.getFileInPath(ifname); 24 let tt = re.match('(@ohos\.)*([.a-z_A-Z0-9]+).d.ts', fn); 25 if (tt) { 26 let moduleName = re.getReg(fn, tt.regs[2]); 27 let importsStr = '' + imports 28 if (importsStr == 'true') { 29 importsFun(structOfTs.imports, destdir, ifname); 30 } else { 31 structOfTs.imports = []; 32 } 33 generateAll(structOfTs, destdir, moduleName, numberType); 34 } else { 35 NapiLog.logError('file name ' + fn + ' format invalid in function of doGenerate!'); 36 } 37 return structOfTs.declareNamespace[0].name 38} 39 40function importsFun(imports, destDir, ifname) { 41 for (let i = 0; i < imports.length; i++) { 42 let importSearch = re.search("([.,/a-zA-Z {}']+from)", imports[i]) 43 let importPath = re.removeReg(imports[i], importSearch.regs[0]) 44 importPath = importPath.replace 45 (/[`:~!#$%^&*() \+ =<>?"{}|, ;' [ \] ·~!#¥%……&*()—— \+ ={}|《》?:“”【】、;‘’,。、]/g,'') 46 importPath = importPath.split('/') 47 48 let ifnameSearch = re.search("(@[./a-zA-Z]+d.ts)", ifname) 49 let ifnamePath = re.removeReg(ifname, ifnameSearch.regs[0]) 50 let filePath = ifnamePath+importPath[importPath.length-1]+'.d.ts' 51 52 let ifnameFile = fs.readFileSync(ifname,'utf-8') 53 let importFile 54 try { 55 importFile = fs.readFileSync(ifnamePath+importPath[importPath.length-1]+'.d.ts','utf-8') 56 } catch (err) { 57 imports[i] = '' 58 return 59 } 60 61 if (ifnameFile == importFile) { 62 return 63 } else { 64 try { 65 fs.accessSync(destDir+'/'+importPath[importPath.length-1], fs.constants.R_OK | fs.constants.W_OK); 66 } catch (err) { 67 fs.mkdirSync(destDir+'/'+importPath[importPath.length-1]); 68 } 69 imports[i] = '#include '+'"'+importPath[importPath.length-1]+'/'+ 70 doGenerate(filePath,destDir+'/'+importPath[importPath.length-1])+'.h"\n' 71 } 72 } 73} 74 75module.exports = { 76 doGenerate 77} 78