]> git.sesse.net Git - stockfish/blob - src/main.cpp
Better comments and enums in the proto file.
[stockfish] / src / main.cpp
1 /*
2   Stockfish, a UCI chess playing engine derived from Glaurung 2.1
3   Copyright (C) 2004-2008 Tord Romstad (Glaurung author)
4   Copyright (C) 2008-2015 Marco Costalba, Joona Kiiski, Tord Romstad
5   Copyright (C) 2015-2019 Marco Costalba, Joona Kiiski, Gary Linscott, Tord Romstad
6
7   Stockfish is free software: you can redistribute it and/or modify
8   it under the terms of the GNU General Public License as published by
9   the Free Software Foundation, either version 3 of the License, or
10   (at your option) any later version.
11
12   Stockfish is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15   GNU General Public License for more details.
16
17   You should have received a copy of the GNU General Public License
18   along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include <iostream>
22 #include <thread>
23
24 #include "bitboard.h"
25 #include "position.h"
26 #include "search.h"
27 #include "thread.h"
28 #include "tt.h"
29 #include "uci.h"
30 #include "syzygy/tbprobe.h"
31
32 #include <grpc/grpc.h>
33 #include <grpc++/server.h>
34 #include <grpc++/server_builder.h>
35 #include "hashprobe.grpc.pb.h"
36
37 using grpc::Server;
38 using grpc::ServerBuilder;
39 using grpc::ServerContext;
40 using grpc::Status;
41 using grpc::StatusCode;
42
43 class HashProbeImpl final : public HashProbe::Service {
44 public:
45         Status Probe(ServerContext* context,
46                      const HashProbeRequest* request,
47                      HashProbeResponse *response) {
48                 Position pos(request->fen(), /*isChess960=*/false, Threads.main());
49                 if (!pos.pos_is_ok()) {
50                         return Status(StatusCode::INVALID_ARGUMENT, "Invalid FEN");
51                 }
52                 bool found;
53                 TTEntry *entry = TT.probe(pos.key(), found);
54                 response->set_found(found);
55                 if (found) {
56                         response->set_move(entry->move());
57                         response->set_value(entry->value());
58                         response->set_eval(entry->eval());
59                         response->set_depth(entry->depth());
60                         response->set_bound(HashProbeResponse::ValueBound(entry->bound()));
61                 }
62                 return Status::OK;
63         }
64 };
65         
66 void rpc_thread()
67 {
68         std::string server_address("0.0.0.0:50051");
69         HashProbeImpl service;
70
71         ServerBuilder builder;
72         builder.AddListeningPort(server_address, grpc::InsecureServerCredentials());
73         builder.RegisterService(&service);
74         std::unique_ptr<Server> server(builder.BuildAndStart());
75         std::cout << "Server listening on " << server_address << std::endl;
76         server->Wait();
77 }
78
79 namespace PSQT {
80   void init();
81 }
82
83 int main(int argc, char* argv[]) {
84
85   std::cout << engine_info() << std::endl;
86
87   UCI::init(Options);
88   PSQT::init();
89   Bitboards::init();
90   Position::init();
91   Bitbases::init();
92   Search::init();
93   Pawns::init();
94   Threads.set(Options["Threads"]);
95   Search::clear(); // After threads are up
96
97   std::thread(&rpc_thread).detach();
98
99   UCI::loop(argc, argv);
100
101   Threads.set(0);
102   return 0;
103 }