YouCompleteMe/cpp/ycm/IdentifierCompleter.cpp

109 lines
3.1 KiB
C++
Raw Normal View History

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/>.
#include "IdentifierCompleter.h"
#include "standard.h"
2012-07-12 01:14:28 -04:00
#include "Candidate.h"
#include "IdentifierUtils.h"
#include "Result.h"
#include "Utils.h"
2012-04-15 19:57:10 -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
IdentifierCompleter::IdentifierCompleter() {}
IdentifierCompleter::IdentifierCompleter(
const std::vector< std::string > &candidates ) {
identifier_database_.AddIdentifiers( candidates, "", "" );
2012-04-15 23:10:39 -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 ) {
identifier_database_.AddIdentifiers( candidates, filetype, filepath );
}
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 ) {
identifier_database_.AddIdentifiers( new_candidates,
2013-05-30 01:23:19 -04:00
filetype,
filepath );
2012-04-15 19:57:10 -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 ) {
identifier_database_.AddIdentifiers(
2013-05-30 01:23:19 -04:00
ExtractIdentifiersFromTagsFile( path ) );
}
}
void IdentifierCompleter::AddIdentifiersToDatabaseFromBuffer(
2013-01-19 23:10:52 -05:00
const std::string &buffer_contents,
const std::string &filetype,
const std::string &filepath,
2013-02-23 18:54:44 -05:00
bool collect_from_comments_and_strings ) {
identifier_database_.ClearCandidatesStoredForFile( filetype, filepath );
2012-07-23 23:17:59 -04:00
std::string new_contents =
collect_from_comments_and_strings ?
buffer_contents :
RemoveIdentifierFreeText( buffer_contents );
identifier_database_.AddIdentifiers(
2013-05-30 01:23:19 -04:00
ExtractIdentifiersFromText( new_contents ),
filetype,
filepath );
2012-07-23 23:17:59 -04:00
}
std::vector< std::string > IdentifierCompleter::CandidatesForQuery(
2013-01-19 23:10:52 -05:00
const std::string &query ) const {
return CandidatesForQueryAndType( query, "" );
}
std::vector< std::string > IdentifierCompleter::CandidatesForQueryAndType(
2013-01-19 23:10:52 -05:00
const std::string &query,
const std::string &filetype ) const {
std::vector< Result > results;
identifier_database_.ResultsForQueryAndType( query, filetype, results );
std::vector< std::string > candidates;
candidates.reserve( results.size() );
2013-01-19 23:10:52 -05:00
foreach ( const Result & result, results ) {
candidates.push_back( *result.Text() );
}
return candidates;
}
2012-04-15 19:57:10 -04:00
} // namespace YouCompleteMe