local-server/vendor/github.com/cavaliercoder/go-cpio
Mikaël Cluseau f91ae88876 chore: update vendor 2018-07-03 18:32:39 +11:00
..
testdata chore: update vendor 2018-07-03 18:32:39 +11:00
.gitignore vendor 2018-06-17 18:32:44 +11:00
.travis.yml vendor 2018-06-17 18:32:44 +11:00
LICENSE vendor 2018-06-17 18:32:44 +11:00
Makefile vendor 2018-06-17 18:32:44 +11:00
README.md vendor 2018-06-17 18:32:44 +11:00
cpio.go vendor 2018-06-17 18:32:44 +11:00
example_test.go vendor 2018-06-17 18:32:44 +11:00
fileinfo.go vendor 2018-06-17 18:32:44 +11:00
fuzz.go vendor 2018-06-17 18:32:44 +11:00
hash.go vendor 2018-06-17 18:32:44 +11:00
header.go chore: update vendor 2018-07-03 18:32:39 +11:00
reader.go vendor 2018-06-17 18:32:44 +11:00
svr4.go chore: update vendor 2018-07-03 18:32:39 +11:00
svr4_test.go vendor 2018-06-17 18:32:44 +11:00
writer.go vendor 2018-06-17 18:32:44 +11:00
writer_test.go chore: update vendor 2018-07-03 18:32:39 +11:00

README.md

go-cpio GoDoc Build Status Go Report Card

This package provides a Go native implementation of the CPIO archive file format.

Currently, only the SVR4 (New ASCII) format is supported, both with and without checksums.

// Create a buffer to write our archive to.
buf := new(bytes.Buffer)

// Create a new cpio archive.
w := cpio.NewWriter(buf)

// Add some files to the archive.
var files = []struct {
  Name, Body string
}{
  {"readme.txt", "This archive contains some text files."},
  {"gopher.txt", "Gopher names:\nGeorge\nGeoffrey\nGonzo"},
  {"todo.txt", "Get animal handling license."},
}
for _, file := range files {
  hdr := &cpio.Header{
    Name: file.Name,
    Mode: 0600,
    Size: int64(len(file.Body)),
  }
  if err := w.WriteHeader(hdr); err != nil {
    log.Fatalln(err)
  }
  if _, err := w.Write([]byte(file.Body)); err != nil {
    log.Fatalln(err)
  }
}
// Make sure to check the error on Close.
if err := w.Close(); err != nil {
  log.Fatalln(err)
}

// Open the cpio archive for reading.
b := bytes.NewReader(buf.Bytes())
r := cpio.NewReader(b)

// Iterate through the files in the archive.
for {
  hdr, err := r.Next()
  if err == io.EOF {
    // end of cpio archive
    break
  }
  if err != nil {
    log.Fatalln(err)
  }
  fmt.Printf("Contents of %s:\n", hdr.Name)
  if _, err := io.Copy(os.Stdout, r); err != nil {
    log.Fatalln(err)
  }
  fmt.Println()
}