#include #include #include #include #include "pistdimgapp.h" #include "piacmd.h" #include "piversion.h" #include "piaversion.h" #include "timing.h" #include "skyinit.h" #include "xntuple.h" // Pour faire le SetTmpDir() // ---- Pour charger automatiquement le module sopiamodule extern "C" { void sopiamodule_init(); void sopiamodule_end(); void skymapmodule_init(); void skymapmodule_end(); void fitsbtadapter_init(); void fitsbtadapter_end(); void W2PSModule_init(); void W2PSModule_end(); } /*! \defgroup ProgPI ProgPI module This module contains programs for interactive data analysis and visualisation, based on SOPHYA class libray and PI (GUI framework) and PIext (Interactive data analysis framework). */ /*! \ingroup ProgPI \file piapp.cc \brief \b (s)piapp: Starts the piapp interactive data analysis program. The current version of the program has a single execution thread. This creates few limitations (GUI can not be used when computing is being done, ...). Also the command file executed during start-up (-exec) cannot contain display (graphic) commands. \verbatim csh> spiapp -h SOPHYA Version 1.3 Revision 70 (V_Jun2002) -- Jul 16 2002 15:45:53 cxx piapp: Interactive data analysis and visualisation program Usage: piapp [-nored] [-nosig] [-nosigfpe] [-nosigsegv] [-hidezswin] [-tmpdir TmpDirectory] [-help2tex] [-exec file [args]] -nored : NoRedirect StdOut/StdErr -nosig : Don't catch SigFPE, SigSEGV -nosigfpe -nosigsegv: Don t catch SigFPE / SigSEGV -hidezswin : Hide Zoom/Stat/ColMap window -tmpdir TmpDirectory: defines TMDIR for temporary files -help2tex: Create a LaTeX help file (piahelp.tex) -exec file [args] : Execute command file \endverbatim */ void Usage(bool fgerr) { if (fgerr) { cout << " piapp : Argument Error ! piapp -h for Usage" << endl; exit(1); } else { cout << "\n piapp: Interactive data analysis and visualisation program \n" << " Usage: piapp [-nored] [-nosig] [-nosigfpe] [-nosigsegv] [-hidezswin] \n" << " [-tmpdir TmpDirectory] [-help2tex] [-exec file [args]] \n" << " -nored : NoRedirect StdOut/StdErr \n" << " -nosig : Don't catch SigFPE, SigSEGV \n" << " -nosigfpe -nosigsegv: Don t catch SigFPE / SigSEGV \n" << " -hidezswin : Hide Zoom/Stat/ColMap window \n" << " -tmpdir TmpDirectory: defines TMDIR for temporary files \n" << " -help2tex: Create a LaTeX help file (piahelp.tex)\n" << " -exec file [args] : Execute command file \n" << endl; exit(0); } } /* ================================ MAIN() ================================= */ int main(int narg, char *arg[]) { int ofa; bool fgfpe, fgsegv, fgred, fghidezsw, fgexec; SkyTInitiator skyinit; InitTim(); if ( (narg > 1) && (strcmp(arg[1],"-h") == 0) ) Usage(false); ofa = 1; fgred = fgfpe = fgsegv = true; fghidezsw = false; fgexec = false; bool fgtmp = false; string tmpdir; string exfc; // Pour fabriquer le help bool fgtexh = false; int ka; for(ka=1; ka>>>> Starting piapp , Executing %s \n", exfc.c_str()); else printf(">>>>> Starting piapp <<<<< \n"); printf("Version: piapp=%g PI=%g SOPHYA=%g \n", (double)PIAPP_VERSIONNUMBER, (double)PI_VERSIONNUMBER, (double)skyinit.Version()); char* vcmds=NULL; string vcmd; if (fgtmp) { if (tmpdir[tmpdir.length()-1] != '/') tmpdir += '/'; // Necessaire pour SetSwapPath vcmd = "TMPDIR=" + tmpdir; vcmds = new char[vcmd.length()+1]; strcpy(vcmds, vcmd.c_str()); putenv(vcmds); } char* tmpde = getenv("TMPDIR"); char tmpdname[32]; if (tmpde == NULL) tmpde = "./"; if (tmpde[strlen(tmpde)-1] != '/') strcpy(tmpdname, "/PIATmp_XXXXXX"); else strcpy(tmpdname, "PIATmp_XXXXXX"); mktemp(tmpdname); tmpdir = tmpde; tmpdir += tmpdname; tmpdir += '/'; vcmd = "mkdir "; vcmd += tmpde; vcmd += tmpdname; cout << " --piapp: Creating Tmp Directory: " << tmpdir << endl; int rcc = system(vcmd.c_str()); if (rcc != 0) { cout << " --piapp: Error creating TmpDir " << vcmd << " ---> exit !" << endl; return(9); } // On cree un repertoire temporaire // cout << " DBG-TMPDIR= " << getenv("TMPDIR") << endl; PIStdImgApp * app = new PIStdImgApp(narg, arg); // cout << " DBG-2 " << app->ObjMgr()->GetTmpDir() << endl; cout << " NamedObjMgr::SetTmpDir()+XNTuple::SetSwapPath() " << tmpdir << endl; app->ObjMgr()->SetTmpDir(tmpdir); XNTuple::SetSwapPath(const_cast(tmpdir.c_str())); // Gestion de redirection stdout/err et Signaux if (fgred) app->RedirectStdOutErr(true); else app->RedirectStdOutErr(false); app->CatchSignals(fgfpe, fgsegv); // if Hide Zoom/Stat Win if (fghidezsw) app->StatZoomWindowSetVisible(false); // S'il y a un fichier de commande a executer // if (fgexec) app->CmdInterpreter()->Interpret(exfc); if (fgexec) app->SubmitCommand(exfc); // On charge le module sopiamodule sopiamodule_init(); // On charge le module skymapmodule skymapmodule_init(); // On charge le module de lecture ligne a ligne des Fits BINARY/ASCII tables fitsbtadapter_init(); // On charge le module des commandes de creation de fichier postscript W2PSModule_init(); // S'il y a besoin de faire le fichier Help if (fgtexh) { string thf = "piahelp.tex"; app->CmdInterpreter()->HelptoLaTex(thf); printf("piapp : Help file piahelp.tex created --> exit(0) \n"); delete app; exit(0); } int rc = 0; bool cont = true; char rep; // ans[32] int excnt = 0; while(cont) { rc = 0; cont = false; app->SetReady(); if (fgred) app->RedirectStdOutErr(true); try { app->Run(); } catch(PThrowable exc) { // Catching SOPHYA exceptions app->Stop(); app->RedirectStdOutErr(false); //BUG ? fait planter OSF-cxx fflush(stdout); cout << endl; cerr << endl; cout << "\n piapp/main() PThrowable catched ! " << exc.Msg() << endl; cout << ++excnt << "- continue , Close Windows, " << " continue C Stop program S ? " << endl; rep = getchar(); // was: gets(ans); rep = toupper(rep); if (rep == 'S') { cout << " !!!! Stopping piapp !!!! " << endl; rc = 78; cont = false; } else { if (rep == 'C') { cout << "piapp/main() Closing all windows ... " << endl; app->CloseAllWindows(); } cout << " *** piapp - Continuing event loop *** " << endl; cont = true; } } catch(...) { // Catching all other exceptions app->Stop(); app->RedirectStdOutErr(false); cout << endl; cerr << endl; cout << "\n piapp/main() exception catched ! " << endl; cout << ++excnt << "- continue , Close Windows, " << " continue C Stop program S ? " << endl; rep = getchar(); // gets(ans); rep = toupper(rep); if (rep == 'S') { cout << " !!!! Stopping piapp !!!! " << endl; rc = 78; cont = false; } else { if (rep == 'C') { cout << "piapp/main() Closing all windows ... " << endl; app->CloseAllWindows(); } cout << " *** piapp - Continuing event loop *** " << endl; cont = true; } } } cout << "\n ------------------------------------------------ \n" << " piapp: Cleaning up ... " << endl; app->RedirectStdOutErr(false); // On de-charge le module sopiamodule et fitsbtadapter sopiamodule_end(); skymapmodule_end(); fitsbtadapter_end(); W2PSModule_end(); delete app; if (fgtmp) delete[] vcmds; vcmd = "rm -rf "; vcmd += tmpdir; cout << " --piapp: Removing Tmp Directory: " << tmpdir << endl; rcc = system(vcmd.c_str()); if (rcc != 0) { cout << " --piapp: Error deleting TmpDir " << vcmd << endl; return(9); } cout << "------------------------------------------------ \n" << "-------- piapp : Exiting .... Rc= " << rc << " -----------\n" << "------------------------------------------------ " << endl; return(rc); }