-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.go
58 lines (44 loc) · 794 Bytes
/
parse.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package taguri
import (
"strings"
)
func Parse(dst *TagURI, value string) error {
if nil == dst {
return errNilDestination
}
var str string = value
{
const prefix string = "tag:"
if !strings.HasPrefix(str, prefix) {
return errNotTagURI
}
str = str[len(prefix):]
}
{
var index int = strings.IndexByte(str, ',')
if index < 0 {
return errInvalidTagURI
}
dst.AuthorityName = str[:index]
str = str[index+1:]
}
{
var index int = strings.IndexByte(str, ':')
if index < 0 {
return errInvalidTagURI
}
dst.Date = str[:index]
str = str[index+1:]
}
{
var index int = strings.IndexByte(str, '#')
switch {
case index < 0:
dst.Specific = str
default:
dst.Specific = str[:index]
dst.Fragment = str[index+1:]
}
}
return nil
}