Code Search - Navigate Your C++ Codebase with Ease

Rich Code Search Facilities

Introduction

What the tremendous success of Google told us is that being able to find the right information quickly is essential. Here both Time spent searching and Relevancy of the result found are the important assets.

We, developers, spend a significant amount of time searching code elements in our code base. Every developer tools, including Visual Studio, come with some sort of search criteria. So let's focus on what makes the CppDepend’s Code Rich Searching Experience unique.

Contrary to other tools, CppDepend Code Search supports numerous criterias including Searching by Name, Size, Complexity, Coupling, Popularity, Coverage, Visibility, Mutability, Purity, Change and Coverage of Changes. Let's begin with what is certainly the most used criteria for searching in a code base, Search by Name.

Go to top

Search by Name

In Visual Studio, the two shortcuts Alt+M and Alt+C can be used to search Methods or Classes by name.

Suppose one wants to search a method that contain the keyword "asc" in the name but doesn’t remember where it is. The first step is searching for methods whose names include the sub-string "Asc":

searching for methods whose names include the sub-string asc

Several things to notice here:

  • The Asc keyword is highlighted in method result. This helps to spot more quickly the searched code element(s).
  • Method can be grouped by declaring assembly/namespace/type. This make the search much more efficient because in the general case, we have a clue of where the method searched should be declared.
  • Under the hood, the search is based on the CQLinq Query below, generated from the user inputs.
    from m in Methods 
    where m.NameLike (@"Asc") 
    select new { m, m.NbLinesOfCode }

Go to top


Performance of Search

Something that cannot be shown on screenshots is that CppDepend search is fast, very fast: for example matching the 86.348 methods of the LLVM that contain an "e" in the name is immediate.

code search performance

Go to top


Multi Regex Support

Let’s refine our search criteria. Suppose that the method to find, is a get event handler for a as button. Notice now the CQLinq Query generated that contains 2 NameLike clauses:

from m in Methods 
where m.NameLike (@"get") && 
      
m.NameLike (@"as") 
select new { m, m.NbLinesOfCode }
refining code search in cppdepend

More generally the CQLinq condition NameLike can be parameterized with any regular expression. You suddenly remember that your method should begin with "get", upper case. Just click the lower case tick box and suffix your regex with ^, which means in regex terms begin with:

condition in cppdepend code search

Go to top


Search Tier Code by Name

The search can also easily include tier code elements. Clicking the Include Third-Party tickbox has for effect to discard the !IsThirdParty CQLinq restrictive condition.

include tier code elements in code search

Go to top


Search on Full Name

Also, you can extend the search to the full name. In other words, one can match any method whose name, type or namespace contains "get".

extend the search to the full name

Go to top


Refining Search by Name with CQLinq

And because all this is based on CQLinq, you can easily edit the CQLinq Query generated and refine it at whim, like for example, to match static methods with "get" in the name.

editing cqlinq query

Go to top

Search by other Criterias than Name

It is possible to search for methods, fields, types, namespaces and assemblies according to many other criterias than name. Keep in mind that in any case, all CppDepend searching facilities are actually some CQLinq queries generator. So all the search criterias supported target particular CQLinq clauses.

code search based on cqlinq

Go to top


Search by Size

It is possible to search for methods, types, namespaces and assemblies according to their size. The size if measured with the metric Lines of Code. If this metric is not available (because PDB files were not available at analysis time) the metric number of IL instructions is chosen.

search by size

Go to top


Search by Complexity

It is possible to search for methods, types, namespaces and assemblies according to their complexity. The size if measured with the metric source file Cyclomatic Complexity. If this metric is not available (because PDB files or source files were not available at analysis time) the metric IL Cyclomatic Complexity is chosen.

search by complexity

Go to top


Search Coupling in Code

It is possible to search for code elements according to their coupling. The Afferent Coupling metric value of a code element X represents the number of code elements users of X. The Efferent Coupling metric value of a code element X represents the number of code elements used by X.

Typically high Afferent Coupling indicates a popular code element. A high Efferent Coupling indicates a god code element, meaning a code element that has intimate knowledge of a large portion of the code base. Hence, a too high Efferent Coupling value for a type or a method should be considered as a code smell. More details on this topic can be found in Code metrics on Coupling, Dead Code, Design flaws and Re-engineering.

Search Coupling in Code

Go to top


Search by Popularity

It is possible to search for types and methods according to their popularity. The popularity of a code elements is computed according to the Ranking metric (the same metric originally used by Google to compute page rank).

Search by Popularity

Go to top


Search by Visibility

It is useful to search methods, fields or types according to their level visibility (private, protected, internal, internal protected, public). As shown in the screenshot, it is also possible to also ask for code elements that could have a more restrictive level of visibility. For example, if a method is tagged as CouldBePrivate by CppDepend, it means that it is not declared as private and, in the context of the application it is only used inside its declaring type.

Search by Visibility

Go to top


Search by Immutability / Purity

It is possible to search for immutable types and fields, and pure methods. More about this topic can be found in he article Immutable types: understand their benefits and use them.

Search by Immutability / Purity

Go to top


Search in Diff between two versions of the code

It is possible to search for Diff between 2 snapshots of the code base. This possibility is described in the section Advanced Code Diff with CppDepend.

Search in Diff between two versions of the code

Go to top

CppDepend offers a wide range of features. It is often described as a Swiss Army Knife for C and C++ developers.

Start Free Trial