Results 640 comments of Vadim Kantorov

oh, `--strip-components` is super-useful, nice that it's actually supported!

Also stumbled on `std::shared_ptr` not suppported: - https://github.com/mono/CppSharp/issues/1860

What would be very useful I think is some function that can tell for a given `archive_entry`: - if it is indeed uncompressed (and thus can indeed be `mmap` or...

Also, a question on `seek` for random access to ZIP with compressed entries. If we preserve the offset, would it work if we do `->client.seek` to this offset and reset...

@nigels-com Meanwhile this feature is not added yet in libarchive core, I (with crucial help of @kientzle) implemented it in my hack https://github.com/vadimkantorov/libarchivedd which demonstrates its feasibility

To ease implementing indexing by the users, if there are dev resources I think first the intermediate infra steps should be the focus. (First is seeking to compressed entries in...

Also, adding some flags/props field in archive_entry allowing to determine if an entry is uncompressed or compressed and if compressed with which compressor. It's useful also to be able to...

@kientzle Yeah, I see what you mean. If I have the time, I'll try to get to hacking first: - https://github.com/libarchive/libarchive/issues/2295 - https://github.com/libarchive/libarchive/issues/2306 - figure out how to spawn a...

If anyone's searching, this seems to work to produce C-API bindings with CppSharp (https://github.com/vadimkantorov/tritonservercppsharp/blob/master/.github/workflows/tritonservercppsharp.yml and generated bindings at https://github.com/vadimkantorov/tritonservercppsharp/releases/tag/release) So if anyone cares to try to actually test these generated...

In https://github.com/mono/CppSharp/issues/1860#issuecomment-2322838240 is claimed that using `shared_ptr` in C++ API are not ABI-portable. Not sure what it implies for tritonserver, but maybe if the C++ wrapper is considered for simplifying...