1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-04-21 19:45:56 +03:00
Roman Nozdrin 7c9da5709d MCOL-5105 This patch raises pipe read operation timeout to 20 minutes
to enable DMLProc to survive rollbacks on startup.
The patch also fixes linter warnings in service.h and pipe.h.
2022-06-09 14:34:50 +00:00

100 lines
2.0 KiB
C++

/* Copyright (C) 2020 MariaDB Corporation
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA. */
#pragma once
/*
A helper class to hold the file descriptors returned from a pipe() call.
*/
#include <sys/types.h>
#include <unistd.h>
#include <cerrno>
#include <string>
class Pipe
{
int fd[2];
public:
Pipe()
{
fd[0] = 0;
fd[1] = 0;
}
~Pipe()
{
close();
}
bool is_open_for_read() const
{
return fd[0] > 0;
}
bool is_open_for_write() const
{
return fd[1] > 0;
}
bool open()
{
return ::pipe(fd) == -1;
}
bool init() // TODO: remove this
{
return open();
}
ssize_t read(char* str, size_t nbytes)
{
return ::read(fd[0], str, nbytes);
}
ssize_t readtm(const struct timeval& tv, void* buf, size_t nbytes)
{
fd_set rfds;
FD_ZERO(&rfds);
FD_SET(fd[0], &rfds);
struct timeval tmptv = tv;
int retval = select(fd[0] + 1, &rfds, nullptr, nullptr, &tmptv);
if (retval == -1)
return -1;
if (!retval)
{
errno = ETIME;
return -1;
}
return ::read(fd[0], buf, nbytes);
}
ssize_t write(const char* str, size_t nbytes)
{
return ::write(fd[1], str, nbytes);
}
ssize_t write(const std::string& str)
{
return write(str.data(), str.length());
}
void close()
{
if (fd[0])
{
::close(fd[0]);
fd[0] = 0;
}
if (fd[1])
{
::close(fd[1]);
fd[1] = 0;
}
}
};