2020-08-20 02:53:50 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2023-04-30 19:35:40 +03:00
|
|
|
* Copyright (c) 2023, Tim Ledbetter <timledbetter@gmail.com>
|
2020-08-20 02:53:50 +03:00
|
|
|
*
|
2021-04-22 11:24:48 +03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-20 02:53:50 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Engine.h"
|
2023-05-07 01:53:19 +03:00
|
|
|
#include <LibCore/File.h>
|
2023-05-21 23:27:01 +03:00
|
|
|
#include <LibCore/System.h>
|
2020-08-20 02:53:50 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <spawn.h>
|
|
|
|
#include <stdio.h>
|
2021-03-12 19:29:37 +03:00
|
|
|
#include <unistd.h>
|
2020-08-20 02:53:50 +03:00
|
|
|
|
|
|
|
Engine::~Engine()
|
|
|
|
{
|
2023-04-02 01:23:43 +03:00
|
|
|
quit();
|
2020-08-20 02:53:50 +03:00
|
|
|
}
|
|
|
|
|
2021-11-11 02:55:02 +03:00
|
|
|
Engine::Engine(StringView command)
|
2023-04-02 23:14:16 +03:00
|
|
|
: m_command(command)
|
|
|
|
{
|
2023-04-30 19:35:40 +03:00
|
|
|
connect_to_engine_service();
|
2023-04-02 23:14:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void Engine::connect_to_engine_service()
|
2020-08-20 02:53:50 +03:00
|
|
|
{
|
|
|
|
int wpipefds[2];
|
|
|
|
int rpipefds[2];
|
2023-05-21 23:27:01 +03:00
|
|
|
if (pipe2(wpipefds, O_CLOEXEC) < 0) {
|
2020-08-20 02:53:50 +03:00
|
|
|
perror("pipe2");
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-08-20 02:53:50 +03:00
|
|
|
}
|
|
|
|
|
2023-05-21 23:27:01 +03:00
|
|
|
if (pipe2(rpipefds, O_CLOEXEC) < 0) {
|
2020-08-20 02:53:50 +03:00
|
|
|
perror("pipe2");
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-08-20 02:53:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
posix_spawn_file_actions_t file_actions;
|
|
|
|
posix_spawn_file_actions_init(&file_actions);
|
|
|
|
posix_spawn_file_actions_adddup2(&file_actions, wpipefds[0], STDIN_FILENO);
|
|
|
|
posix_spawn_file_actions_adddup2(&file_actions, rpipefds[1], STDOUT_FILENO);
|
|
|
|
|
2023-04-02 23:14:16 +03:00
|
|
|
char const* argv[] = { m_command.characters(), nullptr };
|
|
|
|
pid_t pid = -1;
|
|
|
|
if (posix_spawnp(&pid, m_command.characters(), &file_actions, nullptr, const_cast<char**>(argv), environ) < 0) {
|
2020-08-20 02:53:50 +03:00
|
|
|
perror("posix_spawnp");
|
2021-02-23 22:42:32 +03:00
|
|
|
VERIFY_NOT_REACHED();
|
2020-08-20 02:53:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
posix_spawn_file_actions_destroy(&file_actions);
|
|
|
|
|
|
|
|
close(wpipefds[0]);
|
|
|
|
close(rpipefds[1]);
|
|
|
|
|
2023-05-07 01:53:19 +03:00
|
|
|
auto infile = Core::File::adopt_fd(rpipefds[0], Core::File::OpenMode::Read).release_value_but_fixme_should_propagate_errors();
|
2023-05-21 23:27:01 +03:00
|
|
|
infile->set_blocking(false).release_value_but_fixme_should_propagate_errors();
|
2023-05-07 02:59:10 +03:00
|
|
|
set_in(move(infile)).release_value_but_fixme_should_propagate_errors();
|
2020-08-20 02:53:50 +03:00
|
|
|
|
2023-05-07 01:53:19 +03:00
|
|
|
auto outfile = Core::File::adopt_fd(wpipefds[1], Core::File::OpenMode::Write).release_value_but_fixme_should_propagate_errors();
|
2023-05-21 23:27:01 +03:00
|
|
|
outfile->set_blocking(false).release_value_but_fixme_should_propagate_errors();
|
2023-05-07 01:53:19 +03:00
|
|
|
set_out(move(outfile));
|
2020-08-20 02:53:50 +03:00
|
|
|
|
|
|
|
send_command(Chess::UCI::UCICommand());
|
2023-04-02 23:14:16 +03:00
|
|
|
m_connected = true;
|
2020-08-20 02:53:50 +03:00
|
|
|
}
|
|
|
|
|
2022-04-01 20:58:27 +03:00
|
|
|
void Engine::handle_bestmove(Chess::UCI::BestMoveCommand const& command)
|
2020-08-20 02:53:50 +03:00
|
|
|
{
|
|
|
|
if (m_bestmove_callback)
|
|
|
|
m_bestmove_callback(command.move());
|
|
|
|
|
|
|
|
m_bestmove_callback = nullptr;
|
|
|
|
}
|
2023-04-02 01:23:43 +03:00
|
|
|
|
|
|
|
void Engine::quit()
|
|
|
|
{
|
2023-04-02 23:14:16 +03:00
|
|
|
if (!m_connected)
|
|
|
|
return;
|
|
|
|
|
2023-04-02 01:23:43 +03:00
|
|
|
send_command(Chess::UCI::QuitCommand());
|
2023-04-02 23:14:16 +03:00
|
|
|
m_connected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Engine::handle_unexpected_eof()
|
|
|
|
{
|
|
|
|
m_connected = false;
|
|
|
|
if (m_bestmove_callback)
|
|
|
|
m_bestmove_callback(Error::from_errno(EPIPE));
|
|
|
|
|
|
|
|
m_bestmove_callback = nullptr;
|
|
|
|
|
|
|
|
if (on_connection_lost)
|
|
|
|
on_connection_lost();
|
2023-04-02 01:23:43 +03:00
|
|
|
}
|