Files
geutebruck/analyze_all_camera_actions.py
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

120 lines
3.6 KiB
Python

"""
Analyze ALL camera control mappings to find patterns in @@ values
"""
import sys
import os
import json
from collections import defaultdict
os.chdir(r'C:\DEV\COPILOT_codex')
sys.path.insert(0, r'C:\DEV\COPILOT_codex')
from geviset_parser import load_set
from pathlib import Path
set_file = Path(r"C:\DEV\COPILOT\TestMKS_original.set")
tree = load_set(set_file)
# Find MappingRules
mapping_rules = None
for child in tree.get("children", []):
if child.get("name") == "MappingRules" and child.get("type") == "folder":
mapping_rules = child
break
# Collect all output actions and their @@ values
action_at_at_values = defaultdict(list)
print("=" * 80)
print("ANALYZING ALL CAMERA CONTROL ACTIONS")
print("=" * 80)
print()
for mapping in mapping_rules.get("children", []):
if mapping.get("type") != "folder":
continue
# Get mapping name and @@
mapping_name = None
mapping_at_at = None
rules_folder = None
for child in mapping.get("children", []):
if child.get("name") == "@":
mapping_name = child.get("value")
if child.get("name") == "@@":
mapping_at_at = child.get("value")
if child.get("name") == "Rules" and child.get("type") == "folder":
rules_folder = child
if not rules_folder:
continue
# Check output actions
for output in rules_folder.get("children", []):
if output.get("type") != "folder":
continue
output_name = None
output_at_at = None
action_string = None
server_type = None
for field in output.get("children", []):
if field.get("name") == "@":
output_name = field.get("value")
if field.get("name") == "@@":
output_at_at = field.get("value")
if field.get("name") == "GscAction":
action_string = field.get("value")
server_type = "GSC"
if field.get("name") == "GCoreAction":
action_string = field.get("value")
server_type = "G-Core"
if action_string:
# Extract action name from string like "@ PanLeft ()" or "@ PanLeft (Comment: "", Camera: 101027)"
action_name = action_string.split("(")[0].strip().replace("@ ", "")
# Store the @@ value for this action type
key = f"{server_type}:{action_name}"
action_at_at_values[key].append({
"mapping": mapping_name,
"output": output_name,
"at_at": output_at_at,
"action_string": action_string
})
print(f"Found {len(action_at_at_values)} unique action types")
print()
# Show summary of @@ values per action type
print("@@ VALUES BY ACTION TYPE:")
print("-" * 80)
for action_type in sorted(action_at_at_values.keys()):
values = action_at_at_values[action_type]
at_at_values = [v["at_at"] for v in values]
unique_values = set(at_at_values)
print(f"\n{action_type}:")
print(f" Occurrences: {len(values)}")
print(f" @@ values: {unique_values}")
if len(unique_values) == 1:
print(f" [OK] CONSISTENT VALUE: {list(unique_values)[0]}")
else:
print(f" [WARN] INCONSISTENT - varies across mappings")
# Show a few examples
for v in values[:3]:
print(f" - {v['mapping']}: @@ = {v['at_at']}")
# Save detailed data
output_file = Path(r"C:\DEV\COPILOT\action_at_at_values.json")
with output_file.open("w") as f:
json.dump(dict(action_at_at_values), f, indent=2)
print()
print("=" * 80)
print(f"Detailed data saved to: {output_file}")
print("=" * 80)