]>
git.saurik.com Git - apple/security.git/blob - SecuritySNACCRuntime/c++-lib/c++/asn-bool.cpp
2 * Copyright (c) 2000-2001 Apple Computer, Inc. All Rights Reserved.
4 * The contents of this file constitute Original Code as defined in and are
5 * subject to the Apple Public Source License Version 1.2 (the 'License').
6 * You may not use this file except in compliance with the License. Please obtain
7 * a copy of the License at http://www.apple.com/publicsource and read it before
10 * This Original Code and all software distributed under the License are
11 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS
12 * OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, INCLUDING WITHOUT
13 * LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
14 * PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. Please see the License for the
15 * specific language governing rights and limitations under the License.
19 // file: .../c++-lib/src/asn-bool.C - methods for AsnBool (ASN.1 BOOLEAN) class
22 // Copyright (C) 1992 Michael Sample and the University of British Columbia
24 // This library is free software; you can redistribute it and/or
25 // modify it provided that this copyright/license information is retained
28 // If you modify this file, you must clearly indicate your changes.
30 // This source code is distributed in the hope that it will be
31 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
32 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
34 // $Header: /cvs/Darwin/src/live/Security/SecuritySNACCRuntime/c++-lib/c++/asn-bool.cpp,v 1.3 2002/03/21 05:38:44 dmitch Exp $
35 // $Log: asn-bool.cpp,v $
36 // Revision 1.3 2002/03/21 05:38:44 dmitch
37 // Radar 2868524: no more setjmp/longjmp in SNACC-generated code.
39 // Revision 1.2.44.1 2002/03/20 00:36:49 dmitch
40 // Radar 2868524: SNACC-generated code now uses throw/catch instead of setjmp/longjmp.
42 // Revision 1.2 2001/06/27 23:09:14 dmitch
43 // Pusuant to Radar 2664258, avoid all cerr-based output in NDEBUG configuration.
45 // Revision 1.1.1.1 2001/05/18 23:14:05 mb
46 // Move from private repository to open source repository
48 // Revision 1.2 2001/05/05 00:59:17 rmurphy
49 // Adding darwin license headers
51 // Revision 1.1 2000/06/15 18:44:57 dmitch
52 // These snacc-generated source files are now checked in to allow cross-platform build.
54 // Revision 1.2 2000/06/08 20:05:34 dmitch
55 // Mods for X port. These files are actually machine generated and probably don't need to be in CVS....
57 // Revision 1.1.1.1 2000/03/09 01:00:05 rmurphy
58 // Base Fortissimo Tree
60 // Revision 1.2 1999/03/21 02:07:35 mb
61 // Added Copy to every AsnType.
63 // Revision 1.1 1999/02/25 05:21:50 mb
64 // Added snacc c++ library
66 // Revision 1.7 1997/02/28 13:39:44 wan
67 // Modifications collected for new version 1.3: Bug fixes, tk4.2.
69 // Revision 1.6 1997/02/16 20:26:03 rj
70 // check-in of a few cosmetic changes
72 // Revision 1.5 1995/07/24 20:10:43 rj
73 // call constructor with additional pdu and create arguments.
75 // #if TCL ... #endif wrapped into #if META ... #endif
77 // changed `_' to `-' in file names.
79 // Revision 1.4 1994/10/08 04:18:22 rj
80 // code for meta structures added (provides information about the generated code itself).
82 // code for Tcl interface added (makes use of the above mentioned meta code).
84 // virtual inline functions (the destructor, the Clone() function, BEnc(), BDec() and Print()) moved from inc/*.h to src/*.C because g++ turns every one of them into a static non-inline function in every file where the .h file gets included.
86 // made Print() const (and some other, mainly comparison functions).
88 // several `unsigned long int' turned into `size_t'.
90 // Revision 1.3 1994/08/31 23:30:48 rj
91 // use the bool built-in where applicable, and a replacement type otherwise.
93 // Revision 1.2 1994/08/28 10:01:11 rj
94 // comment leader fixed.
96 // Revision 1.1 1994/08/28 09:20:58 rj
97 // first check-in. for a list of changes to the snacc-1.1 distribution please refer to the ChangeLog.
99 #include "asn-config.h"
102 #include "asn-type.h"
103 #include "asn-bool.h"
105 AsnType
* AsnBool :: Clone () const
110 AsnType
* AsnBool :: Copy () const
112 return new AsnBool (* this );
115 AsnLen
AsnBool :: BEnc ( BUF_TYPE b
)
119 BEncDefLenTo127 ( b
, l
);
121 l
+= BEncTag1 ( b
, UNIV
, PRIM
, BOOLEAN_TAG_CODE
);
125 void AsnBool :: BDec ( BUF_TYPE b
, AsnLen
& bytesDecoded
, ENV_TYPE env
)
128 if ( BDecTag ( b
, bytesDecoded
, env
) != MAKE_TAG_ID ( UNIV
, PRIM
, BOOLEAN_TAG_CODE
))
130 Asn1Error
<< "AsnBool::BDec: ERROR tag on BOOLEAN wrong." << endl
;
131 #if SNACC_EXCEPTION_ENABLE
132 SnaccExcep :: throwMe (- 51 );
137 elmtLen
= BDecLen ( b
, bytesDecoded
, env
);
139 BDecContent ( b
, MAKE_TAG_ID ( UNIV
, PRIM
, BOOLEAN_TAG_CODE
), elmtLen
, bytesDecoded
, env
);
142 // Decodes the content of a BOOLEAN and sets this object's value
143 // to the decoded value. Flags an error if the length is wrong
144 // or a read error occurs.
145 void AsnBool :: BDecContent ( BUF_TYPE b
, AsnTag tagId
, AsnLen elmtLen
, AsnLen
& bytesDecoded
, ENV_TYPE env
)
149 Asn1Error
<< "AsnBool::BDecContent: ERROR - boolean value too long." << endl
;
150 #if SNACC_EXCEPTION_ENABLE
151 SnaccExcep :: throwMe (- 5 );
157 value
= ( b
. GetByte () != 0 );
162 Asn1Error
<< "AsnBool::BDecContent: ERROR - decoded past end of data " << endl
;
163 #if SNACC_EXCEPTION_ENABLE
164 SnaccExcep :: throwMe (- 6 );
171 AsnLen
AsnBool :: BEncContent ( BUF_TYPE b
)
173 b
. PutByteRvs ( value
? 0xFF : 0 );
177 // print the BOOLEAN's value in ASN.1 value notation to the given ostream
178 void AsnBool :: Print ( ostream
& os
) const
181 os
<< ( value
? "TRUE" : "FALSE" );
187 const AsnTypeDesc
AsnBool :: _desc ( NULL
, NULL
, false , AsnTypeDesc :: BOOLEAN
, NULL
);
189 const AsnTypeDesc
* AsnBool :: _getdesc () const
196 int AsnBool :: TclGetVal ( Tcl_Interp
* interp
) const
198 Tcl_SetResult ( interp
, value
? "TRUE" : "FALSE" , TCL_STATIC
);
202 int AsnBool :: TclSetVal ( Tcl_Interp
* interp
, const char * valstr
)
206 if ( Tcl_GetBoolean ( interp
, ( char *) valstr
, & valval
) != TCL_OK
)