1 //===- llvm/DebugInfod/BuildIDFetcher.cpp - Build ID fetcher --------------===//
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 //===----------------------------------------------------------------------===//
10 /// This file defines a DIFetcher implementation for obtaining debug info
13 //===----------------------------------------------------------------------===//
15 #include "llvm/Debuginfod/BuildIDFetcher.h"
17 #include "llvm/Debuginfod/Debuginfod.h"
21 std::optional
<std::string
>
22 DebuginfodFetcher::fetch(ArrayRef
<uint8_t> BuildID
) const {
23 if (std::optional
<std::string
> Path
= BuildIDFetcher::fetch(BuildID
))
24 return std::move(*Path
);
26 Expected
<std::string
> PathOrErr
= getCachedOrDownloadDebuginfo(BuildID
);
29 consumeError(PathOrErr
.takeError());