SwiftCompilationPerformanceReporter alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view SwiftCompilationPerformanceReporter alternatives based on common mentions on social networks and blogs.
-
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, โฆ โ Get rid of all String-based APIs! -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
GDPerformanceView-Swift
Shows FPS, CPU and memory usage, device model, app and iOS versions above the status bar and report FPS, CPU and memory usage via delegate. -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
iSimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator. -
Blade
Better asset workflow for iOS developers. Generate Xcode image catalogs for iOS / OSX app icons, universal images, and more. -
Realm Browser
DISCONTINUED. DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
DISCONTINUED. A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
SuperDelegate
DISCONTINUED. SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
abandoned-strings
Command line program that detects unused resource strings in an iOS or OS X application. -
AVXCAssets-Generator
AVXCAssets Generator takes path for your assets images and creates appiconset and imageset for you in just one click
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SwiftCompilationPerformanceReporter or a related project?
README
SwiftCompilationPerformanceReporter
Inspired by Brian and Bryan's prior work, we've decided to develop a Swift Package and script to generate automated reports for slow Swift compilation paths in specific targets!
SwiftCompilationPerformanceReporter (nicknamed SwiftCPR) can be configured to build a specific target, output raw debug times to a specific location, and clean those logs to rank the slowest parts to compile.
Requirements
- Xcode 8 Beta
- 8/18/2016 Swift Trunk Development Snapshot (We'll periodically update this repo to work with the latest snapshots)
Configuration
SwiftCompilationPerformanceReporter can be configured via the config.json
file. Below is a description of the options available and a sample configuration:
{
// Note: either a project or workspace file can be specified, _but not both_
"workspacePath": "/Users/jasdev/orangina/Orangina.xcworkspace",
"projectPath": "/Users/jasdev/orangina/Orangina.xcodeproj",
"scheme": "Orangina",
"buildOutputDirectory": "/Users/jasdev/Desktop/CompilationLogs/",
"reportOutputDirectory": "/Users/jasdev/Desktop/ProcessedLogs/",
"limit": 10
}
workspacePath
: The absolute path to the workspace file to use.
projectPath
: The absolute path to the project file to use.
scheme
: The scheme to use
buildOutputDirectory
: The directory to store the raw build output files with Swift compilation times.
reportOutputDirectory
: The directory to store the processed logs derived from the raw log output.
limit
: The number of compilation paths to include in the final results (i.e. the slowest limit
paths that compiler handled).
Installation
- Simply clone this repository on the machine that will be generating these reports.
- Run
swift build
in the root directory - Make sure all directories used in
config.json
are set properly and exist. - If your desired scheme is built with a pre-3.x version of Swift, you'll want to
xcode-select
back to a stable version (i.e.sudo xcode-select -s /Applications/Xcode.app
) - To kick off the script, run
.build/debug/SwiftCompilationPerformanceReporter
in the root directory! - If there are any errors, the script will output them.
- The processed logs will be outputted as timestamped files in
reportOutputDirectory
.
Output
The processed logs will be outputted as a tab separated file with 3 columns after the first line (which holds the total build time). All time units are in seconds.
[Build Time]\t[Path and Line]\t[Detailed Description]
Sample output file:
Total build time: 1214.91016298532
17.0409 /Users/jasdev/orangina/Classes/PerformanceLoggingEvent.swift:278:37 final get {}
7.9331 /Users/jasdev/orangina/Components/ComposeUI/Classes/Election/LeaderboardTableView.swift:71:17 @objc final class func totalHeight(candidates: UInt, allowsLeaderboard: Bool) -> CGFloat
6.2961 /Users/jasdev/orangina/Classes/UniversalLink.swift:127:25 private final class func dictionaryOfAppArgumentsFromQueryString(string: String) -> [NSObject : AnyObject]?
4.2116 /Users/jasdev/orangina/Classes/ActivityViewController.swift:56:22 final get {}