Cocoa:NSOperation和NSOperationQueue

Cocoa:NSOperation和NSOperationQueue,第1张

概述    Cocoa: NSOperation和NSOperationQueue     在任何语言中多线程处理都是麻烦的。更糟糕的是如果出错了往往会以很坏的方式出错。鉴于此,程序员要么完全避免使用多线程(把它当做邪恶之源),要么发很长的时间来确保每个方面都很完美。     庆幸的是, Apple在OS X 10.5 Leopard上做了很多改进。NSThread本身就新增了很多新的方法,从而使得多

    Cocoa: NSOperation和NSOperationQueue

    在任何语言中多线程处理都是麻烦的。更糟糕的是如果出错了往往会以很坏的方式出错。鉴于此,程序员要么完全避免使用多线程(把它当做邪恶之源),要么发很长的时间来确保每个方面都很完美。

    庆幸的是, Apple在OS X 10.5 Leopard上做了很多改进。NSThread本身就新增了很多新的方法,从而使得多线程变得更加容易。此外还新增了NSOperation和NSOperationQueue两个类。该教程通过一个简单的实例来介绍如何使用这些新增类并如何让多线程的应用变得小菜一碟。    你可以从此获取该项目的实例代码 :  Async Downloader Example Project     在该教程中,我会介绍一种使用 NSOperation和NSOperationQueue在后台线程中很好地处理任务的方法。该教程的目标是介绍这些类的使用,但并不排除使用它们的其他方法。 如果你熟悉 Java或一个它的变种语言,NSOperation就和java.lang.Runnable接口很相似。和Java的Runnable一样,NSOperation也是设计用来扩展的,并且最低仅需重写一个方法。对于NSOperation这个方法是-(voID)main。一个使用NSOperation的最简单方法就是将其放入NSOperationQueue中。一旦一个 *** 作被加入队列,该队列就会启动并开始处理它。一旦该 *** 作完成队列就会释放它。   NSOperation 实例 在该实例中,我编写了一段获取网页内容的字符串,然后解析成 NSXMLdocument对象并在结束前传回应用主线程。 PageLoadOperation.h  
  #import <Cocoa/Cocoa.h>      @interface PageLoadOperation : NSOperation {          NSURL *targetURL;      }           @property(retain) NSURL *targetURL;           - (ID)initWithURL:(NSURL*)url;           @end   

PageLoadOperation.m

  #import "PageLoadOperation.h"     #import "AppDelegate.h"            @implementation PageLoadOperation             @synthesize targetURL;             - (ID)initWithURL:(NSURL*)url;      {          if (![super init]) return nil;          [self setTargetURL:url];          return self;      }             - (voID)dealloc {          [targetURL release], targetURL = nil;          [super dealloc];      }             - (voID)main {          Nsstring *webpageString = [[[Nsstring alloc] initWithContentsOfURL:[self targetURL]] autorelease];                 NSError *error = nil;          NSXMLdocument *document = [[NSXMLdocument alloc] initWithXMLString:webpageString                                                                     options:NSXMLdocumentTIDyHTML                                                                       error:&error];          if (!document) {              NSLog(@"%s Error loading document (%@): %@", _cmd, [[self targetURL] absoluteString], error);              return;          }                    [[AppDelegate shared] performSelectorOnMainThread:@selector(pageLoaded:)                                                 withObject:document                                              waitUntilDone:YES];          [document release];      }             @end   
我们可以看到,这个类很简单。它在 init方法中接受一个URL并保存起来。在调用main方法的时候它就从URL中构建一个字符串并传给NSXMLdocument的init方法。如果在加载xml文档过程中没有发生错误,该文档就会被传回到主线程的AppDelegate,然后任务结束。队列会在NSOperation的main方法结束后自动释放该对象。 AppDelegate.h  
  #import <Cocoa/Cocoa.h>             @interface AppDelegate : NSObject {          NSOperationQueue *queue;      }             + (ID)shared;      - (voID)pageLoaded:(NSXMLdocument*)document;             @end   
AppDelegate.m  
  #import "AppDelegate.h"     #import "PageLoadOperation.h"            @implementation AppDelegate      static AppDelegate *shared;      static NSArray *urlArray;             - (ID)init      {          if (shared) {              [self autorelease];              return shared;          }          if (![super init]) return nil;                 NSMutableArray *array = [[NSMutableArray alloc] init];          [array addobject:@"http://www.Google.com"];          [array addobject:@"http://www.apple.com"];          [array addobject:@"http://www.yahoo.com"];          [array addobject:@"http://www.zarrastudios.com"];          [array addobject:@"http://www.macosxhints.com"];          urlArray = array;                 queue = [[NSOperationQueue alloc] init];          shared = self;          return self;      }             - (voID)applicationDIDFinishLaunching:(NSNotification *)aNotification      {          for (Nsstring *urlString in urlArray) {              NSURL *url = [NSURL URLWithString:urlString];              PageLoadOperation *plo = [[PageLoadOperation alloc] initWithURL:url];              [queue addOperation:plo];              [plo release];          }      }             - (voID)dealloc      {          [queue release], queue = nil;          [super dealloc];      }             + (ID)shared;      {          if (!shared) {              [[AppDelegate alloc] init];          }          return shared;      }             - (voID)pageLoaded:(NSXMLdocument*)document;      {          NSLog(@"%s Do something with the XMLdocument: %@", document);      }             @end   
在实例中 AppDelegate做了两件事。其一是在init方法中初始化了NSOperationQueue并载入了一个urls数组。在应用结束加载时NSApplication 实例会调用applicationDIDFinishLaunching:方法,AppDelegate就遍历每个url并创建相应的任务,然后将任务加入队列中。在队列中每加入一个人后,队列都会为其分配一个NSThread来启动它,线程就会运行 *** 作的main方法。一旦 *** 作完成,线程就会报告给队列以让队列释放该 *** 作。   NSOperationQueue 的并发 在这个简单的实例中,由于很难再队列中加入足够多的任务使得我们很难看到它们是并发运行的。但如果你的任务需要更多的时间,你就可以看到队列是同时运行所有的任务。如果你想限制并行运行的任务数目,你可以在 AppDelegate的init方法中做如下修改。  
  - (ID)init      {          if (shared) {              [self autorelease];              return shared;          }          if (![super init]) return nil;                 NSMutableArray *array = [[NSMutableArray alloc] init];          [array addobject:@"http://www.Google.com"];          [array addobject:@"http://www.apple.com"];          [array addobject:@"http://www.yahoo.com"];          [array addobject:@"http://www.zarrastudios.com"];          [array addobject:@"http://www.macosxhints.com"];          urlArray = array;          queue = [[NSOperationQueue alloc] init];          [queue setMaxConcurrentoperationCount:2];          shared = self;          return self;        
在这个修改的 init方法中,队列被限制只能同时运行两个 *** 作。剩余的 *** 作就需要等待之前的两个 *** 作有一个完成后才有机会被运行。   结论 这是 NSOperation和NSOperationQueue最基本的使用。你可以注意到该实例的大部分代码和NSOperation和NSOperationQueue 的设定和使用无关。NSOperation所需要的代码是惊人地少。但是通过这少量的代码你就可以在你的应用中轻松地使用多线程以为用户提供更好的用户体验并可以更好地优化复杂任务。 原文链接:http://www.cimgf.com/2008/02/16/cocoa-tutorial-nsoperation-and-nsoperationqueue/ 总结

以上是内存溢出为你收集整理的Cocoa:NSOperation和NSOperationQueue全部内容,希望文章能够帮你解决Cocoa:NSOperation和NSOperationQueue所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1068241.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存