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 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
|
//
// System.ComponentModel.Design.Serialization.BasicDesignerLoader
//
// Authors:
// Ivan N. Zlatev (contact i-nZ.net)
//
// (C) 2007 Ivan N. Zlatev
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Windows.Forms;
namespace System.ComponentModel.Design.Serialization
{
public abstract class BasicDesignerLoader : DesignerLoader, IDesignerLoaderService
{
[Flags]
protected enum ReloadOptions
{
Default,
Force,
ModifyOnError,
NoFlush
}
private bool _loaded;
private bool _loading;
private IDesignerLoaderHost _host;
private int _dependenciesCount;
private bool _notificationsEnabled;
private bool _modified;
private string _baseComponentClassName;
private DesignerSerializationManager _serializationMananger;
private bool _flushing;
private bool _reloadScheduled;
private ReloadOptions _reloadOptions;
protected BasicDesignerLoader ()
{
_loading = _loaded = _flushing = _reloadScheduled = false;
_host = null;
_notificationsEnabled = false;
_modified = false;
_dependenciesCount = 0;
}
protected virtual void Initialize ()
{
_serializationMananger = new DesignerSerializationManager (_host);
DesignSurfaceServiceContainer serviceContainer = _host.GetService (typeof (IServiceContainer)) as DesignSurfaceServiceContainer;
if (serviceContainer != null) {
serviceContainer.AddService (typeof (IDesignerLoaderService), (IDesignerLoaderService) this);
serviceContainer.AddNonReplaceableService (typeof (IDesignerSerializationManager), _serializationMananger);
}
}
public override void BeginLoad (IDesignerLoaderHost host)
{
if (host == null)
throw new ArgumentNullException ("host");
if (_loaded)
throw new InvalidOperationException ("Already loaded.");
if (_host != null && _host != host)
throw new InvalidOperationException ("Trying to load with a different host");
if (_host == null) { // beingload is called on reload - no need to initialize twice.
_host = host;
Initialize ();
}
IDisposable session = _serializationMananger.CreateSession ();
IDesignerLoaderService loader = _host.GetService (typeof (IDesignerLoaderService)) as IDesignerLoaderService;
if (loader != null) {
_dependenciesCount = -1;
loader.AddLoadDependency ();
} else {
OnBeginLoad ();
}
bool successful = true;
try {
PerformLoad (_serializationMananger);
} catch (Exception e) {
successful = false;
_serializationMananger.Errors.Add (e);
}
if (loader != null)
loader.DependentLoadComplete (successful, _serializationMananger.Errors);
else
OnEndLoad (successful, _serializationMananger.Errors);
session.Dispose ();
}
protected abstract void PerformLoad (IDesignerSerializationManager serializationManager);
protected virtual void OnBeginLoad ()
{
_loading = true;
}
protected virtual void OnEndLoad (bool successful, ICollection errors)
{
_host.EndLoad (_baseComponentClassName, successful, errors);
if (successful) {
_loaded = true;
EnableComponentNotification (true);
} else {
if (_reloadScheduled) { // we are reloading
bool modify = ((_reloadOptions & ReloadOptions.ModifyOnError) == ReloadOptions.ModifyOnError);
if (modify) {
OnModifying ();
this.Modified = true;
}
}
}
_loading = false;
}
public override bool Loading {
get { return _loading; }
}
protected IDesignerLoaderHost LoaderHost {
get { return _host; }
}
protected virtual bool Modified {
get { return _modified; }
set { _modified = value; }
}
protected object PropertyProvider {
get {
if (!_loaded)
throw new InvalidOperationException ("host not initialized");
return _serializationMananger.PropertyProvider;
}
set {
if (!_loaded)
throw new InvalidOperationException ("host not initialized");
_serializationMananger.PropertyProvider = value;
}
}
protected bool ReloadPending {
get { return _reloadScheduled; }
}
protected virtual bool EnableComponentNotification (bool enable)
{
if (!_loaded)
throw new InvalidOperationException ("host not initialized");
IComponentChangeService service = _host.GetService (typeof (IComponentChangeService)) as IComponentChangeService;
if (service != null && _notificationsEnabled != enable) {
if (enable) {
service.ComponentAdding += new ComponentEventHandler (OnComponentAdding);
service.ComponentAdded += new ComponentEventHandler (OnComponentAdded);
service.ComponentRemoving += new ComponentEventHandler (OnComponentRemoving);
service.ComponentRemoved += new ComponentEventHandler (OnComponentRemoved);
service.ComponentChanging += new ComponentChangingEventHandler (OnComponentChanging);
service.ComponentChanged += new ComponentChangedEventHandler (OnComponentChanged);
service.ComponentRename += new ComponentRenameEventHandler (OnComponentRename);
} else {
service.ComponentAdding -= new ComponentEventHandler (OnComponentAdding);
service.ComponentAdded -= new ComponentEventHandler (OnComponentAdded);
service.ComponentRemoving -= new ComponentEventHandler (OnComponentRemoving);
service.ComponentRemoved -= new ComponentEventHandler (OnComponentRemoved);
service.ComponentChanging -= new ComponentChangingEventHandler (OnComponentChanging);
service.ComponentChanged -= new ComponentChangedEventHandler (OnComponentChanged);
service.ComponentRename -= new ComponentRenameEventHandler (OnComponentRename);
}
}
return _notificationsEnabled == true ? true : false;
}
private void OnComponentAdded (object sender, ComponentEventArgs args)
{
if (!_loading && _loaded)
this.Modified = true;
}
private void OnComponentRemoved (object sender, ComponentEventArgs args)
{
if (!_loading && _loaded)
this.Modified = true;
}
private void OnComponentAdding (object sender, ComponentEventArgs args)
{
if (!_loading && _loaded)
OnModifying ();
}
private void OnComponentRemoving (object sender, ComponentEventArgs args)
{
if (!_loading && _loaded)
OnModifying ();
}
private void OnComponentChanged (object sender, ComponentChangedEventArgs args)
{
if (!_loading && _loaded)
this.Modified = true;
}
private void OnComponentChanging (object sender, ComponentChangingEventArgs args)
{
if (!_loading && _loaded)
OnModifying ();
}
private void OnComponentRename (object sender, ComponentRenameEventArgs args)
{
if (!_loading && _loaded) {
OnModifying ();
this.Modified = true;
}
}
public override void Flush ()
{
if (!_loaded)
throw new InvalidOperationException ("host not initialized");
if (!_flushing && this.Modified) {
_flushing = true;
using ((IDisposable)_serializationMananger.CreateSession ()) {
try {
PerformFlush (_serializationMananger);
} catch (Exception e) {
_serializationMananger.Errors.Add (e);
ReportFlushErrors (_serializationMananger.Errors);
}
}
_flushing = false;
}
}
protected abstract void PerformFlush (IDesignerSerializationManager serializationManager);
// MSDN: The default implementation always returns true.
protected virtual bool IsReloadNeeded ()
{
return true;
}
protected virtual void OnBeginUnload ()
{
}
protected virtual void OnModifying ()
{
}
// MSDN: reloads are performed at idle time
protected void Reload (ReloadOptions flags)
{
if (!_reloadScheduled) {
_reloadScheduled = true;
_reloadOptions = flags;
bool force = ((flags & ReloadOptions.Force) == ReloadOptions.Force);
if (force)
ReloadCore ();
else
Application.Idle += new EventHandler (OnIdle);
}
}
private void OnIdle (object sender, EventArgs args)
{
Application.Idle -= new EventHandler (OnIdle);
ReloadCore ();
}
private void ReloadCore ()
{
bool flush = !((_reloadOptions & ReloadOptions.NoFlush) == ReloadOptions.NoFlush);
if (flush)
Flush ();
Unload ();
_host.Reload ();
BeginLoad (_host); // calls EndLoad, which will check for ReloadOptions.ModifyOnError
_reloadScheduled = false;
}
private void Unload ()
{
if (_loaded) {
OnBeginUnload ();
EnableComponentNotification (false);
_loaded = false;
_baseComponentClassName = null;
}
}
// The default implementation of ReportFlushErrors raises the last exception in the collection.
//
protected virtual void ReportFlushErrors (ICollection errors)
{
object last = null;
foreach (object o in errors)
last = o;
throw (Exception)last;
}
// Must be called during PerformLoad by subclasses.
protected void SetBaseComponentClassName (string name)
{
if (name == null)
throw new ArgumentNullException ("name");
_baseComponentClassName = name;
}
#region IDesignerLoaderService implementation
void IDesignerLoaderService.AddLoadDependency ()
{
_dependenciesCount++;
if (_dependenciesCount == 0) {
_dependenciesCount = 1;
OnBeginLoad ();
}
}
void IDesignerLoaderService.DependentLoadComplete (bool successful, ICollection errorCollection)
{
if (_dependenciesCount == 0)
throw new InvalidOperationException ("dependencies == 0");
_dependenciesCount--;
if (_dependenciesCount == 0) {
OnEndLoad (successful, errorCollection);
}
}
bool IDesignerLoaderService.Reload ()
{
if (_dependenciesCount == 0) {
this.Reload (ReloadOptions.Force);
return true;
}
return false;
}
#endregion
protected object GetService (Type serviceType)
{
if (_host != null)
return _host.GetService (serviceType);
return null;
}
public override void Dispose ()
{
this.LoaderHost.RemoveService (typeof (IDesignerLoaderService));
Unload ();
}
}
}
|