proxy.js 5.25 KB
Newer Older
1
// Copyright 2011 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5 6
"use strict";

7 8 9
// This file relies on the fact that the following declaration has been made
// in runtime.js:
// var $Object = global.Object;
10

11 12 13
var $Proxy = new $Object();

// -------------------------------------------------------------------
14

15
function ProxyCreate(handler, proto) {
16 17
  if (!IS_SPEC_OBJECT(handler))
    throw MakeTypeError("handler_non_object", ["create"])
18 19
  if (IS_UNDEFINED(proto))
    proto = null
20
  else if (!(IS_SPEC_OBJECT(proto) || IS_NULL(proto)))
21
    throw MakeTypeError("proto_non_object", ["create"])
22 23
  return %CreateJSProxy(handler, proto)
}
24

25
function ProxyCreateFunction(handler, callTrap, constructTrap) {
26 27 28 29 30
  if (!IS_SPEC_OBJECT(handler))
    throw MakeTypeError("handler_non_object", ["create"])
  if (!IS_SPEC_FUNCTION(callTrap))
    throw MakeTypeError("trap_function_expected", ["createFunction", "call"])
  if (IS_UNDEFINED(constructTrap)) {
31
    constructTrap = DerivedConstructTrap(callTrap)
32
  } else if (IS_SPEC_FUNCTION(constructTrap)) {
33 34 35
    // Make sure the trap receives 'undefined' as this.
    var construct = constructTrap
    constructTrap = function() {
36
      return %Apply(construct, UNDEFINED, arguments, 0, %_ArgumentsLength());
37 38
    }
  } else {
39 40 41 42
    throw MakeTypeError("trap_function_expected",
                        ["createFunction", "construct"])
  }
  return %CreateJSFunctionProxy(
43
    handler, callTrap, constructTrap, $Function.prototype)
44
}
45

46 47 48 49 50 51

// -------------------------------------------------------------------

function SetUpProxy() {
  %CheckIsBootstrapping()

52 53
  var global_proxy = %GlobalProxy(global);
  global_proxy.Proxy = $Proxy;
54 55 56 57 58 59 60 61 62

  // Set up non-enumerable properties of the Proxy object.
  InstallFunctions($Proxy, DONT_ENUM, [
    "create", ProxyCreate,
    "createFunction", ProxyCreateFunction
  ])
}

SetUpProxy();
63 64


65 66
// -------------------------------------------------------------------
// Proxy Builtins
67

68 69 70 71
function DerivedConstructTrap(callTrap) {
  return function() {
    var proto = this.prototype
    if (!IS_SPEC_OBJECT(proto)) proto = $Object.prototype
72
    var obj = { __proto__: proto };
73
    var result = %Apply(callTrap, obj, arguments, 0, %_ArgumentsLength());
74 75 76 77
    return IS_SPEC_OBJECT(result) ? result : obj
  }
}

78 79 80 81 82 83 84
function DelegateCallAndConstruct(callTrap, constructTrap) {
  return function() {
    return %Apply(%_IsConstructCall() ? constructTrap : callTrap,
                  this, arguments, 0, %_ArgumentsLength())
  }
}

85 86
function DerivedGetTrap(receiver, name) {
  var desc = this.getPropertyDescriptor(name)
87
  if (IS_UNDEFINED(desc)) { return desc }
88 89 90
  if ('value' in desc) {
    return desc.value
  } else {
91 92 93
    if (IS_UNDEFINED(desc.get)) { return desc.get }
    // The proposal says: desc.get.call(receiver)
    return %_CallFunction(receiver, desc.get)
94 95
  }
}
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142

function DerivedSetTrap(receiver, name, val) {
  var desc = this.getOwnPropertyDescriptor(name)
  if (desc) {
    if ('writable' in desc) {
      if (desc.writable) {
        desc.value = val
        this.defineProperty(name, desc)
        return true
      } else {
        return false
      }
    } else { // accessor
      if (desc.set) {
        // The proposal says: desc.set.call(receiver, val)
        %_CallFunction(receiver, val, desc.set)
        return true
      } else {
        return false
      }
    }
  }
  desc = this.getPropertyDescriptor(name)
  if (desc) {
    if ('writable' in desc) {
      if (desc.writable) {
        // fall through
      } else {
        return false
      }
    } else { // accessor
      if (desc.set) {
        // The proposal says: desc.set.call(receiver, val)
        %_CallFunction(receiver, val, desc.set)
        return true
      } else {
        return false
      }
    }
  }
  this.defineProperty(name, {
    value: val,
    writable: true,
    enumerable: true,
    configurable: true});
  return true;
}
143 144 145 146

function DerivedHasTrap(name) {
  return !!this.getPropertyDescriptor(name)
}
147

148 149 150 151
function DerivedHasOwnTrap(name) {
  return !!this.getOwnPropertyDescriptor(name)
}

152 153 154 155 156
function DerivedKeysTrap() {
  var names = this.getOwnPropertyNames()
  var enumerableNames = []
  for (var i = 0, count = 0; i < names.length; ++i) {
    var name = names[i]
157
    if (IS_SYMBOL(name)) continue
158 159
    var desc = this.getOwnPropertyDescriptor(TO_STRING_INLINE(name))
    if (!IS_UNDEFINED(desc) && desc.enumerable) {
160 161 162 163 164
      enumerableNames[count++] = names[i]
    }
  }
  return enumerableNames
}
165 166 167 168 169 170

function DerivedEnumerateTrap() {
  var names = this.getPropertyNames()
  var enumerableNames = []
  for (var i = 0, count = 0; i < names.length; ++i) {
    var name = names[i]
171
    if (IS_SYMBOL(name)) continue
172
    var desc = this.getPropertyDescriptor(TO_STRING_INLINE(name))
173 174 175 176 177 178
    if (!IS_UNDEFINED(desc)) {
      if (!desc.configurable) {
        throw MakeTypeError("proxy_prop_not_configurable",
            [this, "getPropertyDescriptor", name])
      }
      if (desc.enumerable) enumerableNames[count++] = names[i]
179 180 181 182 183 184 185 186 187 188
    }
  }
  return enumerableNames
}

function ProxyEnumerate(proxy) {
  var handler = %GetHandler(proxy)
  if (IS_UNDEFINED(handler.enumerate)) {
    return %Apply(DerivedEnumerateTrap, handler, [], 0, 0)
  } else {
189
    return ToNameArray(handler.enumerate(), "enumerate", false)
190 191
  }
}