SelectDiskImageForm.cs 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.IO;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using DiskAccessLibrary;
  9. namespace ISCSIConsole
  10. {
  11. public partial class SelectDiskImageForm : Form
  12. {
  13. private DiskImage m_diskImage;
  14. public SelectDiskImageForm()
  15. {
  16. InitializeComponent();
  17. }
  18. private void btnCancel_Click(object sender, EventArgs e)
  19. {
  20. this.DialogResult = DialogResult.Cancel;
  21. this.Close();
  22. }
  23. private void btnOK_Click(object sender, EventArgs e)
  24. {
  25. string path = txtFilePath.Text;
  26. if (path == String.Empty)
  27. {
  28. MessageBox.Show("Please choose file location.", "Error");
  29. return;
  30. }
  31. DiskImage diskImage;
  32. try
  33. {
  34. diskImage = DiskImage.GetDiskImage(path);
  35. }
  36. catch (IOException ex)
  37. {
  38. MessageBox.Show("Can't open disk image: " + ex.Message, "Error");
  39. return;
  40. }
  41. catch (InvalidDataException ex)
  42. {
  43. MessageBox.Show("Invalid disk image: " + ex.Message, "Error");
  44. return;
  45. }
  46. catch (NotImplementedException)
  47. {
  48. MessageBox.Show("Unsupported Disk Image Format", "Error");
  49. return;
  50. }
  51. bool isLocked = false;
  52. try
  53. {
  54. isLocked = diskImage.ExclusiveLock();
  55. }
  56. catch (IOException)
  57. {
  58. }
  59. if (!isLocked)
  60. {
  61. MessageBox.Show("Cannot lock the disk image for exclusive access.", "Error");
  62. return;
  63. }
  64. m_diskImage = diskImage;
  65. this.DialogResult = DialogResult.OK;
  66. this.Close();
  67. }
  68. private void btnBrowse_Click(object sender, EventArgs e)
  69. {
  70. DialogResult result = openDiskImageDialog.ShowDialog();
  71. if (result == DialogResult.OK)
  72. {
  73. txtFilePath.Text = openDiskImageDialog.FileName;
  74. }
  75. }
  76. public DiskImage DiskImage
  77. {
  78. get
  79. {
  80. return m_diskImage;
  81. }
  82. }
  83. }
  84. }