本文整理匯總了Golang中tmsu/storage.Storage.TagsByNames方法的典型用法代碼示例。如果您正苦於以下問題:Golang Storage.TagsByNames方法的具體用法?Golang Storage.TagsByNames怎麽用?Golang Storage.TagsByNames使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類tmsu/storage.Storage
的用法示例。
在下文中一共展示了Storage.TagsByNames方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: lookupTagIds
func (command UntagCommand) lookupTagIds(store *storage.Storage, names []string) ([]uint, error) {
tags, err := store.TagsByNames(names)
if err != nil {
return nil, fmt.Errorf("could not retrieve tags: %v", err)
}
for _, name := range names {
if !tags.Any(func(tag *database.Tag) bool { return tag.Name == name }) {
return nil, fmt.Errorf("no such tag '%v'", name)
}
}
tagIds := make([]uint, len(tags))
for index, tag := range tags {
tagIds[index] = tag.Id
}
return tagIds, nil
}
示例2: lookupTagIds
func (command TagCommand) lookupTagIds(store *storage.Storage, names []string) ([]uint, error) {
tags, err := store.TagsByNames(names)
if err != nil {
return nil, fmt.Errorf("could not retrieve tags %v: %v", names, err)
}
for _, name := range names {
if !tags.Any(func(tag *database.Tag) bool { return tag.Name == name }) {
log.Infof("New tag '%v'.", name)
tag, err := store.AddTag(name)
if err != nil {
return nil, fmt.Errorf("could not add tag '%v': %v", name, err)
}
tags = append(tags, tag)
}
}
if command.verbose {
log.Infof("retrieving tag implications")
}
tagIds := make([]uint, len(tags))
for index, tag := range tags {
tagIds[index] = tag.Id
}
implications, err := store.ImplicationsForTags(tagIds...)
if err != nil {
return nil, fmt.Errorf("could not retrieve implied tags: %v", err)
}
for _, implication := range implications {
if !contains(tagIds, implication.ImpliedTag.Id) {
log.Infof("tag '%v' is implied.", implication.ImpliedTag.Name)
tagIds = append(tagIds, implication.ImpliedTag.Id)
}
}
return tagIds, nil
}