mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: optional parameter on regIOobject::release (#1276)
- can additionally relinquish the registered state as well as ownedByRegistry state
This commit is contained in:
committed by
Andrew Heather
parent
ef88919ef5
commit
663b422587
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2018 OpenCFD Ltd.
|
\\ / A nd | Copyright (C) 2018-2019 OpenCFD Ltd.
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
| Copyright (C) 2011-2017 OpenFOAM Foundation
|
| Copyright (C) 2011-2017 OpenFOAM Foundation
|
||||||
@ -133,19 +133,19 @@ public:
|
|||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
//- Construct from IOobject. Optional flag for if IOobject is the
|
//- Construct from IOobject with optional flag if IOobject is the
|
||||||
// top level regIOobject.
|
//- top-level regIOobject.
|
||||||
regIOobject(const IOobject&, const bool isTime = false);
|
regIOobject(const IOobject&, const bool isTime = false);
|
||||||
|
|
||||||
//- Construct as copy
|
//- Copy construct
|
||||||
regIOobject(const regIOobject&);
|
regIOobject(const regIOobject&);
|
||||||
|
|
||||||
//- Construct as copy, transferring registry registration to copy
|
//- Copy construct, transferring registry registration to the copy
|
||||||
// if registerCopy is true
|
//- if registerCopy is true
|
||||||
regIOobject(const regIOobject&, bool registerCopy);
|
regIOobject(const regIOobject&, bool registerCopy);
|
||||||
|
|
||||||
//- Construct as copy with new name, transferring registry registration
|
//- Copy construct with new name, transferring registry registration
|
||||||
// to copy as specified
|
//- to the copy f registerCopy is true
|
||||||
regIOobject(const word& newName, const regIOobject&, bool registerCopy);
|
regIOobject(const word& newName, const regIOobject&, bool registerCopy);
|
||||||
|
|
||||||
//- Construct as copy with new IO parameters
|
//- Construct as copy with new IO parameters
|
||||||
@ -163,7 +163,8 @@ public:
|
|||||||
//- Add object to registry
|
//- Add object to registry
|
||||||
bool checkIn();
|
bool checkIn();
|
||||||
|
|
||||||
//- Remove object from registry
|
//- Remove all file watches and remove object from registry
|
||||||
|
// \return true if object was registered and was removed
|
||||||
bool checkOut();
|
bool checkOut();
|
||||||
|
|
||||||
//- Add file watch on object (if registered and READ_IF_MODIFIED)
|
//- Add file watch on object (if registered and READ_IF_MODIFIED)
|
||||||
@ -191,7 +192,8 @@ public:
|
|||||||
inline static Type& store(autoPtr<Type>&& aptr);
|
inline static Type& store(autoPtr<Type>&& aptr);
|
||||||
|
|
||||||
//- Release ownership of this object from its registry
|
//- Release ownership of this object from its registry
|
||||||
inline void release();
|
// \param unregister optionally set as non-registered
|
||||||
|
inline void release(const bool unregister = false);
|
||||||
|
|
||||||
|
|
||||||
// Dependency checking
|
// Dependency checking
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2018 OpenCFD Ltd.
|
\\ / A nd | Copyright (C) 2018-2019 OpenCFD Ltd.
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
| Copyright (C) 2011-2015 OpenFOAM Foundation
|
| Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||||
@ -69,9 +69,13 @@ inline Type& Foam::regIOobject::store(autoPtr<Type>&& aptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
inline void Foam::regIOobject::release()
|
inline void Foam::regIOobject::release(const bool unregister)
|
||||||
{
|
{
|
||||||
ownedByRegistry_ = false;
|
ownedByRegistry_ = false;
|
||||||
|
if (unregister)
|
||||||
|
{
|
||||||
|
registered_ = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user