Commit Graph

12 Commits

Author SHA1 Message Date
Ben Marsh
8182d0fc32 EpicGames.Perforce.Native: Attempt to fix P4 symbol visibility.
#preflight none

[CL 20325466 by Ben Marsh in ue5-main branch]
2022-05-23 09:07:08 -04:00
Ben Marsh
ba6b53e861 Output EpicGames.Perforce.Native files to Engine/Binaries/DotNET rather than Engine/Binaries/{Platform}.
#preflight 62878a311e478b95c70b2ac8

[CL 20293335 by Ben Marsh in ue5-main branch]
2022-05-20 09:08:49 -04:00
Ben Marsh
99408a4501 Add UBT build files and BuildGraph script for EpicGames.Perforce.Native.
#preflight 6286e3768828ea88c814018c

[CL 20292753 by Ben Marsh in ue5-main branch]
2022-05-20 07:41:29 -04:00
Ben Marsh
c4759670d1 EpicGames.Perforce.Native: Fix path to SSL library.
#preflight none

[CL 19765532 by Ben Marsh in ue5-main branch]
2022-04-14 18:56:47 -04:00
Ben Marsh
3948f921c5 Horde: Fix double-free when using intercepted IO in native perforce library.
#preflight none

[CL 19325783 by Ben Marsh in ue5-main branch]
2022-03-09 16:16:08 -05:00
Ben Marsh
2897458ba4 Horde: Fix corrupt data in native Perforce library when server returns gzipped streams.
- Implementation of this logic exists within the p4 library, but is required to be reimplemented by any custom filesystem implementations.
- Add header for gzip.h utility class used by regular implementation so we can duplicate the logic for our overriden impl.
- Move output folder for compiled binaries under Engine/Binaries.

#preflight none

[CL 19309319 by Ben Marsh in ue5-main branch]
2022-03-08 15:14:22 -05:00
Ben Marsh
892805279c P4: Add support for intercepting I/O through native Perforce library. This allows streaming sync data directly into memory, avoiding any writes to disk.
#preflight 620a741d17632e948459cb9d

[CL 18979717 by Ben Marsh in ue5-main branch]
2022-02-14 10:37:38 -05:00
Ben Marsh
eddef12371 UGS-CLI: Various improvements/fixes.
* Support for creating workspaces using native P4 client, so "ugs init" now works correctly.
* Output a list of files which need to be clobbered when syncing, and add a -Clobber option to confirm intent.
* Fix exception accessing folders that user does not have permissions to when detecting a new workspace.

#preflight none

[CL 18618091 by Ben Marsh in ue5-main branch]
2022-01-14 10:51:47 -05:00
Ben Marsh
0f5d4b412d Add support for setting passwords on the native client at creation time.
[CL 18113267 by Ben Marsh in ue5-main branch]
2021-11-09 16:41:23 -05:00
Ben Marsh
14c8b42e39 Horde: Fix tagged output of some Perforce commands (eg. p4 dirs).
[CL 17570617 by Ben Marsh in ue5-main branch]
2021-09-20 10:32:28 -04:00
Ben Marsh
3b17bd92d0 Horde: Add support for the "p4 dirs" command.
This requires special handling for the native Perforce connection, since it returns information as message records that the client formats as strings through an "Error" object. To work around this, the C++ library converts such messages into stat records that are more easily parsed by C# code.

[CL 17526529 by Ben Marsh in ue5-main branch]
2021-09-15 16:49:30 -04:00
Ben Marsh
390c78654c Add a native implementation of IPerforceConnection, which uses the Perforce C++ API (via a DLL called EpicGames.Perforce.Native) to output records to a buffer shared with managed code (which is double-buffered with the processing thread in managed code). Interaction with the API is lightweight and done on a background thread, with an async API overlaid on top. Prebuilt binaries for the native component are currently tested on Windows and Linux.
Performance has been tested against the P4 .NET API and the command line client by performing a fstat of non-deleted files in //UE5/Main.

EpicGames.Perforce (this library): 47s
Command line client piping to file: 59s
P4 .NET API: ~40 minutes

[CL 17347502 by Ben Marsh in ue5-main branch]
2021-08-29 16:35:57 -04:00