1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// Copyright : (C) 2015 Eran Ifrah
// File name : clTernServer.h
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program 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 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#ifndef CLTERNSERVER_H
#define CLTERNSERVER_H
#include "wx/event.h" // Base class: wxEvtHandler
#include <wx/filename.h>
#include <wx/arrstr.h>
#include "wxCodeCompletionBoxEntry.h"
#include "clTernWorkerThread.h"
#include "cl_calltip.h"
#include "json_node.h"
#include "cl_command_event.h"
class IEditor;
class wxStyledTextCtrl;
class JSCodeCompletion;
class IProcess;
class clTernWorkerThread;
struct clTernDefinition {
wxString url;
wxString file;
int start;
int end;
clTernDefinition()
: start(wxNOT_FOUND)
, end(wxNOT_FOUND)
{
}
/**
* @brief is this location defined on the web?
*/
bool IsURL() const {
return !url.IsEmpty();
}
};
class clTernServer : public wxEvtHandler
{
friend class clTernWorkerThread;
JSCodeCompletion* m_jsCCManager;
IProcess* m_tern;
wxFileName m_nodePath;
wxString m_ternBinFolder;
bool m_goingDown;
wxCodeCompletionBoxEntry::Vec_t m_entries;
clTernWorkerThread* m_workerThread;
bool m_fatalError;
long m_port;
size_t m_recycleCount;
wxString m_workingDirectory;
protected:
void OnTernTerminated(clProcessEvent& event);
void OnTernOutput(clProcessEvent& event);
void PrintMessage(const wxString& message);
void ProcessOutput(const wxString& output, wxCodeCompletionBoxEntry::Vec_t& entries);
bool ProcessDefinitionOutput(const wxString& output, clTernDefinition& loc);
clCallTipPtr ProcessCalltip(const wxString& output);
wxString PrepareDoc(const wxString& doc, const wxString& url);
void ProcessType(const wxString& type, wxString& signature, wxString& retValue, int& imgID);
// Worker thread callbacks
void OnTernWorkerThreadDone(const clTernWorkerThread::Reply& reply);
void OnError(const wxString& why);
JSONElement CreateLocation(wxStyledTextCtrl* ctrl, int pos = wxNOT_FOUND);
JSONElement CreateFilesArray(IEditor *editor, bool forDelete = false);
public:
void RecycleIfNeeded(bool force = false);
clTernServer(JSCodeCompletion* cc);
virtual ~clTernServer();
long GetPort() const { return m_port; }
bool Start(const wxString& workingDirectory);
void Terminate();
void ClearFatalErrorFlag();
/**
* @brief tell tern to reset the server
*/
bool PostResetCommand(bool forgetFiles);
/**
* @brief reparse the current file
*/
bool PostReparseCommand(IEditor *editor);
/**
* @brief post a CC request at the current editor position
*/
bool PostCCRequest(IEditor* editor);
/**
* @brief post a function calltip at a given position. pos is the first position
* before the open brace
*/
bool PostFunctionTipRequest(IEditor* editor, int pos);
/**
* @brief locate a definition of expression under the caret
*/
bool PostFindDefinitionRequest(IEditor* editor);
const wxCodeCompletionBoxEntry::Vec_t& GetEntries() const { return m_entries; }
/**
* @brief locate nodejs executable on this machine
*/
static bool LocateNodeJS(wxFileName& nodeJS);
};
#endif // CLTERNSERVER_H
|