Documentation
¶
Index ¶
- Constants
- Variables
- func LevelToStr(l Level) string
- type Code
- type Codes
- type Collector
- func (c *Collector) AddCode(code ID, section string, args ...interface{})
- func (c *Collector) AddErr(res string, errs ...error)
- func (c *Collector) AddSubCode(code ID, section, group string, args ...interface{})
- func (c *Collector) InitOutcome(section string)
- func (c *Collector) MaxSeverity(section string) Level
- func (c *Collector) NoConcerns(section string) bool
- func (c *Collector) Outcome() Outcome
- type Glossary
- type ID
- type Issue
- type Issues
- type Level
- type Outcome
Constants ¶
const Root = "__root__"
Root denotes a root issue group.
Variables ¶
var Blank = Issue{}
Blank issue
Functions ¶
func LevelToStr ¶ added in v0.4.0
LevelToStr returns a severity level as a string.
Types ¶
type Codes ¶ added in v0.4.0
type Codes struct {
Glossary Glossary `yaml:"codes"`
}
Codes represents a collection of sanitizer codes.
type Collector ¶
type Collector struct {
// contains filtered or unexported fields
}
Collector represents a sanitizer issue container.
func NewCollector ¶
NewCollector returns a new issue collector.
func (*Collector) AddSubCode ¶ added in v0.4.0
AddSubCode add a sub error code.
func (*Collector) InitOutcome ¶
InitOutcome creates a places holder for potential issues.
func (*Collector) MaxSeverity ¶
MaxSeverity return the highest severity level foe the given section.
func (*Collector) NoConcerns ¶
NoConcerns returns true is scan is successful.
type Issue ¶
type Issue struct { Group string `yaml:"group" json:"group"` Level Level `yaml:"level" json:"level"` Message string `yaml:"message" json:"message"` }
Issue tracks a sanitizer issui.
func (Issue) IsSubIssue ¶
IsSubIssue checks if error is a sub error.
type Issues ¶
type Issues []Issue
Issues represents a collection of issues.
func (Issues) MaxSeverity ¶
MaxSeverity gather the max severity in a collection of issues.
type Outcome ¶
Outcome represents outcomes resulting from sanitization pass.
func (Outcome) MaxGroupSeverity ¶
MaxGroupSeverity scans the issues and reports the highest severity.
func (Outcome) MaxSeverity ¶
MaxSeverity scans the issues and reports the highest severity.