00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd. 00006 \\/ M anipulation | 00007 ------------------------------------------------------------------------------- 00008 License 00009 This file is part of OpenFOAM. 00010 00011 OpenFOAM is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU General Public License as published by 00013 the Free Software Foundation, either version 3 of the License, or 00014 (at your option) any later version. 00015 00016 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00019 for more details. 00020 00021 You should have received a copy of the GNU General Public License 00022 along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>. 00023 00024 Class 00025 Foam::dlLibraryTable 00026 00027 Description 00028 A table of dynamically loaded libraries 00029 00030 SourceFiles 00031 dlLibraryTable.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef dlLibraryTable_H 00036 #define dlLibraryTable_H 00037 00038 #include <OpenFOAM/label.H> 00039 #include <OpenFOAM/Hash.H> 00040 #include <OpenFOAM/HashTable.H> 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class dlLibraryTable Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class dlLibraryTable 00052 : 00053 public HashTable<fileName, void*, Hash<void*> > 00054 { 00055 // Private Member Functions 00056 00057 //- Disallow default bitwise copy construct 00058 dlLibraryTable(const dlLibraryTable&); 00059 00060 //- Disallow default bitwise assignment 00061 void operator=(const dlLibraryTable&); 00062 00063 00064 public: 00065 00066 // Static data members 00067 00068 //- Static data someStaticData 00069 static dlLibraryTable loadedLibraries; 00070 00071 00072 // Public classes 00073 00074 //- Class whose construction causes the reading of dynamic libraries 00075 class readDlLibrary 00076 { 00077 public: 00078 00079 //- Read all the libraries listed in the 'libsEntry' entry in the 00080 // given dictionary if present 00081 readDlLibrary(const dictionary&, const word& libsEntry); 00082 }; 00083 00084 00085 // Constructors 00086 00087 //- Construct null 00088 dlLibraryTable(); 00089 00090 00091 // Destructor 00092 00093 ~dlLibraryTable(); 00094 00095 00096 // Member Functions 00097 00098 //- Open the named library 00099 static bool open(const fileName& name); 00100 00101 //- Open all the libraries listed in the 'libsEntry' entry in the 00102 // given dictionary if present 00103 static bool open(const dictionary&, const word& libsEntry); 00104 00105 //- Open all the libraries listed in the 'libsEntry' entry in the 00106 // given dictionary if present and check the additions 00107 // to the give constructor table 00108 template<class TablePtr> 00109 static bool open 00110 ( 00111 const dictionary&, 00112 const word& libsEntry, 00113 const TablePtr& tablePtr 00114 ); 00115 }; 00116 00117 00118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00119 00120 } // End namespace Foam 00121 00122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00123 00124 #ifdef NoRepository 00125 # include "dlLibraryTableTemplates.C" 00126 #endif 00127 00128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00129 00130 #endif 00131 00132 // ************************ vim: set sw=4 sts=4 et: ************************ //