mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
83 lines
1.4 KiB
C++
83 lines
1.4 KiB
C++
#include "pch.h"
|
|
|
|
#include "IPC.h"
|
|
|
|
#define FILE_LOCKSMITH_IPC_PIPE_NAME L"\\\\.\\pipe\\FileLocksmith-cdc0e7ad-e8c6-47fd-a63d-c1c90d73b2e3"
|
|
|
|
constexpr DWORD DefaultPipeBufferSize = 8192;
|
|
constexpr DWORD DefaultPipeTimeoutMillis = 200;
|
|
|
|
namespace ipc
|
|
{
|
|
Writer::Writer()
|
|
{
|
|
}
|
|
|
|
HRESULT Writer::start()
|
|
{
|
|
SECURITY_ATTRIBUTES sa;
|
|
sa.nLength = sizeof(SECURITY_ATTRIBUTES);
|
|
sa.lpSecurityDescriptor = NULL;
|
|
sa.bInheritHandle = TRUE;
|
|
|
|
if (!CreatePipe(&m_read_pipe, &m_write_pipe, &sa, 0))
|
|
{
|
|
return HRESULT_FROM_WIN32(GetLastError());
|
|
}
|
|
}
|
|
|
|
HRESULT Writer::add_path(LPCWSTR path)
|
|
{
|
|
int length = lstrlenW(path);
|
|
DWORD written;
|
|
if (!WriteFile(m_write_pipe, path, length * sizeof(WCHAR), &written, NULL))
|
|
{
|
|
return HRESULT_FROM_WIN32(GetLastError());
|
|
}
|
|
|
|
if (written != length * sizeof(WCHAR))
|
|
{
|
|
return E_FAIL;
|
|
}
|
|
|
|
WCHAR line_break = L'\n';
|
|
if (!WriteFile(m_write_pipe, &line_break, sizeof(WCHAR), &written, NULL))
|
|
{
|
|
return HRESULT_FROM_WIN32(GetLastError());
|
|
}
|
|
|
|
if (written != sizeof(WCHAR))
|
|
{
|
|
return E_FAIL;
|
|
}
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
void Writer::finish()
|
|
{
|
|
if (m_write_pipe)
|
|
{
|
|
CloseHandle(m_write_pipe);
|
|
m_write_pipe = NULL;
|
|
}
|
|
}
|
|
|
|
HANDLE Writer::get_read_handle()
|
|
{
|
|
return m_read_pipe;
|
|
}
|
|
|
|
std::vector<std::wstring> read_paths_from_stdin()
|
|
{
|
|
std::vector<std::wstring> result;
|
|
std::wstring line;
|
|
while (std::getline(std::wcin, line))
|
|
{
|
|
result.emplace_back(std::move(line));
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|