-
-
Notifications
You must be signed in to change notification settings - Fork 164
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more Apple framework coverage #281
Open
tmc
wants to merge
31
commits into
main
Choose a base branch
from
add-more-coverage
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
- Add EventKit and MapKit to modules list - Create framework package structure - Update dependency configuration to handle framework relationships - Create structure files for new frameworks - Fix issue with generator code 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add custom implementations for key classes in EventKit - Add custom implementations for key classes in MapKit - Add enumeration type definitions - Add basic tests for framework bindings 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add additional methods to EventKit framework - Add example applications for MapKit and EventKit - Implement core calendar event functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add implementation status table for EventKit and MapKit - Include details about the number of classes and methods implemented 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add framework definitions to modules list - Implement core classes and methods for each framework - Create enumerations and constants - Add example applications for each framework - Handle framework dependencies 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add HealthKit, HomeKit, and GameKit to implementation status table - Update framework descriptions - Include method and class counts for new frameworks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add framework definitions to modules list - Implement core classes and methods for each framework - Create enumerations and constants - Add example applications for each framework - Handle framework dependencies 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add Security, JavaScriptCore, and UserNotifications to implementation status table - Update framework descriptions - Include method and class counts for new frameworks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add tech_analyzer tool to analyze Apple's technologies.json - Create analyze_technologies.sh script for comprehensive framework analysis - Generate enhanced API coverage report with detailed statistics - Provide implementation status across framework categories - Add strategic recommendations for future framework implementations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add Core Services, CoreBluetooth, NetworkExtension, Intents, FileProvider, PDFKit, Speech, CoreHaptics - Update module coupling maps to prevent circular dependencies - Add placeholder enum files for new frameworks - Remove frameworks from the CanIgnoreNotFound list 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add core functionality for CoreServices (LaunchServices and FSEvents) - Implement CoreBluetooth with Central/Peripheral management - Include Bluetooth service, characteristic, and descriptor interfaces - Add tests to verify implementations - Include extensive constants and enumerations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
…ementation strategy - Add detailed framework coverage statistics by category - Include implementation percentage estimates - Add recommended next frameworks based on analysis - Organize tools reference section into Generation and Analysis tools - Add new Implementation Strategy section with guidelines - Update documentation section with new guidance 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Fix syntax issues in delegate.go and corebluetooth_custom.go - Replace deprecated Send method with objc.Call - Simplify delegate implementation for now - Add basic tests to ensure class and constant definitions work 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Fix CoreBluetooth implementation to use objc.Call instead of Send - Fix NetworkExtension implementation to use objc.Call instead of Send - Fix Security framework to use proper Data handling with buffers - Added basic test files to verify frameworks are functioning at a class level - Temporarily disabled CreateVPNPasswordWithUsername due to API incompatibility These changes are necessary to make the frameworks work with the current objc package API which uses objc.Call for all method calls rather than the previous Send approach. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Add section on modern Objective-C method calling conventions - Document how to properly use objc.Call instead of deprecated Send - Add troubleshooting section for common issues encountered - Include byte array handling patterns with DataWithBytesLength - Add MutableDictionary usage patterns with SetObjectForKeyObject - Document Metal framework specific concerns - Add more testing examples and commands These updates reflect the lessons learned during the recent framework updates for CoreBluetooth, NetworkExtension, and other newly added frameworks. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Replace deprecated Send method with modern objc.Call pattern in JavaScriptCore - Fix test case in UserNotifications framework to properly compare enum types - Improve type safety and ensure consistent method calling conventions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Implement basic SpeechSynthesizer and SpeechRecognizer bindings - Add speech recognition capabilities with proper delegate handling - Create speech example application demonstrating text-to-speech and speech recognition - Include framework enum definitions and constants - Add basic tests to verify framework functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Implement core PDF document handling capabilities - Add PDFDocument, PDFView, and PDFPage bindings - Create PDF viewer example application - Implement document loading, page navigation, and metadata viewing - Include framework enum definitions and constants - Add tests to verify basic functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Implement core Intents framework capabilities for Siri integration - Add INIntent, INInteraction, and INPerson bindings - Create message and search intent examples - Implement proper delegate pattern for intent handling - Include framework enum definitions and constants - Add tests for verification of basic functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Update API_COVERAGE.md to reflect newly added frameworks - Add coverage information for Speech, PDFKit, and Intents frameworks - Update implementation statistics and framework counts - Improve clarity of implementation status for newly added frameworks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Ok this might be pretty cool. There's a lot going on though, maybe you can help me process. Did Claude write the bindings or the code to generate the bindings? Did it use the existing generation path or a new one? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Send
method calls to use modernobjc.Call
patternTesting
🤖 Generated with Claude Code