File: undo_redo.h

package info (click to toggle)
zytrax 0%2Bgit20201215-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 2,488 kB
  • sloc: cpp: 41,800; ansic: 3,387; makefile: 8; sh: 3
file content (345 lines) | stat: -rw-r--r-- 7,977 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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
//
// C++ Interface: undo_redo
//
// Description:
//
//
// Author: Juan Linietsky <reduzio@gmail.com>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef UNDO_REDO_H
#define UNDO_REDO_H

#include "list.h"
#include "rstring.h"
#include "vector.h"
//#include "simple_type.h"
/**
	@author Juan Linietsky <reduzio@gmail.com>
*/
class UndoRedo {
public:
	typedef void (*ActionCallback)(const String &, void *);

protected:
	struct CommandDataBase {

		virtual ~CommandDataBase() {}
	};

	template <class T>
	struct CommandData : public CommandDataBase {

		T *data;

		~CommandData() { delete data; }
		CommandData(T *p_data) { data = p_data; }
	};

	struct CommandBase {

		List<CommandDataBase *> command_data;

	public:
		template <class T>
		CommandBase *with_data(T *p_data) {

			command_data.push_back(new CommandData<T>(p_data));
			return this;
		}

		virtual void call() = 0;
		virtual ~CommandBase() {}
	};

	template <class T>
	struct Command0 : public CommandBase {

		typedef void (T::*Method)();
		T *instance;
		Method method;
		virtual void call() {
			(instance->*method)();
		}
		Command0(T *p_instance, Method p_method) {
			instance = p_instance;
			method = p_method;
		}
	};

	template <class T, class P1>
	struct Command1 : public CommandBase {

		typedef void (T::*Method)(P1);
		T *instance;
		Method method;
		P1 p1;
		virtual void call() {
			(instance->*method)(p1);
		}
		Command1(T *p_instance, Method p_method, P1 p_p1) {
			instance = p_instance;
			method = p_method;
			p1 = p_p1;
		}
	};

	/**/

	template <class T, class P1, class P2>
	struct Command2 : public CommandBase {

		typedef void (T::*Method)(P1, P2);
		T *instance;
		Method method;
		P1 p1;
		P2 p2;
		virtual void call() {
			(instance->*method)(p1, p2);
		}
		Command2(T *p_instance, Method p_method, P1 p_p1, P2 p_p2) {
			instance = p_instance;
			method = p_method;
			p1 = p_p1;
			p2 = p_p2;
		}
	};

	/**/

	template <class T, class P1, class P2, class P3>
	struct Command3 : public CommandBase {

		typedef void (T::*Method)(P1, P2, P3);
		T *instance;
		Method method;
		P1 p1;
		P2 p2;
		P3 p3;
		virtual void call() {
			(instance->*method)(p1, p2, p3);
		}
		Command3(T *p_instance, Method p_method, P1 p_p1, P2 p_p2, P3 p_p3) {
			instance = p_instance;
			method = p_method;
			p1 = p_p1;
			p2 = p_p2;
			p3 = p_p3;
		}
	};

	/**/

	template <class T, class P1, class P2, class P3, class P4>
	struct Command4 : public CommandBase {

		typedef void (T::*Method)(P1, P2, P3, P4);
		T *instance;
		Method method;
		P1 p1;
		P2 p2;
		P3 p3;
		P4 p4;
		virtual void call() {
			(instance->*method)(p1, p2, p3, p4);
		}
		Command4(T *p_instance, Method p_method, P1 p_p1, P2 p_p2, P3 p_p3, P4 p_p4) {
			instance = p_instance;
			method = p_method;
			p1 = p_p1;
			p2 = p_p2;
			p3 = p_p3;
			p4 = p_p4;
		}
	};

	/**/

	template <class T, class P1, class P2, class P3, class P4, class P5>
	struct Command5 : public CommandBase {

		typedef void (T::*Method)(P1, P2, P3, P4, P5);
		T *instance;
		Method method;
		P1 p1;
		P2 p2;
		P3 p3;
		P4 p4;
		P5 p5;
		virtual void call() {
			(instance->*method)(p1, p2, p3, p4, p5);
		}
		Command5(T *p_instance, Method p_method, P1 p_p1, P2 p_p2, P3 p_p3, P4 p_p4, P5 p_p5) {
			instance = p_instance;
			method = p_method;
			p1 = p_p1;
			p2 = p_p2;
			p3 = p_p3;
			p4 = p_p4;
			p5 = p_p5;
		}
	};

	/* methods */

	template <class T, class M, class P1>
	Command1<T, P1> *command(T *p_instance, M p_method, P1 p1) {

		return new Command1<T, P1>(p_instance, p_method, p1);
	}

