]> ruin.nu Git - germs.git/blob - src/sortaction.h
Check for TR1 or Boost
[germs.git] / src / sortaction.h
1 /***************************************************************************
2  *   Copyright (C) 2006 by Michael Andreen                                 *
3  *   andreen@student.chalmers.se                                           *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA          *
19  ***************************************************************************/
20
21 #ifndef __SORTACTION_H__
22 #define __SORTACTION_H__
23
24 #include "shared_ptr.h"
25 #include <string>
26 class GeneOrder;
27
28
29 /**
30  * Abstraction for a sort action implementation, this is the base that other
31  * actions inherits from.
32  */
33 class SortActionImpl{
34         public:
35
36                 virtual ~SortActionImpl(){};
37
38                 /**
39                  * Applies the action on the GeneOrder and returning it.
40                  */
41                 virtual GeneOrder& operator()(GeneOrder& go) const = 0;
42
43                 /**
44                  * Compares sort actions.
45                  */
46                 virtual bool operator==(const SortActionImpl& sa) const = 0;
47                 
48                 /**
49                  * Gives a string representation of the action, for output
50                  */
51                 virtual std::string toString() const = 0;
52 };
53
54 /**
55  * Abstraction of a sort action, all SortActionImpls has to be immutable.
56  *
57  * \author Michael Andreen
58  */
59 class SortAction{
60         public:
61                 typedef shared_ptr<SortActionImpl> ActionPointer;
62
63                 /**
64                  * Creates a new sort action, given a specified action.
65                  * SortAction promises to remove the given action.
66                  */
67                 SortAction(SortActionImpl* sa): _action(sa){
68                 }
69
70                 SortAction(const SortAction& sa): _action(sa._action){
71                 }
72
73                 const SortAction& operator=(const SortAction& sa){
74                         if (this != &sa)
75                                 _action = sa._action;
76                         return *this;
77                 }
78                 
79                 ~SortAction(){};
80
81                 /**
82                  * Applies the action on the GeneOrder and returning it.
83                  */
84                 GeneOrder& operator()(GeneOrder& go) const{
85                         return (*_action)(go);
86                 }
87
88                 /**
89                  * Compares sort actions.
90                  */
91                 bool operator==(const SortAction& sa) const{
92                         return (*_action) == (*sa._action);
93                 }
94
95                 /**
96                  * Compares sort actions.
97                  */
98                 bool operator==(const SortActionImpl& sa) const{
99                         return (*_action) == sa;
100                 }
101                 
102                 /**
103                  * Gives a string representation of the action, for output
104                  */
105                 std::string toString() const{
106                         return _action->toString();
107                 }
108
109                 /**
110                  * Gives access to the implementation
111                  */
112                 const SortActionImpl& impl() const{
113                         return *_action;
114                 }
115         private:
116                 ActionPointer _action;
117
118 };
119
120 #endif
121