当前位置: 首页>>代码示例>>Golang>>正文


Golang utils.ErrorAggregator类代码示例

本文整理汇总了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'"))
	}
}
开发者ID:apognu,项目名称:xml,代码行数:28,代码来源:feed.go

示例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"))
	}
}
开发者ID:apognu,项目名称:xml,代码行数:27,代码来源:entry.go

示例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)
				}
			}
		}
	}
}
开发者ID:apognu,项目名称:xml,代码行数:11,代码来源:store.go

示例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)))
	}
}
开发者ID:apognu,项目名称:xml,代码行数:17,代码来源:feed.go

示例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)
		}
	}
}
开发者ID:apognu,项目名称:xml,代码行数:19,代码来源:feed.go

示例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)
			}
		}
	}

}
开发者ID:apognu,项目名称:xml,代码行数:22,代码来源:source.go

示例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())))
	}
}
开发者ID:apognu,项目名称:xml,代码行数:5,代码来源:validator.go

示例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"))
	}

}
开发者ID:apognu,项目名称:xml,代码行数:6,代码来源:entry.go


注:本文中的github.com/jloup/utils.ErrorAggregator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。