This file is indexed.

/usr/include/cppdb/driver_manager.h is in libcppdb-dev 0.3.1+dfsg-5.

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
///////////////////////////////////////////////////////////////////////////////
//                                                                             
//  Copyright (C) 2010-2011  Artyom Beilis (Tonkikh) <artyomtnk@yahoo.com>     
//                                                                             
//  Distributed under:
//
//                   the Boost Software License, Version 1.0.
//              (See accompanying file LICENSE_1_0.txt or copy at 
//                     http://www.boost.org/LICENSE_1_0.txt)
//
//  or (at your opinion) under:
//
//                               The MIT License
//                 (See accompanying file MIT.txt or a copy at
//              http://www.opensource.org/licenses/mit-license.php)
//
///////////////////////////////////////////////////////////////////////////////
#ifndef CPPDB_DRIVER_MANAGER_H
#define CPPDB_DRIVER_MANAGER_H

#include <cppdb/defs.h>
#include <cppdb/ref_ptr.h>
#include <cppdb/mutex.h>
#include <map>
#include <string>
#include <vector>

namespace cppdb {
	namespace backend {
		class connection;
		class driver;
	}
	class connection_info;	

	///
	/// \brief this class is used to handle all drivers, loading them, unloading them etc.
	///
	/// All its member functions are thread safe
	///
	class CPPDB_API driver_manager {
	public:
		///
		/// Get the singleton instance of the class
		///
		static driver_manager &instance();
		///
		/// Install new driver \a drv named \a name to the manager.
		///
		void install_driver(std::string const &name,ref_ptr<backend::driver> drv);
		///
		/// Unload all drivers that have no more open connections.
		///
		void collect_unused();

		///
		/// Add a path were the driver should search for loadable modules
		///
		void add_search_path(std::string const &);
		///
		/// Clear previously added a paths 
		///
		void clear_search_paths();
		///
		/// Search the library under default directory (i.e. empty path prefix) or not, default is true
		///
		void use_default_search_path(bool v);
		///
		/// Create a new connection object using parsed connection string \a ci
		///
		backend::connection *connect(connection_info const &ci);
		///
		/// Create a new connection object using connection string \a connectoin_string
		///
		backend::connection *connect(std::string const &connectoin_string);

	private:
		driver_manager(driver_manager const &);
		void operator=(driver_manager const &);
		// Borland erros on hidden destructors in classes without only static methods.
		#ifndef __BORLANDC__
		~driver_manager();
		#endif
		driver_manager();
		
		ref_ptr<backend::driver> load_driver(connection_info const &ci);

		typedef std::map<std::string,ref_ptr<backend::driver> > drivers_type;
		std::vector<std::string> search_paths_;
		bool no_default_directory_; 
		drivers_type drivers_;
		mutex lock_;
	};
}

#endif