mirror of
https://github.com/alecthomas/chroma.git
synced 2025-03-19 21:10:15 +02:00
This cleans up the API in general, removing a bunch of deprecated stuff, cleaning up circular imports, etc. But the biggest change is switching to an optional XML format for the regex lexer. Having lexers defined only in Go is not ideal for a couple of reasons. Firstly, it impedes a significant portion of contributors who use Chroma in Hugo, but don't know Go. Secondly, it bloats the binary size of any project that imports Chroma. Why XML? YAML is an abomination and JSON is not human editable. XML also compresses very well (eg. Go template lexer XML compresses from 3239 bytes to 718). Why a new syntax format? All major existing formats rely on the Oniguruma regex engine, which is extremely complex and for which there is no Go port. Why not earlier? Prior to the existence of fs.FS this was not a viable option. Benchmarks: $ hyperfine --warmup 3 \ './chroma.master --version' \ './chroma.xml-pre-opt --version' \ './chroma.xml --version' Benchmark 1: ./chroma.master --version Time (mean ± σ): 5.3 ms ± 0.5 ms [User: 3.6 ms, System: 1.4 ms] Range (min … max): 4.2 ms … 6.6 ms 233 runs Benchmark 2: ./chroma.xml-pre-opt --version Time (mean ± σ): 50.6 ms ± 0.5 ms [User: 52.4 ms, System: 3.6 ms] Range (min … max): 49.2 ms … 51.5 ms 51 runs Benchmark 3: ./chroma.xml --version Time (mean ± σ): 6.9 ms ± 1.1 ms [User: 5.1 ms, System: 1.5 ms] Range (min … max): 5.7 ms … 19.9 ms 196 runs Summary './chroma.master --version' ran 1.30 ± 0.23 times faster than './chroma.xml --version' 9.56 ± 0.83 times faster than './chroma.xml-pre-opt --version' A slight increase in init time, but I think this is okay given the increase in flexibility. And binary size difference: $ du -h lexers.test* $ du -sh chroma* 951371ms 8.8M chroma.master 7.8M chroma.xml 7.8M chroma.xml-pre-opt Benchmarks: $ hyperfine --warmup 3 \ './chroma.master --version' \ './chroma.xml-pre-opt --version' \ './chroma.xml --version' Benchmark 1: ./chroma.master --version Time (mean ± σ): 5.3 ms ± 0.5 ms [User: 3.6 ms, System: 1.4 ms] Range (min … max): 4.2 ms … 6.6 ms 233 runs Benchmark 2: ./chroma.xml-pre-opt --version Time (mean ± σ): 50.6 ms ± 0.5 ms [User: 52.4 ms, System: 3.6 ms] Range (min … max): 49.2 ms … 51.5 ms 51 runs Benchmark 3: ./chroma.xml --version Time (mean ± σ): 6.9 ms ± 1.1 ms [User: 5.1 ms, System: 1.5 ms] Range (min … max): 5.7 ms … 19.9 ms 196 runs Summary './chroma.master --version' ran 1.30 ± 0.23 times faster than './chroma.xml --version' 9.56 ± 0.83 times faster than './chroma.xml-pre-opt --version' Incompatible changes: - (*RegexLexer).SetAnalyser: changed from func(func(text string) float32) *RegexLexer to func(func(text string) float32) Lexer - (*TokenType).UnmarshalJSON: removed - Lexer.AnalyseText: added - Lexer.SetAnalyser: added - Lexer.SetRegistry: added - MustNewLazyLexer: removed - MustNewLexer: changed from func(*Config, Rules) *RegexLexer to func(*Config, func() Rules) *RegexLexer - Mutators: changed from func(...Mutator) MutatorFunc to func(...Mutator) Mutator - NewLazyLexer: removed - NewLexer: changed from func(*Config, Rules) (*RegexLexer, error) to func(*Config, func() Rules) (*RegexLexer, error) - Pop: changed from func(int) MutatorFunc to func(int) Mutator - Push: changed from func(...string) MutatorFunc to func(...string) Mutator - TokenType.MarshalJSON: removed - Using: changed from func(Lexer) Emitter to func(string) Emitter - UsingByGroup: changed from func(func(string) Lexer, int, int, ...Emitter) Emitter to func(int, int, ...Emitter) Emitter
177 lines
4.3 KiB
Go
177 lines
4.3 KiB
Go
package main
|
|
|
|
import (
|
|
"embed"
|
|
"encoding/json"
|
|
"html/template"
|
|
"log"
|
|
"net/http"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/alecthomas/kong"
|
|
konghcl "github.com/alecthomas/kong-hcl"
|
|
"github.com/gorilla/csrf"
|
|
"github.com/gorilla/handlers"
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/alecthomas/chroma/v2"
|
|
"github.com/alecthomas/chroma/v2/formatters/html"
|
|
"github.com/alecthomas/chroma/v2/lexers"
|
|
"github.com/alecthomas/chroma/v2/styles"
|
|
)
|
|
|
|
var (
|
|
version = "devel"
|
|
|
|
//go:embed templates/index.html.tmpl
|
|
indexTemplate string
|
|
//go:embed static
|
|
staticFiles embed.FS
|
|
|
|
htmlTemplate = template.Must(template.New("html").Parse(indexTemplate))
|
|
)
|
|
|
|
type context struct {
|
|
Background template.CSS
|
|
SelectedLanguage string
|
|
Languages []string
|
|
SelectedStyle string
|
|
Styles []string
|
|
CSRFField template.HTML
|
|
Version string
|
|
}
|
|
|
|
func index(w http.ResponseWriter, r *http.Request) {
|
|
ctx := newContext(r)
|
|
err := htmlTemplate.Execute(w, &ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
type renderRequest struct {
|
|
Language string `json:"language"`
|
|
Style string `json:"style"`
|
|
Text string `json:"text"`
|
|
Classes bool `json:"classes"`
|
|
}
|
|
|
|
type renderResponse struct {
|
|
Error string `json:"error,omitempty"`
|
|
HTML string `json:"html,omitempty"`
|
|
Language string `json:"language,omitempty"`
|
|
Background string `json:"background,omitempty"`
|
|
}
|
|
|
|
func renderHandler(w http.ResponseWriter, r *http.Request) {
|
|
req := &renderRequest{}
|
|
err := json.NewDecoder(r.Body).Decode(&req)
|
|
var rep *renderResponse
|
|
if err != nil {
|
|
rep = &renderResponse{Error: err.Error()}
|
|
} else {
|
|
rep, err = render(req)
|
|
if err != nil {
|
|
rep = &renderResponse{Error: err.Error()}
|
|
}
|
|
}
|
|
w.Header().Set("Content-Type", "application/json")
|
|
_ = json.NewEncoder(w).Encode(rep)
|
|
}
|
|
|
|
func render(req *renderRequest) (*renderResponse, error) {
|
|
language := lexers.Get(req.Language)
|
|
if language == nil {
|
|
language = lexers.Analyse(req.Text)
|
|
if language != nil {
|
|
req.Language = language.Config().Name
|
|
}
|
|
}
|
|
if language == nil {
|
|
language = lexers.Fallback
|
|
}
|
|
|
|
tokens, err := chroma.Coalesce(language).Tokenise(nil, req.Text)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
style := styles.Get(req.Style)
|
|
if style == nil {
|
|
style = styles.Fallback
|
|
}
|
|
|
|
buf := &strings.Builder{}
|
|
options := []html.Option{}
|
|
if req.Classes {
|
|
options = append(options, html.WithClasses(true), html.Standalone(true))
|
|
}
|
|
formatter := html.New(options...)
|
|
err = formatter.Format(buf, style, tokens)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
lang := language.Config().Name
|
|
if language == lexers.Fallback {
|
|
lang = ""
|
|
}
|
|
return &renderResponse{
|
|
Language: lang,
|
|
HTML: buf.String(),
|
|
Background: html.StyleEntryToCSS(style.Get(chroma.Background)),
|
|
}, nil
|
|
}
|
|
|
|
func newContext(r *http.Request) context {
|
|
ctx := context{
|
|
SelectedStyle: "monokailight",
|
|
CSRFField: csrf.TemplateField(r),
|
|
Version: version,
|
|
}
|
|
style := styles.Get(ctx.SelectedStyle)
|
|
if style == nil {
|
|
style = styles.Fallback
|
|
}
|
|
ctx.Background = template.CSS(html.StyleEntryToCSS(style.Get(chroma.Background)))
|
|
if ctx.SelectedStyle == "" {
|
|
ctx.SelectedStyle = "monokailight"
|
|
}
|
|
for _, lexer := range lexers.GlobalLexerRegistry.Lexers {
|
|
ctx.Languages = append(ctx.Languages, lexer.Config().Name)
|
|
}
|
|
sort.Strings(ctx.Languages)
|
|
for _, style := range styles.Registry {
|
|
ctx.Styles = append(ctx.Styles, style.Name)
|
|
}
|
|
sort.Strings(ctx.Styles)
|
|
return ctx
|
|
}
|
|
|
|
func main() {
|
|
var cli struct {
|
|
Version kong.VersionFlag `help:"Show version."`
|
|
Config kong.ConfigFlag `help:"Load configuration." placeholder:"FILE"`
|
|
Bind string `help:"HTTP bind address." default:"127.0.0.1:8080"`
|
|
CSRFKey string `help:"CSRF key." default:""`
|
|
}
|
|
ctx := kong.Parse(&cli, kong.Configuration(konghcl.Loader), kong.Vars{"version": version})
|
|
|
|
log.Printf("Starting chromad %s on http://%s\n", version, cli.Bind)
|
|
|
|
router := mux.NewRouter()
|
|
router.Handle("/", http.HandlerFunc(index)).Methods("GET")
|
|
router.Handle("/api/render", http.HandlerFunc(renderHandler)).Methods("POST")
|
|
router.Handle("/static/{file:.*}", http.FileServer(http.FS(staticFiles))).Methods("GET")
|
|
|
|
options := []csrf.Option{}
|
|
if cli.CSRFKey == "" {
|
|
options = append(options, csrf.Secure(false))
|
|
}
|
|
|
|
root := handlers.CORS()(csrf.Protect([]byte(cli.CSRFKey), options...)(router))
|
|
|
|
err := http.ListenAndServe(cli.Bind, root)
|
|
ctx.FatalIfErrorf(err)
|
|
}
|