File: qd_resource_dispatcher.h

package info (click to toggle)
scummvm 2.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 450,580 kB
  • sloc: cpp: 4,299,825; asm: 28,322; python: 12,901; sh: 11,302; java: 9,289; xml: 7,895; perl: 2,639; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (192 lines) | stat: -rw-r--r-- 6,499 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/* ScummVM - Graphic Adventure Engine
 *
 * ScummVM is the legal property of its developers, whose names
 * are too numerous to list here. Please refer to the COPYRIGHT
 * file distributed with this source distribution.
 *
 * 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 3 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/>.
 *
 */

#ifndef QDENGINE_QDCORE_QD_RESOURCE_DISPATCHER_H
#define QDENGINE_QDCORE_QD_RESOURCE_DISPATCHER_H

#include "qdengine/qdcore/qd_resource.h"


namespace QDEngine {

//! Диспетчер ресурсов.
template<class T>
class qdResourceDispatcher {
public:
	qdResourceDispatcher() {}
	virtual ~qdResourceDispatcher() {}

	//! Регистрация ресурса.
	bool register_resource(qdResource *res, const T *res_owner) {
		qdResourceHandle<T> hres(res, res_owner);
		typename handle_container_t::iterator it = Common::find(_handles.begin(), _handles.end(), hres);

		if (it != _handles.end()) return false;
		_handles.push_back(hres);

		return true;
	}

	//! Отмена регистрации ресурса.
	bool unregister_resource(qdResource *res, const T *res_owner) {
		qdResourceHandle<T> hres(res, res_owner);
		typename handle_container_t::iterator it = Common::find(_handles.begin(), _handles.end(), hres);

		if (it != _handles.end()) {
			_handles.erase(it);
			return true;
		}

		return false;
	}

	//! Возвращает true, если ресурс res (опционально - с владельцем res_owner) есть в списке.
	bool is_registered(const qdResource *res, const T *res_owner = NULL) const {
		if (res_owner) {
			qdResourceHandle<T> hres(const_cast<qdResource *>(res), res_owner);
			typename handle_container_t::const_iterator it = Common::find(_handles.begin(), _handles.end(), hres);
			return (it != _handles.end());
		} else {
			typename handle_container_t::const_iterator it = Common::find(_handles.begin(), _handles.end(), *res);
			return (it != _handles.end());
		}
	}

	const T *find_owner(const qdResource *res) const {
		typename handle_container_t::const_iterator it = Common::find(_handles.begin(), _handles.end(), *res);
		if (_handles.end() == it) return NULL;
		return (*it).resource_owner();
	}

	//! Загружает в память данные для ресурсов.
	void load_resources(const T *owner = NULL) const {
		if (owner) {
			for (typename handle_container_t::const_iterator it = _handles.begin(); it != _handles.end(); ++it) {
				if (it->resource_owner() == owner)
					it->load_resource();
			}
		} else {
			for (typename handle_container_t::const_iterator it = _handles.begin(); it != _handles.end(); ++it)
				it->load_resource();
		}
	}

	//! Выгружает из памяти данные ресурсов.
	void release_resources(const T *owner = NULL, const T *hold_owner = NULL) const {
		if (owner) {
			for (typename handle_container_t::const_iterator it = _handles.begin(); it != _handles.end(); ++it) {
				if (it->resource_owner() == owner && (!hold_owner || !is_registered(it->resource(), hold_owner)))
					it->release_resource();
			}
		} else {
			if (hold_owner) {
				for (typename handle_container_t::const_iterator it = _handles.begin(); it != _handles.end(); ++it) {
					if (it->resource_owner() != hold_owner)
						it->release_resource();
				}
			} else {
				for (typename handle_container_t::const_iterator it = _handles.begin(); it != _handles.end(); ++it)
					it->release_resource();
			}
		}
	}

	//! Загружает в память данные ресурса, если они еще не загружены.
	bool load_resource(qdResource *res, const T *res_owner) {
		qdResourceHandle<T> hres(res, res_owner);
		register_resource(res, res_owner);
		return hres.load_resource();
	}

	//! Выгружает из памяти данные ресурса, если на него нет больше ссылок.
	bool release_resource(qdResource *res, const T *res_owner) {
		unregister_resource(res, res_owner);
		if (!is_registered(res)) {
			qdResourceHandle<T> hres(res, res_owner);
			return hres.release_resource();
		}

		return false;
	}

protected:

	//! Хэндл для управления ресурсами.
	template<class U>
	class qdResourceHandle {
	public:
		qdResourceHandle(qdResource *res, const U *res_owner) : _resource(res), _resource_owner(res_owner) {}
		qdResourceHandle(const qdResourceHandle<U> &h) : _resource(h._resource), _resource_owner(h._resource_owner) {}
		~qdResourceHandle() {}

		qdResourceHandle<U> &operator = (const qdResourceHandle<U> &h) {
			if (this == &h) return *this;
			_resource = h._resource;
			_resource_owner = h._resource_owner;
			return *this;
		}

		bool operator == (const qdResource &res) const {
			return (_resource == &res);
		}
		bool operator == (const qdResourceHandle<U> &h) const {
			return (_resource == h._resource && _resource_owner == h._resource_owner);
		}

		//! Возвращает указатель на ресурс.
		qdResource *resource() const {
			return _resource;
		}
		//! Возвращает указатель на владельца ресурса.
		const U *resource_owner() const {
			return _resource_owner;
		}

		//! Загружает ресурс в память.
		bool load_resource() const {
			if (!_resource->is_resource_loaded())
				return _resource->load_resource();
			return true;
		}
		//! Выгружает ресурс из памяти.
		bool release_resource() const {
			if (_resource->is_resource_loaded())
				return _resource->free_resource();
			return true;
		}

	private:

		//! Указатель на ресурс.
		mutable qdResource *_resource;
		//! Указатель на владельца ресурса.
		const T *_resource_owner;
	};

	typedef Std::list< qdResourceHandle<T> > handle_container_t;

	//! Хэндлы ресурсов.
	handle_container_t _handles;
};

} // namespace QDEngine

#endif // QDENGINE_QDCORE_QD_RESOURCE_DISPATCHER_H