Version is now based on MD5SUM of its binary

This commit is contained in:
Anand Babu (AB) Periasamy 2015-04-24 21:49:07 -07:00
parent 5b0591ffad
commit b010fd0ff3
4 changed files with 33 additions and 21 deletions

View file

@ -33,7 +33,6 @@ cyclo:
pre-build:
@echo "Running pre-build:"
@(env bash $(PWD)/buildscripts/git-commit-id.sh)
build-all: verifiers
@echo "Building Libraries:"

View file

@ -1,18 +0,0 @@
#!/usr/bin/env bash
CONST_FILE=build-constants.go
cat > $CONST_FILE <<EOF
/*
* ** DO NOT EDIT THIS FILE. THIS FILE IS AUTO GENERATED BY RUNNING MAKE **
*/
package main
const (
minioGitCommitHash = "__GIT_COMMIT_HASH__"
)
EOF
commit_id=$(git log --format="%H" -n 1)
sed -i "s/__GIT_COMMIT_HASH__/$commit_id/" $CONST_FILE

28
hash-binary.go Normal file
View file

@ -0,0 +1,28 @@
package main
import (
"fmt"
"io"
"os"
"crypto/md5"
)
// mustHashBinarySelf computes MD5SUM of a binary file on disk
func hashBinary(progName string) (string, error) {
h := md5.New()
file, err := os.Open(progName) // For read access.
if err != nil {
return "", err
}
io.Copy(h, file)
return fmt.Sprintf("%x", h.Sum(nil)), nil
}
// mustHashBinarySelf computes MD5SUM of its binary file on disk
func mustHashBinarySelf() string {
hash, _ := hashBinary(os.Args[0])
return hash
}

View file

@ -240,15 +240,18 @@ func getSystemData() map[string]string {
}
}
// Version is based on MD5SUM of its binary
var Version = mustHashBinarySelf()
func main() {
// set up iodine
iodine.SetGlobalState("minio.git", minioGitCommitHash)
iodine.SetGlobalState("minio.version", Version)
iodine.SetGlobalState("minio.starttime", time.Now().Format(time.RFC3339))
// set up app
app := cli.NewApp()
app.Name = "minio"
app.Version = minioGitCommitHash
app.Version = Version
app.Author = "Minio.io"
app.Usage = "Minimalist Object Storage"
app.Flags = flags