SelectDiskImageForm.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. diskImage.IsReadOnly = chkReadOnly.Checked;
  52. bool isLocked = false;
  53. try
  54. {
  55. isLocked = diskImage.ExclusiveLock();
  56. }
  57. catch (IOException)
  58. {
  59. }
  60. if (!isLocked)
  61. {
  62. MessageBox.Show("Cannot lock the disk image for exclusive access.", "Error");
  63. return;
  64. }
  65. m_diskImage = diskImage;
  66. this.DialogResult = DialogResult.OK;
  67. this.Close();
  68. }
  69. private void btnBrowse_Click(object sender, EventArgs e)
  70. {
  71. DialogResult result = openDiskImageDialog.ShowDialog();
  72. if (result == DialogResult.OK)
  73. {
  74. txtFilePath.Text = openDiskImageDialog.FileName;
  75. }
  76. }
  77. public DiskImage DiskImage
  78. {
  79. get
  80. {
  81. return m_diskImage;
  82. }
  83. }
  84. }
  85. }