Skip to content

Instantly share code, notes, and snippets.

@MarcoEidinger
Created August 21, 2023 19:55
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save MarcoEidinger/22feb1588c3d7be41c42853a77e52772 to your computer and use it in GitHub Desktop.
Save MarcoEidinger/22feb1588c3d7be41c42853a77e52772 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
#!/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