| OLD | NEW |
| 1 // Copyright 2014 The Crashpad Authors. All rights reserved. | 1 // Copyright 2014 The Crashpad Authors. All rights reserved. |
| 2 // | 2 // |
| 3 // Licensed under the Apache License, Version 2.0 (the "License"); | 3 // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 // you may not use this file except in compliance with the License. | 4 // you may not use this file except in compliance with the License. |
| 5 // You may obtain a copy of the License at | 5 // You may obtain a copy of the License at |
| 6 // | 6 // |
| 7 // http://www.apache.org/licenses/LICENSE-2.0 | 7 // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 // | 8 // |
| 9 // Unless required by applicable law or agreed to in writing, software | 9 // Unless required by applicable law or agreed to in writing, software |
| 10 // distributed under the License is distributed on an "AS IS" BASIS, | 10 // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 // See the License for the specific language governing permissions and | 12 // See the License for the specific language governing permissions and |
| 13 // limitations under the License. | 13 // limitations under the License. |
| 14 | 14 |
| 15 #include "snapshot/mac/mach_o_image_annotations_reader.h" | 15 #include "snapshot/mac/mach_o_image_annotations_reader.h" |
| 16 | 16 |
| 17 #include <mach-o/loader.h> | 17 #include <mach-o/loader.h> |
| 18 #include <mach/mach.h> | 18 #include <mach/mach.h> |
| 19 | 19 |
| 20 #include <utility> |
| 21 |
| 20 #include "base/logging.h" | 22 #include "base/logging.h" |
| 21 #include "client/crashpad_info.h" | 23 #include "client/crashpad_info.h" |
| 22 #include "client/simple_string_dictionary.h" | 24 #include "client/simple_string_dictionary.h" |
| 23 #include "snapshot/mac/mach_o_image_reader.h" | 25 #include "snapshot/mac/mach_o_image_reader.h" |
| 24 #include "snapshot/mac/process_reader.h" | 26 #include "snapshot/mac/process_reader.h" |
| 25 #include "util/mach/task_memory.h" | 27 #include "util/mach/task_memory.h" |
| 26 #include "util/stdlib/strnlen.h" | 28 #include "util/stdlib/strnlen.h" |
| 27 | 29 |
| 28 namespace crashpad { | 30 namespace crashpad { |
| 29 | 31 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 &simple_annotations[0])) { | 156 &simple_annotations[0])) { |
| 155 LOG(WARNING) << "could not read simple annotations from " << name_; | 157 LOG(WARNING) << "could not read simple annotations from " << name_; |
| 156 return; | 158 return; |
| 157 } | 159 } |
| 158 | 160 |
| 159 for (const auto& entry : simple_annotations) { | 161 for (const auto& entry : simple_annotations) { |
| 160 size_t key_length = strnlen(entry.key, sizeof(entry.key)); | 162 size_t key_length = strnlen(entry.key, sizeof(entry.key)); |
| 161 if (key_length) { | 163 if (key_length) { |
| 162 std::string key(entry.key, key_length); | 164 std::string key(entry.key, key_length); |
| 163 std::string value(entry.value, strnlen(entry.value, sizeof(entry.value))); | 165 std::string value(entry.value, strnlen(entry.value, sizeof(entry.value))); |
| 164 if (!simple_map_annotations->count(key)) { | 166 if (!simple_map_annotations->insert(std::make_pair(key, value)).second) { |
| 165 simple_map_annotations->insert( | |
| 166 std::pair<std::string, std::string>(key, value)); | |
| 167 } else { | |
| 168 LOG(INFO) << "duplicate simple annotation " << key << " in " << name_; | 167 LOG(INFO) << "duplicate simple annotation " << key << " in " << name_; |
| 169 } | 168 } |
| 170 } | 169 } |
| 171 } | 170 } |
| 172 } | 171 } |
| 173 | 172 |
| 174 } // namespace crashpad | 173 } // namespace crashpad |
| OLD | NEW |