Weifei Hu

11 papers Journal 11
YearRankTypeTitle / Venue / Authors
2026 J jnl
Adv. Eng. Informatics
Qing Jiao, Weifei Hu, Tingjie Wang, Geyu Shao, Ning Tang, Jiayi Wang, Long Fang
2026 J jnl
Reliab. Eng. Syst. Saf.
Weifei Hu, Jiale Liao, Jiquan Yan, Jianhao Fang, Feng Zhao, Ikjin Lee, Jianrong Tan
2025 J jnl
J. Intell. Manuf.
Qing Jiao, Weifei Hu, Guangbo Hao, Jin Cheng, Xiang Peng, Zhenyu Liu, Jianrong Tan
2025 J jnl
Appl. Soft Comput.
Zili Wang, Jie Li, Yujun Yuan, Shuyou Zhang, Weifei Hu, Jun Ma, Jianrong Tan
2025 J jnl
Reliab. Eng. Syst. Saf.
Tongzhou Zhang, Weifei Hu, Feng Zhao, Jiquan Yan, Ning Tang, Ikjin Lee, Jianrong Tan
2024 J jnl
Adv. Eng. Informatics
Hao Lv, Jin Cheng, Zhenyu Liu, Weifei Hu, Jianrong Tan
2023 J jnl
J. Intell. Manuf.
Weifei Hu, Jinyi Shao, Qing Jiao, Chuxuan Wang, Jin Cheng, Zhenyu Liu, Jianrong Tan
2023 J jnl
IEEE Trans. Syst. Man Cybern. Syst.
Zhenyu Liu, Liang Hu, Weifei Hu, Jianrong Tan
2023 J jnl
Neural Networks
Hansu Kim, Chuxuan Wang, Hyoseok Byun, Weifei Hu, Sanghyuk Kim, Qing Jiao, Tae Hee Lee
2022 J jnl
Robotics Comput. Integr. Manuf.
Weifei Hu, Chuxuan Wang, Feixiang Liu, Xiang Peng, Pengwen Sun, Jianrong Tan
2019 J jnl
IEEE Access
Jin Cheng, Wei Lu, Weifei Hu, Zhenyu Liu, Yangyan Zhang, Jianrong Tan
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("/", ".")