aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data.WindowsInstaller/Rows/ComponentRow.cs
blob: 3ff10175f48c043fac9b280f7fd11d291ee9b541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixToolset.Data.Rows
{
    using System;
    using WixToolset.Data.Msi;

    /// <summary>
    /// Specialization of a row for the Component table.
    /// </summary>
    public sealed class ComponentRow : Row
    {
        private string sourceFile;

        /// <summary>
        /// Creates a Control row that belongs to a table.
        /// </summary>
        /// <param name="sourceLineNumbers">Original source lines for this row.</param>
        /// <param name="table">Table this Component row belongs to and should get its column definitions from.</param>
        public ComponentRow(SourceLineNumber sourceLineNumbers, Table table) :
            base(sourceLineNumbers, table)
        {
        }

        /// <summary>
        /// Gets or sets the identifier for this Component row.
        /// </summary>
        /// <value>Identifier for this Component row.</value>
        public string Component
        {
            get { return (string)this.Fields[0].Data; }
            set { this.Fields[0].Data = value; }
        }

        /// <summary>
        /// Gets or sets the ComponentId for this Component row.
        /// </summary>
        /// <value>guid for this Component row.</value>
        public string Guid
        {
            get { return (string)this.Fields[1].Data; }
            set { this.Fields[1].Data = value; }
        }

        /// <summary>
        /// Gets or sets the Directory_ of the Component.
        /// </summary>
        /// <value>Directory of the Component.</value>
        public string Directory
        {
            get { return (string)this.Fields[2].Data; }
            set { this.Fields[2].Data = value; }
        }

        /// <summary>
        /// Gets or sets the local only attribute of the Component.
        /// </summary>
        /// <value>Local only attribute of the component.</value>
        public bool IsLocalOnly
        {
            get { return MsiInterop.MsidbComponentAttributesLocalOnly == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesLocalOnly); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesLocalOnly;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesLocalOnly;
                }
            }
        }

        /// <summary>
        /// Gets or sets the source only attribute of the Component.
        /// </summary>
        /// <value>Source only attribute of the component.</value>
        public bool IsSourceOnly
        {
            get { return MsiInterop.MsidbComponentAttributesSourceOnly == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesSourceOnly); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesSourceOnly;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesSourceOnly;
                }
            }
        }

        /// <summary>
        /// Gets or sets the optional attribute of the Component.
        /// </summary>
        /// <value>Optional attribute of the component.</value>
        public bool IsOptional
        {
            get { return MsiInterop.MsidbComponentAttributesOptional == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesOptional); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesOptional;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesOptional;
                }
            }
        }

        /// <summary>
        /// Gets or sets the registry key path attribute of the Component.
        /// </summary>
        /// <value>Registry key path attribute of the component.</value>
        public bool IsRegistryKeyPath
        {
            get { return MsiInterop.MsidbComponentAttributesRegistryKeyPath == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesRegistryKeyPath); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesRegistryKeyPath;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesRegistryKeyPath;
                }
            }
        }

        /// <summary>
        /// Gets or sets the shared dll ref count attribute of the Component.
        /// </summary>
        /// <value>Shared dll ref countattribute of the component.</value>
        public bool IsSharedDll
        {
            get { return MsiInterop.MsidbComponentAttributesSharedDllRefCount == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesSharedDllRefCount); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesSharedDllRefCount;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesSharedDllRefCount;
                }
            }
        }

        /// <summary>
        /// Gets or sets the permanent attribute of the Component.
        /// </summary>
        /// <value>Permanent attribute of the component.</value>
        public bool IsPermanent
        {
            get { return MsiInterop.MsidbComponentAttributesPermanent == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesPermanent); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesPermanent;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesPermanent;
                }
            }
        }

        /// <summary>
        /// Gets or sets the ODBC data source key path attribute of the Component.
        /// </summary>
        /// <value>ODBC data source key path attribute of the component.</value>
        public bool IsOdbcDataSourceKeyPath
        {
            get { return MsiInterop.MsidbComponentAttributesODBCDataSource == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributesODBCDataSource); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributesODBCDataSource;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributesODBCDataSource;
                }
            }
        }

        /// <summary>
        /// Gets or sets the 64 bit attribute of the Component.
        /// </summary>
        /// <value>64-bitness of the component.</value>
        public bool Is64Bit
        {
            get { return MsiInterop.MsidbComponentAttributes64bit == ((int)this.Fields[3].Data & MsiInterop.MsidbComponentAttributes64bit); }
            set
            {
                if (value)
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data | MsiInterop.MsidbComponentAttributes64bit;
                }
                else
                {
                    this.Fields[3].Data = (int)this.Fields[3].Data & ~MsiInterop.MsidbComponentAttributes64bit;
                }
            }
        }

        /// <summary>
        /// Gets or sets the condition of the Component.
        /// </summary>
        /// <value>Condition of the Component.</value>
        public string Condition
        {
            get { return (string)this.Fields[4].Data; }
            set { this.Fields[4].Data = value; }
        }

        /// <summary>
        /// Gets or sets the key path of the Component.
        /// </summary>
        /// <value>Key path of the Component.</value>
        public string KeyPath
        {
            get { return (string)this.Fields[5].Data; }
            set { this.Fields[5].Data = value; }
        }

        /// <summary>
        /// Gets or sets the source location to the file to fill in the Text of the control.
        /// </summary>
        /// <value>Source location to the file to fill in the Text of the control.</value>
        public string SourceFile
        {
            get { return this.sourceFile; }
            set { this.sourceFile = value; }
        }
    }
}