a25593a9c6
Group all 69 projects into category subfolders under src/ and tests/ so the Rider Solution Explorer mirrors the module structure. Folders: Core, Server, Drivers (with a nested Driver CLIs subfolder), Client, Tooling. - Move every project folder on disk with git mv (history preserved as renames). - Recompute relative paths in 57 .csproj files: cross-category ProjectReferences, the lib/ HintPath+None refs in Driver.Historian.Wonderware, and the external mxaccessgw refs in Driver.Galaxy and its test project. - Rebuild ZB.MOM.WW.OtOpcUa.slnx with nested solution folders. - Re-prefix project paths in functional scripts (e2e, compliance, smoke SQL, integration, install). Build green (0 errors); unit tests pass. Docs left for a separate pass. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
49 lines
2.0 KiB
C#
49 lines
2.0 KiB
C#
using Serilog;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Core.Scripting;
|
|
|
|
/// <summary>
|
|
/// Creates per-script Serilog <see cref="ILogger"/> instances with the
|
|
/// <c>ScriptName</c> structured property pre-bound. Every log call from a user
|
|
/// script carries the owning virtual-tag or alarm name so operators can filter the
|
|
/// dedicated <c>scripts-*.log</c> sink by script in the Admin UI.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// <para>
|
|
/// Factory-based — the engine (Stream B / C) constructs exactly one instance
|
|
/// from the root script-logger pipeline at startup, then derives a per-script
|
|
/// logger for each <see cref="ScriptContext"/> it builds. No per-evaluation
|
|
/// allocation in the hot path.
|
|
/// </para>
|
|
/// <para>
|
|
/// The wrapped root logger is responsible for output wiring — typically a
|
|
/// rolling file sink to <c>scripts-*.log</c> plus a
|
|
/// <see cref="ScriptLogCompanionSink"/> that forwards Error-or-higher events
|
|
/// to the main server log at Warning level so operators see script errors
|
|
/// in the primary log without drowning it in Info noise.
|
|
/// </para>
|
|
/// </remarks>
|
|
public sealed class ScriptLoggerFactory
|
|
{
|
|
/// <summary>Structured property name the enricher binds. Stable for log filtering.</summary>
|
|
public const string ScriptNameProperty = "ScriptName";
|
|
|
|
private readonly ILogger _rootLogger;
|
|
|
|
public ScriptLoggerFactory(ILogger rootLogger)
|
|
{
|
|
_rootLogger = rootLogger ?? throw new ArgumentNullException(nameof(rootLogger));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a per-script logger. Every event it emits carries
|
|
/// <c>ScriptName=<paramref name="scriptName"/></c> as a structured property.
|
|
/// </summary>
|
|
public ILogger Create(string scriptName)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(scriptName))
|
|
throw new ArgumentException("Script name is required.", nameof(scriptName));
|
|
return _rootLogger.ForContext(ScriptNameProperty, scriptName);
|
|
}
|
|
}
|