cppcheck/htdocs/gsoc2014.php

119 lines
4.3 KiB
PHP
Raw Normal View History

2014-02-08 13:12:12 +01:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="google summer of code 2014 ideas" />
<meta name="keywords" content="Cppcheck, google summer of code" />
<title>google summer of code 2014 ideas</title>
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Orbitron&amp;text=Cppcheck" />
<link rel="stylesheet" type="text/css" href="/site/css/pack.css" />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
</head>
<body>
<div id="header">
<div class="wrap">
<h1><a href="/">Cppcheck</a></h1>
<p>A tool for static C/C++ code analysis</p>
</div> <!-- .wrap -->
</div> <!-- #header -->
<div id="tabs">
<div class="wrap">
<ul>
<li><a href="/">Home</a></li>
<li><a href="http://sourceforge.net/apps/mediawiki/cppcheck/">Wiki</a></li>
<li><a href="http://sourceforge.net/apps/phpbb/cppcheck/">Forum</a></li>
<li><a href="http://sourceforge.net/apps/trac/cppcheck/">Issues</a></li>
<li><a href="/devinfo/" title="Developer Information">Developer Info</a></li>
<li><a href="/demo/">Online Demo</a></li>
<li><a href="http://sourceforge.net/projects/cppcheck/">Project page</a></li>
</ul>
</div> <!-- .wrap -->
</div> <!-- #tabs -->
<div id="content">
<div class="wrap">
<h2>Overview</h2>
<p>
<ol>
<li>Core Cppcheck
<ol>
<li>Add a new checker (C++)</li>
<li>Improved value flow (C++)</li>
</ol></li>
<li>Configurations
<ol>
<li>Write more configurations (XML)</li>
<li>Auto generate configuration (C++ / scripting)
<li>GUI for editing configurations (C++,Qt)</li>
</ol></li>
<li>Distributed computing
<ol>
<li>Distributed computing (C++)</li>
</ol></li>
</ul>
</p>
<h2>1. Core Cppcheck</h2>
<p>
<strong>Project 1.1</strong><br>
<strong>Name:</strong> Add a new checker<br>
<strong>Skills required:</strong> C++<br>
<strong>Description:</strong> There are several tickets in our issue tracker that has ideas for new checkers.
The subtasks will be: implement a new checker, write test cases, test it against various projects.
</p>
<p>
<strong>Project 1.2</strong><br>
<strong>Name:</strong> Improved value flow<br>
<strong>Skills required:</strong> C++<br>
<strong>Description:</strong> The value flow analysis is used by various checkers - therefore improving
this will mean that many checkers get better. It is possible to improve the value flow analysis, for example
after conditions, inside loops, etc.
</p>
<h2>2. Configurations</h2>
<p>
<strong>Project 2.1</strong><br>
<strong>Name:</strong> Write more configurations<br>
<strong>Skills required:</strong> XML<br>
<strong>Description:</strong> More configuration files are needed for various libraries. It
would be most interesting to have more configurations for popular libraries.
</p>
<p>
<strong>Project 2.2</strong><br>
<strong>Name:</strong> Autogenerated configurations<br>
<strong>Skills required:</strong> C++ / scripting<br>
<strong>Description:</strong> Auto generate configuration from headers. To parse the headers,
you can for instance do this yourself (python script/c++/..) or you can modify cppcheck and
use the symboldatabase.
</p>
<p>
<strong>Project 2.3</strong><br>
<strong>Name:</strong> GUI for editing configurations<br>
<strong>Skills required:</strong> C++, Qt<br>
<strong>Description:</strong> A graphical user interface for editing configurations would be nice. This should be
added in the cppcheck-gui program.
</p>
<h2>3. Distributed computing</h2>
<p>
<strong>Project 3.1</strong><br>
<strong>Name:</strong> Distributed computing<br>
<strong>Skills required:</strong> Network, script, C++<br>
<strong>Description:</strong> Make it possible to distribute analysis. A client and server needs to be written. The client will
execute cppcheck to perform analysis.
</p>
</div> <!-- .wrap -->
</div> <!-- #content -->
</body>
</html>