| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- //
- // FLEXGlobalsViewController.m
- // Flipboard
- //
- // Created by Ryan Olson on 2014-05-03.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import "FLEXGlobalsViewController.h"
- #import "FLEXUtility.h"
- #import "FLEXRuntimeUtility.h"
- #import "FLEXObjcRuntimeViewController.h"
- #import "FLEXKeychainTableViewController.h"
- #import "FLEXObjectExplorerViewController.h"
- #import "FLEXObjectExplorerFactory.h"
- #import "FLEXLiveObjectsTableViewController.h"
- #import "FLEXFileBrowserTableViewController.h"
- #import "FLEXCookiesTableViewController.h"
- #import "FLEXGlobalsEntry.h"
- #import "FLEXManager+Private.h"
- #import "FLEXSystemLogViewController.h"
- #import "FLEXNetworkMITMViewController.h"
- #import "FLEXAddressExplorerCoordinator.h"
- #import "FLEXGlobalsSection.h"
- @interface FLEXGlobalsViewController ()
- /// Only displayed sections of the table view; empty sections are purged from this array.
- @property (nonatomic, copy) NSArray<FLEXGlobalsSection *> *sections;
- /// Every section in the table view, regardless of whether or not a section is empty.
- @property (nonatomic, readonly) NSArray<FLEXGlobalsSection *> *allSections;
- @end
- @implementation FLEXGlobalsViewController
- #pragma mark - Initialization
- + (NSString *)globalsTitleForSection:(FLEXGlobalsSectionKind)section {
- switch (section) {
- case FLEXGlobalsSectionProcessAndEvents:
- return @"Process and Events";
- case FLEXGlobalsSectionAppShortcuts:
- return @"App Shortcuts";
- case FLEXGlobalsSectionMisc:
- return @"Miscellaneous";
- case FLEXGlobalsSectionCustom:
- return @"Custom Additions";
- default:
- @throw NSInternalInconsistencyException;
- }
- }
- + (FLEXGlobalsEntry *)globalsEntryForRow:(FLEXGlobalsRow)row {
- switch (row) {
- case FLEXGlobalsRowAppKeychainItems:
- return [FLEXKeychainTableViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowAddressInspector:
- return [FLEXAddressExplorerCoordinator flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowBrowseRuntime:
- return [FLEXObjcRuntimeViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowLiveObjects:
- return [FLEXLiveObjectsTableViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowCookies:
- return [FLEXCookiesTableViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowBrowseBundle:
- case FLEXGlobalsRowBrowseContainer:
- return [FLEXFileBrowserTableViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowSystemLog:
- return [FLEXSystemLogViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowNetworkHistory:
- return [FLEXNetworkMITMViewController flex_concreteGlobalsEntry:row];
- case FLEXGlobalsRowKeyWindow:
- case FLEXGlobalsRowRootViewController:
- case FLEXGlobalsRowProcessInfo:
- case FLEXGlobalsRowAppDelegate:
- case FLEXGlobalsRowUserDefaults:
- case FLEXGlobalsRowMainBundle:
- case FLEXGlobalsRowApplication:
- case FLEXGlobalsRowMainScreen:
- case FLEXGlobalsRowCurrentDevice:
- case FLEXGlobalsRowPasteboard:
- case FLEXGlobalsRowURLSession:
- case FLEXGlobalsRowURLCache:
- case FLEXGlobalsRowNotificationCenter:
- case FLEXGlobalsRowMenuController:
- case FLEXGlobalsRowFileManager:
- case FLEXGlobalsRowTimeZone:
- case FLEXGlobalsRowLocale:
- case FLEXGlobalsRowCalendar:
- case FLEXGlobalsRowMainRunLoop:
- case FLEXGlobalsRowMainThread:
- case FLEXGlobalsRowOperationQueue:
- return [FLEXObjectExplorerFactory flex_concreteGlobalsEntry:row];
- default:
- @throw [NSException
- exceptionWithName:NSInternalInconsistencyException
- reason:@"Missing globals case in switch" userInfo:nil
- ];
- }
- }
- + (NSArray<FLEXGlobalsSection *> *)defaultGlobalSections {
- static NSArray<FLEXGlobalsSection *> *sections = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- NSArray *rowsBySection = @[
- @[
- [self globalsEntryForRow:FLEXGlobalsRowNetworkHistory],
- [self globalsEntryForRow:FLEXGlobalsRowSystemLog],
- [self globalsEntryForRow:FLEXGlobalsRowProcessInfo],
- [self globalsEntryForRow:FLEXGlobalsRowLiveObjects],
- [self globalsEntryForRow:FLEXGlobalsRowAddressInspector],
- [self globalsEntryForRow:FLEXGlobalsRowBrowseRuntime],
- ],
- @[ // FLEXGlobalsSectionAppShortcuts
- [self globalsEntryForRow:FLEXGlobalsRowBrowseBundle],
- [self globalsEntryForRow:FLEXGlobalsRowBrowseContainer],
- [self globalsEntryForRow:FLEXGlobalsRowMainBundle],
- [self globalsEntryForRow:FLEXGlobalsRowUserDefaults],
- [self globalsEntryForRow:FLEXGlobalsRowAppKeychainItems],
- [self globalsEntryForRow:FLEXGlobalsRowApplication],
- [self globalsEntryForRow:FLEXGlobalsRowAppDelegate],
- [self globalsEntryForRow:FLEXGlobalsRowKeyWindow],
- [self globalsEntryForRow:FLEXGlobalsRowRootViewController],
- [self globalsEntryForRow:FLEXGlobalsRowCookies],
- ],
- @[ // FLEXGlobalsSectionMisc
- [self globalsEntryForRow:FLEXGlobalsRowPasteboard],
- [self globalsEntryForRow:FLEXGlobalsRowMainScreen],
- [self globalsEntryForRow:FLEXGlobalsRowCurrentDevice],
- [self globalsEntryForRow:FLEXGlobalsRowURLSession],
- [self globalsEntryForRow:FLEXGlobalsRowURLCache],
- [self globalsEntryForRow:FLEXGlobalsRowNotificationCenter],
- [self globalsEntryForRow:FLEXGlobalsRowMenuController],
- [self globalsEntryForRow:FLEXGlobalsRowFileManager],
- [self globalsEntryForRow:FLEXGlobalsRowTimeZone],
- [self globalsEntryForRow:FLEXGlobalsRowLocale],
- [self globalsEntryForRow:FLEXGlobalsRowCalendar],
- [self globalsEntryForRow:FLEXGlobalsRowMainRunLoop],
- [self globalsEntryForRow:FLEXGlobalsRowMainThread],
- [self globalsEntryForRow:FLEXGlobalsRowOperationQueue],
- ]
- ];
-
- sections = [NSArray flex_forEachUpTo:rowsBySection.count map:^FLEXGlobalsSection *(NSUInteger i) {
- NSString *title = [self globalsTitleForSection:i];
- return [FLEXGlobalsSection title:title rows:rowsBySection[i]];
- }];
- });
-
- return sections;
- }
- #pragma mark - UIViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.title = @"💪 FLEX";
- self.showsSearchBar = YES;
- self.searchBarDebounceInterval = kFLEXDebounceInstant;
- // Table view data
- _allSections = [[self class] defaultGlobalSections];
- if ([FLEXManager sharedManager].userGlobalEntries.count) {
- // Make custom section
- NSString *title = [[self class] globalsTitleForSection:FLEXGlobalsSectionCustom];
- FLEXGlobalsSection *custom = [FLEXGlobalsSection
- title:title
- rows:[FLEXManager sharedManager].userGlobalEntries
- ];
- _allSections = [_allSections arrayByAddingObject:custom];
- }
- self.sections = self.allSections;
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
-
- [self disableToolbar];
- }
- #pragma mark - Search Bar
- - (void)updateSearchResults:(NSString *)newText {
- // Sections will adjust data based on this property
- for (FLEXTableViewSection *section in self.allSections) {
- section.filterText = newText;
- }
- // Recalculate empty sections
- self.sections = [self nonemptySections];
- // Refresh table view
- if (self.isViewLoaded) {
- [self.tableView reloadData];
- }
- }
- #pragma mark - Private
- - (NSArray<FLEXGlobalsSection *> *)nonemptySections {
- return [self.allSections flex_filtered:^BOOL(FLEXTableViewSection *section, NSUInteger idx) {
- return section.numberOfRows > 0;
- }];
- }
- #pragma mark - Table View Data Source
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return self.sections.count;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.sections[section].numberOfRows;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *CellIdentifier = @"Cell";
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
- cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
- cell.textLabel.font = [UIFont systemFontOfSize:14.0];
- }
-
- [self.sections[indexPath.section] configureCell:cell forRow:indexPath.row];
-
- return cell;
- }
- - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
- return self.sections[section].title;
- }
- #pragma mark - Table View Delegate
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- FLEXTableViewSection *section = self.sections[indexPath.section];
- void (^action)(UIViewController *) = [section didSelectRowAction:indexPath.row];
- UIViewController *details = [section viewControllerToPushForRow:indexPath.row];
- if (action) {
- action(self);
- [tableView deselectRowAtIndexPath:indexPath animated:YES];
- } else if (details) {
- [self.navigationController pushViewController:details animated:YES];
- } else {
- [NSException raise:NSInternalInconsistencyException
- format:@"Row is selectable but has no action or view controller"];
- }
- }
- @end
|