Wanli Xing

14 papers B 1Journal 8Unranked 5
YearRankTypeTitle / Venue / Authors
2026 J jnl
CoRR
Hoang M. Ngo, Tre' R. Jeter, Incheol Shin, Wanli Xing, Tamer Kahveci, My T. Thai
2026 J jnl
CoRR
Tutian Tang, Xingyu Ji, Wanli Xing, Ce Hao, Wenqiang Xu, Lin Shao, Cewu Lu, Qiaojun Yu, Jiangmiao Pang, Kaifeng Zhang
2025 B conf
WCNC
Shaohua Cao, Wanli Xing, Quancheng Zheng, Huaqi Lv, Xuyang Yuan, Zijun Zhan, Kai Fang, Mohammad Kamrul Hasan, Weishan Zhang
2025 conf
HCI (30)
Wanli Xing, Yichen Li, Peiyang Yu, Binyu Chen, Shuo Liu
2025 conf
CDC
Maolin Lei, Edoardo Romiti, Arturo Laurenzi, Cheng Zhou, Wanli Xing, Liang Lu, Nikos G. Tsagarakis
2025 J jnl
CoRR
Maolin Lei, Edoardo Romiti, Arturo Laurenzi, Cheng Zhou, Wanli Xing, Liang Lu, Nikos G. Tsagarakis
2022 J jnl
Entropy
Weidong Li, Anjian Wang, Wanli Xing
2022 J jnl
Entropy
Xuanru Zhou, Shuxian Zheng, Hua Zhang, Qunyi Liu, Wanli Xing, Xiaotong Li, Yawen Han, Pei Zhao
2021 J jnl
Interact. Learn. Environ.
Wanli Xing
2019 J jnl
Br. J. Educ. Technol.
Bo Pei, Wanli Xing, Hee-Sun Lee
2017 conf
IEEA
Wanli Xing, Shan Chen
2016 conf
CSCW Companion
Cecilia M. Aragon, Clayton Hutto, Andy Echenique, Brittany Fiore-Gartland, Yun Huang, Jinyoung Kim, Gina Neff, Wanli Xing, Joseph B. Bayer
2015 conf
ICDM Workshops
Yu Guo, Wanli Xing, Hee-Sun Lee
2009 J jnl
IEEE Trans. Biomed. Eng.
Liangbin Pan, Xindong Song, Guangxin Xiang, Andy Wong, Wanli Xing, Jing Cheng
redb/extractors/decompiler/apk/library_filter.py
← Index redb/extractors/decompiler/apk/library_filter.py python
"""Package-based library filtering for APK DEX code analysis.

Determines whether a method belongs to a known library/framework package
and should be filtered out of content tables. This is the Android equivalent
of is_lib_or_thunk() in the Binary Ninja pipeline.
"""

import os
from typing import Dict, List


DEFAULT_LIBRARY_PREFIXES = [
    "android.",
    "androidx.",
    "com.google.android.",
    "com.google.firebase.",
    "com.google.gson.",
    "com.google.protobuf.",
    "kotlin.",
    "kotlinx.",
    "org.apache.",
    "com.squareup.",
    "io.reactivex.",
    "org.reactivestreams.",
    "com.facebook.",
    "com.crashlytics.",
    "io.fabric.",
    "org.junit.",
    "org.mockito.",
]


class LibraryFilter:
    """Filters library/framework classes from APK analysis."""

    def __init__(self, prefixes: List[str] = None):
        env_prefixes = os.getenv("APK_LIBRARY_PREFIXES")
        if env_prefixes:
            self._prefixes = [p.strip() for p in env_prefixes.split(",") if p.strip()]
        elif prefixes is not None:
            self._prefixes = prefixes
        else:
            self._prefixes = DEFAULT_LIBRARY_PREFIXES

        # Convert Dalvik-style prefixes to both formats for matching
        self._dot_prefixes = tuple(self._prefixes)

        self._stats = {"library": 0, "user": 0}

    def is_library(self, class_name: str) -> bool:
        """Check if a class belongs to a known library/framework package.

        Accepts both Java dot notation (com.example.Foo) and Dalvik
        descriptor notation (Lcom/example/Foo;).
        """
        # Normalize Dalvik descriptor to dot notation
        normalized = self._normalize_class_name(class_name)

        is_lib = normalized.startswith(self._dot_prefixes)
        if is_lib:
            self._stats["library"] += 1
        else:
            self._stats["user"] += 1
        return is_lib

    def get_filter_stats(self) -> Dict[str, int]:
        """Return counts of filtered vs. retained classes."""
        return dict(self._stats)

    @staticmethod
    def _normalize_class_name(class_name: str) -> str:
        """Convert Dalvik descriptor to dot notation.

        Lcom/example/Foo; -> com.example.Foo
        com.example.Foo -> com.example.Foo
        """
        if class_name.startswith("L") and class_name.endswith(";"):
            return class_name[1:-1].replace("/", ".")
        return class_name.replace("/", ".")