summaryrefslogtreecommitdiff
path: root/graphics/asymptote/LspCpp/examples/TcpServerExample.cpp
blob: 093be317988cd6e90aa5023b37c8df806ed1f32f (plain)
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199

#include "LibLsp/lsp/general/exit.h"
#include "LibLsp/lsp/textDocument/declaration_definition.h"
#include "LibLsp/lsp/textDocument/signature_help.h"
#include "LibLsp/lsp/general/initialize.h"
#include "LibLsp/lsp/ProtocolJsonHandler.h"
#include "LibLsp/lsp/textDocument/typeHierarchy.h"
#include "LibLsp/lsp/AbsolutePath.h"
#include "LibLsp/lsp/textDocument/resolveCompletionItem.h"
#include <network/uri.hpp>


#include "LibLsp/JsonRpc/Endpoint.h"
#include "LibLsp/JsonRpc/stream.h"
#include "LibLsp/JsonRpc/TcpServer.h"
#include "LibLsp/lsp/textDocument/document_symbol.h"
#include "LibLsp/lsp/workspace/execute_command.h"

#include <boost/filesystem.hpp>
#include <boost/asio.hpp>
#include <iostream>
using namespace boost::asio::ip;
using namespace std;
class DummyLog :public lsp::Log
{
public:

	void log(Level level, std::wstring&& msg)
	{
		std::wcout << msg << std::endl;
	};
	void log(Level level, const std::wstring& msg)
	{
		std::wcout << msg << std::endl;
	};
	void log(Level level, std::string&& msg)
	{
		std::cout << msg << std::endl;
	};
	void log(Level level, const std::string& msg)
	{
		std::cout << msg << std::endl;
	};
};

std::string _address = "127.0.0.1";
std::string _port = "9333";

class Server
{
public:


	Server():server(_address,_port,protocol_json_handler, endpoint, _log)
	{
		server.point.registerHandler(
			[&](const td_initialize::request& req)
		          ->lsp::ResponseOrError< td_initialize::response >{
				
				td_initialize::response rsp;
				CodeLensOptions code_lens_options;
				code_lens_options.resolveProvider = true;
				rsp.result.capabilities.codeLensProvider = code_lens_options;
	
				return rsp;
			});
		server.point.registerHandler([&](const td_definition::request& req
			,const CancelMonitor& monitor)
			{
				td_definition::response rsp;
				rsp.result.first= std::vector<lsLocation>();
				std::this_thread::sleep_for(std::chrono::seconds(8));
			    if(monitor && monitor())
			    {
					_log.info("textDocument/definition request had been cancel.");
			    }
				return rsp;
			});
		
		server.point.registerHandler([=](Notify_Exit::notify& notify)
			{
				std::cout << notify.ToJson() << std::endl;
			});
		std::thread([&]()
			{
				server.run();
			}).detach();
	}
	~Server()
	{
		server.stop();
	}
	std::shared_ptr < lsp::ProtocolJsonHandler >  protocol_json_handler = std::make_shared < lsp::ProtocolJsonHandler >();
	DummyLog _log;

	std::shared_ptr < GenericEndpoint >  endpoint = std::make_shared<GenericEndpoint>(_log);
	lsp::TcpServer server;

};

class Client
{
public:
	struct iostream :public lsp::base_iostream<tcp::iostream>
	{
		explicit iostream(boost::asio::basic_socket_iostream<tcp>& _t)
			: base_iostream<boost::asio::basic_socket_iostream<tcp>>(_t)
		{
		}

		std::string what() override
		{
			auto  msg = _impl.error().message();
			return  msg;
		}
		
	};
	Client() :remote_end_point_(protocol_json_handler, endpoint, _log)
	{
		tcp::endpoint end_point( address::from_string(_address), 9333);

		socket_ = std::make_shared<tcp::iostream>();
		socket_->connect(end_point);
		if (!socket_)
		{
			string temp = "Unable to connect: " + socket_->error().message();
			std::cout << temp << std::endl;
		}
	
		vector<string> args;
		socket_proxy = std::make_shared<iostream>(*socket_.get());
	
		remote_end_point_.startProcessingMessages(socket_proxy, socket_proxy);
	}
	~Client()
	{
		remote_end_point_.Stop();
		std::this_thread::sleep_for(std::chrono::milliseconds (1000));
		socket_->close();
	}

	std::shared_ptr < lsp::ProtocolJsonHandler >  protocol_json_handler = std::make_shared< lsp::ProtocolJsonHandler>();
	DummyLog _log;

	std::shared_ptr<GenericEndpoint>  endpoint = std::make_shared<GenericEndpoint>(_log);

	std::shared_ptr < iostream> socket_proxy;
	std::shared_ptr<tcp::iostream>  socket_;
	RemoteEndPoint remote_end_point_;
};

int main() 
{

	Server server;
	Client client;

	{
		td_initialize::request req;
		auto rsp = client.remote_end_point_.waitResponse(req);
		if (rsp)
		{
			std::cout << rsp->response.ToJson() << std::endl;
		}
		else
		{
			std::cout << "get initialze  response time out" << std::endl;
		}
	}
	{
		td_definition::request req;
		auto future_rsp = client.remote_end_point_.send(req);
		Notify_Cancellation::notify cancel_notify;
		cancel_notify.params.id = req.id;
		client.remote_end_point_.send(cancel_notify);
		
		auto state = future_rsp.wait_for(std::chrono::seconds(16));
		if (std::future_status::timeout == state)
		{
			std::cout << "get textDocument/definition  response time out" << std::endl;
			return 0;
		}
		auto rsp = future_rsp.get();
		if (rsp.is_error)
		{
			std::cout << "get textDocument/definition  response error" << std::endl;

		}
		else
		{
			std::cout << rsp.response.ToJson() << std::endl;
		}
	}
	Notify_Exit::notify notify;
	client.remote_end_point_.send(notify);
	return 0;
}