forked from projectM-visualizer/projectm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpIPCClient_Example.cs
More file actions
413 lines (366 loc) · 12.8 KB
/
CSharpIPCClient_Example.cs
File metadata and controls
413 lines (366 loc) · 12.8 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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/**
* C# IPC CLIENT EXAMPLE
*
* This is a complete example of how to communicate with the C++ projectM app
* using the IPC protocol over stdin/stdout.
*
* Usage:
* 1. Start the C++ app as a child process with stdin/stdout redirected
* 2. Create an instance of this class
* 3. Send/receive messages as needed
*/
using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
namespace ProjectMIPC
{
/// <summary>
/// Message types for IPC communication
/// </summary>
public enum MessageType
{
// C# -> C++
TIMESTAMP = 0,
LOAD_PRESET = 1,
DELETE_PRESET = 2,
START_PREVIEW = 3,
STOP_PREVIEW = 4,
// C++ -> C#
PRESET_LOADED = 5,
CURRENT_STATE = 6,
PREVIEW_STATUS = 7,
ERROR_RESPONSE = 8
}
/// <summary>
/// Represents a preset in the queue
/// </summary>
public class PresetQueueEntry
{
public string PresetName { get; set; }
public ulong TimestampMs { get; set; }
public PresetQueueEntry(string name, ulong timestamp)
{
PresetName = name;
TimestampMs = timestamp;
}
}
/// <summary>
/// Main IPC client class
/// </summary>
public class ProjectMIPCClient : IDisposable
{
private Process cppProcess;
private StreamWriter processInput;
private StreamReader processOutput;
private Task listenerTask;
private CancellationTokenSource cancellationSource;
// Event for receiving messages
public event EventHandler<IPCMessageEventArgs> MessageReceived;
// Current state
public List<PresetQueueEntry> PresetQueue { get; private set; }
public ulong LastTimestampMs { get; private set; }
public bool IsPreviewPlaying { get; private set; }
/// <summary>
/// Initialize the IPC client by starting the C++ process
/// </summary>
/// <param name="exePath">Path to the C++ executable</param>
/// <param name="args">Command line arguments</param>
public ProjectMIPCClient(string exePath, string args = "")
{
PresetQueue = new List<PresetQueueEntry>();
cancellationSource = new CancellationTokenSource();
try
{
// Start the C++ process
ProcessStartInfo psi = new ProcessStartInfo
{
FileName = exePath,
Arguments = args,
RedirectStandardInput = true,
RedirectStandardOutput = true,
RedirectStandardError = false,
UseShellExecute = false,
CreateNoWindow = false
};
cppProcess = Process.Start(psi);
processInput = cppProcess.StandardInput;
processOutput = cppProcess.StandardOutput;
// CRITICAL: Set stream buffering to line-buffered (unbuffered text)
processInput.AutoFlush = true; // Auto-flush after each write
processOutput.BaseStream.ReadTimeout = 5000; // 5 second timeout
// Start listening for messages
listenerTask = Task.Run(() => ListenForMessages(cancellationSource.Token));
// Give the C++ app a moment to initialize IPC
Task.Delay(500).Wait();
Console.WriteLine("IPC Client initialized successfully");
}
catch (Exception ex)
{
Console.WriteLine($"Failed to initialize IPC client: {ex.Message}");
throw;
}
}
/// <summary>
/// Send current timestamp to C++ app
/// </summary>
public void SendTimestamp(ulong timestampMs)
{
try
{
JObject msg = new JObject();
msg["type"] = (int)MessageType.TIMESTAMP;
msg["data"] = new JObject
{
{ "timestampMs", timestampMs }
};
SendMessage(msg.ToString(Formatting.None));
LastTimestampMs = timestampMs;
}
catch (Exception ex)
{
Console.WriteLine($"Error sending timestamp: {ex.Message}");
}
}
/// <summary>
/// Load a preset at specific timestamp
/// </summary>
public void LoadPreset(string presetName, ulong startTimestampMs)
{
try
{
JObject msg = new JObject();
msg["type"] = (int)MessageType.LOAD_PRESET;
msg["data"] = new JObject
{
{ "presetName", presetName },
{ "startTimestampMs", startTimestampMs }
};
SendMessage(msg.ToString(Formatting.None));
}
catch (Exception ex)
{
Console.WriteLine($"Error loading preset: {ex.Message}");
}
}
/// <summary>
/// Delete a preset from the queue
/// </summary>
public void DeletePreset(string presetName, ulong timestampMs)
{
try
{
JObject msg = new JObject();
msg["type"] = (int)MessageType.DELETE_PRESET;
msg["data"] = new JObject
{
{ "presetName", presetName },
{ "timestampMs", timestampMs }
};
SendMessage(msg.ToString(Formatting.None));
}
catch (Exception ex)
{
Console.WriteLine($"Error deleting preset: {ex.Message}");
}
}
/// <summary>
/// Start audio preview from given timestamp
/// </summary>
public void StartPreview(ulong fromTimestampMs)
{
try
{
JObject msg = new JObject();
msg["type"] = (int)MessageType.START_PREVIEW;
msg["data"] = new JObject
{
{ "fromTimestampMs", fromTimestampMs }
};
SendMessage(msg.ToString(Formatting.None));
IsPreviewPlaying = true;
}
catch (Exception ex)
{
Console.WriteLine($"Error starting preview: {ex.Message}");
}
}
/// <summary>
/// Stop audio preview
/// </summary>
public void StopPreview()
{
try
{
JObject msg = new JObject();
msg["type"] = (int)MessageType.STOP_PREVIEW;
msg["data"] = new JObject();
SendMessage(msg.ToString(Formatting.None));
IsPreviewPlaying = false;
}
catch (Exception ex)
{
Console.WriteLine($"Error stopping preview: {ex.Message}");
}
}
/// <summary>
/// Internal: Send raw message
/// </summary>
private void SendMessage(string jsonMessage)
{
try
{
if (processInput == null)
{
throw new InvalidOperationException("Process input stream is null");
}
if (processInput.BaseStream == null || !processInput.BaseStream.CanWrite)
{
throw new InvalidOperationException("Cannot write to process - stream is closed");
}
Console.WriteLine($"[C# -> C++] Sending: {jsonMessage}");
processInput.WriteLine(jsonMessage);
processInput.Flush(); // Ensure message is sent immediately
}
catch (Exception ex)
{
Console.WriteLine($"Error sending message: {ex.Message}");
throw;
}
}
/// <summary>
/// Listen for messages from C++ process
/// </summary>
private void ListenForMessages(CancellationToken cancellationToken)
{
try
{
while (!cancellationToken.IsCancellationRequested)
{
string line = processOutput?.ReadLine();
if (string.IsNullOrEmpty(line))
{
break; // Process ended or no more input
}
try
{
JObject msg = JObject.Parse(line);
MessageType type = (MessageType)msg["type"].Value<int>();
JObject data = msg["data"] as JObject;
HandleMessage(type, data);
}
catch (Exception ex)
{
Console.WriteLine($"Error parsing message: {ex.Message}");
}
}
}
catch (Exception ex)
{
if (!cancellationToken.IsCancellationRequested)
{
Console.WriteLine($"Listener thread error: {ex.Message}");
}
}
}
/// <summary>
/// Handle incoming messages from C++
/// </summary>
private void HandleMessage(MessageType type, JObject data)
{
switch (type)
{
case MessageType.PRESET_LOADED:
HandlePresetLoaded(data);
break;
case MessageType.CURRENT_STATE:
HandleCurrentState(data);
break;
case MessageType.PREVIEW_STATUS:
HandlePreviewStatus(data);
break;
case MessageType.ERROR_RESPONSE:
HandleError(data);
break;
default:
Console.WriteLine($"Unknown message type: {type}");
break;
}
// Raise event
MessageReceived?.Invoke(this, new IPCMessageEventArgs
{
MessageType = type,
Data = data
});
}
private void HandlePresetLoaded(JObject data)
{
string presetName = data["presetName"]?.Value<string>();
ulong timestamp = data["startTimestampMs"]?.Value<ulong>() ?? 0;
Console.WriteLine($"[C++] Preset loaded: {presetName} at {timestamp}ms");
}
private void HandleCurrentState(JObject data)
{
ulong lastTimestamp = data["lastReceivedTimestampMs"]?.Value<ulong>() ?? 0;
JArray presetsArray = data["presets"] as JArray;
PresetQueue.Clear();
if (presetsArray != null)
{
foreach (var preset in presetsArray)
{
string name = preset["presetName"]?.Value<string>();
ulong ts = preset["timestampMs"]?.Value<ulong>() ?? 0;
PresetQueue.Add(new PresetQueueEntry(name, ts));
}
}
Console.WriteLine($"[C++] Current state: {PresetQueue.Count} presets");
}
private void HandlePreviewStatus(JObject data)
{
bool isPlaying = data["isPlaying"]?.Value<bool>() ?? false;
ulong currentTimestamp = data["currentTimestampMs"]?.Value<ulong>() ?? 0;
IsPreviewPlaying = isPlaying;
Console.WriteLine($"[C++] Preview status: Playing={isPlaying}, Timestamp={currentTimestamp}ms");
}
private void HandleError(JObject data)
{
string error = data["error"]?.Value<string>();
Console.WriteLine($"[C++ ERROR] {error}");
}
/// <summary>
/// Cleanup resources
/// </summary>
public void Dispose()
{
try
{
cancellationSource?.Cancel();
listenerTask?.Wait(5000); // Wait max 5 seconds
processInput?.Dispose();
processOutput?.Dispose();
if (cppProcess != null && !cppProcess.HasExited)
{
cppProcess.Kill();
cppProcess.WaitForExit(5000);
}
cppProcess?.Dispose();
}
catch (Exception ex)
{
Console.WriteLine($"Error during cleanup: {ex.Message}");
}
}
}
/// <summary>
/// Event arguments for received messages
/// </summary>
public class IPCMessageEventArgs : EventArgs
{
public MessageType MessageType { get; set; }
public JObject Data { get; set; }
}
}