2012-04-15 23:28:46 -04:00
|
|
|
// Copyright (C) 2011, 2012 Strahinja Val Markovic <val@markovic.io>
|
2012-04-15 19:57:10 -04:00
|
|
|
//
|
|
|
|
// This file is part of YouCompleteMe.
|
|
|
|
//
|
|
|
|
// YouCompleteMe is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// YouCompleteMe is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
#include "IdentifierCompleter.h"
|
2012-07-06 17:06:21 -04:00
|
|
|
#include "standard.h"
|
2012-07-12 01:08:04 -04:00
|
|
|
#include "CandidateRepository.h"
|
2012-07-12 01:14:28 -04:00
|
|
|
#include "Candidate.h"
|
2012-09-06 14:37:22 -04:00
|
|
|
#include "Result.h"
|
2012-04-29 19:36:31 -04:00
|
|
|
#include "Utils.h"
|
2012-07-23 23:17:59 -04:00
|
|
|
#include "IdentifierUtils.h"
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-07-21 15:06:18 -04:00
|
|
|
#include <boost/unordered_set.hpp>
|
2012-05-06 02:48:22 -04:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <boost/make_shared.hpp>
|
2013-03-02 01:18:43 -05:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/algorithm/cxx11/any_of.hpp>
|
2012-05-06 02:48:22 -04:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-03-02 01:18:43 -05:00
|
|
|
using boost::algorithm::any_of;
|
|
|
|
using boost::algorithm::is_upper;
|
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
using boost::packaged_task;
|
|
|
|
using boost::unique_future;
|
|
|
|
using boost::shared_ptr;
|
|
|
|
using boost::thread;
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
namespace YouCompleteMe {
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-09-06 14:58:16 -04:00
|
|
|
typedef boost::function< std::vector< std::string >() >
|
2013-01-19 23:10:52 -05:00
|
|
|
FunctionReturnsStringVector;
|
2012-09-06 14:58:16 -04:00
|
|
|
|
|
|
|
|
2012-07-15 23:49:56 -04:00
|
|
|
extern const unsigned int MAX_ASYNC_THREADS = 4;
|
|
|
|
extern const unsigned int MIN_ASYNC_THREADS = 2;
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
namespace {
|
2012-05-06 02:48:22 -04:00
|
|
|
|
2013-01-23 20:23:38 -05:00
|
|
|
void QueryThreadMain(
|
2013-02-03 00:49:55 -05:00
|
|
|
IdentifierCompleter::LatestQueryTask &latest_query_task ) {
|
2013-01-19 23:10:52 -05:00
|
|
|
while ( true ) {
|
|
|
|
try {
|
2012-08-11 22:27:15 -04:00
|
|
|
( *latest_query_task.Get() )();
|
2013-01-19 23:10:52 -05:00
|
|
|
} catch ( boost::thread_interrupted & ) {
|
2012-08-11 22:27:15 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-07-24 23:09:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void BufferIdentifiersThreadMain(
|
2012-09-06 14:58:16 -04:00
|
|
|
IdentifierCompleter::BufferIdentifiersTaskStack
|
2013-01-19 23:10:52 -05:00
|
|
|
&buffer_identifiers_task_stack ) {
|
|
|
|
while ( true ) {
|
|
|
|
try {
|
2012-08-11 22:27:15 -04:00
|
|
|
( *buffer_identifiers_task_stack.Pop() )();
|
2013-01-19 23:10:52 -05:00
|
|
|
} catch ( boost::thread_interrupted & ) {
|
2012-08-11 22:27:15 -04:00
|
|
|
return;
|
|
|
|
}
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-23 23:17:59 -04:00
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
} // unnamed namespace
|
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-07-12 01:08:04 -04:00
|
|
|
IdentifierCompleter::IdentifierCompleter()
|
|
|
|
: candidate_repository_( CandidateRepository::Instance() ),
|
2013-01-19 23:10:52 -05:00
|
|
|
threading_enabled_( false ) {
|
2012-07-12 01:08:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
IdentifierCompleter::IdentifierCompleter(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::vector< std::string > &candidates )
|
2012-07-12 01:08:04 -04:00
|
|
|
: candidate_repository_( CandidateRepository::Instance() ),
|
2013-01-19 23:10:52 -05:00
|
|
|
threading_enabled_( false ) {
|
2012-07-23 23:17:59 -04:00
|
|
|
AddCandidatesToDatabase( candidates, "", "" );
|
2012-04-15 23:10:39 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 19:36:31 -04:00
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
IdentifierCompleter::IdentifierCompleter(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::vector< std::string > &candidates,
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath )
|
2012-07-12 01:08:04 -04:00
|
|
|
: candidate_repository_( CandidateRepository::Instance() ),
|
2013-01-19 23:10:52 -05:00
|
|
|
threading_enabled_( false ) {
|
2012-07-23 23:17:59 -04:00
|
|
|
AddCandidatesToDatabase( candidates, filetype, filepath );
|
2012-04-29 19:36:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
IdentifierCompleter::~IdentifierCompleter() {
|
2012-08-11 22:27:15 -04:00
|
|
|
query_threads_.interrupt_all();
|
|
|
|
query_threads_.join_all();
|
|
|
|
|
2013-02-16 15:07:20 -05:00
|
|
|
if ( buffer_identifiers_thread_ ) {
|
|
|
|
buffer_identifiers_thread_->interrupt();
|
|
|
|
buffer_identifiers_thread_->join();
|
|
|
|
}
|
2012-08-11 22:27:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
// We need this mostly so that we can not use it in tests. Apparently the
|
|
|
|
// GoogleTest framework goes apeshit on us if we enable threads by default.
|
2013-01-19 23:10:52 -05:00
|
|
|
void IdentifierCompleter::EnableThreading() {
|
2012-05-06 02:48:22 -04:00
|
|
|
threading_enabled_ = true;
|
|
|
|
InitThreads();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
void IdentifierCompleter::AddCandidatesToDatabase(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::vector< std::string > &new_candidates,
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath ) {
|
2012-05-11 00:56:19 -04:00
|
|
|
std::list< const Candidate *> &candidates =
|
|
|
|
GetCandidateList( filetype, filepath );
|
2012-05-12 18:20:03 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
std::vector< const Candidate * > repository_candidates =
|
2012-07-12 01:08:04 -04:00
|
|
|
candidate_repository_.GetCandidatesForStrings( new_candidates );
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-07-12 01:08:04 -04:00
|
|
|
candidates.insert( candidates.end(),
|
|
|
|
repository_candidates.begin(),
|
|
|
|
repository_candidates.end() );
|
2012-04-15 19:57:10 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 19:36:31 -04:00
|
|
|
|
2012-07-23 23:17:59 -04:00
|
|
|
void IdentifierCompleter::AddCandidatesToDatabaseFromBuffer(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &buffer_contents,
|
|
|
|
const std::string &filetype,
|
2013-02-16 17:00:46 -05:00
|
|
|
const std::string &filepath,
|
2013-02-23 18:54:44 -05:00
|
|
|
bool collect_from_comments_and_strings ) {
|
2012-07-23 23:17:59 -04:00
|
|
|
ClearCandidatesStoredForFile( filetype, filepath );
|
|
|
|
|
2013-02-16 17:00:46 -05:00
|
|
|
std::string new_contents =
|
|
|
|
collect_from_comments_and_strings ?
|
|
|
|
buffer_contents :
|
|
|
|
RemoveIdentifierFreeText( buffer_contents );
|
|
|
|
|
|
|
|
AddCandidatesToDatabase( ExtractIdentifiersFromText( new_contents ),
|
|
|
|
filetype,
|
|
|
|
filepath );
|
2012-07-23 23:17:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
void IdentifierCompleter::AddCandidatesToDatabaseFromBufferAsync(
|
2013-01-19 23:10:52 -05:00
|
|
|
std::string buffer_contents,
|
|
|
|
std::string filetype,
|
2013-02-16 17:00:46 -05:00
|
|
|
std::string filepath,
|
|
|
|
bool collect_from_comments_and_strings ) {
|
2012-07-26 00:06:57 -04:00
|
|
|
// TODO: throw exception when threading is not enabled and this is called
|
|
|
|
if ( !threading_enabled_ )
|
|
|
|
return;
|
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
boost::function< void() > functor =
|
2013-02-23 18:44:41 -05:00
|
|
|
boost::bind( &IdentifierCompleter::AddCandidatesToDatabaseFromBuffer,
|
|
|
|
boost::ref( *this ),
|
|
|
|
boost::move( buffer_contents ),
|
|
|
|
boost::move( filetype ),
|
|
|
|
boost::move( filepath ),
|
|
|
|
collect_from_comments_and_strings );
|
2012-07-24 23:09:09 -04:00
|
|
|
|
|
|
|
buffer_identifiers_task_stack_.Push(
|
2013-02-23 18:44:41 -05:00
|
|
|
boost::make_shared< packaged_task< void > >( boost::move( functor ) ) );
|
2012-07-23 23:17:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
std::vector< std::string > IdentifierCompleter::CandidatesForQuery(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query ) const {
|
2012-05-08 01:10:28 -04:00
|
|
|
return CandidatesForQueryAndType( query, "" );
|
2012-04-29 22:51:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
std::vector< std::string > IdentifierCompleter::CandidatesForQueryAndType(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query,
|
|
|
|
const std::string &filetype ) const {
|
2012-05-06 02:48:22 -04:00
|
|
|
std::vector< Result > results;
|
|
|
|
ResultsForQueryAndType( query, filetype, results );
|
|
|
|
|
2012-05-08 01:10:28 -04:00
|
|
|
std::vector< std::string > candidates;
|
2012-07-12 01:41:32 -04:00
|
|
|
candidates.reserve( results.size() );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
foreach ( const Result & result, results ) {
|
2012-05-08 01:10:28 -04:00
|
|
|
candidates.push_back( *result.Text() );
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
2012-05-08 01:10:28 -04:00
|
|
|
return candidates;
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-15 23:49:56 -04:00
|
|
|
Future< AsyncResults > IdentifierCompleter::CandidatesForQueryAndTypeAsync(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query,
|
|
|
|
const std::string &filetype ) const {
|
2012-05-06 02:48:22 -04:00
|
|
|
// TODO: throw exception when threading is not enabled and this is called
|
2012-07-15 23:49:56 -04:00
|
|
|
if ( !threading_enabled_ )
|
|
|
|
return Future< AsyncResults >();
|
2012-05-06 02:48:22 -04:00
|
|
|
|
2012-07-16 23:23:17 -04:00
|
|
|
FunctionReturnsStringVector functor =
|
2013-02-23 18:44:41 -05:00
|
|
|
boost::bind( &IdentifierCompleter::CandidatesForQueryAndType,
|
|
|
|
boost::cref( *this ),
|
|
|
|
query,
|
|
|
|
filetype );
|
2012-07-16 23:23:17 -04:00
|
|
|
|
2013-02-23 18:57:21 -05:00
|
|
|
QueryTask task =
|
|
|
|
boost::make_shared< packaged_task< AsyncResults > >(
|
2013-02-23 18:44:41 -05:00
|
|
|
boost::bind( ReturnValueAsShared< std::vector< std::string > >,
|
|
|
|
boost::move( functor ) ) );
|
2012-05-06 02:48:22 -04:00
|
|
|
|
|
|
|
unique_future< AsyncResults > future = task->get_future();
|
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
latest_query_task_.Set( task );
|
2012-07-20 00:17:39 -04:00
|
|
|
return Future< AsyncResults >( boost::move( future ) );
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
|
|
|
|
2012-05-08 01:10:28 -04:00
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
void IdentifierCompleter::ResultsForQueryAndType(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query,
|
|
|
|
const std::string &filetype,
|
|
|
|
std::vector< Result > &results ) const {
|
2012-04-29 22:51:20 -04:00
|
|
|
FiletypeMap::const_iterator it = filetype_map_.find( filetype );
|
2013-01-19 23:10:52 -05:00
|
|
|
|
2012-07-15 22:44:35 -04:00
|
|
|
if ( it == filetype_map_.end() || query.empty() )
|
2012-04-29 22:51:20 -04:00
|
|
|
return;
|
|
|
|
|
2012-04-15 19:57:10 -04:00
|
|
|
Bitset query_bitset = LetterBitsetFromString( query );
|
2013-03-02 01:18:43 -05:00
|
|
|
bool query_has_uppercase_letters = any_of( query, is_upper() );
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
boost::unordered_set< const Candidate * > seen_candidates;
|
2012-07-21 15:06:18 -04:00
|
|
|
seen_candidates.reserve( candidate_repository_.NumStoredCandidates() );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
foreach ( const FilepathToCandidates::value_type & path_and_candidates,
|
|
|
|
*it->second ) {
|
|
|
|
foreach ( const Candidate * candidate, *path_and_candidates.second ) {
|
2012-07-21 15:06:18 -04:00
|
|
|
if ( ContainsKey( seen_candidates, candidate ) )
|
|
|
|
continue;
|
|
|
|
else
|
|
|
|
seen_candidates.insert( candidate );
|
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
if ( !candidate->MatchesQueryBitset( query_bitset ) )
|
|
|
|
continue;
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2013-03-02 01:18:43 -05:00
|
|
|
Result result = candidate->QueryMatchResult(
|
2013-03-23 13:47:30 -04:00
|
|
|
query, query_has_uppercase_letters );
|
2013-01-19 23:10:52 -05:00
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
if ( result.IsSubsequence() )
|
|
|
|
results.push_back( result );
|
|
|
|
}
|
2012-04-15 19:57:10 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
std::sort( results.begin(), results.end() );
|
2012-04-15 19:57:10 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 19:36:31 -04:00
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
void IdentifierCompleter::ClearCandidatesStoredForFile(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath ) {
|
2012-07-24 23:09:09 -04:00
|
|
|
GetCandidateList( filetype, filepath ).clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
std::list< const Candidate * > &IdentifierCompleter::GetCandidateList(
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath ) {
|
2012-04-29 22:51:20 -04:00
|
|
|
boost::shared_ptr< FilepathToCandidates > &path_to_candidates =
|
|
|
|
filetype_map_[ filetype ];
|
|
|
|
|
|
|
|
if ( !path_to_candidates )
|
|
|
|
path_to_candidates.reset( new FilepathToCandidates() );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
boost::shared_ptr< std::list< const Candidate * > > &candidates =
|
|
|
|
( *path_to_candidates )[ filepath ];
|
2012-04-29 22:51:20 -04:00
|
|
|
|
|
|
|
if ( !candidates )
|
2013-01-19 23:10:52 -05:00
|
|
|
candidates.reset( new std::list< const Candidate * >() );
|
2012-04-29 22:51:20 -04:00
|
|
|
|
|
|
|
return *candidates;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
void IdentifierCompleter::InitThreads() {
|
2012-07-24 23:09:09 -04:00
|
|
|
int query_threads_to_create =
|
2012-05-06 02:48:22 -04:00
|
|
|
std::max( MIN_ASYNC_THREADS,
|
2013-01-19 23:10:52 -05:00
|
|
|
std::min( MAX_ASYNC_THREADS, thread::hardware_concurrency() ) );
|
2012-05-06 02:48:22 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
for ( int i = 0; i < query_threads_to_create; ++i ) {
|
2013-02-23 18:57:21 -05:00
|
|
|
query_threads_.create_thread(
|
|
|
|
boost::bind( QueryThreadMain,
|
|
|
|
boost::ref( latest_query_task_ ) ) );
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
2012-07-24 23:09:09 -04:00
|
|
|
|
2013-02-16 14:15:07 -05:00
|
|
|
buffer_identifiers_thread_.reset(
|
2013-02-23 18:54:44 -05:00
|
|
|
new boost::thread( BufferIdentifiersThreadMain,
|
|
|
|
boost::ref( buffer_identifiers_task_stack_ ) ) );
|
2012-05-06 02:48:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-15 19:57:10 -04:00
|
|
|
} // namespace YouCompleteMe
|