nspr: import 3.0 RC1 cutoff from CVS
[mozilla-nspr.git] / nsprpub / pr / src / misc / prerror.c
blobf578f2d24a380de1eb9d9ae5c2ca971c53ec933d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
13 * License.
15 * The Original Code is the Netscape Portable Runtime (NSPR).
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
22 * Contributor(s):
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
38 #include "primpl.h"
40 #include <string.h>
41 #include <stdlib.h>
43 PR_IMPLEMENT(PRErrorCode) PR_GetError(void)
45 PRThread *thread = PR_GetCurrentThread();
46 return thread->errorCode;
49 PR_IMPLEMENT(PRInt32) PR_GetOSError(void)
51 PRThread *thread = PR_GetCurrentThread();
52 return thread->osErrorCode;
55 PR_IMPLEMENT(void) PR_SetError(PRErrorCode code, PRInt32 osErr)
57 PRThread *thread = PR_GetCurrentThread();
58 thread->errorCode = code;
59 thread->osErrorCode = osErr;
60 thread->errorStringLength = 0;
63 PR_IMPLEMENT(void) PR_SetErrorText(PRIntn textLength, const char *text)
65 PRThread *thread = PR_GetCurrentThread();
67 if (0 == textLength)
69 if (NULL != thread->errorString)
70 PR_DELETE(thread->errorString);
71 thread->errorStringSize = 0;
73 else
75 PRIntn size = textLength + 31; /* actual length to allocate. Plus a little extra */
76 if (thread->errorStringSize < textLength+1) /* do we have room? */
78 if (NULL != thread->errorString)
79 PR_DELETE(thread->errorString);
80 thread->errorString = (char*)PR_MALLOC(size);
81 if ( NULL == thread->errorString ) {
82 thread->errorStringSize = 0;
83 thread->errorStringLength = 0;
84 return;
86 thread->errorStringSize = size;
88 memcpy(thread->errorString, text, textLength+1 );
90 thread->errorStringLength = textLength;
93 PR_IMPLEMENT(PRInt32) PR_GetErrorTextLength(void)
95 PRThread *thread = PR_GetCurrentThread();
96 return thread->errorStringLength;
97 } /* PR_GetErrorTextLength */
99 PR_IMPLEMENT(PRInt32) PR_GetErrorText(char *text)
101 PRThread *thread = PR_GetCurrentThread();
102 if (0 != thread->errorStringLength)
103 memcpy(text, thread->errorString, thread->errorStringLength+1);
104 return thread->errorStringLength;
105 } /* PR_GetErrorText */