2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-11-12 03:28:46 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-04-29 05:55:54 +03:00
|
|
|
#include <Kernel/DoubleBuffer.h>
|
2019-07-09 15:46:23 +03:00
|
|
|
#include <Kernel/FileSystem/File.h>
|
2020-07-17 00:23:03 +03:00
|
|
|
#include <Kernel/Lock.h>
|
2019-05-28 12:53:16 +03:00
|
|
|
#include <Kernel/UnixTypes.h>
|
2020-07-17 00:23:03 +03:00
|
|
|
#include <Kernel/WaitQueue.h>
|
2018-11-12 03:28:46 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-06-07 10:36:51 +03:00
|
|
|
class FileDescription;
|
2019-04-29 05:55:54 +03:00
|
|
|
|
|
|
|
class FIFO final : public File {
|
2018-11-12 03:28:46 +03:00
|
|
|
public:
|
2019-07-03 22:17:35 +03:00
|
|
|
enum class Direction : u8 {
|
2019-05-28 12:53:16 +03:00
|
|
|
Neither,
|
|
|
|
Reader,
|
|
|
|
Writer
|
2018-11-12 03:28:46 +03:00
|
|
|
};
|
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
static NonnullRefPtr<FIFO> create(uid_t);
|
2019-04-29 05:55:54 +03:00
|
|
|
virtual ~FIFO() override;
|
2019-04-25 14:52:07 +03:00
|
|
|
|
|
|
|
uid_t uid() const { return m_uid; }
|
2018-11-12 03:28:46 +03:00
|
|
|
|
2019-06-21 19:37:47 +03:00
|
|
|
NonnullRefPtr<FileDescription> open_direction(Direction);
|
2020-07-17 00:23:03 +03:00
|
|
|
NonnullRefPtr<FileDescription> open_direction_blocking(Direction);
|
2018-11-12 03:28:46 +03:00
|
|
|
|
2019-04-29 05:55:54 +03:00
|
|
|
void attach(Direction);
|
|
|
|
void detach(Direction);
|
2018-11-12 03:28:46 +03:00
|
|
|
|
|
|
|
private:
|
2019-04-29 05:55:54 +03:00
|
|
|
// ^File
|
2020-08-04 19:02:23 +03:00
|
|
|
virtual KResultOr<size_t> write(FileDescription&, size_t, const u8*, size_t) override;
|
|
|
|
virtual KResultOr<size_t> read(FileDescription&, size_t, u8*, size_t) override;
|
2020-04-10 12:44:42 +03:00
|
|
|
virtual bool can_read(const FileDescription&, size_t) const override;
|
|
|
|
virtual bool can_write(const FileDescription&, size_t) const override;
|
2019-06-07 10:36:51 +03:00
|
|
|
virtual String absolute_path(const FileDescription&) const override;
|
2019-04-29 05:55:54 +03:00
|
|
|
virtual const char* class_name() const override { return "FIFO"; }
|
|
|
|
virtual bool is_fifo() const override { return true; }
|
|
|
|
|
2019-04-25 14:52:07 +03:00
|
|
|
explicit FIFO(uid_t);
|
2018-11-12 03:28:46 +03:00
|
|
|
|
|
|
|
unsigned m_writers { 0 };
|
|
|
|
unsigned m_readers { 0 };
|
2018-12-03 04:24:11 +03:00
|
|
|
DoubleBuffer m_buffer;
|
2019-04-25 14:52:07 +03:00
|
|
|
|
|
|
|
uid_t m_uid { 0 };
|
2020-01-07 09:29:50 +03:00
|
|
|
|
|
|
|
int m_fifo_id { 0 };
|
2020-07-17 00:23:03 +03:00
|
|
|
|
|
|
|
WaitQueue m_read_open_queue;
|
|
|
|
WaitQueue m_write_open_queue;
|
|
|
|
Lock m_open_lock;
|
2018-11-12 03:28:46 +03:00
|
|
|
};
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|