/src/cmd/pprof/internal/svg/svg.go

https://bitbucket.org/TinkerBoard_Android/prebuilts-go-darwin-x86 · Go · 71 lines · 32 code · 10 blank · 29 comment · 6 complexity · 8f9d1900b63595e43e657398c6cae14d MD5 · raw file

  1. // Copyright 2014 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package svg provides tools related to handling of SVG files
  5. package svg
  6. import (
  7. "bytes"
  8. "regexp"
  9. "strings"
  10. )
  11. var (
  12. viewBox = regexp.MustCompile(`<svg\s*width="[^"]+"\s*height="[^"]+"\s*viewBox="[^"]+"`)
  13. graphId = regexp.MustCompile(`<g id="graph\d"`)
  14. svgClose = regexp.MustCompile(`</svg>`)
  15. )
  16. // Massage enhances the SVG output from DOT to provide better
  17. // panning inside a web browser. It uses the SVGPan library, which is
  18. // included directly.
  19. func Massage(in bytes.Buffer) string {
  20. svg := string(in.Bytes())
  21. // Work around for dot bug which misses quoting some ampersands,
  22. // resulting on unparsable SVG.
  23. svg = strings.Replace(svg, "&;", "&amp;;", -1)
  24. //Dot's SVG output is
  25. //
  26. // <svg width="___" height="___"
  27. // viewBox="___" xmlns=...>
  28. // <g id="graph0" transform="...">
  29. // ...
  30. // </g>
  31. // </svg>
  32. //
  33. // Change it to
  34. //
  35. // <svg width="100%" height="100%"
  36. // xmlns=...>
  37. // <script>...</script>
  38. // <g id="viewport" transform="translate(0,0)">
  39. // <g id="graph0" transform="...">
  40. // ...
  41. // </g>
  42. // </g>
  43. // </svg>
  44. if loc := viewBox.FindStringIndex(svg); loc != nil {
  45. svg = svg[:loc[0]] +
  46. `<svg width="100%" height="100%"` +
  47. svg[loc[1]:]
  48. }
  49. if loc := graphId.FindStringIndex(svg); loc != nil {
  50. svg = svg[:loc[0]] +
  51. `<script type="text/ecmascript"><![CDATA[` + svgPanJS + `]]></script>` +
  52. `<g id="viewport" transform="scale(0.5,0.5) translate(0,0)">` +
  53. svg[loc[0]:]
  54. }
  55. if loc := svgClose.FindStringIndex(svg); loc != nil {
  56. svg = svg[:loc[0]] +
  57. `</g>` +
  58. svg[loc[0]:]
  59. }
  60. return svg
  61. }