	template <class T, class M, class P1, class P2>
	Command2<T, P1, P2> *command(T *p_instance, M p_method, P1 p1, P2 p2) {

		return new Command2<T, P1, P2>(p_instance, p_method, p1, p2);
	}

	template <class T, class M, class P1, class P2, class P3>
	Command3<T, P1, P2, P3> *command(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3) {

		return new Command3<T, P1, P2, P3>(p_instance, p_method, p1, p2, p3);
	}

	template <class T, class M, class P1, class P2, class P3, class P4>
	Command4<T, P1, P2, P3, P4> *command(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3, P4 p4) {

		return new Command4<T, P1, P2, P3, P4>(p_instance, p_method, p1, p2, p3, p4);
	}

	template <class T, class M, class P1, class P2, class P3, class P4, class P5>
	Command5<T, P1, P2, P3, P4, P5> *command(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) {

		return new Command5<T, P1, P2, P3, P4, P5>(p_instance, p_method, p1, p2, p3, p4, p5);
	}

	/*****/

	class Data {
	public:
		virtual void free() = 0;
		virtual ~Data() {}
	};

	template <class T>
	class DataPtr : public Data {

		T *ptr;

	public:
		virtual void free() { delete ptr; }
		DataPtr(T *p_ptr) { ptr = p_ptr; }
		~DataPtr() {}
	};

private:
	struct Group {

		List<CommandBase *> do_method_list;
		List<CommandBase *> undo_method_list;
		List<Data *> do_data;
		List<Data *> undo_data;
		String name;
		bool merge_forward;
		bool merge_backward;
	};

	void _delete_group(Group *p_group, bool p_do, bool p_undo);
	Vector<Group *> group_list;
	int current_group;
	int group_rc;

	ActionCallback action_callback;
	void *action_callback_userdata;

public:
	void begin_action(String p_name, bool p_mergeable = false);

	template <class T, class M>
	void do_method(T *p_instance, M p_method) {

		group_list[current_group]->do_method_list.push_back(new Command0<T>(p_instance, p_method));
	}

	template <class T, class M, class P1>
	void do_method(T *p_instance, M p_method, P1 p1) {

		group_list[current_group]->do_method_list.push_back(new Command1<T, P1>(p_instance, p_method, p1));
	}

	template <class T, class M, class P1, class P2>
	void do_method(T *p_instance, M p_method, P1 p1, P2 p2) {

		group_list[current_group]->do_method_list.push_back(new Command2<T, P1, P2>(p_instance, p_method, p1, p2));
	}

	template <class T, class M, class P1, class P2, class P3>
	void do_method(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3) {

		group_list[current_group]->do_method_list.push_back(new Command3<T, P1, P2, P3>(p_instance, p_method, p1, p2, p3));
	}

	template <class T, class M, class P1, class P2, class P3, class P4>
	void do_method(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3, P4 p4) {

		group_list[current_group]->do_method_list.push_back(new Command4<T, P1, P2, P3, P4>(p_instance, p_method, p1, p2, p3, p4));
	}

	template <class T, class M>
	void undo_method(T *p_instance, M p_method) {

		group_list[current_group]->undo_method_list.push_back(new Command0<T>(p_instance, p_method));
	}

	template <class T, class M, class P1>
	void undo_method(T *p_instance, M p_method, P1 p1) {

		group_list[current_group]->undo_method_list.push_back(new Command1<T, P1>(p_instance, p_method, p1));
	}

	template <class T, class M, class P1, class P2>
	void undo_method(T *p_instance, M p_method, P1 p1, P2 p2) {

		group_list[current_group]->undo_method_list.push_back(new Command2<T, P1, P2>(p_instance, p_method, p1, p2));
	}

	template <class T, class M, class P1, class P2, class P3>
	void undo_method(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3) {

		group_list[current_group]->undo_method_list.push_back(new Command3<T, P1, P2, P3>(p_instance, p_method, p1, p2, p3));
	}

	template <class T, class M, class P1, class P2, class P3, class P4>
	void undo_method(T *p_instance, M p_method, P1 p1, P2 p2, P3 p3, P4 p4) {

		group_list[current_group]->undo_method_list.push_back(new Command4<T, P1, P2, P3, P4>(p_instance, p_method, p1, p2, p3, p4));
	}

	template <class T>
	void do_data(T *p_data) {

		group_list[current_group]->do_data.push_back(new DataPtr<T>(p_data));
	}

	template <class T>
	void undo_data(T *p_data) {

		group_list[current_group]->undo_data.push_back(new DataPtr<T>(p_data));
	}

	void commit_action();

	void undo();
	void redo();
	void clean();

	int get_current_version();

	void set_action_callback(ActionCallback p_action_callback, void *p_action_callback_userdata);

	UndoRedo();
	~UndoRedo();
};

#endif