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

Unified Diff: chrome/browser/chromeos/gdata/gdata_db.h

Issue 10168025: GDataDB support with leveldb. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: FindEntryByPath Created 8 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
Index: chrome/browser/chromeos/gdata/gdata_db.h
===================================================================
--- chrome/browser/chromeos/gdata/gdata_db.h (revision 0)
+++ chrome/browser/chromeos/gdata/gdata_db.h (revision 0)
@@ -0,0 +1,65 @@
+// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_GDATA_GDATA_DB_H_
+#define CHROME_BROWSER_CHROMEOS_GDATA_GDATA_DB_H_
+#pragma once
+
+#include <string>
+
+#include "base/memory/scoped_ptr.h"
+
+class FilePath;
+
+namespace gdata {
+
+class GDataEntry;
+class GDataDBIter;
+
+// GData Database interface class.
+class GDataDB {
+ public:
+ enum Status {
+ DB_OK = 0,
+ DB_NOT_FOUND,
satorux1 2012/04/24 18:26:44 does this mean the db file is not found? or key is
achuithb 2012/04/24 19:43:58 Done.
+ DB_ERR,
satorux1 2012/04/24 18:26:44 DB_ERROR or DB_FAILED? in favor of less abbreviati
achuithb 2012/04/24 19:43:58 Done.
+ };
+
+ virtual ~GDataDB() {}
+
+ // Add |entry| to the database.
+ virtual Status Put(const GDataEntry& entry) = 0;
+
+ // Delete a database entry with key |resource_id| or |path| respectively.
+ virtual Status DeleteByResourceId(const std::string& resource_id) = 0;
+ virtual Status DeleteByPath(const FilePath& path) = 0;
+
+ // Fetch a GDataEntry* by key |resource_id| or |path| respectively.
+ virtual Status GetByResourceId(const std::string& resource_id,
+ scoped_ptr<GDataEntry>* entry) = 0;
+ virtual Status GetByPath(const FilePath& path,
+ scoped_ptr<GDataEntry>* entry) = 0;
+
+ // An iterator to fetch all GDataEntry's under |path|.
+ virtual scoped_ptr<GDataDBIter> NewIterator(const FilePath& path) = 0;
+
+ protected:
+ GDataDB() {}
+
+ DISALLOW_COPY_AND_ASSIGN(GDataDB);
satorux1 2012/04/24 18:26:44 nit: In interface class with pure virtual methods,
achuithb 2012/04/24 19:43:58 Done.
+};
+
+// GData Database Iterator interface class.
+class GDataDBIter {
+ public:
+ virtual ~GDataDBIter() {}
+ virtual scoped_ptr<GDataEntry> GetNext() = 0;
satorux1 2012/04/24 18:26:44 function comment is missing. I expect it'll return
achuithb 2012/04/24 19:43:58 Done.
+
+ protected:
+ GDataDBIter() {}
+};
+
+} // namespace gdata
+
+#endif // CHROME_BROWSER_CHROMEOS_GDATA_GDATA_DB_H_
Property changes on: chrome/browser/chromeos/gdata/gdata_db.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « no previous file | chrome/browser/chromeos/gdata/gdata_db_factory.h » ('j') | chrome/browser/chromeos/gdata/gdata_db_factory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698