2014-01-13 14:08:43 -05:00
|
|
|
// Copyright (C) 2011, 2012 Google Inc.
|
2012-08-11 22:27:15 -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 TRANSLATIONUNIT_H_XQ7I6SVA
|
|
|
|
#define TRANSLATIONUNIT_H_XQ7I6SVA
|
|
|
|
|
|
|
|
#include "UnsavedFile.h"
|
|
|
|
#include "Diagnostic.h"
|
2013-03-31 23:38:29 -04:00
|
|
|
#include "Location.h"
|
2012-08-11 22:27:15 -04:00
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
#include <clang-c/Index.h>
|
2012-08-11 22:27:15 -04:00
|
|
|
#include <boost/utility.hpp>
|
|
|
|
#include <boost/thread/mutex.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2013-01-19 23:03:32 -05:00
|
|
|
namespace YouCompleteMe {
|
2012-08-11 22:27:15 -04:00
|
|
|
|
|
|
|
struct CompletionData;
|
|
|
|
typedef boost::shared_ptr< std::vector< CompletionData > > AsyncCompletions;
|
|
|
|
|
2013-01-19 23:03:32 -05:00
|
|
|
class TranslationUnit : boost::noncopyable {
|
2012-08-11 22:27:15 -04:00
|
|
|
public:
|
|
|
|
|
2013-01-24 21:37:44 -05:00
|
|
|
// This constructor creates an invalid, sentinel TU. All of it's methods
|
|
|
|
// return empty vectors, and IsCurrentlyUpdating always returns true so that
|
|
|
|
// no callers try to rely on the invalid TU.
|
|
|
|
TranslationUnit();
|
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
TranslationUnit(
|
|
|
|
const std::string &filename,
|
|
|
|
const std::vector< UnsavedFile > &unsaved_files,
|
|
|
|
const std::vector< std::string > &flags,
|
|
|
|
CXIndex clang_index );
|
|
|
|
|
|
|
|
~TranslationUnit();
|
|
|
|
|
2013-01-22 22:40:05 -05:00
|
|
|
void Destroy();
|
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
std::vector< Diagnostic > LatestDiagnostics();
|
|
|
|
|
|
|
|
bool IsCurrentlyUpdating() const;
|
|
|
|
|
2013-10-03 16:15:43 -04:00
|
|
|
std::vector< Diagnostic > Reparse(
|
2013-10-29 22:13:52 -04:00
|
|
|
const std::vector< UnsavedFile > &unsaved_files );
|
2012-08-11 22:27:15 -04:00
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
void ReparseForIndexing( const std::vector< UnsavedFile > &unsaved_files );
|
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
std::vector< CompletionData > CandidatesForLocation(
|
2013-01-19 23:03:32 -05:00
|
|
|
int line,
|
|
|
|
int column,
|
|
|
|
const std::vector< UnsavedFile > &unsaved_files );
|
2012-08-11 22:27:15 -04:00
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
Location GetDeclarationLocation(
|
|
|
|
int line,
|
|
|
|
int column,
|
|
|
|
const std::vector< UnsavedFile > &unsaved_files );
|
|
|
|
|
|
|
|
Location GetDefinitionLocation(
|
|
|
|
int line,
|
|
|
|
int column,
|
|
|
|
const std::vector< UnsavedFile > &unsaved_files );
|
2012-08-11 22:27:15 -04:00
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
private:
|
2012-08-13 23:51:04 -04:00
|
|
|
void Reparse( std::vector< CXUnsavedFile > &unsaved_files );
|
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
void Reparse( std::vector< CXUnsavedFile > &unsaved_files,
|
|
|
|
uint parse_options );
|
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
void UpdateLatestDiagnostics();
|
|
|
|
|
2013-03-31 23:38:29 -04:00
|
|
|
CXCursor GetCursor( int line, int column );
|
|
|
|
|
2012-08-11 22:27:15 -04:00
|
|
|
/////////////////////////////
|
|
|
|
// PRIVATE MEMBER VARIABLES
|
|
|
|
/////////////////////////////
|
|
|
|
|
|
|
|
std::string filename_;
|
|
|
|
|
|
|
|
boost::mutex diagnostics_mutex_;
|
|
|
|
std::vector< Diagnostic > latest_diagnostics_;
|
|
|
|
|
|
|
|
mutable boost::mutex clang_access_mutex_;
|
|
|
|
CXTranslationUnit clang_translation_unit_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace YouCompleteMe
|
|
|
|
|
|
|
|
#endif /* end of include guard: TRANSLATIONUNIT_H_XQ7I6SVA */
|
|
|
|
|