Add lvxl
[oota-llvm.git] / include / llvm / System / DynamicLibrary.h
1 //===-- llvm/System/DynamicLibrary.h - Portable Dynamic Library -*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Reid Spencer and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the sys::DynamicLibrary class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_SYSTEM_DYNAMIC_LIBRARY_H
15 #define LLVM_SYSTEM_DYNAMIC_LIBRARY_H
16
17 #include "llvm/System/Path.h"
18 #include <string>
19
20 namespace llvm {
21 namespace sys {
22
23   /// This class provides a portable interface to dynamic libraries which also
24   /// might be known as shared libraries, shared objects, dynamic shared
25   /// objects, or dynamic link libraries. Regardless of the terminology or the
26   /// operating system interface, this class provides a portable interface that
27   /// allows dynamic libraries to be loaded and and searched for externally
28   /// defined symbols. This is typically used to provide "plug-in" support.
29   /// It also allows for symbols to be defined which don't live in any library,
30   /// but rather the main program itself, useful on Windows where the main
31   /// executable cannot be searched.
32   /// @since 1.4
33   /// @brief Portable dynamic library abstraction.
34   class DynamicLibrary {
35     /// @name Constructors
36     /// @{
37     public:
38       /// Construct a DynamicLibrary that represents the currently executing
39       /// program. The program must have been linked with -export-dynamic or
40       /// -dlopen self for this to work. Any symbols retrieved with the
41       /// GetAddressOfSymbol function will refer to the program not to any
42       /// library.
43       /// @throws std::string indicating why the program couldn't be opened.
44       /// @brief Open program as dynamic library.
45       DynamicLibrary();
46
47       /// This is the constructor for DynamicLibrary instances. It will open
48       /// the dynamic library specified by the \filename Path.
49       /// @throws std::string indicating why the library couldn't be opened.
50       /// @brief Open a dynamic library.
51       DynamicLibrary(const char* filename);
52
53       /// After destruction, the symbols of the library will no longer be
54       /// available to the program. It is important to make sure the lifespan
55       /// of a DynamicLibrary exceeds the lifetime of the pointers returned
56       /// by the GetAddressOfSymbol otherwise the program may walk off into
57       /// uncharted territory.
58       /// @see GetAddressOfSymbol.
59       /// @brief Closes the DynamicLibrary
60       ~DynamicLibrary();
61
62     /// @}
63     /// @name Functions
64     /// @{
65     public:
66       /// This function allows a library to be loaded without instantiating a
67       /// DynamicLibrary object. Consequently, it is marked as being permanent
68       /// and will only be unloaded when the program terminates.
69       /// @throws std::string on error.
70       /// @brief Open a dynamic library permanently.
71       static void LoadLibraryPermanently(const char* filename);
72
73       /// This function will search through all previously loaded dynamic
74       /// libraries for the symbol \p symbolName. If it is found, the addressof
75       /// that symbol is returned. If not, null is returned. Note that this will
76       /// search permanently loaded libraries (LoadLibraryPermanently) as well
77       /// as ephemerally loaded libraries (constructors).
78       /// @throws std::string on error.
79       /// @brief Search through libraries for address of a symbol
80       static void* SearchForAddressOfSymbol(const char* symbolName);
81
82       /// @brief Convenience function for C++ophiles.
83       static void* SearchForAddressOfSymbol(const std::string& symbolName) {
84         return SearchForAddressOfSymbol(symbolName.c_str());
85       }
86
87       /// This functions permanently adds the symbol \p symbolName with the
88       /// value \p symbolValue.  These symbols are searched before any
89       /// libraries.
90       /// @brief Add searchable symbol/value pair.
91       static void AddSymbol(const char* symbolName, void *symbolValue);
92
93       /// @brief Convenience function for C++ophiles.
94       static void AddSymbol(const std::string& symbolName, void *symbolValue) {
95         AddSymbol(symbolName.c_str(), symbolValue);
96       }
97
98     /// @}
99     /// @name Accessors
100     /// @{
101     public:
102       /// Looks up a \p symbolName in the DynamicLibrary and returns its address
103       /// if it exists. If the symbol does not exist, returns (void*)0.
104       /// @returns the address of the symbol or 0.
105       /// @brief Get the address of a symbol in the DynamicLibrary.
106       void* GetAddressOfSymbol(const char* symbolName);
107
108       /// @brief Convenience function for C++ophiles.
109       void* GetAddressOfSymbol(const std::string& symbolName) {
110         return GetAddressOfSymbol(symbolName.c_str());
111       }
112
113     /// @}
114     /// @name Implementation
115     /// @{
116     protected:
117       void* handle;  // Opaque handle for information about the library
118
119       DynamicLibrary(const DynamicLibrary&); ///< Do not implement
120       DynamicLibrary& operator=(const DynamicLibrary&); ///< Do not implement
121     /// @}
122   };
123
124 } // End sys namespace
125 } // End llvm namespace
126
127 #endif // LLVM_SYSTEM_DYNAMIC_LIBRARY_H