mirror of
https://github.com/fhmq/hmq.git
synced 2026-04-24 10:38:34 +00:00
55 lines
1.2 KiB
Go
55 lines
1.2 KiB
Go
/* Copyright (c) 2018, joy.zhou <chowyu08@gmail.com>
|
|
*/
|
|
package acl
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"strings"
|
|
)
|
|
|
|
func SubscribeTopicSpilt(topic string) ([]string, error) {
|
|
subject := []byte(topic)
|
|
if bytes.IndexByte(subject, '#') != -1 {
|
|
if bytes.IndexByte(subject, '#') != len(subject)-1 {
|
|
return nil, errors.New("Topic format error with index of #")
|
|
}
|
|
}
|
|
re := strings.Split(topic, "/")
|
|
for i, v := range re {
|
|
if i != 0 && i != (len(re)-1) {
|
|
if v == "" {
|
|
return nil, errors.New("Topic format error with index of //")
|
|
}
|
|
if strings.Contains(v, "+") && v != "+" {
|
|
return nil, errors.New("Topic format error with index of +")
|
|
}
|
|
} else {
|
|
if v == "" {
|
|
re[i] = "/"
|
|
}
|
|
}
|
|
}
|
|
return re, nil
|
|
|
|
}
|
|
|
|
func PublishTopicSpilt(topic string) ([]string, error) {
|
|
subject := []byte(topic)
|
|
if bytes.IndexByte(subject, '#') != -1 || bytes.IndexByte(subject, '+') != -1 {
|
|
return nil, errors.New("Publish Topic format error with + and #")
|
|
}
|
|
re := strings.Split(topic, "/")
|
|
for i, v := range re {
|
|
if v == "" {
|
|
if i != 0 && i != (len(re)-1) {
|
|
return nil, errors.New("Topic format error with index of //")
|
|
} else {
|
|
re[i] = "/"
|
|
}
|
|
}
|
|
|
|
}
|
|
return re, nil
|
|
}
|