/* Low Latency IPC Library for high-speed traffic Copyright (C) 2019 Michael Fabian Dirks This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ #pragma once #include #include #include extern "C" { #include } namespace datapath { namespace windows { namespace utility { static inline bool make_pipe_path(std::string& string) { // Convert path to WinAPI compatible string. if (string.length() >= (MAX_PATH - 10ull)) { // \\.\pipe\ is 9 characters, but we count 10 here. return false; } for (char& v : string) { if (v == '\\') { // Backslash is not allowed. v = '/'; } } string = {"\\\\.\\pipe\\" + string}; return true; } static inline std::wstring make_wide_string(std::string string) { std::wstring_convert> converter; return converter.from_bytes(string); } static VOID CALLBACK def_io_completion_routine(_In_ DWORD dwErrorCode, _In_ DWORD dwNumberOfBytesTransfered, _Inout_ LPOVERLAPPED lpOverlapped) { SetEvent(lpOverlapped->hEvent); } } // namespace utility } // namespace windows } // namespace datapath