/platform/external/webkit/WebCore/bridge/c/c_class.cpp

https://github.com/aharish/totoro-gb-opensource-update2 · C++ · 119 lines · 74 code · 21 blank · 24 comment · 8 complexity · 4108a33f9af7b266fc80de6eb434eacd MD5 · raw file

  1. /*
  2. * Copyright (C) 2003, 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. #include "config.h"
  26. #if ENABLE(NETSCAPE_PLUGIN_API)
  27. #include "c_class.h"
  28. #include "c_instance.h"
  29. #include "c_runtime.h"
  30. #include "npruntime_impl.h"
  31. #include <runtime/Identifier.h>
  32. #include <runtime/JSLock.h>
  33. namespace JSC { namespace Bindings {
  34. CClass::CClass(NPClass* aClass)
  35. {
  36. _isa = aClass;
  37. }
  38. CClass::~CClass()
  39. {
  40. JSLock lock(SilenceAssertionsOnly);
  41. deleteAllValues(_methods);
  42. _methods.clear();
  43. deleteAllValues(_fields);
  44. _fields.clear();
  45. }
  46. typedef HashMap<NPClass*, CClass*> ClassesByIsAMap;
  47. static ClassesByIsAMap* classesByIsA = 0;
  48. CClass* CClass::classForIsA(NPClass* isa)
  49. {
  50. if (!classesByIsA)
  51. classesByIsA = new ClassesByIsAMap;
  52. CClass* aClass = classesByIsA->get(isa);
  53. if (!aClass) {
  54. aClass = new CClass(isa);
  55. classesByIsA->set(isa, aClass);
  56. }
  57. return aClass;
  58. }
  59. MethodList CClass::methodsNamed(const Identifier& identifier, Instance* instance) const
  60. {
  61. MethodList methodList;
  62. Method* method = _methods.get(identifier.ustring().rep());
  63. if (method) {
  64. methodList.append(method);
  65. return methodList;
  66. }
  67. NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii());
  68. const CInstance* inst = static_cast<const CInstance*>(instance);
  69. NPObject* obj = inst->getObject();
  70. if (_isa->hasMethod && _isa->hasMethod(obj, ident)){
  71. Method* aMethod = new CMethod(ident); // deleted in the CClass destructor
  72. {
  73. JSLock lock(SilenceAssertionsOnly);
  74. _methods.set(identifier.ustring().rep(), aMethod);
  75. }
  76. methodList.append(aMethod);
  77. }
  78. return methodList;
  79. }
  80. Field* CClass::fieldNamed(const Identifier& identifier, Instance* instance) const
  81. {
  82. Field* aField = _fields.get(identifier.ustring().rep());
  83. if (aField)
  84. return aField;
  85. NPIdentifier ident = _NPN_GetStringIdentifier(identifier.ascii());
  86. const CInstance* inst = static_cast<const CInstance*>(instance);
  87. NPObject* obj = inst->getObject();
  88. if (_isa->hasProperty && _isa->hasProperty(obj, ident)){
  89. aField = new CField(ident); // deleted in the CClass destructor
  90. {
  91. JSLock lock(SilenceAssertionsOnly);
  92. _fields.set(identifier.ustring().rep(), aField);
  93. }
  94. }
  95. return aField;
  96. }
  97. } } // namespace JSC::Bindings
  98. #endif // ENABLE(NETSCAPE_PLUGIN_API)