| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- /******************************************************************************
- Copyright (C) 2013 by Hugh Bailey <[email protected]>
- 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
- the Free Software Foundation, either version 2 of the License, or
- (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
- #include <string.h>
- #include <stdarg.h>
- #include <util/config-file.h>
- #include <obs.h>
- /* RAII wrappers */
- template<typename T> class BPtr {
- T ptr;
- public:
- inline BPtr() : ptr(NULL) {}
- inline BPtr(T p) : ptr(p) {}
- inline ~BPtr() {bfree(ptr);}
- inline T operator=(T p) {bfree(ptr); ptr = p;}
- inline operator T() {return ptr;}
- inline T *operator&() {bfree(ptr); ptr = NULL; return &ptr;}
- 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;
- public:
- inline ConfigFile() : config(NULL) {}
- 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;}
- };
- class OBSSource {
- obs_source_t source;
- public:
- inline OBSSource(obs_source_t source) : source(source) {}
- inline ~OBSSource() {obs_source_release(source);}
- inline OBSSource& operator=(obs_source_t p) {source = p;}
- 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;}
- };
|