forked from ruben2020/tags2uml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
85 lines (77 loc) · 2.72 KB
/
main.go
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// tags2uml
// Copyright 2014 ruben2020 https://github.com/ruben2020/
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import "fmt"
import "flag"
import "os"
import "log"
import "io/ioutil"
const sw_version string = "v0.01"
func main() {
init_datastore()
parse_options()
if help {
fmt.Println("The tags file must be created using the ctags option --fields=+latinK")
fmt.Println("Usage of ", os.Args[0], ":")
flag.PrintDefaults()
return
} else if ver {
print_version()
return
} else if checkRange() == false {
log.Println("Value of members or methods is out of range")
flag.PrintDefaults()
return
} else if fileExists(input_file) == false {
log.Fatal("File ", input_file, " does not exist!\nPlease use --help for help\n")
} else {
parseClass(input_file)
parseMembersMethods(input_file)
outs := dotmake()
if (output_file == "-") {
fmt.Println(outs)
} else {
err := ioutil.WriteFile(output_file, []byte(outs), 0644)
if err != nil {
panic(err)
}
}
}
}
func fileExists(fn string) bool {
retval := true
if _, err := os.Stat(fn); os.IsNotExist(err) {
retval = false
}
return retval
}
func print_version() {
fmt.Println("")
fmt.Println(" tags2uml ", sw_version)
fmt.Println(" Copyright 2014 ruben2020 https://github.com/ruben2020/")
fmt.Println("")
fmt.Println(" Licensed under the Apache License, Version 2.0 (the \"License\");")
fmt.Println(" you may not use this file except in compliance with the License.")
fmt.Println(" You may obtain a copy of the License at")
fmt.Println("")
fmt.Println(" http://www.apache.org/licenses/LICENSE-2.0")
fmt.Println("")
fmt.Println(" Unless required by applicable law or agreed to in writing, software")
fmt.Println(" distributed under the License is distributed on an \"AS IS\" BASIS,")
fmt.Println(" WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.")
fmt.Println(" See the License for the specific language governing permissions and")
fmt.Println(" limitations under the License.")
fmt.Println("")
}