1 /* 2 * Copyright (c) 2022 Huawei Device 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 */ 15 16 #include "class.h" 17 #include "abc_file.h" 18 #include "function.h" 19 20 namespace panda::defect_scan_aux { GetClassName() const21const std::string &Class::GetClassName() const 22 { 23 return class_name_; 24 } 25 GetAbcFileInstance() const26const AbcFile *Class::GetAbcFileInstance() const 27 { 28 return abc_file_; 29 } 30 GetDefineFunction() const31const Function *Class::GetDefineFunction() const 32 { 33 return def_func_; 34 } 35 GetMemberFunctionCount() const36size_t Class::GetMemberFunctionCount() const 37 { 38 return member_func_list_.size(); 39 } 40 GetMemberFunctionByName(std::string_view func_name) const41const Function *Class::GetMemberFunctionByName(std::string_view func_name) const 42 { 43 for (auto func : member_func_list_) { 44 if (func->GetFunctionName() == func_name) { 45 return func; 46 } 47 } 48 if (par_class_info_.class_ != nullptr) { 49 return par_class_info_.class_->GetMemberFunctionByName(func_name); 50 } 51 return nullptr; 52 } 53 GetMemberFunctionByIndex(size_t index) const54const Function *Class::GetMemberFunctionByIndex(size_t index) const 55 { 56 ASSERT(index < member_func_list_.size()); 57 return member_func_list_[index]; 58 } 59 GetParentClass() const60const Class *Class::GetParentClass() const 61 { 62 return par_class_info_.class_; 63 } 64 GetParentClassName() const65const std::string &Class::GetParentClassName() const 66 { 67 return par_class_info_.class_name_; 68 } 69 GetParClassExternalModuleName() const70const std::string &Class::GetParClassExternalModuleName() const 71 { 72 return par_class_info_.external_module_name_; 73 } 74 GetParClassGlobalVarName() const75const std::string &Class::GetParClassGlobalVarName() const 76 { 77 return par_class_info_.global_var_name_; 78 } 79 SetParentClass(const Class * parent_class)80void Class::SetParentClass(const Class *parent_class) 81 { 82 ASSERT(parent_class != nullptr); 83 par_class_info_.class_ = parent_class; 84 par_class_info_.class_name_ = parent_class->GetClassName(); 85 } 86 SetParentClassName(std::string_view par_class_name)87void Class::SetParentClassName(std::string_view par_class_name) 88 { 89 par_class_info_.class_name_ = par_class_name; 90 } 91 SetParClassExternalModuleName(std::string_view external_module_name)92void Class::SetParClassExternalModuleName(std::string_view external_module_name) 93 { 94 par_class_info_.external_module_name_ = external_module_name; 95 } 96 SetParClassGlobalVarName(std::string global_var_name)97void Class::SetParClassGlobalVarName(std::string global_var_name) 98 { 99 par_class_info_.global_var_name_ = global_var_name; 100 } 101 AddMemberFunction(const Function * func)102void Class::AddMemberFunction(const Function *func) 103 { 104 ASSERT(func != nullptr); 105 member_func_list_.push_back(func); 106 } 107 } // namespace panda::defect_scan_aux 108