Forked from MarcoEidinger/findRequiredReasonAPIUsage.sh
Created
March 19, 2024 06:37
-
-
Save manhpham90vn/ad3e02a74dc0e8e4f93d8f35449593c9 to your computer and use it in GitHub Desktop.
A shell script to find if any "required reason API" are used in Swift or Objective-C files within that folder or subfolders
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api | |
searchTerms=( | |
# File timestamp APIs | |
"creationDate" | |
"modificationDate" | |
"fileModificationDate" | |
"contentModificationDateKey" | |
"creationDateKey" | |
"getattrlist" | |
"getattrlistbulk" | |
"fgetattrlist" | |
"stat" | |
"fstat" | |
"fstatat" | |
"lstat" | |
"getattrlistat" | |
# System boot time APIs | |
"systemUptime" | |
"mach_absolute_time" | |
# Disk space APIs | |
"volumeAvailableCapacityKey" | |
"volumeAvailableCapacityForImportantUsageKey" | |
"volumeAvailableCapacityForOpportunisticUsageKey" | |
"volumeTotalCapacityKey" | |
"systemFreeSize" | |
"systemSize" | |
"statfs" | |
"statvfs" | |
"fstatfs" | |
"fstatvfs" | |
"getattrlist" | |
"fgetattrlist" | |
"getattrlistat" | |
# Active keyboard APIs | |
"activeInputModes" | |
# User defaults APIs | |
"UserDefaults" | |
) | |
search_dir="$1" | |
if [ -z "$search_dir" ]; then | |
echo "Usage: $0 <search_dir>" | |
exit 1 | |
fi | |
for pattern in "${searchTerms[@]}"; do | |
find "$search_dir" -type f \( -name "*.swift" -o -name "*.m" \) -exec grep -H -Fw "$pattern" {} + | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment