Skip to content

Commit c370fe8

Browse files
committed
update proxy
1 parent e53446c commit c370fe8

File tree

3 files changed

+83
-15
lines changed

3 files changed

+83
-15
lines changed

structural_design_pattern/proxy/3rd_party_youtube_example/main.dart

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import 'dart:math';
2-
31
import 'video_model.dart';
42

53
int lineNum = 0;

structural_design_pattern/proxy/README.md

+81-11
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ also Known as `Surrogate`
88
>> - A proxy controls access to the original object,
99
>> - allowing you to perform something either before or after the request gets through to the original object.
1010
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.
1212

1313
<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" >
1515
</p>
1616
<p align="center">
1717
<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
3636

3737
- <details>
3838
<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>
4141

4242

4343

4444
- <details>
4545
<summary> <h3 style="display: inline;"> Wikipedia</h3> </summary>
4646

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***.
4848
- 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`
5050
- that is expensive or impossible to duplicate.
5151
> - In short, a proxy is a wrapper or agent object that is being called by the client
5252
>- to access the real serving object behind the scenes.
5353
>- Use of the proxy can simply be forwarding to the real object, or can provide additional logic.
5454
>- In the proxy, extra functionality can be provided,
5555
>---
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.
6060
</details>
6161
6262

@@ -127,6 +127,72 @@ Proxy is applicable whenever there is a need for a more versatile or sophisticat
127127
- Example in dart: <a href="image_example/" target="_blank"> click here </a>
128128
- Example Source: GOF && https://www.tutorialspoint.com/design_pattern/proxy_pattern.htm
129129

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+
```
130196

131197
### 3rd party youtube example
132198
- 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
140206
<table>
141207
<tr>
142208
<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>
144210
</tr>
145211
</table>
146212

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.
147217
## Sources
148218

149219
- https://refactoring.guru/design-patterns/proxy#:~:text=Proxy%20is%20a%20structural%20design,through%20to%20the%20original%20object.

structural_design_pattern/proxy/image_example/image_example.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ class RealImage implements Graphic {
1111
}
1212

1313
/// Loads the image from the disk
14-
void _loadImageFromDisk() => print("Loading " + _filename);
14+
void _loadImageFromDisk() => print("Loading $_filename");
1515

1616
/// Displays the image
17-
void displayImage() => print("Displaying " + _filename);
17+
void displayImage() => print("Displaying $_filename");
1818
}
1919

2020
// On System B

0 commit comments

Comments
 (0)