mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 03:02:45 +00:00 
			
		
		
		
	 3a71748e5d
			
		
	
	
		3a71748e5d
		
	
	
	
	
		
			
			This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'
find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
		
	
			
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Itamar S. <itamar8910@gmail.com>
 | |
|  * Copyright (c) 2022, the SerenityOS developers.
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include "../AutoCompleteResponse.h"
 | |
| #include "CodeComprehensionEngine.h"
 | |
| #include "FileDB.h"
 | |
| #include <AK/HashMap.h>
 | |
| #include <AK/LexicalPath.h>
 | |
| #include <LibIPC/ConnectionFromClient.h>
 | |
| 
 | |
| #include <Userland/DevTools/HackStudio/LanguageServers/LanguageClientEndpoint.h>
 | |
| #include <Userland/DevTools/HackStudio/LanguageServers/LanguageServerEndpoint.h>
 | |
| 
 | |
| namespace LanguageServers {
 | |
| 
 | |
| class ConnectionFromClient : public IPC::ConnectionFromClient<LanguageClientEndpoint, LanguageServerEndpoint> {
 | |
| public:
 | |
|     explicit ConnectionFromClient(NonnullOwnPtr<Core::Stream::LocalSocket>);
 | |
|     ~ConnectionFromClient() override = default;
 | |
| 
 | |
|     virtual void die() override;
 | |
| 
 | |
| protected:
 | |
|     virtual void greet(String const&) override;
 | |
|     virtual void file_opened(String const&, IPC::File const&) override;
 | |
|     virtual void file_edit_insert_text(String const&, String const&, i32, i32) override;
 | |
|     virtual void file_edit_remove_text(String const&, i32, i32, i32, i32) override;
 | |
|     virtual void set_file_content(String const&, String const&) override;
 | |
|     virtual void auto_complete_suggestions(GUI::AutocompleteProvider::ProjectLocation const&) override;
 | |
|     virtual void find_declaration(GUI::AutocompleteProvider::ProjectLocation const&) override;
 | |
|     virtual void get_parameters_hint(GUI::AutocompleteProvider::ProjectLocation const&) override;
 | |
|     virtual void get_tokens_info(String const&) override;
 | |
| 
 | |
|     FileDB m_filedb;
 | |
|     OwnPtr<CodeComprehensionEngine> m_autocomplete_engine;
 | |
| };
 | |
| 
 | |
| }
 |