1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is Mozilla Communicator client code, released
19 * The Initial Developer of the Original Code is
20 * Netscape Communications Corporation.
21 * Portions created by the Initial Developer are Copyright (C) 1998
22 * the Initial Developer. All Rights Reserved.
26 * Alternatively, the contents of this file may be used under the terms of
27 * either of the GNU General Public License Version 2 or later (the "GPL"),
28 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
41 * JS boolean implementation.
45 #include "jsutil.h" /* Added by JSIFY */
50 #include "jsversion.h"
57 /* Check pseudo-booleans values. */
58 JS_STATIC_ASSERT(JSVAL_VOID
== JSVAL_TRUE
+ JSVAL_ALIGN
);
59 JS_STATIC_ASSERT(JSVAL_HOLE
== JSVAL_VOID
+ JSVAL_ALIGN
);
60 JS_STATIC_ASSERT(JSVAL_ARETURN
== JSVAL_HOLE
+ JSVAL_ALIGN
);
62 JSClass js_BooleanClass
= {
64 JSCLASS_HAS_PRIVATE
| JSCLASS_HAS_CACHED_PROTO(JSProto_Boolean
),
65 JS_PropertyStub
, JS_PropertyStub
, JS_PropertyStub
, JS_PropertyStub
,
66 JS_EnumerateStub
, JS_ResolveStub
, JS_ConvertStub
, JS_FinalizeStub
,
67 JSCLASS_NO_OPTIONAL_MEMBERS
74 bool_toSource(JSContext
*cx
, uintN argc
, jsval
*vp
)
80 if (!js_GetPrimitiveThis(cx
, vp
, &js_BooleanClass
, &v
))
82 JS_ASSERT(JSVAL_IS_BOOLEAN(v
));
83 JS_snprintf(buf
, sizeof buf
, "(new %s(%s))",
85 JS_BOOLEAN_STR(JSVAL_TO_BOOLEAN(v
)));
86 str
= JS_NewStringCopyZ(cx
, buf
);
89 *vp
= STRING_TO_JSVAL(str
);
95 bool_toString(JSContext
*cx
, uintN argc
, jsval
*vp
)
101 if (!js_GetPrimitiveThis(cx
, vp
, &js_BooleanClass
, &v
))
103 JS_ASSERT(JSVAL_IS_BOOLEAN(v
));
104 atom
= cx
->runtime
->atomState
.booleanAtoms
[JSVAL_TO_BOOLEAN(v
) ? 1 : 0];
105 str
= ATOM_TO_STRING(atom
);
108 *vp
= STRING_TO_JSVAL(str
);
113 bool_valueOf(JSContext
*cx
, uintN argc
, jsval
*vp
)
115 return js_GetPrimitiveThis(cx
, vp
, &js_BooleanClass
, vp
);
118 static JSFunctionSpec boolean_methods
[] = {
120 JS_FN(js_toSource_str
, bool_toSource
, 0, JSFUN_THISP_BOOLEAN
),
122 JS_FN(js_toString_str
, bool_toString
, 0, JSFUN_THISP_BOOLEAN
),
123 JS_FN(js_valueOf_str
, bool_valueOf
, 0, JSFUN_THISP_BOOLEAN
),
124 JS_FN(js_toJSON_str
, bool_valueOf
, 0, JSFUN_THISP_BOOLEAN
),
129 Boolean(JSContext
*cx
, JSObject
*obj
, uintN argc
, jsval
*argv
, jsval
*rval
)
134 ? BOOLEAN_TO_JSVAL(js_ValueToBoolean(argv
[0]))
136 if (!JS_IsConstructing(cx
)) {
140 STOBJ_SET_SLOT(obj
, JSSLOT_PRIVATE
, bval
);
145 js_InitBooleanClass(JSContext
*cx
, JSObject
*obj
)
149 proto
= JS_InitClass(cx
, obj
, NULL
, &js_BooleanClass
, Boolean
, 1,
150 NULL
, boolean_methods
, NULL
, NULL
);
153 STOBJ_SET_SLOT(proto
, JSSLOT_PRIVATE
, JSVAL_FALSE
);
158 js_BooleanToString(JSContext
*cx
, JSBool b
)
160 return ATOM_TO_STRING(cx
->runtime
->atomState
.booleanAtoms
[b
? 1 : 0]);
164 js_ValueToBoolean(jsval v
)
166 if (JSVAL_IS_NULL(v
) || JSVAL_IS_VOID(v
))
168 if (JSVAL_IS_OBJECT(v
))
170 if (JSVAL_IS_STRING(v
))
171 return JSSTRING_LENGTH(JSVAL_TO_STRING(v
)) != 0;
173 return JSVAL_TO_INT(v
) != 0;
174 if (JSVAL_IS_DOUBLE(v
)) {
177 d
= *JSVAL_TO_DOUBLE(v
);
178 return !JSDOUBLE_IS_NaN(d
) && d
!= 0;
180 JS_ASSERT(JSVAL_IS_BOOLEAN(v
));
181 return JSVAL_TO_BOOLEAN(v
);