Home | History | Annotate | Download | only in code_gen
      1 /*
      2  * Copyright 2016 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_CODEGENBASE_H_
     18 #define VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_CODEGENBASE_H_
     19 
     20 #include <hidl-util/Formatter.h>
     21 #include <iostream>
     22 #include <sstream>
     23 #include <string>
     24 
     25 #include "test/vts/proto/ComponentSpecificationMessage.pb.h"
     26 
     27 using namespace std;
     28 
     29 namespace android {
     30 namespace vts {
     31 
     32 enum VtsCompileMode {
     33   kDriver = 0,
     34   kProfiler,
     35   kFuzzer
     36 };
     37 
     38 // Specifies what kinds of files to generate.
     39 enum VtsCompileFileType {
     40   kBoth = 0,
     41   kHeader,
     42   kSource,
     43 };
     44 
     45 class CodeGenBase {
     46  public:
     47   explicit CodeGenBase(const char* input_vts_file_path, const string& vts_name);
     48   virtual ~CodeGenBase();
     49 
     50   // Generate both a C/C++ file and its header file.
     51   virtual void GenerateAll(Formatter& header_out, Formatter& source_out,
     52                            const ComponentSpecificationMessage& message) = 0;
     53 
     54   // Generates source file.
     55   virtual void GenerateSourceFile(
     56       Formatter& out, const ComponentSpecificationMessage& message) = 0;
     57 
     58   // Generates header file.
     59   virtual void GenerateHeaderFile(
     60       Formatter& out, const ComponentSpecificationMessage& message) = 0;
     61 
     62   const char* input_vts_file_path() const {
     63     return input_vts_file_path_;
     64   }
     65 
     66   const string& vts_name() const {
     67     return vts_name_;
     68   }
     69 
     70  protected:
     71   const char* input_vts_file_path_;
     72   const string& vts_name_;
     73 };
     74 
     75 // Translates the VTS proto file to C/C++ code and header files.
     76 void Translate(VtsCompileMode mode,
     77                const char* input_vts_file_path,
     78                const char* output_header_dir_path,
     79                const char* output_cpp_file_path);
     80 
     81 
     82 // Translates the VTS proto file to a C/C++ source or header file.
     83 void TranslateToFile(VtsCompileMode mode,
     84                      const char* input_vts_file_path,
     85                      const char* output_file_path,
     86                      VtsCompileFileType file_type);
     87 
     88 }  // namespace vts
     89 }  // namespace android
     90 
     91 #endif  // VTS_COMPILATION_TOOLS_VTSC_CODE_GEN_CODEGENBASE_H_
     92