lib::Depend<TY> works as drop-in replacement for lib::Singleton<TY> This changeset removes the convoluted special cases like SingletonSub and MockInjector.
108 lines
2.7 KiB
C++
108 lines
2.7 KiB
C++
/*
|
|
DiagnosticBufferProvider - helper for testing against the BufferProvider interface
|
|
|
|
Copyright (C) Lumiera.org
|
|
2011, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program 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 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program 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 this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
|
|
#include "lib/error.hpp"
|
|
#include "lib/meta/function.hpp"
|
|
|
|
#include "proc/engine/diagnostic-buffer-provider.hpp"
|
|
#include "proc/engine/tracking-heap-block-provider.hpp"
|
|
|
|
|
|
namespace proc {
|
|
namespace engine {
|
|
|
|
|
|
/** Storage for the diagnostics frontend */
|
|
lib::Depend<DiagnosticBufferProvider> DiagnosticBufferProvider::diagnostics;
|
|
|
|
|
|
|
|
|
|
DiagnosticBufferProvider::DiagnosticBufferProvider()
|
|
: pImpl_()
|
|
{ }
|
|
|
|
DiagnosticBufferProvider::~DiagnosticBufferProvider() { }
|
|
|
|
|
|
BufferProvider&
|
|
DiagnosticBufferProvider::build()
|
|
{
|
|
return diagnostics().reset();
|
|
}
|
|
|
|
|
|
DiagnosticBufferProvider&
|
|
DiagnosticBufferProvider::access (BufferProvider const& provider)
|
|
{
|
|
if (!diagnostics().isCurrent (provider))
|
|
throw error::Invalid("given Provider doesn't match (current) diagnostic data record."
|
|
"This might be an lifecycle error. Did you build() this instance beforehand?");
|
|
|
|
return diagnostics();
|
|
}
|
|
|
|
|
|
|
|
|
|
TrackingHeapBlockProvider&
|
|
DiagnosticBufferProvider::reset()
|
|
{
|
|
pImpl_.reset(new TrackingHeapBlockProvider());
|
|
return *pImpl_;
|
|
}
|
|
|
|
bool
|
|
DiagnosticBufferProvider::isCurrent (BufferProvider const& implInstance)
|
|
{
|
|
return &implInstance == pImpl_.get();
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* === diagnostic API === */
|
|
|
|
bool
|
|
DiagnosticBufferProvider::buffer_was_used (uint bufferID) const
|
|
{
|
|
return pImpl_->access_emitted(bufferID).was_used();
|
|
}
|
|
|
|
|
|
bool
|
|
DiagnosticBufferProvider::buffer_was_closed (uint bufferID) const
|
|
{
|
|
return pImpl_->access_emitted(bufferID).was_closed();
|
|
}
|
|
|
|
|
|
void*
|
|
DiagnosticBufferProvider::accessMemory (uint bufferID) const
|
|
{
|
|
return pImpl_->access_emitted(bufferID).accessMemory();
|
|
}
|
|
|
|
|
|
}} // namespace engine
|