]> Creatis software - bbtk.git/blob - kernel/src/bbtkMessageManager.cxx
21b0e5332015914f74b3597bac089c611cec90ab
[bbtk.git] / kernel / src / bbtkMessageManager.cxx
1    /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbtkMessageManager.cxx,v $
5   Language:  C++
6   Date:      $Date: 2008/03/20 09:51:28 $
7   Version:   $Revision: 1.4 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18 /**
19  * \file
20  * \brief class MessageManager : Manages the messages displayed by bbtk (code)
21  */
22 #include "bbtkMessageManager.h"
23
24 namespace bbtk 
25 {
26
27   MessageManager::MessageManager() 
28     : mMaxMessageLength(8), mAllLevel(0) 
29     
30   {
31     std::string key;
32     key ="Kernel";
33     mMessageLevel[key] = 0;
34     mMessageHelp[key] = "Messages generated by the core classes of the lib";
35     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
36     key ="Process";
37     mMessageLevel[key] = 0;
38     mMessageHelp[key] = "Messages related to box processing";
39     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
40     key = "Help";
41     mMessageLevel[key] = 1;
42     mMessageHelp[key] = "Help messages";
43     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
44     key = "Error";
45     mMessageLevel[key] = 0;
46     mMessageHelp[key] = "Error messages";
47     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
48     key = "Warning";
49     mMessageLevel[key] = 1;
50     mMessageHelp[key] = "Warning messages";
51     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
52     key = "Output";
53     mMessageLevel[key] = 1;
54     mMessageHelp[key] = "Output messages";
55     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
56     key = "Debug";
57     mMessageLevel[key] = 0;
58     mMessageHelp[key] = "Debug messages";
59     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
60     key = "Config";
61     mMessageLevel[key] = 0;
62     mMessageHelp[key] = "Configuration related messages";
63     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
64     key = "data";
65     mMessageLevel[key] = 0;
66     mMessageHelp[key] = "Data related messages";
67     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
68     key = "Wx";
69     mMessageLevel[key] = 0;
70     mMessageHelp[key] = "Widgets related messages";
71     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
72     key = "gui";
73     mMessageLevel[key] = 0;
74     mMessageHelp[key] = "Graphical user interface related messages";
75     if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
76    }
77
78
79
80
81   MessageManager::~MessageManager() 
82   {
83     //      std::cout << "~MessageManager"<<std::endl;
84   }
85   
86
87
88   MessageManager* MessageManager::GetInstance() 
89   { 
90     static MessageManager* m = 0;
91     if (!m) m = new MessageManager();
92     return m; 
93   }
94
95   void MessageManager::RegisterMessageType(std::string key, 
96                                                   std::string help,
97                                                   unsigned char default_level) 
98   {
99     GetInstance()->mMessageLevel[key] = default_level;
100     GetInstance()->mMessageHelp[key] = help;
101     if (GetInstance()->mMaxMessageLength<key.length()) 
102       GetInstance()->mMaxMessageLength = key.length();
103   }
104
105
106
107   void MessageManager::SetMessageLevel(std::string key, 
108                                               unsigned char level) 
109   {
110     std::map<std::string,int>::iterator i;
111     if (key==std::string("All")) {
112       GetInstance()->mAllLevel = level;
113       
114       for (i=GetInstance()->mMessageLevel.begin();
115            i!=GetInstance()->mMessageLevel.end();
116            ++i) 
117         (*i).second = level;
118       
119     }
120     else {
121       i = GetInstance()->mMessageLevel.find(key);
122       if (i!=GetInstance()->mMessageLevel.end()) {
123         (*i).second = level;
124       }
125       else {
126         bbtkWarning("MessageManager::SetMessageLevel : message type=<"
127                     <<key<<"> unregistered");
128       }
129     }
130   }
131
132
133
134   int MessageManager::GetMessageLevel(std::string key) 
135   {
136     int l = GetInstance()->mAllLevel;
137     std::map<std::string,int>::iterator i = 
138       GetInstance()->mMessageLevel.find(key);
139     if (i!=GetInstance()->mMessageLevel.end()) {
140       if ( (*i).second > l ) l = (*i).second;      
141     }
142     return l;
143   }
144
145
146
147   void MessageManager::PrintInfo() 
148   {
149     bbtkMessage("Help",1,"================ Messages =================" 
150                 << bbtkendl);
151     bbtkMessage("Help",1, "Kind");
152     for (int k=0;
153          k<(int)(GetInstance()->mMaxMessageLength-8);
154          k++) {
155       bbtkMessageCont("Help",1," "); 
156     }
157     bbtkMessageCont("Help",1,"Level  Nature" << bbtkendl);
158     std::map<std::string,int>::iterator i;
159     std::map<std::string,std::string>::iterator j;  
160     for (i=GetInstance()->mMessageLevel.begin(),
161            j=GetInstance()->mMessageHelp.begin();
162          i!=GetInstance()->mMessageLevel.end();++i,++j) {
163       bbtkMessage("Help",1, (*i).first);
164       for (int k=0;
165            k<(int)(GetInstance()->mMaxMessageLength+2-(*i).first.length());
166            k++) {
167         bbtkMessageCont("Help",1," ");
168       }
169       bbtkMessageCont("Help",1, (*i).second << "\t" 
170                       << (*j).second << bbtkendl);
171     }
172     bbtkMessage("Help",1,"===========================================" 
173                 << bbtkendl);
174   }
175   
176
177 }