Make sure to handle skipForNow when the user does not sign in.
[chromium-blink-merge.git] / components / bookmarks / browser / bookmark_node_data.h
blobc44594e12d3e48992a7845834c691b5b02b8406b
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.
5 #ifndef COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_
6 #define COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_
8 #include <vector>
10 #include "base/files/file_path.h"
11 #include "base/strings/string16.h"
12 #include "base/time/time.h"
13 #include "components/bookmarks/browser/bookmark_node.h"
14 #include "ui/base/clipboard/clipboard_types.h"
16 #include "url/gurl.h"
17 #if defined(TOOLKIT_VIEWS)
18 #include "ui/base/dragdrop/os_exchange_data.h"
19 #endif
21 class BookmarkModel;
22 class Pickle;
23 class PickleIterator;
25 namespace bookmarks {
27 // BookmarkNodeData is used to represent the following:
29 // . A single URL.
30 // . A single node from the bookmark model.
31 // . A set of nodes from the bookmark model.
33 // BookmarkNodeData is used by bookmark related views to represent a dragged
34 // bookmark or bookmarks.
36 // Typical usage when writing data for a drag is:
37 // BookmarkNodeData data(node_user_is_dragging);
38 // data.Write(os_exchange_data_for_drag);
40 // Typical usage to read is:
41 // BookmarkNodeData data;
42 // if (data.Read(os_exchange_data))
43 // // data is valid, contents are in elements.
45 struct BookmarkNodeData {
46 // Element represents a single node.
47 struct Element {
48 Element();
49 explicit Element(const BookmarkNode* node);
50 ~Element();
52 // If true, this element represents a URL.
53 bool is_url;
55 // The URL, only valid if is_url is true.
56 GURL url;
58 // Title of the entry, used for both urls and folders.
59 base::string16 title;
61 // Date of when this node was created.
62 base::Time date_added;
64 // Date of the last modification. Only used for folders.
65 base::Time date_folder_modified;
67 // Children, only used for non-URL nodes.
68 std::vector<Element> children;
70 // Meta info for the bookmark node.
71 BookmarkNode::MetaInfoMap meta_info_map;
73 int64 id() const { return id_; }
75 private:
76 friend struct BookmarkNodeData;
78 // For reading/writing this Element.
79 void WriteToPickle(Pickle* pickle) const;
80 bool ReadFromPickle(Pickle* pickle, PickleIterator* iterator);
82 // ID of the node.
83 int64 id_;
86 // The MIME type for the clipboard format for BookmarkNodeData.
87 static const char* kClipboardFormatString;
89 BookmarkNodeData();
91 // Created a BookmarkNodeData populated from the arguments.
92 explicit BookmarkNodeData(const BookmarkNode* node);
93 explicit BookmarkNodeData(const std::vector<const BookmarkNode*>& nodes);
95 ~BookmarkNodeData();
97 #if defined(TOOLKIT_VIEWS)
98 static const ui::OSExchangeData::CustomFormat& GetBookmarkCustomFormat();
99 #endif
101 static bool ClipboardContainsBookmarks();
103 // Reads bookmarks from the given vector.
104 bool ReadFromVector(const std::vector<const BookmarkNode*>& nodes);
106 // Creates a single-bookmark DragData from url/title pair.
107 bool ReadFromTuple(const GURL& url, const base::string16& title);
109 // Writes bookmarks to the specified clipboard.
110 void WriteToClipboard(ui::ClipboardType type);
112 // Reads bookmarks from the specified clipboard. Prefers data written via
113 // WriteToClipboard() but will also attempt to read a plain bookmark.
114 bool ReadFromClipboard(ui::ClipboardType type);
116 #if defined(TOOLKIT_VIEWS)
117 // Writes elements to data. If there is only one element and it is a URL
118 // the URL and title are written to the clipboard in a format other apps can
119 // use.
120 // |profile_path| is used to identify which profile the data came from. Use an
121 // empty path to indicate that the data is not associated with any profile.
122 void Write(const base::FilePath& profile_path,
123 ui::OSExchangeData* data) const;
125 // Restores this data from the clipboard, returning true on success.
126 bool Read(const ui::OSExchangeData& data);
127 #endif
129 // Writes the data for a drag to |pickle|.
130 void WriteToPickle(const base::FilePath& profile_path, Pickle* pickle) const;
132 // Reads the data for a drag from a |pickle|.
133 bool ReadFromPickle(Pickle* pickle);
135 // Returns the nodes represented by this DragData. If this DragData was
136 // created from the same profile then the nodes from the model are returned.
137 // If the nodes can't be found (may have been deleted), an empty vector is
138 // returned.
139 std::vector<const BookmarkNode*> GetNodes(
140 BookmarkModel* model,
141 const base::FilePath& profile_path) const;
143 // Convenience for getting the first node. Returns NULL if the data doesn't
144 // match any nodes or there is more than one node.
145 const BookmarkNode* GetFirstNode(BookmarkModel* model,
146 const base::FilePath& profile_path) const;
148 // Do we contain valid data?
149 bool is_valid() const { return !elements.empty(); }
151 // Returns true if there is a single url.
152 bool has_single_url() const { return is_valid() && elements[0].is_url; }
154 // Number of elements.
155 size_t size() const { return elements.size(); }
157 // Clears the data.
158 void Clear();
160 // Sets |profile_path_|. This is useful for the constructors/readers that
161 // don't set it. This should only be called if the profile path is not
162 // already set.
163 void SetOriginatingProfilePath(const base::FilePath& profile_path);
165 // Returns true if this data is from the specified profile path.
166 bool IsFromProfilePath(const base::FilePath& profile_path) const;
168 // The actual elements written to the clipboard.
169 std::vector<Element> elements;
171 private:
172 // Path of the profile we originated from.
173 base::FilePath profile_path_;
176 } // namespace bookmarks
178 #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_NODE_DATA_H_