60 lines
2.7 KiB
C++
60 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2023 Fancy Code.
|
|
* 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 IIPCCONFIG_H
|
|
#define IIPCCONFIG_H
|
|
#include "StatusCode.h"
|
|
#include <memory>
|
|
#include <string_view>
|
|
#include <iostream>
|
|
|
|
enum class IpcConfigKey
|
|
{
|
|
TEST_NUM = 0,
|
|
END
|
|
};
|
|
class IIpcConfig
|
|
{
|
|
public:
|
|
IIpcConfig() = default;
|
|
virtual ~IIpcConfig() = default;
|
|
static std::shared_ptr<IIpcConfig> &GetInstance(std::shared_ptr<IIpcConfig> *impl = nullptr);
|
|
virtual const StatusCode Init(void) { return CreateStatusCode(STATUS_CODE_OK); }
|
|
virtual const StatusCode UnInit(void) { return CreateStatusCode(STATUS_CODE_OK); }
|
|
virtual const int GetInt(const IpcConfigKey &key) { return -1; }
|
|
virtual void SetInt(const IpcConfigKey &key, const int &value) {}
|
|
virtual const short GetShort(const IpcConfigKey &key) { return -1; }
|
|
virtual void SetShort(const IpcConfigKey &key, const short &value) {}
|
|
virtual const long GetLong(const IpcConfigKey &key) { return -1; }
|
|
virtual void SetLong(const IpcConfigKey &key, const long &value) {}
|
|
virtual const long long GetLongLong(const IpcConfigKey &key) { return -1; }
|
|
virtual void SetLongLong(const IpcConfigKey &key, const long long &value) {}
|
|
virtual const char GetChar(const IpcConfigKey &key) { return '\0'; }
|
|
virtual void SetChar(const IpcConfigKey &key, const char &value) {}
|
|
virtual const float GetFloat(const IpcConfigKey &key) { return -1.0; }
|
|
virtual void SetFloat(const IpcConfigKey &key, const float &value) {}
|
|
virtual const double GetDouble(const IpcConfigKey &key) { return -1.0; }
|
|
virtual void SetDouble(const IpcConfigKey &key, const double &value) {}
|
|
virtual const long double GetLongDouble(const IpcConfigKey &key) { return -1.0; }
|
|
virtual void SetLongDouble(const IpcConfigKey &key, const long double &value) {}
|
|
virtual const bool GetBool(const IpcConfigKey &key) { return true; }
|
|
virtual void SetBool(const IpcConfigKey &key, const bool &value) {}
|
|
virtual const std::string_view GetString(const IpcConfigKey &key) { return "undefine"; }
|
|
virtual void SetString(const IpcConfigKey &key, const std::string string) {}
|
|
|
|
|
|
|
|
};
|
|
bool CreateIpcConfig(void);
|
|
#endif |