-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZenzClient.cpp
More file actions
392 lines (338 loc) · 9.95 KB
/
ZenzClient.cpp
File metadata and controls
392 lines (338 loc) · 9.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
#include "ZenzClient.h"
#ifndef NOMINMAX
#define NOMINMAX
#endif
#include <Windows.h>
#include <filesystem>
#include <mutex>
#include <string>
#include <thread>
#include <unordered_set>
#include <vector>
#include "SumireSettingsStore.h"
#include "ZenzProtocol.h"
namespace
{
bool WriteAll(HANDLE handle, const void* data, size_t byteCount)
{
const BYTE* current = static_cast<const BYTE*>(data);
size_t remaining = byteCount;
while (remaining > 0)
{
DWORD written = 0;
const DWORD chunk = static_cast<DWORD>((std::min)(remaining, static_cast<size_t>(0x7fffffff)));
if (!WriteFile(handle, current, chunk, &written, nullptr))
{
return false;
}
current += written;
remaining -= written;
}
return true;
}
bool ReadAll(HANDLE handle, void* data, size_t byteCount)
{
BYTE* current = static_cast<BYTE*>(data);
size_t remaining = byteCount;
while (remaining > 0)
{
DWORD read = 0;
const DWORD chunk = static_cast<DWORD>((std::min)(remaining, static_cast<size_t>(0x7fffffff)));
if (!ReadFile(handle, current, chunk, &read, nullptr) || read == 0)
{
return false;
}
current += read;
remaining -= read;
}
return true;
}
bool WriteWideString(HANDLE handle, const std::wstring& value)
{
if (value.empty())
{
return true;
}
return WriteAll(handle, value.data(), value.size() * sizeof(wchar_t));
}
bool ReadWideString(HANDLE handle, std::uint32_t charCount, std::wstring* value)
{
value->clear();
if (charCount == 0)
{
return true;
}
value->resize(charCount);
return ReadAll(handle, value->data(), static_cast<size_t>(charCount) * sizeof(wchar_t));
}
std::filesystem::path GetCurrentModuleDirectory()
{
HMODULE module = nullptr;
if (!GetModuleHandleExW(
GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,
reinterpret_cast<LPCWSTR>(&GetCurrentModuleDirectory),
&module))
{
return std::filesystem::current_path();
}
std::wstring path(MAX_PATH, L'\0');
for (;;)
{
const DWORD length = GetModuleFileNameW(module, path.data(), static_cast<DWORD>(path.size()));
if (length == 0)
{
return std::filesystem::current_path();
}
if (length < path.size() - 1)
{
path.resize(length);
return std::filesystem::path(path).parent_path();
}
path.resize(path.size() * 2);
}
}
bool IsServiceEnabledInSettings()
{
return SumireSettingsStore::Load().zenzServiceEnabled;
}
bool SendRequestHeader(HANDLE pipe, const ZenzProtocol::RequestHeader& request)
{
return WriteAll(pipe, &request, sizeof(request));
}
}
ZenzClient::ZenzClient(Config config)
: _config(std::move(config))
{
}
std::wstring ZenzClient::Generate(
const std::wstring& reading,
const std::wstring& leftContext,
DWORD timeoutMs,
const std::function<bool()>& shouldCancel) const
{
const std::wstring modelPath = ResolveModelPath();
if (!_config.enabled || !IsServiceEnabledInSettings() || reading.empty() || modelPath.empty())
{
return L"";
}
if (shouldCancel && shouldCancel())
{
return L"";
}
if (!EnsureServiceRunning(timeoutMs))
{
return L"";
}
if (shouldCancel && shouldCancel())
{
return L"";
}
HANDLE pipe = CreateFileW(
ZenzProtocol::kPipeName,
GENERIC_READ | GENERIC_WRITE,
0,
nullptr,
OPEN_EXISTING,
0,
nullptr);
if (pipe == INVALID_HANDLE_VALUE)
{
return L"";
}
DWORD readMode = PIPE_READMODE_MESSAGE;
SetNamedPipeHandleState(pipe, &readMode, nullptr, nullptr);
ZenzProtocol::RequestHeader request;
request.readingChars = static_cast<std::uint32_t>(reading.size());
request.leftContextChars = static_cast<std::uint32_t>(leftContext.size());
request.modelPathChars = static_cast<std::uint32_t>(modelPath.size());
request.modelRepoChars = static_cast<std::uint32_t>(_config.modelRepo.size());
request.timeoutMs = timeoutMs;
bool ok = WriteAll(pipe, &request, sizeof(request)) &&
WriteWideString(pipe, reading) &&
WriteWideString(pipe, leftContext) &&
WriteWideString(pipe, modelPath) &&
WriteWideString(pipe, _config.modelRepo);
if (ok)
{
FlushFileBuffers(pipe);
}
std::wstring generated;
if (ok)
{
for (;;)
{
if (shouldCancel && shouldCancel())
{
ok = false;
break;
}
ZenzProtocol::ResponseHeader response;
if (!ReadAll(pipe, &response, sizeof(response)) || response.version != ZenzProtocol::kVersion)
{
ok = false;
break;
}
std::wstring chunk;
if (!ReadWideString(pipe, response.resultChars, &chunk))
{
ok = false;
break;
}
ok = response.status == static_cast<std::uint32_t>(ZenzProtocol::Status::Ok);
if (ok)
{
generated = std::move(chunk);
}
break;
}
}
CloseHandle(pipe);
return ok ? generated : L"";
}
void ZenzClient::WarmUpAsync() const
{
const std::wstring modelPath = ResolveModelPath();
if (!_config.enabled || !IsServiceEnabledInSettings() || modelPath.empty())
{
return;
}
static std::mutex warmUpMutex;
static std::unordered_set<std::wstring> warmingModels;
{
std::lock_guard<std::mutex> lock(warmUpMutex);
if (warmingModels.find(modelPath) != warmingModels.end())
{
return;
}
warmingModels.insert(modelPath);
}
const Config config = _config;
std::thread([modelPath, config]()
{
ZenzClient client(config);
bool keepMarked = true;
if (client.EnsureServiceRunning(1500))
{
HANDLE pipe = CreateFileW(
ZenzProtocol::kPipeName,
GENERIC_READ | GENERIC_WRITE,
0,
nullptr,
OPEN_EXISTING,
0,
nullptr);
if (pipe != INVALID_HANDLE_VALUE)
{
ZenzProtocol::RequestHeader request;
request.command = static_cast<std::uint32_t>(ZenzProtocol::Command::WarmUp);
request.modelPathChars = static_cast<std::uint32_t>(modelPath.size());
request.modelRepoChars = static_cast<std::uint32_t>(config.modelRepo.size());
const bool ok = SendRequestHeader(pipe, request) &&
WriteWideString(pipe, std::wstring()) &&
WriteWideString(pipe, std::wstring()) &&
WriteWideString(pipe, modelPath) &&
WriteWideString(pipe, config.modelRepo);
if (ok)
{
FlushFileBuffers(pipe);
ZenzProtocol::ResponseHeader response;
keepMarked =
ReadAll(pipe, &response, sizeof(response)) &&
response.version == ZenzProtocol::kVersion &&
response.status == static_cast<std::uint32_t>(ZenzProtocol::Status::Ok);
}
else
{
keepMarked = false;
}
CloseHandle(pipe);
}
else
{
keepMarked = false;
}
}
else
{
keepMarked = false;
}
if (!keepMarked)
{
std::lock_guard<std::mutex> lock(warmUpMutex);
warmingModels.erase(modelPath);
}
}).detach();
}
bool ZenzClient::IsEnabled() const
{
return _config.enabled && IsServiceEnabledInSettings();
}
bool ZenzClient::EnsureServiceRunning(DWORD timeoutMs) const
{
if (WaitNamedPipeW(ZenzProtocol::kPipeName, timeoutMs) != 0)
{
return true;
}
const std::wstring servicePath = GetServiceExecutablePath();
if (servicePath.empty())
{
return false;
}
static std::mutex startMutex;
std::lock_guard<std::mutex> lock(startMutex);
if (WaitNamedPipeW(ZenzProtocol::kPipeName, 50) != 0)
{
return true;
}
STARTUPINFOW startupInfo = {};
startupInfo.cb = sizeof(startupInfo);
PROCESS_INFORMATION processInfo = {};
std::wstring commandLine = L"\"";
commandLine += servicePath;
commandLine += L"\"";
if (!CreateProcessW(
nullptr,
commandLine.data(),
nullptr,
nullptr,
FALSE,
CREATE_NO_WINDOW,
nullptr,
nullptr,
&startupInfo,
&processInfo))
{
return false;
}
CloseHandle(processInfo.hThread);
CloseHandle(processInfo.hProcess);
return WaitNamedPipeW(ZenzProtocol::kPipeName, timeoutMs) != 0;
}
std::wstring ZenzClient::GetServiceExecutablePath() const
{
const std::filesystem::path moduleDirectory = GetCurrentModuleDirectory();
const std::filesystem::path candidate = moduleDirectory / L"SumireZenzService.exe";
std::error_code ec;
if (std::filesystem::exists(candidate, ec) && !ec)
{
return candidate.wstring();
}
return L"";
}
std::wstring ZenzClient::ResolveModelPath() const
{
if (!_config.modelPath.empty())
{
return _config.modelPath;
}
const std::filesystem::path moduleDirectory = GetCurrentModuleDirectory();
if (_config.modelPreset == L"small")
{
return (moduleDirectory / L"models" / L"zenz-v3.1-small-gguf" / L"ggml-model-Q5_K_M.gguf").wstring();
}
if (_config.modelPreset == L"custom")
{
return L"";
}
return (moduleDirectory / L"models" / L"zenz-v3.1-xsmall-gguf" / L"ggml-model-Q5_K_M.gguf").wstring();
}