2014-01-13 11:08:43 -08:00
|
|
|
// Copyright (C) 2011, 2012 Google Inc.
|
2012-04-15 16:57:10 -07: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-10 23:13:12 -07:00
|
|
|
#include "IdentifierCompleter.h"
|
2012-07-06 14:06:21 -07:00
|
|
|
#include "standard.h"
|
2013-05-25 11:43:14 -07:00
|
|
|
|
2012-07-11 22:14:28 -07:00
|
|
|
#include "Candidate.h"
|
2013-05-25 11:43:14 -07:00
|
|
|
#include "IdentifierUtils.h"
|
2012-09-06 11:37:22 -07:00
|
|
|
#include "Result.h"
|
2012-04-29 16:36:31 -07:00
|
|
|
#include "Utils.h"
|
2013-10-11 19:27:04 -07:00
|
|
|
#include "ReleaseGil.h"
|
2012-04-15 16:57:10 -07:00
|
|
|
|
2012-05-05 23:48:22 -07:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-01-19 20:10:52 -08:00
|
|
|
namespace YouCompleteMe {
|
2012-04-15 16:57:10 -07:00
|
|
|
|
2012-07-23 20:17:59 -07:00
|
|
|
|
2013-09-30 13:40:25 -07:00
|
|
|
IdentifierCompleter::IdentifierCompleter() {}
|
2012-07-11 22:08:04 -07:00
|
|
|
|
|
|
|
|
2012-07-10 23:13:12 -07:00
|
|
|
IdentifierCompleter::IdentifierCompleter(
|
2013-09-30 13:40:25 -07:00
|
|
|
const std::vector< std::string > &candidates ) {
|
2013-05-26 13:28:00 -07:00
|
|
|
identifier_database_.AddIdentifiers( candidates, "", "" );
|
2012-04-15 20:10:39 -07:00
|
|
|
}
|
|
|
|
|
2012-04-29 16:36:31 -07:00
|
|
|
|
2012-07-10 23:13:12 -07:00
|
|
|
IdentifierCompleter::IdentifierCompleter(
|
2013-01-19 20:10:52 -08:00
|
|
|
const std::vector< std::string > &candidates,
|
|
|
|
const std::string &filetype,
|
2013-09-30 13:40:25 -07:00
|
|
|
const std::string &filepath ) {
|
2013-05-26 13:28:00 -07:00
|
|
|
identifier_database_.AddIdentifiers( candidates, filetype, filepath );
|
2012-04-29 16:36:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-26 13:28:00 -07:00
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabase(
|
2013-05-29 22:23:19 -07:00
|
|
|
const std::vector< std::string > &new_candidates,
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath ) {
|
2013-10-11 19:27:04 -07:00
|
|
|
ReleaseGil unlock;
|
2013-05-26 13:28:00 -07:00
|
|
|
identifier_database_.AddIdentifiers( new_candidates,
|
2013-05-29 22:23:19 -07:00
|
|
|
filetype,
|
|
|
|
filepath );
|
2012-04-15 16:57:10 -07:00
|
|
|
}
|
|
|
|
|
2012-04-29 16:36:31 -07:00
|
|
|
|
2013-05-26 13:28:00 -07:00
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabaseFromTagFiles(
|
2013-05-29 22:23:19 -07:00
|
|
|
const std::vector< std::string > &absolute_paths_to_tag_files ) {
|
2013-10-11 19:27:04 -07:00
|
|
|
ReleaseGil unlock;
|
2013-05-29 22:23:19 -07:00
|
|
|
foreach( const std::string & path, absolute_paths_to_tag_files ) {
|
2013-05-26 13:28:00 -07:00
|
|
|
identifier_database_.AddIdentifiers(
|
2013-05-29 22:23:19 -07:00
|
|
|
ExtractIdentifiersFromTagsFile( path ) );
|
2013-05-26 13:28:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabaseFromBuffer(
|
2013-01-19 20:10:52 -08:00
|
|
|
const std::string &buffer_contents,
|
|
|
|
const std::string &filetype,
|
2013-02-16 14:00:46 -08:00
|
|
|
const std::string &filepath,
|
2013-02-23 15:54:44 -08:00
|
|
|
bool collect_from_comments_and_strings ) {
|
2013-10-11 19:27:04 -07:00
|
|
|
ReleaseGil unlock;
|
2013-05-25 11:43:14 -07:00
|
|
|
identifier_database_.ClearCandidatesStoredForFile( filetype, filepath );
|
2012-07-23 20:17:59 -07:00
|
|
|
|
2013-02-16 14:00:46 -08:00
|
|
|
std::string new_contents =
|
|
|
|
collect_from_comments_and_strings ?
|
|
|
|
buffer_contents :
|
|
|
|
RemoveIdentifierFreeText( buffer_contents );
|
|
|
|
|
2013-05-26 13:28:00 -07:00
|
|
|
identifier_database_.AddIdentifiers(
|
2013-05-29 22:23:19 -07:00
|
|
|
ExtractIdentifiersFromText( new_contents ),
|
|
|
|
filetype,
|
|
|
|
filepath );
|
2012-07-23 20:17:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-10 23:13:12 -07:00
|
|
|
std::vector< std::string > IdentifierCompleter::CandidatesForQuery(
|
2013-01-19 20:10:52 -08:00
|
|
|
const std::string &query ) const {
|
2012-05-07 22:10:28 -07:00
|
|
|
return CandidatesForQueryAndType( query, "" );
|
2012-04-29 19:51:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-07-10 23:13:12 -07:00
|
|
|
std::vector< std::string > IdentifierCompleter::CandidatesForQueryAndType(
|
2013-01-19 20:10:52 -08:00
|
|
|
const std::string &query,
|
|
|
|
const std::string &filetype ) const {
|
2013-10-11 19:27:04 -07:00
|
|
|
ReleaseGil unlock;
|
2012-05-05 23:48:22 -07:00
|
|
|
std::vector< Result > results;
|
2013-05-25 11:43:14 -07:00
|
|
|
identifier_database_.ResultsForQueryAndType( query, filetype, results );
|
2012-05-05 23:48:22 -07:00
|
|
|
|
2012-05-07 22:10:28 -07:00
|
|
|
std::vector< std::string > candidates;
|
2012-07-11 22:41:32 -07:00
|
|
|
candidates.reserve( results.size() );
|
|
|
|
|
2013-01-19 20:10:52 -08:00
|
|
|
foreach ( const Result & result, results ) {
|
2012-05-07 22:10:28 -07:00
|
|
|
candidates.push_back( *result.Text() );
|
2012-05-05 23:48:22 -07:00
|
|
|
}
|
2012-05-07 22:10:28 -07:00
|
|
|
return candidates;
|
2012-05-05 23:48:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-04-15 16:57:10 -07:00
|
|
|
} // namespace YouCompleteMe
|