2012-07-12 01:08:04 -04:00
|
|
|
// Copyright (C) 2011, 2012 Strahinja Val Markovic <val@markovic.io>
|
|
|
|
//
|
|
|
|
// 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 "CandidateRepository.h"
|
2012-07-12 01:14:28 -04:00
|
|
|
#include "Candidate.h"
|
2012-07-12 01:08:04 -04:00
|
|
|
#include "standard.h"
|
|
|
|
#include "Utils.h"
|
|
|
|
|
|
|
|
#include <boost/thread/locks.hpp>
|
2013-04-27 13:54:28 -04:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <locale>
|
2012-07-12 01:08:04 -04:00
|
|
|
|
2013-01-12 19:38:00 -05:00
|
|
|
#ifdef USE_CLANG_COMPLETER
|
2013-02-05 21:31:33 -05:00
|
|
|
# include "ClangCompleter/CompletionData.h"
|
2013-01-12 19:38:00 -05:00
|
|
|
#endif // USE_CLANG_COMPLETER
|
2012-08-17 16:32:42 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
namespace YouCompleteMe {
|
2012-07-12 01:08:04 -04:00
|
|
|
|
2013-04-27 13:54:28 -04:00
|
|
|
using boost::all;
|
|
|
|
using boost::is_print;
|
|
|
|
|
2012-07-12 01:08:04 -04:00
|
|
|
boost::mutex CandidateRepository::singleton_mutex_;
|
|
|
|
CandidateRepository *CandidateRepository::instance_ = NULL;
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
CandidateRepository &CandidateRepository::Instance() {
|
2012-07-12 01:08:04 -04:00
|
|
|
boost::lock_guard< boost::mutex > locker( singleton_mutex_ );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
if ( !instance_ ) {
|
2012-07-12 01:08:04 -04:00
|
|
|
static CandidateRepository repo;
|
|
|
|
instance_ = &repo;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *instance_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
int CandidateRepository::NumStoredCandidates() {
|
2012-07-21 15:06:18 -04:00
|
|
|
boost::lock_guard< boost::mutex > locker( holder_mutex_ );
|
|
|
|
return candidate_holder_.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
std::vector< const Candidate * > CandidateRepository::GetCandidatesForStrings(
|
|
|
|
const std::vector< std::string > &strings ) {
|
|
|
|
std::vector< const Candidate * > candidates;
|
2012-07-12 01:08:04 -04:00
|
|
|
candidates.reserve( strings.size() );
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::lock_guard< boost::mutex > locker( holder_mutex_ );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
foreach ( const std::string & candidate_text, strings ) {
|
2013-04-27 13:54:28 -04:00
|
|
|
const std::string &validated_candidate_text =
|
|
|
|
all( candidate_text, is_print( std::locale::classic() ) ) ?
|
|
|
|
candidate_text :
|
|
|
|
empty_;
|
|
|
|
|
|
|
|
const Candidate *&candidate = GetValueElseInsert(
|
2013-04-29 22:24:28 -04:00
|
|
|
candidate_holder_,
|
|
|
|
validated_candidate_text,
|
|
|
|
NULL );
|
2013-01-19 23:10:52 -05:00
|
|
|
|
2012-07-12 01:08:04 -04:00
|
|
|
if ( !candidate )
|
2013-04-27 13:54:28 -04:00
|
|
|
candidate = new Candidate( validated_candidate_text );
|
2012-07-12 01:08:04 -04:00
|
|
|
|
|
|
|
candidates.push_back( candidate );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return candidates;
|
|
|
|
}
|
|
|
|
|
2013-01-12 19:38:00 -05:00
|
|
|
#ifdef USE_CLANG_COMPLETER
|
2012-07-12 01:08:04 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
std::vector< const Candidate * > CandidateRepository::GetCandidatesForStrings(
|
|
|
|
const std::vector< CompletionData > &datas ) {
|
|
|
|
std::vector< const Candidate * > candidates;
|
2012-07-20 00:17:39 -04:00
|
|
|
candidates.reserve( datas.size() );
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::lock_guard< boost::mutex > locker( holder_mutex_ );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
foreach ( const CompletionData & data, datas ) {
|
2012-07-20 00:17:39 -04:00
|
|
|
const Candidate *&candidate = GetValueElseInsert( candidate_holder_,
|
|
|
|
data.original_string_,
|
|
|
|
NULL );
|
2013-01-19 23:10:52 -05:00
|
|
|
|
2012-07-20 00:17:39 -04:00
|
|
|
if ( !candidate )
|
|
|
|
candidate = new Candidate( data.original_string_ );
|
|
|
|
|
|
|
|
candidates.push_back( candidate );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return candidates;
|
|
|
|
}
|
|
|
|
|
2013-01-12 19:38:00 -05:00
|
|
|
#endif // USE_CLANG_COMPLETER
|
2012-07-20 00:17:39 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
CandidateRepository::~CandidateRepository() {
|
|
|
|
foreach ( const CandidateHolder::value_type & pair,
|
|
|
|
candidate_holder_ ) {
|
2012-07-12 01:08:04 -04:00
|
|
|
delete pair.second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace YouCompleteMe
|