Skip to content

Commit

Permalink
[clangd] Use JSON format in benchmark requests reader
Browse files Browse the repository at this point in the history
After `FuzzyFindRequest` JSON (de)serialization was introduced, it
should replace ad-hoc fuzzy-find request parsing implemented in the
IndexBenchmark driver.

Reviewed By: ilya-biryukov

Differential Revision: https://reviews.llvm.org/D51971

llvm-svn: 342137
  • Loading branch information
kirillbobyrev committed Sep 13, 2018
1 parent 64c901d commit 60be1f5
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 42 deletions.
67 changes: 31 additions & 36 deletions clang-tools-extra/clangd/benchmarks/IndexBenchmark.cpp
Expand Up @@ -19,56 +19,51 @@
#include <string>

const char *IndexFilename;
const char *LogFilename;
const char *RequestsFilename;

namespace clang {
namespace clangd {
namespace {

std::unique_ptr<clang::clangd::SymbolIndex> buildMem() {
return clang::clangd::loadIndex(IndexFilename, {}, false);
std::unique_ptr<SymbolIndex> buildMem() {
return loadIndex(IndexFilename, {}, false);
}

std::unique_ptr<clang::clangd::SymbolIndex> buildDex() {
return clang::clangd::loadIndex(IndexFilename, {}, true);
std::unique_ptr<SymbolIndex> buildDex() {
return loadIndex(IndexFilename, {}, true);
}

// This function processes user-provided Log file with fuzzy find requests in
// the following format:
//
// fuzzyFind("UnqualifiedName", scopes=["clang::", "clang::clangd::"])
//
// It constructs vector of FuzzyFindRequests which is later used for the
// benchmarks.
std::vector<clang::clangd::FuzzyFindRequest> extractQueriesFromLogs() {
llvm::Regex RequestMatcher("fuzzyFind\\(\"([a-zA-Z]*)\", scopes=\\[(.*)\\]");
llvm::SmallVector<llvm::StringRef, 200> Matches;
std::ifstream InputStream(LogFilename);
// Reads JSON array of serialized FuzzyFindRequest's from user-provided file.
std::vector<FuzzyFindRequest> extractQueriesFromLogs() {
std::ifstream InputStream(RequestsFilename);
std::string Log((std::istreambuf_iterator<char>(InputStream)),
std::istreambuf_iterator<char>());
llvm::StringRef Temporary(Log);
llvm::SmallVector<llvm::StringRef, 200> Strings;
Temporary.split(Strings, '\n');

clang::clangd::FuzzyFindRequest R;
R.MaxCandidateCount = 100;
std::vector<FuzzyFindRequest> Requests;
auto JSONArray = llvm::json::parse(Log);

llvm::SmallVector<llvm::StringRef, 200> CommaSeparatedValues;
// Panic if the provided file couldn't be parsed.
if (!JSONArray) {
llvm::errs() << "Error when parsing JSON requests file: "
<< llvm::toString(JSONArray.takeError());
exit(1);
}
if (!JSONArray->getAsArray()) {
llvm::errs() << "Error: top-level value is not a JSON array: " << Log
<< '\n';
exit(1);
}

std::vector<clang::clangd::FuzzyFindRequest> RealRequests;
for (auto Line : Strings) {
if (RequestMatcher.match(Line, &Matches)) {
R.Query = Matches[1];
CommaSeparatedValues.clear();
Line.split(CommaSeparatedValues, ',');
R.Scopes.clear();
for (auto C : CommaSeparatedValues) {
R.Scopes.push_back(C);
}
RealRequests.push_back(R);
for (const auto &Item : *JSONArray->getAsArray()) {
FuzzyFindRequest Request;
// Panic if the provided file couldn't be parsed.
if (!fromJSON(Item, Request)) {
llvm::errs() << "Error when deserializing request: " << Item << '\n';
exit(1);
}
Requests.push_back(Request);
}
return RealRequests;
return Requests;
}

static void MemQueries(benchmark::State &State) {
Expand Down Expand Up @@ -100,12 +95,12 @@ BENCHMARK(DexQueries);
int main(int argc, char *argv[]) {
if (argc < 3) {
llvm::errs() << "Usage: " << argv[0]
<< " global-symbol-index.yaml fuzzy-find-requests.log "
<< " global-symbol-index.yaml requests.json "
"BENCHMARK_OPTIONS...\n";
return -1;
}
IndexFilename = argv[1];
LogFilename = argv[2];
RequestsFilename = argv[2];
// Trim first two arguments of the benchmark invocation.
argv += 3;
argc -= 3;
Expand Down
7 changes: 7 additions & 0 deletions clang-tools-extra/test/clangd/Inputs/requests.json
@@ -0,0 +1,7 @@
[{"MaxCandidateCount":100,"ProximityPaths":["/usr/home/user/clang-tools-extra/clangd/benchmarks/IndexBenchmark.cpp"],"Query":"OMP","RestrictForCodeCompletion":true,"Scopes":["clang::"]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"s","RestrictForCodeCompletion":true,"Scopes":["llvm::", ""]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"sy","RestrictForCodeCompletion":true,"Scopes":["llvm::", ""]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"sys","RestrictForCodeCompletion":true,"Scopes":["llvm::", ""]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"sys","RestrictForCodeCompletion":true,"Scopes":["llvm::", ""]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"Dex","RestrictForCodeCompletion":true,"Scopes":["clang::clangd::", "clang::", "clang::clangd::dex::"]},
{"MaxCandidateCount":100,"ProximityPaths":[],"Query":"Variable","RestrictForCodeCompletion":true,"Scopes":[""]}]
5 changes: 0 additions & 5 deletions clang-tools-extra/test/clangd/Inputs/requests.log

This file was deleted.

4 changes: 3 additions & 1 deletion clang-tools-extra/test/clangd/index-tools.test
@@ -1,3 +1,5 @@
# RUN: clangd-indexer %p/Inputs/BenchmarkSource.cpp -- -I%p/Inputs > %t.index
# FIXME: By default, benchmarks are excluded from the list of default targets hence not built. Find a way to depend on benchmarks to run the next command.
# RUN: if [ -f %clangd-benchmark-dir/IndexBenchmark ]; then %clangd-benchmark-dir/IndexBenchmark %t.index %p/Inputs/requests.log --benchmark_min_time=0.01 ; fi
# RUN: if [ -f %clangd-benchmark-dir/IndexBenchmark ]; then %clangd-benchmark-dir/IndexBenchmark %t.index %p/Inputs/requests.json --benchmark_min_time=0.01 ; fi
# Pass invalid JSON file and check that IndexBenchmark fails to parse it.
# RUN: if [ -f %clangd-benchmark-dir/IndexBenchmark ]; then not %clangd-benchmark-dir/IndexBenchmark %t.index %t --benchmark_min_time=0.01 ; fi

0 comments on commit 60be1f5

Please sign in to comment.