Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Random changes. #6

Merged
merged 1 commit into from
May 8, 2018
Merged

Random changes. #6

merged 1 commit into from
May 8, 2018

Conversation

scturtle
Copy link
Contributor

@scturtle scturtle commented May 8, 2018

Refresh semantic highlight for all working files after loading the project.

IndexUpdate dummy;
dummy.file_id = -1; // trigger refresh semantic highlight
queue->on_indexed.PushBack(
Index_OnIndexed(std::move(dummy), PerformanceImportFile()), false);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about?

struct IndexUpdate {
...
  int file_id = -1;
...

Index_OnIndexed(IndexUpdate{}, PerformanceImportFile())

@@ -216,6 +224,18 @@ void QueryDb_OnIndexed(QueueManager* queue,
SemanticHighlightSymbolCache* semantic_cache,
WorkingFiles* working_files,
Index_OnIndexed* response) {

if (response->update.file_id < 0) { // dummy
Copy link
Owner

@MaskRay MaskRay May 8, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Semantic highlighting does work reliably when the project is still loading. This is because message_handler.cc uses:

    switch (sym.kind) {
      case SymbolKind::Func: {
        const QueryFunc& func = db->GetFunc(sym);
        const QueryFunc::Def* def = func.AnyDef(); ///////// definition required, declaration is ignored
        if (!def)
          continue;  // applies to for loop

Functions defined outside of the current file may not be colored correctly.
I think this patch is very promising to improve the situation!

I occasionally observe that some files are not highlighted, but I am unable to narrow it down (does not look like a forward-line out-of-range error)

I'll try this patch tomorrow on LLVM

@@ -106,8 +106,8 @@ void IncludeComplete::Rescan() {
SetThreadName("scan_includes");
Timer timer;

InsertIncludesFromDirectory(g_config->projectRoot,
false /*use_angle_brackets*/);
// InsertIncludesFromDirectory(g_config->projectRoot,
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can just be removed. (I didn't even notice this because I don't use include completion much)

https://gcc.gnu.org/onlinedocs/gcc/Directory-Options.html

g_config->index.threads =
std::max(int(std::thread::hardware_concurrency() * 0.8), 1);
}
if (g_config->index.threads == 0)
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is great!

@@ -563,6 +563,9 @@ void Project::Index(QueueManager* queue,
queue->index_request.PushBack(Index_Request(entry.filename, entry.args,
is_interactive, *content, id));
});
// dummy request to indicate that project is loaded and
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit. Capitalize.

SetTypeName(ns, referenced, nullptr, name.c_str(), param);
CXFile referenced_file;
Range spell = referenced.get_spell(&referenced_file);
if (file == referenced_file) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what problem does this check solve?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should fix wrong spell name highlight for aliased namespace. For example, namespace fs = std::experimental::filesystem in filesystem.hh. 7:11-7:13 are also highlighted in other files.

@MaskRay
Copy link
Owner

MaskRay commented May 8, 2018

Persistency + concurrency + dependency tracking + single-versioned preamble is a very tricky problem. I hope my recent simplification (refactor) to import_pipeline.cc makes it much easier to reason about. If you are interested, https://www.zhihu.com/question/276181325

@MaskRay
Copy link
Owner

MaskRay commented May 8, 2018

刪除增量更新一是對於大部分檔案沒什麼用(uses中行列號都要變化,只對尾部的修改有一點小作用,減輕主執行緒負擔;索引執行緒要寫索引到磁碟,沒有優化可言);二是對於檔案頻繁保存的使用場景,不完全更新更容易產生引用重複/丟失問題。

我把timestamp_manager刪掉也是爲了簡化考慮(clang內部必然大量檔案系統stat,libclang下游節省一點stat沒太大意義)。cache_manager幾乎刪掉是覺得這明顯增大了data race的可能

另外就是src/下細碎檔案實在太多了。看不慣 😾

@MaskRay MaskRay merged commit b55819a into MaskRay:master May 8, 2018
@MaskRay
Copy link
Owner

MaskRay commented May 8, 2018

In case you haven't watched it yet https://www.youtube.com/watch?v=BvjrZ3QioBI

It would be wonderful if two language servers can be used together, ccls for indexing (it is almost certain that they could not do it in a memory efficient manner) and clangd for completion (global completion is a nice feature)

立志好好學習clang,我早晚得用Clang C++重寫這個libclang indexer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants