Pury


Source link: https://github.com/NikitaKozlov/Pury

#Pury Pury is a profiling library for measuring time between multiple independent events. Events can be triggered with one of the annotations or with a method call. All events for a single scenario are united into one report.

If you are interesting in motivation behind this library and it's inner structure, please, check this article.

Output for launching an example app:

App Start --> 0ms
Splash Screen --> 5ms
  Splash Load Data --> 37ms
  Splash Load Data <-- 1042ms, execution = 1005ms
Splash Screen <-- 1042ms, execution = 1037ms
Main Activity Launch --> 1043ms

onCreate() --> 1077ms

onCreate() <-- 1100ms, execution = 23ms
  onStart() --> 1101ms

onStart() <-- 1131ms, execution = 30ms
Main Activity Launch <-- 1182ms, execution = 139ms App Start <-- 1182ms 

As you can see, Pury measured time for launching the application, including intermediate stages, like loading data on splash screen and activity’s lifecycle methods. For each stage start and stop timestamps are displayed and so as execution time.

Output for a screen with pagination:

Get Next Page --> 0ms
Load --> avg = 1.80ms, min = 1ms, max = 3ms, for 5 runs
Load <-- avg = 258.40ms, min = 244ms, max = 278ms, for 5 runs
Process --> avg = 261.00ms, min = 245ms, max = 280ms, for 5 runs
Process <-- avg = 114.20ms, min = 99ms, max = 129ms, for 5 runs Get Next Page <-- avg = 378.80ms, min = 353ms, max = 411ms, for 5 runs 

In this example, you can see some statistical information that was collected during 5 runs. For each stage start timestamp and execution time are displayed.

##How to profile with Pury?

There are three basic annotations:

  1. @StartProfiling — triggers an event to start Stage or Run. Profiling will start before method execution.

    @StartProfiling(profilerName = "List pagination", runsCounter = 3, stageName = "Loading",  stageOrder = 0) private void loadNextPage() {
     
    }
     

    It can accept up to 5 arguments:

    1. profilerName ?—?name of the profiler is displayed in the result. Along with runsCounter identifies the Profiler.
    2. runsCounter ?—?amount of runs for Profiler to wait for. Result is available only after all runs are stopped.
    3. stageName ?—?identifies a stage to start. Name is displayed in the result.
    4. stageOrder ?—?stage order reflects the hierarchy of stages. In order to start a new stage, it must be bigger then order of current most nested active stage. Stage order is a subject to one more limitation: first start event must have order number equal zero.
    5. enabled ?—?if set to false, an annotation is skipped.

    Profiler is identified by combination of profilerName and runsCounter. So if you are using same profilerName, but different runsCounter, then you will get two separate results, instead of a combined one.

  2. @StopProfiling — triggers an event to stop Stage or Run. Profiling will be stopped after method execution. Once Stage or Run is stopped, all nested stages are also stopped.

    @StopProfiling(profilerName = "List pagination", runsCounter = 3, stageName = "Loading") private void displayNextPage() {
     
    }
     

    It has the same arguments as @StartProfiling, except stageOrder.

  3. @MethodProfiling — combination of StartProfiling and StopProfiling.

    @MethodProfiling(profilerName = "List pagination", runsCounter = 3, stageName = "Process", ` stageOrder = 1) private List<String> processNextPage() {
     
    }
     

    It has exact same arguments as StartProfiling with one small remark. If stageName is empty then it will be generated from method’s name and class. This is made in order to be able to use MethodProfiling without any arguments and get a meaningful result.

Since Java 7 doesn’t support repeatable annotations, group annotations for each of annotation above were made:

@StartProfilings(StartProfiling[] value)  @StopProfilings(StopProfiling[] value)  @MethodProfilings(MethodProfiling[] value) 

As already mentioned, you can call start or stop profiling with a direct call:

Pury.startProfiling();
  Pury.stopProfiling();
 

Arguments are exactly the same as in corresponding annotations.

##Logging Results By default Pury uses default logger, but it also allows you to set your own one. All you need to do is to implement Logger interface and set it via Pury.setLogger().

public interface Logger {

  void result(String tag, String message);

void warning(String tag, String message);

void error(String tag, String message);
 
}
 

By default result goes to Log.d, warning to Log.w and error to Log.e.

##Plugins Wiki page for Plugins is in the process of creation

Plugins enable customisation and better control over reporting profiling results. They provides access to raw results to process them in the most suitable way. If you are interested to read more about them, please check this post

##How to start using Pury? In order to start using Pury, you need to do only two simple steps.

First, apply AspectJ weaving plugin, there are more then one such a plugin out there. Pury inside uses WeaverLite plugin. So you can use it as well.

Second, include following dependencies:

dependencies {

 compile 'com.nikitakozlov.pury:annotations:1.0.1'
 debugCompile 'com.nikitakozlov.pury:pury:1.1.0'
 releaseCompile 'com.nikitakozlov.pury:pury-no-op:1.1.0' 
}
 

If you want to profile on release, then use compile instead of compileDebug for a second dependency and removed third.

##License The MIT License (MIT)

Copyright (c) 2016 Nikita Kozlov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Resources

Mystique is a Kotlin library for Android’s RecyclerView which allows you to create homogeneous and heterogeneous lists effortlessly using an universal adapter. It’s RecyclerView.Adapter on steroids, written purely in Kotlin (oh yeah, with extension functions too).

A lightweight, simple structured NoSQL database for Android.

A simple continuous animation library for Android UI.

A library of imitation picture tags,you can create and edit tags, add ripple effect.

Library of an android button activated by swipe.

Easy to use. Make your app look great Better UX in sensitive button

CroPicker is album and image Picker Library for Android. Supports import a list of Albums and support multiple image selection.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes