go_wireproto/README.md
brent saner 72818c2d5c
v1.0.2
FIXED:
* Dep bumps
* Better docs display on pkg.go.dev
2025-08-28 01:26:04 -04:00

54 lines
2.9 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Reference
In addition to the documentation found in this document and [the
specification](https://wireproto.io/), library usage documentation can
be found at [the Golang module documentation
page](https://pkg.go.dev/go.pkg.dev/r00t2.io/WireProto):
# License
This library is licensed for use, inclusion, and distribution under the
["3-Clause BSD" license](https://opensource.org/license/bsd-3-clause).
Copyright (c) 2024 Brent Saner (r00t^2).
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# TODO
The following are a wishlist or things planned that may come in later
versions.
- More clear errors
- Currently during e.g. `UnmarshalBinary` calls, just an `io.EOF`
will be returned if the buffer is exhausted early. This may be
able to be a little more context-helpful by using the `Err*`
errors.
- Confirmation of read/write sizes in buffers
- The sizes they **should** be are known, theres no reason to not
confirm it.
- Goroutines
- This of course wont work for serializing and keeping **order**
of children (e.g. RG ⇒ Record); thatd still need to be ordered,
but it will allow for parallel parsing **of** those children.
Should benchmark, though; it may not be worth it.
- `context.Context` support for `Read*` and `Write*` funcs
- This is a relatively low priority as the passed `net.Conn` will
likely return an error if its own context is canceled. This can
be handled in the caller downstream.