-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpullquote.go
1328 lines (1163 loc) · 28.7 KB
/
pullquote.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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"bufio"
"bytes"
"context"
"crypto/sha1"
"errors"
"flag"
"fmt"
"hash"
"io"
"io/ioutil"
"log"
"os"
"os/signal"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"sync"
"unicode"
"unicode/utf8"
)
var (
logger = log.New(os.Stderr, "", 0)
debug, _ = strconv.ParseBool(os.Getenv("DEBUG"))
)
func main() {
if debug {
logger = log.New(os.Stderr, "", log.LstdFlags|log.Lshortfile)
}
checkMode := flag.Bool("check", false, "whether to run in check mode")
walk := flag.Bool("walk", false, "whether to automatically discover all targets")
flag.Parse()
// add in stdin if present
var r io.Reader
if stat, _ := os.Stdin.Stat(); stat != nil && stat.Mode()&os.ModeCharDevice == 0 {
r = os.Stdin
}
err := func() error {
ctx, cncl := signalCtx()
defer cncl()
return run(ctx, flag.Args(), r, *walk, *checkMode)
}()
switch {
case errors.Is(err, errCheckMode):
logger.Println(`msg="changes detected"`)
os.Exit(2)
case err != nil:
logger.Fatalf("err=%q", err)
case *checkMode:
logger.Println(`msg="no changes detected"`)
}
}
func run(ctx context.Context, fns []string, r io.Reader, walk, checkMode bool) error {
ctx, cncl := context.WithCancel(ctx)
defer cncl()
fileC, errC := listFiles(ctx, fns, r, walk)
var (
wg sync.WaitGroup
listErr, procErr error
)
wg.Add(1)
go func() {
defer wg.Done()
select {
case listErr = <-errC:
if listErr != nil {
cncl()
}
case <-ctx.Done():
}
}()
wg.Add(1)
go func() {
defer wg.Done()
if procErr = processFiles(ctx, checkMode, fileC); procErr != nil {
cncl()
}
}()
wg.Wait()
// prefer non-contextual errors for reporting if present
var retErr error
for _, e := range [...]error{listErr, procErr} {
if e != nil && !errors.Is(e, context.Canceled) {
retErr = e
break
}
}
if retErr == nil {
retErr = ctx.Err()
}
// log if failed for other reasons
if listErr != nil && errors.Unwrap(retErr) != errors.Unwrap(listErr) {
logger.Printf(`msg="listing files failed" err=%q`, listErr)
}
if procErr != nil && errors.Unwrap(retErr) != errors.Unwrap(procErr) {
logger.Printf(`msg="processing files failed" err=%q`, procErr)
}
return retErr
}
func signalCtx() (context.Context, context.CancelFunc) {
ctx, cncl := context.WithCancel(context.Background())
{
signals := make(chan os.Signal, 1)
signal.Notify(signals, os.Interrupt)
go func() {
select {
case <-ctx.Done():
case <-signals:
cncl()
}
}()
}
return ctx, cncl
}
var errCheckMode = errors.New("files changed")
func processFiles(ctx context.Context, checkMode bool, fns <-chan string) error {
tmpDir, err := ioutil.TempDir("", "pullquote")
if err != nil {
return fmt.Errorf("unable to open temp directory: %w", err)
}
defer func() {
_ = os.RemoveAll(tmpDir)
}()
type result struct {
fn string
tempFn string
err error
}
processCtx, processCncl := context.WithCancel(ctx)
defer processCncl()
var (
resultCh = make(chan result, 1)
inFlight int
// err msging equipment
otherErrs int
errFn string
// moves to make
moves [][2]string
)
// we eschew the need for a waitgroup here by just tracking the number in flight
for fns != nil || inFlight > 0 {
select {
case <-ctx.Done():
err = ctx.Err()
fns = nil
case fn, ok := <-fns:
if !ok {
fns = nil
break
}
inFlight++
go func(fn string) {
tempFn, err := processFile(processCtx, tmpDir, fn)
select {
case resultCh <- result{fn, tempFn, err}:
case <-processCtx.Done():
}
}(fn)
case res := <-resultCh:
inFlight--
switch {
case err == nil && res.err == nil: // happy path
if res.tempFn != "" {
moves = append(moves, [2]string{res.tempFn, res.fn})
}
case res.err != nil && !errors.Is(res.err, context.Canceled): // ignore canceled ctx for per-file reporting
logger.Printf("file=%q err=%q", res.fn, res.err)
otherErrs++
if err == nil || res.fn < errFn {
err, errFn = res.err, res.fn // take the "minimum" for deterministic results
}
}
}
}
if err != nil {
if otherErrs > 0 {
return fmt.Errorf("%v failed (along with %v others): %w", errFn, otherErrs, err)
}
return fmt.Errorf("%v failed: %w", errFn, err)
}
if checkMode && len(moves) > 0 {
return errCheckMode
}
for _, m := range moves {
if err := overwrite(m[0], m[1]); err != nil {
return fmt.Errorf("overwrite(%v, %v): %w", m[0], m[1], err)
}
}
logger.Printf(`msg="processing complete" files_updated=%d`, len(moves))
return nil
}
// we use overwrite to avoid `invalid cross-device link` errors across volumes with os.Rename while also retaining file
// attributes
func overwrite(src, dst string) error {
in, err := os.Open(src)
if err != nil {
return err
}
defer func() {
_ = in.Close()
}()
out, err := os.OpenFile(dst, os.O_WRONLY|os.O_TRUNC, 0)
if err != nil {
return err
}
defer func() {
_ = out.Close()
}()
_, err = io.Copy(out, in)
return err
}
func listFiles(ctx context.Context, fns []string, r io.Reader, walk bool) (<-chan string, <-chan error) {
var (
errC = make(chan error, 1)
merged = make(chan string, len(fns)+1)
)
wd, err := os.Getwd()
if err != nil {
errC <- err // can't block
close(merged)
close(errC)
return merged, errC
}
ctx, cncl := context.WithCancel(ctx)
var (
wg sync.WaitGroup
scanned, walked chan string
)
if r != nil {
scanned = make(chan string)
wg.Add(1)
go func() {
defer wg.Done()
scanner := bufio.NewScanner(r)
for scanner.Scan() {
select {
case scanned <- scanner.Text():
case <-ctx.Done():
}
}
if err := scanner.Err(); err != nil {
cncl()
select {
case errC <- err:
default:
}
}
close(scanned)
}()
}
if walk {
walked = make(chan string)
wg.Add(1)
go func() {
defer wg.Done()
err = filepath.Walk(wd, func(path string, info os.FileInfo, err error) error {
switch {
case err != nil:
return err
case info.IsDir():
// skip hidden dirs and conventionally excluded go dirs
if name := info.Name(); name != "." && (strings.HasPrefix(name, ".") || name == "testdata") {
return filepath.SkipDir
}
return nil
case strings.ToLower(filepath.Ext(path)) != ".md":
return nil
default:
select {
case <-ctx.Done():
return ctx.Err()
case walked <- path:
return nil
}
}
})
if err != nil {
cncl()
select {
case errC <- err:
default:
}
}
close(walked)
}()
}
go func() {
defer cncl()
seen := make(map[string]struct{})
submit := func(path string) {
if _, ok := seen[path]; ok {
return // dupe
}
select {
case merged <- path:
seen[path] = struct{}{}
case <-ctx.Done():
}
}
standardize := func(path string) string {
if !filepath.IsAbs(path) {
path = filepath.Join(wd, path)
}
return filepath.Clean(path)
}
for _, fn := range fns {
submit(standardize(fn))
}
SelectLoop:
for scanned != nil || walked != nil {
select {
case <-ctx.Done():
break SelectLoop
case s, ok := <-scanned:
if !ok {
scanned = nil
break
}
submit(standardize(s))
case s, ok := <-walked:
if !ok {
walked = nil
break
}
// no need to call submit here -- guaranted to be clean
submit(s)
}
}
wg.Wait()
close(merged)
close(errC)
}()
return merged, errC
}
var msgKey = func() interface{} { // lawl
type ctxKey struct{}
return ctxKey{}
}()
func addLogCtx(ctx context.Context, format string, args ...interface{}) context.Context {
var b strings.Builder
if msg, ok := ctx.Value(msgKey).(string); ok {
b.WriteString(msg)
if r, _ := utf8.DecodeLastRuneInString(msg); !unicode.IsSpace(r) { // zero len safe
b.WriteByte(' ')
}
}
_, _ = fmt.Fprintf(&b, format, args...)
return context.WithValue(ctx, msgKey, b.String())
}
func ctxLogf(ctx context.Context, format string, args ...interface{}) {
var b strings.Builder
_, _ = fmt.Fprintf(&b, format, args...)
if msg, ok := ctx.Value(msgKey).(string); ok {
if r, _ := utf8.DecodeLastRuneInString(b.String()); !unicode.IsSpace(r) { // zero len safe
b.WriteByte(' ')
}
b.WriteString(msg)
}
_ = logger.Output(2, b.String())
}
func processFile(ctx context.Context, tmpDir, fn string) (string, error) {
ctx = addLogCtx(ctx, "filename=%q", fn)
f, err := os.Open(fn)
if err != nil {
return "", fmt.Errorf("os.Open(%v): %w", fn, err)
}
defer func() {
if cErr := f.Close(); cErr != nil && err != nil {
err = cErr
}
}()
pqs, err := readPullQuotes(ctx, f)
if err != nil {
return "", fmt.Errorf("readPullQuotes %v: %w", fn, err)
}
if debug {
ctxLogf(ctx, "total_pullquotes=%v", len(pqs))
}
if len(pqs) == 0 {
return "", nil
}
dir := filepath.Dir(fn)
for _, pq := range pqs {
if pq.src != "" {
pq.src = filepath.Join(dir, pq.src)
}
if pq.objPath != "" && (strings.HasPrefix(pq.objPath, "./") || strings.Contains(pq.objPath, ".go")) {
pq.objPath = filepath.Join(dir, pq.objPath)
}
}
expanded, err := expandPullQuotes(ctx, pqs)
if err != nil {
return "", fmt.Errorf("expandedPullQuotes: %w", err)
}
o, err := ioutil.TempFile(tmpDir, "")
if err != nil {
return "", fmt.Errorf("unable to open tmp file: %w", err)
}
defer func() {
_ = o.Close()
}()
if err := func() error {
if _, err := f.Seek(0, io.SeekStart); err != nil {
return fmt.Errorf("f.seek 0: %w", err)
}
w := bufio.NewWriter(o)
if err := applyPullQuotes(pqs, expanded, f, w); err != nil {
return fmt.Errorf("failed applying pull quotes: %w", err)
}
if err := w.Flush(); err != nil {
return fmt.Errorf("couldn't flush: %w", err)
}
return nil
}(); err != nil {
return "", err
}
changed, err := filesChanged(f, o)
switch {
case err != nil:
ctxLogf(ctx, `msg="detecting file change" err=%q`, err)
return o.Name(), nil
case changed:
ctxLogf(ctx, `msg="change detected"`)
return o.Name(), nil
default:
if debug {
ctxLogf(ctx, `msg="no change detected"`)
}
return "", nil
}
}
var hashPool = sync.Pool{
New: func() interface{} {
return sha1.New()
},
}
func filesChanged(a, b *os.File) (bool, error) {
hA, hB := hashPool.Get().(hash.Hash), hashPool.Get().(hash.Hash)
defer func() {
hashPool.Put(hA)
hashPool.Put(hB)
}()
bA, err := calcHash(hA, a)
if err != nil {
return false, err
}
bB, err := calcHash(hB, b)
if err != nil {
return false, err
}
return !bytes.Equal(bA, bB), nil
}
func calcHash(h hash.Hash, f *os.File) ([]byte, error) {
if _, err := f.Seek(0, io.SeekStart); err != nil {
return nil, err
}
h.Reset()
if _, err := io.Copy(h, f); err != nil {
return nil, err
}
return h.Sum(nil), nil
}
func newlineIncludingScanner(r io.Reader) *bufio.Scanner {
scanner := bufio.NewScanner(r)
scanner.Split(func(data []byte, atEOF bool) (advance int, token []byte, err error) {
if atEOF && len(data) == 0 {
return 0, nil, nil
}
if i := bytes.IndexByte(data, '\n'); i >= 0 {
// We have a full newline-terminated line.
return i + 1, data[:i+1], nil
}
// If we're at EOF, we have a final, non-terminated line. Return it.
if atEOF {
return len(data), data, nil
}
// Request more data.
return 0, nil, nil
})
return scanner
}
type readerAtSeeker interface {
io.ReaderAt
io.ReadSeeker
}
func applyPullQuotes(pqs []*pullQuote, expanded []*expanded, r readerAtSeeker, w io.Writer) (err error) {
write := func(s string) {
if err != nil {
return
}
_, err = w.Write([]byte(s))
}
writeCodeFence := func(data, lang string) {
if err != nil {
return
}
format := "\n```%s\n%s\n```\n"
if strings.HasPrefix(data, "```") || strings.Contains(data, "\n```") {
format = "\n~~~%s\n%s\n~~~\n"
}
_, err = fmt.Fprintf(w, format, lang, data)
}
// every pq has a start offset and, optionally, and end index
readThrough := 0
for i, pq := range pqs {
exp := expanded[i]
if _, err = io.Copy(w, io.NewSectionReader(r, int64(readThrough), int64(pq.startIdx-readThrough))); err != nil {
break
}
readThrough = pq.startIdx
switch pq.fmt {
case fmtExample:
if len(exp.Parts) != 2 {
writeCodeFence(exp.String, pq.lang)
break
}
write("\n**Code**:")
writeCodeFence(exp.Parts[0], pq.lang)
write("**Output**:")
writeCodeFence(exp.Parts[1], "")
case fmtCodeFence:
writeCodeFence(exp.String, pq.lang)
case fmtBlockQuote:
write("\n> ")
write(strings.Replace(exp.String, "\n", "\n> ", -1) + "\n")
default:
write("\n" + exp.String + "\n")
}
if pq.endIdx == idxNoEnd { // add an end tag
write("<!-- /" + pq.originalTag + "quote -->")
} else {
readThrough = pq.endIdx // skip any intervening content -- we have rewritten it
}
}
if err != nil {
return err
}
if _, err = r.Seek(int64(readThrough), io.SeekStart); err != nil {
return err
}
_, err = io.Copy(w, r)
return err
}
const idxNoEnd = -1
func readPullQuotes(ctx context.Context, r io.Reader) ([]*pullQuote, error) {
var pqs []*pullQuote
comments := htmlCommentScanner(r)
for comments.Scan() {
b := comments.Bytes()
ctx := addLogCtx(ctx, "start=%v end=%v comment=%q", comments.start, comments.end, string(b))
toks := tokenizingScanner(bytes.NewReader(b[len("<!--") : len(b)-len("-->")]))
toks.Scan()
var tt string
switch t := toks.Text(); t {
case "pullquote":
tt = "pull"
case "goquote":
tt = "go"
case "jsonquote":
tt = "json"
case "/pullquote", "/goquote", "/jsonquote":
if l := len(pqs) - 1; l >= 0 && pqs[l].endIdx == idxNoEnd && strings.HasPrefix(t, "/"+pqs[l].originalTag) {
pqs[l].endIdx = comments.start
if debug {
ctxLogf(ctx, `msg="found pullquote end" pq=%q`, pqs[l])
}
continue
}
return nil, fmt.Errorf("unexpected %v at offset %v: %q", t, comments.start, string(b))
default:
if debug {
ctxLogf(ctx, `msg="unsupported comment tag"`)
}
continue
}
pq := pullQuote{originalTag: tt, startIdx: comments.end, endIdx: idxNoEnd}
seen, err := setOptions(&pq, toks, tt)
if err != nil {
return nil, fmt.Errorf("parsing pullquote at offset %v: %w", comments.start, err)
}
if err := validate(&pq, seen); err != nil {
return nil, fmt.Errorf("validating pullquote at offset %v: %w", comments.start, err)
}
if debug {
ctxLogf(ctx, `msg="found pullquote" pq=%q`, &pq)
}
pqs = append(pqs, &pq)
}
if err := comments.Err(); err != nil {
return nil, err
}
return pqs, nil
}
type expanded struct {
String string
Parts []string
}
// doing it w/o hash maps for s&gs
func expandPullQuotes(ctx context.Context, pqs []*pullQuote) ([]*expanded, error) {
results := make([]*expanded, len(pqs))
var buf []*pullQuote
for _, strategy := range []struct {
quoteType string
expander func(context.Context, []*pullQuote) ([]*expanded, error)
}{
{"go", expandGoQuotes},
{"json", expandJSONQuotes},
} {
for i, pq := range pqs {
if results[i] != nil {
continue
}
if pq.quoteType == strategy.quoteType {
buf = append(buf, pq)
}
}
if len(buf) > 0 {
expanded, err := strategy.expander(ctx, buf)
if err != nil {
return nil, err
}
for j, cur := 0, 0; j < len(pqs) && cur < len(buf); j++ {
if pqs[j] == buf[cur] {
results[j] = expanded[cur]
cur++
}
}
buf = buf[:0]
}
}
for i, pq := range pqs {
if results[i] != nil {
continue
}
for j := i; j < len(pqs); j++ {
if pqs[j].src == pq.src {
buf = append(buf, pqs[j])
}
}
found, err := expandSrcPullQuotes(ctx, buf)
if err != nil {
return nil, err
}
for j, cur := i, 0; j < len(pqs); j++ {
if pqs[j].src == pq.src {
results[j] = found[cur]
cur++
}
}
buf = buf[:0]
}
return results, nil
}
func expandSrcPullQuotes(_ context.Context, pqs []*pullQuote) ([]*expanded, error) {
f, err := os.Open(pqs[0].src)
if err != nil {
return nil, err
}
defer func() {
_ = f.Close()
}()
type state struct {
*pullQuote
*bytes.Buffer
result *expanded
endMatchRemaining int
}
states := make([]*state, 0, len(pqs))
for _, pq := range pqs {
endCountRem := 1
if pq.endCount != 0 {
endCountRem = pq.endCount
}
states = append(states, &state{pq, nil, nil, endCountRem})
}
{
scanner := newlineIncludingScanner(f)
for scanner.Scan() {
txt := scanner.Text()
for _, s := range states {
if s.result != nil {
continue
}
if s.Buffer == nil {
if !s.start.MatchString(txt) {
continue
}
s.Buffer = new(bytes.Buffer) // init buffer
}
s.Buffer.WriteString(txt)
if s.end.MatchString(txt) {
s.endMatchRemaining--
if s.endMatchRemaining == 0 {
s.result = &expanded{String: strings.TrimRight(s.Buffer.String(), "\r\n")}
s.Buffer = nil
continue
}
}
}
}
if err := scanner.Err(); err != nil {
return nil, err
}
}
results := make([]*expanded, 0, len(states))
for _, s := range states {
if s.result != nil {
results = append(results, s.result)
continue
}
if s.Buffer != nil {
return nil, fmt.Errorf("never matched end: %q", s.end)
}
return nil, fmt.Errorf("never matched start: %q", s.end)
}
return results, nil
}
const (
// keyNoReformat disables realigning go tabs for the snippet
keyNoReformat = "noreformat"
// keyGoPath sets the path to a go expression or statement to print; can also be specified via goquote tag
keyGoPath = "gopath"
// keyIncludeGroup includes the whole group declaration, not just the single named statement
keyIncludeGroup = "includegroup"
// keyJSONPath sets the path to a JSON object to print; can also be specified via jsonquote tag
keyJSONPath = "jsonpath"
// keySrc specifies the file from which to take a pullquote
keySrc = "src"
// keyStart specifies a pattern for the line on which a pullquote begins
keyStart = "start"
// keyEnd specifies a pattern for the line on which a pullquote ends
keyEnd = "end"
// keyEndCount specifies the number of times the `end` pattern should match before ending the quote; default 1
keyEndCount = "endcount"
// keyFmt specifies a format -- can be `none`, `blockquote`, or `codefence`; for goquote, defaults to codefence.
keyFmt = "fmt"
// keyLang specifies the language highlighting to be used with a codefence.
keyLang = "lang"
// fmtCodeFence specifies that the snippet should be rendered within a "codefence" -- i.e. ```
fmtCodeFence = "codefence"
// fmtCodeFence specifies that the snippet should be rendered as a blockquote
fmtBlockQuote = "blockquote"
// fmtNone can be used to explicitly unset default formats
fmtNone = "none"
// fmtExample indicates that the code should be rendered like a godoc example
fmtExample = "example"
)
var (
keysCommonOptional = [...]string{keyFmt, keyLang}
keysGoQuoteValid = [...]string{keyGoPath, keyNoReformat, keyIncludeGroup}
keysJSONQuoteValid = [...]string{keyJSONPath, keyNoReformat}
keysPullQuoteOptional = [...]string{keyEndCount}
keysPullQuoteRequired = [...]string{keySrc, keyStart, keyEnd}
validFmts = map[string]bool{
fmtBlockQuote: true,
fmtCodeFence: true,
fmtExample: true,
fmtNone: true,
}
)
type pullQuote struct {
originalTag, quoteType string
src string
start, end *regexp.Regexp
endCount int
fmt, lang string
objPath, jsonPath string
flags uint
startIdx, endIdx int
}
// String returns a representation of the PQ for debugging; it is _not_ a valid serialization.
func (pq *pullQuote) String() string {
var b strings.Builder
_, _ = fmt.Fprintf(&b, "<!-- %vquote", pq.originalTag)
switch pq.quoteType {
case "go":
if pq.originalTag == "go" {
_, _ = fmt.Fprintf(&b, " %q", pq.objPath)
} else {
_, _ = fmt.Fprintf(&b, " gopath=%q", pq.objPath)
}
case "json":
if pq.originalTag == "json" {
_, _ = fmt.Fprintf(&b, " %q", pq.jsonPath)
} else {
_, _ = fmt.Fprintf(&b, " jsonpath=%q", pq.jsonPath)
}
}
for _, t := range []struct {
key string
val interface{}
}{
{"startIdx", pq.startIdx},
{"endIdx", pq.endIdx},
{keySrc, pq.src},
{keyStart, pq.start},
{keyEnd, pq.end},
{keyEndCount, pq.endCount},
{keyFmt, pq.fmt},
{keyLang, pq.lang},
{keyIncludeGroup, pq.flags&includeGroup != 0},
{keyNoReformat, pq.flags&noRealignTabs != 0},
} {
switch v := t.val.(type) {
case bool:
if v {
_, _ = fmt.Fprintf(&b, " %v", t.key)
}
continue
case string:
if v != "" {
_, _ = fmt.Fprintf(&b, " %v=%q", t.key, v)
}
case int:
if v != 0 {
_, _ = fmt.Fprintf(&b, " %v=%d", t.key, v)
}
case *regexp.Regexp:
if v != nil {
_, _ = fmt.Fprintf(&b, " %v=%q", t.key, v)
}
default:
_, _ = fmt.Fprintf(&b, " %v=UNKNOWN(%v)", t.key, v)
}
}
_, _ = io.WriteString(&b, " -->")
return b.String()
}
const (
_ = 1 << iota
noRealignTabs
includeGroup
)
type scanner interface {
Scan() bool
Text() string
Err() error
}
func setOptions(pq *pullQuote, toks scanner, tagType string) (map[string]struct{}, error) {
b := builder{pq: pq, seen: make(map[string]struct{})}
// our expressions require maximum three "tokens"
window := make([]string, 0, 3)
switch tagType {
case "go":
window = append(window, keyGoPath, "=")
case "json":
window = append(window, keyJSONPath, "=")
}
for toks.Scan() && b.err == nil {
window = append(window, toks.Text())
switch len(window) {
case 2:
if window[1] != "=" { // one off key
b.set(window[0], "", false)
window[0] = window[1]
window = window[:1]
}
case 3: // ["key", "=", "value"]
b.set(window[0], window[2], true)
window = window[:0]
}
}
if b.err == nil {
b.err = toks.Err()
}
switch len(window) { // check remainders
case 1:
b.set(window[0], "", false)
case 2:
b.set(window[0], "", false)
b.set(window[1], "", false)
}