mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
* init * SQLite changes * Move html folder, edit build scripts * AppApi interface * Build flags * AppApi inheritance * Finishing touches * Merge upstream changes * Test CI * Fix class inits * Rename AppApi * Merge upstream changes * Fix SQLiteLegacy on Linux, Add Linux interop, build tools * Linux specific localisation strings * Make it run * Bring back most of Linux functionality * Clean up * Fix TTS voices * Fix UI var * Changes * Electron minimise to tray * Remove separate toggle for WlxOverlay * Fixes * Touchups * Move csproj * Window zoom, Desktop Notifications, VR check on Linux * Fix desktop notifications, VR check spam * Fix building on Linux * Clean up * Fix WebApi headers * Rewrite VRCX updater * Clean up * Linux updater * Add Linux to build action * init * SQLite changes * Move html folder, edit build scripts * AppApi interface * Build flags * AppApi inheritance * Finishing touches * Merge upstream changes * Test CI * Fix class inits * Rename AppApi * Merge upstream changes * Fix SQLiteLegacy on Linux, Add Linux interop, build tools * Linux specific localisation strings * Make it run * Bring back most of Linux functionality * Clean up * Fix TTS voices * Changes * Electron minimise to tray * Remove separate toggle for WlxOverlay * Fixes * Touchups * Move csproj * Window zoom, Desktop Notifications, VR check on Linux * Fix desktop notifications, VR check spam * Fix building on Linux * Clean up * Fix WebApi headers * Rewrite VRCX updater * Clean up * Linux updater * Add Linux to build action * Test updater * Rebase and handle merge conflicts * Fix Linux updater * Fix Linux app restart * Fix friend order * Handle AppImageInstaller, show an install message on Linux * Updates to the AppImage installer * Fix Linux updater, fix set version, check for .NET, copy wine prefix * Handle random errors * Rotate tall prints * try fix Linux restart bug * Final --------- Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
121 lines
3.8 KiB
C#
121 lines
3.8 KiB
C#
// Copyright(c) 2019-2022 pypy, Natsumi and individual contributors.
|
|
// All rights reserved.
|
|
//
|
|
// This work is licensed under the terms of the MIT license.
|
|
// For a copy, see <https://opensource.org/licenses/MIT>.
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
|
|
#if !LINUX
|
|
using CefSharp;
|
|
#endif
|
|
|
|
|
|
namespace VRCX
|
|
{
|
|
internal class IPCClient
|
|
{
|
|
private static readonly UTF8Encoding noBomEncoding = new UTF8Encoding(false, false);
|
|
private readonly NamedPipeServerStream _ipcServer;
|
|
private readonly byte[] _recvBuffer = new byte[1024 * 8];
|
|
private readonly MemoryStream memoryStream;
|
|
private readonly byte[] packetBuffer = new byte[1024 * 1024];
|
|
private readonly Newtonsoft.Json.JsonSerializer serializer = new Newtonsoft.Json.JsonSerializer();
|
|
private string _currentPacket;
|
|
|
|
public IPCClient(NamedPipeServerStream ipcServer)
|
|
{
|
|
memoryStream = new MemoryStream(packetBuffer);
|
|
serializer.Culture = CultureInfo.InvariantCulture;
|
|
serializer.Formatting = Formatting.None;
|
|
|
|
_ipcServer = ipcServer;
|
|
}
|
|
|
|
public void BeginRead()
|
|
{
|
|
_ipcServer.BeginRead(_recvBuffer, 0, _recvBuffer.Length, OnRead, _ipcServer);
|
|
}
|
|
|
|
public void Send(IPCPacket ipcPacket)
|
|
{
|
|
try
|
|
{
|
|
memoryStream.Seek(0, SeekOrigin.Begin);
|
|
using (var streamWriter = new StreamWriter(memoryStream, noBomEncoding, 65535, true))
|
|
using (var writer = new JsonTextWriter(streamWriter))
|
|
{
|
|
serializer.Serialize(writer, ipcPacket);
|
|
streamWriter.Write((char)0x00);
|
|
streamWriter.Flush();
|
|
}
|
|
|
|
var length = (int)memoryStream.Position;
|
|
_ipcServer?.BeginWrite(packetBuffer, 0, length, OnSend, null);
|
|
}
|
|
catch
|
|
{
|
|
IPCServer.Clients.Remove(this);
|
|
}
|
|
}
|
|
|
|
private void OnRead(IAsyncResult asyncResult)
|
|
{
|
|
try
|
|
{
|
|
var bytesRead = _ipcServer.EndRead(asyncResult);
|
|
|
|
if (bytesRead <= 0)
|
|
{
|
|
IPCServer.Clients.Remove(this);
|
|
_ipcServer.Close();
|
|
return;
|
|
}
|
|
|
|
_currentPacket += Encoding.UTF8.GetString(_recvBuffer, 0, bytesRead);
|
|
|
|
if (_currentPacket[_currentPacket.Length - 1] == (char)0x00)
|
|
{
|
|
var packets = _currentPacket.Split((char)0x00);
|
|
|
|
foreach (var packet in packets)
|
|
{
|
|
if (string.IsNullOrEmpty(packet))
|
|
continue;
|
|
|
|
#if !LINUX
|
|
if (MainForm.Instance?.Browser != null && !MainForm.Instance.Browser.IsLoading && MainForm.Instance.Browser.CanExecuteJavascriptInMainFrame)
|
|
MainForm.Instance.Browser.ExecuteScriptAsync("$app.ipcEvent", packet);
|
|
#endif
|
|
}
|
|
|
|
_currentPacket = string.Empty;
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Console.WriteLine(e);
|
|
}
|
|
|
|
BeginRead();
|
|
}
|
|
|
|
public static void OnSend(IAsyncResult asyncResult)
|
|
{
|
|
var ipcClient = (NamedPipeClientStream)asyncResult.AsyncState;
|
|
ipcClient?.EndWrite(asyncResult);
|
|
}
|
|
|
|
public static void Close(IAsyncResult asyncResult)
|
|
{
|
|
var ipcClient = (NamedPipeClientStream)asyncResult.AsyncState;
|
|
ipcClient?.EndWrite(asyncResult);
|
|
ipcClient?.Close();
|
|
}
|
|
}
|
|
} |