~ma5/madanalysis5/madanalysis-development

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
////////////////////////////////////////////////////////////////////////////////
//  
//  Copyright (C) 2012-2016 Eric Conte, Benjamin Fuks
//  The MadAnalysis development team, email: <ma5team@iphc.cnrs.fr>
//  
//  This file is part of MadAnalysis 5.
//  Official website: <https://launchpad.net/madanalysis5>
//  
//  MadAnalysis 5 is free software: you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation, either version 3 of the License, or
//  (at your option) any later version.
//  
//  MadAnalysis 5 is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
//  GNU General Public License for more details.
//  
//  You should have received a copy of the GNU General Public License
//  along with MadAnalysis 5. If not, see <http://www.gnu.org/licenses/>
//  
////////////////////////////////////////////////////////////////////////////////


#ifndef CONVERT_SERVICE_H
#define CONVERT_SERVICE_H


// STL headers 
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
#include <cctype> // std::tolower

// SampleAnalyzer headers
#include "SampleAnalyzer/Commons/Base/PortableDatatypes.h" 
#include "SampleAnalyzer/Commons/Service/ExceptionService.h"


// ShortCut to access to ConvertService
#define CONVERT MA5::ConvertService::GetInstance()   

namespace MA5
{

//////////////////////////////////////////////////////////////////////////////
/// The class ConvertService contains static methods used for converting
/// all types into string type.
///
/// ConvertService is a singleton-pattern-based class : only one instance.
/// Getting the only one instance : ConvertService::GetInstance()
//////////////////////////////////////////////////////////////////////////////
class ConvertService
{
  // -------------------------------------------------------------
  //                        data members
  // -------------------------------------------------------------
 private :

  /// Pointer to the unique instance of ConvertService
  static ConvertService* Service_;

  /// Streamer used for the conversion
  std::stringstream Converter_;


  // -------------------------------------------------------------
  //                       method members
  // -------------------------------------------------------------
 private:

  /// Constructor without argument
  ConvertService() 
  {}

  /// Destructor
  ~ConvertService()
  {}

  /// (Re)initialzing the streamer
  void Initialize()
  { Converter_.str(""); }

 public:

  /// Getting the unique instance of ConvertService
  static ConvertService* GetInstance()
  {
    if (Service_==0) Service_ = new ConvertService;
    return Service_;
  }

  /// Deleting the unique instance of Convert Service
  static void Kill()
  {
    if (Service_!=0) delete Service_;
    Service_=0;
  }

  /// Conversion function to std::string
  template <class T> 
  const std::string ToString(const T& value)
  {
    Initialize(); 
    Converter_ << value;
    return Converter_.str();
  }

  /// Conversion function to MAint32
  template <class T> 
  const MAint32 ToMAint32(const T& value)
  {
    Initialize(); 
    Converter_ << value;
    MAint32 convert=0;
    Converter_ >> convert;

    try
    {
      if (Converter_.fail()) throw EXCEPTION_ERROR("Impossible to convert a string to a int","word="+ToString(value),0);
    }
    catch (const std::exception& e)
    {
      MANAGE_EXCEPTION(e);
    }    

    return convert;
  }

  /// Conversion function to MAuint32
  template <class T> 
  const MAuint32 ToMAuint32(const T& value)
  {
    Initialize(); 
    Converter_ << value;
    MAuint32 convert=0;
    Converter_ >> convert;

    try
    {
      if (Converter_.fail()) throw EXCEPTION_ERROR("Impossible to convert a string to a int","word="+ToString(value),0);
    }
    catch (const std::exception& e)
    {
      MANAGE_EXCEPTION(e);
    }    

    return convert;
  }

  /// Conversion function to MAfloat32
  template <class T> 
  const MAfloat32 ToFloat(const T& value)
  {
    Initialize(); 
    Converter_ << value;
    MAfloat32 convert=0;
    Converter_ >> convert;

    try
    {
      if (Converter_.fail()) throw EXCEPTION_ERROR("Impossible to convert a string to a float","word="+ToString(value),0);
    }
    catch (const std::exception& e)
    {
      MANAGE_EXCEPTION(e);
    }    

    return convert;
  }

  /// Conversion function to lower case
  const std::string ToLower(const std::string& value) const
  {
    std::string result=value;
    std::transform(value.begin(), value.end(), result.begin(),
                   (int(*)(int)) std::tolower);
    return result;
  }

  /// Conversion function to upper case
  const std::string ToUpper(const std::string& value) const
  {
    std::string result=value;
    std::transform(value.begin(), value.end(), result.begin(),
                   (int(*)(int)) std::toupper);
    return result;
  }

  /// Test the success of the last conversion
  MAbool Success()
  {
    return true;
  }

  /// Test the failure of the last conversion
  MAbool Fail()
  {
    return true;
  }


};

}

#endif