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
|
/*
This file is part of CompileTree (https://github.com/Pacien/CompileTree)
CompileTree is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CompileTree is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with CompileTree. If not, see <http://www.gnu.org/licenses/>.
*/
package main
import (
"flag"
"fmt"
"strings"
)
var settings struct {
mode *string // compiled, interactive or dynamic
sourceDir *string
outputDir *string // for compiled site
port *string // for the integrated web server (dynamic mode only)
exts []string
saveAs *string
}
func init() {
// read settings
settings.mode = flag.String("mode", "compiled", "compiled|interactive|dynamic")
settings.sourceDir = flag.String("source", ".", "Path to sources directory.")
settings.outputDir = flag.String("output", "./out", "[compiled mode] Path to output directory.")
settings.port = flag.String("port", "8080", "[dynamic mode] Port to listen.")
exts := flag.String("exts", "html, txt, md", "List parsable file extensions. Separated by commas.")
settings.saveAs = flag.String("saveAs", "index.html", "[compiled and interactive modes] Save compiled files as named.")
flag.Parse()
settings.exts = strings.Split(*exts, ",")
for i, ext := range settings.exts {
settings.exts[i] = "." + strings.Trim(ext, ". ")
}
}
func main() {
fmt.Println("CompileTree")
fmt.Println("Mode: " + *settings.mode)
fmt.Println("Source: " + *settings.sourceDir)
fmt.Println("Output: " + *settings.outputDir)
fmt.Println("====================")
switch *settings.mode {
case "compiled":
compiled(*settings.sourceDir, *settings.outputDir, settings.exts, *settings.saveAs)
case "interactive":
interactive(*settings.sourceDir, *settings.outputDir, settings.exts, *settings.saveAs)
case "dynamic":
dynamic(*settings.port)
default:
panic("Invalid mode.")
}
}
|