2013-11-22 15:20:02 -08:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2013-12-02 21:24:38 -08:00
|
|
|
the Free Software Foundation, either version 2 of the License, or
|
2013-11-22 15:20:02 -08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2013-11-23 22:38:52 -08:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include <util/config-file.h>
|
2013-12-07 09:22:56 -08:00
|
|
|
#include <util/text-lookup.h>
|
2013-11-22 19:57:24 -08:00
|
|
|
#include <obs.h>
|
|
|
|
|
2013-11-23 22:38:52 -08:00
|
|
|
/* RAII wrappers */
|
|
|
|
|
|
|
|
template<typename T> class BPtr {
|
2013-12-15 16:55:27 -08:00
|
|
|
T *ptr;
|
2013-11-23 22:38:52 -08:00
|
|
|
|
2013-12-15 16:43:19 -08:00
|
|
|
BPtr(BPtr const&) = delete;
|
|
|
|
|
|
|
|
BPtr &operator=(BPtr const&) = delete;
|
|
|
|
|
2013-11-23 22:38:52 -08:00
|
|
|
public:
|
2013-12-15 16:55:27 -08:00
|
|
|
inline BPtr(T *p=nullptr) : ptr(p) {}
|
2013-12-15 16:43:19 -08:00
|
|
|
inline BPtr(BPtr &&other) : ptr(other.ptr) {other.ptr = nullptr;}
|
|
|
|
inline ~BPtr() {bfree(ptr);}
|
2013-11-23 22:38:52 -08:00
|
|
|
|
2013-12-15 16:55:27 -08:00
|
|
|
inline T *operator=(T *p) {bfree(ptr); ptr = p; return p;}
|
|
|
|
inline operator T*() {return ptr;}
|
|
|
|
inline T **operator&() {bfree(ptr); ptr = nullptr; return &ptr;}
|
2013-11-23 22:38:52 -08:00
|
|
|
|
|
|
|
inline bool operator!() {return ptr == NULL;}
|
|
|
|
inline bool operator==(T p) {return ptr == p;}
|
|
|
|
inline bool operator!=(T p) {return ptr != p;}
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConfigFile {
|
|
|
|
config_t config;
|
|
|
|
|
2013-12-15 16:43:19 -08:00
|
|
|
ConfigFile(ConfigFile const&) = delete;
|
|
|
|
ConfigFile &operator=(ConfigFile const&) = delete;
|
|
|
|
|
2013-11-23 22:38:52 -08:00
|
|
|
public:
|
|
|
|
inline ConfigFile() : config(NULL) {}
|
2013-12-15 16:43:19 -08:00
|
|
|
inline ConfigFile(ConfigFile &&other) : config(other.config)
|
|
|
|
{
|
|
|
|
other.config = nullptr;
|
|
|
|
}
|
2013-11-23 22:38:52 -08:00
|
|
|
inline ~ConfigFile()
|
|
|
|
{
|
|
|
|
config_close(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline bool Create(const char *file)
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
config = config_create(file);
|
|
|
|
return config != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Open(const char *file, config_open_type openType)
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
return config_open(&config, file, openType);
|
|
|
|
}
|
|
|
|
|
|
|
|
int Save()
|
|
|
|
{
|
|
|
|
return config_save(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Close()
|
|
|
|
{
|
|
|
|
config_close(config);
|
|
|
|
config = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline operator config_t() {return config;}
|
|
|
|
};
|
|
|
|
|
2013-12-07 09:22:56 -08:00
|
|
|
class TextLookup {
|
|
|
|
lookup_t lookup;
|
|
|
|
|
2013-12-15 16:43:19 -08:00
|
|
|
TextLookup(TextLookup const&) = delete;
|
|
|
|
|
|
|
|
TextLookup &operator=(TextLookup const&) = delete;
|
|
|
|
|
2013-12-07 09:22:56 -08:00
|
|
|
public:
|
2013-12-15 16:43:19 -08:00
|
|
|
inline TextLookup(lookup_t lookup=nullptr) : lookup(lookup) {}
|
|
|
|
inline TextLookup(TextLookup &&other) : lookup(other.lookup)
|
|
|
|
{
|
|
|
|
other.lookup = nullptr;
|
|
|
|
}
|
2013-12-07 09:22:56 -08:00
|
|
|
inline ~TextLookup() {text_lookup_destroy(lookup);}
|
|
|
|
|
|
|
|
inline TextLookup& operator=(lookup_t val)
|
|
|
|
{
|
|
|
|
text_lookup_destroy(lookup);
|
|
|
|
lookup = val;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline operator lookup_t() {return lookup;}
|
|
|
|
|
|
|
|
inline const char *GetString(const char *lookupVal)
|
|
|
|
{
|
|
|
|
const char *out;
|
|
|
|
if (!text_lookup_getstr(lookup, lookupVal, &out))
|
|
|
|
return lookupVal;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-22 15:20:02 -08:00
|
|
|
class OBSSource {
|
|
|
|
obs_source_t source;
|
|
|
|
|
2013-12-15 16:43:19 -08:00
|
|
|
OBSSource(OBSSource &&) = delete;
|
|
|
|
OBSSource(OBSSource const&) = delete;
|
|
|
|
|
|
|
|
OBSSource &operator=(OBSSource const&) = delete;
|
|
|
|
|
2013-11-22 15:20:02 -08:00
|
|
|
public:
|
|
|
|
inline OBSSource(obs_source_t source) : source(source) {}
|
|
|
|
inline ~OBSSource() {obs_source_release(source);}
|
|
|
|
|
2013-12-06 12:43:51 -08:00
|
|
|
inline OBSSource& operator=(obs_source_t p) {source = p; return *this;}
|
2013-11-23 22:38:52 -08:00
|
|
|
|
2013-11-22 15:20:02 -08:00
|
|
|
inline operator obs_source_t() {return source;}
|
|
|
|
|
|
|
|
inline bool operator==(obs_source_t p) const {return source == p;}
|
|
|
|
inline bool operator!=(obs_source_t p) const {return source != p;}
|
|
|
|
};
|
|
|
|
|
|
|
|
class OBSSourceRef {
|
|
|
|
obs_source_t source;
|
|
|
|
|
|
|
|
public:
|
|
|
|
inline OBSSourceRef(obs_source_t source) : source(source)
|
|
|
|
{
|
|
|
|
obs_source_addref(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline OBSSourceRef(const OBSSourceRef &ref) : source(ref.source)
|
|
|
|
{
|
|
|
|
obs_source_addref(source);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline OBSSourceRef(OBSSourceRef &&ref) : source(ref.source)
|
|
|
|
{
|
|
|
|
ref.source = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline ~OBSSourceRef() {obs_source_release(source);}
|
|
|
|
|
|
|
|
inline OBSSourceRef &operator=(obs_source_t sourceIn)
|
|
|
|
{
|
|
|
|
obs_source_addref(sourceIn);
|
|
|
|
obs_source_release(source);
|
|
|
|
source = sourceIn;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline OBSSourceRef &operator=(const OBSSourceRef &ref)
|
|
|
|
{
|
|
|
|
obs_source_addref(ref.source);
|
|
|
|
obs_source_release(source);
|
|
|
|
source = ref.source;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline OBSSourceRef &operator=(OBSSourceRef &&ref)
|
|
|
|
{
|
|
|
|
if (this != &ref) {
|
|
|
|
source = ref.source;
|
|
|
|
ref.source = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline operator obs_source_t() const {return source;}
|
|
|
|
|
|
|
|
inline bool operator==(obs_source_t p) const {return source == p;}
|
|
|
|
inline bool operator!=(obs_source_t p) const {return source != p;}
|
|
|
|
};
|