Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / content / browser / indexed_db / indexed_db_blob_info.h
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
6 #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_
7
8 #include "base/callback.h"
9 #include "base/files/file_path.h"
10 #include "base/time/time.h"
11 #include "content/common/content_export.h"
12 #include "webkit/common/blob/shareable_file_reference.h"
13
14 namespace content {
15
16 class CONTENT_EXPORT IndexedDBBlobInfo {
17  public:
18   typedef webkit_blob::ShareableFileReference::FinalReleaseCallback
19       ReleaseCallback;
20   IndexedDBBlobInfo();
21   ~IndexedDBBlobInfo();
22   // These two are used for Blobs.
23   IndexedDBBlobInfo(const std::string& uuid,
24                     const base::string16& type,
25                     int64 size);
26   IndexedDBBlobInfo(const base::string16& type, int64 size, int64 key);
27   // These two are used for Files.
28   IndexedDBBlobInfo(const std::string& uuid,
29                     const base::FilePath& file_path,
30                     const base::string16& file_name,
31                     const base::string16& type);
32   IndexedDBBlobInfo(int64 key,
33                     const base::string16& type,
34                     const base::string16& file_name);
35
36   bool is_file() const { return is_file_; }
37   const std::string& uuid() const { return uuid_; }
38   const base::string16& type() const { return type_; }
39   int64 size() const { return size_; }
40   const base::string16& file_name() const { return file_name_; }
41   int64 key() const { return key_; }
42   const base::FilePath& file_path() const { return file_path_; }
43   const base::Time& last_modified() const { return last_modified_; }
44   const base::Closure& mark_used_callback() const {
45     return mark_used_callback_;
46   }
47   const ReleaseCallback& release_callback() const { return release_callback_; }
48
49   void set_size(int64 size);
50   void set_uuid(const std::string& uuid);
51   void set_file_path(const base::FilePath& file_path);
52   void set_last_modified(const base::Time& time);
53   void set_key(int64 key);
54   void set_mark_used_callback(const base::Closure& mark_used_callback);
55   void set_release_callback(const ReleaseCallback& release_callback);
56
57  private:
58   bool is_file_;
59   std::string uuid_;          // Always for Blob; sometimes for File.
60   base::string16 type_;       // Mime type.
61   int64 size_;                // -1 if unknown for File.
62   base::string16 file_name_;  // Only for File.
63   base::FilePath file_path_;  // Only for File.
64   base::Time last_modified_;  // Only for File; valid only if size is.
65
66   // Valid only when this comes out of the database.
67   int64 key_;
68   base::Closure mark_used_callback_;
69   ReleaseCallback release_callback_;
70 };
71
72 }  // namespace content
73
74 #endif  // CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_BLOB_INFO_H_