/platform/external/webkit/WebCore/bridge/IdentifierRep.cpp

https://github.com/aharish/totoro-gb-opensource-update2 · C++ · 111 lines · 64 code · 23 blank · 24 comment · 8 complexity · 97bda2743b60208d30011e74e5b25a6a MD5 · raw file

  1. /*
  2. * Copyright (C) 2009 Apple 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. #include "IdentifierRep.h"
  27. #include "PlatformString.h"
  28. #include <runtime/UString.h>
  29. #include <wtf/HashMap.h>
  30. #include <wtf/StdLibExtras.h>
  31. using namespace JSC;
  32. namespace WebCore {
  33. typedef HashSet<IdentifierRep*> IdentifierSet;
  34. static IdentifierSet& identifierSet()
  35. {
  36. DEFINE_STATIC_LOCAL(IdentifierSet, identifierSet, ());
  37. return identifierSet;
  38. }
  39. typedef HashMap<int, IdentifierRep*> IntIdentifierMap;
  40. static IntIdentifierMap& intIdentifierMap()
  41. {
  42. DEFINE_STATIC_LOCAL(IntIdentifierMap, intIdentifierMap, ());
  43. return intIdentifierMap;
  44. }
  45. IdentifierRep* IdentifierRep::get(int intID)
  46. {
  47. if (intID == 0 || intID == -1) {
  48. static IdentifierRep* negativeOneAndZeroIdentifiers[2];
  49. IdentifierRep* identifier = negativeOneAndZeroIdentifiers[intID + 1];
  50. if (!identifier) {
  51. identifier = new IdentifierRep(intID);
  52. negativeOneAndZeroIdentifiers[intID + 1] = identifier;
  53. }
  54. return identifier;
  55. }
  56. pair<IntIdentifierMap::iterator, bool> result = intIdentifierMap().add(intID, 0);
  57. if (result.second) {
  58. ASSERT(!result.first->second);
  59. result.first->second = new IdentifierRep(intID);
  60. identifierSet().add(result.first->second);
  61. }
  62. return result.first->second;
  63. }
  64. typedef HashMap<RefPtr<JSC::UString::Rep>, IdentifierRep*> StringIdentifierMap;
  65. static StringIdentifierMap& stringIdentifierMap()
  66. {
  67. DEFINE_STATIC_LOCAL(StringIdentifierMap, stringIdentifierMap, ());
  68. return stringIdentifierMap;
  69. }
  70. IdentifierRep* IdentifierRep::get(const char* name)
  71. {
  72. ASSERT(name);
  73. if (!name)
  74. return 0;
  75. UString string = String::fromUTF8WithLatin1Fallback(name, strlen(name));
  76. pair<StringIdentifierMap::iterator, bool> result = stringIdentifierMap().add(string.rep(), 0);
  77. if (result.second) {
  78. ASSERT(!result.first->second);
  79. result.first->second = new IdentifierRep(name);
  80. identifierSet().add(result.first->second);
  81. }
  82. return result.first->second;
  83. }
  84. bool IdentifierRep::isValid(IdentifierRep* identifier)
  85. {
  86. return identifierSet().contains(identifier);
  87. }
  88. } // namespace WebCore