mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
123 lines
3.6 KiB
C++
123 lines
3.6 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2004-2011 OpenCFD Ltd.
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Class
|
|
Foam::dlLibraryTable
|
|
|
|
Description
|
|
A table of dynamically loaded libraries
|
|
|
|
SourceFiles
|
|
dlLibraryTable.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef dlLibraryTable_H
|
|
#define dlLibraryTable_H
|
|
|
|
#include "label.H"
|
|
#include "Hash.H"
|
|
#include "HashTable.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class dlLibraryTable Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class dlLibraryTable
|
|
:
|
|
public HashTable<fileName, void*, Hash<void*> >
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Disallow default bitwise copy construct
|
|
dlLibraryTable(const dlLibraryTable&);
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const dlLibraryTable&);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct null
|
|
dlLibraryTable();
|
|
|
|
//- Construct from dictionary and name of 'libs' entry giving
|
|
// the libraries to load
|
|
dlLibraryTable(const dictionary&, const word&);
|
|
|
|
|
|
//- Destructor
|
|
~dlLibraryTable();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Open the named library, optionally with warnings if problems occur
|
|
bool open(const fileName& name, const bool verbose = true);
|
|
|
|
//- Close the named library, optionally with warnings if problems occur
|
|
bool close(const fileName& name, const bool verbose = true);
|
|
|
|
//- Find the handle of the named library
|
|
void* findLibrary(const fileName& name);
|
|
|
|
//- Open all the libraries listed in the 'libsEntry' entry in the
|
|
// given dictionary if present
|
|
bool open(const dictionary&, const word& libsEntry);
|
|
|
|
//- Open all the libraries listed in the 'libsEntry' entry in the
|
|
// given dictionary if present and check the additions
|
|
// to the given constructor table
|
|
template<class TablePtr>
|
|
bool open
|
|
(
|
|
const dictionary&,
|
|
const word& libsEntry,
|
|
const TablePtr& tablePtr
|
|
);
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#ifdef NoRepository
|
|
# include "dlLibraryTableTemplates.C"
|
|
#endif
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|