1/*! \page basics_page Basic Framework Concepts
2
3  <h3>Basic Concepts</h3>
4  <ul>
5    <li><b>Image Database:</b> The framework stores data in an image database, which can be as simple as a local SQLite file or as complex as a database managed by a relational database management system (RDBMS) on a database server.  The details of storing and retrieving data from the image database are hidden by the framework's TskImgDB interface.</li>
6
7    <li><b>Pipelines and Plug-In Modules:</b> The framework supplies a pipeline infrastructure that modules can be dropped into.  The framework comes with basic modules, but it is expected that other developers will provide additional modules as the framework evolves.  See \ref pipeline_config_page and \ref mod_devpage to learn how to build pipelines and modules.</li>
8
9    <li><b>Blackboard:</b> The framework uses a blackboard to allow modules to communicate. Modules can post results to the blackboard and query the blackboard for previous findings. See \ref mod_bbpage for more details. </li>
10
11    <li><b>Services:</b> The framework provides core services such as logging and file management.  See \ref mod_stuff_services for more details.</li>
12
13    <li><b>Three Phase Analysis Process:</b> The framework has been designed with the idea that there are three major phases in the disk image analysis process:
14    <ul>
15      <li>File Extraction, in which files are identified using file system data, carving, and other types of data recovery.</li>
16      <li>File Analysis, in which each file is analyzed individually.</li>
17      <li>Post-Processing, in which the the results of the individual file analyses are combined with additional analysis of the image.</li>
18    </ul>
19    These phases are illustrated by this diagram: <br />
20    \image html pipelines.png
21
22  </li>
23</ul>
24
25*/
26