17c804472Sopenharmony_ci/* 27c804472Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd. 37c804472Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 47c804472Sopenharmony_ci * you may not use this file except in compliance with the License. 57c804472Sopenharmony_ci * You may obtain a copy of the License at 67c804472Sopenharmony_ci * 77c804472Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 87c804472Sopenharmony_ci * 97c804472Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 107c804472Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 117c804472Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 127c804472Sopenharmony_ci * See the License for the specific language governing permissions and 137c804472Sopenharmony_ci * limitations under the License. 147c804472Sopenharmony_ci */ 157c804472Sopenharmony_ci 167c804472Sopenharmony_ciimport type { GetAccessorDeclaration, PropertyDeclaration, SourceFile } from 'typescript'; 177c804472Sopenharmony_ciimport { getPropertyName } from '../common/commonUtils'; 187c804472Sopenharmony_ci 197c804472Sopenharmony_ci/** 207c804472Sopenharmony_ci * get property node info 217c804472Sopenharmony_ci * @param node 227c804472Sopenharmony_ci * @param sourceFile 237c804472Sopenharmony_ci * @returns 247c804472Sopenharmony_ci */ 257c804472Sopenharmony_ciexport function getPropertyDeclaration(node: PropertyDeclaration, sourceFile: SourceFile): PropertyEntity { 267c804472Sopenharmony_ci let propertyName = ''; 277c804472Sopenharmony_ci let propertyTypeName = ''; 287c804472Sopenharmony_ci let kind = -1; 297c804472Sopenharmony_ci let isInitializer = false; 307c804472Sopenharmony_ci let initializer = ''; 317c804472Sopenharmony_ci const modifiers: Array<string> = []; 327c804472Sopenharmony_ci const fileText = sourceFile.getFullText(); 337c804472Sopenharmony_ci if (node.modifiers !== undefined) { 347c804472Sopenharmony_ci node.modifiers.forEach(value => { 357c804472Sopenharmony_ci modifiers.push(fileText.slice(value.pos, value.end)); 367c804472Sopenharmony_ci }); 377c804472Sopenharmony_ci } 387c804472Sopenharmony_ci if (node.initializer !== undefined) { 397c804472Sopenharmony_ci isInitializer = true; 407c804472Sopenharmony_ci initializer = fileText.slice(node.initializer.pos, node.initializer.end).trim(); 417c804472Sopenharmony_ci } 427c804472Sopenharmony_ci 437c804472Sopenharmony_ci propertyName = getPropertyName(node.name, sourceFile); 447c804472Sopenharmony_ci 457c804472Sopenharmony_ci const propertyType = node.type; 467c804472Sopenharmony_ci if (propertyType !== undefined) { 477c804472Sopenharmony_ci propertyTypeName = fileText.slice(propertyType.pos, propertyType.end).trim(); 487c804472Sopenharmony_ci kind = propertyType.kind; 497c804472Sopenharmony_ci } 507c804472Sopenharmony_ci 517c804472Sopenharmony_ci return { 527c804472Sopenharmony_ci modifiers: modifiers, 537c804472Sopenharmony_ci propertyName: propertyName, 547c804472Sopenharmony_ci propertyTypeName: propertyTypeName, 557c804472Sopenharmony_ci kind: kind, 567c804472Sopenharmony_ci kinds: -1, 577c804472Sopenharmony_ci isInitializer: isInitializer, 587c804472Sopenharmony_ci initializer: initializer 597c804472Sopenharmony_ci }; 607c804472Sopenharmony_ci} 617c804472Sopenharmony_ci 627c804472Sopenharmony_ciexport function getGetDeclaration(node: GetAccessorDeclaration, sourceFile: SourceFile): PropertyEntity { 637c804472Sopenharmony_ci let kind = -1; 647c804472Sopenharmony_ci let kinds = -1; 657c804472Sopenharmony_ci let propertyName = ''; 667c804472Sopenharmony_ci let propertyTypeName = ''; 677c804472Sopenharmony_ci const modifiers: Array<string> = []; 687c804472Sopenharmony_ci const fileText = sourceFile.getFullText(); 697c804472Sopenharmony_ci 707c804472Sopenharmony_ci if (node.modifiers !== undefined) { 717c804472Sopenharmony_ci node.modifiers.forEach(value => { 727c804472Sopenharmony_ci modifiers.push(fileText.slice(value.pos, value.end)); 737c804472Sopenharmony_ci }); 747c804472Sopenharmony_ci } 757c804472Sopenharmony_ci 767c804472Sopenharmony_ci propertyName = getPropertyName(node.name, sourceFile); 777c804472Sopenharmony_ci const propertyType = node.type; 787c804472Sopenharmony_ci if (propertyType !== undefined) { 797c804472Sopenharmony_ci propertyTypeName = fileText.slice(propertyType.pos, propertyType.end).trim(); 807c804472Sopenharmony_ci kind = propertyType.kind; 817c804472Sopenharmony_ci kinds = node.kind; 827c804472Sopenharmony_ci } 837c804472Sopenharmony_ci 847c804472Sopenharmony_ci return { 857c804472Sopenharmony_ci modifiers: modifiers, 867c804472Sopenharmony_ci propertyName: propertyName, 877c804472Sopenharmony_ci propertyTypeName: propertyTypeName, 887c804472Sopenharmony_ci kind: kind, 897c804472Sopenharmony_ci kinds: kinds, 907c804472Sopenharmony_ci isInitializer: false, 917c804472Sopenharmony_ci initializer: '' 927c804472Sopenharmony_ci }; 937c804472Sopenharmony_ci} 947c804472Sopenharmony_ci 957c804472Sopenharmony_ciexport interface PropertyEntity { 967c804472Sopenharmony_ci modifiers: Array<string>; 977c804472Sopenharmony_ci propertyName: string; 987c804472Sopenharmony_ci propertyTypeName: string; 997c804472Sopenharmony_ci kind: number; 1007c804472Sopenharmony_ci kinds: number; 1017c804472Sopenharmony_ci isInitializer: boolean; 1027c804472Sopenharmony_ci initializer: string; 1037c804472Sopenharmony_ci} 104