Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1743)

Unified Diff: components/leveldb/public/cpp/util.h

Issue 1861903002: mojo leveldb: Add an iteration interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase + comments Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/leveldb/public/cpp/remote_iterator.cc ('k') | components/leveldb/public/cpp/util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/leveldb/public/cpp/util.h
diff --git a/components/leveldb/public/cpp/util.h b/components/leveldb/public/cpp/util.h
new file mode 100644
index 0000000000000000000000000000000000000000..2540be5241c6eb67de00c2834a7204058d69d714
--- /dev/null
+++ b/components/leveldb/public/cpp/util.h
@@ -0,0 +1,35 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_LEVELDB_PUBLIC_CPP_UTIL_H_
+#define COMPONENTS_LEVELDB_PUBLIC_CPP_UTIL_H_
+
+#include "components/leveldb/public/interfaces/leveldb.mojom.h"
+
+namespace leveldb {
+
+class Slice;
+class Status;
+
+// Builds a mojo DatabaseError from a leveldb::Status object.
+DatabaseError LeveldbStatusToError(const leveldb::Status& s);
+
+// Creates a leveldb Status object form a database error and two optional
+// messages. A mojoification of the various static leveldb::Status
+// constructors.
+leveldb::Status DatabaseErrorToStatus(DatabaseError e,
+ const Slice& msg,
+ const Slice& msg2);
+
+// Builds a Slice pointing to the data inside |a|. This is not a type-converter
+// as it is not a copy operation; the returned Slice points into |a| and must
+// outlive |a|.
+leveldb::Slice GetSliceFor(const mojo::Array<uint8_t>& a);
+
+// Copies the data that |s| points to into a mojo::Array.
+mojo::Array<uint8_t> GetArrayFor(const leveldb::Slice& s);
+
+} // namespace leveldb
+
+#endif // COMPONENTS_LEVELDB_PUBLIC_CPP_UTIL_H_
« no previous file with comments | « components/leveldb/public/cpp/remote_iterator.cc ('k') | components/leveldb/public/cpp/util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698