1 //==- DIAEnumSourceFiles.cpp - DIA Source File Enumerator impl ---*- C++ -*-==//
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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h"
10 #include "llvm/DebugInfo/PDB/DIA/DIASourceFile.h"
11 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
14 using namespace llvm::pdb
;
16 DIAEnumSourceFiles::DIAEnumSourceFiles(
17 const DIASession
&PDBSession
, CComPtr
<IDiaEnumSourceFiles
> DiaEnumerator
)
18 : Session(PDBSession
), Enumerator(DiaEnumerator
) {}
20 uint32_t DIAEnumSourceFiles::getChildCount() const {
22 return (S_OK
== Enumerator
->get_Count(&Count
)) ? Count
: 0;
25 std::unique_ptr
<IPDBSourceFile
>
26 DIAEnumSourceFiles::getChildAtIndex(uint32_t Index
) const {
27 CComPtr
<IDiaSourceFile
> Item
;
28 if (S_OK
!= Enumerator
->Item(Index
, &Item
))
31 return std::unique_ptr
<IPDBSourceFile
>(new DIASourceFile(Session
, Item
));
34 std::unique_ptr
<IPDBSourceFile
> DIAEnumSourceFiles::getNext() {
35 CComPtr
<IDiaSourceFile
> Item
;
37 if (S_OK
!= Enumerator
->Next(1, &Item
, &NumFetched
))
40 return std::unique_ptr
<IPDBSourceFile
>(new DIASourceFile(Session
, Item
));
43 void DIAEnumSourceFiles::reset() { Enumerator
->Reset(); }