aergoio/aergo

View on GitHub
cmd/brick/exec/batch.go

Summary

Maintainability
C
1 day
Test Coverage

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

func (c *batch) Run(args string) (string, uint64, []*types.Event, error) {
    stdOut := colorable.NewColorableStdout()

    var err error

Severity: Minor
Found in cmd/brick/exec/batch.go - About 7 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 batch.Run has 84 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func (c *batch) Run(args string) (string, uint64, []*types.Event, error) {
    stdOut := colorable.NewColorableStdout()

    var err error

Severity: Major
Found in cmd/brick/exec/batch.go - About 2 hrs to fix

    Avoid deeply nested control flow statements.
    Open

                        if err != nil {
                            fmt.Fprintf(stdOut, "\x1B[0;37mWatching File %s Error: %s\x1B[0m\n", batchFilePath, err.Error())
                        }
    Severity: Major
    Found in cmd/brick/exec/batch.go - About 45 mins to fix

      Method batch.readBatchFile has 6 return statements (exceeds 4 allowed).
      Open

      func (c *batch) readBatchFile(batchFilePath string) ([]string, error) {
          if strings.HasPrefix(batchFilePath, "http") {
              // search in the web
              req, err := http.NewRequest("GET", batchFilePath, nil)
              if err != nil {
      Severity: Major
      Found in cmd/brick/exec/batch.go - About 40 mins to fix

        There are no issues that match your filters.

        Category
        Status