-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathmain.cpp
More file actions
33 lines (29 loc) · 934 Bytes
/
main.cpp
File metadata and controls
33 lines (29 loc) · 934 Bytes
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
#include "LanguageServer.h"
#include "Session/SocketIOSession.h"
#include "Session/StandardIOSession.h"
#include <asio.hpp>
// https://stackoverflow.com/questions/1598985/c-read-binary-stdin
#ifdef _WIN32
#include <fcntl.h>
#include <io.h>
#define SET_BINARY_MODE() \
_setmode(_fileno(stdin), _O_BINARY); \
_setmode(_fileno(stdout), _O_BINARY)
#else
#define SET_BINARY_MODE() (void) 0
#endif
using namespace asio::ip;
int main(int argc, char **argv) {
LanguageServer server;
auto &ioc = server.GetIOContext();
if (argc > 1) {
int port = std::stoi(argv[1]);
tcp::acceptor acceptor(ioc, tcp::endpoint(tcp::v4(), port));
auto socket = acceptor.accept();
server.SetSession(std::make_shared<SocketIOSession>(std::move(socket)));
} else {
SET_BINARY_MODE();
server.SetSession(std::make_shared<StandardIOSession>());
}
return server.Run();
}