Efficient proxies in Smalltalk

  • Authors:
  • Mariano Martinez Peck;Noury Bouraqadi;Marcus Denker;Stéphane Ducasse;Luc Fabresse

  • Affiliations:
  • Université de Lille and Université Lille Nord de France, Ecole des Mines de Douai;Université Lille Nord de France, Ecole des Mines de Douai;Université de Lille;Université de Lille;Université Lille Nord de France, Ecole des Mines de Douai

  • Venue:
  • Proceedings of the International Workshop on Smalltalk Technologies
  • Year:
  • 2011

Quantified Score

Hi-index 0.00

Visualization

Abstract

A proxy object is a surrogate or placeholder that controls access to another target object. Proxy objects are a widely used solution for different scenarios such as remote method invocation, future objects, behavioral reflection, object databases, inter-languages communications and bindings, access control, lazy or parallel evaluation, security, among others. Most proxy implementations support proxies for regular objects but they are unable to create proxies for classes or methods. Proxies can be complex to install, have a significant overhead, be limited to certain type of classes, etc. Moreover, most proxy implementations are not stratified at all and there is no separation between proxies and handlers. In this paper, we present Ghost, a uniform, light-weight and stratified general purpose proxy model and its Smalltalk implementation. Ghost supports proxies for classes or methods. When a proxy takes the place of a class it intercepts both, messages received by the class and lookup of methods for messages received by instances. Similarly, if a proxy takes the place of a method, then the method execution is intercepted too.