internal/options/process.go (view raw)
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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | package options import ( "encoding/json" "fmt" "io" "log/slog" "net/url" "os" "reflect" "github.com/bcicen/jstream" "github.com/mitchellh/mapstructure" "github.com/pkg/errors" ) type nixValueJSON struct { Type string `mapstructure:"_type"` Text string } type linkJSON struct { Name string URL string `json:"url"` } type nixOptionJSON struct { Declarations []linkJSON Default *nixValueJSON Description string Example *nixValueJSON Loc []string ReadOnly bool RelatedPackages string Type string } func ValueTypeToString(valueType jstream.ValueType) string { switch valueType { case jstream.Unknown: return "unknown" case jstream.Null: return "null" case jstream.String: return "string" case jstream.Number: return "number" case jstream.Boolean: return "boolean" case jstream.Array: return "array" case jstream.Object: return "object" } return "very strange" } func makeGitHubFileURL(userRepo string, ref string, subPath string) string { url, _ := url.JoinPath("https://github.com/", userRepo, "blob", ref, subPath) return url } // make configurable? var channelRepoMap = map[string]string{ "nixpkgs": "NixOS/nixpkgs", "nix-darwin": "LnL7/nix-darwin", "home-manager": "nix-community/home-manager", } func MakeChannelLink(channel string, ref string, subPath string) (*Link, error) { if channelRepoMap[channel] == "" { return nil, fmt.Errorf("don't know what repository relates to channel <%s>", channel) } return &Link{ Name: fmt.Sprintf("<%s/%s>", channel, subPath), URL: makeGitHubFileURL(channelRepoMap[channel], ref, subPath), }, nil } func convertNixValue(nj *nixValueJSON) *NixValue { if nj == nil { return nil } switch nj.Type { case "", "literalExpression": return &NixValue{ Text: nj.Text, } case "literalMD": return &NixValue{ Markdown: Markdown(nj.Text), } default: slog.Warn("got unexpected NixValue type", "type", nj.Type, "text", nj.Text) return nil } } func Process(inpath string, outpath string, channel string, revision string) error { infile, err := os.Open(inpath) if err != nil { return errors.WithMessagef(err, "failed to open input file %s", inpath) } defer infile.Close() outfile, err := os.Create(outpath) if err != nil { return errors.WithMessagef(err, "failed to open output file %s", outpath) } if outpath != "/dev/stdout" { defer outfile.Close() } dec := jstream.NewDecoder(infile, 1).EmitKV() var optJSON nixOptionJSON ms, err := mapstructure.NewDecoder(&mapstructure.DecoderConfig{ ErrorUnused: true, ZeroFields: true, Result: &optJSON, Squash: true, DecodeHook: mapstructure.TextUnmarshallerHookFunc(), }) if err != nil { return errors.WithMessage(err, "could not create mapstructure decoder") } _, err = outfile.WriteString("[\n") if err != nil { return errors.WithMessage(err, "could not write to output") } for mv := range dec.Stream() { if err := dec.Err(); err != nil { return errors.WithMessage(err, "could not decode JSON") } if mv.ValueType != jstream.Object { return errors.Errorf("unexpected object type %s", ValueTypeToString(mv.ValueType)) } kv := mv.Value.(jstream.KV) x := kv.Value.(map[string]interface{}) var decls []*Link for _, decl := range x["declarations"].([]interface{}) { optJSON = nixOptionJSON{} switch decl := reflect.ValueOf(decl); decl.Kind() { case reflect.String: s := decl.String() link, err := MakeChannelLink(channel, revision, s) if err != nil { return errors.WithMessagef(err, "could not make a channel link for channel %s, revision %s and subpath %s", channel, revision, s, ) } decls = append(decls, link) case reflect.Map: v := decl.Interface().(map[string]interface{}) link := Link{ Name: v["name"].(string), URL: v["url"].(string), } decls = append(decls, &link) default: println("kind", decl.Kind().String()) panic("unexpected object type") } } if len(decls) > 0 { x["declarations"] = decls } err = ms.Decode(x) // stores in optJSON if err != nil { return errors.WithMessagef(err, "failed to decode option %#v", x) } var decs = make([]Link, len(optJSON.Declarations)) for i, d := range optJSON.Declarations { decs[i] = Link(d) } opt := NixOption{ Option: kv.Key, Declarations: decs, Default: convertNixValue(optJSON.Default), Description: Markdown(optJSON.Description), Example: convertNixValue(optJSON.Example), RelatedPackages: Markdown(optJSON.RelatedPackages), Loc: optJSON.Loc, Type: optJSON.Type, } b, err := json.MarshalIndent(opt, "", " ") if err != nil { return errors.WithMessagef(err, "failed to encode option %#v", opt) } _, err = outfile.Write(b) if err != nil { return errors.WithMessage(err, "failed to write to output") } _, err = outfile.WriteString(",\n") if err != nil { return errors.WithMessage(err, "failed to write to output") } } if outpath != "/dev/stdout" { _, err = outfile.Seek(-2, io.SeekCurrent) if err != nil { return errors.WithMessage(err, "could not write to output") } } _, err = outfile.WriteString("\n]\n") if err != nil { return errors.WithMessage(err, "could not write to output") } return nil } |