mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
Merge pull request #74 from fkautz/pr_out_adding_chunking_by_block_to_erasure_demo_via_block_size_parameter
Adding chunking by block to erasure-demo via --block-size parameter
This commit is contained in:
commit
39beabbbb6
@ -24,14 +24,46 @@ func decode(c *cli.Context) {
|
|||||||
|
|
||||||
k := config.k
|
k := config.k
|
||||||
m := config.m
|
m := config.m
|
||||||
|
|
||||||
|
// check if output file exists, fail if so
|
||||||
|
if _, err := os.Stat(config.output); !os.IsNotExist(err) {
|
||||||
|
log.Fatal("Output file exists")
|
||||||
|
}
|
||||||
|
|
||||||
|
// get list of files
|
||||||
|
var inputFiles []string
|
||||||
|
if _, err := os.Stat(config.input + ".length"); os.IsNotExist(err) {
|
||||||
|
err = nil
|
||||||
|
chunkCount := 0
|
||||||
|
for !os.IsNotExist(err) {
|
||||||
|
_, err = os.Stat(config.input + "." + strconv.Itoa(chunkCount) + ".length")
|
||||||
|
chunkCount += 1
|
||||||
|
}
|
||||||
|
chunkCount = chunkCount - 1
|
||||||
|
inputFiles = make([]string, chunkCount)
|
||||||
|
for i := 0; i < chunkCount; i++ {
|
||||||
|
inputFiles[i] = config.input + "." + strconv.Itoa(i)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
inputFiles = []string{config.input}
|
||||||
|
}
|
||||||
|
|
||||||
|
// open file to write
|
||||||
|
outputFile, err := os.OpenFile(config.output, os.O_CREATE|os.O_WRONLY, 0600)
|
||||||
|
defer outputFile.Close()
|
||||||
|
if err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, inputFile := range inputFiles {
|
||||||
// get chunks
|
// get chunks
|
||||||
chunks := make([][]byte, k+m)
|
chunks := make([][]byte, k+m)
|
||||||
for i := 0; i < k+m; i++ {
|
for i := 0; i < k+m; i++ {
|
||||||
chunks[i], _ = ioutil.ReadFile(config.input + "." + strconv.Itoa(i))
|
chunks[i], _ = ioutil.ReadFile(inputFile + "." + strconv.Itoa(i))
|
||||||
}
|
}
|
||||||
|
|
||||||
// get length
|
// get length
|
||||||
lengthBytes, err := ioutil.ReadFile(config.input + ".length")
|
lengthBytes, err := ioutil.ReadFile(inputFile + ".length")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -49,11 +81,11 @@ func decode(c *cli.Context) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
// append decoded data
|
||||||
|
length, err = outputFile.Write(decodedData)
|
||||||
|
if err != nil {
|
||||||
|
|
||||||
// write decode data out
|
log.Fatal(err)
|
||||||
if _, err := os.Stat(config.output); os.IsNotExist(err) {
|
}
|
||||||
ioutil.WriteFile(config.output, decodedData, 0600)
|
|
||||||
} else {
|
|
||||||
log.Fatal("Output file already exists")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
@ -8,6 +9,7 @@ import (
|
|||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
"github.com/minio-io/minio/pkgs/erasure"
|
"github.com/minio-io/minio/pkgs/erasure"
|
||||||
|
"github.com/minio-io/minio/pkgs/split"
|
||||||
)
|
)
|
||||||
|
|
||||||
func encode(c *cli.Context) {
|
func encode(c *cli.Context) {
|
||||||
@ -24,6 +26,7 @@ func encode(c *cli.Context) {
|
|||||||
|
|
||||||
// get file
|
// get file
|
||||||
inputFile, err := os.Open(config.input)
|
inputFile, err := os.Open(config.input)
|
||||||
|
defer inputFile.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
@ -37,11 +40,27 @@ func encode(c *cli.Context) {
|
|||||||
// set up encoder
|
// set up encoder
|
||||||
erasureParameters, _ := erasure.ParseEncoderParams(config.k, config.m, erasure.CAUCHY)
|
erasureParameters, _ := erasure.ParseEncoderParams(config.k, config.m, erasure.CAUCHY)
|
||||||
// encode data
|
// encode data
|
||||||
|
if config.blockSize == 0 {
|
||||||
encodedData, length := erasure.Encode(input, erasureParameters)
|
encodedData, length := erasure.Encode(input, erasureParameters)
|
||||||
|
|
||||||
// write encoded data out
|
|
||||||
for key, data := range encodedData {
|
for key, data := range encodedData {
|
||||||
ioutil.WriteFile(config.output+"."+strconv.Itoa(key), data, 0600)
|
ioutil.WriteFile(config.output+"."+strconv.Itoa(key), data, 0600)
|
||||||
}
|
|
||||||
ioutil.WriteFile(config.output+".length", []byte(strconv.Itoa(length)), 0600)
|
ioutil.WriteFile(config.output+".length", []byte(strconv.Itoa(length)), 0600)
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
chunkCount := 0
|
||||||
|
splitChannel := make(chan split.ByteMessage)
|
||||||
|
inputReader := bytes.NewReader(input)
|
||||||
|
go split.SplitStream(inputReader, config.blockSize, splitChannel)
|
||||||
|
for chunk := range splitChannel {
|
||||||
|
if chunk.Err != nil {
|
||||||
|
log.Fatal(chunk.Err)
|
||||||
|
}
|
||||||
|
encodedData, length := erasure.Encode(chunk.Data, erasureParameters)
|
||||||
|
for key, data := range encodedData {
|
||||||
|
ioutil.WriteFile(config.output+"."+strconv.Itoa(chunkCount)+"."+strconv.Itoa(key), data, 0600)
|
||||||
|
ioutil.WriteFile(config.output+"."+strconv.Itoa(chunkCount)+".length", []byte(strconv.Itoa(length)), 0600)
|
||||||
|
}
|
||||||
|
chunkCount += 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -7,6 +7,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
|
"github.com/minio-io/minio/pkgs/strbyteconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
@ -29,6 +30,11 @@ func main() {
|
|||||||
Value: "10,6",
|
Value: "10,6",
|
||||||
Usage: "data,parity",
|
Usage: "data,parity",
|
||||||
},
|
},
|
||||||
|
cli.StringFlag{
|
||||||
|
Name: "block-size",
|
||||||
|
Value: "1M",
|
||||||
|
Usage: "Size of blocks. Examples: 1K, 1M, full",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -58,7 +64,7 @@ type inputConfig struct {
|
|||||||
output string
|
output string
|
||||||
k int
|
k int
|
||||||
m int
|
m int
|
||||||
blockSize int
|
blockSize uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
// parses input and returns an inputConfig with parsed input
|
// parses input and returns an inputConfig with parsed input
|
||||||
@ -88,10 +94,22 @@ func parseInput(c *cli.Context) (inputConfig, error) {
|
|||||||
return inputConfig{}, err
|
return inputConfig{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var blockSize uint64
|
||||||
|
blockSize = 0
|
||||||
|
if c.String("block-size") != "" {
|
||||||
|
if c.String("block-size") != "full" {
|
||||||
|
blockSize, err = strbyteconv.StringToBytes(c.String("block-size"))
|
||||||
|
if err != nil {
|
||||||
|
return inputConfig{}, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return inputConfig{
|
return inputConfig{
|
||||||
input: inputFilePath,
|
input: inputFilePath,
|
||||||
output: outputFilePath,
|
output: outputFilePath,
|
||||||
k: k,
|
k: k,
|
||||||
m: m,
|
m: m,
|
||||||
|
blockSize: blockSize,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user