/plugins/dummy/dummy.go

https://github.com/MinoMino/mindl · Go · 118 lines · 69 code · 21 blank · 28 comment · 1 complexity · 4b75fcc1632470d03790a0792d719201 MD5 · raw file

  1. package dummy
  2. // mindl - A downloader for various sites and services.
  3. // Copyright (C) 2016 Mino <mino@minomino.org>
  4. //
  5. // This program is free software: you can redistribute it and/or modify
  6. // it under the terms of the GNU Affero General Public License as published
  7. // by the Free Software Foundation, either version 3 of the License, or
  8. // (at your option) any later version.
  9. //
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. // GNU Affero General Public License for more details.
  14. //
  15. // You should have received a copy of the GNU Affero General Public License
  16. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. // Plugin that produces random data, but with delayed reading.
  18. // This makes it act similar to a real download and is useful
  19. // for trying out stuff and whatnot.
  20. import (
  21. "bytes"
  22. "fmt"
  23. "io"
  24. "math/rand"
  25. "path/filepath"
  26. "regexp"
  27. "strconv"
  28. "time"
  29. "github.com/MinoMino/mindl/plugins"
  30. )
  31. // Using random intervals, sleeps here and there between reads.
  32. type DelayedReader struct {
  33. io.Reader
  34. min, max int
  35. }
  36. func (d *DelayedReader) Read(p []byte) (int, error) {
  37. time.Sleep(time.Millisecond * time.Duration(rand.Intn(d.max-d.min)+d.min))
  38. return d.Reader.Read(p)
  39. }
  40. var Plugin = Dummy{
  41. []plugins.Option{
  42. &plugins.StringOption{K: "Hello", V: "World", Required: false},
  43. &plugins.StringOption{K: "I Like", V: "Potatoes", Required: false},
  44. },
  45. }
  46. var dummyUrlRegex = regexp.MustCompile(`^dummy://(?P<length>\d+)$`)
  47. type Dummy struct {
  48. options []plugins.Option
  49. }
  50. func (d *Dummy) Name() string {
  51. return "Dummy"
  52. }
  53. func (d *Dummy) Version() string {
  54. return ""
  55. }
  56. func (d *Dummy) CanHandle(url string) bool {
  57. return dummyUrlRegex.MatchString(url)
  58. }
  59. func (d *Dummy) Options() []plugins.Option {
  60. return d.options
  61. }
  62. func (d *Dummy) DownloadGenerator(url string) (dlgen func() plugins.Downloader, length int) {
  63. // Initialization.
  64. re := dummyUrlRegex.FindStringSubmatch(url)
  65. length, _ = strconv.Atoi(re[1])
  66. rand.Seed(int64(length))
  67. dir := fmt.Sprintf("dummy-%d", time.Now().Unix())
  68. i := 0
  69. // Generator.
  70. dlgen = func() plugins.Downloader {
  71. if i >= length {
  72. return nil
  73. }
  74. i++
  75. // Downloader. These are ran by the framework as goroutines.
  76. //
  77. // Note that all variables in these closures aren't evaluated when returned,
  78. // but when it's ran. This means that you can't use the "i" variable here
  79. // inside the downloader as a counter, as it's going to change before its
  80. // evaluation. However, since you are passed a counter, you can use that
  81. // to get data for that specific goroutine.
  82. return func(n int, rep plugins.Reporter) error {
  83. size := rand.Intn(1e6) + 1e5
  84. buf := make([]byte, size)
  85. rand.Read(buf)
  86. r := bytes.NewBuffer(buf)
  87. _, err := rep.SaveData(
  88. filepath.Join(dir, fmt.Sprintf("dummy-%d.bin", n)),
  89. &DelayedReader{r, 200, 1000},
  90. true)
  91. return err
  92. }
  93. }
  94. return
  95. }
  96. func (d *Dummy) Cleanup(err error) {
  97. }