2001-12-03 05:47:14 +01:00
|
|
|
/*
|
2012-08-08 20:26:46 +02:00
|
|
|
* Copyright (c) 2001-2012 Stephen Williams (steve@icarus.com)
|
2001-12-03 05:47:14 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2001-12-03 05:47:14 +01:00
|
|
|
*/
|
|
|
|
|
|
2001-12-18 05:52:45 +01:00
|
|
|
# include "config.h"
|
2001-12-03 05:47:14 +01:00
|
|
|
# include "HName.h"
|
|
|
|
|
# include <iostream>
|
2008-01-05 00:23:47 +01:00
|
|
|
# include <cstring>
|
|
|
|
|
# include <cstdlib>
|
|
|
|
|
# include <climits>
|
2001-12-03 05:47:14 +01:00
|
|
|
|
2007-05-16 21:12:33 +02:00
|
|
|
|
2001-12-03 05:47:14 +01:00
|
|
|
hname_t::hname_t()
|
|
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
number_ = INT_MIN;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
2007-04-26 05:06:21 +02:00
|
|
|
hname_t::hname_t(perm_string text)
|
2012-08-08 20:26:46 +02:00
|
|
|
: name_(text)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
number_ = INT_MIN;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
hname_t::hname_t(perm_string text, int num)
|
2012-08-08 20:26:46 +02:00
|
|
|
: name_(text), number_(num)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
hname_t::hname_t(const hname_t&that)
|
2012-08-08 20:26:46 +02:00
|
|
|
: name_(that.name_), number_(that.number_)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
hname_t& hname_t::operator = (const hname_t&that)
|
2002-11-02 04:27:51 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
name_ = that.name_;
|
|
|
|
|
number_ = that.number_;
|
|
|
|
|
return *this;
|
2002-11-02 04:27:51 +01:00
|
|
|
}
|
|
|
|
|
|
2001-12-03 05:47:14 +01:00
|
|
|
bool operator < (const hname_t&l, const hname_t&r)
|
|
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
int cmp = strcmp(l.peek_name(), r.peek_name());
|
|
|
|
|
if (cmp < 0) return true;
|
|
|
|
|
if (cmp > 0) return false;
|
|
|
|
|
if (l.has_number() && r.has_number())
|
|
|
|
|
return l.peek_number() < r.peek_number();
|
|
|
|
|
else
|
2001-12-03 05:47:14 +01:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool operator == (const hname_t&l, const hname_t&r)
|
|
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
if (l.peek_name() == r.peek_name()) {
|
|
|
|
|
if (l.has_number() && r.has_number())
|
|
|
|
|
return l.peek_number() == r.peek_number();
|
|
|
|
|
else
|
|
|
|
|
return true;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
return false;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ostream& operator<< (ostream&out, const hname_t&that)
|
|
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
if (that.peek_name() == 0) {
|
2001-12-03 05:47:14 +01:00
|
|
|
out << "";
|
|
|
|
|
return out;
|
2007-06-02 05:42:12 +02:00
|
|
|
}
|
2001-12-03 05:47:14 +01:00
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
out << that.peek_name();
|
|
|
|
|
if (that.has_number())
|
|
|
|
|
out << "[" << that.peek_number() << "]";
|
2001-12-03 05:47:14 +01:00
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
return out;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|