├── .gitignore ├── Artwork └── Icon1024x1024.png ├── Diagnostics.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── iOS Diagnostics.xcworkspace └── contents.xcworkspacedata ├── iOS Diagnostics ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── External │ ├── GZIP.h │ └── GZIP.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon29x29.png │ │ ├── AppIcon29x29@2x-1.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon40x40.png │ │ ├── AppIcon40x40@2x-1.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon76x76.png │ │ ├── AppIcon76x76@2x.png │ │ └── Contents.json │ └── Image.imageset │ │ ├── Contents.json │ │ ├── ElectricLabsLogoColour.png │ │ ├── ElectricLabsLogoColour@2x.png │ │ └── ElectricLabsLogoColour@3x.png ├── Info.plist ├── Log Analysers │ ├── ELLSqlPowerLogAnalyser.h │ └── ELLSqlPowerLogAnalyser.m ├── Models │ ├── Audio │ │ ├── ELLApplicationsUsingAudioReportModel.h │ │ └── ELLApplicationsUsingAudioReportModel.m │ ├── ELLPowerReportModel.h │ ├── ELLPowerReportModel.m │ ├── ELLReportSectionModel+Internal.h │ ├── ELLReportSectionModel.h │ ├── ELLReportSectionModel.m │ ├── Energy │ │ ├── ELLEnergyBreakdown.h │ │ ├── ELLEnergyBreakdown.m │ │ ├── ELLEnergyBreakdownReportModel.h │ │ ├── ELLEnergyBreakdownReportModel.m │ │ ├── ELLTotalEnergyForProcess.h │ │ ├── ELLTotalEnergyForProcess.m │ │ ├── ELLTotalEnergyReportModel.h │ │ └── ELLTotalEnergyReportModel.m │ ├── Location │ │ ├── ELLLocationCount.h │ │ ├── ELLLocationCount.m │ │ ├── ELLLocationReportModel.h │ │ ├── ELLLocationReportModel.m │ │ ├── ELLLocationUsage.h │ │ ├── ELLLocationUsage.m │ │ ├── ELLLocationUsageReport.h │ │ └── ELLLocationUsageReport.m │ ├── Notifications │ │ ├── ELLNotificationCount.h │ │ ├── ELLNotificationCount.m │ │ ├── ELLNotificationInfo.h │ │ ├── ELLNotificationInfo.m │ │ ├── ELLNotificationReportModel.h │ │ ├── ELLNotificationReportModel.m │ │ ├── ELLNotificationTopicModel.h │ │ └── ELLNotificationTopicModel.m │ ├── Overall │ │ ├── ELLOverallReportModel.h │ │ └── ELLOverallReportModel.m │ ├── Process Info │ │ ├── ELLProcessEvent.h │ │ ├── ELLProcessEvent.m │ │ ├── ELLProcessEventsReportModel.h │ │ ├── ELLProcessEventsReportModel.m │ │ ├── ELLProcessNamesReportModel.h │ │ └── ELLProcessNamesReportModel.m │ ├── Process Time │ │ ├── ELLProcessTime.h │ │ ├── ELLProcessTime.m │ │ ├── ELLProcessTimeBreakdownModel.h │ │ └── ELLProcessTimeBreakdownModel.m │ └── Signal │ │ ├── ELLSignalBreakdownModel.h │ │ └── ELLSignalBreakdownModel.m ├── Services │ ├── ELLMBSDevice.h │ ├── ELLPowerLogDownloadService.h │ └── ELLPowerLogDownloadService.m ├── Test Data │ └── TestData.PLSQL.gz ├── View Controllers │ ├── ELLConfigViewController.h │ ├── ELLConfigViewController.m │ ├── ELLMasterViewController.h │ ├── ELLMasterViewController.m │ ├── ELLReportSectionViewController.h │ └── ELLReportSectionViewController.m ├── View Models │ ├── Audio │ │ ├── ELLApplicationsUsingAudioReportViewModel.h │ │ └── ELLApplicationsUsingAudioReportViewModel.m │ ├── ELLPowerLogReportViewModel.h │ ├── ELLPowerLogReportViewModel.m │ ├── ELLReportSectionViewModel+Internal.h │ ├── ELLReportSectionViewModel.h │ ├── ELLReportSectionViewModel.m │ ├── Energy │ │ ├── ELLEnergyBreakdownReportViewModel.h │ │ ├── ELLEnergyBreakdownReportViewModel.m │ │ ├── ELLTotalEnergyReportViewModel.h │ │ └── ELLTotalEnergyReportViewModel.m │ ├── Location │ │ ├── ELLLocationReportViewModel.h │ │ ├── ELLLocationReportViewModel.m │ │ ├── ELLLocationUsageReportViewModel.h │ │ └── ELLLocationUsageReportViewModel.m │ ├── Notifications │ │ ├── ELLNotificationReportViewModel.h │ │ ├── ELLNotificationReportViewModel.m │ │ ├── ELLNotificationTopicViewModel.h │ │ └── ELLNotificationTopicViewModel.m │ ├── Overall │ │ ├── ELLBatteryChartDataSource.h │ │ ├── ELLBatteryChartDataSource.m │ │ ├── ELLOverallReportViewModel.h │ │ └── ELLOverallReportViewModel.m │ ├── Process Info │ │ ├── ELLProcessEventsReportViewModel.h │ │ ├── ELLProcessEventsReportViewModel.m │ │ ├── ELLProcessNamesReportViewModel.h │ │ └── ELLProcessNamesReportViewModel.m │ ├── Process Time │ │ ├── ELLProcessTimeBreakdownViewModel.h │ │ └── ELLProcessTimeBreakdownViewModel.m │ └── Signal │ │ ├── ELLSignalBreakdownViewModel.h │ │ └── ELLSignalBreakdownViewModel.m └── main.m ├── iOS DiagnosticsTests └── Info.plist └── screenshots ├── Screenshot1.png ├── Screenshot2.png └── Screenshot3.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/.gitignore -------------------------------------------------------------------------------- /Artwork/Icon1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/Artwork/Icon1024x1024.png -------------------------------------------------------------------------------- /Diagnostics.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/Diagnostics.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Diagnostics.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/Diagnostics.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/README.md -------------------------------------------------------------------------------- /iOS Diagnostics.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iOS Diagnostics/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/AppDelegate.h -------------------------------------------------------------------------------- /iOS Diagnostics/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/AppDelegate.m -------------------------------------------------------------------------------- /iOS Diagnostics/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /iOS Diagnostics/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS Diagnostics/External/GZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/External/GZIP.h -------------------------------------------------------------------------------- /iOS Diagnostics/External/GZIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/External/GZIP.m -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x-1.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x-1.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon76x76.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/AppIcon76x76@2x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/Image.imageset/Contents.json -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour@2x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Images.xcassets/Image.imageset/ElectricLabsLogoColour@3x.png -------------------------------------------------------------------------------- /iOS Diagnostics/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Info.plist -------------------------------------------------------------------------------- /iOS Diagnostics/Log Analysers/ELLSqlPowerLogAnalyser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Log Analysers/ELLSqlPowerLogAnalyser.h -------------------------------------------------------------------------------- /iOS Diagnostics/Log Analysers/ELLSqlPowerLogAnalyser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Log Analysers/ELLSqlPowerLogAnalyser.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Audio/ELLApplicationsUsingAudioReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Audio/ELLApplicationsUsingAudioReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Audio/ELLApplicationsUsingAudioReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Audio/ELLApplicationsUsingAudioReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/ELLPowerReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/ELLPowerReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/ELLPowerReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/ELLPowerReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/ELLReportSectionModel+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/ELLReportSectionModel+Internal.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/ELLReportSectionModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/ELLReportSectionModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/ELLReportSectionModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/ELLReportSectionModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLEnergyBreakdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLEnergyBreakdown.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLEnergyBreakdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLEnergyBreakdown.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLEnergyBreakdownReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLEnergyBreakdownReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLEnergyBreakdownReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLEnergyBreakdownReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLTotalEnergyForProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLTotalEnergyForProcess.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLTotalEnergyForProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLTotalEnergyForProcess.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLTotalEnergyReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLTotalEnergyReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Energy/ELLTotalEnergyReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Energy/ELLTotalEnergyReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationCount.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationCount.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationUsage.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationUsage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationUsage.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationUsageReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationUsageReport.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Location/ELLLocationUsageReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Location/ELLLocationUsageReport.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationCount.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationCount.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationInfo.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationInfo.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationTopicModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationTopicModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Notifications/ELLNotificationTopicModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Notifications/ELLNotificationTopicModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Overall/ELLOverallReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Overall/ELLOverallReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Overall/ELLOverallReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Overall/ELLOverallReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessEvent.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessEvent.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessEventsReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessEventsReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessEventsReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessEventsReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessNamesReportModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessNamesReportModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Info/ELLProcessNamesReportModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Info/ELLProcessNamesReportModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Time/ELLProcessTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Time/ELLProcessTime.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Time/ELLProcessTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Time/ELLProcessTime.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Time/ELLProcessTimeBreakdownModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Time/ELLProcessTimeBreakdownModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Process Time/ELLProcessTimeBreakdownModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Process Time/ELLProcessTimeBreakdownModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Signal/ELLSignalBreakdownModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Signal/ELLSignalBreakdownModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/Models/Signal/ELLSignalBreakdownModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Models/Signal/ELLSignalBreakdownModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/Services/ELLMBSDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Services/ELLMBSDevice.h -------------------------------------------------------------------------------- /iOS Diagnostics/Services/ELLPowerLogDownloadService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Services/ELLPowerLogDownloadService.h -------------------------------------------------------------------------------- /iOS Diagnostics/Services/ELLPowerLogDownloadService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Services/ELLPowerLogDownloadService.m -------------------------------------------------------------------------------- /iOS Diagnostics/Test Data/TestData.PLSQL.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/Test Data/TestData.PLSQL.gz -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLConfigViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLConfigViewController.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLConfigViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLConfigViewController.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLMasterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLMasterViewController.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLMasterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLMasterViewController.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLReportSectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLReportSectionViewController.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Controllers/ELLReportSectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Controllers/ELLReportSectionViewController.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Audio/ELLApplicationsUsingAudioReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Audio/ELLApplicationsUsingAudioReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Audio/ELLApplicationsUsingAudioReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Audio/ELLApplicationsUsingAudioReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/ELLPowerLogReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/ELLPowerLogReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/ELLPowerLogReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/ELLPowerLogReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/ELLReportSectionViewModel+Internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/ELLReportSectionViewModel+Internal.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/ELLReportSectionViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/ELLReportSectionViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/ELLReportSectionViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/ELLReportSectionViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Energy/ELLEnergyBreakdownReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Energy/ELLEnergyBreakdownReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Energy/ELLEnergyBreakdownReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Energy/ELLEnergyBreakdownReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Energy/ELLTotalEnergyReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Energy/ELLTotalEnergyReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Energy/ELLTotalEnergyReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Energy/ELLTotalEnergyReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Location/ELLLocationReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Location/ELLLocationReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Location/ELLLocationReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Location/ELLLocationReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Location/ELLLocationUsageReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Location/ELLLocationUsageReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Location/ELLLocationUsageReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Location/ELLLocationUsageReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Notifications/ELLNotificationReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Notifications/ELLNotificationReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Notifications/ELLNotificationReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Notifications/ELLNotificationReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Notifications/ELLNotificationTopicViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Notifications/ELLNotificationTopicViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Notifications/ELLNotificationTopicViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Notifications/ELLNotificationTopicViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Overall/ELLBatteryChartDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Overall/ELLBatteryChartDataSource.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Overall/ELLBatteryChartDataSource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Overall/ELLBatteryChartDataSource.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Overall/ELLOverallReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Overall/ELLOverallReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Overall/ELLOverallReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Overall/ELLOverallReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Info/ELLProcessEventsReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Info/ELLProcessEventsReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Info/ELLProcessEventsReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Info/ELLProcessEventsReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Info/ELLProcessNamesReportViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Info/ELLProcessNamesReportViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Info/ELLProcessNamesReportViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Info/ELLProcessNamesReportViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Time/ELLProcessTimeBreakdownViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Time/ELLProcessTimeBreakdownViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Process Time/ELLProcessTimeBreakdownViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Process Time/ELLProcessTimeBreakdownViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Signal/ELLSignalBreakdownViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Signal/ELLSignalBreakdownViewModel.h -------------------------------------------------------------------------------- /iOS Diagnostics/View Models/Signal/ELLSignalBreakdownViewModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/View Models/Signal/ELLSignalBreakdownViewModel.m -------------------------------------------------------------------------------- /iOS Diagnostics/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS Diagnostics/main.m -------------------------------------------------------------------------------- /iOS DiagnosticsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/iOS DiagnosticsTests/Info.plist -------------------------------------------------------------------------------- /screenshots/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/screenshots/Screenshot1.png -------------------------------------------------------------------------------- /screenshots/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/screenshots/Screenshot2.png -------------------------------------------------------------------------------- /screenshots/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyonanderson/iOS-Diagnostics/HEAD/screenshots/Screenshot3.png --------------------------------------------------------------------------------