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/>.
|
|
|
|
|
|
|
|
#ifndef COMPLETER_H_7AR4UGXE
|
|
|
|
#define COMPLETER_H_7AR4UGXE
|
|
|
|
|
2012-07-06 15:14:25 -04:00
|
|
|
#include "ConcurrentLatestValue.h"
|
2012-07-24 23:09:09 -04:00
|
|
|
#include "ConcurrentStack.h"
|
2012-05-06 02:48:22 -04:00
|
|
|
#include "Future.h"
|
2012-04-15 19:57:10 -04:00
|
|
|
|
|
|
|
#include <boost/utility.hpp>
|
2012-04-29 19:36:31 -04:00
|
|
|
#include <boost/unordered_map.hpp>
|
2012-04-29 22:51:20 -04:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2013-02-16 14:15:07 -05:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2012-04-15 19:57:10 -04:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
namespace YouCompleteMe {
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-07-12 01:10:37 -04:00
|
|
|
class Candidate;
|
2012-07-12 01:08:04 -04:00
|
|
|
class CandidateRepository;
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-07-20 00:17:39 -04:00
|
|
|
typedef boost::shared_ptr< std::vector< std::string > > AsyncResults;
|
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
class IdentifierCompleter : boost::noncopyable {
|
2012-04-15 19:57:10 -04:00
|
|
|
public:
|
2012-07-12 01:08:04 -04:00
|
|
|
IdentifierCompleter();
|
2012-07-11 02:13:12 -04:00
|
|
|
IdentifierCompleter( const std::vector< std::string > &candidates );
|
|
|
|
IdentifierCompleter( const std::vector< std::string > &candidates,
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath );
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
~IdentifierCompleter();
|
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
void EnableThreading();
|
|
|
|
|
2012-05-08 01:10:28 -04:00
|
|
|
void 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-07-23 23:17:59 -04:00
|
|
|
|
2013-02-16 17:00:46 -05:00
|
|
|
void AddCandidatesToDatabaseFromBuffer(
|
2013-02-23 18:54:44 -05:00
|
|
|
const std::string &buffer_contents,
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath,
|
|
|
|
bool collect_from_comments_and_strings );
|
2012-07-23 23:17:59 -04:00
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
// NOTE: params are taken by value on purpose! With a C++11 compiler we can
|
2012-08-01 01:01:41 -04:00
|
|
|
// avoid an expensive copy of buffer_contents if the param is taken by value
|
2012-07-24 23:09:09 -04:00
|
|
|
// (move ctors FTW)
|
|
|
|
void 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-05-08 01:10:28 -04:00
|
|
|
|
2012-04-29 22:51:20 -04:00
|
|
|
// Only provided for tests!
|
2012-08-17 16:32:42 -04:00
|
|
|
std::vector< std::string > CandidatesForQuery(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query ) const;
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-05-08 01:10:28 -04:00
|
|
|
std::vector< std::string > CandidatesForQueryAndType(
|
2013-01-19 23:10:52 -05:00
|
|
|
const std::string &query,
|
|
|
|
const std::string &filetype ) const;
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-08-17 16:32:42 -04:00
|
|
|
Future< AsyncResults > 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
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
typedef boost::shared_ptr <
|
|
|
|
boost::packaged_task< AsyncResults > > QueryTask;
|
2012-09-06 14:58:16 -04:00
|
|
|
|
|
|
|
typedef ConcurrentLatestValue< QueryTask > LatestQueryTask;
|
|
|
|
|
|
|
|
typedef ConcurrentStack< VoidTask > BufferIdentifiersTaskStack;
|
|
|
|
|
2012-04-15 19:57:10 -04:00
|
|
|
private:
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
void ResultsForQueryAndType( const std::string &query,
|
|
|
|
const std::string &filetype,
|
|
|
|
std::vector< Result > &results ) const;
|
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
void ClearCandidatesStoredForFile( const std::string &filetype,
|
|
|
|
const std::string &filepath );
|
|
|
|
|
2013-01-19 23:10:52 -05:00
|
|
|
std::list< const Candidate * > &GetCandidateList(
|
|
|
|
const std::string &filetype,
|
|
|
|
const std::string &filepath );
|
2012-04-29 22:51:20 -04:00
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
void InitThreads();
|
|
|
|
|
|
|
|
|
2012-09-06 14:58:16 -04:00
|
|
|
// filepath -> *( *candidate )
|
2013-01-19 23:10:52 -05:00
|
|
|
typedef boost::unordered_map < std::string,
|
|
|
|
boost::shared_ptr< std::list< const Candidate * > > >
|
|
|
|
FilepathToCandidates;
|
2012-09-06 14:58:16 -04:00
|
|
|
|
|
|
|
// filetype -> *( filepath -> *( *candidate ) )
|
2013-01-19 23:10:52 -05:00
|
|
|
typedef boost::unordered_map < std::string,
|
|
|
|
boost::shared_ptr< FilepathToCandidates > > FiletypeMap;
|
2012-09-06 14:58:16 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-05-06 02:48:22 -04:00
|
|
|
/////////////////////////////
|
|
|
|
// PRIVATE MEMBER VARIABLES
|
|
|
|
/////////////////////////////
|
2012-04-15 19:57:10 -04:00
|
|
|
|
2012-07-12 01:08:04 -04:00
|
|
|
CandidateRepository &candidate_repository_;
|
2012-04-29 22:51:20 -04:00
|
|
|
|
|
|
|
FiletypeMap filetype_map_;
|
2012-05-06 02:48:22 -04:00
|
|
|
|
|
|
|
bool threading_enabled_;
|
|
|
|
|
2012-07-24 23:09:09 -04:00
|
|
|
boost::thread_group query_threads_;
|
|
|
|
|
2013-02-16 14:15:07 -05:00
|
|
|
boost::scoped_ptr< boost::thread > buffer_identifiers_thread_;
|
2012-08-11 22:27:15 -04:00
|
|
|
|
|
|
|
mutable LatestQueryTask latest_query_task_;
|
|
|
|
|
|
|
|
BufferIdentifiersTaskStack buffer_identifiers_task_stack_;
|
2012-04-15 19:57:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace YouCompleteMe
|
|
|
|
|
|
|
|
#endif /* end of include guard: COMPLETER_H_7AR4UGXE */
|