![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
Diff: HspGuiSourceV301/GuiDLLs/RPCSupport/Dialogs/RpcLog.cs
- Revision:
- 20:6d2af70c92ab
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/HspGuiSourceV301/GuiDLLs/RPCSupport/Dialogs/RpcLog.cs Tue Apr 06 06:41:40 2021 +0000 @@ -0,0 +1,155 @@ +/******************************************************************************* +* Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved. +* +* This software is protected by copyright laws of the United States and +* of foreign countries. This material may also be protected by patent laws +* and technology transfer regulations of the United States and of foreign +* countries. This software is furnished under a license agreement and/or a +* nondisclosure agreement and may only be used or reproduced in accordance +* with the terms of those agreements. Dissemination of this information to +* any party or parties not specified in the license agreement and/or +* nondisclosure agreement is expressly prohibited. +* +* The above copyright notice and this permission notice shall be included +* in all copies or substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +* IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES +* OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, +* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +* OTHER DEALINGS IN THE SOFTWARE. +* +* Except as contained in this notice, the name of Maxim Integrated +* Products, Inc. shall not be used except as stated in the Maxim Integrated +* Products, Inc. Branding Policy. +* +* The mere transfer of this software does not imply any licenses +* of trade secrets, proprietary technology, copyrights, patents, +* trademarks, maskwork rights, or any other form of intellectual +* property whatsoever. Maxim Integrated Products, Inc. retains all +* ownership rights. +******************************************************************************* +*/ + +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; +using System.IO; +using System.Text.RegularExpressions; + +namespace RPCSupport.Dialogs +{ + public partial class RpcLog : Form + { + public RpcLog() + { + InitializeComponent(); + } + + private const int CP_NOCLOSE_BUTTON = 0x200; + protected override CreateParams CreateParams + { + get + { + CreateParams myCp = base.CreateParams; + myCp.ClassStyle = myCp.ClassStyle | CP_NOCLOSE_BUTTON; + return myCp; + } + } + + internal void LogRpcRequest(string request) + { + //txt_Status.Text += request; + SetTextListBox(request + " "); + } + + internal void LogRpcReply(string reply) + { + //txt_Status.Text += reply + "\r\n"; + SetTextListBox(reply + " "); + } + + delegate void SetTextCallback(string text); + + private void SetText(string text) + { + // InvokeRequired required compares the thread ID of the + // calling thread to the thread ID of the creating thread. + // If these threads are different, it returns true. + if (this.txt_Status.InvokeRequired) + { + SetTextCallback d = new SetTextCallback(SetText); + this.Invoke(d, new object[] { text }); + } + else + { + this.txt_Status.Text += text; + if (this.txt_Status.Text.Length > 2000) this.txt_Status.Text = ""; + } + } + + delegate void UpdateCCNetWindowDelegate(String msg); + + private void SetTextListBox(String message) + { + // Check whether the caller must call an invoke method when making method calls to listBoxCCNetOutput because the caller is + // on a different thread than the one the listBoxCCNetOutput control was created on. + if (listBox1.InvokeRequired) + { + UpdateCCNetWindowDelegate update = new UpdateCCNetWindowDelegate(SetTextListBox); + listBox1.Invoke(update, message); + } + else + { + listBox1.Items.Add(message); + if (listBox1.Items.Count > 10000) + { + listBox1.Items.RemoveAt(0); // remove first line + } + // Make sure the last item is made visible + listBox1.SelectedIndex = listBox1.Items.Count - 1; + listBox1.ClearSelected(); + } + } + + + internal void LogRpcStream(string stream) + { + //txt_Status.Text += stream + " "; + SetTextListBox(stream + " "); + } + + private void btn_Clear_Click(object sender, EventArgs e) + { + //txt_Status.Text = ""; + listBox1.Items.Clear(); + } + + private void txt_Status_TextChanged(object sender, EventArgs e) + { + + } + + private void btnSaveToFile_Click(object sender, EventArgs e) + { + SaveFileDialog saveFileDialog = new SaveFileDialog(); + DialogResult result = saveFileDialog.ShowDialog(); + if (result == System.Windows.Forms.DialogResult.OK) + { + StreamWriter sw = new StreamWriter(saveFileDialog.FileName); + for (int i = 0; i < listBox1.Items.Count; i++) + { + sw.WriteLine(Regex.Replace(listBox1.Items[i].ToString(), @"\r\n?|\n", "")); + } + sw.Close(); + } + } + } +}