The static-code-analysis tag has no wiki summary.
4
votes
3answers
78 views
Is there a tool which analyses which functions call which functions for C#?
For a large porting from VB6 to C# job I wrote a tool which uses a murder of regular expressions to analyse a VB6 code base and extract the dependencies of all the functions in all the forms, bas ...
0
votes
1answer
36 views
SONAR undocumented public API skewed by unit tests
The SONAR metrics include a section for evaluating the documentation quality, having an item Public undocumented API. This is very high in our project because it reports each and every unit test. ...
0
votes
0answers
29 views
What classes and methods are not in a python test suite, statically?
Say that file.py has class C with methods M1 M2 ...,
but test/*.py never calls C at all, or never calls M2.
Is there a static program analysis tool
that detects this, and writes a list of
apparently ...
1
vote
0answers
20 views
Identify an assembly's target runtime using NDepend
Can someone help me to write a CQL query for NDepend 3.8 to get all assemblies that are built against a specific Dot .NET runtime (i.e. 4.0.x vs 2.0.x)
Thanks!
2
votes
0answers
105 views
implement custom code analysis visual studio extension
I Just want to ask if it's possible to turn a Custom Code Analysis into a .VSIX extension? If yes, what method should I be taking?
I am planning to create a Visual Studio extension of my custom code ...
1
vote
4answers
66 views
Java/Eclipse How to get usages of type methods in a project?
In Eclipse, I can Ctrl+Shift+G (or r-click -> References-> Workspace) to get all references to a type (or field etc) in the workspace.
What I need is a way to get a list of all places where any ...
0
votes
1answer
86 views
Sonar Security in a Multiple Project Analysis
I have a single Sonar instance analyzing codebases of different projects owned by different customers. I need to ensure non of the project teams can manipulate the sonar/machine security to access ...
2
votes
1answer
167 views
Javascript code analyzer open source code or plugin
I have written an API and defined a method which a user needs to call on a certain condition. Suppose a user is creating a video app then he should implement mute function in his code (which is ...
-1
votes
2answers
59 views
How to get report showing Java classes bigger than 500 lines? (And publish on Jenkins)
I have got legacy project with a lot of too big classes.
I need to present that as report to manager to start cleaning-up and refactoring.
I already have Jenkins job for this project with PMD maven ...
1
vote
1answer
134 views
Can Sonar pull code from my git repository and analyze periodically?
I have my source repository hosted in GitHub. I now want my Sonar instance (deployed on Amazon EC2) to pull from the git repository periodically to analyze the codebase. The project is a simple ...
0
votes
1answer
33 views
Static code analysis tool for jython
I'm searching for a static code analaysis tool for jython, with usefull documentation.
1
vote
1answer
61 views
CodeNarc's static code analysis is not able to find proper class dependencies
When using CodeNarc for static code analysis on Groovy & Grails code, it is not able to figure out class hierarchies. There is a private method in one service class say BaseService. Another ...
3
votes
1answer
88 views
static code analysis: method argument is the same constant on all invocations
Is there a freely available static code analysis tool for Java, which can detect that I use the same constant value as method argument on all calls to a method, so I can remove the argument and use a ...
2
votes
0answers
66 views
which one is the better static program analysis tool for objective C [closed]
I need to check my code has follwed a standard coding guidlines like naming conventaion or unused code etc for objective C.
If you guys used any such tool then how effcient they are and how was your ...
4
votes
1answer
107 views
Fast check if an object will be successfully instantiated in PHP?
How can I check if an object will be successfully instantiated with the given argument, without actually creating the instance?
Actually I'm only checking (didn't tested this code, but should work ...
1
vote
1answer
413 views
OCLint usage example
I was looking for an example on how to config OCLint or how to get it running. I made a search but nothing. Here at Stack Overflow there are just 3 posts related, just naming the library and on google ...
4
votes
3answers
121 views
Which tool can list writing access to a specific variable in C?
Unfortunately I'm not even sure how this sort of static analysis is called. It's not really control flow analysis because I'm not looking for function calls and I don't really need data flow analysis ...
2
votes
2answers
103 views
Finding code only used in special classes via NDepend
I am trying to get rid of dead code in our codebase using NDepend. Since we are using dependency injection I want to find interfaces (and the implementations) only used in classes that deriving from ...
2
votes
4answers
210 views
C syntax parser
Are there any libs out there that can parse C syntax?
For example I would like to write my own code/scripts that will analyze c files given the c syntax. Number of "if" statements per function/file, ...
1
vote
1answer
242 views
static and dynamic code analysis
I found several questions about this topic, and all of them with lot of references, but still I don't have a clear idea about that, because most of the references speak about concrete tools and not ...
1
vote
1answer
112 views
Any java Static Code analyzer that can find memory leak java code?
Is there any Java Static Code Analyzer that can detect code that could possibly cause a memory leak ? I understand that JVM profilers are used for this purpose, but that does not ...
1
vote
1answer
131 views
splint how to perform taint analysis
How to perform Taint Analysis using Splint?
I have installed Splint on my Ubuntu 12.04. Created a small test case as below:
#include<stdio.h>
#include<string.h>
int main(int argc, char ...
0
votes
1answer
266 views
Run JSlint from console with custom options?
In a previous question Run JSLint on a .js file from debugging console in chrome or firefox I learned how to run Jslint from console or from node.
Is there a way to run JSLint (from the javascript ...
0
votes
2answers
194 views
Any popular c++ code static check tools recommended? [closed]
There're serveral new c++ guys working in our team, so too much ugly code everyday!
I hate those functions using readonly string, STL containers as parameters in, but without const reference!!! I'm ...
3
votes
1answer
132 views
Static checker can't assess deterministic behaviour under certain conditions?
I've managed to boil this down to the following test case but I'm wondering whether this is a limitation of the static checker in C# code contracts or something I'm missing. When I attempt to prove a ...
4
votes
2answers
486 views
Why does Cppcheck not find this obvious array out-of-bounds error?
I installed the Cppcheck tool for static code analysis of my C++ project and got the feeling that it performs poorly. For example, can anyone tell me why Cppcheck is unable to find an array ...
1
vote
0answers
116 views
Get and Set Property FxCop Rule
So I'm writing a custom Fxcop rule to insure that whenever a Get or a Set method are utilized, there is also a GetProperty or a SetProperty in it. How would I be able to test this.
Example:
public ...
0
votes
0answers
96 views
FxCop Rules using XAML Toolkit
So I have been trying to write a custom rule for FxCop to scan through the xaml of the program and determine if a particular control is being utilized. However, dispite my extensive attempts to learn ...
0
votes
1answer
89 views
Initializing Hibernate takes lot of time in Sonar analysis
I am using Sonar for static code analysis in my project. The issue is Sonar is taking lot of time at the point Initializing Hibernate. Does anyone has any idea about how to speed up sonar analysis?
2
votes
1answer
281 views
Autogenerated sequence diagrams
In Ndepend we can get very good dependency diagrams showing which methods are called.
What we have not been able to do is to see in which order the methods are called. For example a method A calls ...
1
vote
1answer
484 views
Skip test for sonar analysis
What happens if I run following command :
mvn clean install sonar:sonar -Dmaven.test.skip=true
I have set Up sonar locally and its running on port 9000.
What would be impact of skipping test on ...
1
vote
1answer
69 views
View External Dependecy graph in NDepend
NDepend has a nice feature that draws an internal dependency graph. That is which methods within a dll call each other.
We would like a diagram like this that showed how methods were called across ...
0
votes
1answer
161 views
Static code analysis module in Perl
Is there any static code analysis module in Perl except B::Lint and Perl::Critic? How effective is Module::Checkstyle?
0
votes
0answers
82 views
B::Lint output format
How to convert the static code analysis report of B:Lint in Lint xml format. Is there something similar in B::Lint like what TAP::Harness::Junit outputs by default in junit_output.xml?
Here I want to ...
2
votes
1answer
151 views
Sonar violation to show Java files without license/copyright information?
Is there a Sonar plugin available, which is able to identify Java files without a license/copyright header?
2
votes
4answers
275 views
Using eclipse core/JDT to programmatically analyze Java source code
I am trying to write a program to analyze Java source code, for example, checking all the callers to some certain method. Since eclipse IDE provides this kind of feature, which is powerful and ...
0
votes
1answer
220 views
B::Lint and Perl::Critic for static code analysis
I need to implement lint and Perl::Critic for static code analysis in Perl. I have found B::Lint module for lint in Perl.
Is it really required to use both the modules for static code analysis?
If ...
1
vote
1answer
207 views
Is there any shell script and/or Makefile static code analyser?
Or how can I ensure reliability of my Makefiles/scripts?
Update: by shell scripts I mean sh dialect (bash, zsh, whatever), by Makefiles I mean GNU make. I know, they are different beasts, but they ...
0
votes
1answer
2k views
Sonar, Sonar-runner, Gallio and NCover … Gallio doesn't run :(
is there anyone out there who actually managed to get sonar-runner working with Gallio and Ncover? I've tried every combination in the book and during the run it keeps telling me
"INFO ...
0
votes
2answers
245 views
How can we correct or suppress CA0503 and CA0505 messages from Code Analysis in Visual Studio 11 Beta
When I run Code Analysis on a fairly simple project, I immediately get "CA0503 Issue Running Code Analysis" and "CA0505 Issue Running Code Analysis" violations. The CA0503 documentation page says, ...
0
votes
1answer
384 views
How should sonar be configured to work with StyleCop 4.7
I am attempting to get sonar to work with StyleCop 4.7 and am having a few issues.
1) When I set the location of StyleCop in the Sonar settings, Sonar fails to run and therefor fails my CI builds. ...
3
votes
1answer
308 views
Static code analysis in Python?
Which helpful static code analysis can you recommend for Python. I believe they are useful for refactoring code.
I know
snakefood for module dependencies
pycallgraph for dynamic call graphs
pylint ...
0
votes
1answer
215 views
PMD xpath tutorials [closed]
I'm about to write custom rules for my Java EE codebase,
Can anyone help where to begin for writing xpath rules?
Is there any complete tutorial available for this?
2
votes
3answers
75 views
can access to standard java libraries be blocked by prohibiting import statements and java.* strings?
suppose I want to allow people run simple console java programs on my server without ability to access the file system, the network or other IO except via my own highly restricted API. But, I don't ...
-4
votes
2answers
1k views
How to open a PHP project in Sonar code review tool?
I had been reading several materials on performing code review on PHP code using Sonar. After a small war I installed the php plugin for sonar. But I dont clearly understand how to open or use a PHP ...
5
votes
1answer
437 views
Configuration of Code Clones in Visual Studio 11
I really like the new built in feature of VS11 to find 'Code Clones' but there does not seem to be any way to configure it.
An example would be only show me exact clones of 5 lines or more.
Right ...
0
votes
3answers
125 views
False positive when statically analyzing code in XCode 3.2
I just ran into an issue with the XCode static code analyzer of XCode 3.2. It shows me a potential leak which I find is not justified. I just want to check with other people and make sure it really is ...
0
votes
2answers
195 views
VS11 Code Analysis Hints?
I got a lot of false positives when running the code analysis for C++ in VS11. For example i have a few dozen switch and it says my pointer may be null. All the cases in the switch (at least in one ...
0
votes
3answers
262 views
Exclude ReSharper error for “Resource not found” inside Views
I have an MVC2 application and use ReSharper 6.1 - I've heavily customised the Code Inspection Severity and edited what it decides to show as errors, warnings, suggestions and hints, but I cannot seem ...
3
votes
3answers
532 views
Code Metrics Analysis for Unmanaged C++ Code
Does anyone know of a free tool, similar to what is built into Visual Studio 2010 for managed code, that can do analysis of unmanaged, MFC C++ code and give metrics (lines of code, dependency or ...
