Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / db / IOstreams / Sstreams / readHexLabel.C
bloba68167174c59105dc435ee8c7a706abbbe84a32c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Description
25     Read a non-delimited hex label
27 \*---------------------------------------------------------------------------*/
29 #include "readHexLabel.H"
30 #include <cctype>
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 Foam::label Foam::readHexLabel(ISstream& is)
36     // Takes into account that 'a' (or 'A') is 10
37     static const label alphaOffset = toupper('A') - 10;
38     // Takes into account that '0' is 0
39     static const label zeroOffset = int('0');
41     char c = 0;
43     // Get next non-whitespace character
44     while (is.get(c) && isspace(c))
45     {}
47     register label result = 0;
48     do
49     {
50         if (isspace(c) || c == 0) break;
52         if (!isxdigit(c))
53         {
54             FatalIOErrorIn("readHexLabel(ISstream&)", is)
55                 << "Illegal hex digit: '" << c << "'"
56                 << exit(FatalIOError);
57         }
59         result <<= 4;
61         if (isdigit(c))
62         {
63             result += int(c) - zeroOffset;
64         }
65         else
66         {
67             result += toupper(c) - alphaOffset;
68         }
69     } while (is.get(c));
71     return result;
75 // ************************************************************************* //