Skip to content

Commit

Permalink
Reflect string_view and fix workspace/symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
MaskRay committed Feb 1, 2018
1 parent 0d715e7 commit 642975e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
8 changes: 4 additions & 4 deletions src/messages/workspace_symbol.cc
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ gap_penalty(k+1, j) + score[j] : k < j))
The first dimension can be suppressed since we do not need a matching scheme,
which reduces the space complexity from O(N*M) to O(M)
*/
int FuzzyEvaluate(std::string_view pattern,
std::string_view str,
int FuzzyEvaluate(const std::string& pattern,
const std::string& str,
std::vector<int>& score,
std::vector<int>& dp) {
bool pfirst = true, // aligning the first character of pattern
Expand Down Expand Up @@ -204,7 +204,7 @@ struct WorkspaceSymbolHandler : BaseMessageHandler<Ipc_WorkspaceSymbol> {
for (int i = 0; i < db->detailed_names.size(); ++i) {
if (db->detailed_names[i].find(query) != std::string::npos) {
// Do not show the same entry twice.
if (!inserted_results.insert(std::string(db->detailed_names[i])).second)
if (!inserted_results.insert(db->detailed_names[i]).second)
continue;

if (InsertSymbolIntoResult(db, working_files, db->symbols[i],
Expand All @@ -227,7 +227,7 @@ struct WorkspaceSymbolHandler : BaseMessageHandler<Ipc_WorkspaceSymbol> {
for (int i = 0; i < db->short_names.size(); ++i) {
if (SubsequenceMatch(query_without_space, db->short_names[i])) {
// Do not show the same entry twice.
if (!inserted_results.insert(std::string(db->detailed_names[i])).second)
if (!inserted_results.insert(db->detailed_names[i]).second)
continue;

if (InsertSymbolIntoResult(db, working_files, db->symbols[i],
Expand Down
4 changes: 2 additions & 2 deletions src/query.cc
Original file line number Diff line number Diff line change
Expand Up @@ -943,8 +943,8 @@ void QueryDatabase::ImportOrUpdate(
void QueryDatabase::UpdateDetailedNames(size_t* qualified_name_index,
SymbolKind kind,
size_t symbol_index,
std::string_view short_name,
std::string_view detailed_name) {
const std::string& short_name,
const std::string& detailed_name) {
if (*qualified_name_index == -1) {
short_names.push_back(short_name);
detailed_names.push_back(detailed_name);
Expand Down
8 changes: 4 additions & 4 deletions src/query.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,8 +363,8 @@ MAKE_HASHABLE(NormalizedPath, t.path);
struct QueryDatabase {
// Indicies between lookup vectors are related to symbols, ie, index 5 in
// |detailed_names| matches index 5 in |symbols|.
std::vector<std::string_view> detailed_names;
std::vector<std::string_view> short_names;
std::vector<std::string> detailed_names;
std::vector<std::string> short_names;
std::vector<SymbolIdx> symbols;

// Raw data storage. Accessible via SymbolIdx instances.
Expand All @@ -390,8 +390,8 @@ struct QueryDatabase {
void UpdateDetailedNames(size_t* qualified_name_index,
SymbolKind kind,
size_t symbol_index,
std::string_view short_name,
std::string_view detailed_name);
const std::string& short_name,
const std::string& detailed_name);

// Query the indexing structure to look up symbol id for given Usr.
optional<QueryFileId> GetQueryFileIdFromPath(const std::string& path);
Expand Down
5 changes: 4 additions & 1 deletion src/serializer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ void Reflect(Reader&, std::string_view&) {
assert(0);
}
void Reflect(Writer& visitor, std::string_view& data) {
visitor.String(&data[0], (rapidjson::SizeType)data.size());
if (data.empty())
visitor.String("");
else
visitor.String(&data[0], (rapidjson::SizeType)data.size());
}


Expand Down

0 comments on commit 642975e

Please sign in to comment.