(file) Return to Name.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

File: [Pegasus] / pegasus / src / Pegasus / Common / Attic / Name.cpp (download)
Revision: 1.1.1.1 (vendor branch), Sun Jan 14 19:52:58 2001 UTC (23 years, 5 months ago) by mike
Branch: pegasus
CVS Tags: stable, opengroup
Changes since 1.1: +0 -0 lines
Pegasus import

//BEGIN_LICENSE
//
// Copyright (c) 2000 The Open Group, BMC Software, Tivoli Systems, IBM
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
//END_LICENSE
//BEGIN_HISTORY
//
// Author:
//
// $Log: Name.cpp,v $
// Revision 1.1.1.1  2001/01/14 19:52:58  mike
// Pegasus import
//
//
//END_HISTORY

#include <cctype>
#include "Name.h"
#include "Destroyer.h"

PEGASUS_NAMESPACE_BEGIN

Boolean Name::legal(const Char16* name)
{
    const Char16* p = name;

    if (!p)
	throw NullPointer();

    if (!*p || !(isalpha(*p) || *p == '_'))
	return false;

    for (p++; *p; p++)
    {
	if (*p > 127)
	    return false;

	if (!(isalnum(*p) || *p == '_'))
	    return false;
    }

    return true;
}

Boolean Name::equal(const String& name1, const String& name2)
{
    if (name1.getLength() != name2.getLength())
	return false;

    const Char16* p = name1.getData();
    const Char16* q = name2.getData();

    Uint32 n = name1.getLength();

    while (n--)
    {
	if (*p <= 127 && *q <= 127)
	{
	    if (tolower(*p++) != tolower(*q++))
		return false;
	}
	else if (*p++ != *q++)
	    return false;
    }

    return true;
}

PEGASUS_NAMESPACE_END

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2