2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-11 06:30:31 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-11 06:30:31 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2018-01-11 06:30:31 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_FS_READ_H
|
|
|
|
|
|
|
|
namespace ircd::fs
|
|
|
|
{
|
|
|
|
struct read_opts extern const read_opts_default;
|
|
|
|
|
2018-11-29 02:26:25 +01:00
|
|
|
// Yields ircd::ctx for read into buffers; returns bytes read
|
|
|
|
size_t read(const fd &, const mutable_buffers &, const read_opts & = read_opts_default);
|
|
|
|
size_t read(const string_view &path, const mutable_buffers &, const read_opts & = read_opts_default);
|
|
|
|
|
2018-01-11 06:30:31 +01:00
|
|
|
// Yields ircd::ctx for read into buffer; returns view of read portion.
|
2018-05-30 11:13:06 +02:00
|
|
|
const_buffer read(const fd &, const mutable_buffer &, const read_opts & = read_opts_default);
|
2018-04-25 03:34:46 +02:00
|
|
|
const_buffer read(const string_view &path, const mutable_buffer &, const read_opts & = read_opts_default);
|
2018-01-11 06:30:31 +01:00
|
|
|
|
|
|
|
// Yields ircd::ctx for read into allocated string; returns that string
|
2018-05-30 11:13:06 +02:00
|
|
|
std::string read(const fd &, const read_opts & = read_opts_default);
|
2018-01-11 06:30:31 +01:00
|
|
|
std::string read(const string_view &path, const read_opts & = read_opts_default);
|
2018-06-02 20:44:53 +02:00
|
|
|
|
2019-04-21 01:59:08 +02:00
|
|
|
// Test whether bytes in the specified range are cached and should not block
|
2019-04-21 12:57:12 +02:00
|
|
|
bool fincore(const fd &, const size_t &, const read_opts & = read_opts_default);
|
2019-04-21 01:59:08 +02:00
|
|
|
|
2019-05-03 12:33:45 +02:00
|
|
|
// Prefetch data for subsequent read(); offset given in opts (WILLNEED).
|
2019-03-16 05:25:07 +01:00
|
|
|
size_t prefetch(const fd &, const size_t &, const read_opts & = read_opts_default);
|
2019-05-03 13:34:16 +02:00
|
|
|
|
|
|
|
// Evict data which won't be read anymore (DONTNEED).
|
|
|
|
size_t evict(const fd &, const size_t &, const read_opts & = read_opts_default);
|
2018-01-11 06:30:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Options for a read operation
|
|
|
|
struct ircd::fs::read_opts
|
2018-12-30 05:02:22 +01:00
|
|
|
:opts
|
2018-01-11 06:30:31 +01:00
|
|
|
{
|
2018-12-18 22:41:45 +01:00
|
|
|
/// Yields the ircd::ctx until the buffers are full or EOF. This performs
|
|
|
|
/// the unix incremental read loop internally. When this option is true,
|
|
|
|
/// any return value from a function in the read suite will not be a
|
|
|
|
/// partial value requiring another invocation of read.
|
|
|
|
bool all {true};
|
2018-12-18 23:17:38 +01:00
|
|
|
|
|
|
|
/// Whether to propagate an EINTR; otherwise we reinvoke the syscall. For a
|
|
|
|
/// read(2) family call this can only happen before any data was read;
|
|
|
|
/// an exception will be thrown. We default to true because we have faith
|
|
|
|
/// in the useful propagation of an exception for this event.
|
|
|
|
bool interruptible {true};
|
2018-12-27 00:41:12 +01:00
|
|
|
|
2019-04-06 21:13:16 +02:00
|
|
|
read_opts(const off_t & = 0);
|
2018-01-11 06:30:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline
|
|
|
|
ircd::fs::read_opts::read_opts(const off_t &offset)
|
2019-04-06 21:13:16 +02:00
|
|
|
:opts{offset, op::READ}
|
2018-01-11 06:30:31 +01:00
|
|
|
{}
|