Giter Club home page Giter Club logo

rhmanagedobject's Introduction

RHManagedObject

RHManagedObject is a library for iOS to simplify your life with Core Data. It was motivated by the following:

  • Core Data is verbose. Have a look at Listing 1 from the Apple documentation and you'll see it takes ~14 lines of code for a single fetch request. RHManagedObject reduces this to one line.

  • Each managed object has an object context associated with it, and for some operations you must first fetch the object context in order to operate on the object. For example:

      NSManagedObjectContext *moc = [myManagedObject managedObjectContext];
      [moc deleteObject:myManagedObject];
    

    This is more verbose than necessary since it introduces the object context when its existence is implied by the managed object. RHManagedObject simplifies the above code to:

      [myManagedObject delete];
    
  • Core Data is not thread safe. If you wish to mutate an object off the main thread you must create a managed object context in that thread, attach a NSManagedObjectContextDidSaveNotification notification to it, and merge the context into the main object context in an observer method on the main thread. Bleh. RHManagedObject does this for you such that you can work with your objects in different threads without having to think about this.

  • A common Core Data design pattern is to pass the managed object context between each UIViewController that requires it. This gets cumbersome to maintain, so RHManagedObject puts all the Core Data boilerplate code into a singleton that becomes accessible from anywhere in your code. Best of all, the singleton encapsulates the entire NSManagedObjectContext lifecycle for you: constructing, merging, and saving (also in different threads) such that you never need to interact with NSManagedObjectContext directly. RHManagedObject lets you focus on your objects with simple methods to fetch, modify, and save without having to think about NSManagedObjectContext.

  • Managing multiple models becomes tricky with the standard Core Data design pattern. RHManagedObject supports multiple models to make it simple and transparent.

Overview

This brief overview assumes you have some experience with Core Data.

A typical Core Data "Employee" entity (say, with attributes firstName and lastName) has an inheritance hierarchy of:

NSObject :: NSManagedObject :: Employee

RHManagedObject changes this (when using mogenerator) to:

NSObject :: NSManagedObject :: RHManagedObject :: _Employee :: Employee

This hierarchy is a deviation from previous versions of RHManagedObject. See the section on upgrading for more information.

The RHManagedObject base class extends NSManagedObject to make Core Data easier to use. Specifically, it:

  • manages the object context;
  • provides easy methods for fetching, creating, cloning, and deleting managed objects; and
  • provides a simple method for saving the context, which has the same interface regardless from which thread it's called.

For example, the +newEntityWithError: method introduced in RHManagedObject lets you create a new managed object with one line:

Employee *newEmployee = [Employee newEntityWithError:&error];

Fetching all employees with first name "John" is also one line:

NSArray *employees = [Employee fetchWithPredicate:[NSPredicate predicateWithFormat:@"firstName=%@", @"John"] error:&error];

The -delete method deletes an existing managed object:

[firedEmployee delete];

Changes can be saved with the +commit method, which automatically handles the merging of the context into the main thread. In other words, you can call +commit from any thread and be done:

[Employee commit];

Notice that none of the examples require use of an NSManagedObjectContext instance. That's handled for you within the library. Of course, a method is available to fetch the context for the current thread if you need it:

NSManagedObjectContext *moc = [Employee managedObjectContextForCurrentThreadWithError:&error];

The _Employee class is an artefact of mogenerator, which will be discussed later in Setup.

Installation

Cocoapods

Cocoapods is a package manager, which greatly simplifies the inclusion of 3rd party libraries in your project. RHManagedObject can be added to your Podfile as follows:

pod 'RHManagedObject'

Manual Installation

  • Download RHManagedObject;
  • copy RHManagedObject.h, RHManagedObject.m, RHManagedObjectContextManager.h, and RHManagedObjectContextManager.m to your project; and
  • include the CoreData framework in your project.

Setup

The easiest way to begin using RHManagedObject is to use mogenerator. Mogenerator automates the generation of the model classes, but also provides a place for additional methods that won't conflict with the generated files.

Follow these instructions for installing and setting up mogenerator.

Once mogenator is setup you need to add --base-class RHManagedObject to the command, which ensures RHManagedObject is the superclass of the generated classes. This could look as follows:

/usr/local/bin/mogenerator -m "${PROJECT_DIR}/path/to/model.xcdatamodeld" -O "${PROJECT_DIR}/Model" --template-var arc=true --base-class RHManagedObject

This ensures the following class hierarchy as described in the Overview:

NSObject :: NSManagedObject :: RHManagedObject :: _Employee :: Employee

The _Employee class is generated by mogenerator and is overwritten whenever the model is regenerated. For this reason it should never be manually edited. The Employee class is generated once (unless the file already exits) and provides a place where additional methods can be added without disrupting the generated entity class. RHManagedObject requires the +modelName method be overwritten to return the name of the model it belongs to. This is just the filename of the xcdatamodeld file, and would look like the following for the Employee example:

@implementation Employee
	
// This returns the name of your xcdatamodeld model, without the extension
+(NSString *)modelName {
	return @"SimplifiedCoreDataExample";
}
	
@end

The Employee class is also the place where additional methods can be added. For example:

-(NSString *)fullName {
	return [NSString stringWithFormat:@"%@ %@", self.firstName, self.lastName];
}

Upgrading to mogenerator

If upgrading from a previous version of RHManagedObject you might have used the originally proposed object hierarchy:

NSObject :: NSManagedObject :: RHManagedObject :: EmployeeEntity :: Employee

However, the new proposed hierarchy (using mogenerator) is:

NSObject :: NSManagedObject :: RHManagedObject :: _Employee :: Employee

This should be mostly transparent to the rest of your application, but requires a little work:

  • You'll need to perform a lightweight migration of your model (see Lightweight Migration for details). This will involve versioning your schema and renaming the entities (e.g., EmployeeEntity to Employee). For this you can use the "Renaming ID" field in Xcode, which tells the migration how your models get renamed.
  • As described in the mogenerator documentation, the Class property for each entity in the xcdatamodeld should now be the same as the Name field (in the example "Employee").
  • Your classes no longer need to override the -entityName method. This is handled by mogenerator.

Other Features

Populate Store on First Launch

The library contains code to populate the store on first launch. This was motivated by the CoreDataBooks example, and all you have to do is copy the sqlite file generated by the simulator into your project. The library takes care of the rest.

Automatic Reference Counting (ARC)

The library uses Automatic Reference Counting (ARC).

Lightweight Migration

If possible, RHManagedObject will automatically perform a Lightweight Migration to altered models. If you wish to block the interface or perform other operations when a migration occurs, you can call the RHManagedObject +doesRequireMigration method from the -application:didFinishLaunchingWithOptions: method of your AppDelegate to see if a migration is pending. This must be done before executing anything else that requires Core Data.

Click here for my blog post on performing a Core Data Migration.

RHCoreDataTableViewController

RHCoreDataTableViewController is a UITableViewController subclass that simplifies the use of NSFetchedResultsController. It contains most of the boilerplate code required for the different delegates, but also:

  • handles large updates by calling [tableView reloadData] instead of -controller:didChangeObject:atIndexPath:forChangeType:newIndexPath:newIndexPath for each changed object when a large number of changes are pending (currently set to 10 or more);
  • provides methods to add and manage a search bar (see sample project for usage); and
  • automatically manages the insertion and deletion of rows and sections.

You can use the class by subclassing RHCoreDataTableViewController (instead of UITableViewController) and by implementing the following methods:

  • -fetchedResultsController
  • -tableView:cellForRowAtIndexPath:
  • configureCell:atIndexPath:

An example of how this works can be found in the ExampleTableViewController.m file in the sample project.

RHFetchedResultsManager

This class is useful for quickly applying an NSFetchedResultsController to a UITableView using an RHManagedObject as the data source. It uses blocks to handle the UITableView lifecycle.

(documentation pending)

RHDidUpdateBlock

The RHManagedObject subclass has a block that is excuted when the object is updated. It gets fired on the main thread by a save notification, and is useful for updating a UIView that may depend on the object. For example:

