2001-12-03 05:47:14 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2007-06-02 05:42:12 +02:00
|
|
|
#ident "$Id: HName.cc,v 1.8 2007/06/02 03:42:12 steve Exp $"
|
2001-12-03 05:47:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
2001-12-18 05:52:45 +01:00
|
|
|
# include "config.h"
|
2001-12-03 05:47:14 +01:00
|
|
|
# include "HName.h"
|
|
|
|
|
# include <iostream>
|
|
|
|
|
# include <string.h>
|
2002-01-05 05:36:06 +01:00
|
|
|
# include <stdlib.h>
|
|
|
|
|
#ifdef HAVE_MALLOC_H
|
2001-12-03 05:47:14 +01:00
|
|
|
# include <malloc.h>
|
2002-01-05 05:36:06 +01:00
|
|
|
#endif
|
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)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
name_ = text;
|
|
|
|
|
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)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +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)
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +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
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
hname_t::~hname_t()
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
perm_string hname_t::peek_name(void) const
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
return name_;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
bool hname_t::has_number() const
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
return number_ != INT_MIN;
|
2001-12-03 05:47:14 +01:00
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
int hname_t::peek_number() const
|
2001-12-03 05:47:14 +01:00
|
|
|
{
|
2007-06-02 05:42:12 +02:00
|
|
|
return number_;
|
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
|
|
|
}
|
|
|
|
|
|
2007-06-02 05:42:12 +02:00
|
|
|
bool operator != (const hname_t&l, const hname_t&r)
|
|
|
|
|
{ return ! (l==r); }
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: HName.cc,v $
|
2007-06-02 05:42:12 +02:00
|
|
|
* Revision 1.8 2007/06/02 03:42:12 steve
|
|
|
|
|
* Properly evaluate scope path expressions.
|
|
|
|
|
*
|
2007-05-16 21:12:33 +02:00
|
|
|
* Revision 1.7 2007/05/16 19:12:33 steve
|
|
|
|
|
* Fix hname_t use of space for 1 perm_string.
|
|
|
|
|
*
|
2007-04-26 05:06:21 +02:00
|
|
|
* Revision 1.6 2007/04/26 03:06:21 steve
|
|
|
|
|
* Rework hname_t to use perm_strings.
|
|
|
|
|
*
|
2002-11-02 04:27:51 +01:00
|
|
|
* Revision 1.5 2002/11/02 03:27:52 steve
|
|
|
|
|
* Allow named events to be referenced by
|
|
|
|
|
* hierarchical names.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.4 2002/08/12 01:34:58 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-01-05 05:36:06 +01:00
|
|
|
* Revision 1.3 2002/01/05 04:36:06 steve
|
|
|
|
|
* include malloc.h only when available.
|
|
|
|
|
*
|
2001-12-18 05:52:45 +01:00
|
|
|
* Revision 1.2 2001/12/18 04:52:45 steve
|
|
|
|
|
* Include config.h for namespace declaration.
|
|
|
|
|
*
|
2001-12-03 05:47:14 +01:00
|
|
|
* Revision 1.1 2001/12/03 04:47:14 steve
|
|
|
|
|
* Parser and pform use hierarchical names as hname_t
|
|
|
|
|
* objects instead of encoded strings.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|