2017-01-20 08:36:52 -05:00
|
|
|
#pragma once
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
namespace Utils
|
|
|
|
{
|
|
|
|
std::string GetMimeType(std::string url);
|
|
|
|
std::string ParseChallenge(std::string data);
|
|
|
|
void OutputDebugLastError();
|
2017-02-09 16:16:49 -05:00
|
|
|
std::string GetLastWindowsError();
|
2017-01-19 16:23:59 -05:00
|
|
|
|
|
|
|
bool IsWineEnvironment();
|
|
|
|
|
2017-03-04 07:51:41 -05:00
|
|
|
unsigned long GetParentProcessId();
|
|
|
|
|
2017-02-24 05:43:05 -05:00
|
|
|
template <typename T> inline void Merge(std::vector<T>* target, T* source, size_t length)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
|
|
|
if (source)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < length; ++i)
|
|
|
|
{
|
|
|
|
target->push_back(source[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-24 05:43:05 -05:00
|
|
|
template <typename T> inline void Merge(std::vector<T>* target, std::vector<T> source)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
|
|
|
for (auto &entry : source)
|
|
|
|
{
|
|
|
|
target->push_back(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T> using Slot = std::function<T>;
|
|
|
|
template <typename T>
|
|
|
|
class Signal
|
|
|
|
{
|
|
|
|
public:
|
2017-01-22 07:44:14 -05:00
|
|
|
Signal()
|
|
|
|
{
|
|
|
|
this->slots.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
Signal(Signal& obj) : Signal()
|
|
|
|
{
|
|
|
|
Utils::Merge(&this->slots, obj.getSlots());
|
|
|
|
}
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
void connect(Slot<T> slot)
|
|
|
|
{
|
2017-01-22 07:44:14 -05:00
|
|
|
if (slot)
|
|
|
|
{
|
|
|
|
this->slots.push_back(slot);
|
|
|
|
}
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void clear()
|
|
|
|
{
|
2017-01-20 19:52:30 -05:00
|
|
|
this->slots.clear();
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
|
2017-01-22 07:44:14 -05:00
|
|
|
std::vector<Slot<T>>& getSlots()
|
|
|
|
{
|
|
|
|
return this->slots;
|
|
|
|
}
|
|
|
|
|
2017-01-19 16:23:59 -05:00
|
|
|
template <class ...Args>
|
|
|
|
void operator()(Args&&... args) const
|
|
|
|
{
|
2017-01-20 19:52:30 -05:00
|
|
|
std::vector<Slot<T>> copiedSlots;
|
|
|
|
Utils::Merge(&copiedSlots, this->slots);
|
|
|
|
|
|
|
|
for (auto slot : copiedSlots)
|
2017-01-19 16:23:59 -05:00
|
|
|
{
|
2017-01-22 07:44:14 -05:00
|
|
|
if (slot)
|
|
|
|
{
|
|
|
|
slot(std::forward<Args>(args)...);
|
|
|
|
}
|
2017-01-19 16:23:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<Slot<T>> slots;
|
|
|
|
};
|
|
|
|
|
2017-01-31 16:02:08 -05:00
|
|
|
// TODO: Replace with std::optional, once C++17 is fully available!
|
2017-01-19 16:23:59 -05:00
|
|
|
template <typename T>
|
|
|
|
class Value
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Value() : hasValue(false) {}
|
|
|
|
Value(T _value) { this->set(_value); }
|
|
|
|
|
|
|
|
void set(T _value)
|
|
|
|
{
|
|
|
|
this->value = _value;
|
|
|
|
this->hasValue = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isValid()
|
|
|
|
{
|
|
|
|
return this->hasValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
T get()
|
|
|
|
{
|
|
|
|
return this->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool hasValue;
|
|
|
|
T value;
|
|
|
|
};
|
|
|
|
}
|