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 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Channels
{
using System.Runtime;
using System.ServiceModel;
using System.Transactions;
using SR = System.ServiceModel.SR;
using System.Threading;
sealed class MsmqInputSessionChannel : InputChannel, IInputSessionChannel
{
IInputSession session;
Transaction associatedTx;
ReceiveContext sessiongramReceiveContext;
bool receiveContextEnabled;
bool sessiongramDoomed;
// count of messages that have been pulled out of the base queue but Complete has not been called on them
int incompleteMessageCount;
// count of messages that have been completed but the transaction has not been committed
int uncommittedMessageCount;
public MsmqInputSessionChannel(MsmqInputSessionChannelListener listener, Transaction associatedTx, ReceiveContext sessiongramReceiveContext)
: base(listener, new EndpointAddress(listener.Uri))
{
this.session = new InputSession();
this.incompleteMessageCount = 0;
if (sessiongramReceiveContext == null)
{
this.receiveContextEnabled = false;
// only enlist if we are running in a non-receive context mode
this.associatedTx = associatedTx;
this.associatedTx.EnlistVolatile(new TransactionEnlistment(this, this.associatedTx), EnlistmentOptions.None);
}
else
{
//ignore the ambient transaction if any
this.receiveContextEnabled = true;
this.sessiongramReceiveContext = sessiongramReceiveContext;
this.sessiongramDoomed = false;
}
}
public IInputSession Session
{
get { return this.session; }
}
int TotalPendingItems
{
get
{
return this.InternalPendingItems + this.incompleteMessageCount;
}
}
void DetachTransaction(bool aborted)
{
// disassociate the session channel from the current transaction and enlistment
this.associatedTx = null;
if (aborted)
{
this.incompleteMessageCount += this.uncommittedMessageCount;
}
this.uncommittedMessageCount = 0;
}
void AbandonMessage(TimeSpan timeout)
{
ThrowIfFaulted();
this.sessiongramDoomed = true;
}
void CompleteMessage(TimeSpan timeout)
{
ThrowIfFaulted();
EnsureReceiveContextTransaction();
// the message is now off to transaction land
Interlocked.Increment(ref uncommittedMessageCount);
Interlocked.Decrement(ref incompleteMessageCount);
}
public override Message Receive()
{
return this.Receive(this.DefaultReceiveTimeout);
}
public override Message Receive(TimeSpan timeout)
{
return InputChannel.HelpReceive(this, timeout);
}
public override IAsyncResult BeginReceive(AsyncCallback callback, object state)
{
return this.BeginReceive(this.DefaultReceiveTimeout, callback, state);
}
public override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state)
{
return InputChannel.HelpBeginReceive(this, timeout, callback, state);
}
public override bool TryReceive(TimeSpan timeout, out Message message)
{
ThrowIfFaulted();
if (CommunicationState.Closed == this.State || CommunicationState.Closing == this.State)
{
message = null;
return true;
}
// we don't look at the transaction in the receive if receive context is enabled
if (!this.receiveContextEnabled)
{
VerifyTransaction();
}
bool receiveSuccessful = base.TryReceive(timeout, out message);
if (receiveSuccessful && message != null && this.receiveContextEnabled)
{
message.Properties[ReceiveContext.Name] = new MsmqSessionReceiveContext(this);
Interlocked.Increment(ref incompleteMessageCount);
}
return receiveSuccessful;
}
public override IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state)
{
ThrowIfFaulted();
if (CommunicationState.Closed == this.State || CommunicationState.Closing == this.State)
{
return new CompletedAsyncResult<bool, Message>(true, null, callback, state);
}
// we don't look at the transaction in the receive if receive context is enabled
if (!this.receiveContextEnabled)
{
VerifyTransaction();
}
return base.BeginTryReceive(timeout, callback, state);
}
public override bool EndTryReceive(IAsyncResult result, out Message message)
{
CompletedAsyncResult<bool, Message> completedResult = result as CompletedAsyncResult<bool, Message>;
if (null != completedResult)
{
return CompletedAsyncResult<bool, Message>.End(result, out message);
}
else
{
bool receiveSuccessful = base.EndTryReceive(result, out message);
if (receiveSuccessful && message != null && this.receiveContextEnabled)
{
message.Properties[ReceiveContext.Name] = new MsmqSessionReceiveContext(this);
Interlocked.Increment(ref incompleteMessageCount);
}
return receiveSuccessful;
}
}
public void FaultChannel()
{
this.Fault();
}
void OnCloseReceiveContext(bool isAborting)
{
if (isAborting)
{
// can't do much on Channel.Abort if the transaction had already committed
if (this.associatedTx != null)
{
// Channel.Abort called within the associated transaction
Exception e = DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionChannelAbort)));
RollbackTransaction(e);
}
this.sessiongramReceiveContext.Abandon(TimeSpan.MaxValue);
}
else
{
if (this.TotalPendingItems > 0)
{
// no need for rollback, it will happen automatically when this condition is hit in the Prepare() call
this.Fault();
this.sessiongramReceiveContext.Abandon(TimeSpan.MaxValue);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionPrematureClose)));
}
}
}
void OnCloseTransactional(bool isAborting)
{
if (isAborting)
{
RollbackTransaction(null);
}
else
{
VerifyTransaction();
if (this.InternalPendingItems > 0)
{
RollbackTransaction(null);
this.Fault();
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionMessagesNotConsumed)));
}
}
}
void OnCloseCore(bool isAborting)
{
if (this.receiveContextEnabled)
{
OnCloseReceiveContext(isAborting);
}
else
{
OnCloseTransactional(isAborting);
}
}
protected override void OnAbort()
{
OnCloseCore(true);
base.OnAbort();
}
protected override void OnClose(TimeSpan timeout)
{
OnCloseCore(false);
base.OnClose(timeout);
}
protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
{
OnCloseCore(false);
return base.OnBeginClose(timeout, callback, state);
}
void RollbackTransaction(Exception exception)
{
try
{
if (TransactionStatus.Active == this.associatedTx.TransactionInformation.Status)
this.associatedTx.Rollback(exception);
}
catch (TransactionAbortedException ex)
{
MsmqDiagnostics.ExpectedException(ex);
}
catch (ObjectDisposedException ex)
{
MsmqDiagnostics.ExpectedException(ex);
}
}
void EnsureReceiveContextTransaction()
{
// if this is the first time we are seeing this transaction in receivecontext enabled mode then enlist and
// associate the session channel with this transaction
if (Transaction.Current == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqTransactionRequired)));
}
if (this.associatedTx == null)
{
this.associatedTx = Transaction.Current;
this.associatedTx.EnlistVolatile(new ReceiveContextTransactionEnlistment(this, this.associatedTx, this.sessiongramReceiveContext),
EnlistmentOptions.EnlistDuringPrepareRequired);
}
else
{
if (this.associatedTx != Transaction.Current)
{
RollbackTransaction(null);
this.Fault();
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqSameTransactionExpected)));
}
if (TransactionStatus.Active != Transaction.Current.TransactionInformation.Status)
{
this.Fault();
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqTransactionNotActive)));
}
}
}
void VerifyTransaction()
{
if (this.InternalPendingItems > 0)
{
if (this.associatedTx != Transaction.Current)
{
RollbackTransaction(null);
this.Fault();
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqSameTransactionExpected)));
}
if (TransactionStatus.Active != Transaction.Current.TransactionInformation.Status)
{
RollbackTransaction(null);
this.Fault();
throw DiagnosticUtility.ExceptionUtility.ThrowHelperCritical(new InvalidOperationException(SR.GetString(SR.MsmqTransactionNotActive)));
}
}
}
class InputSession : IInputSession
{
string id = "uuid://session-gram/" + Guid.NewGuid().ToString();
public string Id
{
get { return this.id; }
}
}
class MsmqSessionReceiveContext : ReceiveContext
{
MsmqInputSessionChannel channel;
public MsmqSessionReceiveContext(MsmqInputSessionChannel channel)
{
this.channel = channel;
}
protected override void OnAbandon(TimeSpan timeout)
{
this.channel.AbandonMessage(timeout);
}
protected override IAsyncResult OnBeginAbandon(TimeSpan timeout, AsyncCallback callback, object state)
{
return SessionReceiveContextAsyncResult.CreateAbandon(this, timeout, callback, state);
}
protected override IAsyncResult OnBeginComplete(TimeSpan timeout, AsyncCallback callback, object state)
{
return SessionReceiveContextAsyncResult.CreateComplete(this, timeout, callback, state);
}
protected override void OnComplete(TimeSpan timeout)
{
this.channel.CompleteMessage(timeout);
}
protected override void OnEndAbandon(IAsyncResult result)
{
SessionReceiveContextAsyncResult.End(result);
}
protected override void OnEndComplete(IAsyncResult result)
{
SessionReceiveContextAsyncResult.End(result);
}
class SessionReceiveContextAsyncResult : AsyncResult
{
MsmqSessionReceiveContext receiveContext;
Transaction completionTransaction;
TimeoutHelper timeoutHelper;
static Action<object> onComplete;
static Action<object> onAbandon;
SessionReceiveContextAsyncResult(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state, Action<object> target)
: base(callback, state)
{
this.completionTransaction = Transaction.Current;
this.timeoutHelper = new TimeoutHelper(timeout);
this.receiveContext = receiveContext;
ActionItem.Schedule(target, this);
}
public static IAsyncResult CreateComplete(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state)
{
if (onComplete == null)
{
onComplete = new Action<object>(OnComplete);
}
return new SessionReceiveContextAsyncResult(receiveContext, timeout, callback, state, onComplete);
}
public static IAsyncResult CreateAbandon(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state)
{
if (onAbandon == null)
{
onAbandon = new Action<object>(OnAbandon);
}
return new SessionReceiveContextAsyncResult(receiveContext, timeout, callback, state, onAbandon);
}
static void OnComplete(object parameter)
{
SessionReceiveContextAsyncResult result = parameter as SessionReceiveContextAsyncResult;
Transaction savedTransaction = Transaction.Current;
Transaction.Current = result.completionTransaction;
try
{
Exception completionException = null;
try
{
result.receiveContext.OnComplete(result.timeoutHelper.RemainingTime());
}
catch (Exception e)
{
if (Fx.IsFatal(e))
{
throw;
}
completionException = e;
}
result.Complete(false, completionException);
}
finally
{
Transaction.Current = savedTransaction;
}
}
static void OnAbandon(object parameter)
{
SessionReceiveContextAsyncResult result = parameter as SessionReceiveContextAsyncResult;
Exception completionException = null;
try
{
result.receiveContext.OnAbandon(result.timeoutHelper.RemainingTime());
}
catch (Exception e)
{
if (Fx.IsFatal(e))
throw;
completionException = e;
}
result.Complete(false, completionException);
}
public static void End(IAsyncResult result)
{
AsyncResult.End<SessionReceiveContextAsyncResult>(result);
}
}
}
class ReceiveContextTransactionEnlistment : IEnlistmentNotification
{
MsmqInputSessionChannel channel;
Transaction transaction;
ReceiveContext sessiongramReceiveContext;
public ReceiveContextTransactionEnlistment(MsmqInputSessionChannel channel, Transaction transaction, ReceiveContext receiveContext)
{
this.channel = channel;
this.transaction = transaction;
this.sessiongramReceiveContext = receiveContext;
}
public void Prepare(PreparingEnlistment preparingEnlistment)
{
// Abort if this happens before all messges are consumed
// Note that we are not placing any restriction on the channel state
if (this.channel.TotalPendingItems > 0 || this.channel.sessiongramDoomed)
{
Exception e = DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionChannelHasPendingItems)));
this.sessiongramReceiveContext.Abandon(TimeSpan.MaxValue);
preparingEnlistment.ForceRollback(e);
this.channel.Fault();
}
else
{
Transaction savedTransaction = Transaction.Current;
// complete the sessiongram message within this transaction
try
{
Transaction.Current = this.transaction;
try
{
this.sessiongramReceiveContext.Complete(TimeSpan.MaxValue);
preparingEnlistment.Done();
}
catch (MsmqException msmqex)
{
preparingEnlistment.ForceRollback(msmqex);
this.channel.Fault();
}
}
finally
{
Transaction.Current = savedTransaction;
}
}
}
public void Commit(Enlistment enlistment)
{
this.channel.DetachTransaction(false);
enlistment.Done();
}
public void Rollback(Enlistment enlistment)
{
this.channel.DetachTransaction(true);
enlistment.Done();
}
public void InDoubt(Enlistment enlistment)
{
enlistment.Done();
}
}
class TransactionEnlistment : IEnlistmentNotification
{
MsmqInputSessionChannel channel;
Transaction transaction;
public TransactionEnlistment(MsmqInputSessionChannel channel, Transaction transaction)
{
this.channel = channel;
this.transaction = transaction;
}
public void Prepare(PreparingEnlistment preparingEnlistment)
{
// Abort if this happens before all messges are consumed
if (this.channel.State == CommunicationState.Opened && this.channel.InternalPendingItems > 0)
{
Exception e = DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.MsmqSessionChannelsMustBeClosed)));
preparingEnlistment.ForceRollback(e);
this.channel.Fault();
}
else
{
preparingEnlistment.Done();
}
}
public void Commit(Enlistment enlistment)
{
enlistment.Done();
}
public void Rollback(Enlistment enlistment)
{
channel.Fault();
enlistment.Done();
}
public void InDoubt(Enlistment enlistment)
{
enlistment.Done();
}
}
}
}
|