119 lines
4.9 KiB
C++
119 lines
4.9 KiB
C++
/*
|
|
* Copyright 2016 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_PROFILER_HALHIDLPROFILERCODEGEN_H_
|
|
#define VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_PROFILER_HALHIDLPROFILERCODEGEN_H_
|
|
|
|
#include "code_gen/profiler/ProfilerCodeGenBase.h"
|
|
|
|
namespace android {
|
|
namespace vts {
|
|
/**
|
|
* Class that generates the profiler code for Hidl HAL.
|
|
*/
|
|
class HalHidlProfilerCodeGen : public ProfilerCodeGenBase {
|
|
public:
|
|
HalHidlProfilerCodeGen() : ProfilerCodeGenBase(){};
|
|
|
|
protected:
|
|
virtual void GenerateProfilerForScalarVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForStringVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForEnumVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForVectorVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForArrayVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForStructVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForUnionVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForSafeUnionVariable(
|
|
Formatter& out, const VariableSpecificationMessage& val,
|
|
const std::string& arg_name, const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForHidlCallbackVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForHidlInterfaceVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForMaskVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForHandleVariable(
|
|
Formatter& out, const VariableSpecificationMessage& val,
|
|
const std::string& arg_name, const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForHidlMemoryVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForPointerVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForFMQSyncVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForFMQUnsyncVariable(Formatter& out,
|
|
const VariableSpecificationMessage& val, const std::string& arg_name,
|
|
const std::string& arg_value) override;
|
|
|
|
virtual void GenerateProfilerForMethod(Formatter& out,
|
|
const FunctionSpecificationMessage& method) override;
|
|
|
|
virtual void GenerateHeaderIncludeFiles(Formatter& out,
|
|
const ComponentSpecificationMessage& message) override;
|
|
virtual void GenerateSourceIncludeFiles(Formatter& out,
|
|
const ComponentSpecificationMessage& message) override;
|
|
void GenerateUsingDeclaration(Formatter& out,
|
|
const ComponentSpecificationMessage& message) override;
|
|
void GenerateMacros(Formatter& out,
|
|
const ComponentSpecificationMessage& message) override;
|
|
virtual void GenerateProfilerCheck(
|
|
Formatter& out, const ComponentSpecificationMessage& message) override;
|
|
virtual void GenerateLocalVariableDefinition(Formatter& out,
|
|
const ComponentSpecificationMessage& message) override;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN (HalHidlProfilerCodeGen);
|
|
};
|
|
|
|
} // namespace vts
|
|
} // namespace android
|
|
#endif // VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_PROFILER_HALHIDLPROFILERCODEGEN_H_
|