-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRemoveClassExtension.cs
More file actions
215 lines (174 loc) · 8 KB
/
RemoveClassExtension.cs
File metadata and controls
215 lines (174 loc) · 8 KB
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
namespace StudioAT.ArcGIS.ArcCatalog.AddIn.RemoveClassExtension
{
using System;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using ESRI.ArcGIS.Carto;
using ESRI.ArcGIS.Catalog;
using ESRI.ArcGIS.CatalogUI;
using ESRI.ArcGIS.esriSystem;
using ESRI.ArcGIS.Geodatabase;
public class RemoveClassExtension : ESRI.ArcGIS.Desktop.AddIns.Button
{
IGxApplication pGxApp = null;
public RemoveClassExtension()
{
this.pGxApp = ArcCatalog.Application as IGxApplication;
}
protected override void OnClick()
{
try
{
if (this.pGxApp.Selection.Count != 1)
{
return;
}
IGxObject pGxObject = this.pGxApp.SelectedObject;
if (!(pGxObject is IGxDataset))
{
return;
}
IGxDataset pGxDataset = pGxObject as IGxDataset;
if (pGxDataset == null)
{
return;
}
if (((pGxObject as IGxDataset).Type) != esriDatasetType.esriDTFeatureClass)
{
return;
}
try
{
IDataset a = pGxDataset.Dataset;
}
catch (COMException COMex)
{
if (COMex.ErrorCode == -2147467259)
{
if (MessageBox.Show("Not found component register so I don't see the UID: do I have to remove class extension? Are you sure?", "Remove class extension", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
try
{
IGxObject gxObject = pGxObject.Parent;
if (!(gxObject is IGxDatabase2))
{
gxObject = gxObject.Parent;
}
IFeatureWorkspaceSchemaEdit featureWorkspaceSchemaEdit = ((gxObject as IGxDatabase2).Workspace) as IFeatureWorkspaceSchemaEdit;
featureWorkspaceSchemaEdit.AlterClassExtensionCLSID(pGxDataset.DatasetName.Name, null, null);
IObjectClassDescription featureClassDescription = new FeatureClassDescriptionClass();
featureWorkspaceSchemaEdit.AlterInstanceCLSID(pGxDataset.DatasetName.Name, featureClassDescription.InstanceCLSID);
MessageBox.Show("Class extension removed: success! Restart ArcCatalog!", "Remove Class Extension", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch(Exception ex)
{
MessageBox.Show("Error " + ex.Message);
return;
}
}
}
else
{
MessageBox.Show("Error " + COMex.ErrorCode.ToString() + ": " + COMex.Message);
}
return;
}
catch (System.Exception ex)
{
MessageBox.Show("Error: " + ex.Message);
return;
}
if (!(pGxDataset.Dataset is IClass))
{
return;
}
IClass pClass = pGxDataset.Dataset as IClass;
if (pClass.EXTCLSID == null)
{
MessageBox.Show("No class extension!");
return;
}
else
{
IObjectClassDescription ocDescription = new AnnotationFeatureClassDescriptionClass();
if ((pClass.EXTCLSID.Value.ToString() == ocDescription.ClassExtensionCLSID.Value.ToString()) && (pClass.EXTCLSID.SubType == ocDescription.ClassExtensionCLSID.SubType))
{
MessageBox.Show("Class extension well-know: I don't remove it (annotation)!", "Remove Class Extension", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
ocDescription = new DimensionClassDescriptionClass();
if ((pClass.EXTCLSID.Value.ToString() == ocDescription.ClassExtensionCLSID.Value.ToString()) && (pClass.EXTCLSID.SubType == ocDescription.ClassExtensionCLSID.SubType))
{
MessageBox.Show("Class extension well-know: I don't remove it (dimension)!", "Remove Class Extension", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
if (MessageBox.Show(string.Format("Class extension: {0}: do I have to remove class extension?", pClass.EXTCLSID.Value.ToString()), "Remove Class Extension", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
if (this.RemoveClsExt(pClass))
{
MessageBox.Show("Class extension removed: success!", "Remove Class Extension", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("Class extension removed: error! I have problem with exclusive schema lock ", "Remove Class Extension", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex.Message.ToString());
}
}
protected override void OnUpdate()
{
if (this.pGxApp.Selection.Count != 1)
{
this.Enabled = false;
return;
}
IGxObject pGxObject = this.pGxApp.SelectedObject;
this.Enabled = ((pGxObject as IGxDataset) != null) && ((pGxObject as IGxDataset).Type == esriDatasetType.esriDTFeatureClass);
}
private bool FeatureClassWellKnown(UID uid)
{
IObjectClassDescription ocDescription = new AnnotationFeatureClassDescriptionClass();
if ((ocDescription.ClassExtensionCLSID.Value.ToString() == uid.Value.ToString()) && (ocDescription.ClassExtensionCLSID.SubType == uid.SubType))
{
return true;
}
ocDescription = new DimensionClassDescriptionClass();
if ((ocDescription.ClassExtensionCLSID.Value.ToString() == uid.Value.ToString()) && (ocDescription.ClassExtensionCLSID.SubType == uid.SubType))
{
return true;
}
return false;
}
private bool RemoveClsExt(IClass classExtension)
{
ISchemaLock schemaLock = (ISchemaLock)classExtension;
bool result = false;
try
{
// Attempt to get an exclusive schema lock.
schemaLock.ChangeSchemaLock(esriSchemaLock.esriExclusiveSchemaLock);
// Cast the object class to the IClassSchemaEdit2 interface.
IClassSchemaEdit2 classSchemaEdit = (IClassSchemaEdit2)classExtension;
// Clear the class extension.
classSchemaEdit.AlterClassExtensionCLSID(null, null);
IObjectClassDescription featureClassDescription = new FeatureClassDescriptionClass();
classSchemaEdit.AlterInstanceCLSID(featureClassDescription.InstanceCLSID);
result = true;
}
catch
{
result = false;
}
finally
{
schemaLock.ChangeSchemaLock(esriSchemaLock.esriSharedSchemaLock);
}
return result;
}
}
}