fremag/MemoScope.Net

View on GitHub

Showing 76 of 126 total issues

File ClrDump.cs has 504 lines of code (exceeds 250 allowed). Consider refactoring.
Open

using System.Collections.Generic;
using System.Linq;
using MemoScope.Core.Dac;
using Microsoft.Diagnostics.Runtime;
using System;
Severity: Major
Found in MemoScope/Core/ClrDump.cs - About 1 day to fix

    Method SetUpAddressColumn has a Cognitive Complexity of 59 (exceeds 20 allowed). Consider refactoring.
    Open

            public static void SetUpAddressColumn(this ObjectListView listView, OLVColumn col, UIClrDumpModule dumpModule, string suffix = null)
            {
                col.AspectToStringFormat = "{0:X}";
                col.TextAlign = HorizontalAlignment.Right;
                col.Width = 150;
    Severity: Minor
    Found in MemoScope/Core/Helpers/ObjectListViewHelpers.cs - About 6 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

    File ObjectListViewHelpers.cs has 422 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    using BrightIdeasSoftware;
    using MemoScope.Core.Data;
    using MemoScope.Modules.InstanceDetails;
    using MemoScope.Tools.RegexFilter;
    using Microsoft.Diagnostics.Runtime;
    Severity: Minor
    Found in MemoScope/Core/Helpers/ObjectListViewHelpers.cs - About 6 hrs to fix

      Class ClrDump has 44 methods (exceeds 20 allowed). Consider refactoring.
      Open

          public class ClrDump : IClrDump
          {
              static Logger logger = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType.FullName);
      
              private static int n = 0;
      Severity: Minor
      Found in MemoScope/Core/ClrDump.cs - About 6 hrs to fix

        Method SetUpAddressColumn has 131 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                public static void SetUpAddressColumn(this ObjectListView listView, OLVColumn col, UIClrDumpModule dumpModule, string suffix = null)
                {
                    col.AspectToStringFormat = "{0:X}";
                    col.TextAlign = HorizontalAlignment.Right;
                    col.Width = 150;
        Severity: Major
        Found in MemoScope/Core/Helpers/ObjectListViewHelpers.cs - About 5 hrs to fix

          File ClrDumpCache.cs has 357 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          using Microsoft.Diagnostics.Runtime;
          using System.Collections.Generic;
          using System.Data.SQLite;
          using System.IO;
          using WinFwk.UITools.Log;
          Severity: Minor
          Found in MemoScope/Core/Cache/ClrDumpCache.cs - About 4 hrs to fix

            File ProcessModule.cs has 349 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            using ExpressionEvaluator;
            using MemoScope.Core.ProcessInfo;
            using MemoScope.Modules.Explorer;
            using MemoScope.Tools.CodeTriggers;
            using MemoScopeApi;
            Severity: Minor
            Found in MemoScope/Modules/Process/ProcessModule.cs - About 4 hrs to fix

              Method Analyze has a Cognitive Complexity of 41 (exceeds 20 allowed). Consider refactoring.
              Open

                      public static List<ArrayInstanceInformation> Analyze(ArraysAddressList arrayAddressList, MessageBus msgBus)
                      {
                          var clrDump = arrayAddressList.ClrDump;
                          var clrType = arrayAddressList.ClrType;
                          var typeName = clrType.Name;
              Severity: Minor
              Found in MemoScope/Modules/ArrayInstances/ArrayInstanceAnalysis.cs - About 3 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

              File InstancesModule.cs has 312 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              using BrightIdeasSoftware;
              using MemoScope.Core.Data;
              using MemoScope.Core.Helpers;
              using Microsoft.Diagnostics.Runtime;
              using System.Collections.Generic;
              Severity: Minor
              Found in MemoScope/Modules/Instances/InstancesModule.cs - About 3 hrs to fix

                Method Dump has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        public void Dump()
                        {
                            if (proc == null)
                            {
                                Log("Can't dump: no process selected !", LogLevelType.Error);
                Severity: Major
                Found in MemoScope/Modules/Process/ProcessModule.cs - About 3 hrs to fix

                  Class ClrDumpCache has 24 methods (exceeds 20 allowed). Consider refactoring.
                  Open

                      public class ClrDumpCache
                      {
                          ClrDump ClrDump { get; }
                          public bool DataExists { get; private set; }
                  
                  
                  Severity: Minor
                  Found in MemoScope/Core/Cache/ClrDumpCache.cs - About 2 hrs to fix

                    Method AnalyzeReferers has 64 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                            public static List<ReferersInformation> AnalyzeReferers(MessageBus msgBus, ClrDump clrDump, HashSet<ulong> addresses)
                            {
                                var referers = new List<ReferersInformation>();
                                var dicoByRefererType = new Dictionary<ClrType, Dictionary<string, ReferersInformation>>();
                                CancellationTokenSource token = new CancellationTokenSource();
                    Severity: Major
                    Found in MemoScope/Modules/Referers/ReferersAnalysis.cs - About 2 hrs to fix

                      Method SetUpTypeColumn has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                              public static void SetUpTypeColumn(this ObjectListView listView, OLVColumn col, UIClrDumpModule dumpModule=null, string suffix = null)
                              {
                                  listView.FormatCell += (sender, e) =>
                                  {
                                      if (e.Column == col)
                      Severity: Major
                      Found in MemoScope/Core/Helpers/ObjectListViewHelpers.cs - About 2 hrs to fix

                        Method Analyze has 59 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                public static List<ArrayInstanceInformation> Analyze(ArraysAddressList arrayAddressList, MessageBus msgBus)
                                {
                                    var clrDump = arrayAddressList.ClrDump;
                                    var clrType = arrayAddressList.ClrType;
                                    var typeName = clrType.Name;
                        Severity: Major
                        Found in MemoScope/Modules/ArrayInstances/ArrayInstanceAnalysis.cs - About 2 hrs to fix

                          Method ManageAlias has 59 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                                  public static string ManageAlias(string typeName, List<TypeAlias> typeAliases)
                                  {
                                      if( typeName == null)
                                      {
                                          return null;
                          Severity: Major
                          Found in MemoScope/Core/Helpers/TypeHelpers.cs - About 2 hrs to fix

                            Class ProcessModule has 22 methods (exceeds 20 allowed). Consider refactoring.
                            Open

                                public partial class ProcessModule : UIModule,
                                    IMessageListener<DumpRequest>,
                                    IMessageListener<UISettingsChangedMessage>
                                {
                                    public static readonly MemoScopeServer DumpServer;
                            Severity: Minor
                            Found in MemoScope/Modules/Process/ProcessModule.cs - About 2 hrs to fix

                              Method AddFieldColumn has 56 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                      private void AddFieldColumn(FieldNode fieldNode)
                                      {
                                          if( fieldNode == null)
                                          {
                                              return;
                              Severity: Major
                              Found in MemoScope/Modules/Instances/InstancesModule.cs - About 2 hrs to fix

                                Method GetLoneTargetInformations has 54 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                        public static List<LoneTargetInformation> GetLoneTargetInformations(ClrDump clrDump)
                                        {
                                            CancellationTokenSource token = new CancellationTokenSource();
                                            clrDump.MessageBus.BeginTask("Analyzing lone targets...", token);
                                
                                
                                Severity: Major
                                Found in MemoScope/Modules/Delegates/DelegatesAnalysis.cs - About 2 hrs to fix

                                  Method SetUp has 47 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                          public void SetUp(ClrDump clrDump)
                                          {
                                              ClrDump = clrDump;
                                              dlvBookmarks.InitColumns<Bookmark>();
                                              dlvBookmarks.SetUpAddressColumn<Bookmark>(this);
                                  Severity: Minor
                                  Found in MemoScope/Modules/Bookmarks/BookmarkModule.cs - About 1 hr to fix

                                    Method GetFieldNameReferenceImpl has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                            public string GetFieldNameReferenceImpl(ulong refAddress, ulong address, bool prefixWithType)
                                            {
                                                ClrType type = GetObjectTypeImpl(address);
                                                if (type == null)
                                                {
                                    Severity: Minor
                                    Found in MemoScope/Core/ClrDump.cs - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language