Open a log N1MM wrote

Three things stopped it.

A contest is keyed by ContestNR, not by ContestID. ContestID is only the
ContestInstance table's primary key; DXLOG.ContestNR refers to ContestNR, which
is what N1MM's SQLWhereString matches on. The two agree in a fresh log and
drift apart in one that has been used for a while, so we were reading one
contest's header with another contest's contacts. In a real log of 56284
contacts, joining on ContestID disagreed with the contact's own ContestName
52029 times; joining on ContestNR disagreed 109 times.

N1MM names a contest per mode: CQWWCW, CQWWSSB, CQWWRTTY, never plain CQWW.
Our contests now use those names, and N1mmContestNames turns one back into a
contest and a mode when a log is opened. The name carries the mode, so it beats
the ModeCategory column. Plain CQWW still opens, because older versions wrote
it that way.

The log columns were sized by counting characters, which was too narrow for the
headers: those are drawn in the theme's font, not the grid's monospace. The
grid sizes them now, with the character count as a floor so a column of short
values does not collapse.

Bandmap spots now age from when they arrived rather than from the time written
in them. A node with a wrong clock, or one replaying its backlog on connect,
emptied the bandmap as fast as it filled it.

Checked by opening a real 56284-contact N1MM log under Xvfb and reading the
contest and contacts back.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-27 16:27:35 +00:00
parent b9f0166777
commit da9884ebf5
17 changed files with 315 additions and 34 deletions

View File

@@ -0,0 +1,40 @@
using Nonemm.Core;
namespace Nonemm.Contests;
/// N1MM names a contest per mode: CQ WW is `CQWWCW`, `CQWWSSB` or `CQWWRTTY`,
/// never plain `CQWW`. Our registry is keyed by the family, so a log written by
/// N1MM has to have its contest name turned back into a family and a mode
/// before the rules can be built.
public static class N1mmContestNames
{
private static readonly Dictionary<string, (string Family, ModeCategory Mode)> Known =
new(StringComparer.OrdinalIgnoreCase)
{
["CQWWCW"] = ("CQWW", ModeCategory.Cw),
["CQWWSSB"] = ("CQWW", ModeCategory.Phone),
["CQWWRTTY"] = ("CQWW", ModeCategory.Digital),
["CQWPXCW"] = ("CQWPX", ModeCategory.Cw),
["CQWPXSSB"] = ("CQWPX", ModeCategory.Phone),
["CQWPXRTTY"] = ("CQWPX", ModeCategory.Digital),
["ARRLDXCW"] = ("ARRLDX", ModeCategory.Cw),
["ARRLDXSSB"] = ("ARRLDX", ModeCategory.Phone),
["SSCW"] = ("SS", ModeCategory.Cw),
["SSSSB"] = ("SS", ModeCategory.Phone),
["NAQPCW"] = ("NAQP", ModeCategory.Cw),
["NAQPSSB"] = ("NAQP", ModeCategory.Phone),
["NAQPRTTY"] = ("NAQP", ModeCategory.Digital),
};
public static bool TryResolve(string name, out string family, out ModeCategory mode)
{
if (Known.TryGetValue(name.Trim(), out (string Family, ModeCategory Mode) found))
{
(family, mode) = found;
return true;
}
family = "";
mode = ModeCategory.Cw;
return false;
}
}