resource: Add Match and GetMatch
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 20 Jan 2018 17:07:41 +0000 (18:07 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 22 Jan 2018 09:28:12 +0000 (10:28 +0100)
commit9421380168f66620cb73203e1267814b3086d805
tree0946c9982ebfd61bb74268e69302e2364171d6f2
parent5d03086981b4a7d4bc450269a6a2e0fd22dbeed7
resource: Add Match and GetMatch

These methods takes a glob pattern as argument:

* by default matching from the bundle root
* matching is case insensitive and the separator is Unix style slashes: "/"
* the bundle root does (by default) not start with a leading slash
* if you renames the `Name` for the rsource in front matter (`src=...`), then that is the value used in `Match`.
* double asterisk matches beyond directory borders, so "**.jpg" will match any JPEG image in the bundle

See https://github.com/gobwas/glob

This commit also deprecates `ByPrefix` and `GetByPrefix`.

This should also be more effective, given a fair amount of reuse of the glob patterns:

```bash
BenchmarkResourcesByPrefix-4         300000          4284 ns/op        1130 B/op           7 allocs/op
BenchmarkResourcesMatch-4            300000          5220 ns/op         505 B/op           3 allocs/op
```

Fixes #4301
Gopkg.lock
Gopkg.toml
resource/resource.go
resource/resource_test.go