office-gobmx/canvas/inc/canvas/elapsedtime.hxx
Bjoern Michaelsen 941020379b Merge branch 'master' into feature/gnumake4
Conflicts:
	basebmp/prj/d.lst
	basebmp/test/basictest.cxx
	basebmp/test/makefile.mk
	basegfx/inc/basegfx/basegfxdllapi.h
	basegfx/inc/basegfx/tools/debugplotter.hxx
	basegfx/inc/basegfx/tuple/b2ituple.hxx
	basegfx/prj/d.lst
	basegfx/source/numeric/makefile.mk
	basegfx/source/polygon/makefile.mk
	basegfx/source/range/makefile.mk
	basegfx/source/raster/makefile.mk
	basegfx/source/tuple/makefile.mk
	basegfx/source/vector/makefile.mk
	basegfx/test/basegfx1d.cxx
	basegfx/test/makefile.mk
	basegfx/util/makefile.mk
	canvas/Library_canvasfactory.mk
	canvas/Module_canvas.mk
	canvas/prj/build.lst
	canvas/prj/d.lst
	canvas/source/cairo/cairo_canvashelper_texturefill.cxx
	canvas/source/cairo/makefile.mk
	canvas/source/tools/makefile.mk
	comphelper/qa/string/makefile.mk
	cppcanvas/Module_cppcanvas.mk
	cppcanvas/inc/cppcanvas/cppcanvasdllapi.h
	cppcanvas/prj/build.lst
	cppcanvas/prj/d.lst
	cppcanvas/source/mtfrenderer/makefile.mk
	cppcanvas/util/makefile.mk
	i18npool/source/search/makefile.mk
	regexp/Library_regexp.mk
	regexp/prj/d.lst
	sax/CppunitTest_sax.mk
	sax/Library_sax.mk
	sax/prj/d.lst
	sax/qa/cppunit/test_converter.cxx
	sax/source/expatwrap/attrlistimpl.hxx
	sax/util/makefile.mk
	svtools/Library_svt.mk
	tools/Executable_sspretty.mk
	ucbhelper/prj/d.lst
	ucbhelper/source/provider/configureucb.cxx
	ucbhelper/source/provider/provconf.cxx
	ucbhelper/util/makefile.mk
	unotools/Library_utl.mk
	unotools/Module_unotools.mk
	unotools/Package_inc.mk
	unotools/prj/build.lst
	vcl/Library_desktop_detector.mk
	vcl/Library_vcl.mk
	vcl/Library_vclplug_gtk.mk
	vcl/aqua/source/gdi/salprn.cxx
	vcl/inc/aqua/saldata.hxx
	vcl/unx/generic/gdi/salgdi3.cxx
2011-06-19 12:47:44 +02:00

186 lines
7.1 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org 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 Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef INCLUDED_CANVAS_ELAPSEDTIME_HXX
#define INCLUDED_CANVAS_ELAPSEDTIME_HXX
#include <sal/types.h>
#include "boost/shared_ptr.hpp"
#include <canvas/canvastoolsdllapi.h>
namespace canvas
{
namespace tools
{
/** Calculate elapsed time.
This class provides several time-measurement and
-management functions. In its simplest use-case, it
measures the time from its creation.
*/
class CANVASTOOLS_DLLPUBLIC ElapsedTime
{
public:
/** Create a new ElapsedTime object
The moment of construction starts the time
measurement. That means, a subsequent getElapsedTime()
call will return the time difference between object
creation and getElapsedTime() call.
*/
ElapsedTime();
/** Creates a new ElapsedTime object based on another
timer.
The moment of construction starts the time
measurement. That means, a subsequent getElapsedTime()
call will return the time difference between object
creation and getElapsedTime() call. All time values
are not taken from the system's time base, but from
the provided timer.
*/
ElapsedTime( ::boost::shared_ptr<ElapsedTime> const & pTimeBase );
/** Gets this timer's base timer.
*/
::boost::shared_ptr<ElapsedTime> const & getTimeBase() const;
/** Reset the time
The instance of the reset() call starts the time
measurement from scratch. That means, a subsequent
getElapsedTime() call will return the time difference
between reset() and getElapsedTime() call.
*/
void reset();
/** Query the elapsed time
This method returns the elapsed time in seconds
between either the construction of this object, or the
last reset() call, if any (but see the time modulation
methods below, for means to modify the otherwise
continuous flow of time).
@return the elapsed time in seconds.
*/
double getElapsedTime() const;
/** Pauses the running timer.
This method stops the time, as returned by this
object, until continueTimer() is called. During this
period, getElapsedTime() will always return the same
time value (i.e. the instant when pauseTimer() was
called).
*/
void pauseTimer();
/** Continues the paused timer.
This method re-enables the time flow, that is, time
starts running again for clients calling
getElapsedTime(). The (subtle) difference to the
holdTimer/releaseTimer() methods below is, that there
is no perceived time 'jump' between the pauseTimer()
call and the continueTimer() call, i.e. the time
starts over with the same value it has stopped on
pauseTimer().
*/
void continueTimer();
/** Adjusts the timer, hold and pause times.
This method modifies the time as returned by this
object by the specified amount. This affects the time
as returned by getElapsedTime(), regardless of the
mode (e.g. paused, or on hold).
@param fOffset
This value will be added to the current time, i.e. the
next call to getElapsedTime() (when performed
immediately) will be adjusted by fOffset.
@param bLimitToLastQueriedTime
Limits the given offset to the time that has been
taken via getElapsedTime()
*/
void adjustTimer( double fOffset,
bool bLimitToLastQueriedTime = true );
/** Holds the current time.
This call makes the timer hold the current time
(e.g. getElapsedTime() will return the time when
holdTimer() was called), while the underlying time is
running on. When releaseTimer() is called, the time
will 'jump' to the then-current, underlying time. This
is equivalent to pressing the "interim time" button on
a stop watch, which shows this stopped time, while the
clock keeps running internally.
*/
void holdTimer();
/** Releases a held timer.
After this call, the timer again returns the running
time on getElapsedTime().
*/
void releaseTimer();
private:
static double getSystemTime();
double getCurrentTime() const;
double getElapsedTimeImpl() const; // does not set m_fLastQueriedTime
const ::boost::shared_ptr<ElapsedTime> m_pTimeBase;
/// To validate adjustTimer() calls with bLimitToLastQueriedTime=true
mutable double m_fLastQueriedTime;
/// Start time, from which the difference to the time base is returned
double m_fStartTime;
/// Instant, when last pause or hold started, relative to m_fStartTime
double m_fFrozenTime;
/// True, when in pause mode
bool m_bInPauseMode;
/// True, when in hold mode
bool m_bInHoldMode;
};
}
}
#endif /* INCLUDED_CANVAS_ELAPSEDTIME_HXX */
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */