1 //===--- ProjectAware.h ------------------------------------------*- 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 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_PROJECTAWARE_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_PROJECTAWARE_H
13 #include "index/Index.h"
14 #include "support/Threading.h"
20 /// A functor to create an index for an external index specification. Functor
21 /// should perform any high latency operation in a separate thread through
22 /// AsyncTaskRunner, if set.
23 /// Spec is never `None`.
24 using IndexFactory
= std::function
<std::unique_ptr
<SymbolIndex
>(
25 const Config::ExternalIndexSpec
&, AsyncTaskRunner
*)>;
27 /// Returns an index that answers queries using external indices. IndexFactory
28 /// specifies how to generate an index from an external source. If \p Sync is
29 /// set, index won't own any asnyc task runner.
30 /// IndexFactory must be injected because this code cannot depend on the remote
32 std::unique_ptr
<SymbolIndex
> createProjectAwareIndex(IndexFactory
, bool Sync
);