Proposals:Updating Nrrd library 2009

From KitwarePublic
Revision as of 21:03, 30 December 2009 by MichelKitware (talk | contribs) (→‎Table)
Jump to navigationJump to search

Nrrd Library

This page describes the procedure for synchronizing the NrrdIO parts of Teem, with the one in Insight/Utilities/NrrdIO

Note that patches may have to be moved in both directions.

Background

  • Nrrd started as one of the libraries in Teem <http://teem.sf.net>
  • NrrdIO is a subset of Teem containing only the IO functionalities (basically, parts of the air, biff, and nrrd libraries).
  • The only part of Teem that's in ITK is in NrrdIO. Also, while Teem has a weakened LGPL license, NrrdIO is licensed identically to ITK.
  • Creating NrrdIO from Teem is done by a GNUMakefile (NrrdIO/pre-GNUmakefile) and a perl script (NrrdIO/unteem.pl)
  • The back-propagation that should happen is from ITK's NrrdIO back to Teem, because the idea is that NrrdIO should be periodically regenerated from Teem, and ITK's NrrdIO should be an up-to-date copy of the NrrdIO automatically regenerated from Teem

Checking out Teem and NrrdIO

The way that Sourceforge names things makes this a little confusing. The sourceforge "project name" Teem includes multiple directories, or multiple separate SVN repositories. One directory, called Teem, this is the main source tree, where all the NrrdIO sources are copied from. There is also a NrrdIO directory.

Use the following SVN command to check out all of Teem:

  svn co http://teem.svn.sourceforge.net/svnroot/teem/teem/trunk teem

and the following to checkout NrrdIO:

  svn co http://teem.svn.sourceforge.net/svnroot/teem/NrrdIO/trunk NrrdIO

The contents of the NrrdIO directory are created automatically from the Teem directory. This is described in the comments in pre-GNUmakefile, reproduced here. To make a NrrdIO for ITK, which includes a header for name-mangling all the symbols, the steps are ("make" needs to be a GNU make) as follows. This assumes csh; environment variable commands will be different for bash.

  • rm -f itk_NrrdIO_mangle.h
  • touch itk_NrrdIO_mangle.h
  • make -f pre-GNUmakefile clean
  • setenv ITK_NRRDIO
  • make -f pre-GNUmakefile
  • unsetenv ITK_NRRDIO
  • make -f sample-GNUmakefile
  • perl mangle.pl itk >! itk_NrrdIO_mangle.h
  • make -f sample-GNUmakefile clean

The "pre-GNUmakefile" makefile copies files from a Teem checkout and modifies them slightly (through the action of unteem.py). Then "sample-GNUmakefile" builds a NrrdIO library (and a small test executable), and mangle.pl looks at all the symbols in the library in order to generate the name-mangling header file required for ITK. If we weren't making NrrdIO for ITK, the name mangling wouldn't be required, and the process would just be:

  • make -f pre-GNUmakefile clean
  • make -f pre-GNUmakefile
  • make -f sample-GNUmakefile
  • make -f sample-GNUmakefile clean

where we run make with "sample-GNUmakefile" just to make sure that everything compiles ok.

NrrdIO / Teem Dashboard

Update Procedure

Perform the following two tasks:

From ITK to NrrdIO

For all the changes made to

             Insight/Utilities/NrrdIO

after the last Nrrd batch commit (from G Kindlmann):

  • understand what the change was
  • apply the same change (or something equivalent) to the corresponding file in Teem
  • regenerate NrrdIO from Teem and update sourceforge's NrrdIO

For the .c files this should be easy; these are just copied directly from a Teem checkout, and then the headers are mangled a bit.

For NrrdIO.h; this is actually a concatenation of air/air.h, biff/biff.h, nrrd/nrrdDefines.h, nrrd/nrrdEnums.h, nrrd/nrrdMacros.h, and nrrd/nrrd.h (these are defined in the NEED_PUB_HDRS variable of NrrdIO/pre-GNUmakefile)

This is probably not a one-day project.

From Nrrd to ITK

Gradually or all at once, depending on our bravery, we copy sourceforge's NrrdIO to

           Insight/Utilities/NrrdIO 

and see what breaks. Problems are likely related to updates to Teem itself (including the components of NrrdIO) since 2005, but might also be related to errors in how the updates to ITK's NrrdIO were back-propagated to Teem.

Progress

Table

The table below lists all the files in NrrdIO which are generated from a Teem checkout via NrrdIO/pre-GNUmakefile; these are marked with "*", and the originating directory in Teem is also indicated (the air, biff, and nrrd directories inside teem/src). Changes in these files in ITK's NrrdIO since GLK's last commits in 2005 should be back-propagated to the corresponding files in Teem, so that when NrrdIO is next regenerated from Teem, none of the improvements to ITK's NrrdIO are lost. Handling updates to these files is the hard/interesting part of this project.

The files not marked with a "*" are not generated from Teem via NrrdIO/pre-GNUmakefile; they exist only within NrrdIO. GLK doesn't see why there would have been any changes to these in files in ITK's NrrdIO, because it wouldn't effect how ITK uses Nrrd, but if there are changes they should also be reviewed and possibly back-propagated to Sourceforge's NrrdIO.

