Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

最近の作業部屋活動履歴

2014-11-26

最近のWikiの更新 (Recent Changes)

No changes on this wiki.

Wikiガイド(Guide)

サイドバー (Side Bar)

CDEvents

  • R/O
  • R/O (HTTP)
  • R/W (SSH)
  • R/W (HTTPS)
Fork

An Objective-C wrapper for Mac OS X’s FSEvents C API.

Release Files

No download files.

Recent Commits

Révisionl'heureAuteurMessage: RSS
f812a2a32014-03-01 23:43:33Aron CedercrantzMerge tag '1.2.2'
97f8df2e2014-02-26 01:33:03Aron CedercrantzMerge pull request #27 from vtourraine/patch-1 Update po...
373bfa442014-02-25 17:26:48Vincent TourraineUpdate podspec to 1.2.2
acd291062014-02-25 04:49:51Aron CedercrantzBump version to 1.2.2.
b3fdee222014-02-21 07:59:33Aron CedercrantzMerge pull request #24 from rience/develop Fix warnings ...
ad660ce52014-02-21 07:18:40Krzysztof AdamskiPass unisgnedIntValue Instead of unsignedIntegerValue (XC...
91e766212014-02-21 07:17:27Krzysztof AdamskiPass CDEventsEventStreamCreationFlags to CDEvents Init Me...
a1e545362013-12-10 21:25:08rienceExplicit Casting to “(uint)” When Converting From NSUInte...
4a8d60f72013-07-03 05:21:08Aron CedercrantzMerge tag '1.2.1' Fix a memory management issue and more...
88c648732013-07-03 05:17:39Aron CedercrantzMerge branch 'develop' of https://github.com/rastersize/C...

CDEvents

Note: The develop branch requires Mac OS X 10.6 or newer as the framework relies on ARC and blocks.

Website: http://rastersize.github.com/CDEvents

What is this?

It's an Objective-C wrapper for Mac OS X's FSEvents C API with support for blocks. Furthermore, all the classes are immutable and it should be thread-safe.

Requirements

Requires Mac OS X 10.6 (Snow Leopard) and an Intel 64-bit CPU. The requirements stems from that automatic reference counting (ARC) is supported from 10.6 and up as long as the modern (i.e. 64-bit) Objective-C runtime is used since ARC requires the non-fragile ABI. Although the built product works on 10.6 and up it must be built on a machine running 10.7 (Lion) using Xcode 4.2 and the 10.7 SDK as the 10.6 SDK does not include ARC. The built product support both manual memory management and automatic reference counting.

If you need to support older versions of OS X or garbage collection please see the branch support/1.1. All 1.1.x version will support garbage collection and OS X 10.5.

Usage

You can use either the block based version (recommended) or the delegate based. Using both systems at the same time is not supported.

Block based (recommended)

  1. Add CDEvents to your project,
    • either by compiling the project and dragging the CDEvents.framework into your project or
    • by dragging the entire CDEvents project into your project as a sub-project.
  2. Import the CDEvents.h header where you need it.
  3. Set up your CDEvents instance and give it a block to execute when a event occurs.

Easy example code:

self.events = [[CDEvents alloc] initWithURLs:<NSArray of URLs to watch>
                                       block:^(CDEvents *watcher, CDEvent *event) {
                                           <Your code here>
                                       }];

Or use all the all-options initiator:

self.events = [[CDEvents alloc] initWithURLs:<NSArray of URLs to watch>
                                       block:^(CDEvents *watcher, CDEvent *event) {
                                           <Your code here>
                                       }
                                   onRunLoop:[NSRunLoop currentRunLoop]
                        sinceEventIdentifier:kCDEventsSinceEventNow
                        notificationLantency:CD_EVENTS_DEFAULT_NOTIFICATION_LATENCY
                     ignoreEventsFromSubDirs:CD_EVENTS_DEFAULT_IGNORE_EVENT_FROM_SUB_DIRS
                                 excludeURLs:<NSArray of URLs to exlude>
                         streamCreationFlags:kCDEventsDefaultEventStreamFlags];

See the test app (TestApp) for an example on how to use the framework.

Delegate based

This is the same behavior as pre ARC and blocks.

  1. Add CDEvents to your project,
    • either by compiling the project and dragging the CDEvents.framework into your project or
    • by dragging the entire CDEvents project into your project as a sub-project.
  2. Import the CDEvents.h header where you need it.
  3. Import the CDEventsDelegate.h header where you need it (i.e. in the file which declares your delegate).
  4. Implement the delegate (-URLWatcher:eventOccurred:) and create your CDEvents instance.
  5. Zero out the delegate when you no longer need it.

Example code:

self.events = [[CDEvents alloc] initWithURLs:<NSArray of URLs to watch>
                                    delegate:<Your delegate>
                                   onRunLoop:[NSRunLoop currentRunLoop]
                        sinceEventIdentifier:kCDEventsSinceEventNow
                        notificationLantency:CD_EVENTS_DEFAULT_NOTIFICATION_LATENCY
                     ignoreEventsFromSubDirs:CD_EVENTS_DEFAULT_IGNORE_EVENT_FROM_SUB_DIRS
                                 excludeURLs:<NSArray of URLs to exlude>
                         streamCreationFlags:kCDEventsDefaultEventStreamFlags];

See the test app (TestApp) for an example on how to use the framework.

Important: Since Mac OS X 10.6 is set as the deployment target automatic zeroing of weak references is not available. Thus you must set the delegate of CDEvents to nil when you no longer want to receive events. That is, at least in your -dealloc method. This is also required when using 10.7 and up! (delegate is an unsafe_unretained property.)

For more details please refer to the documentation in the header files and the section "API documentation" below.

API documentation

Read the latest API documentation or browse for each version of CDEvents. Alternatively you can generate it yourself, please see below.

appledoc

Run the script api.appledoc.sh from the root of the project. The script takes one optional argument, the version of the project as a string. If the version string is empty "HEAD" will be used instead.

Doxygen

You can generate API documentation with the help of Doxygen. In Doxygen open the file api.doxygen, click the Run tab and then the Run doxygen button. When it's done you should have a directory (ignored by git) in the root of the project named api with a sub-directory html in which you will find index.html double-click and enjoy.

Contributors

See GitHubs contributors to rastersize/CDEvents statistics page.

License

The code is released under the MIT-license.

If you want, even though you really don't have to, I would love to hear what you use CDEvents for! Send me an email (first name (i.e. aron) @ last name (i.e. cedercrantz) dot se).

Latest updated Tickets

No tickets

About Chamber Wiki

Welcome to OSDN Wiki system. Here is your chamber Wiki space.

Check Wiki Guide (English) to refer syntax and functions.