mirror of
https://github.com/minio/minio.git
synced 2025-01-23 04:33:15 -05:00
Adding k and m as optional parameters for encoding in minio-encode
This commit is contained in:
parent
2aa21866de
commit
cec0a0ef68
@ -25,6 +25,16 @@ func main() {
|
||||
Value: "",
|
||||
Usage: "Output file",
|
||||
},
|
||||
cli.IntFlag{
|
||||
Name: "k",
|
||||
Value: 10,
|
||||
Usage: "k value of encoder parameters",
|
||||
},
|
||||
cli.IntFlag{
|
||||
Name: "m",
|
||||
Value: 5,
|
||||
Usage: "m value of encoder parameters",
|
||||
},
|
||||
}
|
||||
app.Action = func(c *cli.Context) {
|
||||
// check if minio-encode called without parameters
|
||||
@ -44,6 +54,9 @@ func main() {
|
||||
outputFilePath = c.String("output")
|
||||
}
|
||||
|
||||
k := c.Int("k")
|
||||
m := c.Int("m")
|
||||
|
||||
// get file
|
||||
inputFile, err := os.Open(inputFilePath)
|
||||
if err != nil {
|
||||
@ -57,7 +70,7 @@ func main() {
|
||||
}
|
||||
|
||||
// set up encoder
|
||||
erasureParameters, _ := erasure.ValidateParams(10, 5, 8, erasure.CAUCHY)
|
||||
erasureParameters, _ := erasure.ValidateParams(k, m, 8, erasure.CAUCHY)
|
||||
encoder := erasure.NewEncoder(erasureParameters)
|
||||
|
||||
// encode data
|
||||
|
Loading…
x
Reference in New Issue
Block a user