Skip to content
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
wants to merge 31 commits into
base: main
Choose a base branch
from
Open

Add more Apple framework coverage #281

wants to merge 31 commits into from

Conversation

tmc
Copy link
Collaborator

@tmc tmc commented Mar 8, 2025

Summary

  • Add three new frameworks: Speech, PDFKit, and Intents with examples
  • Fix JavaScriptCore and UserNotifications frameworks to use modern objc.Call patterns
  • Update documentation to reflect new framework coverage

Changes

  • Speech Framework: Added speech synthesis and recognition capabilities with example
  • PDFKit Framework: Added PDF document handling and viewing with example
  • Intents Framework: Added Siri integration capabilities with example
  • Bug Fixes: Updated deprecated Send method calls to use modern objc.Call pattern
  • Documentation: Updated API coverage documentation

Testing

  • Added unit tests for all new frameworks
  • Created working examples for each new framework
  • Verified all tests pass and examples compile correctly
  • Checked compatibility with existing code

🤖 Generated with Claude Code

tmc added 30 commits March 2, 2025 03:47
- 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>
@progrium
Copy link
Owner

progrium commented Mar 8, 2025

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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants