Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_data_internal.h

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_data_internal.h
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_data_internal.h b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_data_internal.h
deleted file mode 100644
index a8d7f5015e6f90acbbc8a7f7c357df6567a2e13d..0000000000000000000000000000000000000000
--- a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_data_internal.h
+++ /dev/null
@@ -1,141 +0,0 @@
-// 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.
-
-#ifndef THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_DATA_INTERNAL_H_
-#define THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_DATA_INTERNAL_H_
-
-#include "third_party/mojo/src/mojo/public/cpp/bindings/lib/array_internal.h"
-#include "third_party/mojo/src/mojo/public/cpp/bindings/lib/validate_params.h"
-#include "third_party/mojo/src/mojo/public/cpp/bindings/lib/validation_errors.h"
-#include "third_party/mojo/src/mojo/public/cpp/bindings/lib/validation_util.h"
-
-namespace mojo {
-namespace internal {
-
-inline const ArrayValidateParams* GetMapKeyValidateParamsDefault() {
- // The memory allocated here never gets released to not cause an exit time
- // destructor.
- static const ArrayValidateParams* validate_params =
- new ArrayValidateParams(0, false, nullptr);
- return validate_params;
-}
-
-inline const ArrayValidateParams* GetMapKeyValidateParamsForStrings() {
- // The memory allocated here never gets released to not cause an exit time
- // destructor.
- static const ArrayValidateParams* validate_params = new ArrayValidateParams(
- 0, false, new ArrayValidateParams(0, false, nullptr));
- return validate_params;
-}
-
-template <typename MapKey>
-struct MapKeyValidateParamsFactory {
- static const ArrayValidateParams* Get() {
- return GetMapKeyValidateParamsDefault();
- }
-};
-
-// For non-nullable strings only. (Which is OK; map keys can't be null.)
-template <>
-struct MapKeyValidateParamsFactory<mojo::internal::Array_Data<char>*> {
- static const ArrayValidateParams* Get() {
- return GetMapKeyValidateParamsForStrings();
- }
-};
-
-// Map serializes into a struct which has two arrays as struct fields, the keys
-// and the values.
-template <typename Key, typename Value>
-class Map_Data {
- public:
- static Map_Data* New(Buffer* buf) {
- return new (buf->Allocate(sizeof(Map_Data))) Map_Data();
- }
-
- static bool Validate(const void* data,
- BoundsChecker* bounds_checker,
- const ArrayValidateParams* value_validate_params) {
- if (!data)
- return true;
-
- if (!ValidateStructHeaderAndClaimMemory(data, bounds_checker))
- return false;
-
- const Map_Data* object = static_cast<const Map_Data*>(data);
- if (object->header_.num_bytes != sizeof(Map_Data) ||
- object->header_.version != 0) {
- ReportValidationError(VALIDATION_ERROR_UNEXPECTED_STRUCT_HEADER);
- return false;
- }
-
- if (!ValidateEncodedPointer(&object->keys.offset)) {
- ReportValidationError(VALIDATION_ERROR_ILLEGAL_POINTER);
- return false;
- }
- if (!object->keys.offset) {
- ReportValidationError(VALIDATION_ERROR_UNEXPECTED_NULL_POINTER,
- "null key array in map struct");
- return false;
- }
- const ArrayValidateParams* key_validate_params =
- MapKeyValidateParamsFactory<Key>::Get();
- if (!Array_Data<Key>::Validate(DecodePointerRaw(&object->keys.offset),
- bounds_checker, key_validate_params)) {
- return false;
- }
-
- if (!ValidateEncodedPointer(&object->values.offset)) {
- ReportValidationError(VALIDATION_ERROR_ILLEGAL_POINTER);
- return false;
- }
- if (!object->values.offset) {
- ReportValidationError(VALIDATION_ERROR_UNEXPECTED_NULL_POINTER,
- "null value array in map struct");
- return false;
- }
- if (!Array_Data<Value>::Validate(DecodePointerRaw(&object->values.offset),
- bounds_checker, value_validate_params)) {
- return false;
- }
-
- const ArrayHeader* key_header =
- static_cast<const ArrayHeader*>(DecodePointerRaw(&object->keys.offset));
- const ArrayHeader* value_header = static_cast<const ArrayHeader*>(
- DecodePointerRaw(&object->values.offset));
- if (key_header->num_elements != value_header->num_elements) {
- ReportValidationError(VALIDATION_ERROR_DIFFERENT_SIZED_ARRAYS_IN_MAP);
- return false;
- }
-
- return true;
- }
-
- StructHeader header_;
-
- ArrayPointer<Key> keys;
- ArrayPointer<Value> values;
-
- void EncodePointersAndHandles(std::vector<mojo::Handle>* handles) {
- Encode(&keys, handles);
- Encode(&values, handles);
- }
-
- void DecodePointersAndHandles(std::vector<mojo::Handle>* handles) {
- Decode(&keys, handles);
- Decode(&values, handles);
- }
-
- private:
- Map_Data() {
- header_.num_bytes = sizeof(*this);
- header_.version = 0;
- }
- ~Map_Data() = delete;
-};
-static_assert(sizeof(Map_Data<char, char>) == 24, "Bad sizeof(Map_Data)");
-
-} // namespace internal
-} // namespace mojo
-
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_PUBLIC_CPP_BINDINGS_LIB_MAP_DATA_INTERNAL_H_

Powered by Google App Engine
This is Rietveld 408576698