VoiceMac/Classes/VoiceMob/MGMContactsController.m

201 lines
6.0 KiB
Mathematica
Raw Normal View History

//
// MGMContactsController.m
// VoiceMob
//
// Created by Mr. Gecko on 9/29/10.
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). http://mrgeckosmedia.com/
//
#import "MGMContactsController.h"
#import "MGMContactView.h"
#import "MGMAccountController.h"
#import "MGMController.h"
#import <VoiceBase/VoiceBase.h>
NSString * const MGMContactViewCellIdentifier = @"MGMContactViewCellIdentifier";
@implementation MGMContactsController
- (id)init {
if ((self = [super init])) {
filterLock = [NSLock new];
filterWaiting = 0;
contactViews = [NSMutableArray new];
contactsCount = 0;
}
return self;
}
- (id)initWithAccountController:(MGMAccountController *)theAccountController {
if ((self = [self init])) {
accountController = theAccountController;
}
return self;
}
- (void)awakeFromNib {
[searchBar setText:contactsMatchString];
[self filterContacts];
[searchCancelButton setHidden:YES];
}
- (void)dealloc {
#if releaseDebug
NSLog(@"%s Releasing", __PRETTY_FUNCTION__);
#endif
[self releaseView];
[filterLock release];
[contactsMatchString release];
[contactViews release];
[super dealloc];
}
- (void)releaseView {
#if releaseDebug
NSLog(@"%s Releasing", __PRETTY_FUNCTION__);
#endif
[searchBar release];
searchBar = nil;
[searchCancelButton release];
searchCancelButton = nil;
[contactsTable release];
contactsTable = nil;
[self cleanup];
}
- (void)cleanup {
contactsCount = 0;
[contactViews removeAllObjects];
}
- (MGMContacts *)contacts {
return nil;
}
- (NSString *)filterString {
return [searchBar text];
}
- (void)updateMatchString {
[contactsMatchString release];
contactsMatchString = [[self filterString] copy];
}
- (void)scrollToTop {
[contactsTable scrollRectToVisible:CGRectMake(0, 0, [contactsTable frame].size.width, 20) animated:NO];
}
- (BOOL)searchBarShouldBeginEditing:(UISearchBar *)theSearchBar {
[searchCancelButton setHidden:NO];
return YES;
}
- (void)searchBar:(UISearchBar *)theSearchBar textDidChange:(NSString *)searchText {
[self filterContacts];
}
- (void)searchBarSearchButtonClicked:(UISearchBar *)theSearchBar {
[self cancelSearch:self];
}
- (void)searchBarCancelButtonClicked:(UISearchBar *)theSearchBar {
[self cancelSearch:self];
}
- (IBAction)cancelSearch:(id)sender {
[searchBar resignFirstResponder];
[searchCancelButton setHidden:YES];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return contactsCount;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
MGMContactView *cell = (MGMContactView *)[tableView dequeueReusableCellWithIdentifier:MGMContactViewCellIdentifier];
if (cell==nil) {
cell = [[[MGMContactView alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MGMContactViewCellIdentifier] autorelease];
[cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
[cell setThemeManager:[[accountController controller] themeManager]];
[cell setContacts:[self contacts]];
}
int row = [indexPath indexAtPosition:1];
if (row>=contactsCount) return cell;
[self checkContactRow:row];
@try {
[cell setContact:[contactViews objectAtIndex:row-contactsVisible.location]];
}
@catch (NSException *e) {
NSLog(@"Contact error, ignoring. %@", e);
}
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
int row = [indexPath indexAtPosition:1];
if (row>=contactsCount) return;
[self selectedContact:[contactViews objectAtIndex:row-contactsVisible.location]];
}
- (void)checkContactRow:(int)row {
if (!NSLocationInRange(row, contactsVisible)) {
int maxResults = [[self contacts] maxResults];
int page = (row/maxResults)+1;
contactsLoading.location = ((page==1 ? 1 : page-1)*maxResults)-maxResults;
contactsLoading.length = (row<(maxResults-3) ? maxResults : maxResults*2);
[self loadContacts:NO];
}
}
- (void)filterContacts {
[NSThread detachNewThreadSelector:@selector(backgroundFilter) toTarget:self withObject:nil];
}
- (void)backgroundFilter {
if (contactsTable==nil) return;
if (filterWaiting>=1)
return;
NSAutoreleasePool *pool = [NSAutoreleasePool new];
filterWaiting++;
[filterLock lock];
filterWaiting--;
contactsCount = 0;
[contactViews removeAllObjects];
[self performSelectorOnMainThread:@selector(updateMatchString) withObject:nil waitUntilDone:YES];
int count = [[[self contacts] countContactsMatching:contactsMatchString] intValue];
contactsLoading.location = 0;
contactsLoading.length = 0;
contactsVisible.location = 0;
contactsVisible.length = [[self contacts] maxResults];
[contactViews addObjectsFromArray:[[self contacts] contactsMatching:contactsMatchString page:1 includePhoto:NO]];
contactsCount = count;
[filterLock unlock];
if (contactsTable==nil) return;
[contactsTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:YES];
if (contactsCount!=0)
[self performSelectorOnMainThread:@selector(scrollToTop) withObject:nil waitUntilDone:NO];
[pool drain];
}
- (void)loadContacts:(BOOL)updatingCount {
if (contactsTable==nil) return;
NSAutoreleasePool *pool = [NSAutoreleasePool new];
[filterLock lock];
int count = 0;
if (updatingCount) {
count = [[[self contacts] countContactsMatching:contactsMatchString] intValue];
contactsCount = 0;
}
int maxResults = [[self contacts] maxResults];
[contactViews removeAllObjects];
int page = contactsLoading.location/maxResults;
int times = contactsLoading.length/maxResults;
for (int t=0; t<times; t++) {
page++;
[contactViews addObjectsFromArray:[[self contacts] contactsMatching:contactsMatchString page:page includePhoto:NO]];
}
contactsVisible = contactsLoading;
if (updatingCount)
contactsCount = count;
[filterLock unlock];
if (contactsTable==nil) return;
[contactsTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO];
[pool drain];
}
- (void)updatedContacts {
if (contactsTable==nil) return;
contactsLoading = contactsVisible;
[self loadContacts:YES];
}
- (void)selectedContact:(NSDictionary *)theContact {
}
@end