AimRT/install_x64/include/unifex/file_concepts.hpp
2025-01-12 19:51:34 +08:00

80 lines
2.6 KiB
C++
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License Version 2.0 with LLVM Exceptions
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://llvm.org/LICENSE.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <unifex/tag_invoke.hpp>
#include <unifex/io_concepts.hpp>
#include <unifex/filesystem.hpp>
#include <unifex/detail/prologue.hpp>
namespace unifex {
namespace _filesystem {
inline const struct open_file_read_only_cpo {
template <typename Executor>
auto operator()(Executor&& executor, const filesystem::path& path) const
noexcept(is_nothrow_tag_invocable_v<
open_file_read_only_cpo,
Executor,
const filesystem::path&>)
-> tag_invoke_result_t<
open_file_read_only_cpo,
Executor,
const filesystem::path&> {
return unifex::tag_invoke(*this, (Executor &&) executor, path);
}
} open_file_read_only{};
inline const struct open_file_write_only_cpo {
template <typename Executor>
auto operator()(Executor&& executor, const filesystem::path& path) const
noexcept(is_nothrow_tag_invocable_v<
open_file_write_only_cpo,
Executor,
const filesystem::path&>)
-> tag_invoke_result_t<
open_file_write_only_cpo,
Executor,
const filesystem::path&> {
return unifex::tag_invoke(*this, (Executor &&) executor, path);
}
} open_file_write_only{};
inline const struct open_file_read_write_cpo {
template <typename Executor>
auto operator()(Executor&& executor, const filesystem::path& path) const
noexcept(is_nothrow_tag_invocable_v<
open_file_read_write_cpo,
Executor,
const filesystem::path&>)
-> tag_invoke_result_t<
open_file_read_write_cpo,
Executor,
const filesystem::path&> {
return unifex::tag_invoke(*this, (Executor &&) executor, path);
}
} open_file_read_write{};
} // namespace _filesystem
using _filesystem::open_file_read_only;
using _filesystem::open_file_write_only;
using _filesystem::open_file_read_write;
} // namespace unifex
#include <unifex/detail/epilogue.hpp>