@@ -8,10 +8,10 @@ also Known as `Surrogate`
8
8
>> - A proxy controls access to the original object,
9
9
>> - allowing you to perform something either before or after the request gets through to the original object.
10
10
11
- image form : https://refactoring.guru/design-patterns/proxy#:~:text=Proxy%20is%20a%20structural%20design,through%20to%20the%20original%20object .
11
+ image source : https://refactoring.guru/design-patterns/proxy#:~:text=Proxy%20is%20a%20structural%20design,through%20to%20the%20original%20object .
12
12
13
13
<p align =" center " >
14
- <img style="background-color:#5547 " src = "assets/proxy_structure.png" >
14
+ <img style="background-color:#554777 " src = "assets/proxy_structure.png" >
15
15
</p >
16
16
<p align =" center " >
17
17
<img style="background-color:#5547" src = "assets/proxy_structure_java_insider.gif" >
@@ -36,27 +36,27 @@ image form: https://refactoring.guru/design-patterns/proxy#:~:text=Proxy%20is%20
36
36
37
37
- <details >
38
38
<summary > <h3 style =" display : inline ;" > Tutorial Point</h3 > </summary >
39
- - a class represents functionality of another class.
40
- </details >
39
+ - a class represents functionality of another class.
40
+ </details >
41
41
42
42
43
43
44
44
- <details >
45
45
<summary > <h3 style =" display : inline ;" > Wikipedia</h3 > </summary >
46
46
47
- - A proxy: in its most general form, is a ** class functioning as an interface to something else** .
47
+ - A proxy: in its most general form, is a *** class functioning as an interface to something else* ** .
48
48
- The proxy could interface to anything:
49
- - a ` network connection ` , a` large object in memory` , a ` file ` , or` some other resource`
49
+ - a ` network connection ` , a ` large object in memory ` , a ` file ` , or ` some other resource `
50
50
- that is expensive or impossible to duplicate.
51
51
> - In short, a proxy is a wrapper or agent object that is being called by the client
52
52
> - to access the real serving object behind the scenes.
53
53
> - Use of the proxy can simply be forwarding to the real object, or can provide additional logic.
54
54
> - In the proxy, extra functionality can be provided,
55
55
> ---
56
- - > for example ---
57
- - > caching when operations on the real object are resource intensive,
58
- - > or checking preconditions before operations on the real object are invoked.
59
- - > For the client, usage of a proxy object is similar to using the real object, because both implement the same interface.
56
+ > - for example ---
57
+ > - caching when operations on the real object are resource intensive,
58
+ > - or checking preconditions before operations on the real object are invoked.
59
+ > - For the client, usage of a proxy object is similar to using the real object, because both implement the same interface.
60
60
</details>
61
61
62
62
@@ -127,6 +127,72 @@ Proxy is applicable whenever there is a need for a more versatile or sophisticat
127
127
- Example in dart: <a href =" image_example/ " target =" _blank " > click here </a >
128
128
- Example Source: GOF && https://www.tutorialspoint.com/design_pattern/proxy_pattern.htm
129
129
130
+ #### code
131
+ ``` dart
132
+ abstract class Graphic {
133
+ void displayImage();
134
+ }
135
+
136
+ // On System A
137
+ class RealImage implements Graphic {
138
+ final String _filename;
139
+
140
+ RealImage(this._filename) {
141
+ _loadImageFromDisk();
142
+ }
143
+
144
+ /// Loads the image from the disk
145
+ void _loadImageFromDisk() => print("Loading $_filename");
146
+
147
+ /// Displays the image
148
+ void displayImage() => print("Displaying $_filename");
149
+ }
150
+
151
+ // On System B
152
+ class ProxyImage implements Graphic {
153
+ final String _filename;
154
+ RealImage? _image;
155
+
156
+ ProxyImage(this._filename);
157
+
158
+ /// Displays the image
159
+ void displayImage() {
160
+ if (_image == null) {
161
+ _image = RealImage(_filename);
162
+ } else {
163
+ _image!.displayImage();
164
+ }
165
+ }
166
+ }
167
+
168
+ // Test method
169
+ void main(List<String> arguments) {
170
+ Graphic image1 = ProxyImage("HiRes_10MB_Photo1");
171
+ Graphic image2 = ProxyImage("HiRes_10MB_Photo2");
172
+
173
+ print("--- image1----");
174
+ image1.displayImage(); // loading necessary
175
+ image1.displayImage(); // loading unnecessary
176
+ print("--- image2----");
177
+ image2.displayImage(); // loading necessary
178
+ image2.displayImage(); // loading unnecessary
179
+ print("--- image1----");
180
+ print("image1.displayImage() again = will display without loading ");
181
+ image1.displayImage(); // loading unnecessary
182
+ }
183
+
184
+ // Output
185
+
186
+ // --- image1----
187
+ // Loading HiRes_10MB_Photo1
188
+ // Displaying HiRes_10MB_Photo1
189
+ // --- image2----
190
+ // Loading HiRes_10MB_Photo2
191
+ // Displaying HiRes_10MB_Photo2
192
+ // --- image1----
193
+ // image1.displayImage() again = will display without loading
194
+ // Displaying HiRes_10MB_Photo1
195
+ ```
130
196
131
197
### 3rd party youtube example
132
198
- Example in dart: <a href =" 3rd_party_youtube_example/ " target =" _blank " > click here </a >
@@ -140,10 +206,14 @@ Proxy is applicable whenever there is a need for a more versatile or sophisticat
140
206
<table >
141
207
<tr >
142
208
<td><img src="assets/proxy_simplify.jpeg"></td>
143
- <td><img style="background-color:#5547 " src="assets/Proxy_example.png"><td>
209
+ <td><img style="background-color:#554700 " src="assets/Proxy_example.png"><td>
144
210
</tr >
145
211
</table >
146
212
213
+ ## Summery
214
+ - A proxy, in its most general form, is a class functioning as an interface to something else.
215
+ - The proxy could interface to anything: a network connection, a large object in memory, a file, or some other resource that is expensive or impossible to duplicate.
216
+ - In short, a proxy is a wrapper or agent object that is being called by the client to access the real serving object behind the scenes.
147
217
## Sources
148
218
149
219
- https://refactoring.guru/design-patterns/proxy#:~:text=Proxy%20is%20a%20structural%20design,through%20to%20the%20original%20object .
0 commit comments