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 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987
|
/*****************************************************************************
*
* Copyright (c) 2000 - 2017, Lawrence Livermore National Security, LLC
* Produced at the Lawrence Livermore National Laboratory
* LLNL-CODE-442911
* All rights reserved.
*
* This file is part of VisIt. For details, see https://visit.llnl.gov/. The
* full copyright notice is contained in the file COPYRIGHT located at the root
* of the VisIt distribution or at http://www.llnl.gov/visit/copyright.html.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the disclaimer (as noted below) in the
* documentation and/or other materials provided with the distribution.
* - Neither the name of the LLNS/LLNL nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY,
* LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
* DAMAGE.
*
*****************************************************************************/
#include <MapNode.h>
#include <Connection.h>
#include <visitstream.h>
#include <cstdlib>
using namespace std;
// ****************************************************************************
// Method: MapNode::MapNode
//
// Purpose:
//
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
MapNode::MapNode()
{;}
MapNode::MapNode(const MapNode &node)
: Variant(node)
{
// copy entires
entries = node.entries;
}
MapNode::MapNode(const XMLNode &node,bool decodeString)
{
SetValue(node,decodeString);
}
MapNode::MapNode(const XMLNode *node, bool decodeString)
{
SetValue(*node,decodeString);
}
MapNode::MapNode(const JSONNode &node, bool decodeString)
{
SetValue(node, decodeString);
}
MapNode::MapNode(const JSONNode *node, bool decodeString)
{
SetValue(*node,decodeString);
}
MapNode::MapNode(const JSONNode &node,const JSONNode &metadata, bool decodeString)
{
SetValue(node, metadata, decodeString);
}
MapNode::MapNode(const JSONNode *node, const JSONNode* metadata, bool decodeString)
{
SetValue(*node,*metadata,decodeString);
}
// ****************************************************************************
// Method: MapNode::~MapNode
//
// Purpose:
// MapNode destructor.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
MapNode::~MapNode()
{
// cleanout nodes
}
// ****************************************************************************
// Method: MapNode::operator=(avtPolynomial)
//
// Purpose:
// MapNode assignment operator.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// Modifications:
// Brad Whitlock, Mon Jan 12 10:50:14 PST 2009
// Clear out the entries node before calling Variant::SetValue.
//
// ****************************************************************************
MapNode &
MapNode::operator=(const MapNode &node)
{
// copy entries
if(this != &node)
{
if(node.entries.size() > 0)
entries = node.entries;
else
{
entries.clear();
Variant::SetValue(node);
}
}
return *this;
}
MapNode &
MapNode::operator=(bool val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(char val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(unsigned char val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const char *val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(int val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(long val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(float val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(double val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const string& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const boolVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const charVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const unsignedCharVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const intVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const longVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const floatVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const doubleVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const stringVector& val)
{
Variant::operator=(val);
return *this;
}
MapNode &
MapNode::operator=(const Variant& val)
{
Variant::operator=(val);
return *this;
}
// ****************************************************************************
// Method: MapNode::operator[]
//
// Purpose:
// Dictionary access operator.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
MapNode &
MapNode::operator[](const string &key)
{
return entries[key];
}
// ****************************************************************************
// Method: MapNode::GetEntry
//
// Purpose:
// MapNode entry access.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
MapNode *
MapNode::GetEntry(const string &key)
{
return &entries[key];
}
// ****************************************************************************
// Method: MapNode::GetEntry
//
// Purpose:
// MapNode entry access.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
const MapNode *
MapNode::GetEntry(const string &key) const
{
map<string,MapNode>::const_iterator itr = entries.find(key);
if(itr == entries.end())
return NULL;
else
return &itr->second;
}
// ****************************************************************************
// Method: MapNode::HasEntry
//
// Purpose:
// Checks if the map has an entry for the given key.
//
// Programmer: Cyrus Harrison
// Creation: December 10, 2007
//
// ****************************************************************************
bool
MapNode::HasEntry(const string &key) const
{
return entries.find(key) != entries.end();
}
// ****************************************************************************
// Method: MapNode::HasNumericEntry
//
// Purpose:
// Checks if the map has a numeric entry for the given key.
//
// Programmer: Kathleen Biagas
// Creation: January 9, 2012
//
// ****************************************************************************
bool
MapNode::HasNumericEntry(const string &key) const
{
map<string,MapNode>::const_iterator itr = entries.find(key);
if(itr == entries.end())
return false;
else
return itr->second.IsNumeric();
}
// ****************************************************************************
// Method: MapNode::HasNumericVectorEntry
//
// Purpose:
// Checks if the map has a numeric vector entry for the given key.
//
// Programmer: Kathleen Biagas
// Creation: January 9, 2012
//
// ****************************************************************************
bool
MapNode::HasNumericVectorEntry(const string &key) const
{
map<string,MapNode>::const_iterator itr = entries.find(key);
if(itr == entries.end())
return false;
else
return itr->second.IsNumericVector();
}
// ****************************************************************************
// Method: MapNode::GetEntryNames
//
// Purpose:
// Returns all map key names in the result vector.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
void
MapNode::GetEntryNames(stringVector &result) const
{
result.clear();
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
result.push_back(itr->first);
}
// ****************************************************************************
// Method: MapNode::Reset
//
// Purpose:
// Reset the mapnode.
//
// Programmer: Brad Whitlock
// Creation: Fri Jan 9 10:14:09 PST 2009
//
// Modifications:
//
// ****************************************************************************
void
MapNode::Reset()
{
entries.clear();
Variant::Reset();
}
// ****************************************************************************
// Method: MapNode::ToXML
//
// Purpose:
// Creates an xml string representation of this node.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
string
MapNode::ToXML(bool encodeToString) const
{
return ToXMLNode(encodeToString).ToString();
}
string
MapNode::ToJSON(bool encodeToString) const
{
return ToJSONNode(encodeToString).ToString();
}
// ****************************************************************************
// Method: MapNode::ToXMLNode
//
// Purpose:
// Creates an xml representation of this node.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// ****************************************************************************
XMLNode
MapNode::ToXMLNode(bool encodeString) const
{
XMLNode node;
node.Name() = "map_node";
// save children if not a value node
if(entries.size() > 0 && Type() == 0)
{
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
{
XMLNode *child = node.AddChild(itr->second.ToXMLNode(encodeString));
child->Attribute("key") = itr->first;
}
}
else // save value, if we have a value
{
node.AddChild(Variant::ToXMLNode(encodeString));
}
return node;
}
/// JSON has fewer types to map, so a meta structure is added to be able
/// reverse the mapping, the metastructure contains type information for each
/// item..
/// parent = { contents = object, metadata = object }
/// SetValue can now use this to appropriately map back to VisIt internal structures..
JSONNode
MapNode::ToJSONNode(bool encodeString,bool id) const
{
JSONNode parent;
/// Fill out types..
parent["data"] = ToJSONNodeData(encodeString);
parent["metadata"] = ToJSONNodeMetaData(id);
return parent;
}
JSONNode
MapNode::ToJSONNodeData(bool encodeString) const
{
/// Fill out contents...
JSONNode node;
// save children if not a value node
if(entries.size() > 0 && Type() == 0)
{
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
node[itr->first] = itr->second.ToJSONNodeData(encodeString);
}
else // save value, if we have a value
{
node = Variant::ToJSONNode(encodeString,true);
}
return node;
}
JSONNode
MapNode::ToJSONNodeMetaData(bool id) const
{
JSONNode node;
// save children if not a value node
if(entries.size() > 0 && Type() == 0)
{
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
node[itr->first] = itr->second.ToJSONNodeMetaData(id);
}
else // save value, if we have a value
{
node = Variant::ToJSONNodeMetaData(id);
}
return node;
}
// ****************************************************************************
// Method: MapNode::SetValue
//
// Purpose:
// Loads a MapNode from a xml representation.
//
// Programmer: Cyrus Harrison
// Creation: December 14, 2007
//
// Modifications:
//
// Tom Fogal, Thu Aug 21 14:28:43 EDT 2008
// Remove an unused variable.
//
// ****************************************************************************
void
MapNode::SetValue(const XMLNode &node,bool decodeString)
{
entries.clear();
int nchildren = node.GetNumChildren();
if(node.Name()!="map_node" || nchildren == 0)
return; // error
// find out if we have child nodes, or if this node is a value node
if(nchildren == 1 && node.GetChild(0)->Name() == "variant")
{
Variant::SetValue(node.GetChild(0),decodeString);
}
else
{
for(int i=0;i<nchildren;i++)
{
XMLNode *child = node.GetChild(i);
// children should have a key ....
entries[child->Attribute("key")] = MapNode(child,decodeString);
}
}
}
// ****************************************************************************
// Method: Variant::SetValue
//
// Purpose:
// Sets this variant's value from an json node. The MapNode must have a
// data component and a metadata component. This is due to the fact that
// JSON has fewer components than MapNode
//
// Programmer: Hari Krishnan
// Creation: October 13, 2012
//
// Modifications:
//
// ****************************************************************************
void
MapNode::SetValue(const JSONNode &node,bool decodeString)
{
entries.clear();
if(node.GetType() != JSONNode::JSONOBJECT) return;
const JSONNode::JSONObject& object = node.GetJsonObject();
//if( object.find("data") == object.end() ||
// object.find("metadata") == object.end()) return;
/// Since JSON has fewer types than VisIt, we need a way to remap the types
/// back to mapnode, I chose to separate the data and metadata.
/// This way users can use the data object as a structure..
JSONNode data, metadata;
for(JSONNode::JSONObject::const_iterator itr = object.begin(); itr != object.end(); ++itr)
{
if(itr->first == "data")
data = itr->second;
if(itr->first == "metadata")
metadata = itr->second;
}
SetValue(data,metadata,decodeString);
}
// ****************************************************************************
// Method: Variant::SetValue
//
// Purpose:
// Sets this variant's value from an json node. The MapNode must have a
// data component and a metadata component. This is due to the fact that
// JSON has fewer components than MapNode
//
// Programmer: Hari Krishnan
// Creation: October 13, 2012
//
// Modifications:
//
// ****************************************************************************
void
MapNode::SetValue(const JSONNode& data, const JSONNode& metadata, bool decodeString)
{
int data_type = 0;
if(metadata.GetType() == JSONNode::JSONINTEGER){
data_type = metadata.GetInt();
}
else
{
const string name = metadata.GetString();
data_type = isdigit(name[0]) ? atoi(name.c_str()) :
NameToTypeID(name);
}
if(data_type == 0 && data.GetType() == JSONNode::JSONOBJECT)
{
const JSONNode::JSONObject& object = data.GetJsonObject();
const JSONNode::JSONObject& mobject = metadata.GetJsonObject();
JSONNode::JSONObject::const_iterator itr = object.begin();
JSONNode::JSONObject::const_iterator mitr = mobject.begin();
for(;itr != object.end(); ++itr,++mitr)
{
entries[itr->first] = MapNode();
entries[itr->first].SetValue(itr->second,mitr->second,decodeString);
}
}
else if(data_type == 0 && data.GetType() == JSONNode::JSONARRAY)
{
const JSONNode::JSONArray& array = data.GetArray();
const JSONNode::JSONArray& marray = metadata.GetArray();
char buffer[1024];
for(size_t i = 0; i < array.size(); ++i) {
sprintf(buffer, "%ld", i);
entries[buffer] = MapNode();
entries[buffer].SetValue(array[i], marray[i], decodeString);
}
}
else
{
if(data_type == MapNodeType) {
SetValue(data);
}
else {
Variant::SetValue(data,metadata,decodeString);
}
}
}
void
MapNode::SetValue(const JSONNode* data, const JSONNode* metadata, bool decodeString)
{
MapNode::SetValue(*data, *metadata, decodeString);
}
// ****************************************************************************
// Method: MapNode::operator ==
//
// Purpose:
// Compares 2 MapNode objects.
//
// Arguments:
// obj : The object to compare.
//
// Returns: True if the objects are equal; false otherwise.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Tue Jan 6 15:33:24 PST 2009
//
// Modifications:
//
// ****************************************************************************
bool
MapNode::operator ==(const MapNode &obj) const
{
if(Type() != obj.Type())
return false;
bool equal = false;
if(Type() == EMPTY_TYPE)
{
// Compare sizes
if(entries.size() != obj.entries.size())
return false;
// Compare keys and values
std::map<std::string,MapNode>::const_iterator it1 = entries.begin();
std::map<std::string,MapNode>::const_iterator it2 = obj.entries.begin();
for(; it1 != entries.end(); ++it1, ++it2)
{
// Compare keys. If they don't sort the same in the map then the
// maps are different.
if(it1->first != it2->first)
return false;
// recurse
if(!(it1->second == it2->second))
return false;
}
equal = true;
}
else
{
equal = Variant::operator==(obj);
}
return equal;
}
// ****************************************************************************
// Method: MapNode::CalculateMessageSize
//
// Purpose:
// Calculates the size of the message needed to store the serialized MapNode.
//
// Arguments:
// conn : The connection doing the writing.
//
// Returns: The message size.
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Tue Jan 6 15:35:48 PST 2009
//
// Modifications:
//
// ****************************************************************************
int
MapNode::CalculateMessageSize(Connection &conn) const
{
return CalculateMessageSize(&conn);
}
int
MapNode::CalculateMessageSize(Connection *conn) const
{
int messageSize = conn->IntSize(conn->DEST);
if(Type() == EMPTY_TYPE)
{
messageSize += conn->IntSize(conn->DEST);
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
{
messageSize += conn->CharSize(conn->DEST) * (itr->first.size() + 1);
messageSize += itr->second.CalculateMessageSize(conn);
}
}
else
messageSize += Variant::CalculateMessageSize(conn);
return messageSize;
}
// ****************************************************************************
// Method: MapNode::Write
//
// Purpose:
// Write a MapNode to a Connection.
//
// Arguments:
// conn : The connection to use for writing.
//
// Programmer: Brad Whitlock
// Creation: Tue Jan 6 15:36:19 PST 2009
//
// Modifications:
//
// ****************************************************************************
void
MapNode::Write(Connection &conn) const
{
Write(&conn);
}
void
MapNode::Write(Connection *conn) const
{
conn->WriteInt(Type());
if(Type() == EMPTY_TYPE)
{
// Write the number of entries
conn->WriteInt((int)entries.size());
map<string,MapNode>::const_iterator itr;
for(itr = entries.begin(); itr != entries.end(); ++itr)
{
// Write the name of the item
conn->WriteString(itr->first);
// Write the item data.
itr->second.Write(conn);
}
}
else
{
Variant::Write(conn);
}
}
// ****************************************************************************
// Method: MapNode::Read
//
// Purpose:
// Reads the MapNode from the connection.
//
// Arguments:
// conn : The connection to use for reading,.
//
// Programmer: Brad Whitlock
// Creation: Tue Jan 6 15:36:46 PST 2009
//
// Modifications:
//
// ****************************************************************************
void
MapNode::Read(Connection &conn)
{
entries.clear();
// Read the data type
int dt;
conn.ReadInt(&dt);
Init(dt);
if(dt == EMPTY_TYPE)
{
int nEntries = 0;
conn.ReadInt(&nEntries);
for(int i = 0; i < nEntries; ++i)
{
// Read the name of the item
string name;
conn.ReadString(name);
// Implicitly create the item and read its data.
entries[name].Read(conn);
}
}
else
{
Variant::Read(conn);
}
}
// ****************************************************************************
// Method: MapNode::Merge
//
// Purpose:
// This method merges 2 MapNodes together so that missing fields from one
// MapNode will get added to this MapNode.
//
// Arguments:
// obj : The MapNode to add to this MapNode.
//
// Returns:
//
// Note:
//
// Programmer: Brad Whitlock
// Creation: Fri Jan 16 12:01:50 PST 2009
//
// Modifications:
//
// ****************************************************************************
void
MapNode::Merge(const MapNode &obj)
{
if(this->operator ==(obj))
return;
if(Type() == EMPTY_TYPE)
{
if(obj.Type() == EMPTY_TYPE)
{
map<string,MapNode>::const_iterator itr, itr2;
for(itr = obj.entries.begin(); itr != obj.entries.end(); ++itr)
{
itr2 = entries.find(itr->first);
if(itr2 == entries.end())
{
// This object does not have the key we looked for so
// let's add the missing key/value pair.
entries[itr->first] = itr->second;
}
else
{
entries[itr->first].Merge(itr->second);
}
}
}
else
{
entries[TypeName()] = obj;
}
}
else
{
if(obj.Type() == EMPTY_TYPE)
{
// This is a variant and that is a mapnode
MapNode obj2(obj);
obj2.Merge(*this);
*this = obj2;
}
else
{
// Both are variants. Combine into a MapNode
MapNode merged;
if(Type() == obj.Type())
{
merged[TypeName() + "0"] = *this;
merged[obj.TypeName() + "1"] = obj;
}
else
{
merged[TypeName()] = *this;
merged[obj.TypeName()] = obj;
}
*this = merged;
}
}
}
// ****************************************************************************
// Method: MapNode::Remove
//
// Purpose:
// This method removes the entry for the given key.
//
// Arguments:
// key : The entry to remove.
//
// Programmer: Kathleen Biagas
// Creation: January 12, 2012
//
// Modifications:
//
// ****************************************************************************
void
MapNode::RemoveEntry(const std::string &key)
{
entries.erase(key);
}
|