JSContextRef.h 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (C) 2006 Apple Computer, Inc. All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions
  6. * are met:
  7. * 1. Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * 2. Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. *
  13. * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
  14. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  15. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  16. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
  17. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  18. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  19. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  20. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  21. * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  23. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #ifndef JSContextRef_h
  26. #define JSContextRef_h
  27. #include <JavaScriptCore/JSObjectRef.h>
  28. #include <JavaScriptCore/JSValueRef.h>
  29. #include <JavaScriptCore/WebKitAvailability.h>
  30. #ifndef __cplusplus
  31. #include <stdbool.h>
  32. #endif
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. /*!
  37. @function
  38. @abstract Creates a JavaScript context group.
  39. @discussion A JSContextGroup associates JavaScript contexts with one another.
  40. Contexts in the same group may share and exchange JavaScript objects. Sharing and/or exchanging
  41. JavaScript objects between contexts in different groups will produce undefined behavior.
  42. When objects from the same context group are used in multiple threads, explicit
  43. synchronization is required.
  44. @result The created JSContextGroup.
  45. */
  46. JS_EXPORT JSContextGroupRef JSContextGroupCreate() AVAILABLE_IN_WEBKIT_VERSION_4_0;
  47. /*!
  48. @function
  49. @abstract Retains a JavaScript context group.
  50. @param group The JSContextGroup to retain.
  51. @result A JSContextGroup that is the same as group.
  52. */
  53. JS_EXPORT JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  54. /*!
  55. @function
  56. @abstract Releases a JavaScript context group.
  57. @param group The JSContextGroup to release.
  58. */
  59. JS_EXPORT void JSContextGroupRelease(JSContextGroupRef group) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  60. /*!
  61. @function
  62. @abstract Creates a global JavaScript execution context.
  63. @discussion JSGlobalContextCreate allocates a global object and populates it with all the
  64. built-in JavaScript objects, such as Object, Function, String, and Array.
  65. In WebKit version 4.0 and later, the context is created in a unique context group.
  66. Therefore, scripts may execute in it concurrently with scripts executing in other contexts.
  67. However, you may not use values created in the context in other contexts.
  68. @param globalObjectClass The class to use when creating the global object. Pass
  69. NULL to use the default object class.
  70. @result A JSGlobalContext with a global object of class globalObjectClass.
  71. */
  72. JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectClass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
  73. /*!
  74. @function
  75. @abstract Creates a global JavaScript execution context in the context group provided.
  76. @discussion JSGlobalContextCreateInGroup allocates a global object and populates it with
  77. all the built-in JavaScript objects, such as Object, Function, String, and Array.
  78. @param globalObjectClass The class to use when creating the global object. Pass
  79. NULL to use the default object class.
  80. @param group The context group to use. The created global context retains the group.
  81. Pass NULL to create a unique group for the context.
  82. @result A JSGlobalContext with a global object of class globalObjectClass and a context
  83. group equal to group.
  84. */
  85. JS_EXPORT JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  86. /*!
  87. @function
  88. @abstract Retains a global JavaScript execution context.
  89. @param ctx The JSGlobalContext to retain.
  90. @result A JSGlobalContext that is the same as ctx.
  91. */
  92. JS_EXPORT JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx);
  93. /*!
  94. @function
  95. @abstract Releases a global JavaScript execution context.
  96. @param ctx The JSGlobalContext to release.
  97. */
  98. JS_EXPORT void JSGlobalContextRelease(JSGlobalContextRef ctx);
  99. /*!
  100. @function
  101. @abstract Gets the global object of a JavaScript execution context.
  102. @param ctx The JSContext whose global object you want to get.
  103. @result ctx's global object.
  104. */
  105. JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx);
  106. /*!
  107. @function
  108. @abstract Gets the context group to which a JavaScript execution context belongs.
  109. @param ctx The JSContext whose group you want to get.
  110. @result ctx's group.
  111. */
  112. JS_EXPORT JSContextGroupRef JSContextGetGroup(JSContextRef ctx) AVAILABLE_IN_WEBKIT_VERSION_4_0;
  113. #ifdef __cplusplus
  114. }
  115. #endif
  116. #endif /* JSContextRef_h */