using RandomFileRunner.IO; using RyzStudio.Windows.Forms; using System; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Drawing; using System.IO; using System.Runtime.InteropServices; using System.Threading.Tasks; using System.Windows.Forms; namespace RandomFileRunner { public partial class MainForm : Form { [DllImport("user32.dll")] protected static extern bool RegisterHotKey(IntPtr hWnd, int id, int fsModifiers, int vk); [DllImport("user32.dll")] protected static extern bool UnregisterHotKey(IntPtr hWnd, int id); //protected const int MOD_NONE = 0x0000; //protected const int MOD_ALT = 0x1; //protected const int MOD_CONTROL = 0x2; //protected const int MOD_SHIFT = 0x4; //protected const int MOD_WIN = 0x8; protected const int WM_HOTKEY = 0x312; protected const int WM_QUERYENDSESSION = 0x0011; protected readonly Random randy; protected OptionsForm optionsForm = null; protected bool isBusy = false; protected bool requestCancel = false; protected List foundFiles = null; protected Process currentProcess = null; public MainForm() { InitializeComponent(); textBox1.Text = "*.*"; memoBox1.InnerTextBox.WordWrap = false; randy = new Random(); } protected override void OnClosing(CancelEventArgs e) { base.OnClosing(e); if (this.IsBusy) { e.Cancel = true; return; } if (this.CurrentSession.ClosePrevOnNext) CloseCurrentProcess(currentProcess); if (this.CurrentSession.NextHotKey != null) { if (this.CurrentSession.NextHotKey.KeyCode != Keys.None) { //#if !DEBUG UnregisterHotKey((IntPtr)Handle, 1); //#endif } } } protected override void WndProc(ref Message m) { switch (m.Msg) { case WM_HOTKEY: if (m.WParam.ToInt32() == 1) button5_MouseClick(null, null); break; //case WM_QUERYENDSESSION: // requestExit = true; // //this.Close(); // Application.Exit(); // break; default: break; } base.WndProc(ref m); } public bool IsBusy { get => isBusy; set { isBusy = value; ThreadControl.SetValue(pictureBox1, (isBusy ? AppResource.loading_block : null)); ThreadControl.SetEnable(textBox1, !isBusy); //ThreadControl.SetEnable(button2, !isBusy); button2.LabelText = (isBusy? "&Cancel" : "&Search"); ThreadControl.SetEnable(button3, !isBusy); ThreadControl.SetEnable(button4, !isBusy); ThreadControl.SetEnable(memoBox1, !isBusy); ThreadControl.SetEnable(button5, !isBusy); //ThreadControl.SetEnable(button1, !isBusy); } } public AppSession CurrentSession { get; set; } = new AppSession(); protected bool SearchDirecory_OnFound(string file, ulong searchCount, int searchQueue) { if (!string.IsNullOrWhiteSpace(file)) { foundFiles.Add(file); } //ThreadControl.SetText(label2, foundFiles.Count.ToString()); ThreadControl.SetText(label2, foundFiles.Count.ToString("#,#", System.Globalization.CultureInfo.CurrentCulture) + Environment.NewLine + searchQueue.ToString("#,#", System.Globalization.CultureInfo.CurrentCulture)); return true; } /// /// Options /// /// /// private void optionsToolStripMenuItem_Click(object sender, EventArgs e) { if (this.IsBusy) { return; } if (optionsForm == null) optionsForm = new OptionsForm(this.CurrentSession); if (optionsForm.ShowDialog() == DialogResult.OK) { this.CurrentSession = optionsForm.Session; InvalidateHotKey(); //this.TopMost = this.CurrentSession.AlwaysOnTop; } } /// /// Search /// /// /// private async void button2_MouseClick(object sender, MouseEventArgs e) { await Task.Run(() => { if (this.IsBusy) { requestCancel = true; button2.LabelText = "&Cancelling..."; return; } this.IsBusy = true; requestCancel = false; foundFiles = new List(); currentProcess = null; string[] itemList = memoBox1.Text?.Trim().Split('\n'); for (int i=0; i< itemList.Length; i++) { if (string.IsNullOrWhiteSpace(itemList[i])) continue; if (requestCancel) break; string item = itemList[i]?.Trim(); if (File.Exists(item)) { if (SmartDirectory.IsFileAccessible(item)) { foundFiles.Add(item); ThreadControl.SetText(label2, foundFiles.Count.ToString()); continue; } } if (Directory.Exists(item)) { SmartDirectory.GetFiles(item, textBox1.Text, this.CurrentSession.SearchTopDirectoryOnly, SearchDirecory_OnFound); ThreadControl.SetText(label2, foundFiles.Count.ToString()); continue; } } ThreadControl.SetText(label2, foundFiles.Count.ToString("#,#", System.Globalization.CultureInfo.CurrentCulture) + " File" + ((foundFiles.Count == 1) ? "" : "s") + " Found"); this.IsBusy = false; requestCancel = false; }); } /// /// Add directory /// /// /// private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e) { if (this.IsBusy) return; if (folderBrowserDialog1.ShowDialog() == DialogResult.OK) { AddSearchItem(folderBrowserDialog1.SelectedPath); } } /// /// Add file /// /// /// private void addFileToolStripMenuItem_Click(object sender, EventArgs e) { if (this.IsBusy) return; if (openFileDialog1.ShowDialog() == DialogResult.OK) { AddSearchItem(openFileDialog1.FileName); } } /// /// Clear /// /// /// private void button4_MouseClick(object sender, MouseEventArgs e) { if (this.IsBusy) return; memoBox1.Text = string.Empty; } private void memoBox1_DragOver(object sender, DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.FileDrop)) { if (this.IsBusy) { e.Effect = DragDropEffects.None; } else { e.Effect = DragDropEffects.Copy; } } else { e.Effect = DragDropEffects.None; } } private void memoBox1_DragDrop(object sender, DragEventArgs e) { if (this.IsBusy) return; string[] fileList = e.Data.GetData(DataFormats.FileDrop) as string[]; if (fileList == null) { return; } foreach (string item in fileList) { AddSearchItem(item); } } /// /// Run next /// /// /// private async void button5_MouseClick(object sender, MouseEventArgs e) { await Task.Run(() => { if (this.IsBusy) return; //this.IsBusy = true; if (this.CurrentSession == null) this.CurrentSession = new AppSession(); if (this.CurrentSession.ClosePrevOnNext) CloseCurrentProcess(currentProcess); string filename = null; // retry 8 times for (int i = 0; i < this.CurrentSession.RetryOnError; i++) { filename = foundFiles[randy.Next(0, (foundFiles.Count - 1))]; if (File.Exists(filename)) { continue; } filename = null; } if (!string.IsNullOrWhiteSpace(filename)) { ProcessStartInfo psi = new ProcessStartInfo(filename); psi.UseShellExecute = true; try { currentProcess = Process.Start(psi); } catch (Exception) { // do nothing } } //this.IsBusy = false; }); } /// /// Close /// /// /// private void button1_MouseClick(object sender, MouseEventArgs e) { this.Close(); } protected void AddSearchItem(string line) { memoBox1.Text = memoBox1.Text.Trim(); // above line-break if (!string.IsNullOrWhiteSpace(memoBox1.Text)) memoBox1.Text += Environment.NewLine; memoBox1.Text += line + Environment.NewLine; } private void CloseCurrentProcess(Process p) { if (p == null) return; try { p.CloseMainWindow(); //p.Close(); } catch (Exception) { // do nothing } } private void InvalidateHotKey() { //#if !DEBUG if (this.InvokeRequired) { this.Invoke(new MethodInvoker(() => { UnregisterHotKey((IntPtr)Handle, 1); })); } else { UnregisterHotKey((IntPtr)Handle, 1); } //#endif if (this.CurrentSession.NextHotKey != null) { if (this.CurrentSession.NextHotKey.KeyCode != Keys.None) { //#if !DEBUG if (this.InvokeRequired) { this.Invoke(new MethodInvoker(() => { RegisterHotKey((IntPtr)Handle, 1, this.CurrentSession.NextHotKey.ModifierCode, this.CurrentSession.NextHotKey.Key); })); } else { RegisterHotKey((IntPtr)Handle, 1, this.CurrentSession.NextHotKey.ModifierCode, this.CurrentSession.NextHotKey.Key); } //#endif } } } } }