This file is indexed.

/usr/include/BALL/FORMAT/genericMolFile.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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_FORMAT_GENERICMOLFILE_H
#define BALL_FORMAT_GENERICMOLFILE_H

#ifndef BALL_FORMAT_LINEBASEDFILE_H
#	include <BALL/FORMAT/lineBasedFile.h>
#endif

namespace BALL 
{
	class Atom;
	class System;
	class Molecule;

	/**	Base class for all molecule file format classes. 
			This class provides an interface for all molecular
			structure formats (except for PDB files, due to their 
			complex and capricious structure and contents). \par
			GenericMolFile supports two type of operations: 
			reading/writing single molecules and reading/writing 
			systems (i.e. collections of molecules). \par
			When reading molecules, the structures are read one at
			a time from the file in the order they are stored.
			In contrast, reading systems retrieves all structures
			contained in the file. For file formats that do not support
			multiple structure in a file (e.g. the MDL  \link MOLFile MOLFile \endlink ),
			those two operations are basically equivalent.
			A fundamental difference however is the fact that
			reading a molecule <b>  create </b> a new molecule, whereas
			reading a system adds the molecules read to an
			existing instance of  \link System System \endlink . This implies that
			the system has to be cleared prior to reading a system
			if that incremental behaviour is not desired. \par
			The user interface of the class is mainly provided through
			the stream operator. A typical example for reading a structure 
			from a HyperChem file might look as follows: \par
			\begin{verbatim}
				HINFile hinfile(filename);
				System S;
				hinfile >> S;
			\end{verbatim}
			This interface applies to all derived classes as well, so that
			file formats can be exchanged conveniently. \par
			GenericMolFile is derived from  \link LineBasedFile LineBasedFile \endlink  since most
			molecular structure formats are line-based tagged formats,
			often containing Fortran-style formatted sections. 
			 \link LineBasedFile LineBasedFile \endlink  provides a number of convenient methods
			to parse that kind of format.
			 \par
			
    	\ingroup  StructureFormats
	*/
	class BALL_EXPORT GenericMolFile
		: public LineBasedFile
	{
		public:

		/**	@name	Constructors and Destructors
		*/
		//@{

		/**	Default constructor
		*/
		GenericMolFile();

		/** Detailed constructor
		 *  @throw Exception::FileNotFound if the file could not be opened
		 */
		GenericMolFile(const String& filename, File::OpenMode open_mode = std::ios::in);

		/** Destructor
		*/
		virtual ~GenericMolFile();
		
		virtual void close();

		//@}
		/**	@name Assignment
		*/
		//@{
	
		/**	Assignment operator.
		 *	Create a new object pointing to the same filename.
		 *  @throw Exception::FileNotFound if the file could not be opened
		 */
		const GenericMolFile& operator = (const GenericMolFile& rhs);

		/** Define the input file to be a temporary file (e.g. an unzipped file).
		In this case, the input file will be deleted when this GenericMolFile is closed. */
		void defineInputAsTemporary(bool b = true);

		/** Enable compression of the output file.
		If enabled, the output-file will be gzip'ed. Output will be stored under the specified filename and the original (uncompressed) output file will be deleted. */
		void enableOutputCompression(String zipped_filename);

		bool isCompressedFile();

		//@}
		/**	@name Reading and Writing of Kernel Datastructures
		*/
		//@{

		/**	Write the molecules of a system.
		 *	If the file format does not support multiple 
		 *	molecules in a single file, a warning should be printed
		 *	and only the first molecule should be stored. \par
		 *	The default implementation iterates over
		 *	the system and calls  \link write(const Molecule& molecule) write(const Molecule& molecule) \endlink  
		 *	for each molecule. 
		 *  @throw File::CannotWrite if writing to the file failed
		 */
		virtual bool write(const System& system);
		
		/**	Write a molecule.
		 *	Repeated invocations of this method append
		 *	molecules to the same file. \par
		 *	The default implementation does nothing.
		 *  @throw File::CannotWrite if writing to the file failed
		 */
		virtual bool write(const Molecule& molecule);
		
		/**	Read a system.
		 *	This method will read all molecules contained in the file
		 *	and add them to the system. \par
		 *	The default implementation calls  \link read() read() \endlink 
		 *	until <b>false</b> is returned and adds the molecules read to 
		 *	the system.
		 *	@return true if anything could be read
		 *	@throw Exception::ParseError if the file could not be parsed while reading a molecule
		 */
		virtual bool read(System&	system);

		/**	Read a molecule.
		 *	This method will load the 
		 *	first (or the next, on subsequent invocation) molecule
		 *	from the file. If the file format does not support 
		 *	multiple molecules, only the first call to  \link read read \endlink 
		 *	will be successful. This method will create an instance of molecule
		 *	and its the user's responsibility to destroy that molecule.
		 *	@return a pointer to a molecule, <b>0</b> if the file was not open, empty, or at its end
		 *	@throw Exception::ParseError if the contents of the file could not be parsed
		 */
		virtual Molecule* read();

		//@}
		/**	@name Operators
		*/
		//@{
	
		/** Stream operator for reading a system.
		 *	Calls  \link read(System&) read(System&) \endlink .
		 *  @throw Exception::ParseError if a syntax error was encountered
		 */
		virtual GenericMolFile& operator >> (System& system);
		
		/**	Stream operator for writing a system of molecules.
		 *	Calls  \link write(const System& system) const write(const System& system) const \endlink .
		 *  @throw File::CannotWrite if writing to the file failed
		 */
		virtual GenericMolFile& operator << (const System& system);

		/** Stream operator for reading a molecule.
		 *	Calls  \link read() read() \endlink 
		 *  @throw Exception::ParseError if a syntax error was encountered
		 */
		virtual GenericMolFile& operator >> (Molecule& molecule);
		
		/**	Stream operator for writing a system of molecules.
		 *	Calls  \link write() write() \endlink 
		 *  @throw File::CannotWrite if writing to the file failed
		 */
		virtual GenericMolFile& operator << (const Molecule& molecule);
		//@}
		
		protected:
		/**	Initialize internals for read.
				This method is called by the default implementation 
				of  \link read(System& system) read(System& system) \endlink . Its purpose is the 
				initialization of internal members holding, for example,
				header information from the file.
				The default implementation provided is empty.
		*/
		virtual void initRead_();
			
		/**	Initialize internals for write.
				Same functionality as  \link initRead initRead \endlink , but is called 
				prior to writing a system.
		*/
		virtual void initWrite_();

		bool input_is_temporary_;
		bool compress_output_;
		bool gmf_is_closed_;
		String zipped_filename_;
		
	};
} // namespace BALL

#endif // BALL_FORMAT_GENERICMOLFILE_H