analyzer

Building iPhone Code using xcodebuild and running LLVM/Clang Static Analyzer

I followed the steps here but i'm unable to run static analyzer on my project: Finding memory leaks with the LLVM/Clang Static Analyzer When i try to run xcodebuild on my project (1. Open Terminal, 2. Go to Project Directly, 3. > xcodebuild), i get this error: === BUILDING NATIVE TARGET XProject OF PROJECT XProject WITH THE DEFAULT...

A lexical analyzer for SPDH

I need some help to write a lexical analyzer for the protocole spdh. Please can you give me some ideas: from where I have to begin to write the grammar of such protocol?! Spdh defines the structure of request and response messages exchanged between an electronic payment terminal and the server of the bank. Thank you ...

Is there way to prevent our application from being analysed or injected? (c#)

There are loads of profilers and static code analyzers out there for C# assemblies. Just wonder if there are any methods to prevent being analyzed, because it does make me feel a bit nervous when being stripped. I have searched all over the Internet and stackoverflow. There seems none for my wonder. What I've got are only some even ...

Lucene BooleanQuery

How to use booleanQuery with StandardAnalyzer in Lucene Search? ...

best approach to analyze text in PHP?

Hi, I need to analyze a users' post and categorize it. For example: I have to categorize every post as a "buy" post or a "sell" post based on the text - "I'm looking to sell my house" is categorized as "sell". The problem is that often its not so simple - "I'm looking to get rid of my old house" also needs to be categorized as "sell". "...

What tool can I use to generate a PHP class usage report for my application?

I have a fairly large object-oriented php 5 project, and as part of a change impact analysis, I'd like to compile a report on the usage of each existing class throughout the project. It would help me immensely if I could find an existing tool that will analyze all the files in my project and generate some sort of report that lists, for...

What software tools to use to debug "paused" response times on IIS6?

Adrian Tools was excellent for Sun, but what do you use to troubleshoot a Microsoft 2003 Web server running IIS6 extreme slow downs? It is a 64 bit system with 8 gig of RAM, and an 8 hard drive Dell PERC raid. CPU never usually goes above 25 percent, having two physical CPUs with two cores each. It's not a consistent slowness; it is v...

The complete list of programming Language Analyzers?

For Delphi developers, a company called Peganza created two useful sourcecode analysers: Pascal Analyzer and Pascal Browser. I don't use them that often but when a project is close to it's deadline, they are useful to find some of the last minor issues. There are probably a lot more code analyzers for Pascal. And for C++, C#, Java, VB.N...

open source data mining/text analysis tools in python

I have a database full of reviews of various products. My task is to perform various calculation and "create" another "database/xml-export" with aggregated data. I am thinking of writing command line programs in python to do that. But I know someone have done this before and I know that there is some open source python solution or simila...

XCode: Static Analyzer doesn't work if C/C++-Code used in project

Hi, with XCode 3.2.1 Apple delivered a built-in Clang static analyzer. I am working on an iPhone project which uses some C-Code (one .h and .c file). When running Build and Analyze, Clang refuses work. The build results window just says Build Succeeded. Any ideas how to get it running with C/C++-Code? Regards, Norbert ...

Querying lucene tokens without indexing

I am using Lucene (or more specifically Compass), to log threads in a forum and I need a way to extract the keywords behind the discussion. That said, I don't want to index every entry someone makes, but rather I'd have a list of 'keywords' that are relevant to a certain context and if the entry matches a keyword and is above a threshold...

What lucene analyzer can be used to handle Japanese text?

Good day, Which lucene analyzer can be used to handle Japanese text properly? It should be able to handle Kanji, Hiragana, Katakana, Romaji, and any of their combination. Thanks, Franz ...

Built in Analyzer in Xcode 3.1.4

Hi all, I wonder if the built in Analyzer in Xcode 3.1.4 makes it redundant to use LLVM/Clang Static Analyzer separately? Please refer to the original article here: Finding memory leaks with the LLVM/Clang Static Analyzer Thanks. ...

What analyzer should I use for a URL in lucene.net?

I'm having problems getting a simple URL to tokenize properly so that you can search it as expected. I'm indexing "http://news.bbc.co.uk/sport1/hi/football/internationals/8196322.stm" with the StandardAnalyzer and it is tokenizing the string as the following (debug output): (http,0,4,type=<ALPHANUM>) (news.bbc.co.uk,7,21,type=<HOST>) (...

MySql query analyzer - free solutions

Hi, Is there a good (or not) Query Analyzer for MySQL (that's either free, or has a trial), than can analyze a query and make suggestions for indexes, like the "Display estimated execution plan" in Microsoft SQL Server management studio? Thank you, Frank ...

SQL Server analyzer tool

in my previous workplace we used oracle enterprise manager for viewing statistics and bottlenecks of queries that are running against oracle10g. In my new workplace we use Microsoft SQL Server (2005). Is there any tool like enterprise manager of oracle in SQL Server - I need to see all the jdbc SQL queries i make and how long they are ta...

Any good(free/Open Source) sql query performance Analyzer tool..

I am using sql server 2005 and i want to measure some query performance using an analyzer tool.... Any good tool (free/Open Source) that you can refer..... ...

Dependency map more Java classes and methods

I have a Java project that I've been working on for a while. The design started out pretty good but slowly degraded as changes were made. I'm looking for some sort of tool that will analyze the project. It'd be really nice to have a map of the dependencies of different classes/methods. I feel like certain methods are only in there to...

Analyzer marks a potential leak for this construct

With the following code the analyzer marks the setMyDict selector call as a potential leak and in dealloc it states "Incorrect decrement of the reference count is not owned at this point by the caller" - (id)init { if (self = [super init]) { [self setMyDict:[[NSMutableDictionary alloc] init]]; } return self; } - (void)deall...

How to analyze Heap Dumps

Hi Guys, I am successful in generating Heap Dumps of my application machine but I do not know how to analyze it. Can someone tell me how to? Thanks and Regards, Deepti ...