1 /*=========================================================================
3 Module: $RCSfile: bbtkMessageManager.cxx,v $
5 Date: $Date: 2009/05/28 08:12:06 $
6 Version: $Revision: 1.16 $
7 =========================================================================*/
9 /* ---------------------------------------------------------------------
11 * Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
12 * Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
14 * This software is governed by the CeCILL-B license under French law and
15 * abiding by the rules of distribution of free software. You can use,
16 * modify and/ or redistribute the software under the terms of the CeCILL-B
17 * license as circulated by CEA, CNRS and INRIA at the following URL
18 * http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
19 * or in the file LICENSE.txt.
21 * As a counterpart to the access to the source code and rights to copy,
22 * modify and redistribute granted by the license, users are provided only
23 * with a limited warranty and the software's author, the holder of the
24 * economic rights, and the successive licensors have only limited
27 * The fact that you are presently reading this means that you have had
28 * knowledge of the CeCILL-B license and that you accept its terms.
29 * ------------------------------------------------------------------------ */
33 * \brief class MessageManager : Manages the messages displayed by bbtk (code)
35 #include "bbtkMessageManager.h"
40 MessageManager::MessageManager()
41 : mMaxMessageLength(8)//, mAllLevel(0), mMaxLevel(9)
46 mMessageLevel[key] = 0;
47 mMessageHelp[key] = "Minimum level for all kind of messages";
48 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
50 mMessageLevel[key] = 9;
51 mMessageHelp[key] = "Maximum level for all kind of messages";
52 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
54 mMessageLevel[key] = 0;
55 mMessageHelp[key] = "Messages generated by the core classes of the lib";
56 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
58 mMessageLevel[key] = 0;
59 mMessageHelp[key] = "Messages related to box processing";
60 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
62 mMessageLevel[key] = 1;
63 mMessageHelp[key] = "Help messages";
64 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
66 mMessageLevel[key] = 0;
67 mMessageHelp[key] = "Error messages";
68 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
70 mMessageLevel[key] = 1;
71 mMessageHelp[key] = "Warning messages";
72 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
74 mMessageLevel[key] = 1;
75 mMessageHelp[key] = "Output messages";
76 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
78 mMessageLevel[key] = 0;
79 mMessageHelp[key] = "Debug messages";
80 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
82 mMessageLevel[key] = 0;
83 mMessageHelp[key] = "Configuration related messages";
84 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
86 mMessageLevel[key] = 0;
87 mMessageHelp[key] = "Data related messages";
88 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
90 mMessageLevel[key] = 0;
91 mMessageHelp[key] = "Widgets related messages";
92 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
94 mMessageLevel[key] = 0;
95 mMessageHelp[key] = "wxWidgets related messages";
96 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
98 mMessageLevel[key] = 0;
99 mMessageHelp[key] = "Qt related messages";
100 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
102 mMessageLevel[key] = 0;
103 mMessageHelp[key] = "Graphical user interface related messages";
104 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
106 mMessageLevel[key] = 0;
107 mMessageHelp[key] = "object memory related messages";
108 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
110 mMessageLevel[key] = 0;
111 mMessageHelp[key] = "Packages related messages";
112 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
114 mMessageLevel[key] = 0;
115 mMessageHelp[key] = "Connections related messages";
116 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
118 mMessageLevel[key] = 0;
119 mMessageHelp[key] = "Box i/o changes related messages";
120 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
122 mMessageLevel[key] = 0;
123 mMessageHelp[key] = "If positive then codes of the messages are displayed";
124 if (mMaxMessageLength<key.length()) mMaxMessageLength = key.length();
130 MessageManager::~MessageManager()
132 // std::cout << "~MessageManager"<<std::endl;
137 MessageManager* MessageManager::GetInstance()
139 static MessageManager* m = 0;
140 if (!m) m = new MessageManager();
144 bool MessageManager::RegisterMessageType(std::string key,
146 unsigned char default_level)
148 GetInstance()->mMessageLevel[key] = default_level;
149 GetInstance()->mMessageHelp[key] = help;
150 if (GetInstance()->mMaxMessageLength<key.length())
151 GetInstance()->mMaxMessageLength = key.length();
158 void MessageManager::SetMessageLevel(std::string key,
161 std::map<std::string,int>::iterator i;
162 i = GetInstance()->mMessageLevel.find(key);
163 if (i!=GetInstance()->mMessageLevel.end())
169 bbtkWarning("MessageManager::SetMessageLevel : message type=<"
170 <<key<<"> unregistered");
177 int MessageManager::GetMessageLevel(std::string key)
179 int l = GetInstance()->mMessageLevel["all"];
180 std::map<std::string,int>::iterator i =
181 GetInstance()->mMessageLevel.find(key);
182 if (i!=GetInstance()->mMessageLevel.end()) {
183 if ( (*i).second > l ) l = (*i).second;
185 int m = GetInstance()->mMessageLevel["max"];
192 void MessageManager::PrintInfo()
194 bbtkMessage("help",1,"================ Messages ================="
196 bbtkMessage("help",1, "Kind");
198 k<(int)(GetInstance()->mMaxMessageLength-2);
201 bbtkMessageCont("help",1," ");
203 bbtkMessageCont("help",1,"Level Nature" << bbtkendl);
204 std::map<std::string,int>::iterator i;
205 std::map<std::string,std::string>::iterator j;
206 for (i=GetInstance()->mMessageLevel.begin(),
207 j=GetInstance()->mMessageHelp.begin();
208 i!=GetInstance()->mMessageLevel.end();++i,++j) {
209 bbtkMessage("help",1, (*i).first);
211 k<(int)(GetInstance()->mMaxMessageLength+2-(*i).first.length());
213 bbtkMessageCont("help",1," ");
215 bbtkMessageCont("help",1, (*i).second << "\t"
216 << (*j).second << bbtkendl);
218 bbtkMessage("help",1,"==========================================="
222 std::string MessageManager::FormatKey(const std::string& key,
226 if ( GetInstance()->mMessageLevel["code"] != 0 )
229 std::stringstream ss;