/* Examples of LLFIO use (C) 2018 - 2022 Niall Douglas (2 commits) File Created: Aug 2018 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License in the accompanying file Licence.txt or at http://www.apache.org/licenses/LICENSE-2.0 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. Distributed under the Boost Software License, Version 1.0. (See accompanying file Licence.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #include "../include/llfio.hpp" #include #include #include // clang-format off #ifdef _MSC_VER #pragma warning(disable: 4706) // assignment within conditional #endif void mapped_file() { //! [mapped_file] namespace llfio = LLFIO_V2_NAMESPACE; // Open the mapped file for read llfio::mapped_file_handle mh = llfio::mapped_file( // {}, // path_handle to base directory "foo" // path_view to path fragment relative to base directory // default mode is read only // default creation is open existing // default caching is all // default flags is none ).value(); // If failed, throw a filesystem_error exception auto length = mh.maximum_extent().value(); // Find my text for (char *p = reinterpret_cast(mh.address()); (p = (char *)memchr(p, 'h', reinterpret_cast(mh.address()) + length - p)); p++) { if (strcmp(p, "hello")) { std::cout << "Happy days!" << std::endl; } } //! [mapped_file] } int main() { return 0; }