Fantom-foundation/go-lachesis

View on GitHub
cmd/lachesis/opera_export_state.go

Summary

Maintainability
F
6 days
Test Coverage

Function ExportState has a Cognitive Complexity of 207 (exceeds 20 allowed). Consider refactoring.
Open

func ExportState(path string, gdb *gossip.Store, cdb *poset.Store, net *lachesis.Config) (*genesisstore.Store, error) {
    _ = os.RemoveAll(path)

    err := os.MkdirAll(path, 0700)
    if err != nil {
Severity: Minor
Found in cmd/lachesis/opera_export_state.go - About 3 days 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

Function ExportState has 395 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func ExportState(path string, gdb *gossip.Store, cdb *poset.Store, net *lachesis.Config) (*genesisstore.Store, error) {
    _ = os.RemoveAll(path)

    err := os.MkdirAll(path, 0700)
    if err != nil {
Severity: Major
Found in cmd/lachesis/opera_export_state.go - About 1 day to fix

    File opera_export_state.go has 557 lines of code (exceeds 500 allowed). Consider refactoring.
    Open

    package main
    
    import (
        "bytes"
        "context"
    Severity: Minor
    Found in cmd/lachesis/opera_export_state.go - About 3 hrs to fix

      Function ExportState has 22 return statements (exceeds 4 allowed).
      Open

      func ExportState(path string, gdb *gossip.Store, cdb *poset.Store, net *lachesis.Config) (*genesisstore.Store, error) {
          _ = os.RemoveAll(path)
      
          err := os.MkdirAll(path, 0700)
          if err != nil {
      Severity: Major
      Found in cmd/lachesis/opera_export_state.go - About 2 hrs to fix

        Avoid deeply nested control flow statements.
        Open

                            if err != nil {
                                return genStore, errors.Wrap(err, "failed to get storage trie node")
                            }
        Severity: Major
        Found in cmd/lachesis/opera_export_state.go - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                              if dataIt.Leaf() || dataIt.Hash() == emptyNodeHash {
                                  continue
                              }
          Severity: Major
          Found in cmd/lachesis/opera_export_state.go - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                if createdTime <= stats.End {
                                    createdEpoch = e
                                    break
                                }
            Severity: Major
            Found in cmd/lachesis/opera_export_state.go - About 45 mins to fix

              There are no issues that match your filters.

              Category
              Status