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
|
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.Activities
{
using System;
using System.Activities.Hosting;
using System.Activities.Runtime;
using System.Collections.Generic;
using System.Runtime;
using System.Runtime.Serialization;
using System.Globalization;
[DataContract]
[Fx.Tag.XamlVisible(false)]
public class Bookmark : IEquatable<Bookmark>
{
static Bookmark asyncOperationCompletionBookmark = new Bookmark(-1);
static IEqualityComparer<Bookmark> comparer;
//Used only when exclusive scopes are involved
ExclusiveHandleList exclusiveHandlesThatReferenceThis;
long id;
string externalName;
Bookmark(long id)
{
Fx.Assert(id != 0, "id should not be zero");
this.id = id;
}
public Bookmark(string name)
{
if (string.IsNullOrEmpty(name))
{
throw FxTrace.Exception.ArgumentNullOrEmpty("name");
}
this.externalName = name;
}
internal static Bookmark AsyncOperationCompletionBookmark
{
get
{
return asyncOperationCompletionBookmark;
}
}
internal static IEqualityComparer<Bookmark> Comparer
{
get
{
if (comparer == null)
{
comparer = new BookmarkComparer();
}
return comparer;
}
}
[DataMember(EmitDefaultValue = false, Name = "exclusiveHandlesThatReferenceThis", Order = 2)]
internal ExclusiveHandleList SerializedExclusiveHandlesThatReferenceThis
{
get { return this.exclusiveHandlesThatReferenceThis; }
set { this.exclusiveHandlesThatReferenceThis = value; }
}
[DataMember(EmitDefaultValue = false, Name = "id", Order = 0)]
internal long SerializedId
{
get { return this.id; }
set { this.id = value; }
}
[DataMember(EmitDefaultValue = false, Name = "externalName", Order = 1)]
internal string SerializedExternalName
{
get { return this.externalName; }
set { this.externalName = value; }
}
[DataMember(EmitDefaultValue = false)]
internal BookmarkScope Scope
{
get;
set;
}
internal bool IsNamed
{
get
{
return this.id == 0;
}
}
public string Name
{
get
{
if (this.IsNamed)
{
return this.externalName;
}
else
{
return string.Empty;
}
}
}
internal long Id
{
get
{
Fx.Assert(!this.IsNamed, "We should only get the id for unnamed bookmarks.");
return this.id;
}
}
internal ExclusiveHandleList ExclusiveHandles
{
get
{
return this.exclusiveHandlesThatReferenceThis;
}
set
{
this.exclusiveHandlesThatReferenceThis = value;
}
}
internal static Bookmark Create(long id)
{
return new Bookmark(id);
}
internal BookmarkInfo GenerateBookmarkInfo(BookmarkCallbackWrapper bookmarkCallback)
{
Fx.Assert(this.IsNamed, "Can only generate BookmarkInfo for external bookmarks");
BookmarkScopeInfo scopeInfo = null;
if (this.Scope != null)
{
scopeInfo = this.Scope.GenerateScopeInfo();
}
return new BookmarkInfo(this.externalName, bookmarkCallback.ActivityInstance.Activity.DisplayName, scopeInfo);
}
public bool Equals(Bookmark other)
{
if (object.ReferenceEquals(other, null))
{
return false;
}
if (this.IsNamed)
{
return other.IsNamed && this.externalName == other.externalName;
}
else
{
return this.id == other.id;
}
}
public override bool Equals(object obj)
{
return this.Equals(obj as Bookmark);
}
public override int GetHashCode()
{
if (this.IsNamed)
{
return this.externalName.GetHashCode();
}
else
{
return this.id.GetHashCode();
}
}
public override string ToString()
{
if (this.IsNamed)
{
return this.Name;
}
else
{
return this.Id.ToString(CultureInfo.InvariantCulture);
}
}
[DataContract]
internal class BookmarkComparer : IEqualityComparer<Bookmark>
{
public BookmarkComparer()
{
}
public bool Equals(Bookmark x, Bookmark y)
{
if (object.ReferenceEquals(x, null))
{
return object.ReferenceEquals(y, null);
}
return x.Equals(y);
}
public int GetHashCode(Bookmark obj)
{
return obj.GetHashCode();
}
}
}
}
|