2022-12-19 14:37:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
#include <map>
|
|
|
|
#include <set>
|
|
|
|
#include <string>
|
|
|
|
|
2023-04-26 16:20:53 +01:00
|
|
|
#include "oi/ContainerInfo.h"
|
2022-12-19 14:37:51 +00:00
|
|
|
|
|
|
|
namespace fs = std::filesystem;
|
|
|
|
|
|
|
|
class FuncGen {
|
|
|
|
public:
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareStoreData(std::string& testCode);
|
|
|
|
static void DefineStoreData(std::string& testCode);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareAddData(std::string& testCode);
|
|
|
|
static void DefineAddData(std::string& testCode);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareEncodeData(std::string& testCode);
|
|
|
|
static void DefineEncodeData(std::string& testCode);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareEncodeDataSize(std::string& testCode);
|
|
|
|
static void DefineEncodeDataSize(std::string& testCode);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
|
|
|
bool DeclareGetSizeFuncs(std::string& testCode,
|
2023-03-21 17:52:28 +00:00
|
|
|
const ContainerInfoRefSet& containerInfo,
|
2022-12-19 14:37:51 +00:00
|
|
|
bool chaseRawPointers);
|
|
|
|
bool DefineGetSizeFuncs(std::string& testCode,
|
2023-03-21 17:52:28 +00:00
|
|
|
const ContainerInfoRefSet& containerInfo,
|
2022-12-19 14:37:51 +00:00
|
|
|
bool chaseRawPointers);
|
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareGetContainer(std::string& testCode);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareGetSize(std::string& testCode, const std::string& type);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DeclareTopLevelGetSize(std::string& testCode,
|
|
|
|
const std::string& type);
|
|
|
|
static void DefineTopLevelGetObjectSize(std::string& testCode,
|
|
|
|
const std::string& type,
|
|
|
|
const std::string& linkageName);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DefineTopLevelGetSizeRef(std::string& testCode,
|
|
|
|
const std::string& rawType);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DefineTopLevelGetSizeRefRet(std::string& testCode,
|
|
|
|
const std::string& type);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DefineTopLevelGetSizeSmartPtr(std::string& testCode,
|
|
|
|
const std::string& rawType);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-03-02 15:47:11 +00:00
|
|
|
static void DefineGetSizeTypedValueFunc(std::string& testCode,
|
|
|
|
const std::string& ctype);
|
2022-12-19 14:37:51 +00:00
|
|
|
};
|