MCPcopy Index your code
hub / github.com/bobg/hashsplit

github.com/bobg/hashsplit @v2.1.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.1.0 ↗ · + Follow
18 symbols 43 edges 2 files 10 documented · 56%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Hashsplit - content-based splitting of byte streams

Go Reference Go Report Card Tests Coverage Status

Hashsplitting is a way of dividing a byte stream into pieces based on the stream's content rather than on any predetermined chunk size. As the Splitter reads the stream it maintains a rolling checksum of the last several bytes. A chunk boundary occurs when the rolling checksum has enough trailing bits set to zero (where “enough” is a configurable setting that determines the average chunk size).

Usage

You can split the input from r, an io.Reader, like this:

split, errptr := hashsplit.Split(r)
for chunk := range split {
  // ...handle the contents of r one chunk at a time...
}
if err := *errptr; err != nil {
  // ...handle an error reading from r...
}

Chunks can be arranged in a “hashsplit tree” like this:

split, errptr := hashsplit.Split(r)
tree := hashsplit.Tree(split)
root := hashsplit.Root(tree)
if err := *errptr; err != nil {
  // ...handle an error reading from r...
}

...and now root is the root of a tree whose leaves contain consecutive chunks of the input.

What is it all about?

Hashsplitting has benefits when it comes to representing multiple, slightly different versions of the same data. Consider, for example, the problem of adding EXIF tags to a JPEG image file. The tags appear near the beginning of the file, and the bulk of the image data follows. If the file were divided into chunks at (say) 8-kilobyte boundaries, then adding EXIF data near the beginning would alter every following chunk (except in the lucky case where the size of the added data is an exact multiple of 8kb). With hashsplitting, only the chunks in the vicinity of the change are affected.

A sequence of hashsplit chunks can additionally be organized into a tree for even better compaction. Each chunk has a “level” L determined by the rolling checksum, and each node in the tree has a level N. Tree nodes at level 0 collect chunks at level 0, up to and including a chunk at level L>0; then a new level-0 node begins. Tree nodes at level N collect nodes at level N-1 up to and including a chunk at level L>N; then a new level-N node begins.

Hashsplitting is used to dramatically reduce storage and bandwidth requirements in projects like rsync, bup, and perkeep. More information, and a proposed standard, can be found at github.com/hashsplit/hashsplit-spec.

Core symbols most depended-on inside this repo

Split
called by 3
hashsplit.go
checkSplit
called by 2
hashsplit.go
NewSplitter
called by 1
hashsplit.go
Split
called by 1
hashsplit.go
Tree
called by 1
hashsplit.go
Root
called by 1
hashsplit.go
AllChunks
called by 1
hashsplit.go
Seek
called by 1
hashsplit.go

Shape

Function 13
Method 3
Struct 2

Languages

Go100%

Modules by API surface

hashsplit.go10 symbols
hashsplit_test.go8 symbols

For agents

$ claude mcp add hashsplit \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page