summaryrefslogtreecommitdiff
path: root/scorsh.go
blob: 07745b3595a1149ac7609c021991ca7f23179c22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package main

import (
	"errors"
	"log"
	"flag"
)

const (
	SCORSH_ERR_NO_FILE = -(1 << iota)
	SCORSH_ERR_KEYRING
	SCORSH_ERR_NO_REPO
	SCORSH_ERR_NO_COMMIT
	SCORSH_ERR_SIGNATURE
)


type SCORSHmsg struct {
	repo    string
	branch  string
	old_rev string
	new_rev string
}

var conf_file = flag.String("c", "./scorsh.cfg", "Configuration file for SCORSH")



func SCORSHErr(err int) error {

	var err_str string

	switch err {
	case SCORSH_ERR_NO_FILE:
		err_str = "Invalid file name"
	case SCORSH_ERR_KEYRING:
		err_str = "Invalid keyring"
	case SCORSH_ERR_NO_REPO:
		err_str = "Invalid repository"
	case SCORSH_ERR_NO_COMMIT:
		err_str = "Invalid commit ID"
	case SCORSH_ERR_SIGNATURE:
		err_str = "Invalid signature"
	default:
		err_str = "Generic Error"
	}

	return errors.New(err_str)

}



func main() {

	flag.Parse()

	cfg := ReadGlobalConfig(*conf_file)

	msg, status := StartWorkers(cfg)

	
		
	log.Printf("%s\n", cfg)
	
}