2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2010 The Chromium Embedded Framework 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 "include/wrapper/cef_xml_object.h"
|
2014-07-11 22:10:05 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
#include <sstream>
|
|
|
|
|
2014-07-11 22:10:05 +02:00
|
|
|
#include "include/base/cef_logging.h"
|
|
|
|
#include "include/base/cef_macros.h"
|
|
|
|
#include "include/cef_stream.h"
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class CefXmlObjectLoader {
|
|
|
|
public:
|
|
|
|
explicit CefXmlObjectLoader(CefRefPtr<CefXmlObject> root_object)
|
2017-05-17 11:29:28 +02:00
|
|
|
: root_object_(root_object) {}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
bool Load(CefRefPtr<CefStreamReader> stream,
|
|
|
|
CefXmlReader::EncodingType encodingType,
|
|
|
|
const CefString& URI) {
|
|
|
|
CefRefPtr<CefXmlReader> reader(
|
|
|
|
CefXmlReader::Create(stream, encodingType, URI));
|
|
|
|
if (!reader.get())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool ret = reader->MoveToNextNode();
|
|
|
|
if (ret) {
|
|
|
|
CefRefPtr<CefXmlObject> cur_object(root_object_), new_object;
|
|
|
|
CefXmlObject::ObjectVector queue;
|
|
|
|
int cur_depth, value_depth = -1;
|
|
|
|
CefXmlReader::NodeType cur_type;
|
|
|
|
std::stringstream cur_value;
|
|
|
|
bool last_has_ns = false;
|
|
|
|
|
|
|
|
queue.push_back(root_object_);
|
|
|
|
|
|
|
|
do {
|
|
|
|
cur_depth = reader->GetDepth();
|
|
|
|
if (value_depth >= 0 && cur_depth > value_depth) {
|
|
|
|
// The current node has already been parsed as part of a value.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur_type = reader->GetType();
|
|
|
|
if (cur_type == XML_NODE_ELEMENT_START) {
|
|
|
|
if (cur_depth == value_depth) {
|
|
|
|
// Add to the current value.
|
|
|
|
cur_value << std::string(reader->GetOuterXml());
|
|
|
|
continue;
|
|
|
|
} else if (last_has_ns && reader->GetPrefix().empty()) {
|
|
|
|
if (!cur_object->HasChildren()) {
|
|
|
|
// Start a new value because the last element has a namespace and
|
|
|
|
// this element does not.
|
|
|
|
value_depth = cur_depth;
|
|
|
|
cur_value << std::string(reader->GetOuterXml());
|
|
|
|
} else {
|
|
|
|
// Value following a child element is not allowed.
|
|
|
|
std::stringstream ss;
|
2017-05-17 11:29:28 +02:00
|
|
|
ss << "Value following child element, line "
|
|
|
|
<< reader->GetLineNumber();
|
2012-04-03 03:34:16 +02:00
|
|
|
load_error_ = ss.str();
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Start a new element.
|
|
|
|
new_object = new CefXmlObject(reader->GetQualifiedName());
|
|
|
|
cur_object->AddChild(new_object);
|
|
|
|
last_has_ns = !reader->GetPrefix().empty();
|
|
|
|
|
|
|
|
if (!reader->IsEmptyElement()) {
|
|
|
|
// The new element potentially has a value and/or children, so
|
|
|
|
// set the current object and add the object to the queue.
|
|
|
|
cur_object = new_object;
|
|
|
|
queue.push_back(cur_object);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reader->HasAttributes() && reader->MoveToFirstAttribute()) {
|
|
|
|
// Read all object attributes.
|
|
|
|
do {
|
|
|
|
new_object->SetAttributeValue(reader->GetQualifiedName(),
|
2017-05-17 11:29:28 +02:00
|
|
|
reader->GetValue());
|
2012-04-03 03:34:16 +02:00
|
|
|
} while (reader->MoveToNextAttribute());
|
|
|
|
reader->MoveToCarryingElement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (cur_type == XML_NODE_ELEMENT_END) {
|
|
|
|
if (cur_depth == value_depth) {
|
|
|
|
// Ending an element that is already in the value.
|
|
|
|
continue;
|
|
|
|
} else if (cur_depth < value_depth) {
|
|
|
|
// Done with parsing the value portion of the current element.
|
|
|
|
cur_object->SetValue(cur_value.str());
|
|
|
|
cur_value.str("");
|
|
|
|
value_depth = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pop the current element from the queue.
|
|
|
|
queue.pop_back();
|
|
|
|
|
|
|
|
if (queue.empty() ||
|
|
|
|
cur_object->GetName() != reader->GetQualifiedName()) {
|
|
|
|
// Open tag without close tag or close tag without open tag should
|
|
|
|
// never occur (the parser catches this error).
|
2014-07-11 22:10:05 +02:00
|
|
|
NOTREACHED();
|
2012-04-03 03:34:16 +02:00
|
|
|
std::stringstream ss;
|
2017-05-17 11:29:28 +02:00
|
|
|
ss << "Mismatched end tag for "
|
|
|
|
<< std::string(cur_object->GetName()) << ", line "
|
|
|
|
<< reader->GetLineNumber();
|
2012-04-03 03:34:16 +02:00
|
|
|
load_error_ = ss.str();
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the current object to the previous object in the queue.
|
|
|
|
cur_object = queue.back().get();
|
|
|
|
} else if (cur_type == XML_NODE_TEXT || cur_type == XML_NODE_CDATA ||
|
|
|
|
cur_type == XML_NODE_ENTITY_REFERENCE) {
|
|
|
|
if (cur_depth == value_depth) {
|
|
|
|
// Add to the current value.
|
|
|
|
cur_value << std::string(reader->GetValue());
|
|
|
|
} else if (!cur_object->HasChildren()) {
|
|
|
|
// Start a new value.
|
|
|
|
value_depth = cur_depth;
|
|
|
|
cur_value << std::string(reader->GetValue());
|
|
|
|
} else {
|
|
|
|
// Value following a child element is not allowed.
|
|
|
|
std::stringstream ss;
|
2017-05-17 11:29:28 +02:00
|
|
|
ss << "Value following child element, line "
|
|
|
|
<< reader->GetLineNumber();
|
2012-04-03 03:34:16 +02:00
|
|
|
load_error_ = ss.str();
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (reader->MoveToNextNode());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reader->HasError()) {
|
|
|
|
load_error_ = reader->GetError();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString GetLoadError() { return load_error_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CefString load_error_;
|
|
|
|
CefRefPtr<CefXmlObject> root_object_;
|
2014-07-11 22:10:05 +02:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefXmlObjectLoader);
|
2012-04-03 03:34:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
CefXmlObject::CefXmlObject(const CefString& name)
|
2020-01-15 14:36:24 +01:00
|
|
|
: name_(name), parent_(nullptr) {}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefXmlObject::~CefXmlObject() {}
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
bool CefXmlObject::Load(CefRefPtr<CefStreamReader> stream,
|
|
|
|
CefXmlReader::EncodingType encodingType,
|
2017-05-17 11:29:28 +02:00
|
|
|
const CefString& URI,
|
|
|
|
CefString* loadError) {
|
2012-04-03 03:34:16 +02:00
|
|
|
Clear();
|
|
|
|
|
|
|
|
CefXmlObjectLoader loader(this);
|
|
|
|
if (!loader.Load(stream, encodingType, URI)) {
|
|
|
|
if (loadError)
|
|
|
|
*loadError = loader.GetLoadError();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::Set(CefRefPtr<CefXmlObject> object) {
|
|
|
|
DCHECK(object.get());
|
|
|
|
|
|
|
|
Clear();
|
2014-07-15 00:18:51 +02:00
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
name_ = object->GetName();
|
|
|
|
Append(object, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::Append(CefRefPtr<CefXmlObject> object,
|
|
|
|
bool overwriteAttributes) {
|
|
|
|
DCHECK(object.get());
|
|
|
|
|
|
|
|
if (object->HasChildren()) {
|
|
|
|
ObjectVector children;
|
|
|
|
object->GetChildren(children);
|
|
|
|
ObjectVector::const_iterator it = children.begin();
|
|
|
|
for (; it != children.end(); ++it)
|
|
|
|
AddChild((*it)->Duplicate());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (object->HasAttributes()) {
|
|
|
|
AttributeMap attributes;
|
|
|
|
object->GetAttributes(attributes);
|
|
|
|
AttributeMap::const_iterator it = attributes.begin();
|
|
|
|
for (; it != attributes.end(); ++it) {
|
|
|
|
if (overwriteAttributes || !HasAttribute(it->first))
|
|
|
|
SetAttributeValue(it->first, it->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefXmlObject> CefXmlObject::Duplicate() {
|
|
|
|
CefRefPtr<CefXmlObject> new_obj;
|
|
|
|
{
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
new_obj = new CefXmlObject(name_);
|
|
|
|
new_obj->Append(this, true);
|
|
|
|
}
|
|
|
|
return new_obj;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::Clear() {
|
|
|
|
ClearChildren();
|
|
|
|
ClearAttributes();
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefXmlObject::GetName() {
|
|
|
|
CefString name;
|
|
|
|
{
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
name = name_;
|
|
|
|
}
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::SetName(const CefString& name) {
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
if (name.empty())
|
|
|
|
return false;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
name_ = name;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasParent() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2020-01-15 14:36:24 +01:00
|
|
|
return (parent_ != nullptr);
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefXmlObject> CefXmlObject::GetParent() {
|
|
|
|
CefRefPtr<CefXmlObject> parent;
|
|
|
|
{
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
parent = parent_;
|
|
|
|
}
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasValue() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return !value_.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefXmlObject::GetValue() {
|
|
|
|
CefString value;
|
|
|
|
{
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
value = value_;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::SetValue(const CefString& value) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
DCHECK(children_.empty());
|
|
|
|
if (!children_.empty())
|
|
|
|
return false;
|
|
|
|
value_ = value;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasAttributes() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return !attributes_.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefXmlObject::GetAttributeCount() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return attributes_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasAttribute(const CefString& name) {
|
|
|
|
if (name.empty())
|
|
|
|
return false;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
AttributeMap::const_iterator it = attributes_.find(name);
|
|
|
|
return (it != attributes_.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
CefString CefXmlObject::GetAttributeValue(const CefString& name) {
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
CefString value;
|
|
|
|
if (!name.empty()) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
AttributeMap::const_iterator it = attributes_.find(name);
|
|
|
|
if (it != attributes_.end())
|
|
|
|
value = it->second;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::SetAttributeValue(const CefString& name,
|
|
|
|
const CefString& value) {
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
if (name.empty())
|
|
|
|
return false;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
AttributeMap::iterator it = attributes_.find(name);
|
|
|
|
if (it != attributes_.end()) {
|
|
|
|
it->second = value;
|
|
|
|
} else {
|
|
|
|
attributes_.insert(std::make_pair(name, value));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefXmlObject::GetAttributes(AttributeMap& attributes) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
attributes = attributes_;
|
|
|
|
return attributes_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::ClearAttributes() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
attributes_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasChildren() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return !children_.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefXmlObject::GetChildCount() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
return children_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::HasChild(CefRefPtr<CefXmlObject> child) {
|
|
|
|
DCHECK(child.get());
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
ObjectVector::const_iterator it = children_.begin();
|
|
|
|
for (; it != children_.end(); ++it) {
|
|
|
|
if ((*it).get() == child.get())
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::AddChild(CefRefPtr<CefXmlObject> child) {
|
|
|
|
DCHECK(child.get());
|
|
|
|
if (!child.get())
|
|
|
|
return false;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
CefRefPtr<CefXmlObject> parent = child->GetParent();
|
|
|
|
DCHECK(!parent);
|
|
|
|
if (parent)
|
2012-04-03 03:34:16 +02:00
|
|
|
return false;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
children_.push_back(child);
|
|
|
|
child->SetParent(this);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefXmlObject::RemoveChild(CefRefPtr<CefXmlObject> child) {
|
|
|
|
DCHECK(child.get());
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
ObjectVector::iterator it = children_.begin();
|
|
|
|
for (; it != children_.end(); ++it) {
|
|
|
|
if ((*it).get() == child.get()) {
|
|
|
|
children_.erase(it);
|
2020-01-15 14:36:24 +01:00
|
|
|
child->SetParent(nullptr);
|
2012-04-03 03:34:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefXmlObject::GetChildren(ObjectVector& children) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
children = children_;
|
|
|
|
return children_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::ClearChildren() {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
ObjectVector::iterator it = children_.begin();
|
|
|
|
for (; it != children_.end(); ++it)
|
2020-01-15 14:36:24 +01:00
|
|
|
(*it)->SetParent(nullptr);
|
2012-04-03 03:34:16 +02:00
|
|
|
children_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefXmlObject> CefXmlObject::FindChild(const CefString& name) {
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
if (name.empty())
|
2020-01-15 14:36:24 +01:00
|
|
|
return nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
ObjectVector::const_iterator it = children_.begin();
|
|
|
|
for (; it != children_.end(); ++it) {
|
|
|
|
if ((*it)->GetName() == name)
|
|
|
|
return (*it);
|
|
|
|
}
|
2020-01-15 14:36:24 +01:00
|
|
|
return nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t CefXmlObject::FindChildren(const CefString& name,
|
|
|
|
ObjectVector& children) {
|
|
|
|
DCHECK(!name.empty());
|
|
|
|
if (name.empty())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
size_t ct = 0;
|
|
|
|
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
ObjectVector::const_iterator it = children_.begin();
|
|
|
|
for (; it != children_.end(); ++it) {
|
|
|
|
if ((*it)->GetName() == name) {
|
|
|
|
children.push_back(*it);
|
|
|
|
ct++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ct;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefXmlObject::SetParent(CefXmlObject* parent) {
|
2014-07-15 00:18:51 +02:00
|
|
|
base::AutoLock lock_scope(lock_);
|
2012-04-03 03:34:16 +02:00
|
|
|
if (parent) {
|
2020-01-15 14:36:24 +01:00
|
|
|
DCHECK(parent_ == nullptr);
|
2012-04-03 03:34:16 +02:00
|
|
|
parent_ = parent;
|
|
|
|
} else {
|
2020-01-15 14:36:24 +01:00
|
|
|
DCHECK(parent_ != nullptr);
|
|
|
|
parent_ = nullptr;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
}
|