ini逻辑 占位

This commit is contained in:
Jie
2025-03-06 14:03:16 +08:00
parent 78169021c3
commit 4c864d813b
5 changed files with 144 additions and 32 deletions

View File

@@ -0,0 +1,50 @@
#ifndef INI_H
#define INI_H
#include <string>
#include <fstream>
#include <util.h>
#include <filesystem>
#include <ios>
namespace fs = std::filesystem;
namespace ini
{
class IniHelper
{
private:
std::fstream handle;
public:
IniHelper()
{
auto path = (fs::current_path() / "ini.ini").string();
std::cout << path <<std::endl;
handle = std::fstream(path, std::ios::ate);
}
IniHelper(const std::string& file_path)
{
handle = std::fstream(file_path);
}
~IniHelper() noexcept = default;
template <typename T = std::string>
inline T GetValue(const std::string &section, const std::string &key, T &&default_value)
{
throw std::exception("Not Implemented");
}
template <typename T = std::string>
inline bool SaveValue(const std::string &section, const std::string &key, T &&default_value)
{
throw std::exception("Not Implemented");
}
};
}
#endif // !INI_H

View File

@@ -12,7 +12,8 @@ namespace ranges = std::ranges;
namespace views = std::ranges::views;
constexpr size_t buffer_size = 32;
namespace string{
namespace string
{
template <typename T>
requires std::is_same_v<std::string, T> || std::is_same_v<const char *, T>
inline std::string replace_string(const std::string &str, T d, T e)
@@ -51,15 +52,17 @@ namespace string{
{ return T(word.begin(), word.end()); });
return std::vector<T>(v.begin(), v.end());
}
template<typename T>
template <typename T>
requires std::is_same_v<T, double> || std::is_same_v<T, float>
double round(T value, int c){
double round(T value, int c)
{
auto temp = 1;
for(int i=0;i<c;i++){
temp=temp*10;
for (int i = 0; i < c; i++)
{
temp = temp * 10;
}
return std::round(value*temp)/temp;
return std::round(value * temp) / temp;
}
}

View File

@@ -3,5 +3,5 @@
#include "util.h"
#include "stringconv.h"
#include "ini.h"
#endif

View File

@@ -5,41 +5,43 @@
#include <expected>
#include <chrono>
namespace util{
template <typename T>
inline std::expected<std::string, std::string> to_string(T value)
namespace util
{
template <typename T>
inline std::expected<std::string, std::string> to_string(T value)
{
if constexpr (std::is_same_v<T, int> || std::is_same_v<T, float> || std::is_same_v<T, double>)
{
char buffer[buffer_size];
auto res = std::to_chars(buffer, buffer + buffer_size, value);
if (res.ec != std::errc())
{
char buffer[buffer_size];
auto res = std::to_chars(buffer, buffer + buffer_size, value);
if (res.ec != std::errc())
{
return std::unexpected(std::make_error_code(res.ec).message());
}
return std::string(buffer, res.ptr - buffer);
}
return std::string(buffer, res.ptr - buffer);
}
else if constexpr (std::is_same_v<typename std::remove_const<T>::type,
char *>)
char *>)
{
return std::to_string(value);
return std::to_string(value);
}
}
}
template <typename T = double> // requires std::is_same_v<T, std::string>
inline std::expected<T, std::string> stoi(const std::string &str)
{
template <typename T = double> // requires std::is_same_v<T, std::string>
inline std::expected<T, std::string> stoi(const std::string &str)
{
T value;
auto res = std::from_chars(str.c_str(), str.c_str() + str.size(), value);
if (res.ec != std::errc())
{
return std::unexpected(std::make_error_code(res.ec).message());
return std::unexpected(std::make_error_code(res.ec).message());
}
return value;
}
}
inline std::string get_time_now(){
inline std::string get_time_now()
{
auto time_now = std::chrono::system_clock::now();
auto now_c = std::chrono::system_clock::to_time_t(time_now);
char buffer[32];
@@ -52,9 +54,6 @@ inline std::expected<T, std::string> stoi(const std::string &str)
result = string::replace_string(result, "\n", "");
return std::move(result);
}
}
#endif
#endif