Kevin Rocard | 93250d1 | 2012-07-19 17:48:30 +0200 | [diff] [blame] | 1 | /* |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 2 | * INTEL CONFIDENTIAL |
| 3 | * Copyright © 2011 Intel |
| 4 | * Corporation All Rights Reserved. |
| 5 | * |
| 6 | * The source code contained or described herein and all documents related to |
| 7 | * the source code ("Material") are owned by Intel Corporation or its suppliers |
| 8 | * or licensors. Title to the Material remains with Intel Corporation or its |
| 9 | * suppliers and licensors. The Material contains trade secrets and proprietary |
| 10 | * and confidential information of Intel or its suppliers and licensors. The |
| 11 | * Material is protected by worldwide copyright and trade secret laws and |
| 12 | * treaty provisions. No part of the Material may be used, copied, reproduced, |
| 13 | * modified, published, uploaded, posted, transmitted, distributed, or |
| 14 | * disclosed in any way without Intel’s prior express written permission. |
| 15 | * |
| 16 | * No license under any patent, copyright, trade secret or other intellectual |
| 17 | * property right is granted to or conferred upon you by disclosure or delivery |
| 18 | * of the Materials, either expressly, by implication, inducement, estoppel or |
| 19 | * otherwise. Any license under such intellectual property rights must be |
| 20 | * express and approved by Intel in writing. |
| 21 | * |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 22 | * CREATED: 2011-06-01 |
| 23 | * UPDATED: 2011-07-27 |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 24 | */ |
| 25 | #include "MappingData.h" |
| 26 | #include "Tokenizer.h" |
| 27 | #include <assert.h> |
| 28 | |
| 29 | CMappingData::CMappingData() |
| 30 | { |
| 31 | } |
| 32 | |
| 33 | bool CMappingData::fromXml(const CXmlElement& xmlElement, CXmlSerializingContext& serializingContext) |
| 34 | { |
| 35 | assert(xmlElement.hasAttribute("Mapping")); |
| 36 | |
| 37 | string strMapping = xmlElement.getAttributeString("Mapping"); |
| 38 | |
Patrick Benavoli | 6ba361d | 2011-08-31 11:23:24 +0200 | [diff] [blame] | 39 | Tokenizer mappingTok(strMapping, ","); |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 40 | |
| 41 | string strMappingElement; |
| 42 | |
| 43 | while (!(strMappingElement = mappingTok.next()).empty()) { |
| 44 | |
Kevin Rocard | 7c7dc29 | 2012-07-30 15:46:09 +0200 | [diff] [blame] | 45 | string::size_type iFistDelimiterOccurrence = strMappingElement.find_first_of(':'); |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 46 | |
Kevin Rocard | 7c7dc29 | 2012-07-30 15:46:09 +0200 | [diff] [blame] | 47 | string strKey, strValue; |
| 48 | |
| 49 | if (iFistDelimiterOccurrence == string::npos) { |
| 50 | |
| 51 | // There is no delimiter in the mapping field, |
| 52 | // it means that no value has been provided |
| 53 | strKey = strMappingElement; |
| 54 | strValue = ""; |
| 55 | |
| 56 | } else { |
| 57 | |
| 58 | // Get mapping key |
| 59 | strKey = strMappingElement.substr(0, iFistDelimiterOccurrence); |
| 60 | |
| 61 | // Get mapping value |
| 62 | strValue = strMappingElement.substr(iFistDelimiterOccurrence + 1); |
| 63 | |
| 64 | } |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 65 | |
| 66 | if (!addValue(strKey, strValue)) { |
| 67 | |
| 68 | serializingContext.setError("Duplicate Mapping data: Unable to process Mapping element key = " + strKey + ", value = " + strValue + " from XML element " + xmlElement.getPath()); |
| 69 | |
| 70 | return false; |
| 71 | } |
| 72 | } |
| 73 | return true; |
| 74 | } |
| 75 | |
Patrick Benavoli | 6ba361d | 2011-08-31 11:23:24 +0200 | [diff] [blame] | 76 | bool CMappingData::getValue(const string& strkey, const string*& pStrValue) const |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 77 | { |
| 78 | KeyToValueMapConstIterator it = _keyToValueMap.find(strkey); |
| 79 | |
| 80 | if (it != _keyToValueMap.end()) { |
| 81 | |
Patrick Benavoli | 6ba361d | 2011-08-31 11:23:24 +0200 | [diff] [blame] | 82 | pStrValue = &it->second; |
Patrick Benavoli | 68a9128 | 2011-08-31 11:23:23 +0200 | [diff] [blame] | 83 | |
| 84 | return true; |
| 85 | } |
| 86 | return false; |
| 87 | } |
| 88 | |
| 89 | bool CMappingData::addValue(const string& strkey, const string& strValue) |
| 90 | { |
| 91 | if (_keyToValueMap.find(strkey) != _keyToValueMap.end()) { |
| 92 | |
| 93 | return false; |
| 94 | } |
| 95 | _keyToValueMap[strkey] = strValue; |
| 96 | |
| 97 | return true; |
| 98 | } |
| 99 | |