Skip to content
Snippets Groups Projects
dlLibraryTable.C 4.72 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*---------------------------------------------------------------------------*\
      =========                 |
      \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
       \\    /   O peration     |
    
        \\  /    A nd           | Copyright (C) 2011-2016 OpenFOAM Foundation
    
         \\/     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/>.
    
    
    \*---------------------------------------------------------------------------*/
    
    #include "dlLibraryTable.H"
    
    #include "OSspecific.H"
    
    #include "int.H"
    
    
    // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
    
    
        defineTypeNameAndDebug(dlLibraryTable, 0);
    
    
    // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
    
    Foam::dlLibraryTable::dlLibraryTable()
    {}
    
    
    
    Foam::dlLibraryTable::dlLibraryTable
    
    (
        const dictionary& dict,
        const word& libsEntry
    )
    {
        open(dict, libsEntry);
    }
    
    
    // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
    
    Foam::dlLibraryTable::~dlLibraryTable()
    {
    
                    InfoInFunction
                        << "Closing " << libNames_[i]
    
                        << " with handle " << uintptr_t(libPtrs_[i]) << endl;
    
        }
    }
    
    
    // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
    
    
    bool Foam::dlLibraryTable::open
    (
        const fileName& functionLibName,
        const bool verbose
    )
    
    {
        if (functionLibName.size())
        {
    
            void* functionLibPtr = dlOpen
            (
                fileName(functionLibName).expand(),
                verbose
            );
    
                InfoInFunction
                    << "Opened " << functionLibName
    
                    << " resulting in handle " << uintptr_t(functionLibPtr) << endl;
    
            if (!functionLibPtr)
            {
    
                    WarningInFunction
                        << "could not load " << functionLibName
    
                libPtrs_.append(functionLibPtr);
                libNames_.append(functionLibName);
                return true;
    
    bool Foam::dlLibraryTable::close
    (
        const fileName& functionLibName,
        const bool verbose
    )
    
        label index = -1;
        forAllReverse(libNames_, i)
        {
            if (libNames_[i] == functionLibName)
            {
                index = i;
                break;
            }
        }
    
        if (index != -1)
    
                InfoInFunction
                    << "Closing " << functionLibName
    
                    << " with handle " << uintptr_t(libPtrs_[index]) << endl;
    
            bool ok = dlClose(libPtrs_[index]);
    
    
            libPtrs_[index] = nullptr;
    
            libNames_[index] = fileName::null;
    
                    WarningInFunction
                        << "could not close " << functionLibName
    
    
                return false;
            }
    
            return true;
        }
        return false;
    }
    
    
    void* Foam::dlLibraryTable::findLibrary(const fileName& functionLibName)
    {
    
        label index = -1;
        forAllReverse(libNames_, i)
    
            if (libNames_[i] == functionLibName)
    
    bool Foam::dlLibraryTable::open
    (
        const dictionary& dict,
        const word& libsEntry
    )
    {
        if (dict.found(libsEntry))
        {
            fileNameList libNames(dict.lookup(libsEntry));
    
    
            bool allOpened = !libNames.empty();
    
    
            forAll(libNames, i)
            {
                allOpened = dlLibraryTable::open(libNames[i]) && allOpened;
            }
    
            return allOpened;
        }
        else
        {
            return false;
        }
    }
    
    
    // ************************************************************************* //