mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-05 05:04:04 -08:00
3581377e5d
Looking at https://tech.townsourced.com/post/embedding-static-files-in-go/ (which was mentioned in the issue), vfsgen has all the needed features. In particular: - Reproducible builds (no issue with timestamping). - Well maintained and relatively popular. - Integration with go generate. - Self-contained (no external dependency). * [WIP] Replace go-bindata by vfsgen Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Add license + remove doc.go Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Generate templates assets Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Use new templates assets Signed-off-by: Simon Pasquier <spasquie@redhat.com> * split static assets Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Idempotent make assets Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Update vendor/ Signed-off-by: Simon Pasquier <spasquie@redhat.com> * vendor vfsgendev Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Update README.md Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Simplify assets generation Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix README.md Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Use generate helper program instead of vfsgen This avoids installing vfsgendev in the target environment. Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Remove unused vfsgen package Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix Makefile Signed-off-by: Simon Pasquier <spasquie@redhat.com> * vendoring shurcooL/vfsgen Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix go generate command Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Sync web/ui/assets_vfsdata.go Signed-off-by: Simon Pasquier <spasquie@redhat.com>
46 lines
854 B
Go
46 lines
854 B
Go
package vfsgen
|
|
|
|
import "io"
|
|
|
|
// commentWriter writes a Go comment to the underlying io.Writer,
|
|
// using line comment form (//).
|
|
type commentWriter struct {
|
|
W io.Writer
|
|
wroteSlashes bool // Wrote "//" at the beginning of the current line.
|
|
}
|
|
|
|
func (c *commentWriter) Write(p []byte) (int, error) {
|
|
var n int
|
|
for i, b := range p {
|
|
if !c.wroteSlashes {
|
|
s := "//"
|
|
if b != '\n' {
|
|
s = "// "
|
|
}
|
|
if _, err := io.WriteString(c.W, s); err != nil {
|
|
return n, err
|
|
}
|
|
c.wroteSlashes = true
|
|
}
|
|
n0, err := c.W.Write(p[i : i+1])
|
|
n += n0
|
|
if err != nil {
|
|
return n, err
|
|
}
|
|
if b == '\n' {
|
|
c.wroteSlashes = false
|
|
}
|
|
}
|
|
return len(p), nil
|
|
}
|
|
|
|
func (c *commentWriter) Close() error {
|
|
if !c.wroteSlashes {
|
|
if _, err := io.WriteString(c.W, "//"); err != nil {
|
|
return err
|
|
}
|
|
c.wroteSlashes = true
|
|
}
|
|
return nil
|
|
}
|