PageRenderTime 34ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/js/jsbool.cpp

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
C++ | 182 lines | 123 code | 17 blank | 42 comment | 20 complexity | 4e0d2a7b89debc911876c3fa7f6c5eb0 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  1. /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2. *
  3. * ***** BEGIN LICENSE BLOCK *****
  4. * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5. *
  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/
  10. *
  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
  14. * License.
  15. *
  16. * The Original Code is Mozilla Communicator client code, released
  17. * March 31, 1998.
  18. *
  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.
  23. *
  24. * Contributor(s):
  25. *
  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.
  37. *
  38. * ***** END LICENSE BLOCK ***** */
  39. /*
  40. * JS boolean implementation.
  41. */
  42. #include "jsstddef.h"
  43. #include "jstypes.h"
  44. #include "jsutil.h" /* Added by JSIFY */
  45. #include "jsapi.h"
  46. #include "jsatom.h"
  47. #include "jsbool.h"
  48. #include "jscntxt.h"
  49. #include "jsversion.h"
  50. #include "jsinterp.h"
  51. #include "jslock.h"
  52. #include "jsnum.h"
  53. #include "jsobj.h"
  54. #include "jsstr.h"
  55. /* Check pseudo-booleans values. */
  56. JS_STATIC_ASSERT(JSVAL_VOID == JSVAL_TRUE + JSVAL_ALIGN);
  57. JS_STATIC_ASSERT(JSVAL_HOLE == JSVAL_VOID + JSVAL_ALIGN);
  58. JS_STATIC_ASSERT(JSVAL_ARETURN == JSVAL_HOLE + JSVAL_ALIGN);
  59. JSClass js_BooleanClass = {
  60. "Boolean",
  61. JSCLASS_HAS_PRIVATE | JSCLASS_HAS_CACHED_PROTO(JSProto_Boolean),
  62. JS_PropertyStub, JS_PropertyStub, JS_PropertyStub, JS_PropertyStub,
  63. JS_EnumerateStub, JS_ResolveStub, JS_ConvertStub, JS_FinalizeStub,
  64. JSCLASS_NO_OPTIONAL_MEMBERS
  65. };
  66. #if JS_HAS_TOSOURCE
  67. #include "jsprf.h"
  68. static JSBool
  69. bool_toSource(JSContext *cx, uintN argc, jsval *vp)
  70. {
  71. jsval v;
  72. char buf[32];
  73. JSString *str;
  74. if (!js_GetPrimitiveThis(cx, vp, &js_BooleanClass, &v))
  75. return JS_FALSE;
  76. JS_ASSERT(JSVAL_IS_BOOLEAN(v));
  77. JS_snprintf(buf, sizeof buf, "(new %s(%s))",
  78. js_BooleanClass.name,
  79. JS_BOOLEAN_STR(JSVAL_TO_BOOLEAN(v)));
  80. str = JS_NewStringCopyZ(cx, buf);
  81. if (!str)
  82. return JS_FALSE;
  83. *vp = STRING_TO_JSVAL(str);
  84. return JS_TRUE;
  85. }
  86. #endif
  87. static JSBool
  88. bool_toString(JSContext *cx, uintN argc, jsval *vp)
  89. {
  90. jsval v;
  91. JSAtom *atom;
  92. JSString *str;
  93. if (!js_GetPrimitiveThis(cx, vp, &js_BooleanClass, &v))
  94. return JS_FALSE;
  95. JS_ASSERT(JSVAL_IS_BOOLEAN(v));
  96. atom = cx->runtime->atomState.booleanAtoms[JSVAL_TO_BOOLEAN(v) ? 1 : 0];
  97. str = ATOM_TO_STRING(atom);
  98. if (!str)
  99. return JS_FALSE;
  100. *vp = STRING_TO_JSVAL(str);
  101. return JS_TRUE;
  102. }
  103. static JSBool
  104. bool_valueOf(JSContext *cx, uintN argc, jsval *vp)
  105. {
  106. return js_GetPrimitiveThis(cx, vp, &js_BooleanClass, vp);
  107. }
  108. static JSFunctionSpec boolean_methods[] = {
  109. #if JS_HAS_TOSOURCE
  110. JS_FN(js_toSource_str, bool_toSource, 0, JSFUN_THISP_BOOLEAN),
  111. #endif
  112. JS_FN(js_toString_str, bool_toString, 0, JSFUN_THISP_BOOLEAN),
  113. JS_FN(js_valueOf_str, bool_valueOf, 0, JSFUN_THISP_BOOLEAN),
  114. JS_FN(js_toJSON_str, bool_valueOf, 0, JSFUN_THISP_BOOLEAN),
  115. JS_FS_END
  116. };
  117. static JSBool
  118. Boolean(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval)
  119. {
  120. jsval bval;
  121. bval = (argc != 0)
  122. ? BOOLEAN_TO_JSVAL(js_ValueToBoolean(argv[0]))
  123. : JSVAL_FALSE;
  124. if (!(cx->fp->flags & JSFRAME_CONSTRUCTING)) {
  125. *rval = bval;
  126. return JS_TRUE;
  127. }
  128. STOBJ_SET_SLOT(obj, JSSLOT_PRIVATE, bval);
  129. return JS_TRUE;
  130. }
  131. JSObject *
  132. js_InitBooleanClass(JSContext *cx, JSObject *obj)
  133. {
  134. JSObject *proto;
  135. proto = JS_InitClass(cx, obj, NULL, &js_BooleanClass, Boolean, 1,
  136. NULL, boolean_methods, NULL, NULL);
  137. if (!proto)
  138. return NULL;
  139. STOBJ_SET_SLOT(proto, JSSLOT_PRIVATE, JSVAL_FALSE);
  140. return proto;
  141. }
  142. JSString *
  143. js_BooleanToString(JSContext *cx, JSBool b)
  144. {
  145. return ATOM_TO_STRING(cx->runtime->atomState.booleanAtoms[b ? 1 : 0]);
  146. }
  147. JSBool
  148. js_ValueToBoolean(jsval v)
  149. {
  150. if (JSVAL_IS_NULL(v) || JSVAL_IS_VOID(v))
  151. return JS_FALSE;
  152. if (JSVAL_IS_OBJECT(v))
  153. return JS_TRUE;
  154. if (JSVAL_IS_STRING(v))
  155. return JSSTRING_LENGTH(JSVAL_TO_STRING(v)) != 0;
  156. if (JSVAL_IS_INT(v))
  157. return JSVAL_TO_INT(v) != 0;
  158. if (JSVAL_IS_DOUBLE(v)) {
  159. jsdouble d;
  160. d = *JSVAL_TO_DOUBLE(v);
  161. return !JSDOUBLE_IS_NaN(d) && d != 0;
  162. }
  163. JS_ASSERT(JSVAL_IS_BOOLEAN(v));
  164. return JSVAL_TO_BOOLEAN(v);
  165. }