Tasks

From wiki.zmanda.com
Revision as of 00:03, 1 July 2008 by Dustin (talk | contribs) (two tasks done!! by me, admittedly.)
Jump to navigation Jump to search

Stuff that needs doing. Tasks with no "owner" are open. To "claim" a task, edit this page and add your name as "owner", and email your thoughts to the amanda-hackers list. Other hackers will be happy to help. If you have other tasks, please add them here, following the pattern below.

Perlification

There is no shortage of stuff to rewrite in Perl. This is just a sampling of the "low-hanging fruit".


Difficulty: medium
Skills: perl
Owner:
a - t

Update amtoc

amtoc is already in Perl, but it parses logfiles directly. Update it to be more readable, to use Amanda::DB::Catalog to read the logfile, and to produce correct output. It will need new unit tests.


Difficulty: medium
Skills: perl
Owner:
a - t

Rewrite amlabel

amlabel is fairly simple: use the changer to load the correct tape, check for an existing label, and write a new label. It will need new unit tests.


Difficulty: low
Skills: perl
Owner:
a - t

Rewrite amtape

amtape is basically a user-friendly interface to the tape changer, and should be easy to rewrite in Perl. It will need new unit tests.


Difficulty: med
Skills: perl, swig
Owner:
a - t

Write Amanda-Holding

The holding module (in server-src/holding.[ch]) needs to be interfaced to Perl, after which amcleanupdisk can be rewritten in Perl. The new module should come complete with POD and unit tests.

Build Process


Difficulty: high
Skills: autotools, libtool, perl linking, portability
Owner:
a - t

More portable Perl extension building

The current build process uses the -I flags from perl to find perl.h, but then uses Libtool to do the final linking. This seems to work on most platforms, but there may be a better way. The problem with using MakeMaker, Module::Install or Module::Build is that they assume that the compiler which built perl is still available. This is not the case on platforms like Solaris. A "hybrid" solution -- which tests the native-perl method, and falls back to the current Libtool method -- may be best.


Difficulty: high
Skills: autotools, libtool, perl linking
Owner:
a - t

Simplify Perl Automake rules

The Makefile.am stanza to build a perl extension from a SWIG input file is too long. Ideally, this could be expressed in a few lines giving only the source file and binary dependencies of the extension.

Translation

Amanda is (mostly) internationalized, and ready to have translations plugged in. Add a task here for each new locale.


Difficulty: medium
Skills: perl, gettext
Owner: Dustin
a - t

I18n for Perl

To his shame, Dustin has been furiously writing un-internationalized Perl. This means that, at the moment, Perl applications won't respect any translations. Clearly, that should change!


Difficulty: medium
Skills: gettext, German
Owner: Stefan
a - t

German Translation

German is as good a first translation as any, and will work the kinks out of the translation process, paving the way for other locales.

Miscellaneous