summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2021-04-14 12:47:14 +0300
committerTor Lillqvist <tml@collabora.com>2021-04-27 09:01:24 +0200
commit5a7903fcb9e22904cf87117015a78e185de04698 (patch)
tree60bf3c5ffea1c31abb776381881d2ecff368f8ea /comphelper
parent24418700059d2b6826f800d265f52061c48c34e5 (diff)
Clarify the ProfileRecording API
Instead of a startRecording(bool) function that is used to also stop recording, have separate startRecording() and stopRecording() functions that do what they say. Change-Id: Ifa9ea0e530d5d38baa52f685fc1dc0029d30d023 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114081 Tested-by: Tor Lillqvist <tml@collabora.com> Reviewed-by: Tor Lillqvist <tml@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114652
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/misc/profilezone.cxx27
1 files changed, 15 insertions, 12 deletions
diff --git a/comphelper/source/misc/profilezone.cxx b/comphelper/source/misc/profilezone.cxx
index f9284b1f4a51..dc945c7f715d 100644
--- a/comphelper/source/misc/profilezone.cxx
+++ b/comphelper/source/misc/profilezone.cxx
@@ -32,17 +32,19 @@ static int g_aNesting; // level of overlapped zones
static long long g_aStartTime; // start time of recording
static ::osl::Mutex g_aMutex;
-void startRecording(bool bStartRecording)
+void startRecording()
{
- if (bStartRecording)
- {
- TimeValue systemTime;
- osl_getSystemTime( &systemTime );
- ::osl::MutexGuard aGuard( g_aMutex );
- g_aStartTime = static_cast<long long>(systemTime.Seconds) * 1000000 + systemTime.Nanosec/1000;
- g_aNesting = 0;
- }
- ProfileZone::g_bRecording = bStartRecording;
+ TimeValue systemTime;
+ osl_getSystemTime( &systemTime );
+ ::osl::MutexGuard aGuard( g_aMutex );
+ g_aStartTime = static_cast<long long>(systemTime.Seconds) * 1000000 + systemTime.Nanosec/1000;
+ g_aNesting = 0;
+ ProfileZone::g_bRecording = true;
+}
+
+void stopRecording()
+{
+ ProfileZone::g_bRecording = false;
}
long long addRecording(const char * aProfileId, long long aCreateTime)
@@ -88,13 +90,14 @@ css::uno::Sequence<OUString> getRecordingAndClear()
{
::osl::MutexGuard aGuard( g_aMutex );
bRecording = ProfileZone::g_bRecording;
- startRecording(false);
+ stopRecording();
aRecording.swap(g_aRecording);
long long aSumTime = g_aSumTime;
aRecording.insert(aRecording.begin(), OUString::number(aSumTime/1000000.0));
}
// reset start time and nesting level
- startRecording(bRecording);
+ if (bRecording)
+ startRecording();
return ::comphelper::containerToSequence(aRecording);
}