__weak UIViewController *bself = self;

[self.employee setDidUpdateBlock:^{
	[bself.view setNeedsLayout];
}];

RHCoreDataCollectionViewController

RHCoreDataCollectionViewController is a UICollectionViewController subclass with a similar motivation as RHCoreDataTableViewController. It implements the NSFetchedResultsControllerDelegate delegate and requires the following methods to be implemented in your subclass:

  • -fetchedResultsController
  • -collectionView:cellForItemAtIndexPath:

The code is based on Ash Furrow's UICollectionView-NSFetchedResultsController, but has been modified to fit this library.

Thread Containment

RHManagedObject still uses the older style thread confinement pattern to manage contexts in different threads. A beta has been developed to work with nested contexts, but deadlocks in iOS 5.1 has put the approach on hold. You can read about the deadlocking issue here.

Examples

Once you have setup RHManagedObject it becomes easier to do common tasks. Here are some examples.

Add a new employee

Employee *employee = [Employee newEntityWithError:&error];
[employee setFirstName:@"John"];
[employee setLastName:@"Doe"];
[Employee commit];

Fetch all employees

NSArray *allEmployees = [Employee fetchAllWithError:&error];

Fetch all employees with first name "John"

NSArray *employees = [Employee fetchWithPredicate:[NSPredicate predicateWithFormat:@"firstName=%@", @"John"] error:&error];

Fetch all employees with first name "John" sorted by last name

NSArray *employees = [Employee fetchWithPredicate:[NSPredicate predicateWithFormat:@"firstName=%@", @"John"] sortDescriptor:[NSSortDescriptor sortDescriptorWithKey:@"lastName" ascending:YES] error:&error];

Get a specific employee record

The +getWithPredicate: method will return the first object if more than one is found.

Employee *employee = [Employee getWithPredicate:[NSPredicate predicateWithFormat:@"employeeID=%i", 12345] error:&error];

Count the total number of employees

NSUInteger employeeCount = [Employee countWithError:&error];

Count the total number of employees with first name "John"

NSUInteger employeeCount = [Employee countWithPredicate:[NSPredicate predicateWithFormat:@"firstName=%@", @"John"] error:&error];

Get all the unique first names

NSArray *uniqueFirstNames = [Employee distinctValuesWithAttribute:@"firstName" withPredicate:nil error:&error];

Get the average age of all employees

NSNumber *averageAge = [Employee aggregateWithType:RHAggregateAverage key:@"age" predicate:nil defaultValue:nil error:&error];

Fire all employees

[Employee deleteAllWithError:&error];

Fire a single employee

Employee *employee = [Employee get ...];
[employee delete];

Commit changes

This must be called in the same thread where the changes to your objects were made.

NSError *error = [Employee commit];

Completely destroy the Employee model (i.e., delete the .sqlite file)

This is useful to reset your Core Data store after making changes to your model.

NSError *error = [Employee deleteStore];

Get an object instance in another thread

Core Data doesn't allow managed objects to be passed between threads. However you can generate a new object in a separate thread that's valid for that thread. Here's an example using the -objectInCurrentThreadContext method:

Employee *employee = [Employee getWithPredicate:[NSPredicate predicateWithFormat:@"employeID=%i", 12345] error:&error];

dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
	
	// employee is not valid in this thread, so we fetch one that is:
	Employee *employee2  = [employee objectInCurrentThreadContext];
	
	// do something with employee2	
	
	[Employee commit];
});

I'm stuck. Help!

Check out the included SimplifiedCoreDataExample for a working example. You can also contact me if you have any questions or comments.

Where is this being used?

RHManagedObject is being used with:

Contact me if you'd like your app to be listed.

Contact

Are you using RHManagedObject in your project? Tell me about it!

profile: Christopher Meyer
e-mail: [email protected]
twitter: @chriscdn
blog: schwiiz.org

License

RHManagedObject is available under the MIT license. See the LICENSE file for more information.

rhmanagedobject's People

Contributors

chriscdn avatar mattleff avatar readmecritic avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.