ex_bencode

An Elixir library for encoding and decoding BitTorrent's bencoding.


License
MIT

Documentation

ExBencode

Hex.pm Elixir CI standard-readme compliant Contributor Covenant

An Elixir library for encoding and decoding BitTorrent's bencoding.

Installation

The package can be installed by adding ex_bencode to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_bencode, "~> 2.0.1"}
  ]
end

Package docs can be found at https://hexdocs.pm/ex_bencode.

Usage

Just give ExBencode.decode/1 a binary. It returns a success or error tuple.

iex> ExBencode.decode("i10e")
{:ok, 10}

Give ExBencode.encode/1 any Elixir term. It returns a success or error tuple as well.

iex> ExBencode.encode("hi!")
{:ok, "3:hi!"}

The bang versions of these functions, encode!/1 and decode!/1, return the value without an error tuple, but will raise if there is an error.

To customize how your structs serialize, implement the Bencode protocol.

defimpl Bencode, for: MyStruct do
  def encode(term) do
    term |> Map.from_struct() |> ExBencode.encode()
  end
end

Benchmarks

A benchmark comparing this library's performance against Bento is given in the benchmarks/ directory. Run it using mix run

mix run benchmark/benchmark.exs

Results on my machine show that this library is just a teensy bit faster than Bento.

Maintainer

This project was developed by Rosa Richter. You can get in touch with her on Keybase.io.

Contributing

Questions and pull requests are more than welcome. I follow Elixir's tenet of bad documentation being a bug, so if anything is unclear, please file an issue! Ideally, my answer to your question will be in an update to the docs.

Please see CONTRIBUTING.md for all the details you could ever want about helping me with this project.

Note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.

License

MIT License

Copyright 2020 Rosa Richter.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.