Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

 


Impact Analysis

...

Info

Impact Analysis is probably the most powerful functionality of Kiuwan Architecture.

Basically, Impact Analysis lets you to deeply inspect your application for whatever criteria you need, allowing you to discover unknown paths between your components.

...

Impact Analysis provides insights on quite different, but important, questions such as: 

  • To check if software elements are compliant with architectural standards (e.g. detecting illegal dependencies).
  • To perform impact analysis (identify items that may be affected by a change in a specific set of items).
  • To detect potential design antipatterns (‘smells’) due to bad couplings.
  • To resolve the group of software items that belongs belong to a certain category (classification by tagging).
  • To keep track of the code items that makes make up a certain logical entity.

 

Info

Impact Analysis “discovers” connections (paths) between components of your source code.

...

For example, let’s suppose you want to know how your J2EE application is accessing the database, i.e. which Java classes are accessing data tables.

...

Kiuwan lets you fully specify conditions on starting and impacted components. 

Info

Besides to specify impacted and starting components, you can also specify Constraints about how to navigate through the relationships.

By default, Kiuwan will find any path of any type, but you can restrict those paths. 

In order to make an Impact Analysys, Kiuwan' Analysis Impact page looks as follows.

 

Image Removed

 

 

Image Added

Starting Components Selectors

Info

First, you must specify Starting (sources) component(s).

 


Image Modified

This dialog lets you to specify the starting component(s) for your query.

To select these starting components, clicking on the Add button will open a components selector. 

Image Modified 


Info

Starting The starting Components Selector dialog lets you to specify starting components in two ways:

  1. Select all the components that match the filter (now and in the future)
  2. Select a subset of the components found with the filter

...

In our example, we are looking for “Table” components as “starting” components. Not specific tables, but any table that exist exists in the application.

So you specify “Table” as component type, click on Apply button and Kiuwan will display the list of components that match that filter. 


Image Modified 

Instead, if you were looking for some subset of specific tables, you specify Table as component type (as before), but you should click on "Select specific components from this filter"

This way, you will get a list of found components where you can pick up those that you are interested in.

Image Modified

After clicking on Apply button you will get your starting set of components. 

Image Modified

 

Difference The difference is clear:

  • In the 1st case (filter), paths will be searched for all the tables in the application. 
  • In the 2nd case (hand-picked) , only paths from those tables will be searched.  

Following our example, we are interested in all the tables, so we will select 1st option.

 

Next, we should define Navigation Constraints. Next The next section will show to you how to do it. 

Navigation Constraints

...

Info

Besides to specify specifying starting components, you can also specify constraints about how to navigate through the relationships.

By default, Kiuwan will find any path of any type, but you can restrict those paths.

...

Image Modified

 

Relations

Any relation between components belongs to a certain type.

You can specify what relations should be considered when searching for path paths between components. Kiuwan shows all the different relations found in your code. 

Image Modified

Direction

Besides of a relation type, any relation has a direction: Incoming or Outgoing.

  • By Incoming, we mean those relations “ending” at the Starting components
  • By Outgoing, we mean relations “starting” from the Starting components.

...


Image Modified 

In our example, we are looking for Java classes that are accessing Tables. In this case, usual relations of a java class with a table (insert, delete, etc.)  go from the java class to the table, so in this case, we could select “Incoming”.

In case of doubt, select “Any” and reduce afterwards afterward your search after inspecting the results.

...

To do it, you can click on the Filters button, where you can select criteria for searching intermediate components.

Image RemovedImage Added

For example, if you select Tables as starting points and depth=4, paths will be found that include procedures and classes. But if you were interested only in paths through classes, you could specify it inclufing Type selector and choosing Class type.

Image Modified

Impacted Components Filter

Info

Besides to specify specifying starting components and navigation constraints, you can also specify a filter for impacted (reached) components.

...


If you do not specify any filter, most probable probably Kiuwan will show to you a huge amount of results. To further concrete your query you can use this dialog.

Image Modified 


Info

This dialog let you compound any filter that will act against the result set.

It works exactly as the Component search filter of Components page. Please visit Components Search Criteria

 

In our example, we are looking for Java classes that are accessing data tables, so we should specify that condition in the filter: Language=Java (or Type=Class).

...

Info

Results section will list all the “impacted” (reached) components, i.e.:

  1. reachable from the starting set of components,
  2. complying with the specified navigation constrains, and
  3. satisfying the specified filters

...

Kiuwan will show the total number of components as well as a list of them.

Image Modified

 

Info

Most important aspect of this listing is that it allows you to get a full detail on the found paths.

You can click on  icon of any component to open a window where you can see the details.

...

For example, the next image shows how org.owasp.webgoat.session.UserDatabase class is accessing accesses three tables  (ROLES, USER_ROLES, and USERS)

Image Modified 

This graphic is quite simple because depth=1, but in case of higher values that graph will be very valuable to your goals.

Example for depth=2 

Image Modified

and depth=3 

Image Modified

 

As you can guess, as we increase the dept value, the number of paths exponentially increases.