Thursday, December 10, 2015

[Structural Pattern] Facade pattern trong Objective C

Khái niệm: Facade pattern cung cấp một interface thống nhất để nhóm những interface khác vào trong một hệ thống con. Facade định nghĩa một interface ở mức độ cao hơn để giúp cho hệ thống con dễ dàng sử dụng, giảm độ phức tạp của hệ thống.
Source from Design Patterns ebook 

Sơ đồ lớp: Ví dụ đơn giản như một hệ thống con trong máy tính gồm có những đối tượng riêng rẽ như: CPU, Memory, HardDrive, ... Những đối tượng này hoạt động độc lập và có chức năng riêng. Làm thế nào để máy tính hoạt động dựa trên những đối tượng đó? Chúng ta phải tạo đối tượng ComputerFacade để quản lý và giúp người dùng thao tác trên hệ thống máy tính như sơ đồ sau:


Cách sử dụng: Người dùng chỉ quan tâm đến đối tượng computer thể thực hiện tác vụ khởi động.


Code ví dụ theo sơ đồ trên trong objective C:
#import "CPU.h"
#import "Memory.h"
#import "HardDrive.h"
@interface ComputerFacade : NSObject {
}
@property (nonatomic, strong) CPU* processor;
@property (nonatomic, strong) Memory* ram;
@property (nonatomic, strong) HardDrive* hd;
- (void)start;
@end
#import "ComputerFacade.h"
static long const BOOT_ADDRESS = 10230;
static NSString* const BOOT_DATA = @"Boot";
@implementation ComputerFacade
@synthesize processor, ram, hd;
- (instancetype)init {
self = [super init];
if (self) {
processor = [[CPU alloc] init];
ram = [[Memory alloc] init];
hd = [[HardDrive alloc] init];
}
return self;
}
- (void)start {
[processor freeze];
NSData* data = [hd read:BOOT_DATA];
BOOL isLoad = [ram load:BOOT_ADDRESS data:data];
if (isLoad) {
[processor jump:BOOT_ADDRESS];
[processor excute];
} else {
NSLog(@"Notify alert");
}
}
@end
@interface CPU : NSObject
- (void)freeze;
- (void)jump:(long)position;
- (void)excute;
@end
view raw CPU.h hosted with ❤ by GitHub
#import "CPU.h"
@implementation CPU
- (void)freeze {
NSLog(@"Freeze cpu");
}
- (void)jump:(long)position {
NSLog(@"Jump to %ld position",position);
}
- (void)excute {
NSLog(@"Excute cpu");
}
@end
view raw CPU.m hosted with ❤ by GitHub
@interface HardDrive : NSObject
- (NSData*)read:(NSString*)dataString;
@end
view raw HardDrive.h hosted with ❤ by GitHub
#import "HardDrive.h"
@implementation HardDrive
- (NSData*)read:(NSString*)dataString {
if (![dataString length]) {
return nil;
}
const char *utfData = [dataString UTF8String];
return [NSData dataWithBytes:utfData length:strlen(utfData)+1];
}
@end
view raw HardDrive.m hosted with ❤ by GitHub
@interface Memory : NSObject
- (BOOL)load:(long)position data:(NSData*)data;
@end
view raw Memory.h hosted with ❤ by GitHub
#import "Memory.h"
@implementation Memory
- (BOOL)load:(long)position data:(NSData*)data {
if (!data) {
return NO;
}
NSLog(@"Load data at %ld successful!",position);
return YES;
}
@end
view raw Memory.m hosted with ❤ by GitHub

Tài liệu tham khảo:

  1. Wikipedia
  2. Design Patterns

1 comment:

Note: Only a member of this blog may post a comment.