summaryrefslogtreecommitdiffstats
path: root/colorschemes/registry.go
diff options
context:
space:
mode:
Diffstat (limited to 'colorschemes/registry.go')
-rw-r--r--colorschemes/registry.go43
1 files changed, 43 insertions, 0 deletions
diff --git a/colorschemes/registry.go b/colorschemes/registry.go
new file mode 100644
index 0000000..97e2bb0
--- /dev/null
+++ b/colorschemes/registry.go
@@ -0,0 +1,43 @@
+package colorschemes
+
+import (
+ "encoding/json"
+ "fmt"
+ "io/ioutil"
+ "path/filepath"
+)
+
+var registry map[string]Colorscheme
+
+func FromName(confDir string, c string) (Colorscheme, error) {
+ cs, ok := registry[c]
+ if !ok {
+ cs, err := getCustomColorscheme(confDir, c)
+ if err != nil {
+ return cs, err
+ }
+ }
+ return cs, nil
+}
+
+func register(name string, c Colorscheme) {
+ if registry == nil {
+ registry = make(map[string]Colorscheme)
+ }
+ registry[name] = c
+}
+
+// getCustomColorscheme tries to read a custom json colorscheme from <configDir>/<name>.json
+func getCustomColorscheme(confDir string, name string) (Colorscheme, error) {
+ var cs Colorscheme
+ filePath := filepath.Join(confDir, name+".json")
+ dat, err := ioutil.ReadFile(filePath)
+ if err != nil {
+ return cs, fmt.Errorf("failed to read colorscheme file: %v", err)
+ }
+ err = json.Unmarshal(dat, &cs)
+ if err != nil {
+ return cs, fmt.Errorf("failed to parse colorscheme file: %v", err)
+ }
+ return cs, nil
+}