Zachary Turner | cffff26 | 2015-02-10 21:17:52 +0000 | [diff] [blame] | 1 | //==- DIAEnumDebugStreams.cpp - DIA Debug Stream Enumerator impl -*- C++ -*-==// |
| 2 | // |
Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
Zachary Turner | cffff26 | 2015-02-10 21:17:52 +0000 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
Chandler Carruth | 71f308a | 2015-02-13 09:09:03 +0000 | [diff] [blame] | 9 | #include "llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h" |
Chandler Carruth | 6bda14b | 2017-06-06 11:49:48 +0000 | [diff] [blame] | 10 | #include "llvm/DebugInfo/PDB/DIA/DIADataStream.h" |
| 11 | #include "llvm/DebugInfo/PDB/PDBSymbol.h" |
Zachary Turner | cffff26 | 2015-02-10 21:17:52 +0000 | [diff] [blame] | 12 | |
| 13 | using namespace llvm; |
Zachary Turner | ec28fc3 | 2016-05-04 20:32:13 +0000 | [diff] [blame] | 14 | using namespace llvm::pdb; |
Zachary Turner | cffff26 | 2015-02-10 21:17:52 +0000 | [diff] [blame] | 15 | |
| 16 | DIAEnumDebugStreams::DIAEnumDebugStreams( |
| 17 | CComPtr<IDiaEnumDebugStreams> DiaEnumerator) |
| 18 | : Enumerator(DiaEnumerator) {} |
| 19 | |
| 20 | uint32_t DIAEnumDebugStreams::getChildCount() const { |
| 21 | LONG Count = 0; |
| 22 | return (S_OK == Enumerator->get_Count(&Count)) ? Count : 0; |
| 23 | } |
| 24 | |
| 25 | std::unique_ptr<IPDBDataStream> |
| 26 | DIAEnumDebugStreams::getChildAtIndex(uint32_t Index) const { |
| 27 | CComPtr<IDiaEnumDebugStreamData> Item; |
| 28 | VARIANT VarIndex; |
| 29 | VarIndex.vt = VT_I4; |
| 30 | VarIndex.lVal = Index; |
| 31 | if (S_OK != Enumerator->Item(VarIndex, &Item)) |
| 32 | return nullptr; |
| 33 | |
| 34 | return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item)); |
| 35 | } |
| 36 | |
| 37 | std::unique_ptr<IPDBDataStream> DIAEnumDebugStreams::getNext() { |
| 38 | CComPtr<IDiaEnumDebugStreamData> Item; |
| 39 | ULONG NumFetched = 0; |
| 40 | if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) |
| 41 | return nullptr; |
| 42 | |
| 43 | return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item)); |
| 44 | } |
| 45 | |
| 46 | void DIAEnumDebugStreams::reset() { Enumerator->Reset(); } |