OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file specifies a recursive data storage class called Value intended for | 5 // This file specifies a recursive data storage class called Value intended for |
6 // storing settings and other persistable data. | 6 // storing settings and other persistable data. |
7 // | 7 // |
8 // A Value represents something that can be stored in JSON or passed to/from | 8 // A Value represents something that can be stored in JSON or passed to/from |
9 // JavaScript. As such, it is NOT a generalized variant type, since only the | 9 // JavaScript. As such, it is NOT a generalized variant type, since only the |
10 // types supported by JavaScript/JSON are supported. | 10 // types supported by JavaScript/JSON are supported. |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 bool empty() const { return list_->empty(); } | 401 bool empty() const { return list_->empty(); } |
402 | 402 |
403 // Reserves storage for at least |n| values. | 403 // Reserves storage for at least |n| values. |
404 void Reserve(size_t n); | 404 void Reserve(size_t n); |
405 | 405 |
406 // Sets the list item at the given index to be the Value specified by | 406 // Sets the list item at the given index to be the Value specified by |
407 // the value given. If the index beyond the current end of the list, null | 407 // the value given. If the index beyond the current end of the list, null |
408 // Values will be used to pad out the list. | 408 // Values will be used to pad out the list. |
409 // Returns true if successful, or false if the index was negative or | 409 // Returns true if successful, or false if the index was negative or |
410 // the value is a null pointer. | 410 // the value is a null pointer. |
411 bool Set(size_t index, Value* in_value); | |
412 // Preferred version of the above. TODO(estade): remove the above. | |
413 bool Set(size_t index, std::unique_ptr<Value> in_value); | 411 bool Set(size_t index, std::unique_ptr<Value> in_value); |
414 | 412 |
415 // Gets the Value at the given index. Modifies |out_value| (and returns true) | 413 // Gets the Value at the given index. Modifies |out_value| (and returns true) |
416 // only if the index falls within the current list range. | 414 // only if the index falls within the current list range. |
417 // Note that the list always owns the Value passed out via |out_value|. | 415 // Note that the list always owns the Value passed out via |out_value|. |
418 // |out_value| is optional and will only be set if non-NULL. | 416 // |out_value| is optional and will only be set if non-NULL. |
419 bool Get(size_t index, const Value** out_value) const; | 417 bool Get(size_t index, const Value** out_value) const; |
420 bool Get(size_t index, Value** out_value); | 418 bool Get(size_t index, Value** out_value); |
421 | 419 |
422 // Convenience forms of Get(). Modifies |out_value| (and returns true) | 420 // Convenience forms of Get(). Modifies |out_value| (and returns true) |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 return out << static_cast<const Value&>(value); | 536 return out << static_cast<const Value&>(value); |
539 } | 537 } |
540 | 538 |
541 // Stream operator so that enum class Types can be used in log statements. | 539 // Stream operator so that enum class Types can be used in log statements. |
542 BASE_EXPORT std::ostream& operator<<(std::ostream& out, | 540 BASE_EXPORT std::ostream& operator<<(std::ostream& out, |
543 const Value::Type& type); | 541 const Value::Type& type); |
544 | 542 |
545 } // namespace base | 543 } // namespace base |
546 | 544 |
547 #endif // BASE_VALUES_H_ | 545 #endif // BASE_VALUES_H_ |
OLD | NEW |