1998-03-28 02:44:41 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS
|
|
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
|
|
* implied. See the License for the specific language governing
|
|
|
|
* rights and limitations under the License.
|
1998-03-28 02:44:41 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-03-28 02:44:41 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-03-28 02:44:41 +00:00
|
|
|
*/
|
|
|
|
#include "nsID.h"
|
1998-05-22 21:56:30 +00:00
|
|
|
#include "prprf.h"
|
1999-09-20 20:52:12 +00:00
|
|
|
#include "prmem.h"
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-05-07 20:48:35 +00:00
|
|
|
static const char gIDFormat[] =
|
1998-05-22 21:56:30 +00:00
|
|
|
"{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}";
|
|
|
|
|
|
|
|
static const char gIDFormat2[] =
|
|
|
|
"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x";
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Turns a {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} string into
|
|
|
|
* an nsID
|
|
|
|
*/
|
|
|
|
|
1999-11-10 00:28:34 +00:00
|
|
|
NS_COM PRBool nsID::Parse(const char *aIDStr)
|
1998-05-22 21:56:30 +00:00
|
|
|
{
|
|
|
|
PRInt32 count = 0;
|
|
|
|
PRInt32 n1, n2, n3[8];
|
|
|
|
PRInt32 n0;
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-05-22 21:56:30 +00:00
|
|
|
if (NULL != aIDStr) {
|
|
|
|
count = PR_sscanf(aIDStr,
|
|
|
|
(aIDStr[0] == '{') ? gIDFormat : gIDFormat2,
|
|
|
|
&n0, &n1, &n2,
|
|
|
|
&n3[0],&n3[1],&n3[2],&n3[3],
|
|
|
|
&n3[4],&n3[5],&n3[6],&n3[7]);
|
1998-03-28 02:44:41 +00:00
|
|
|
|
1998-05-22 21:56:30 +00:00
|
|
|
m0 = (PRInt32) n0;
|
|
|
|
m1 = (PRInt16) n1;
|
|
|
|
m2 = (PRInt16) n2;
|
|
|
|
for (int i = 0; i < 8; i++) {
|
|
|
|
m3[i] = (PRInt8) n3[i];
|
|
|
|
}
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
return (PRBool) (count == 11);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns an allocated string in {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
|
|
|
|
* format. Caller should delete [] the string.
|
|
|
|
*/
|
|
|
|
|
1998-05-22 21:56:30 +00:00
|
|
|
NS_COM char *nsID::ToString() const
|
1998-03-28 02:44:41 +00:00
|
|
|
{
|
1999-09-20 20:52:12 +00:00
|
|
|
char *res = (char*)PR_Malloc(39); // use PR_Malloc if this is to be freed with nsCRT::free
|
1998-03-28 02:44:41 +00:00
|
|
|
|
|
|
|
if (res != NULL) {
|
1998-05-22 21:56:30 +00:00
|
|
|
PR_snprintf(res, 39, gIDFormat,
|
|
|
|
m0, (PRUint32) m1, (PRUint32) m2,
|
|
|
|
(PRUint32) m3[0], (PRUint32) m3[1], (PRUint32) m3[2],
|
|
|
|
(PRUint32) m3[3], (PRUint32) m3[4], (PRUint32) m3[5],
|
|
|
|
(PRUint32) m3[6], (PRUint32) m3[7]);
|
1998-03-28 02:44:41 +00:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|