File Check ITK for Bug Fix Move from NrrdIO to ITK
000-README.txt
* air/754.c Change of ITK rev 1.8 present in NrrrdIO (l. 132); NrrdIO version updated (l. 358: mant0 >> 19). Keep NrrdIO version.
* nrrd/accessors.c ITK version 4 years old; NrrdIO version updated (static functions). Keep NrrdIO version.
* air/array.c ITK version 4 years old; NrrdIO version updated (AIR_CALLOC, check on a->data, ...). Keep NrrdIO version.
* nrrd/arraysNrrd.c ITK version 4 years old; NrrdIO version updated (AIR_CALLOC, check on a->data, ...). Keep NrrdIO version.
* nrrd/axis.c Casts from size_t to unsigned int, as in rev 1.13, no longer needed: everything is size_t now. Keep NrrdIO version.
* biff/biffbiff.c Casts from size_t to int, as in revs 1.8, 1.9, 1.10, no longer needed. Code, e.g biffAddErr() , superceded. Keep NrrdIO version.
* biff/biffmsg.c Does not exist in ITK version. Keep NrrdIO version.
CMakeLists.txt
* nrrd/comment.c ITK version 4 years old; not much difference. Keep NrrdIO version.
* nrrd/defaultsNrrd.c ITK version 4 years old; not much difference. Keep NrrdIO version.
* air/dio.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/encodingAscii.c Casts from size_t to unsigned int, as in rev 1.6, no longer needed. Code, e.g sprintf()/biffAdd(), superceded. Keep NrrdIO version.
* nrrd/encodingBzip2.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/encoding.c ITK version 4 years old; NrrdIO version updated(static consts, biffAddf). Keep NrrdIO version.
* nrrd/encodingGzip.c Casts from size_t to unsigned int, as in rev 1.8, no longer needed. Code, e.g. _nrrdGzRead(),superceded. Keep NrrdIO version.
* nrrd/encodingHex.c Casts as in rev 1.8 in ITK now handled by AIR_CAST() in NrrdIO, + other NrrdIO version updates. Keep NrrdIO version.
* nrrd/encodingRaw.c ITK version 4 years old; NrrdIO version updated (temporary bug in gcc 4.2). Keep NrrdIO version (for now).
* air/endianAir.c ITK version 4 years old; NrrdIO version updated (const correctness). Keep NrrdIO version.
* nrrd/endianNrrd.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* air/enum.c ITK version 4 years old; NrrdIO version updated (const correctness). Keep NrrdIO version.
* nrrd/enumsNrrd.c ITK version 4 years old; NrrdIO version updated (const correctness). Keep NrrdIO version.
* nrrd/format.c ITK version 4 years old; NrrdIO version updated (const correctness, biffAddf). Keep NrrdIO version.
* nrrd/formatEPS.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/formatNRRD.c ITK version 4 years old; NrrdIO version updated (const correctness, biffAddf). Keep NrrdIO version.
* nrrd/formatPNG.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/formatPNM.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/formatText.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/formatVTK.c ITK version 4 years old; no difference except copyright. Keep NrrdIO version.
* nrrd/gzio.c Changes in ITK also found in NrrdIO, + latter version updated (const correctness, biffAddf). Keep NrrdIO version.
* nrrd/keyvalue.c ITK version 4 years old; + latter version updated (parameters added _nrrdWriteEscaped(), _nrrdKeyValueWrite()). Keep NrrdIO version.
mangle.pl ITK version 4 years old; no difference. Keep NrrdIO version.
* nrrd/methodsNrrd.c Most changes in ITK last 4 years superceded by NrrdIO version (e.g. biffAddf() ). Rollback in rev 1.10 mysterious. Keep NrrdIO version (for now).
* air/miscAir.c ITK version 4 years old; minor changes (float to double, ...) in NrrdIO version. Keep NrrdIO version.
* air/mop.c ITK version 4 years old; minor change (airMopAdd now returns int) in NrrdIO version. Keep NrrdIO version.
* air,biff,nrrd/NrrdIO.h Latest ITK changes, plus recent changes (#ifdef __APPLE__ l 696) seem to appear in NrrdIO version. Keep NrrdIO version. Use NrrdIO version, and modify it to account for #include "itk_NrrdIO_mangle.h" and TEEM_API as in ITK.
NrrdIO_Srcs.txt
NrrIOLIst.txt
* air/parseAir.c
* nrrd/parseNrrd.c
preamble.c
pre-GNUmakefile
* air/privateAir.h
* nrrd/privateNrrd.h
qnanhibit.c
* nrrd/read.c
* nrrd/reorder.c
sample-GNUmakefile
sampleIO.c
* air/sane.c
* nrrd/simple.c
* air/string.c
* nrrd/subset.c
* include/teem32bit.h
* include/teemDio.h
* include/teemEndian.h
* include/teemPng.h
* include/teemQnanhibit.h
unteem.pl
* nrrd/write.c