// 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. #include "content/common/indexed_db/indexed_db_key.h" #include #include "base/logging.h" namespace content { using blink::WebIDBKey; using blink::WebIDBKeyType; using blink::WebIDBKeyTypeArray; using blink::WebIDBKeyTypeBinary; using blink::WebIDBKeyTypeDate; using blink::WebIDBKeyTypeInvalid; using blink::WebIDBKeyTypeMin; using blink::WebIDBKeyTypeNull; using blink::WebIDBKeyTypeNumber; using blink::WebIDBKeyTypeString; namespace { // Very rough estimate of minimum key size overhead. const size_t kOverheadSize = 16; static size_t CalculateArraySize(const IndexedDBKey::KeyArray& keys) { size_t size(0); for (size_t i = 0; i < keys.size(); ++i) size += keys[i].size_estimate(); return size; } template static IndexedDBKey::KeyArray CopyKeyArray(const T& array) { IndexedDBKey::KeyArray result; result.reserve(array.size()); for (size_t i = 0; i < array.size(); ++i) { result.push_back(IndexedDBKey(array[i])); } return result; } } // namespace IndexedDBKey::IndexedDBKey() : type_(WebIDBKeyTypeNull), date_(0), number_(0), size_estimate_(kOverheadSize) {} IndexedDBKey::IndexedDBKey(WebIDBKeyType type) : type_(type), date_(0), number_(0), size_estimate_(kOverheadSize) { DCHECK(type == WebIDBKeyTypeNull || type == WebIDBKeyTypeInvalid); } IndexedDBKey::IndexedDBKey(double number, WebIDBKeyType type) : type_(type), date_(number), number_(number), size_estimate_(kOverheadSize + sizeof(number)) { DCHECK(type == WebIDBKeyTypeNumber || type == WebIDBKeyTypeDate); } IndexedDBKey::IndexedDBKey(const KeyArray& keys) : type_(WebIDBKeyTypeArray), array_(CopyKeyArray(keys)), date_(0), number_(0), size_estimate_(kOverheadSize + CalculateArraySize(keys)) {} IndexedDBKey::IndexedDBKey(const std::string& key) : type_(WebIDBKeyTypeBinary), binary_(key), size_estimate_(kOverheadSize + (key.length() * sizeof(std::string::value_type))) {} IndexedDBKey::IndexedDBKey(const base::string16& key) : type_(WebIDBKeyTypeString), string_(key), size_estimate_(kOverheadSize + (key.length() * sizeof(base::string16::value_type))) {} IndexedDBKey::~IndexedDBKey() {} int IndexedDBKey::Compare(const IndexedDBKey& other) const { DCHECK(IsValid()); DCHECK(other.IsValid()); if (type_ != other.type_) return type_ > other.type_ ? -1 : 1; switch (type_) { case WebIDBKeyTypeArray: for (size_t i = 0; i < array_.size() && i < other.array_.size(); ++i) { if (int result = array_[i].Compare(other.array_[i])) return result; } if (array_.size() < other.array_.size()) return -1; if (array_.size() > other.array_.size()) return 1; return 0; case WebIDBKeyTypeBinary: return binary_.compare(other.binary_); case WebIDBKeyTypeString: return string_.compare(other.string_); case WebIDBKeyTypeDate: return (date_ < other.date_) ? -1 : (date_ > other.date_) ? 1 : 0; case WebIDBKeyTypeNumber: return (number_ < other.number_) ? -1 : (number_ > other.number_) ? 1 : 0; case WebIDBKeyTypeInvalid: case WebIDBKeyTypeNull: case WebIDBKeyTypeMin: default: NOTREACHED(); return 0; } NOTREACHED(); return 0; } bool IndexedDBKey::IsLessThan(const IndexedDBKey& other) const { return Compare(other) < 0; } bool IndexedDBKey::IsEqual(const IndexedDBKey& other) const { return !Compare(other); } bool IndexedDBKey::IsValid() const { if (type_ == WebIDBKeyTypeInvalid || type_ == WebIDBKeyTypeNull) return false; if (type_ == WebIDBKeyTypeArray) { for (size_t i = 0; i < array_.size(); i++) { if (!array_[i].IsValid()) return false; } } return true; } } // namespace content