Commit Graph

7 Commits

Author SHA1 Message Date
58f92c178d feat(phase-9.75g-0): Complete BID-FFI Day 5 - Plugin method calling system
## 🎉 Major Achievement
- BID-FFI FileBox plugin fully functional with Nyash integration
- Complete plugin-backed file I/O operations working
- Successful write/read operations via FFI interface

##  What Works
- Plugin loading from nyash.toml configuration
- FileBox plugin instantiation: `new FileBox(path)`
- Method calls: `f.write("text")`, `f.read()`
- Complete round-trip: Nyash → Plugin → File → Plugin → Nyash

## 🔧 Implementation Details
- Added PluginFileBox method dispatch in execute_method_call()
- Implemented execute_plugin_file_method() for read/write/exists/close
- Fixed "Cannot call method on non-instance type" error
- Plugin methods work via TLV encoding/FFI/decoding

## 🚨 Known Issue (Next Phase)
Current implementation uses hardcoded method names (read/write/exists/close).
This violates BID-FFI dynamic principles - methods should be discovered
from plugin metadata, not hardcoded in Nyash interpreter.

## 📊 Test Results
```
local f
f = new FileBox("test.txt")
f.write("Hello from Nyash via plugin\!")
print("READ=" + f.read())
# Output: READ=Hello from Nyash via plugin\!
```

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 11:44:59 +09:00
bec0e9bc92 revert: 古いプラグインシステム実装前の状態に巻き戻し
- ソースコードをcommit 3f7d71fの状態に復元(古いプラグインシステム実装前)
- docsフォルダは最新の状態を維持(BID-FFI設計ドキュメント含む)
- nyashバイナリの基本動作確認済み
- BID-FFIシステムをクリーンに再実装する準備完了

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-18 08:34:19 +09:00
2b2dcc5647 feat(phase-9.75f-1): Complete FileBox dynamic library implementation
- Implement C ABI plugin system with workspace configuration
- Create FileBox plugin with full read/write/exists/toString support
- Fix critical memory management issues (double free) with Arc
- Add comprehensive test suite for dynamic FileBox functionality
- Achieve 98% build time improvement for plugin (2.87s vs 2-3min)
- Maintain full backward compatibility with feature flags

FileBox now loads dynamically, drastically reducing build times while
maintaining all functionality. Next: Math/Time dynamic migration.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-17 09:31:35 +09:00
bd20c91b67 feat(9.75f-1): Implement plugin loader and interpreter integration
- Add plugin_loader.rs with FileBoxProxy implementation
- Integrate dynamic FileBox into interpreter (execute_new, method calls)
- Add feature flag 'dynamic-file' support throughout
- Create test program test_dynamic_filebox.nyash
- Plugin builds in 2.86s (vs main build 2+ minutes\!)

Build time improvement confirmed:
- Plugin-only build: 2.86s 
- Main build: 2+ minutes (timeout)

Next: Complete testing once main build finishes
2025-08-17 04:23:09 +09:00
fa1a3ad644 feat(Phase 9.75j): Complete warning elimination - 106→0 warnings (100% improvement)
 Major code quality improvements:
• Fixed all unused variable and parameter warnings
• Added appropriate #[allow(dead_code)] annotations
• Renamed constants to follow Rust naming conventions
• Achieved completely warning-free codebase

🔧 Key changes:
• Parser expressions: Fixed arg_count and statement_count usage
• MIR modules: Added dead_code allows for future-use code
• Backend modules: Prefixed unused parameters with underscore
• Effect constants: Renamed 'read' to 'READ_ALIAS' for conventions

📊 Results:
• Before: 106 warnings (noisy build output)
• After: 0 warnings (clean build)
• Improvement: 100% warning reduction

🎯 This continues the bug fixing initiative "つづきのしゅうせいおねがいにゃ!"
from Phase 9.75i (birth() fixes, static methods, Copilot apps).

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-16 17:39:04 +09:00
69f42c6f1e feat(refactor): Extract calls module from expressions (Step 3)
- Move method call and from delegation call logic to dedicated calls.rs module
- Extract execute_method_call, execute_from_call, and execute_from_parent_constructor (515+ lines moved)
- Fix import issues with ResultBox type resolution
- Remove duplicate functions from mod.rs
- Build passes successfully with comprehensive method call handling
2025-08-16 12:58:42 +09:00
b0ed2920fd refactor(interpreter): Step 1 - Setup expressions module structure
- Move expressions.rs to expressions/mod.rs
- Create empty module files: operators.rs, calls.rs, access.rs, builtins.rs
- Add module declarations to mod.rs
- Build passes successfully

Next: Step 2 - Extract operator functions
2025-08-16 12:41:19 +09:00