ini逻辑 占位
This commit is contained in:
parent
78169021c3
commit
4c864d813b
62
.vscode/settings.json
vendored
62
.vscode/settings.json
vendored
@ -1,6 +1,66 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"*.cpp": "cpp",
|
||||
"type_traits": "cpp"
|
||||
"type_traits": "cpp",
|
||||
"cctype": "cpp",
|
||||
"clocale": "cpp",
|
||||
"cmath": "cpp",
|
||||
"cstdarg": "cpp",
|
||||
"cstddef": "cpp",
|
||||
"cstdio": "cpp",
|
||||
"cstdlib": "cpp",
|
||||
"cstring": "cpp",
|
||||
"ctime": "cpp",
|
||||
"cwchar": "cpp",
|
||||
"cwctype": "cpp",
|
||||
"array": "cpp",
|
||||
"atomic": "cpp",
|
||||
"bit": "cpp",
|
||||
"*.tcc": "cpp",
|
||||
"charconv": "cpp",
|
||||
"chrono": "cpp",
|
||||
"compare": "cpp",
|
||||
"concepts": "cpp",
|
||||
"cstdint": "cpp",
|
||||
"deque": "cpp",
|
||||
"list": "cpp",
|
||||
"string": "cpp",
|
||||
"unordered_map": "cpp",
|
||||
"vector": "cpp",
|
||||
"exception": "cpp",
|
||||
"expected": "cpp",
|
||||
"algorithm": "cpp",
|
||||
"functional": "cpp",
|
||||
"iterator": "cpp",
|
||||
"memory": "cpp",
|
||||
"memory_resource": "cpp",
|
||||
"numeric": "cpp",
|
||||
"optional": "cpp",
|
||||
"random": "cpp",
|
||||
"ratio": "cpp",
|
||||
"string_view": "cpp",
|
||||
"system_error": "cpp",
|
||||
"tuple": "cpp",
|
||||
"utility": "cpp",
|
||||
"fstream": "cpp",
|
||||
"initializer_list": "cpp",
|
||||
"iomanip": "cpp",
|
||||
"iosfwd": "cpp",
|
||||
"iostream": "cpp",
|
||||
"istream": "cpp",
|
||||
"limits": "cpp",
|
||||
"new": "cpp",
|
||||
"numbers": "cpp",
|
||||
"ostream": "cpp",
|
||||
"ranges": "cpp",
|
||||
"span": "cpp",
|
||||
"sstream": "cpp",
|
||||
"stdexcept": "cpp",
|
||||
"streambuf": "cpp",
|
||||
"cinttypes": "cpp",
|
||||
"typeinfo": "cpp",
|
||||
"variant": "cpp",
|
||||
"format": "cpp",
|
||||
"codecvt": "cpp"
|
||||
}
|
||||
}
|
@ -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 §ion, const std::string &key, T &&default_value)
|
||||
{
|
||||
throw std::exception("Not Implemented");
|
||||
}
|
||||
|
||||
template <typename T = std::string>
|
||||
inline bool SaveValue(const std::string §ion, const std::string &key, T &&default_value)
|
||||
{
|
||||
throw std::exception("Not Implemented");
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // !INI_H
|
@ -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)
|
||||
@ -54,9 +55,11 @@ namespace string{
|
||||
|
||||
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++){
|
||||
for (int i = 0; i < c; i++)
|
||||
{
|
||||
temp = temp * 10;
|
||||
}
|
||||
return std::round(value * temp) / temp;
|
||||
|
@ -3,5 +3,5 @@
|
||||
|
||||
#include "util.h"
|
||||
#include "stringconv.h"
|
||||
|
||||
#include "ini.h"
|
||||
#endif
|
||||
|
@ -5,7 +5,8 @@
|
||||
#include <expected>
|
||||
#include <chrono>
|
||||
|
||||
namespace util{
|
||||
namespace util
|
||||
{
|
||||
|
||||
template <typename T>
|
||||
inline std::expected<std::string, std::string> to_string(T value)
|
||||
@ -39,7 +40,8 @@ inline std::expected<T, std::string> stoi(const std::string &str)
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user