2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2005-02-12 01:26:46 +00:00
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Development and debugging");
|
2003-09-04 07:16:14 +00:00
|
|
|
|
2005-02-12 01:26:46 +00:00
|
|
|
echo "
|
2004-12-01 05:03:53 +00:00
|
|
|
|
2005-07-27 11:59:38 +00:00
|
|
|
<p>
|
2005-02-12 01:26:46 +00:00
|
|
|
<ul>
|
2005-10-05 19:34:54 +00:00
|
|
|
<li> <a href=contact.php>Personnel and contributors</a>
|
|
|
|
<li> <a href=dev_flow.php>Development information flow</a>
|
2005-09-01 17:28:29 +00:00
|
|
|
<li> The <a href=http://bbugs.axpr.net/index.php>BOINCzilla bug database</a>.
|
|
|
|
<li> <a href=email_lists.php>boinc_dev</a>,
|
|
|
|
an email list for BOINC developers.
|
2005-06-11 19:58:57 +00:00
|
|
|
<li> <a href=compile.php>Get and compile BOINC software</a>
|
2005-02-13 02:23:20 +00:00
|
|
|
<li> <a href=coding.php>BOINC coding style</a>
|
2005-02-12 01:26:46 +00:00
|
|
|
</ul>
|
2005-09-02 20:37:26 +00:00
|
|
|
<h2>Getting involved</h2>
|
|
|
|
<p>
|
|
|
|
BOINC is free software, distributed under the Lesser GNU Public License (LGPL).
|
|
|
|
We are in constant need of volunteers to
|
|
|
|
help with software testing and development.
|
|
|
|
If you have one or more of the relevant technical skills
|
|
|
|
(C++ system programming, PHP/MySQL web development,
|
|
|
|
WxWidgets programming, autoconf/automake expertise, etc.)
|
|
|
|
you may be able to help us maintain and enhance BOINC.
|
|
|
|
In any case, you are welcome to browse the source code and give us feedback.
|
|
|
|
You should understand how BOINC works
|
|
|
|
(for both <a href=participate.php>participants</a>
|
|
|
|
and <a href=create_project.php>projects</a>)
|
|
|
|
before getting into the source code.
|
2005-07-27 11:59:38 +00:00
|
|
|
|
2005-09-02 20:37:26 +00:00
|
|
|
<p>
|
|
|
|
To get started, look at the BOINC bug database, fix a bug or two,
|
|
|
|
and send your patches to the appropriate area owner.
|
2005-07-27 11:59:38 +00:00
|
|
|
The following medium-to-large development projects are available:
|
|
|
|
<ul>
|
2005-11-02 23:47:25 +00:00
|
|
|
<li> Replace db_base.py with <a href=http://sqlobject.org/>SQLObject</a>.
|
2005-07-27 11:59:38 +00:00
|
|
|
<li> BOINC Manager:
|
|
|
|
Change the Statistics tab to use a single graph
|
2005-09-01 17:28:29 +00:00
|
|
|
with lines of different colors or styles for different projects.
|
2005-08-09 22:53:50 +00:00
|
|
|
|
2005-07-27 11:59:38 +00:00
|
|
|
<li> BOINC Manager:
|
2005-09-01 17:28:29 +00:00
|
|
|
Show progress bars for file transfers and in-progress results.
|
2005-08-09 22:53:50 +00:00
|
|
|
|
2005-07-27 11:59:38 +00:00
|
|
|
<li> BOINC Manager:
|
2005-08-15 05:08:42 +00:00
|
|
|
Use pie charts for disk usage
|
2005-08-09 22:53:50 +00:00
|
|
|
|
2005-09-01 17:28:29 +00:00
|
|
|
<li> Show when new versions of the core client and/or BOINC Manager
|
|
|
|
are available.
|
|
|
|
Could show in status line of Manager,
|
|
|
|
as a balloon, or in Messages.
|
|
|
|
|
|
|
|
<li> BOINC Manager: sortable columns in Work tab.
|
|
|
|
|
|
|
|
<li> Support local editing of preferences
|
|
|
|
(could be done in the Manager or a separate app).
|
|
|
|
|
|
|
|
<li> Core client: write a log file of result start/ends.
|
|
|
|
(for use by 3rd-party software like BoincView).
|
|
|
|
|
2005-07-27 11:59:38 +00:00
|
|
|
<li> Disk space management: prevent disk space usage from
|
|
|
|
exceeding user preferences,
|
|
|
|
and enforce resource shares,
|
2005-08-11 00:17:00 +00:00
|
|
|
with file deletion according to project policy.
|
2005-08-09 22:53:50 +00:00
|
|
|
|
2005-07-27 11:59:38 +00:00
|
|
|
</ul>
|
|
|
|
Please check with davea at ssl.berkeley.edu
|
|
|
|
before undertaking any of these.
|
|
|
|
<hr>
|
2005-02-12 01:26:46 +00:00
|
|
|
Various implementation notes:
|
2005-09-21 21:39:35 +00:00
|
|
|
<h2>Client</h2>
|
2003-08-19 06:44:58 +00:00
|
|
|
<ul>
|
|
|
|
<li> <a href=client_files.php>File structure</a>
|
|
|
|
<li> <a href=client_fsm.php>FSM structure</a>
|
|
|
|
<li> <a href=client_data.php>Data structures</a>
|
|
|
|
<li> <a href=client_logic.php>Main loop logic</a>
|
2005-05-09 20:20:33 +00:00
|
|
|
<li> <a href=sched.php>Client scheduling policies (new)</a>
|
|
|
|
<li> <a href=client_sched.php>Client scheduling policies (old)</a>
|
2004-01-08 00:27:59 +00:00
|
|
|
<li> <a href=host_measure.php>Host measurements</a>
|
|
|
|
<li> <a href=host_id.php>Host identification</a>
|
2003-08-19 06:44:58 +00:00
|
|
|
<li> <a href=client_app.php>Core client/application interaction (basic)</a>
|
|
|
|
<li> <a href=client_app_graphic.php>Core client/application interaction (graphics)</a>
|
2005-09-21 21:39:35 +00:00
|
|
|
<li> <a href=client_startup.php>Client configuration files</a>
|
2004-12-19 20:35:37 +00:00
|
|
|
<!--
|
2004-08-03 14:02:13 +00:00
|
|
|
<li> <a href=disk_management.php>Disk space management</a>
|
2004-12-19 20:35:37 +00:00
|
|
|
-->
|
2003-08-19 06:44:58 +00:00
|
|
|
</ul>
|
2004-12-09 00:46:07 +00:00
|
|
|
<h2>Server programs</h2>
|
2003-08-19 06:44:58 +00:00
|
|
|
<ul>
|
|
|
|
<li> <a href=database.php>The BOINC database</a>
|
2004-12-09 00:46:07 +00:00
|
|
|
<li> <a href=sched_policy.php>Work distribution policy</a>
|
2004-02-09 05:11:05 +00:00
|
|
|
<li> <a href=backend_state.php>Backend state transitions</a>
|
|
|
|
<li> <a href=backend_logic.php>The logic of backend programs</a>
|
2004-12-02 22:56:49 +00:00
|
|
|
<li> <a href=server_debug.php>Debugging server components</a>
|
2004-02-09 05:11:05 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<h2>Protocols</h2>
|
2003-08-19 06:44:58 +00:00
|
|
|
<ul>
|
2003-10-13 19:23:40 +00:00
|
|
|
<li> <a href=comm.php>Protocol overview</a>
|
2003-08-19 06:44:58 +00:00
|
|
|
<li> <a href=protocol.php>The scheduling server protocol</a>
|
|
|
|
<li> <a href=rpc_policy.php>Scheduling server timing and retry policies</a>
|
|
|
|
<li> <a href=upload.php>Data server protocol</a>
|
|
|
|
<li> <a href=pers_file_xfer.php>Persistent file transfers</a>
|
|
|
|
</ul>
|
2005-08-29 23:06:57 +00:00
|
|
|
<h2>Client extensions</h2>
|
|
|
|
<ul>
|
|
|
|
<li> <a href=gui_rpc.php>GUI RPCs</a>
|
|
|
|
<br> Lets you control or show the status of BOINC clients,
|
|
|
|
local or remote.
|
|
|
|
</ul>
|
|
|
|
<h2>Web-based extensions (statistics and account management)</h2>
|
|
|
|
<ul>
|
2005-11-10 06:06:11 +00:00
|
|
|
<li> <a href=stats.php>Credit statistics data</a>
|
2005-08-29 23:06:57 +00:00
|
|
|
<li> <a href=cpid.php>Cross-project identification</a>
|
|
|
|
<li> <a href=web_rpc.php>Web RPCs (possibly useful for statistics sites)</a>
|
|
|
|
<li> <a href=acct_mgt.php>Account management systems</a>
|
|
|
|
</ul>
|
2004-02-09 05:11:05 +00:00
|
|
|
<h2>Miscellaneous</h2>
|
2003-08-19 06:44:58 +00:00
|
|
|
<ul>
|
2003-09-04 07:16:14 +00:00
|
|
|
<li> <a href=python.php>Python framework</a>
|
2003-08-19 06:44:58 +00:00
|
|
|
<li> <a href=prefs_impl.php>Preferences</a>
|
2004-05-24 04:03:34 +00:00
|
|
|
<li> <a href=trickle_impl.php>Trickle messages</a>
|
2004-12-10 19:17:32 +00:00
|
|
|
<li> <a href=version_diff.txt>How to see what has changed
|
|
|
|
between two versions of an executable</a>.
|
2005-05-10 17:04:13 +00:00
|
|
|
<li> <a href=spec.txt>Spec info for RPMs</a>
|
2003-08-19 06:44:58 +00:00
|
|
|
</ul>
|
2003-09-04 07:16:14 +00:00
|
|
|
|
2003-11-04 22:22:06 +00:00
|
|
|
";
|
2005-02-12 01:26:46 +00:00
|
|
|
page_tail();
|
2003-08-19 06:44:58 +00:00
|
|
|
?>
|
2003-09-04 07:16:14 +00:00
|
|
|
|