1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
|
/*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Json.cpp
* A simple set of classes for generating JSON.
* See http://www.json.org/
* Copyright (C) 2012 Simon Newton
*/
#include <math.h>
#include <string>
#include <limits>
#include "ola/stl/STLUtils.h"
#include "ola/web/Json.h"
namespace ola {
namespace web {
using std::ostream;
using std::ostringstream;
using std::string;
namespace {
class ObjectCastVisitor : public JsonValueVisitorInterface {
public:
ObjectCastVisitor() : m_obj(NULL) {}
void Visit(JsonString *value) { (void) value; }
void Visit(JsonBool *value) { (void) value; }
void Visit(JsonNull *value) { (void) value; }
void Visit(JsonRawValue *value) { (void) value; }
void Visit(JsonObject *value) { m_obj = value; }
void Visit(JsonArray *value) { (void) value; }
void Visit(JsonUInt *value) { (void) value; }
void Visit(JsonUInt64 *value) { (void) value; }
void Visit(JsonInt *value) { (void) value; }
void Visit(JsonInt64 *value) { (void) value; }
void Visit(JsonDouble *value) { (void) value; }
JsonObject *Object() { return m_obj; }
private:
JsonObject *m_obj;
};
class ArrayCastVisitor : public JsonValueVisitorInterface {
public:
ArrayCastVisitor() : m_array(NULL) {}
void Visit(JsonString *value) { (void) value; }
void Visit(JsonBool *value) { (void) value; }
void Visit(JsonNull *value) { (void) value; }
void Visit(JsonRawValue *value) { (void) value; }
void Visit(JsonObject *value) { (void) value; }
void Visit(JsonArray *value) { m_array = value; }
void Visit(JsonUInt *value) { (void) value; }
void Visit(JsonUInt64 *value) { (void) value; }
void Visit(JsonInt *value) { (void) value; }
void Visit(JsonInt64 *value) { (void) value; }
void Visit(JsonDouble *value) { (void) value; }
JsonArray *Array() { return m_array; }
private:
JsonArray *m_array;
};
} // namespace
JsonValue* JsonValue::LookupElement(const JsonPointer &pointer) {
JsonPointer::Iterator iter = pointer.begin();
return LookupElementWithIter(&iter);
}
JsonValue* JsonLeafValue::LookupElementWithIter(
JsonPointer::Iterator *iterator) {
if (!iterator->IsValid() || !iterator->AtEnd()) {
return NULL;
}
(*iterator)++; // increment to move past the end.
return this;
}
// Integer equality functions
namespace {
/*
* This isn't pretty but it works. The original version used
* numeric_limits::is_signed, numeric_limits::digits & numeric_limits::is_exact
* to reduce the amount of code. However I couldn't get it to work without
* signed vs unsigned warnings in gcc.
*/
template <typename T1, typename T2>
int CompareNumbers(T1 a, T2 b);
template <>
int CompareNumbers(uint32_t a, uint32_t b) {
return (a < b) ? -1 : (a > b);
}
template <>
int CompareNumbers(uint32_t a, int32_t b) {
if (b < 0) {
return 1;
}
return (a < static_cast<uint32_t>(b)) ? -1 : (a > static_cast<uint32_t>(b));
}
template <>
int CompareNumbers(uint32_t a, uint64_t b) {
return (static_cast<uint64_t>(a) < b) ? -1 : (static_cast<uint64_t>(a) > b);
}
template <>
int CompareNumbers(uint32_t a, int64_t b) {
if (b < 0) {
return 1;
}
return (static_cast<int64_t>(a) < b) ? -1 : (static_cast<int64_t>(a) > b);
}
template <>
int CompareNumbers(uint32_t a, double b) {
return (static_cast<double>(a) < b) ? -1 : (static_cast<double>(a) > b);
}
template <>
int CompareNumbers(int32_t a, uint32_t b) {
if (a < 0) {
return -1;
}
return (static_cast<uint32_t>(a) < b) ? -1 : (static_cast<uint32_t>(a) > b);
}
template <>
int CompareNumbers(int32_t a, int32_t b) {
return (a < b) ? -1 : (a > b);
}
template <>
int CompareNumbers(int32_t a, uint64_t b) {
if (a < 0) {
return -1;
}
return (static_cast<uint64_t>(a) < b) ? -1 : (static_cast<uint64_t>(a) > b);
}
template <>
int CompareNumbers(int32_t a, int64_t b) {
return (static_cast<int64_t>(a) < b) ? -1 : (static_cast<int64_t>(a) > b);
}
template <>
int CompareNumbers(int32_t a, double b) {
return (static_cast<double>(a) < b) ? -1 : (static_cast<double>(a) > b);
}
template <>
int CompareNumbers(uint64_t a, uint32_t b) {
return (a < static_cast<uint64_t>(b)) ? -1 : (a > static_cast<uint64_t>(b));
}
template <>
int CompareNumbers(uint64_t a, int32_t b) {
if (b < 0) {
return 1;
}
return (a < static_cast<uint64_t>(b)) ? -1 : (a > static_cast<uint64_t>(b));
}
template <>
int CompareNumbers(uint64_t a, uint64_t b) {
return (a < b) ? -1 : (a > b);
}
template <>
int CompareNumbers(uint64_t a, int64_t b) {
if (b < 0) {
return 1;
}
return (a < static_cast<uint64_t>(b)) ? -1 : (a > static_cast<uint64_t>(b));
}
template <>
int CompareNumbers(uint64_t a, double b) {
return (static_cast<double>(a) < b) ? -1 : (static_cast<double>(a) > b);
}
template <>
int CompareNumbers(int64_t a, uint32_t b) {
if (a < 0) {
return -1;
}
return (a < static_cast<int64_t>(b)) ? -1 : (a > static_cast<int64_t>(b));
}
template <>
int CompareNumbers(int64_t a, int32_t b) {
return (static_cast<int64_t>(a) < b) ? -1 : (static_cast<int64_t>(a) > b);
}
template <>
int CompareNumbers(int64_t a, uint64_t b) {
if (a < 0) {
return -1;
}
return (static_cast<uint64_t>(a) < b) ? -1 : (static_cast<uint64_t>(a) > b);
}
template <>
int CompareNumbers(int64_t a, int64_t b) {
return (a < b) ? -1 : (a > b);
}
template <>
int CompareNumbers(int64_t a, double b) {
return (static_cast<double>(a) < b) ? -1 : (static_cast<double>(a) > b);
}
template <>
int CompareNumbers(double a, uint32_t b) {
return (a < static_cast<double>(b)) ? -1 : (a > static_cast<double>(b));
}
template <>
int CompareNumbers(double a, int32_t b) {
return (a < static_cast<double>(b)) ? -1 : (a > static_cast<double>(b));
}
template <>
int CompareNumbers(double a, uint64_t b) {
return (a < static_cast<double>(b)) ? -1 : (a > static_cast<double>(b));
}
template <>
int CompareNumbers(double a, int64_t b) {
return (a < static_cast<double>(b)) ? -1 : (a > static_cast<double>(b));
}
template <>
int CompareNumbers(double a, double b) {
return (a < b) ? -1 : (a > b);
}
} // namespace
// Number equality functions
bool JsonUInt::Equals(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonUInt::Equals(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonUInt::Equals(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt::Equals(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt::Equals(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt::Equals(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonUInt64::Equals(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonUInt64::Equals(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonUInt64::Equals(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt64::Equals(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt64::Equals(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
bool JsonInt64::Equals(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value()) == 0;
}
// Number inequality functions
int JsonUInt::Compare(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt::Compare(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt::Compare(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt::Compare(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt::Compare(const JsonDouble &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt::Compare(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt::Compare(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt::Compare(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt::Compare(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt::Compare(const JsonDouble &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt64::Compare(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt64::Compare(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt64::Compare(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt64::Compare(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonUInt64::Compare(const JsonDouble &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt64::Compare(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt64::Compare(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt64::Compare(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt64::Compare(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonInt64::Compare(const JsonDouble &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonDouble::Compare(const JsonUInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonDouble::Compare(const JsonInt &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonDouble::Compare(const JsonUInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonDouble::Compare(const JsonInt64 &other) const {
return CompareNumbers(m_value, other.Value());
}
int JsonDouble::Compare(const JsonDouble &other) const {
return CompareNumbers(m_value, other.Value());
}
bool JsonUInt::FactorOf(const JsonUInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt::FactorOf(const JsonInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt::FactorOf(const JsonUInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt::FactorOf(const JsonInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt::FactorOf(const JsonDouble &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonInt::FactorOf(const JsonUInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt::FactorOf(const JsonInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt::FactorOf(const JsonUInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt::FactorOf(const JsonInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt::FactorOf(const JsonDouble &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonUInt64::FactorOf(const JsonUInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt64::FactorOf(const JsonInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt64::FactorOf(const JsonUInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt64::FactorOf(const JsonInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonUInt64::FactorOf(const JsonDouble &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonInt64::FactorOf(const JsonUInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt64::FactorOf(const JsonInt &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt64::FactorOf(const JsonUInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt64::FactorOf(const JsonInt64 &value) const {
return value.Value() % m_value == 0;
}
bool JsonInt64::FactorOf(const JsonDouble &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonDouble::FactorOf(const JsonUInt &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonDouble::FactorOf(const JsonInt &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonDouble::FactorOf(const JsonUInt64 &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonDouble::FactorOf(const JsonInt64 &value) const {
return fmod(value.Value(), m_value) == 0;
}
bool JsonDouble::FactorOf(const JsonDouble &value) const {
return fmod(value.Value(), m_value) == 0;
}
JsonDouble::JsonDouble(double value)
: m_value(value) {
ostringstream str;
str << value;
m_as_string = str.str();
}
JsonDouble::JsonDouble(const DoubleRepresentation &rep) {
AsDouble(rep, &m_value);
m_as_string = AsString(rep);
}
bool JsonDouble::AsDouble(const DoubleRepresentation &rep, double *out) {
// TODO(simon): Check the limits here.
double d = rep.fractional;
while (d >= 1.0) {
d /= 10.0;
}
for (unsigned int i = 0; i < rep.leading_fractional_zeros; i++) {
d /= 10;
}
d += rep.full;
d *= pow(10, rep.exponent);
if (rep.is_negative && d != 0.0) {
d *= -1;
}
*out = d;
return true;
}
string JsonDouble::AsString(const DoubleRepresentation &rep) {
// Populate the string member
if (rep.full == 0 && rep.fractional == 0) {
return "0";
}
ostringstream output;
if (rep.is_negative) {
output << "-";
}
output << rep.full;
if (rep.fractional) {
output << ".";
if (rep.leading_fractional_zeros) {
output << string(rep.leading_fractional_zeros, '0');
}
output << rep.fractional;
}
if (rep.exponent) {
output << "e" << rep.exponent;
}
return output.str();
}
JsonObject::~JsonObject() {
STLDeleteValues(&m_members);
}
JsonValue* JsonObject::LookupElementWithIter(JsonPointer::Iterator *iterator) {
if (!iterator->IsValid()) {
return NULL;
}
if (iterator->AtEnd()) {
return this;
}
const string token = **iterator;
(*iterator)++;
JsonValue *value = STLFindOrNull(m_members, token);
if (value) {
return value->LookupElementWithIter(iterator);
} else {
return NULL;
}
}
bool JsonObject::Equals(const JsonObject &other) const {
if (m_members.size() != other.m_members.size()) {
return false;
}
MemberMap::const_iterator our_iter = m_members.begin();
MemberMap::const_iterator other_iter = other.m_members.begin();
for (; our_iter != m_members.end() && other_iter != other.m_members.end();
our_iter++, other_iter++) {
if (our_iter->first != other_iter->first ||
*(our_iter->second) != *(other_iter->second)) {
return false;
}
}
return true;
}
void JsonObject::Add(const string &key, const string &value) {
STLReplaceAndDelete(&m_members, key, new JsonString(value));
}
void JsonObject::Add(const string &key, const char *value) {
Add(key, string(value));
}
void JsonObject::Add(const string &key, unsigned int i) {
STLReplaceAndDelete(&m_members, key, new JsonUInt(i));
}
void JsonObject::Add(const string &key, int i) {
STLReplaceAndDelete(&m_members, key, new JsonInt(i));
}
void JsonObject::Add(const string &key, double d) {
STLReplaceAndDelete(&m_members, key, new JsonDouble(d));
}
void JsonObject::Add(const string &key, bool value) {
STLReplaceAndDelete(&m_members, key, new JsonBool(value));
}
void JsonObject::Add(const string &key) {
STLReplaceAndDelete(&m_members, key, new JsonNull());
}
void JsonObject::AddRaw(const string &key, const string &value) {
STLReplaceAndDelete(&m_members, key, new JsonRawValue(value));
}
bool JsonObject::Remove(const string &key) {
return STLRemoveAndDelete(&m_members, key);
}
bool JsonObject::ReplaceValue(const string &key, JsonValue *value) {
MemberMap::iterator iter = m_members.find(key);
if (iter == m_members.end()) {
delete value;
return false;
} else {
delete iter->second;
iter->second = value;
return true;
}
}
JsonObject* JsonObject::AddObject(const string &key) {
JsonObject *obj = new JsonObject();
STLReplaceAndDelete(&m_members, key, obj);
return obj;
}
JsonArray* JsonObject::AddArray(const string &key) {
JsonArray *array = new JsonArray();
STLReplaceAndDelete(&m_members, key, array);
return array;
}
void JsonObject::AddValue(const string &key, JsonValue *value) {
STLReplaceAndDelete(&m_members, key, value);
}
JsonValue* JsonObject::Clone() const {
JsonObject *object = new JsonObject();
MemberMap::const_iterator iter = m_members.begin();
for (; iter != m_members.end(); ++iter) {
object->AddValue(iter->first, iter->second->Clone());
}
return object;
}
void JsonObject::VisitProperties(JsonObjectPropertyVisitor *visitor) const {
MemberMap::const_iterator iter = m_members.begin();
for (; iter != m_members.end(); ++iter) {
visitor->VisitProperty(iter->first, *(iter->second));
}
}
JsonArray::~JsonArray() {
STLDeleteElements(&m_values);
}
JsonValue* JsonArray::LookupElementWithIter(JsonPointer::Iterator *iterator) {
if (!iterator->IsValid()) {
return NULL;
}
if (iterator->AtEnd()) {
return this;
}
unsigned int index;
if (!StringToInt(**iterator, &index, true)) {
(*iterator)++;
return NULL;
}
(*iterator)++;
if (index < m_values.size()) {
return m_values[index]->LookupElementWithIter(iterator);
} else {
return NULL;
}
}
bool JsonArray::Equals(const JsonArray &other) const {
if (m_values.size() != other.m_values.size()) {
return false;
}
ValuesVector::const_iterator our_iter = m_values.begin();
ValuesVector::const_iterator other_iter = other.m_values.begin();
for (; our_iter != m_values.end() && other_iter != other.m_values.end();
our_iter++, other_iter++) {
if (**our_iter != **other_iter) {
return false;
}
}
return true;
}
bool JsonArray::RemoveElementAt(uint32_t index) {
if (index < m_values.size()) {
ValuesVector::iterator iter = m_values.begin() + index;
delete *iter;
m_values.erase(iter);
return true;
}
return false;
}
bool JsonArray::ReplaceElementAt(uint32_t index, JsonValue *value) {
if (index < m_values.size()) {
ValuesVector::iterator iter = m_values.begin() + index;
delete *iter;
*iter = value;
return true;
}
// Ownership is transferred, so it's up to us to delete it.
delete value;
return false;
}
bool JsonArray::InsertElementAt(uint32_t index, JsonValue *value) {
if (index < m_values.size()) {
ValuesVector::iterator iter = m_values.begin() + index;
m_values.insert(iter, value);
return true;
}
// Ownership is transferred, so it's up to us to delete it.
delete value;
return false;
}
JsonValue* JsonArray::Clone() const {
JsonArray *array = new JsonArray();
ValuesVector::const_iterator iter = m_values.begin();
for (; iter != m_values.end(); iter++) {
array->AppendValue((*iter)->Clone());
}
return array;
}
const JsonValue *JsonArray::ElementAt(unsigned int i) const {
if (i < m_values.size()) {
return m_values[i];
} else {
return NULL;
}
}
JsonObject* ObjectCast(JsonValue *value) {
// Benchmarks for 100M operations
// dynamic_cast<> : 1.8s
// Type() method & static_cast<>: 0.39s
// typeip(value) == .. & static_cast<> : 0.34s
// &typeif(value) == .. &static_cast<>: 0.30s
// Visitor pattern : 2.18s
//
// The visitor pattern is more costly since it requires 2 vtable lookups.
// If performance becomes an issue we should consider static_cast<> here.
ObjectCastVisitor visitor;
value->Accept(&visitor);
return visitor.Object();
}
JsonArray* ArrayCast(JsonValue *value) {
ArrayCastVisitor visitor;
value->Accept(&visitor);
return visitor.Array();
}
// operator<<
std::ostream& operator<<(std::ostream &os, const JsonString &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonUInt &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonInt &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonUInt64 &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonInt64 &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonDouble &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonBool &value) {
return os << value.Value();
}
std::ostream& operator<<(std::ostream &os, const JsonNull &) {
return os << "null";
}
std::ostream& operator<<(std::ostream &os, const JsonRawValue &value) {
return os << value.Value();
}
} // namespace web
} // namespace ola
|