summaryrefslogtreecommitdiffstats
path: root/gfx/2d/DrawEventRecorder.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /gfx/2d/DrawEventRecorder.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'gfx/2d/DrawEventRecorder.cpp')
-rw-r--r--gfx/2d/DrawEventRecorder.cpp117
1 files changed, 117 insertions, 0 deletions
diff --git a/gfx/2d/DrawEventRecorder.cpp b/gfx/2d/DrawEventRecorder.cpp
new file mode 100644
index 000000000..0e20b8b5a
--- /dev/null
+++ b/gfx/2d/DrawEventRecorder.cpp
@@ -0,0 +1,117 @@
+/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "DrawEventRecorder.h"
+#include "PathRecording.h"
+#include "RecordingTypes.h"
+
+namespace mozilla {
+namespace gfx {
+
+using namespace std;
+
+DrawEventRecorderPrivate::DrawEventRecorderPrivate(std::ostream *aStream)
+ : mOutputStream(aStream)
+{
+}
+
+void
+DrawEventRecorderPrivate::WriteHeader()
+{
+ WriteElement(*mOutputStream, kMagicInt);
+ WriteElement(*mOutputStream, kMajorRevision);
+ WriteElement(*mOutputStream, kMinorRevision);
+}
+
+void
+DrawEventRecorderPrivate::RecordEvent(const RecordedEvent &aEvent)
+{
+ WriteElement(*mOutputStream, aEvent.mType);
+
+ aEvent.RecordToStream(*mOutputStream);
+
+ Flush();
+}
+
+DrawEventRecorderFile::DrawEventRecorderFile(const char *aFilename)
+ : DrawEventRecorderPrivate(nullptr)
+ , mOutputFile(aFilename, ofstream::binary)
+{
+ mOutputStream = &mOutputFile;
+
+ WriteHeader();
+}
+
+DrawEventRecorderFile::~DrawEventRecorderFile()
+{
+ mOutputFile.close();
+}
+
+void
+DrawEventRecorderFile::Flush()
+{
+ mOutputFile.flush();
+}
+
+bool
+DrawEventRecorderFile::IsOpen()
+{
+ return mOutputFile.is_open();
+}
+
+void
+DrawEventRecorderFile::OpenNew(const char *aFilename)
+{
+ MOZ_ASSERT(!mOutputFile.is_open());
+
+ mOutputFile.open(aFilename, ofstream::binary);
+ WriteHeader();
+}
+
+void
+DrawEventRecorderFile::Close()
+{
+ MOZ_ASSERT(mOutputFile.is_open());
+
+ mOutputFile.close();
+}
+
+DrawEventRecorderMemory::DrawEventRecorderMemory()
+ : DrawEventRecorderPrivate(nullptr)
+{
+ mOutputStream = &mMemoryStream;
+
+ WriteHeader();
+}
+
+void
+DrawEventRecorderMemory::Flush()
+{
+ mOutputStream->flush();
+}
+
+size_t
+DrawEventRecorderMemory::RecordingSize()
+{
+ return mMemoryStream.tellp();
+}
+
+bool
+DrawEventRecorderMemory::CopyRecording(char* aBuffer, size_t aBufferLen)
+{
+ return !!mMemoryStream.read(aBuffer, aBufferLen);
+}
+
+void
+DrawEventRecorderMemory::WipeRecording()
+{
+ mMemoryStream.str(std::string());
+ mMemoryStream.clear();
+
+ WriteHeader();
+}
+
+} // namespace gfx
+} // namespace mozilla