aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTreeNode.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-12-05 15:03:28 +0000
committerstuconnolly <stuart02@gmail.com>2010-12-05 15:03:28 +0000
commit4e87089af2ce50364a3e6fcfdf8a3c31e172d8aa (patch)
tree88ff9ede1a8fb612cd4fbf7a4f90b7cbc8f10f34 /Source/SPTreeNode.m
parent93b889667f1b938931b84e8fed07ee58bcba3c8f (diff)
downloadsequelpro-4e87089af2ce50364a3e6fcfdf8a3c31e172d8aa.tar.gz
sequelpro-4e87089af2ce50364a3e6fcfdf8a3c31e172d8aa.tar.bz2
sequelpro-4e87089af2ce50364a3e6fcfdf8a3c31e172d8aa.zip
Apply new favorites outline view patch.
Diffstat (limited to 'Source/SPTreeNode.m')
-rw-r--r--Source/SPTreeNode.m252
1 files changed, 252 insertions, 0 deletions
diff --git a/Source/SPTreeNode.m b/Source/SPTreeNode.m
new file mode 100644
index 00000000..507939c4
--- /dev/null
+++ b/Source/SPTreeNode.m
@@ -0,0 +1,252 @@
+//
+// $Id$
+//
+// SPTreeNode.m
+// sequel-pro
+//
+// Created by Stuart Connolly (stuconnolly.com) on November 23, 2010
+// Copyright (c) 2010 Stuart Connolly. All rights reserved.
+//
+// This program is free software; you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation; either version 2 of the License, or
+// (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+//
+// More info at <http://code.google.com/p/sequel-pro/>
+
+#import "SPTreeNode.h"
+#import "SPFavoriteNode.h"
+#import "SPGroupNode.h"
+
+@implementation SPTreeNode
+
+@synthesize isGroup;
+
+#pragma mark -
+#pragma mark Initialisation
+
++ (id)treeNodeWithRepresentedObject:(id)object
+{
+ return [[[SPTreeNode alloc] initWithRepresentedObject:object] autorelease];
+}
+
+- (id)initWithRepresentedObject:(id)object
+{
+ if ((self = [super initWithRepresentedObject:object])) {
+ [self setIsGroup:NO];
+ }
+
+ return self;
+}
+
+#pragma mark -
+#pragma mark Public API
+
+/**
+ * Recursive method which searches children and children of all sub-nodes
+ * to remove the supplied object.
+ *
+ * @param object The object to remove
+ */
+- (void)removeObjectFromChildren:(id)object
+{
+ for (SPTreeNode *node in [self childNodes])
+ {
+ if (node == object) {
+ [[self childNodes] removeObjectIdenticalTo:object];
+ return;
+ }
+
+ if (![node isLeaf]) {
+ [node removeObjectFromChildren:object];
+ }
+ }
+}
+
+/**
+ * Generates an array of all descendants.
+ *
+ * @return The array of decendant nodes.
+ */
+- (NSArray *)descendants
+{
+ NSMutableArray *descendants = [NSMutableArray array];
+
+ for (SPTreeNode *node in [self childNodes])
+ {
+ [descendants addObject:node];
+
+ if (![node isLeaf]) {
+ [descendants addObjectsFromArray:[node descendants]];
+ }
+ }
+
+ return descendants;
+}
+
+/**
+ * Generates an array of all leafs in children and children of all sub-nodes.
+ *
+ * @return The array of child nodes.
+ */
+- (NSArray *)allChildLeafs
+{
+ NSMutableArray *childLeafs = [NSMutableArray array];
+
+ for (SPTreeNode *node in [self childNodes])
+ {
+ if ([node isLeaf]) {
+ [childLeafs addObject:node];
+ }
+ else {
+ [childLeafs addObjectsFromArray:[node allChildLeafs]];
+ }
+ }
+
+ return childLeafs;
+}
+
+/**
+ * Returns only the children that are group nodes.
+ *
+ * @return The array of child group nodes.
+ */
+- (NSArray *)groupChildren
+{
+ NSMutableArray *groupChildren = [NSMutableArray array];
+
+ for (SPTreeNode *node in [self childNodes])
+ {
+ if (![node isLeaf]) {
+ [groupChildren addObject:node];
+ }
+ }
+
+ return groupChildren;
+}
+
+/**
+ * Finds the receiver's parent from the supplied array of nodes.
+ *
+ * @param array The array of nodes
+ *
+ * @return The parent of this instance of nil if not found
+ */
+- (SPTreeNode *)parentFromArray:(NSArray *)array
+{
+ SPTreeNode *result = nil;
+
+ for (SPTreeNode *node in array)
+ {
+ if (node == self) break;
+
+ if ([[node childNodes] indexOfObjectIdenticalTo:self] != NSNotFound) {
+ result = node;
+ break;
+ }
+
+ if (![node isLeaf]) {
+ SPTreeNode *innerNode = [self parentFromArray:[node childNodes]];
+
+ if (innerNode) {
+ result = innerNode;
+ break;
+ }
+ }
+ }
+
+ return result;
+}
+
+/**
+ * Returns YES if self is contained anywhere inside the children or children of
+ * sub-nodes of the nodes contained inside the supplied array.
+ *
+ * @param nodes
+ *
+ * @return
+ */
+- (BOOL)isDescendantOfOrOneOfNodes:(NSArray *)nodes
+{
+ for (SPTreeNode *node in nodes)
+ {
+ if (node == self) return YES;
+
+ // Check all the sub-nodes
+ if (![node isLeaf]) {
+ if ([self isDescendantOfOrOneOfNodes:[node childNodes]]) {
+ return YES;
+ }
+ }
+ }
+
+ return NO;
+}
+
+/**
+ * Returns YES if any node in the array passed in is an ancestor of ours.
+ *
+ * @param nodes
+ *
+ * @return
+ */
+- (BOOL)isDescendantOfNodes:(NSArray *)nodes
+{
+ for (SPTreeNode *node in nodes)
+ {
+ // Check all the sub-nodes
+ if (![node isLeaf]) {
+ if ([self isDescendantOfOrOneOfNodes:[node childNodes]]) {
+ return YES;
+ }
+ }
+ }
+
+ return NO;
+}
+
+/**
+ * Constructs a dictionary representation of the favorite.
+ *
+ * @return The dictionary representation.
+ */
+- (NSDictionary *)dictionaryRepresentation
+{
+ NSMutableDictionary *dictionary = nil;
+
+ id object = [self representedObject];
+
+ if ([object isKindOfClass:[SPFavoriteNode class]]) {
+
+ dictionary = [NSDictionary dictionaryWithDictionary:[object nodeFavorite]];
+ }
+ else if ([object isKindOfClass:[SPGroupNode class]]) {
+
+ NSMutableArray *children = [NSMutableArray array];
+
+ for (SPTreeNode *node in [self childNodes])
+ {
+ [children addObject:[node dictionaryRepresentation]];
+ }
+
+ dictionary = [NSMutableDictionary dictionary];
+
+ NSString *name = (![self parentNode]) ? NSLocalizedString(@"Favorites", @"favorites label") : [object nodeName];
+
+ [dictionary setObject:(name) ? name : @"" forKey:SPFavoritesGroupNameKey];
+ [dictionary setObject:children forKey:SPFavoriteChildrenKey];
+ }
+
+ return dictionary;
+}
+
+@end