summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/functor_command.h
blob: 9fc35ee1387d915cc47dc1ada1e70766de6ea7c0 (plain)
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
/*
   Copyright (C) 2007 Paul Davis

	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, write to the Free Software
	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

*/

#ifndef __lib_pbd_functor_command_h__
#define __lib_pbd_functor_command_h__

#include <iostream>
#include <sstream>
#include <string>
#include <map>

#include "pbd/libpbd_visibility.h"
#include "pbd/xml++.h"
#include "pbd/shiva.h"
#include "pbd/command.h"
#include "pbd/failed_constructor.h"

/** This command class is initialized
 */

namespace PBD {

template <class obj_type, class arg_type>
class /*LIBPBD_API*/ FunctorCommand : public Command
{
	private:
	typedef void (obj_type::*functor_type)(arg_type);
	typedef std::map< std::string, functor_type > FunctorMap;
	typedef typename FunctorMap::iterator FunctorMapIterator;

	public:
	FunctorCommand(std::string functor, obj_type& object, arg_type b, arg_type a)
		: functor_name(functor)
		, object(object)
		, before(b)
		, after(a)
	{
		method = find_functor(functor);

		/* catch destruction of the object */
		new PBD::Shiva< obj_type, FunctorCommand<obj_type, arg_type> > (object, *this);
	}

	~FunctorCommand() {
		GoingAway();
	}

	void operator() () {
		(object.*method) (after);
	}

	void undo() {
		(object.*method) (before);
	}

	virtual XMLNode &get_state() {
		std::stringstream ss;

		XMLNode *node = new XMLNode("FunctorCommand");
		node->add_property("type_name", typeid(obj_type).name());
		node->add_property("functor", functor_name);
		ss << before;
		node->add_property("before", ss.str());
		ss.clear ();
		ss << after;
		node->add_property("after", ss.str());

		return *node;
	}

	static void register_functor(std::string name, functor_type f) {
		functor_map[name] = f;
	}

	private:
	static functor_type find_functor(std::string name) {
		FunctorMapIterator iter;

		if((iter = functor_map.find(name)) == functor_map.end()) {
			throw failed_constructor();
		}

		return iter->second;
	}

	protected:
	std::string functor_name;
	obj_type &object;
	arg_type before;
	arg_type after;
	functor_type method;
	static FunctorMap functor_map;
};

// static initialization of functor_map...
template <class obj_type, class arg_type>
typename FunctorCommand<obj_type, arg_type>::FunctorMap
FunctorCommand<obj_type, arg_type>::functor_map;

};

#endif // __lib_pbd_functor_command_h__