aboutsummaryrefslogtreecommitdiff
path: root/zencore/include
Commit message (Collapse)AuthorAgeFilesLines
...
* Cleaned up exception handlingStefan Boberg2021-05-211-14/+4
| | | | We now use std::system_error where possible to report Win32 system errors. We still have WindowsException for general HRESULT based errors but we should phase it out where possible
* std::min -> zen::MinStefan Boberg2021-05-211-1/+2
|
* Added Oid::operator bool for "null" checkingStefan Boberg2021-05-211-1/+2
|
* Added HttpServerRequest::RequestContentType()Stefan Boberg2021-05-191-6/+9
|
* Added HashStringDjb2()Stefan Boberg2021-05-191-0/+15
|
* HTTP: added some basic comments to httpserver.hStefan Boberg2021-05-131-1/+20
|
* Moved [[nodiscard]] into the right position to make it actually stickStefan Boberg2021-05-131-2/+2
|
* Added logic to guard against accidental file move in file CAS fast pathStefan Boberg2021-05-131-2/+16
| | | | Now verifies the chunk is referencing an entire file before moving it into place
* Implemented move-in-place for large CAS payloadsStefan Boberg2021-05-132-1/+5
|
* Added string_view variant of WindowsException constructorStefan Boberg2021-05-131-0/+6
|
* CbWriter::Save now returns an immutable payload bufferStefan Boberg2021-05-131-3/+10
|
* Made SharedBuffer/UniqueBuffer share guts with IoBufferStefan Boberg2021-05-132-88/+58
| | | | This enables way more efficient marshaling of compact binary objects and attachments
* Implemented basic support for marshaling attachments out-of-band with the ↵Stefan Boberg2021-05-111-2/+3
| | | | | | | | package payload Currently supported in project store but will also be used for the structured cache Currently, cleanup is missing. Ultimately the intent is that the file used for marshaling will simply be moved into place.
* Added PathFromHandle helper functionStefan Boberg2021-05-111-0/+4
| | | | Primarily to be used to add context to error messages in places where we only have a handle available
* Adding zenservice codeStefan Boberg2021-05-1137-0/+6504