Commit 9a1f15e
authored
feat: Integrate IProcessInfoProvider IPC into core workflow (#413)
* feat: integrate IProcessInfoProvider IPC into core workflow
Replace Environments (encrypted file) IPC with AutoProcessInfoProvider
(NamedPipe > SharedMemory > EncryptedFile auto-fallback) for all
ProcessInfo transfer paths:
- ClientUpdateStrategy: send ProcessInfo via AutoProcessInfoProvider
after building it, providing zero-file-residue IPC for the upgrade path
- SilentPollOrchestrator: replace Environments.SetEnvironmentVariable
with AutoProcessInfoProvider.SendAsync in OnProcessExit
- GeneralUpdateBootstrap.InitializeFromEnvironment: replace
Environments.GetEnvironmentVariable with ReceiveAsync
Closes #408
* fix: add CancellationToken timeout to IPC SendAsync calls
Prevent indefinite blocking when no upgrade process connects:
- ClientUpdateStrategy: 3s NamedPipe timeout, auto-falls back to
SharedMemory/EncryptedFile (normal client flow has no separate
upgrade process)
- SilentPollOrchestrator.OnProcessExit: 5s NamedPipe timeout with
SharedMemory/EncryptedFile auto-fallback for timing gaps
Related #408
* refactor: simplify IPC to EncryptedFile only, remove NamedPipe/SharedMemory/Auto
Per review feedback: EncryptedFile is the simplest and most reliable
cross-platform IPC mechanism. Remove NamedPipe (connection timing issues),
SharedMemory (platform-specific quirks), and Auto (fallback complexity).
Changes:
- IProcessInfoProvider.cs: retain only interface + EncryptedFileProcessInfoProvider
- All call sites use EncryptedFileProcessInfoProvider directly
- Remove CancellationToken timeouts (EncryptedFile is synchronous)
Related #408
* refactor: add sync Send/Receive to EncryptedFileProcessInfoProvider
Replace all .ReceiveAsync().GetAwaiter().GetResult() and
.SendAsync().GetAwaiter().GetResult() with direct sync calls.
- Add Send() / Receive() sync methods to EncryptedFileProcessInfoProvider
- GeneralUpdateBootstrap: use Receive() instead of ReceiveAsync().GetAwaiter()
- SilentPollOrchestrator: use Send() instead of SendAsync().GetAwaiter()
- ClientUpdateStrategy: use Send() instead of await SendAsync()
Related #408
* fix: update tests for simplified EncryptedFile-only IPC
Remove tests referencing deleted providers:
- NamedPipeProvider_DetectsTimeout
- SharedMemoryProvider_RoundTrip
- SharedMemoryProvider_ReceiveWithoutSend_ReturnsNull
- AutoProvider_FallsBackToEncryptedFile
- AutoProvider_ThrowsWhenAllFail
Replaced with EncryptedFileIpcTests covering:
- Send/Receive roundtrip
- Receive without send returns null
- Data confidentiality and single-read guarantee
- Async API delegates to sync
Related #4081 parent 209518b commit 9a1f15e
5 files changed
Lines changed: 70 additions & 259 deletions
File tree
- src/c#/GeneralUpdate.Core
- Bootstrap
- Ipc
- Silent
- Strategy
- tests/CoreTest/Ipc
Lines changed: 3 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
| 19 | + | |
19 | 20 | | |
20 | 21 | | |
21 | 22 | | |
| |||
256 | 257 | | |
257 | 258 | | |
258 | 259 | | |
259 | | - | |
260 | | - | |
261 | | - | |
262 | | - | |
263 | | - | |
| 260 | + | |
| 261 | + | |
264 | 262 | | |
265 | 263 | | |
266 | 264 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | | - | |
5 | 3 | | |
6 | 4 | | |
7 | 5 | | |
8 | 6 | | |
9 | 7 | | |
10 | | - | |
11 | 8 | | |
12 | 9 | | |
13 | 10 | | |
| |||
20 | 17 | | |
21 | 18 | | |
22 | 19 | | |
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 | | - | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
55 | 24 | | |
56 | 25 | | |
57 | 26 | | |
| |||
69 | 38 | | |
70 | 39 | | |
71 | 40 | | |
72 | | - | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
73 | 48 | | |
74 | 49 | | |
75 | 50 | | |
76 | 51 | | |
77 | 52 | | |
78 | 53 | | |
79 | 54 | | |
80 | | - | |
81 | 55 | | |
82 | 56 | | |
83 | 57 | | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
84 | 62 | | |
85 | | - | |
| 63 | + | |
86 | 64 | | |
87 | 65 | | |
88 | 66 | | |
| |||
91 | 69 | | |
92 | 70 | | |
93 | 71 | | |
94 | | - | |
95 | | - | |
| 72 | + | |
96 | 73 | | |
97 | 74 | | |
98 | 75 | | |
99 | 76 | | |
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 | | - | |
Lines changed: 17 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
20 | 21 | | |
21 | 22 | | |
22 | 23 | | |
| |||
36 | 37 | | |
37 | 38 | | |
38 | 39 | | |
| 40 | + | |
39 | 41 | | |
40 | 42 | | |
41 | 43 | | |
| |||
160 | 162 | | |
161 | 163 | | |
162 | 164 | | |
163 | | - | |
164 | | - | |
| 165 | + | |
| 166 | + | |
165 | 167 | | |
166 | 168 | | |
167 | 169 | | |
168 | 170 | | |
169 | | - | |
| 171 | + | |
170 | 172 | | |
171 | 173 | | |
172 | 174 | | |
| |||
311 | 313 | | |
312 | 314 | | |
313 | 315 | | |
314 | | - | |
315 | 316 | | |
| 317 | + | |
| 318 | + | |
| 319 | + | |
| 320 | + | |
| 321 | + | |
316 | 322 | | |
317 | 323 | | |
318 | 324 | | |
319 | 325 | | |
320 | 326 | | |
| 327 | + | |
| 328 | + | |
| 329 | + | |
| 330 | + | |
| 331 | + | |
| 332 | + | |
| 333 | + | |
321 | 334 | | |
322 | 335 | | |
323 | 336 | | |
| |||
Lines changed: 14 additions & 6 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| 9 | + | |
9 | 10 | | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
13 | 14 | | |
14 | 15 | | |
| 16 | + | |
15 | 17 | | |
16 | 18 | | |
17 | 19 | | |
| |||
169 | 171 | | |
170 | 172 | | |
171 | 173 | | |
172 | | - | |
173 | | - | |
174 | | - | |
175 | | - | |
176 | | - | |
177 | | - | |
| 174 | + | |
| 175 | + | |
| 176 | + | |
| 177 | + | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
178 | 182 | | |
179 | 183 | | |
| 184 | + | |
| 185 | + | |
| 186 | + | |
| 187 | + | |
180 | 188 | | |
181 | 189 | | |
182 | 190 | | |
| |||
0 commit comments