结构
结构型设计模式之代理模式(Proxy)
意图 为其他对象提供一种代理以控制对这个对象的访问。
适用性
  • 在需要用比较通用和复杂的对象指针代替简单的指针的时候,使用P r o x y 模式。下面是一 些可以使用P r o x y 模式常见情况: 1) 远程代理(Remote Proxy )为一个对象在不同的地址空间提供局部代表。 NEXTSTEP[Add94] 使用N X P r o x y 类实现了这一目的。Coplien[Cop92] 称这种代理为“大使” (A m b a s s a d o r )。 2 )虚代理(Virtual Proxy )根据需要创建开销很大的对象。在动机一节描述的I m a g e P r o x y 就是这样一种代理的例子。 3) 保护代理(Protection Proxy )控制对原始对象的访问。保护代理用于对象应该有不同 的访问权限的时候。例如,在C h o i c e s 操作系统[ C I R M 9 3 ]中K e m e l P r o x i e s 为操作系统对象提供 了访问保护。 4 )智能指引(Smart Reference )取代了简单的指针,它在访问对象时执行一些附加操作。 它的典型用途包括:
  • 对指向实际对象的引用计数,这样当该对象没有引用时,可以自动释放它(也称为S m a r tP o i n t e r s[ E d e 9 2 ] )。
  • 当第一次引用一个持久对象时,将它装入内存。
  • 在访问一个实际对象前,检查是否已经锁定了它,以确保其他对象不能改变它。

 

 1 using System;
 2     using System.Threading;
 3 
 4     /// <summary>
 5     ///    Summary description for Client.
 6     /// </summary>
 7     abstract class CommonSubject 
 8     {
 9         abstract public void Request();        
10     }
11 
12     class ActualSubject : CommonSubject
13     {
14         public ActualSubject()
15         {
16             // Assume constructor here does some operation that takes quite a
17             // while - hence the need for a proxy - to delay incurring this 
18             // delay until (and if) the actual subject is needed
19             Console.WriteLine("Starting to construct ActualSubject");        
20             Thread.Sleep(1000); // represents lots of processing! 
21             Console.WriteLine("Finished constructing ActualSubject");
22         }
23             
24             override public void Request()
25         {
26             Console.WriteLine("Executing request in ActualSubject");
27         }
28     }
29 
30     class Proxy : CommonSubject
31     {
32         ActualSubject actualSubject;
33 
34         override public void Request()
35         {
36             if (actualSubject == null)
37                 actualSubject = new ActualSubject();
38             actualSubject.Request();
39         }    
40         
41     }
42     
43     public class Client
44     {
45         public static int Main(string[] args)
46         {
47             Proxy p = new Proxy();
48 
49             // Perform actions here
50             // . . . 
51 
52             if (1==1)        // at some later point, based on a condition, 
53                 p.Request();// we determine if we need to use subject
54                                 
55             return 0;
56         }
57     }
代理模式

分类:

技术点:

相关文章: