MCPcopy
hub / github.com/markzhai/AndroidPerformanceMonitor

github.com/markzhai/AndroidPerformanceMonitor @v1.3.0 sqlite

repository ↗ · DeepWiki ↗ · release v1.3.0 ↗
247 symbols 518 edges 30 files 42 documented · 17%
README

Chinese README

BlockCanary Maven Central

A transparent ui-block detection library for Android, app only needs one-line-code to setup.

The naming is to pay respect to the great library LeakCanary, ui-related codes are modified from leakcanary's ui part.

  • 1.3.0 Add white-list and concern-package feature.

Getting started

You may choose how to assemble them as you like.

dependencies {
    // most often used way, enable notification to notify block event
    compile 'com.github.moduth:blockcanary-android:1.3.0'

    // this way you only enable BlockCanary in debug package
    // debugCompile 'com.github.moduth:blockcanary-android:1.3.0'
    // releaseCompile 'com.github.moduth:blockcanary-no-op:1.3.0'
}

As this library uses getMainLooper().setMessageLogging(), please check if you set it in your app (related issue https://github.com/moduth/blockcanary/issues/27)

Usage

Maximum log count is set to 500, you can rewrite it in your app int.xml.

<integer name="block_canary_max_stored_count">1000</integer>
public class DemoApplication extends Application {
    @Override
    public void onCreate() {
        // ...
        // Do it on main process
        BlockCanary.install(this, new AppBlockCanaryContext()).start();
    }
}

Implement your application BlockCanaryContext context (strongly recommend you to check all these configs):

public class AppBlockCanaryContext extends BlockCanaryContext {

    /**
     * Implement in your project.
     *
     * @return Qualifier which can specify this installation, like version + flavor.
     */
    public String provideQualifier() {
        return "unknown";
    }

    /**
     * Implement in your project.
     *
     * @return user id
     */
    public String provideUid() {
        return "uid";
    }

    /**
     * Network type
     *
     * @return {@link String} like 2G, 3G, 4G, wifi, etc.
     */
    public String provideNetworkType() {
        return "unknown";
    }

    /**
     * Config monitor duration, after this time BlockCanary will stop, use
     * with {@code BlockCanary}'s isMonitorDurationEnd
     *
     * @return monitor last duration (in hour)
     */
    public int provideMonitorDuration() {
        return -1;
    }

    /**
     * Config block threshold (in millis), dispatch over this duration is regarded as a BLOCK. You may set it
     * from performance of device.
     *
     * @return threshold in mills
     */
    public int provideBlockThreshold() {
        return 1000;
    }

    /**
     * Thread stack dump interval, use when block happens, BlockCanary will dump on main thread
     * stack according to current sample cycle.
     * 


     * Because the implementation mechanism of Looper, real dump interval would be longer than
     * the period specified here (especially when cpu is busier).
     * 


     *
     * @return dump interval (in millis)
     */
    public int provideDumpInterval() {
        return provideBlockThreshold();
    }

    /**
     * Path to save log, like "/blockcanary/", will save to sdcard if can.
     *
     * @return path of log files
     */
    public String providePath() {
        return "/blockcanary/";
    }

    /**
     * If need notification to notice block.
     *
     * @return true if need, else if not need.
     */
    public boolean displayNotification() {
        return true;
    }

    /**
     * Implement in your project, bundle files into a zip file.
     *
     * @param src  files before compress
     * @param dest files compressed
     * @return true if compression is successful
     */
    public boolean zip(File[] src, File dest) {
        return false;
    }

    /**
     * Implement in your project, bundled log files.
     *
     * @param zippedFile zipped file
     */
    public void upload(File zippedFile) {
        throw new UnsupportedOperationException();
    }


    /**
     * Packages that developer concern, by default it uses process name,
     * put high priority one in pre-order.
     *
     * @return null if simply concern only package with process name.
     */
    public List<String> concernPackages() {
        return null;
    }

    /**
     * Filter stack without any in concern package, used with @{code concernPackages}.
     *
     * @return true if filter, false it not.
     */
    public boolean filterNonConcernStack() {
        return false;
    }

    /**
     * Provide white list, entry in white list will not be shown in ui list.
     *
     * @return return null if you don't need white-list filter.
     */
    public List<String> provideWhiteList() {
        LinkedList<String> whiteList = new LinkedList<>();
        whiteList.add("org.chromium");
        return whiteList;
    }

    /**
     * Whether to delete files whose stack is in white list, used with white-list.
     *
     * @return true if delete, false it not.
     */
    public boolean deleteFilesInWhiteList() {
        return true;
    }
}

How does it work?

Blog in Chinese: BlockCanary.

Principle flow picture:

flow

Screenshot

Block detail Block list

Contributors

This library is initially created by markzhai, and maintained under the organization moduth with nimengbo and zzz40500.

Special thanks to android-cjj, Mr.Bao, chiahaolu to contribute.

Change Log

Check CHANGELOG

Contribute

If you would like to contribute code to BlockCanary you can do so through GitHub by forking the repository and sending a pull request.

License

Copyright (C) 2016 MarkZhai (http://zhaiyifan.cn).

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Extension points exported contracts — how you extend this code

BlockInterceptor (Interface)
(no doc) [2 implementers]
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockInterceptor.java
BlockListener (Interface)
(no doc) [1 implementers]
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/LooperMonitor.java

Core symbols most depended-on inside this repo

getContext
called by 19
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryInternals.java
toString
called by 13
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/internal/BlockInfo.java
getInstance
called by 10
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryInternals.java
get
called by 8
blockcanary-android-no-op/src/main/java/com/github/moduth/blockcanary/BlockCanaryContext.java
updateUi
called by 7
blockcanary-android/src/main/java/com/github/moduth/blockcanary/ui/DisplayActivity.java
provideContext
called by 5
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryContext.java
start
called by 4
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/CpuSampler.java
getLogFiles
called by 4
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryInternals.java

Shape

Method 210
Class 34
Interface 2
Enum 1

Languages

Java100%

Modules by API surface

blockcanary-android/src/main/java/com/github/moduth/blockcanary/ui/DisplayActivity.java31 symbols
blockcanary-android-no-op/src/main/java/com/github/moduth/blockcanary/BlockCanaryContext.java19 symbols
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryContext.java19 symbols
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/BlockCanaryInternals.java15 symbols
blockcanary-android/src/main/java/com/github/moduth/blockcanary/BlockCanary.java14 symbols
blockcanary-android/src/main/java/com/github/moduth/blockcanary/ui/DetailAdapter.java12 symbols
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/internal/BlockInfo.java12 symbols
blockcanary-sample/src/main/java/com/example/blockcanary/DemoFragment.java10 symbols
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/LooperMonitor.java10 symbols
blockcanary-sample/src/main/java/com/example/blockcanary/AppContext.java9 symbols
blockcanary-android-no-op/src/main/java/com/github/moduth/blockcanary/BlockCanary.java9 symbols
blockcanary-analyzer/src/main/java/com/github/moduth/blockcanary/CpuSampler.java8 symbols

For agents

$ claude mcp add AndroidPerformanceMonitor \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact