rdfio/rdf2smw

View on GitHub
components/triplestowikipageconv.go

Summary

Maintainability
C
7 hrs
Test Coverage

Method TripleAggregateToWikiPageConverter.Run has a Cognitive Complexity of 43 (exceeds 20 allowed). Consider refactoring.
Open

func (p *TripleAggregateToWikiPageConverter) Run() {
    defer close(p.OutPage)

    predPageIndex := make(map[string]*WikiPage)

Severity: Minor
Found in components/triplestowikipageconv.go - About 4 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method TripleAggregateToWikiPageConverter.Run has 67 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (p *TripleAggregateToWikiPageConverter) Run() {
    defer close(p.OutPage)

    predPageIndex := make(map[string]*WikiPage)

Severity: Minor
Found in components/triplestowikipageconv.go - About 1 hr to fix

    Method TripleAggregateToWikiPageConverter.determineType has a Cognitive Complexity of 26 (exceeds 20 allowed). Consider refactoring.
    Open

    func (p *TripleAggregateToWikiPageConverter) determineType(uriAggr *TripleAggregate) int {
        if uriAggr != nil {
            if uriAggr.Triples != nil {
                for _, tr := range uriAggr.Triples {
                    for _, propType := range propertyTypes {
    Severity: Minor
    Found in components/triplestowikipageconv.go - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    var valueUriType should be valueURIType
    Open

                    valueUriType := p.determineType(valueAggr)
    Severity: Minor
    Found in components/triplestowikipageconv.go by golint

    exported method TripleAggregateToWikiPageConverter.Run should have comment or be unexported
    Open

    func (p *TripleAggregateToWikiPageConverter) Run() {
    Severity: Minor
    Found in components/triplestowikipageconv.go by golint

    method convertUriToWikiTitle should be convertURIToWikiTitle
    Open

    func (p *TripleAggregateToWikiPageConverter) convertUriToWikiTitle(uri string, uriType int, resourceIndex *map[string]*TripleAggregate) (pageTitle string, factTitle string) {
    Severity: Minor
    Found in components/triplestowikipageconv.go by golint

    exported function NewTripleAggregateToWikiPageConverter should have comment or be unexported
    Open

    func NewTripleAggregateToWikiPageConverter() *TripleAggregateToWikiPageConverter {
    Severity: Minor
    Found in components/triplestowikipageconv.go by golint

    exported const URITypeUndefined should have comment (or a comment on this block) or be unexported
    Open

        URITypeUndefined
    Severity: Minor
    Found in components/triplestowikipageconv.go by golint

    There are no issues that match your filters.

    Category
    Status