mirror of
https://github.com/wiiu-env/AromaUpdater.git
synced 2024-12-02 17:44:17 +01:00
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
#include <mutex>
|
||
|
#include <optional>
|
||
|
#include <vector>
|
||
|
|
||
|
template<class T, class... Args>
|
||
|
std::unique_ptr<T> make_unique_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
||
|
return std::unique_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
||
|
}
|
||
|
|
||
|
template<typename T>
|
||
|
inline typename std::unique_ptr<T> make_unique_nothrow(size_t num) noexcept {
|
||
|
return std::unique_ptr<T>(new (std::nothrow) std::remove_extent_t<T>[num]());
|
||
|
}
|
||
|
|
||
|
template<class T, class... Args>
|
||
|
std::shared_ptr<T> make_shared_nothrow(Args &&...args) noexcept(noexcept(T(std::forward<Args>(args)...))) {
|
||
|
return std::shared_ptr<T>(new (std::nothrow) T(std::forward<Args>(args)...));
|
||
|
}
|
||
|
|
||
|
template<typename... Args>
|
||
|
std::string string_format(const std::string &format, Args... args) {
|
||
|
int size_s = std::snprintf(nullptr, 0, format.c_str(), args...) + 1; // Extra space for '\0'
|
||
|
auto size = static_cast<size_t>(size_s);
|
||
|
auto buf = make_unique_nothrow<char[]>(size);
|
||
|
if (!buf) {
|
||
|
return std::string("");
|
||
|
}
|
||
|
std::snprintf(buf.get(), size, format.c_str(), args...);
|
||
|
return std::string(buf.get(), buf.get() + size - 1); // We don't want the '\0' inside
|
||
|
}
|
||
|
|
||
|
std::optional<std::string> hashFile(const std::string &path);
|