]> Creatis software - bbtk.git/blob - kernel/appli/bbRegenerateBoxesLists/bbRegenerateBoxesLists.cpp
Feature #1774
[bbtk.git] / kernel / appli / bbRegenerateBoxesLists / bbRegenerateBoxesLists.cpp
1 /*
2  # ---------------------------------------------------------------------
3  #
4  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5  #                        pour la SantÈ)
6  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9  #
10  #  This software is governed by the CeCILL-B license under French law and
11  #  abiding by the rules of distribution of free software. You can  use,
12  #  modify and/ or redistribute the software under the terms of the CeCILL-B
13  #  license as circulated by CEA, CNRS and INRIA at the following URL
14  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15  #  or in the file LICENSE.txt.
16  #
17  #  As a counterpart to the access to the source code and  rights to copy,
18  #  modify and redistribute granted by the license, users are provided only
19  #  with a limited warranty  and the software's author,  the holder of the
20  #  economic rights,  and the successive licensors  have only  limited
21  #  liability.
22  #
23  #  The fact that you are presently reading this means that you have had
24  #  knowledge of the CeCILL-B license and that you accept its terms.
25  # ------------------------------------------------------------------------ */
26
27
28
29 #include <bbtkInterpreter.h>
30 #include <bbtkConfigurationFile.h>
31
32 //==========================================================================
33 int main(int argc, char **argv)
34 {
35   if (argc>1)
36     {
37       if (argv[1][1]=='q') 
38         bbtk::MessageManager::SetMessageLevel("max",0);
39       else if (argv[1][1]=='v')
40         bbtk::MessageManager::SetMessageLevel("all",9);          
41       else 
42         {
43           std::cout << "usage : bbRegenerateBoxesLists [-q|-v] (quiet or verbose)" << std::endl;
44           return 0;
45         }
46     }
47
48   try
49     {
50       bbtk::Interpreter::Pointer I = bbtk::Interpreter::New();
51       I->SetCommandLine(true);
52       I->SetThrow(false);
53
54       std::string doc_path = bbtk::ConfigurationFile::GetInstance().Get_doc_path();
55       doc_path += bbtk::ConfigurationFile::GetInstance().Get_file_separator();
56       doc_path += "bbdoc";
57       doc_path += bbtk::ConfigurationFile::GetInstance().Get_file_separator();
58
59       I->InterpretLine( "exec freeze_no_error");
60       I->InterpretLine( "include *");
61       I->GetExecuter()->GetFactory()->CreateHtmlIndex(bbtk::Factory::Initials, doc_path   + "index-alpha.html");
62       I->GetExecuter()->GetFactory()->CreateHtmlIndex(bbtk::Factory::Packages, doc_path   + "index-package.html");
63       I->GetExecuter()->GetFactory()->CreateHtmlIndex(bbtk::Factory::Categories, doc_path + "index-category.html");
64       I->GetExecuter()->GetFactory()->CreateHtmlIndex(bbtk::Factory::Adaptors, doc_path   + "index-adaptors.html");
65
66     }
67   catch (bbtk::Exception e)
68     {
69       std::cout << "* ERROR : "<<e.GetErrorMessage()<<std::endl;
70       return 1;
71     }
72
73   // JGRR & CM : this kills this never-ending process, when it's supposed to.
74   std::cout << "bbRegenerateBoxesLists has finished normally. It will be aborted on purpose."<< std::endl; 
75   abort();
76   // EO JGRR & CM
77   return 0;
78 }
79 //==========================================================================
80
81