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"
|
2013-05-25 14:43:14 -04:00
|
|
|
|
2012-07-12 01:14:28 -04:00
|
|
|
#include "Candidate.h"
|
2013-05-25 14:43:14 -04:00
|
|
|
#include "IdentifierUtils.h"
|
2012-09-06 14:37:22 -04:00
|
|
|
#include "Result.h"
|
2012-04-29 19:36:31 -04:00
|
|
|
#include "Utils.h"
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
#include <algorithm>
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
namespace YouCompleteMe {
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-07-23 23:17:59 -04:00
|
|
|
|
2013-09-30 16:40:25 -04:00
|
|
|
IdentifierCompleter::IdentifierCompleter() {}
|
2012-07-12 01:08:04 -04:00
|
|
|
|
|
|
|
|
2012-07-11 02:13:12 -04:00
|
|
|
IdentifierCompleter::IdentifierCompleter(
|
2013-09-30 16:40:25 -04:00
|
|
|
const std::vector< std::string > &candidates ) {
|
2013-05-26 16:28:00 -04:00
|
|
|
identifier_database_.AddIdentifiers( 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,
|
2013-09-30 16:40:25 -04:00
|
|
|
const std::string &filepath ) {
|
2013-05-26 16:28:00 -04:00
|
|
|
identifier_database_.AddIdentifiers( candidates, filetype, filepath );
|
2012-04-29 19:36:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-26 16:28:00 -04:00
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabase(
|
2013-05-30 01:23:19 -04:00
|
|
|
const std::vector< std::string > &new_candidates,
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath ) {
|
2013-05-26 16:28:00 -04:00
|
|
|
identifier_database_.AddIdentifiers( new_candidates,
|
2013-05-30 01:23:19 -04:00
|
|
|
filetype,
|
|
|
|
filepath );
|
2012-04-15 19:57:10 -04:00
|
|
|
}
|
|
|
|
|
2012-04-29 19:36:31 -04:00
|
|
|
|
2013-05-26 16:28:00 -04:00
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabaseFromTagFiles(
|
2013-05-30 01:23:19 -04:00
|
|
|
const std::vector< std::string > &absolute_paths_to_tag_files ) {
|
|
|
|
foreach( const std::string & path, absolute_paths_to_tag_files ) {
|
2013-05-26 16:28:00 -04:00
|
|
|
identifier_database_.AddIdentifiers(
|
2013-05-30 01:23:19 -04:00
|
|
|
ExtractIdentifiersFromTagsFile( path ) );
|
2013-05-26 16:28:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void IdentifierCompleter::AddIdentifiersToDatabaseFromBuffer(
|
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 ) {
|
2013-05-25 14:43:14 -04:00
|
|
|
identifier_database_.ClearCandidatesStoredForFile( filetype, filepath );
|
2012-07-23 23:17:59 -04:00
|
|
|
|
2013-02-16 17:00:46 -05:00
|
|
|
std::string new_contents =
|
|
|
|
collect_from_comments_and_strings ?
|
|
|
|
buffer_contents :
|
|
|
|
RemoveIdentifierFreeText( buffer_contents );
|
|
|
|
|
2013-05-26 16:28:00 -04:00
|
|
|
identifier_database_.AddIdentifiers(
|
2013-05-30 01:23:19 -04:00
|
|
|
ExtractIdentifiersFromText( new_contents ),
|
|
|
|
filetype,
|
|
|
|
filepath );
|
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;
|
2013-05-25 14:43:14 -04:00
|
|
|
identifier_database_.ResultsForQueryAndType( query, filetype, results );
|
2012-05-06 02:48:22 -04:00
|
|
|
|
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-04-15 19:57:10 -04:00
|
|
|
} // namespace YouCompleteMe
|