Phase 5 (NC Validator) UNIFY complete. v0.1 Multi-CN Release milestone closed — all 5 phases done. - 05-01-SUMMARY.md: NcProgramValidator + 30+ tests documented - ROADMAP.md: all phases marked complete, v0.2 scope drafted - PROJECT.md: requirements evolved, tech stack updated to 4 manufacturers - STATE.md: milestone 100%, loop closed, next action documented Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
97 lines
3.2 KiB
Markdown
97 lines
3.2 KiB
Markdown
# Roadmap: FanucProgramManager
|
|
|
|
## Overview
|
|
|
|
Console tool for CNC program transfer and file management. Fanuc FOCAS base, expanding to multi-CN (Heidenhain LSV2, Siemens FTP, Mitsubishi FTP) with NC program validation.
|
|
|
|
## Current Milestone
|
|
|
|
**v0.1 Multi-CN Release** (v0.1.0)
|
|
Status: ✅ Complete
|
|
Phases: 5 of 5 complete
|
|
Completed: 2026-05-13
|
|
|
|
## Phases
|
|
|
|
| Phase | Name | Plans | Status | Completed |
|
|
|-------|------|-------|--------|-----------|
|
|
| 1 | cnc-abstraction | 1 | ✅ Complete | 2026-05-13 |
|
|
| 2 | heidenhain | 1 | ✅ Complete | 2026-05-13 |
|
|
| 3 | siemens | 1 | ✅ Complete | 2026-05-13 |
|
|
| 4 | program-wiring | 1 | ✅ Complete | 2026-05-13 |
|
|
| 5 | nc-validator | 1 | ✅ Complete | 2026-05-13 |
|
|
|
|
## Phase Details
|
|
|
|
### Phase 1: cnc-abstraction ✅
|
|
|
|
**Goal:** Fix namespace, add all Cnc/ files to csproj, complete ICncMachine + IFanucMachine with 3-file support
|
|
**Completed:** 2026-05-13
|
|
|
|
**Delivered:**
|
|
- Namespace `Fanuc_integration.Cnc.*` → `FanucProgramManager.Cnc.*` (29 files)
|
|
- `IFocasDialect` extended: `UploadStart`/`DownloadStart` accept `short fileType`
|
|
- `IFanucMachine` interface: extends `ICncMachine` with tool offset + work zero R/W
|
|
- `CncManufacturer` enum: Fanuc, Heidenhain, Siemens
|
|
- All 29 `Cnc/**/*.cs` files added to csproj
|
|
|
|
### Phase 2: heidenhain ✅
|
|
|
|
**Goal:** Implement ICncMachine for Heidenhain TNC via LSV2 protocol
|
|
**Completed:** 2026-05-13
|
|
|
|
**Delivered:**
|
|
- `HeidenhainConnectionConfig` — IP, port 19000, credentials, timeout
|
|
- `Lsv2Client` — TCP framing, CRC-16/CCITT, login (SELECT+LOG_IN), ReceiveFile/SendFile
|
|
- `HeidenhainMachine : ICncMachine` — RunGuardedAsync pattern, state machine
|
|
|
|
### Phase 3: siemens ✅
|
|
|
|
**Goal:** Implement ICncMachine for Siemens Sinumerik via FTP
|
|
**Completed:** 2026-05-13
|
|
|
|
**Delivered:**
|
|
- `SiemensConnectionConfig` — IP, port 21, creds, program dir `/_N_MPF_DIR/`
|
|
- `SiemensFtpClient` — FtpWebRequest wrapper, ASCII mode, passive
|
|
- `SiemensMachine : ICncMachine`
|
|
|
|
**Bonus (post-apply):**
|
|
- `MitsubishiConnectionConfig` / `MitsubishiFtpClient` / `MitsubishiMachine : ICncMachine`
|
|
- `CncManufacturer.Mitsubishi` added to enum + factory + CLI
|
|
|
|
### Phase 4: program-wiring ✅
|
|
|
|
**Goal:** Wire all manufacturers into Program.cs + InputArgs
|
|
**Completed:** 2026-05-13
|
|
|
|
**Delivered:**
|
|
- `CncMachineFactory` — creates right `ICncMachine` from `InputArgs`
|
|
- `InputArgs` — added `manufacturer`, `username`, `password` fields
|
|
- `Program.cs` — full rewrite using `ICncMachine` factory; Fanuc 3-file via `IFanucMachine` cast
|
|
|
|
### Phase 5: nc-validator ✅
|
|
|
|
**Goal:** Per-manufacturer NC program validator runs inside WriteProgramAsync before upload
|
|
**Completed:** 2026-05-13
|
|
|
|
**Delivered:**
|
|
- `ValidationSeverity` / `ValidationError` / `ValidationResult` model types
|
|
- `INcProgramValidator` + `NcProgramValidator` with universal + per-manufacturer rules
|
|
- Validator injected into all 4 machine classes
|
|
- `NcProgramValidatorTests` — 30+ NUnit tests
|
|
|
|
---
|
|
|
|
## Next Milestone
|
|
|
|
**v0.2 License System** (proposed)
|
|
Status: Not started
|
|
|
|
Planned scope:
|
|
- Hardware fingerprint (CPU ID + disk serial)
|
|
- Encrypted license file (AES, offline)
|
|
- License generator tool (internal)
|
|
- Replace hardcoded key/IV
|
|
|
|
---
|
|
*Roadmap updated: 2026-05-17 — v0.1 milestone complete*
|