blob: 2d6e064053561e4f51a0b1ce9182f3948c9d5f01 [file] [log] [blame]
// Copyright 2014 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.
#include "components/bookmarks/browser/bookmark_node_data.h"
#include <string>
#include "base/basictypes.h"
#include "base/pickle.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions.h"
#include "components/bookmarks/browser/bookmark_utils.h"
#include "ui/base/clipboard/scoped_clipboard_writer.h"
namespace bookmarks {
const char* BookmarkNodeData::kClipboardFormatString =
"chromium/x-bookmark-entries";
BookmarkNodeData::Element::Element() : is_url(false), id_(0) {
}
BookmarkNodeData::Element::Element(const BookmarkNode* node)
: is_url(node->is_url()),
url(node->url()),
title(node->GetTitle()),
date_added(node->date_added()),
date_folder_modified(node->date_folder_modified()),
id_(node->id()) {
if (node->GetMetaInfoMap())
meta_info_map = *node->GetMetaInfoMap();
for (int i = 0; i < node->child_count(); ++i)
children.push_back(Element(node->GetChild(i)));
}
BookmarkNodeData::Element::~Element() {
}
void BookmarkNodeData::Element::WriteToPickle(Pickle* pickle) const {
pickle->WriteBool(is_url);
pickle->WriteString(url.spec());
pickle->WriteString16(title);
pickle->WriteInt64(id_);
pickle->WriteSizeT(meta_info_map.size());
for (BookmarkNode::MetaInfoMap::const_iterator it = meta_info_map.begin();
it != meta_info_map.end(); ++it) {
pickle->WriteString(it->first);
pickle->WriteString(it->second);
}
if (!is_url) {
pickle->WriteSizeT(children.size());
for (std::vector<Element>::const_iterator i = children.begin();
i != children.end(); ++i) {
i->WriteToPickle(pickle);
}
}
}
bool BookmarkNodeData::Element::ReadFromPickle(Pickle* pickle,
PickleIterator* iterator) {
std::string url_spec;
if (!pickle->ReadBool(iterator, &is_url) ||
!pickle->ReadString(iterator, &url_spec) ||
!pickle->ReadString16(iterator, &title) ||
!pickle->ReadInt64(iterator, &id_)) {
return false;
}
url = GURL(url_spec);
date_added = base::Time();
date_folder_modified = base::Time();
meta_info_map.clear();
size_t meta_field_count;
if (!pickle->ReadSizeT(iterator, &meta_field_count))
return false;
for (size_t i = 0; i < meta_field_count; ++i) {
std::string key;
std::string value;
if (!pickle->ReadString(iterator, &key) ||
!pickle->ReadString(iterator, &value)) {
return false;
}
meta_info_map[key] = value;
}
children.clear();
if (!is_url) {
size_t children_count;
if (!pickle->ReadSizeT(iterator, &children_count))
return false;
children.reserve(children_count);
for (size_t i = 0; i < children_count; ++i) {
children.push_back(Element());
if (!children.back().ReadFromPickle(pickle, iterator))
return false;
}
}
return true;
}
// BookmarkNodeData -----------------------------------------------------------
BookmarkNodeData::BookmarkNodeData() {
}
BookmarkNodeData::BookmarkNodeData(const BookmarkNode* node) {
elements.push_back(Element(node));
}
BookmarkNodeData::BookmarkNodeData(
const std::vector<const BookmarkNode*>& nodes) {
ReadFromVector(nodes);
}
BookmarkNodeData::~BookmarkNodeData() {
}
#if !defined(OS_MACOSX)
// static
bool BookmarkNodeData::ClipboardContainsBookmarks() {
return ui::Clipboard::GetForCurrentThread()->IsFormatAvailable(
ui::Clipboard::GetFormatType(kClipboardFormatString),
ui::CLIPBOARD_TYPE_COPY_PASTE);
}
#endif
bool BookmarkNodeData::ReadFromVector(
const std::vector<const BookmarkNode*>& nodes) {
Clear();
if (nodes.empty())
return false;
for (size_t i = 0; i < nodes.size(); ++i)
elements.push_back(Element(nodes[i]));
return true;
}
bool BookmarkNodeData::ReadFromTuple(const GURL& url,
const base::string16& title) {
Clear();
if (!url.is_valid())
return false;
Element element;
element.title = title;
element.url = url;
element.is_url = true;
elements.push_back(element);
return true;
}
#if !defined(OS_MACOSX)
void BookmarkNodeData::WriteToClipboard(ui::ClipboardType clipboard_type) {
DCHECK(clipboard_type == ui::CLIPBOARD_TYPE_COPY_PASTE ||
clipboard_type == ui::CLIPBOARD_TYPE_SELECTION);
ui::ScopedClipboardWriter scw(clipboard_type);
// If there is only one element and it is a URL, write the URL to the
// clipboard.
if (elements.size() == 1 && elements[0].is_url) {
const base::string16& title = elements[0].title;
const std::string url = elements[0].url.spec();
scw.WriteBookmark(title, url);
// Don't call scw.WriteHyperlink() here, since some rich text editors will
// change fonts when such data is pasted in; besides, most such editors
// auto-linkify at some point anyway.
// Also write the URL to the clipboard as text so that it can be pasted
// into text fields. We use WriteText instead of WriteURL because we don't
// want to clobber the X clipboard when the user copies out of the omnibox
// on Linux (on Windows and Mac, there is no difference between these
// functions).
scw.WriteText(base::UTF8ToUTF16(url));
} else {
// We have either more than one URL, a folder, or a combination of URLs
// and folders.
base::string16 text;
for (size_t i = 0; i < elements.size(); i++) {
text += i == 0 ? base::ASCIIToUTF16("") : base::ASCIIToUTF16("\n");
if (!elements[i].is_url) {
// Then it's a folder. Only copy the name of the folder.
const base::string16 title = elements[i].title;
text += title;
} else {
const base::string16 url = base::UTF8ToUTF16(elements[i].url.spec());
text += url;
}
}
scw.WriteText(text);
}
Pickle pickle;
WriteToPickle(base::FilePath(), &pickle);
scw.WritePickledData(pickle,
ui::Clipboard::GetFormatType(kClipboardFormatString));
}
bool BookmarkNodeData::ReadFromClipboard(ui::ClipboardType type) {
DCHECK_EQ(type, ui::CLIPBOARD_TYPE_COPY_PASTE);
std::string data;
ui::Clipboard* clipboard = ui::Clipboard::GetForCurrentThread();
clipboard->ReadData(ui::Clipboard::GetFormatType(kClipboardFormatString),
&data);
if (!data.empty()) {
Pickle pickle(data.data(), static_cast<int>(data.size()));
if (ReadFromPickle(&pickle))
return true;
}
base::string16 title;
std::string url;
clipboard->ReadBookmark(&title, &url);
if (!url.empty()) {
Element element;
element.is_url = true;
element.url = GURL(url);
element.title = title;
elements.clear();
elements.push_back(element);
return true;
}
return false;
}
#endif
void BookmarkNodeData::WriteToPickle(const base::FilePath& profile_path,
Pickle* pickle) const {
profile_path.WriteToPickle(pickle);
pickle->WriteSizeT(elements.size());
for (size_t i = 0; i < elements.size(); ++i)
elements[i].WriteToPickle(pickle);
}
bool BookmarkNodeData::ReadFromPickle(Pickle* pickle) {
PickleIterator data_iterator(*pickle);
size_t element_count;
if (profile_path_.ReadFromPickle(&data_iterator) &&
pickle->ReadSizeT(&data_iterator, &element_count)) {
std::vector<Element> tmp_elements;
tmp_elements.resize(element_count);
for (size_t i = 0; i < element_count; ++i) {
if (!tmp_elements[i].ReadFromPickle(pickle, &data_iterator)) {
return false;
}
}
elements.swap(tmp_elements);
}
return true;
}
std::vector<const BookmarkNode*> BookmarkNodeData::GetNodes(
BookmarkModel* model,
const base::FilePath& profile_path) const {
std::vector<const BookmarkNode*> nodes;
if (!IsFromProfilePath(profile_path))
return nodes;
for (size_t i = 0; i < elements.size(); ++i) {
const BookmarkNode* node = GetBookmarkNodeByID(model, elements[i].id_);
if (!node) {
nodes.clear();
return nodes;
}
nodes.push_back(node);
}
return nodes;
}
const BookmarkNode* BookmarkNodeData::GetFirstNode(
BookmarkModel* model,
const base::FilePath& profile_path) const {
std::vector<const BookmarkNode*> nodes = GetNodes(model, profile_path);
return nodes.size() == 1 ? nodes[0] : NULL;
}
void BookmarkNodeData::Clear() {
profile_path_.clear();
elements.clear();
}
void BookmarkNodeData::SetOriginatingProfilePath(
const base::FilePath& profile_path) {
DCHECK(profile_path_.empty());
profile_path_ = profile_path;
}
bool BookmarkNodeData::IsFromProfilePath(
const base::FilePath& profile_path) const {
// An empty path means the data is not associated with any profile.
return !profile_path_.empty() && profile_path_ == profile_path;
}
} // namespace bookmarks