SCSITarget.cs 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using System.Threading;
  11. using Utilities;
  12. namespace SCSI
  13. {
  14. public abstract class SCSITarget : SCSITargetInterface
  15. {
  16. private class SCSICommand
  17. {
  18. public byte[] CommandBytes;
  19. public LUNStructure LUN;
  20. public byte[] Data;
  21. public object Task;
  22. public OnCommandCompleted OnCommandCompleted;
  23. }
  24. private BlockingQueue<SCSICommand> m_commandQueue = new BlockingQueue<SCSICommand>();
  25. public event EventHandler<StandardInquiryEventArgs> OnStandardInquiry;
  26. public event EventHandler<UnitSerialNumberInquiryEventArgs> OnUnitSerialNumberInquiry;
  27. public event EventHandler<DeviceIdentificationInquiryEventArgs> OnDeviceIdentificationInquiry;
  28. public SCSITarget()
  29. {
  30. Thread workerThread = new Thread(ProcessCommandQueue);
  31. workerThread.IsBackground = true;
  32. workerThread.Start();
  33. }
  34. private void ProcessCommandQueue()
  35. {
  36. while (true)
  37. {
  38. SCSICommand command;
  39. bool stopping = !m_commandQueue.TryDequeue(out command);
  40. if (stopping)
  41. {
  42. return;
  43. }
  44. byte[] responseBytes;
  45. SCSIStatusCodeName status = ExecuteCommand(command.CommandBytes, command.LUN, command.Data, out responseBytes);
  46. command.OnCommandCompleted(status, responseBytes, command.Task);
  47. }
  48. }
  49. public void QueueCommand(byte[] commandBytes, LUNStructure lun, byte[] data, object task, OnCommandCompleted OnCommandCompleted)
  50. {
  51. SCSICommand command = new SCSICommand();
  52. command.CommandBytes = commandBytes;
  53. command.LUN = lun;
  54. command.Data = data;
  55. command.OnCommandCompleted = OnCommandCompleted;
  56. command.Task = task;
  57. m_commandQueue.Enqueue(command);
  58. }
  59. public abstract SCSIStatusCodeName ExecuteCommand(byte[] commandBytes, LUNStructure lun, byte[] data, out byte[] response);
  60. protected void NotifyStandardInquiry(object sender, StandardInquiryEventArgs args)
  61. {
  62. // To be thread-safe we must capture the delegate reference first
  63. EventHandler<StandardInquiryEventArgs> handler = OnStandardInquiry;
  64. if (handler != null)
  65. {
  66. handler(sender, args);
  67. }
  68. }
  69. protected void NotifyUnitSerialNumberInquiry(object sender, UnitSerialNumberInquiryEventArgs args)
  70. {
  71. // To be thread-safe we must capture the delegate reference first
  72. EventHandler<UnitSerialNumberInquiryEventArgs> handler = OnUnitSerialNumberInquiry;
  73. if (handler != null)
  74. {
  75. handler(sender, args);
  76. }
  77. }
  78. protected void NotifyDeviceIdentificationInquiry(object sender, DeviceIdentificationInquiryEventArgs args)
  79. {
  80. // To be thread-safe we must capture the delegate reference first
  81. EventHandler<DeviceIdentificationInquiryEventArgs> handler = OnDeviceIdentificationInquiry;
  82. if (handler != null)
  83. {
  84. handler(sender, args);
  85. }
  86. }
  87. }
  88. }