yolobs-studio/libobs/util/util.hpp

156 lines
3.4 KiB
C++
Raw Normal View History

2016-02-23 23:16:51 +00:00
/*
* Copyright (c) 2013 Hugh Bailey <obs.jim@gmail.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* Useful C++ classes/bindings for util data and pointers */
#pragma once
#include <string.h>
#include <stdarg.h>
2020-03-25 08:07:22 +00:00
#include <utility>
2016-02-23 23:16:51 +00:00
#include "bmem.h"
#include "config-file.h"
#include "text-lookup.h"
/* RAII wrappers */
template<typename T> class BPtr {
T *ptr;
2019-09-22 21:19:10 +00:00
BPtr(BPtr const &) = delete;
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
BPtr &operator=(BPtr const &) = delete;
2016-02-23 23:16:51 +00:00
public:
2019-09-22 21:19:10 +00:00
inline BPtr(T *p = nullptr) : ptr(p) {}
2020-03-25 08:07:22 +00:00
inline BPtr(BPtr &&other) { *this = std::move(other); }
2019-09-22 21:19:10 +00:00
inline ~BPtr() { bfree(ptr); }
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
inline T *operator=(T *p)
{
bfree(ptr);
ptr = p;
return p;
}
2020-03-25 08:07:22 +00:00
inline BPtr &operator=(BPtr &&other)
{
ptr = other.ptr;
other.ptr = nullptr;
return *this;
}
2019-09-22 21:19:10 +00:00
inline operator T *() { return ptr; }
inline T **operator&()
{
bfree(ptr);
ptr = nullptr;
return &ptr;
}
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
inline bool operator!() { return ptr == NULL; }
inline bool operator==(T p) { return ptr == p; }
inline bool operator!=(T p) { return ptr != p; }
2017-06-29 19:01:10 +00:00
2019-09-22 21:19:10 +00:00
inline T *Get() const { return ptr; }
2016-02-23 23:16:51 +00:00
};
class ConfigFile {
config_t *config;
2019-09-22 21:19:10 +00:00
ConfigFile(ConfigFile const &) = delete;
ConfigFile &operator=(ConfigFile const &) = delete;
2016-02-23 23:16:51 +00:00
public:
inline ConfigFile() : config(NULL) {}
2020-03-25 08:07:22 +00:00
inline ConfigFile(ConfigFile &&other) noexcept : config(other.config)
2016-02-23 23:16:51 +00:00
{
other.config = nullptr;
}
2019-09-22 21:19:10 +00:00
inline ~ConfigFile() { config_close(config); }
2016-02-23 23:16:51 +00:00
inline bool Create(const char *file)
{
Close();
config = config_create(file);
return config != NULL;
}
inline void Swap(ConfigFile &other)
{
config_t *newConfig = other.config;
other.config = config;
config = newConfig;
}
inline int Open(const char *file, config_open_type openType)
{
Close();
return config_open(&config, file, openType);
}
2019-09-22 21:19:10 +00:00
inline int Save() { return config_save(config); }
2016-02-23 23:16:51 +00:00
inline int SaveSafe(const char *temp_ext,
2019-09-22 21:19:10 +00:00
const char *backup_ext = nullptr)
2016-02-23 23:16:51 +00:00
{
return config_save_safe(config, temp_ext, backup_ext);
}
inline void Close()
{
config_close(config);
config = NULL;
}
2019-09-22 21:19:10 +00:00
inline operator config_t *() const { return config; }
2016-02-23 23:16:51 +00:00
};
class TextLookup {
lookup_t *lookup;
2019-09-22 21:19:10 +00:00
TextLookup(TextLookup const &) = delete;
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
TextLookup &operator=(TextLookup const &) = delete;
2016-02-23 23:16:51 +00:00
public:
2019-09-22 21:19:10 +00:00
inline TextLookup(lookup_t *lookup = nullptr) : lookup(lookup) {}
2020-03-25 08:07:22 +00:00
inline TextLookup(TextLookup &&other) noexcept : lookup(other.lookup)
2016-02-23 23:16:51 +00:00
{
other.lookup = nullptr;
}
2019-09-22 21:19:10 +00:00
inline ~TextLookup() { text_lookup_destroy(lookup); }
2016-02-23 23:16:51 +00:00
2019-09-22 21:19:10 +00:00
inline TextLookup &operator=(lookup_t *val)
2016-02-23 23:16:51 +00:00
{
text_lookup_destroy(lookup);
lookup = val;
return *this;
}
2019-09-22 21:19:10 +00:00
inline operator lookup_t *() const { return lookup; }
2016-02-23 23:16:51 +00:00
inline const char *GetString(const char *lookupVal) const
{
const char *out;
if (!text_lookup_getstr(lookup, lookupVal, &out))
return lookupVal;
return out;
}
};