mirror of
https://github.com/MaskRay/ccls.git
synced 2025-04-05 16:32:08 +00:00
Delete virtual bases Reader & Writer Delete unused MAKE_REFLECT_STRUCT_WRITER_AS_ARRAY Merge serializers/{json,binary}.hh into serializer.{hh,cc} MAKE_REFLECT_STRUCT => REFLECT_STRUCT MAKE_REFLECT_TYPE_PROXY => REFLECT_UNDERLYING
48 lines
1.3 KiB
C++
48 lines
1.3 KiB
C++
/* Copyright 2017-2018 ccls Authors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
|
|
#include "message_handler.hh"
|
|
#include "pipeline.hh"
|
|
#include "project.hh"
|
|
#include "sema_manager.hh"
|
|
#include "working_files.hh"
|
|
|
|
#include <queue>
|
|
#include <unordered_set>
|
|
|
|
namespace ccls {
|
|
namespace {
|
|
struct Param {
|
|
bool dependencies = true;
|
|
std::vector<std::string> whitelist;
|
|
std::vector<std::string> blacklist;
|
|
};
|
|
REFLECT_STRUCT(Param, dependencies, whitelist, blacklist);
|
|
} // namespace
|
|
|
|
void MessageHandler::ccls_reload(JsonReader &reader) {
|
|
Param param;
|
|
Reflect(reader, param);
|
|
// Send index requests for every file.
|
|
if (param.whitelist.empty() && param.blacklist.empty()) {
|
|
vfs->Clear();
|
|
db->clear();
|
|
project->Index(wfiles, RequestId());
|
|
manager->Clear();
|
|
return;
|
|
}
|
|
}
|
|
} // namespace ccls
|