This file is indexed.

/usr/include/BALL/STRUCTURE/smartsMatcher.h is in libball1.4-dev 1.4.3~beta1-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_STRUCTURE_SMARTSMATCHER_H
#define BALL_STRUCTURE_SMARTSMATCHER_H

#ifndef BALL_STRUCTURE_SMARTSPARSER_H
# include <BALL/STRUCTURE/smartsParser.h>
#endif

#include <vector>
#include <set>
#include <map>

#include <boost/shared_ptr.hpp>

namespace BALL 
{
	// forward declaration
	class Molecule;

	/** @name	\brief SMARTS Matcher
	 
			This class implements a SMARTS matcher. Given a molecule and
			a SMARTS-string the matcher matches the string to the molecule
			and reports a vector of atom sets as a result. 

			To speedup the matching some other modes are possible. The search 
			of the matching procedure can be reduced to a set of start atoms, 
			which are used to start the matchings.

			Also if available and if needed by the SMARTS pattern, the SSSR
			can be set. The SSSR is the smallest set of smallest rings and
			are needed if the SMARTS pattern contains rings specific parts.
			The calculation of the SSSR is time-consuming and would be done 
			automatically by the smarts matcher. However, if the SSSR of the 
			molecule is already available, it can be set using the SSSR method.
			Warning, the SSSR should always be up-to-date, i.e. the SSSR of the 
			current molecule, otherwise the matcher might report wrong results.

			\ingroup StructureMatching
	*/
	class BALL_EXPORT SmartsMatcher
	{
		public: 

			/** @name Typedefs
			*/
			//@{
			typedef std::vector<std::set<const Atom*> > Match;
			//@}


			/**	@name Constructors and Destructors
			*/
			//@{
			/// default constructor
			SmartsMatcher();

			/// destructor
			virtual ~SmartsMatcher();
			//@}


			/** @name Accessors
			*/
			//@{
			/// method to match a Smarts pattern given as a string to given molecule
			void match(Match& matches, Molecule& mol, const String& smarts);

			/// method to match a Smarts pattern given as a string to given molecule. The atoms which will be used for starting matching are given in atoms
			void match(Match& matches, Molecule& mol, const String& smarts, const std::set<const Atom*>& start_atoms);

			/// method to match several Smarts patterns given as a vector of strings
			void match(std::vector<Match>& matches, Molecule& mol, const std::vector<String>& smarts);

			/// method to match several Smarts patterns given as a vector of string. The atoms used for start matchings are given in start_atoms
			void match(std::vector<Match>& matches, Molecule& mol, const std::vector<String>& smarts, const std::set<const Atom*>& start_atoms);

			/// sets an SSSR which is used instead of doing an ring perception
			void setSSSR(const std::vector<std::vector<Atom*> >& sssr);

			/// this function is used to cause the matcher to do an ring perception if needed (do not use the set SSSR any more)
			void unsetSSSR();
			//@}


		private:
			
			/// copy constructor
			SmartsMatcher(const SmartsMatcher& matcher);

			/** @name Operators
			*/
			//@{
			/// assignment operator
			SmartsMatcher& operator = (const SmartsMatcher& matcher);
			//@}


		protected:

			/** @name Typedefs
			*/
			//@{
			typedef SmartsParser::SPNode SPNode;
			typedef SmartsParser::SPEdge SPEdge;
			typedef SmartsParser::SPAtom SPAtom;
			typedef SmartsParser::SPBond SPBond;
			//@}

			/// core structure of the recursive matching algorithm for the object pool
			class RecStructCore_
			{
				public:
					
					/// default constructor
					RecStructCore_();

					/// copy constructor
					RecStructCore_(const RecStructCore_&);

					/// destructor
					virtual ~RecStructCore_();

					/// assignment operator 
					RecStructCore_& operator = (const RecStructCore_&);

					/// method that deletes all content from the containers
					void clear();
			
					/// container which contains a vector of matched atoms from different matches
					std::vector<std::set<const Atom*> > matched_atoms;

					/// container which contains a vector of mappings from different matches 
					std::vector<std::map<const SPNode*, const Atom*> > mapped_atoms;

					/// contains vector of visited atoms of different matches
					std::vector<std::set<const Atom*> > visited_atoms;

					/// contains vector of visited bonds of different matches
					std::vector<std::set<const Bond*> > visited_bonds;

					/// contains vector of visited edges of the Smarts tree of different matches
					std::vector<std::set<const SPEdge*> > visited_edges;

					/// contains the first matched atoms of different matches (needed for recursive Smarts)
					std::vector<std::pair<const SPNode*, const Atom*> > first_matches;
			};

			/// class which does the pool operations of the RecStructCore_ pool
			class RecStructPool_
			{
				public:
					
					/// default constructors
					RecStructPool_();

					/// destructor
					virtual ~RecStructPool_();

					/// returns the a free RecStructCore_ of the pool (creates new ones if needed)
					RecStructCore_* getNextFree();

					/// returns the position of the last RecStructCore_* from getNextFree()
					Position getLastPosition();

					/// frees the structure at position pos
					void destroy(Position pos);

				private:

					/// does the resize operation of the pool (creates new ones, but never release them!)
					void resize_();

					/// copy constructor (declared private as it does not make sense to use it)
					RecStructPool_(const RecStructPool_&);

					/// assignment operator (declared private as it does not make sense to use it)
					RecStructPool_& operator = (const RecStructPool_&);
	
					/// the pool of the RecStructCore_ structures
					std::vector<RecStructCore_*> rec_struct_pool_;

					/// the list of the free to use structures, represented as positions in the rec_struct_pool_ vector
					std::vector<Position> free_list_;

					/// the last position of returned structure from getNextFree()
					Position last_position_;
			};


			/// a wrapper class which is used as an interface in the matching code to the pool
			class RecStruct_
			{
				private:
					/// the underlaying core structure which contains the Containers used in this class
					RecStructCore_* rec_struct_core_;
			
				public:
					
					/// default constructor
					RecStruct_();

					/// copy constructor
					RecStruct_(const RecStruct_& rec_struct);

					/// destructor
					virtual ~RecStruct_();

					/// assignment operator 
					RecStruct_& operator = (const RecStruct_&); 

					/// reference to the matched atoms in the core structure
					std::vector<std::set<const Atom*> >& matched_atoms;

					/// reference to the mapped SPNodes to Atoms in the core structure
					std::vector<std::map<const SPNode*, const Atom*> >& mapped_atoms;

					/// reference to the visited atoms in the core structure
					std::vector<std::set<const Atom*> >& visited_atoms;

					/// reference to the visited bonds in the core structure
					std::vector<std::set<const Bond*> >& visited_bonds;

					/// reference to the visited edges in the core structure
					std::vector<std::set<const SPEdge*> >& visited_edges;

					/// reference to the first matches in the core structure
					std::vector<std::pair<const SPNode*, const Atom*> >& first_matches;

					/// adds the content of the given struct
					void add(const RecStruct_& rec_struct);

					/// adds the the ith part of the content of the given struct
					void add(const RecStruct_& rec_struct, Size i);

					/// deletes all contents
					void clear();

					/// dumps the contents (for debugging)
					void dump(const String& name, Size depth_ = 0);

				private:
				
					/// position of the RecStructCore_ in the Pool, used for destroy() method 
					Position pos_;
			};

			/// the pool of rec struct objects
			static boost::shared_ptr<RecStructPool_> pool_;

			/// method for evaluation of ring edges, after the the smarts tree is matched to molcule
			bool evaluateRingEdges_(const std::set<const Atom*>& matching, const std::map<const SPNode*, const Atom*>& mapping, const String& smarts);
			
			/// method for the evaluation of a pseudo-tree
			void evaluate_(	RecStruct_& rs, SPNode* start_node, const Atom* start_atom);
	
			/// method for evaluating a node of a pseudo-tree
			bool evaluate_node_(RecStruct_& rs, SPNode* start_node, const Atom* start_atom);
	
			/// method for evaluating a edge of a pseudo-tree 
			bool evaluate_edge_(RecStruct_& rs, SPEdge* start_node, const Atom* start_atom, const Bond* start_bond);

			/// matches from the recurive part
			std::map<SPNode*, std::vector<std::set<const Atom*> > > rec_matches_;

			/// user SSSR set?
			bool has_user_sssr_;

			/// user sssr
			std::vector<std::vector<Atom*> > sssr_;

			// debug output depth
			Size depth_;
	};
  
} // namespace BALL

#endif // BALL_STRUCTURE_SMARTSMATCHER_H