aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/core/src/firebase/firestore/local
diff options
context:
space:
mode:
authorGravatar Greg Soltis <gsoltis@google.com>2018-03-22 09:51:30 -0700
committerGravatar GitHub <noreply@github.com>2018-03-22 09:51:30 -0700
commit7a512f4a367aa4c2e75b53531d9b92ad37f130fe (patch)
tree9b0e2e1d14193ef1eedccefdc089d14be119a783 /Firestore/core/src/firebase/firestore/local
parentcf630bfee60694f9bf1577972df169badda0b6e0 (diff)
Add `ToString()` to `LevelDbTransaction` (#946)
* Initial plumbing for leveldb local parts * Add model::BatchId * Port leveldb_key.{h,cc} * Add string StartsWith * Add leveldb_key_test.cc to the project * Revert back to using leveldb::Slice for read/describe These operations universally operate on keys obtained from leveldb so it's actually unhelpful to force all the callers to make absl::string_views from them. * Start work on ToString for transactions * Add ToString() method to LevelDbTransaction * Style * lint * Revert addition of util::StartsWith
Diffstat (limited to 'Firestore/core/src/firebase/firestore/local')
-rw-r--r--Firestore/core/src/firebase/firestore/local/leveldb_transaction.cc20
-rw-r--r--Firestore/core/src/firebase/firestore/local/leveldb_transaction.h2
2 files changed, 22 insertions, 0 deletions
diff --git a/Firestore/core/src/firebase/firestore/local/leveldb_transaction.cc b/Firestore/core/src/firebase/firestore/local/leveldb_transaction.cc
index af72716..4e4a313 100644
--- a/Firestore/core/src/firebase/firestore/local/leveldb_transaction.cc
+++ b/Firestore/core/src/firebase/firestore/local/leveldb_transaction.cc
@@ -18,6 +18,7 @@
#include <leveldb/write_batch.h>
+#include "Firestore/core/src/firebase/firestore/local/leveldb_key.h"
#include "Firestore/core/src/firebase/firestore/util/firebase_assert.h"
using leveldb::DB;
@@ -206,6 +207,25 @@ void LevelDbTransaction::Commit() {
status.ToString().c_str());
}
+std::string LevelDbTransaction::ToString() {
+ std::string dest("<LevelDbTransaction: ");
+ int64_t changes = deletions_.size() + mutations_.size();
+ int64_t bytes = 0; // accumulator for size of individual mutations.
+ dest += std::to_string(changes) + " changes ";
+ std::string items; // accumulator for individual changes.
+ for (auto it = deletions_.begin(); it != deletions_.end(); it++) {
+ items += "\n - Delete " + Describe(*it);
+ }
+ for (auto it = mutations_.begin(); it != mutations_.end(); it++) {
+ int64_t change_bytes = it->second.length();
+ bytes += change_bytes;
+ items += "\n - Put " + Describe(it->first) + " (" +
+ std::to_string(change_bytes) + " bytes)";
+ }
+ dest += "(" + std::to_string(bytes) + " bytes):" + items + ">";
+ return dest;
+}
+
} // namespace local
} // namespace firestore
} // namespace firebase
diff --git a/Firestore/core/src/firebase/firestore/local/leveldb_transaction.h b/Firestore/core/src/firebase/firestore/local/leveldb_transaction.h
index 015a6cb..b219a69 100644
--- a/Firestore/core/src/firebase/firestore/local/leveldb_transaction.h
+++ b/Firestore/core/src/firebase/firestore/local/leveldb_transaction.h
@@ -188,6 +188,8 @@ class LevelDbTransaction {
*/
void Commit();
+ std::string ToString();
+
private:
leveldb::DB* db_;
Mutations mutations_;