This file is indexed.

/usr/include/BALL/PYTHON/pyInterpreter.h is in libball1.4-dev 1.4.1+20111206-3.

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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
// $Id: pyInterpreter.h,v 1.15.18.1 2007/03/25 21:25:21 oliver Exp $ 
//

#ifndef BALL_PYTHON_PYINTERPRETER_H
#define BALL_PYTHON_PYINTERPRETER_H

#ifndef BALL_COMMON_H
#	include <BALL/common.h>
#endif

#ifndef BALL_DATAYPE_STRING_H
#	include <BALL/DATATYPE/string.h>
#endif

#ifndef BALL_SYSTEM_PATH_H
# include <BALL/SYSTEM/path.h>
#endif

#include <vector>

namespace BALL 
{
	/** Embedded Python interpreter.
			There's just one global instance of the interpreter,
			so all methods are static. The use of subinterpreters
			is not yet supported.
			\ingroup PythonExtensions
	*/
	class BALL_EXPORT PyInterpreter
	{
		private:
		// We don't want anybody to instantiate this!
		PyInterpreter();
		~PyInterpreter() {}
		
		public:
		/**	@name Type definitions */
		//@{
		/// Used to encode the individual paths appended to sys.path for dynamic loading of modules.
		typedef std::vector<String> PathStrings;
		//@}

		/**	@name Initialization */
		//@{

		/**	Initialize the interpreter.
				Initialize the interpreter (by calling <tt>Py_Initialize</tt>) and 
				load the modules <tt>sys</tt>, <tt>site</tt>, and <tt>BALL</tt>.
				A second call to <tt>initialize</tt> may be used to restart the intepreter.
				Upon start, the paths defined by \link setSysPath \endlink are added to sys.path.
				If your interpreter cannot load specific modules, add the location of your
				modules here.
		*/
		static void initialize();

		/**	Stop the interpreter.
				Deallocate all memory occupied by the interpreter
				(by calling <tt>PY_Finalize</tt>.
		*/
		static void finalize();

		/**	Determine the interpreter state.
				@return true if the interpreter is correctly initialized
		*/
		static bool isInitialized();

		///	Append additional search paths to sys.path upon initialization
		static void setSysPath(const PathStrings& path_strings);

		/// Get the current paths added to sys.path
		static const PathStrings& getSysPath();

		///
		static bool isValid() { return valid_;}
		
		///
		static String getStartupLog() { return start_log_;}
		
		//@}


		/**	@name Execution */
		//@{
		/**	Execute a string.
				@param s the string to run (may contain multiple lines with correct indentation)
				@param result bool reference which contains the result after call of function
				@return the output of the interpreter (may also contain error messages)
		*/
		static String run(const String& s, bool& result);

		/**	Run a Python program from a file.
				@param file_name the name of the program file
		*/
		static String runFile(const String& filename)
			throw(Exception::FileNotFound);
			
		/**	Import a module.	
				The module with name <tt>module_name</tt> is imported
				using <tt>PyImport_ImportModule</tt> and initialized.
				When called 
				@return true if the modules was found an initialized correctly
		*/
		static bool importModule(const String& module_name);
		//@}
		protected:
		static PathStrings sys_path_;
		static bool   valid_;
		static String start_log_;
	};
   
} // namespace BALL

#endif // BALL_PYTHON_PYINTERPRETER_H