本文整理汇总了Golang中github.com/jloup/utils.ErrorAggregator类的典型用法代码示例。如果您正苦于以下问题:Golang ErrorAggregator类的具体用法?Golang ErrorAggregator怎么用?Golang ErrorAggregator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ErrorAggregator类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: validateLinks
func (f *Feed) validateLinks(err *utils.ErrorAggregator) {
combinations := make([]string, 0)
hasSelf := false
for _, link := range f.Links {
if link.Rel.Value == "alternate" {
s := link.Type.Value + link.HrefLang.Value
unique := true
for _, comb := range combinations {
if s == comb {
err.NewError(xmlutils.NewError(LinkAlternateDuplicated, fmt.Sprintf("Alternate Link duplicated: hreflang '%s' type '%s'", link.HrefLang.Value, link.Type.Value)))
unique = false
}
}
if unique {
combinations = append(combinations, s)
}
} else if link.Rel.Value == "self" {
hasSelf = true
}
}
if !hasSelf {
err.NewError(xmlutils.NewError(MissingSelfLink, "Feed must have a link with rel attribute set to 'self'"))
}
}
示例2: validateLinks
func (e *Entry) validateLinks(err *utils.ErrorAggregator) {
combinations := make([]string, 0)
hasAlternateRel := false
for _, link := range e.Links {
if link.Rel.Value == "alternate" {
hasAlternateRel = true
s := link.Type.Value + link.HrefLang.Value
unique := true
for _, comb := range combinations {
if s == comb {
err.NewError(xmlutils.NewError(LinkAlternateDuplicated, fmt.Sprintf("Alternate Link duplicated: hreflang '%s' type '%s'", link.HrefLang.Value, link.Type.Value)))
unique = false
}
}
if unique {
combinations = append(combinations, s)
}
}
}
if e.Occurences.Count("content") == 0 && !hasAlternateRel {
err.NewError(xmlutils.NewError(NoContentOrAlternateLink, "Entry should have either a Content element or a Link with alternate type"))
}
}
示例3: Validate
func (s *Store) Validate(errorAgg *utils.ErrorAggregator) {
for _, store := range s.stores {
for _, ext := range store.extensions {
if _, ok := ext.(Attr); ok {
if err := ext.Validate(); err != nil {
errorAgg.NewError(err)
}
}
}
}
}
示例4: validateAuthors
func (f *Feed) validateAuthors(err *utils.ErrorAggregator) {
if len(f.Authors) > 0 {
return
}
count := 0
for _, entry := range f.Entries {
if !entry.hasAuthor() {
count += 1
}
}
if count > 0 || len(f.Entries) == 0 {
err.NewError(xmlutils.NewError(MissingAuthor, fmt.Sprintf("%v entry(ies) are missing author reference", count)))
}
}
示例5: validateEntries
func (f *Feed) validateEntries(err *utils.ErrorAggregator) {
combinations := make([]string, 0)
for _, entry := range f.Entries {
s := entry.Id.Content.Value + entry.Updated.Time.String()
unique := true
for _, comb := range combinations {
if s == comb {
err.NewError(xmlutils.NewError(EntryWithIdAndDateDuplicated, fmt.Sprintf("Entries are duplicated: id '%s' updated '%s'", entry.Id.Content.Value, entry.Updated.Time.String())))
unique = false
}
}
if unique {
combinations = append(combinations, s)
}
}
}
示例6: validateLinks
func (s *Source) validateLinks(err *utils.ErrorAggregator) {
combinations := make([]string, 0)
for _, link := range s.Links {
if link.Rel.Value == "alternate" {
s := link.Type.Value + link.HrefLang.Value
unique := true
for _, comb := range combinations {
if s == comb {
err.NewError(xmlutils.NewError(LinkAlternateDuplicated, fmt.Sprintf("Alternate Link duplicated: hreflang '%s' type '%s'", link.HrefLang.Value, link.Type.Value)))
unique = false
}
}
if unique {
combinations = append(combinations, s)
}
}
}
}
示例7: ValidateElement
func ValidateElement(parentName string, el Valider, agg *utils.ErrorAggregator) {
if err := el.Validate(); err != nil {
agg.NewError(NewError(err.Flag(), fmt.Sprintf("%s's %s", parentName, err.Msg())))
}
}
示例8: validateAuthors
func (e *Entry) validateAuthors(err *utils.ErrorAggregator) {
if e.Parent == nil && !e.hasAuthor() {
err.NewError(xmlutils.NewError(MissingAuthor, "entry should contain at least one author"))
}
}