summaryrefslogtreecommitdiffstats
path: root/cmd/jp/main.go
blob: 07de252db95f78231b636a360041fef9429c3728 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package main

import (
	"encoding/json"
	"flag"
	"fmt"
	"log"
	"os"
	"reflect"

	"github.com/sgreben/jp/pkg/draw"
	"github.com/sgreben/jp/pkg/terminal"

	"github.com/sgreben/jp/pkg/jsonpath"
)

type configuration struct {
	Box        draw.Box
	X          string
	Y          string
	XY         string
	PlotType   enumVar
	CanvasType enumVar
}

const (
	plotTypeLine    = "line"
	plotTypeBar     = "bar"
	plotTypeScatter = "scatter"
	plotTypeHist    = "hist"
)

const (
	canvasTypeFull    = "full"
	canvasTypeQuarter = "quarter"
	canvasTypeBraille = "braille"
	canvasTypeAuto    = "auto"
)

var config = configuration{
	PlotType: enumVar{
		Value: plotTypeLine,
		Choices: []string{
			plotTypeLine,
			plotTypeBar,
			plotTypeScatter,
		},
	},
	CanvasType: enumVar{
		Value: canvasTypeAuto,
		Choices: []string{
			canvasTypeFull,
			canvasTypeQuarter,
			canvasTypeBraille,
			canvasTypeAuto,
		},
	},
}

var (
	xPattern  *jsonpath.JSONPath
	yPattern  *jsonpath.JSONPath
	xyPattern *jsonpath.JSONPath
)

func init() {
	flag.Var(&config.PlotType, "type", fmt.Sprintf("Plot type. One of %v", config.PlotType.Choices))
	flag.Var(&config.CanvasType, "canvas", fmt.Sprintf("Canvas type. One of %v", config.CanvasType.Choices))
	flag.StringVar(&config.X, "x", "", "x values (JSONPath expression)")
	flag.StringVar(&config.Y, "y", "", "y values (JSONPath expression)")
	flag.StringVar(&config.XY, "xy", "", "x,y value pairs (JSONPath expression). Overrides -x and -y if given.")
	flag.IntVar(&config.Box.Width, "width", 0, "Plot width (default 0 (auto))")
	flag.IntVar(&config.Box.Height, "height", 0, "Plot height (default 0 (auto))")
	flag.Parse()
	log.SetOutput(os.Stderr)

	var err error
	xPattern = jsonpath.New("x")
	err = xPattern.Parse(fmt.Sprintf("{%s}", config.X))
	if err != nil {
		log.Fatal(err)
	}
	yPattern = jsonpath.New("y")
	err = yPattern.Parse(fmt.Sprintf("{%s}", config.Y))
	if err != nil {
		log.Fatal(err)
	}
	if config.XY != "" {
		xyPattern = jsonpath.New("xy")
		err = xyPattern.Parse(fmt.Sprintf("{%s}", config.XY))
		if err != nil {
			log.Fatal(err)
		}
	}
	if config.Box.Width == 0 {
		config.Box.Width = terminal.Width()
	}
	if config.Box.Height == 0 {
		config.Box.Height = terminal.Height() - 1
	}
	if config.CanvasType.Value == canvasTypeAuto {
		config.CanvasType.Value = autoCanvas[config.PlotType.Value]
	}
}

func match(in interface{}, p *jsonpath.JSONPath) [][]reflect.Value {
	out, err := p.FindResults(in)
	if err != nil {
		log.Println(err)
	}
	return out
}

func main() {
	var in interface{}
	dec := json.NewDecoder(os.Stdin)
	err := dec.Decode(&in)
	if err != nil {
		log.Println(err)
	}
	fmt.Println()
	var x, y [][]reflect.Value
	if xyPattern != nil {
		x, y = split(match(in, xyPattern))
	} else {
		x = match(in, xPattern)
		y = match(in, yPattern)
	}
	buffer := draw.NewBuffer(config.Box)
	var p draw.Pixels
	switch config.CanvasType.Value {
	case canvasTypeBraille:
		p = &draw.Braille{Buffer: buffer}
	case canvasTypeQuarter:
		p = &draw.Quarter{Buffer: buffer}
	case canvasTypeFull:
		p = &draw.Full{Buffer: buffer}
	}
	p.Clear()
	c := draw.Canvas{Pixels: p}
	switch config.PlotType.Value {
	case plotTypeLine:
		fmt.Println(linePlot(x, y, c))
	case plotTypeScatter:
		fmt.Println(scatterPlot(x, y, c))
	case plotTypeBar:
		fmt.Println(barPlot(x, y, c))
	}
}