LCOV - code coverage report
Current view: top level - alma/ASDM - IntegerWrapper.cc (source / functions) Hit Total Coverage
Test: casacpp_coverage.info Lines: 18 19 94.7 %
Date: 2024-11-06 17:42:47 Functions: 2 2 100.0 %

          Line data    Source code
       1             : /*
       2             :  * ALMA - Atacama Large Millimeter Array
       3             :  * (c) European Southern Observatory, 2002
       4             :  * (c) Associated Universities Inc., 2002
       5             :  * Copyright by ESO (in the framework of the ALMA collaboration),
       6             :  * Copyright by AUI (in the framework of the ALMA collaboration),
       7             :  * All rights reserved.
       8             :  * 
       9             :  * This library is free software; you can redistribute it and/or
      10             :  * modify it under the terms of the GNU Lesser General Public
      11             :  * License as published by the Free software Foundation; either
      12             :  * version 2.1 of the License, or (at your option) any later version.
      13             :  * 
      14             :  * This library is distributed in the hope that it will be useful,
      15             :  * but WITHOUT ANY WARRANTY, without even the implied warranty of
      16             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
      17             :  * Lesser General Public License for more details.
      18             :  * 
      19             :  * You should have received a copy of the GNU Lesser General Public
      20             :  * License along with this library; if not, write to the Free Software
      21             :  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
      22             :  * MA 02111-1307  USA
      23             :  *
      24             :  * File Integer.cpp
      25             :  */
      26             : 
      27             : #include <alma/ASDM/IntegerWrapper.h>
      28             : #include <alma/ASDM/NumberFormatException.h>
      29             : 
      30             : #include <sstream>
      31             : 
      32             : #include <iostream>
      33             : using namespace std;
      34             : 
      35             : namespace asdm {
      36             : 
      37             :     const int Integer::MIN_VALUE = 0x80000000;
      38             :     const int Integer::MAX_VALUE = 0x7fffffff;
      39             : 
      40   101541754 :         int Integer::parseInt(const string &s) {
      41   101541754 :                 istringstream in;
      42   101541754 :                 in.str(s);
      43             :                 int x;
      44   101541754 :                 in >> x;
      45   101541754 :                 if (in.rdstate() == istream::failbit)
      46           0 :                         throw NumberFormatException (s);
      47   101541754 :                 return x;
      48   101541754 :         }
      49             : 
      50    27638098 :         string Integer::toString(int x) {
      51    27638098 :                 ostringstream out;
      52    27638098 :                 out.width(20);
      53    27638098 :                 out.precision(12);
      54    27638098 :                 out << x;
      55    27638098 :                 string s =  out.str();
      56    27638098 :                 int i = 0;
      57   533339142 :                 while (i < 20 && s.at(i) == ' ')
      58   505701044 :                         ++i;
      59    55276196 :                 return s.substr(i,s.length() - i);
      60    27638098 :         }
      61             : 
      62             : } // End namespace.

Generated by: LCOV version 1.16