Files
drivers_framework/tools/hdi-gen/codegen/java_code_emitter.h
T
2022-02-28 10:52:29 +08:00

40 lines
1.0 KiB
C++
Executable File

/*
* Copyright (c) 2021 Huawei Device Co., Ltd.
*
* HDF is dual licensed: you can use it either under the terms of
* the GPL, or the BSD license, at your option.
* See the LICENSE file in the root of this repository for complete details.
*/
#ifndef OHOS_HDI_JAVA_CODE_EMITTER_H
#define OHOS_HDI_JAVA_CODE_EMITTER_H
#include "ast/ast.h"
#include "codegen/code_emitter.h"
#include "util/autoptr.h"
#include "util/light_refcount_base.h"
#include "util/string.h"
#include "util/string_builder.h"
namespace OHOS {
namespace HDI {
class JavaCodeEmitter : public CodeEmitter {
public:
virtual ~JavaCodeEmitter() = default;
protected:
bool CreateDirectory();
void EmitLicense(StringBuilder& sb);
void EmitPackage(StringBuilder& sb);
void EmitInterfaceMethodCommands(StringBuilder& sb, const String& prefix);
String MethodName(const String& name);
String SpecificationParam(StringBuilder& paramSb, const String& prefix);
};
} // namespace HDI
} // namespace OHOS
#endif // OHOS_HDI_JAVA_CODE_EMITTER_H