#include "bruker2dicom.h"
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/operations.hpp>
+#include "brukerexception.h"
#ifndef PATH_MAX // If not defined yet : do it
#define PATH_MAX 2048
bool res=CreateDirectory(strDirNameOut);
if (!res) {
std::cout << "[" << OutputDirName << "] Directory creation failure " << std::endl;
- exit (0);
+ //exit (0);
+ throw ( BrukerHopelessException ("Output directory creation failure "));
}
std::string strDirNamein(InputDirName);
if (!canOpen)
{
std::cout << "Hopeless! no 'subject' found" << std::endl;
- exit(0); /// \TODO throw an exception !
+ throw ( BrukerHopelessException ("Hopeless! no 'subject' found in root input directory "));
+ //exit(0); /// \TODO throw an exception !
}
else
{
}
//br_subject.PrintSelf();
- // get info for 'Study Description'
-
+ // get info for 'Study Description'
BrukerFieldData b_name=br_subject.GetFieldData("SUBJECT_name_string");
std::string subject_name = b_name.GetStringValue()[0];
if (!res) {
std::cout << "[" << currentOutputDirName << "] Directory creation failure " << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Level 1 output directory creation failure "));
+ // exit (0);
}
GDCM_NAME_SPACE::DirList dirList(level1Directory, false, true); // DON'T get recursively the list of files
GDCM_NAME_SPACE::DirListType fileNames;
if (!canOpen)
{
std::cout << "Hopeless! neither 'method' nor 'imnd' found" << std::endl;
- exit(0); /// \TODO throw an exception !
+ throw ( BrukerHopelessException ("Hopeless! neither 'method' nor 'imnd' found "));
+ //exit(0); /// \TODO throw an exception !
}
}
if (verbose)
if (!res) {
std::cout << "[" << currentOutputDirName << "] Directory creation failure " << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Hopeless! Level2 output directory creation failure"));
+ //exit (0);
}
GDCM_NAME_SPACE::DirList dirList(level2Directory, false, true); // DON'T get recursively the list of files
if (!res)
{
std::cout << "[" << currentOutputDirName << "] Directory creation failure " << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Hopeless! Level3 output directory creation failure"));
+ //exit (0);
}
GDCM_NAME_SPACE::DirList dirList(level3Directory, false, true); // DON'T get recursively the list of files
sprintf(char_d3proc,"%s%c%s", level3Directory.c_str(), GDCM_NAME_SPACE::GDCM_FILESEPARATOR,"d3proc" );
if (verbose)
- std::cout << "try d3proc: --- => [" << char_d3proc << "]" << std::endl;
+ std::cout << "d3proc: --- => [" << char_d3proc << "]" << std::endl;
std::string str_d3proc(char_d3proc);
canOpen = br_d3proc.LoadFile(str_d3proc);
if (!canOpen)
{
std::cout << "Hopeless! no 'd3proc' found" << std::endl;
- exit(0); /// \TODO throw an exception !
+ throw ( BrukerHopelessException ("Hopeless! no 'd3proc' found"));
+ //exit(0); /// \TODO throw an exception !
}
canOpen = br_d3proc.FillMap();
if (!canOpen)
{
std::cout << "Hopeless! FillMap failed on 'd3proc'" << std::endl;
- exit(0); /// \TODO throw an exception !
+ throw ( BrukerHopelessException ("Hopeless! FillMap failed on 'd3proc'"));
+ //exit(0); /// \TODO throw an exception !
}
//-------------- end try d3proc;
// GDCM_NAME_SPACE::GDCM_FILESEPARATOR +
// "d3proc";
if (verbose)
- std::cout << "try reco --- => [" << char_reco << "]" << std::endl;
+ std::cout << "reco --- => [" << char_reco << "]" << std::endl;
std::string str_reco(char_reco);
canOpen = br_reco.LoadFile(str_reco);
canOpen = br_reco.LoadFile(str_reco);
if (!canOpen)
{
- std::cout << "Hopeless! cannot find 'reco' in [" << str_reco << "]" << std::endl;
- exit(0); /// \TODO throw an exception !
+ std::cout << "Hopeless! cannot find 'reco' in [" << str_reco << "]" << std::endl;
+ throw ( BrukerHopelessException ("Hopeless! cannot find 'reco'"));
+ //exit(0); /// \TODO throw an exception !
}
}
if (!canOpen)
{
std::cout << "Hopeless! FillMap failed on [" << str_reco << "]" << std::endl;
- exit(0); /// \TODO throw an exception !
+ throw ( BrukerHopelessException ("Hopeless!FillMap failed on 'reco'"));
+ //exit(0); /// \TODO throw an exception !
}
//std::cout << "------------------------------------------------------------------------------------------------" << std::cout;
// br_reco.PrintSelf();
BrukerFieldData bX = br_d3proc.GetFieldData("IM_SIX");
int NX = bX.GetIntValue()[0];
- std::cout << "IM_SIX " << NX << std::endl;
+ if (verbose)
+ std::cout << "IM_SIX " << NX << std::endl;
BrukerFieldData bY=br_d3proc.GetFieldData("IM_SIY");
int NY = bY.GetIntValue()[0];
- std::cout << "IM_SIY " << NY << std::endl;
+ if (verbose)
+ std::cout << "IM_SIY " << NY << std::endl;
/// \todo : check if there are actually 3 dimensions or only 2
BrukerFieldData bZ= br_d3proc.GetFieldData("IM_SIZ");
int nbFrames = bZ.GetIntValue()[0];
- std::cout << "IM_SIZ " << nbFrames << std::endl;
+ if (verbose)
+ std::cout << "IM_SIZ " << nbFrames << std::endl;
// WARNING DATTYPE is, either in {ip_short, ip_int, ip_char, ...}, or in {1, 2, 3, ...}
res = CreateDirectory( currentOutputMhdDirName );
if (!res) {
std::cout << "[" << currentOutputDirName << "] Directory creation failure " << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Hopeless!FillMap failed on 'reco'"));
+ //exit (0);
}
if (verbose)
std::cout << "Directory creation [" << currentOutputDirName << "]" << std::endl;
} // end if mhd
- std::cout << "nbFrames " << nbFrames << std::endl;
- std::cout << "nbSlices " << nbSlices << std::endl;
+ if (verbose)
+ std::cout << "nbFrames " << nbFrames << std::endl;
+ if (verbose)
+ std::cout << "nbSlices " << nbSlices << std::endl;
int k;
int nbInstants = nbFrames/nbSlices;
- std::cout << "nbInstants (deduced )" << nbInstants << std::endl;
+ if (verbose)
+ std::cout << "nbInstants (deduced )" << nbInstants << std::endl;
int instantNb;
int sliceNb;
FILE *fp; // for MHD files
if (!fp)
{
std::cout << "Cannot open [" << original2dseqName << "] for reading" << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Hopeless! Cannot open '2dseq'"));
+ //exit (0);
}
unsigned char *buffer_2dseq = new unsigned char[NX*NY*pixelSize*nbSlices*nbInstants];
// This one will be important!
// ---------------------------
- imageSet = CreateImageSet ( );
+ try {
+ imageSet = CreateImageSet ( );
+ }
+ catch (BrukerInitException& e)
+ {
+ std::cout << "Exception " << e.what() << std::endl;
+ return;
+ }
serieNumber++;
strSerieUID = GDCM_NAME_SPACE::Util::CreateUniqueUID();
if (nbInstants==1) // creer un seul fichier .mhd pour toutes les Slices! (images natives)
{
- std::cout << "Single instant : do not split" << std::endl;
+ if (verbose)
+ std::cout << "Single instant : do not split" << std::endl;
if (mhd)
{
sprintf(outputMhdFileName, "%s%cMhdData_All_the_Slices.mhd", currentOutputMhdDirName,
if (!fp)
{
std::cout << "Cannot open [" << outputMhdFileName << "] for writting" << std::endl;
- exit(0);
+ throw ( BrukerHopelessException ("Hopeless! Cannot open mhd file for writting"));
+ //exit(0);
}
else
{
if (!fp)
{
std::cout << "Cannot open [" << output2dseqSliceFileName << "] for writting" << std::endl;
+ throw ( BrukerHopelessException ("Hopeless! Cannot open 2dseq file for writting"));
}
else
{
if (!fp)
{
std::cout << "Cannot open [" << outputMhdFileName << "] for writting" << std::endl;
- exit(0);
+ throw ( BrukerHopelessException ("Hopeless! Cannot open mhd file for writting"));
+ //exit(0);
}
else
{
if (!fp)
{
std::cout << "Cannot open [" << output2dseqSliceFileName << "] for writting" << std::endl;
- exit (0);
+ throw ( BrukerHopelessException ("Hopeless! Cannot open 2dseqSliceFile file for writting"));
+ //exit (0);
}
int frameSize = NX*NY*pixelSize;
for (instantNb=0; instantNb<nbInstants; instantNb++)
if(bDPT.GetDataType() == "string")
{
std::string brukerDataPixelType = bDPT.GetStringValue()[0];
- std::cout << "DATTYPE " << brukerDataPixelType << std::endl;
+ if (verbose)
+ std::cout << "DATTYPE " << brukerDataPixelType << std::endl;
//std::string brukerDataPixelType = br_d3proc.GetFieldData("DATTYPE").GetStringValue()[0];
if (brukerDataPixelType == "ip_short") {
std::vector<int> tempVect = br_acqp.GetLoopStructure() ;
std::map<std::string, BrukerFieldData> map = br_acqp.GetBrukerHeaderMap();
bool result = br_acqp.ObjectVaryingProperties.init(map,tempVect);
+
+ if (result == false)
+ {
+ throw ( BrukerInitException ("Bruker2Dicom::CreateImageSet failure ") );
+ }
br_acqp.SetImageLoopStructure();
br_acqp.SetBrukerImageList();
char charImageOrientation[256];
/*
-std::cout << "try charImageOrientation " <<
+std::cout << "charImageOrientation " <<
imageSet[imgNum].getRotationMatrixRPS2XYZ()[0][0] << " " <<
imageSet[imgNum].getRotationMatrixRPS2XYZ()[0][1] << " " <<
imageSet[imgNum].getRotationMatrixRPS2XYZ()[0][2] << " " <<