From 9a128569f6ebf7ed43d57b0ecd4ada5ba8a5585a Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 3 Apr 2020 11:01:57 +1000 Subject: Add TupleIdIsPrimaryKey. --- .../WindowsInstaller/TableDefinition.cs | 40 ++++++++++++++++------ 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs index 527199b2..9740b89b 100644 --- a/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs +++ b/src/WixToolset.Data/WindowsInstaller/TableDefinition.cs @@ -24,12 +24,8 @@ namespace WixToolset.Data.WindowsInstaller /// Name of table to create. /// Column definitions for the table. /// Flag if table is unreal. - public TableDefinition(string name, IEnumerable columns, bool unreal = false) + public TableDefinition(string name, IEnumerable columns, bool unreal = false) : this(name, null, columns, unreal) { - this.Name = name; - this.TupleDefinitionName = name; - this.Unreal = unreal; - this.Columns = columns.ToArray(); } /// @@ -39,34 +35,49 @@ namespace WixToolset.Data.WindowsInstaller /// Optional name of tuple definition for this table. /// Column definitions for the table. /// Flag if table is unreal. - public TableDefinition(string name, string tupleDefinitionName, IEnumerable columns, bool unreal = false) : this(name, columns, unreal) + public TableDefinition(string name, string tupleDefinitionName, IEnumerable columns, bool unreal = false) { + this.Name = name; this.TupleDefinitionName = tupleDefinitionName ?? name; + this.Unreal = unreal; + this.Columns = columns?.ToArray(); + + if (this.Columns == null || this.Columns.Length == 0) + { + throw new ArgumentOutOfRangeException(nameof(columns)); + } + this.TupleIdIsPrimaryKey = DeriveTupleIdIsPrimaryKey(this.Columns); } /// /// Gets the name of the table. /// /// Name of the table. - public string Name { get; private set; } + public string Name { get; } /// /// Gets the name of the tuple definition associated with this table. /// /// Name of the tuple definition. - public string TupleDefinitionName { get; private set; } + public string TupleDefinitionName { get; } /// /// Gets if the table is unreal. /// /// Flag if table is unreal. - public bool Unreal { get; private set; } + public bool Unreal { get; } /// /// Gets the collection of column definitions for this table. /// /// Collection of column definitions for this table. - public ColumnDefinition[] Columns { get; private set; } + public ColumnDefinition[] Columns { get; } + + /// + /// Gets if the primary key is the id of the tuple definition associated with this table. + /// + /// Flag if table is unreal. + public bool TupleIdIsPrimaryKey { get; } /// /// Gets the column definition in the table by index. @@ -223,5 +234,14 @@ namespace WixToolset.Data.WindowsInstaller writer.WriteEndElement(); } + + private static bool DeriveTupleIdIsPrimaryKey(ColumnDefinition[] columns) + { + return columns[0].PrimaryKey && + columns[0].Type == ColumnType.String && + columns[0].Category == ColumnCategory.Identifier && + !columns[0].Name.EndsWith("_") && + (columns.Length == 1 || !columns.Skip(1).Any(t => t.PrimaryKey)); + } } } -- cgit v1.2.3-55-g6feb