Files
geutebruck/GeViSetEditor/GeViSetEditor.CLI/Commands/EnhancedParseCommand.cs
Administrator 14893e62a5 feat: Geutebruck GeViScope/GeViSoft Action Mapping System - MVP
This MVP release provides a complete full-stack solution for managing action mappings
in Geutebruck's GeViScope and GeViSoft video surveillance systems.

## Features

### Flutter Web Application (Port 8081)
- Modern, responsive UI for managing action mappings
- Action picker dialog with full parameter configuration
- Support for both GSC (GeViScope) and G-Core server actions
- Consistent UI for input and output actions with edit/delete capabilities
- Real-time action mapping creation, editing, and deletion
- Server categorization (GSC: prefix for GeViScope, G-Core: prefix for G-Core servers)

### FastAPI REST Backend (Port 8000)
- RESTful API for action mapping CRUD operations
- Action template service with comprehensive action catalog (247 actions)
- Server management (G-Core and GeViScope servers)
- Configuration tree reading and writing
- JWT authentication with role-based access control
- PostgreSQL database integration

### C# SDK Bridge (gRPC, Port 50051)
- Native integration with GeViSoft SDK (GeViProcAPINET_4_0.dll)
- Action mapping creation with correct binary format
- Support for GSC and G-Core action types
- Proper Camera parameter inclusion in action strings (fixes CrossSwitch bug)
- Action ID lookup table with server-specific action IDs
- Configuration reading/writing via SetupClient

## Bug Fixes
- **CrossSwitch Bug**: GSC and G-Core actions now correctly display camera/PTZ head parameters in GeViSet
- Action strings now include Camera parameter: `@ PanLeft (Comment: "", Camera: 101028)`
- Proper filter flags and VideoInput=0 for action mappings
- Correct action ID assignment (4198 for GSC, 9294 for G-Core PanLeft)

## Technical Stack
- **Frontend**: Flutter Web, Dart, Dio HTTP client
- **Backend**: Python FastAPI, PostgreSQL, Redis
- **SDK Bridge**: C# .NET 8.0, gRPC, GeViSoft SDK
- **Authentication**: JWT tokens
- **Configuration**: GeViSoft .set files (binary format)

## Credentials
- GeViSoft/GeViScope: username=sysadmin, password=masterkey
- Default admin: username=admin, password=admin123

## Deployment
All services run on localhost:
- Flutter Web: http://localhost:8081
- FastAPI: http://localhost:8000
- SDK Bridge gRPC: localhost:50051
- GeViServer: localhost (default port)

Generated with Claude Code (https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-31 18:10:54 +01:00

143 lines
5.8 KiB
C#

using System;
using System.IO;
using System.Linq;
using System.Text.Json;
using System.Text.Json.Serialization;
using GeViSetEditor.Core.Models;
using GeViSetEditor.Core.Parsers;
namespace GeViSetEditor.CLI.Commands
{
/// <summary>
/// Parse full configuration structure and export to JSON
/// </summary>
public static class EnhancedParseCommand
{
public static void Execute(string inputPath, string? outputJsonPath = null)
{
if (!File.Exists(inputPath))
{
Console.WriteLine($"ERROR: File not found: {inputPath}");
return;
}
try
{
// Read file
byte[] data = File.ReadAllBytes(inputPath);
// Parse with enhanced parser
var parser = new EnhancedSetFileParser();
var setFile = parser.Parse(data);
// Display results
Console.WriteLine("\n=== Full Configuration Structure ===");
Console.WriteLine($"File: {Path.GetFileName(inputPath)}");
Console.WriteLine($"Size: {setFile.FileSize:N0} bytes");
Console.WriteLine($"Header: '{setFile.Header}'\n");
// Show statistics
var stats = setFile.Statistics;
Console.WriteLine("=== Statistics ===");
Console.WriteLine($"Configuration Items: {stats.TotalConfigItems}");
Console.WriteLine($"Action Mappings: {stats.TotalActionMappings}");
Console.WriteLine($"Section Names: {stats.TotalSectionNames}");
Console.WriteLine($"Total Actions: {stats.TotalActions}");
if (stats.ConfigItemsByType.Count > 0)
{
Console.WriteLine("\nConfig Items by Type:");
foreach (var type in stats.ConfigItemsByType.OrderByDescending(kv => kv.Value))
{
Console.WriteLine($" {type.Key}: {type.Value}");
}
}
if (stats.ActionsPerMapping.Count > 0)
{
Console.WriteLine("\nActions per Mapping:");
foreach (var group in stats.ActionsPerMapping.OrderBy(kv => kv.Key))
{
Console.WriteLine($" {group.Key} actions: {group.Value} mappings");
}
}
// Show sample config items
if (setFile.ConfigItems.Count > 0)
{
Console.WriteLine("\n=== Sample Config Items (first 10) ===");
foreach (var item in setFile.ConfigItems.Take(10))
{
string valueStr = item.Value?.ToString() ?? "null";
if (valueStr.Length > 50)
valueStr = valueStr.Substring(0, 47) + "...";
Console.WriteLine($" {item.Key} = {valueStr} ({item.ValueType})");
}
if (setFile.ConfigItems.Count > 10)
Console.WriteLine($" ... and {setFile.ConfigItems.Count - 10} more");
}
// Show sample section names
if (setFile.SectionNames.Count > 0)
{
Console.WriteLine("\n=== Section Names (top 20) ===");
var topSections = setFile.SectionNames
.GroupBy(s => s.Name)
.OrderByDescending(g => g.Count())
.Take(20);
foreach (var group in topSections)
{
Console.WriteLine($" {group.Key} ({group.Count()} occurrences)");
}
}
// Show sample action mappings
if (setFile.ActionMappings.Count > 0)
{
Console.WriteLine("\n=== Sample Action Mappings (first 5) ===");
foreach (var mapping in setFile.ActionMappings.Take(5))
{
Console.WriteLine($"\nMapping at offset {mapping.FileOffset}:");
Console.WriteLine($" Actions ({mapping.Actions.Count}):");
foreach (var action in mapping.Actions)
{
Console.WriteLine($" - {action}");
}
}
if (setFile.ActionMappings.Count > 5)
Console.WriteLine($"\n ... and {setFile.ActionMappings.Count - 5} more mappings");
}
// Export to JSON if requested
if (!string.IsNullOrEmpty(outputJsonPath))
{
Console.WriteLine($"\n=== Exporting to JSON ===");
var options = new JsonSerializerOptions
{
WriteIndented = true,
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
Encoder = System.Text.Encodings.Web.JavaScriptEncoder.UnsafeRelaxedJsonEscaping
};
string json = JsonSerializer.Serialize(setFile, options);
File.WriteAllText(outputJsonPath, json);
Console.WriteLine($"JSON written to: {outputJsonPath}");
Console.WriteLine($"JSON size: {json.Length:N0} characters ({json.Length / 1024:N0} KB)");
}
Console.WriteLine("\n✓ Parsing complete!");
}
catch (Exception ex)
{
Console.WriteLine($"\n✗ ERROR: {ex.Message}");
Console.WriteLine($"Stack trace:\n{ex.StackTrace}");
}
}
}
}