![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/GuiDLLs/FileLog/FileLog/FileLog.cs@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 20:6d2af70c92ab | 1 | /******************************************************************************* |
darienf | 20:6d2af70c92ab | 2 | * Copyright (C) 2016 Maxim Integrated Products, Inc., All rights Reserved. |
darienf | 20:6d2af70c92ab | 3 | * |
darienf | 20:6d2af70c92ab | 4 | * This software is protected by copyright laws of the United States and |
darienf | 20:6d2af70c92ab | 5 | * of foreign countries. This material may also be protected by patent laws |
darienf | 20:6d2af70c92ab | 6 | * and technology transfer regulations of the United States and of foreign |
darienf | 20:6d2af70c92ab | 7 | * countries. This software is furnished under a license agreement and/or a |
darienf | 20:6d2af70c92ab | 8 | * nondisclosure agreement and may only be used or reproduced in accordance |
darienf | 20:6d2af70c92ab | 9 | * with the terms of those agreements. Dissemination of this information to |
darienf | 20:6d2af70c92ab | 10 | * any party or parties not specified in the license agreement and/or |
darienf | 20:6d2af70c92ab | 11 | * nondisclosure agreement is expressly prohibited. |
darienf | 20:6d2af70c92ab | 12 | * |
darienf | 20:6d2af70c92ab | 13 | * The above copyright notice and this permission notice shall be included |
darienf | 20:6d2af70c92ab | 14 | * in all copies or substantial portions of the Software. |
darienf | 20:6d2af70c92ab | 15 | * |
darienf | 20:6d2af70c92ab | 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
darienf | 20:6d2af70c92ab | 17 | * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
darienf | 20:6d2af70c92ab | 18 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
darienf | 20:6d2af70c92ab | 19 | * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES |
darienf | 20:6d2af70c92ab | 20 | * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, |
darienf | 20:6d2af70c92ab | 21 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR |
darienf | 20:6d2af70c92ab | 22 | * OTHER DEALINGS IN THE SOFTWARE. |
darienf | 20:6d2af70c92ab | 23 | * |
darienf | 20:6d2af70c92ab | 24 | * Except as contained in this notice, the name of Maxim Integrated |
darienf | 20:6d2af70c92ab | 25 | * Products, Inc. shall not be used except as stated in the Maxim Integrated |
darienf | 20:6d2af70c92ab | 26 | * Products, Inc. Branding Policy. |
darienf | 20:6d2af70c92ab | 27 | * |
darienf | 20:6d2af70c92ab | 28 | * The mere transfer of this software does not imply any licenses |
darienf | 20:6d2af70c92ab | 29 | * of trade secrets, proprietary technology, copyrights, patents, |
darienf | 20:6d2af70c92ab | 30 | * trademarks, maskwork rights, or any other form of intellectual |
darienf | 20:6d2af70c92ab | 31 | * property whatsoever. Maxim Integrated Products, Inc. retains all |
darienf | 20:6d2af70c92ab | 32 | * ownership rights. |
darienf | 20:6d2af70c92ab | 33 | ******************************************************************************* |
darienf | 20:6d2af70c92ab | 34 | */ |
darienf | 20:6d2af70c92ab | 35 | |
darienf | 20:6d2af70c92ab | 36 | using System; |
darienf | 20:6d2af70c92ab | 37 | using System.Collections.Generic; |
darienf | 20:6d2af70c92ab | 38 | using System.Linq; |
darienf | 20:6d2af70c92ab | 39 | using System.Text; |
darienf | 20:6d2af70c92ab | 40 | using System.Threading.Tasks; |
darienf | 20:6d2af70c92ab | 41 | using System.IO; |
darienf | 20:6d2af70c92ab | 42 | using System.Windows.Forms; |
darienf | 20:6d2af70c92ab | 43 | |
darienf | 20:6d2af70c92ab | 44 | using Maxim.Global; |
darienf | 20:6d2af70c92ab | 45 | |
darienf | 20:6d2af70c92ab | 46 | namespace Maxim.Utility |
darienf | 20:6d2af70c92ab | 47 | { |
darienf | 20:6d2af70c92ab | 48 | public class FileLog |
darienf | 20:6d2af70c92ab | 49 | { |
darienf | 20:6d2af70c92ab | 50 | StreamWriter outputStream = null; |
darienf | 20:6d2af70c92ab | 51 | SaveFileDialog fileDialog = new SaveFileDialog(); |
darienf | 20:6d2af70c92ab | 52 | string fileDirectory = null; |
darienf | 20:6d2af70c92ab | 53 | |
darienf | 20:6d2af70c92ab | 54 | public EventHandler<Maxim.Global.ErrorEventArgs> Error; |
darienf | 20:6d2af70c92ab | 55 | |
darienf | 20:6d2af70c92ab | 56 | public FileLog() |
darienf | 20:6d2af70c92ab | 57 | { |
darienf | 20:6d2af70c92ab | 58 | fileDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); |
darienf | 20:6d2af70c92ab | 59 | fileDialog.InitialDirectory = fileDirectory; |
darienf | 20:6d2af70c92ab | 60 | } |
darienf | 20:6d2af70c92ab | 61 | |
darienf | 20:6d2af70c92ab | 62 | public string FileDirectory |
darienf | 20:6d2af70c92ab | 63 | { |
darienf | 20:6d2af70c92ab | 64 | get |
darienf | 20:6d2af70c92ab | 65 | { |
darienf | 20:6d2af70c92ab | 66 | return fileDirectory; |
darienf | 20:6d2af70c92ab | 67 | } |
darienf | 20:6d2af70c92ab | 68 | set |
darienf | 20:6d2af70c92ab | 69 | { |
darienf | 20:6d2af70c92ab | 70 | fileDirectory = value; |
darienf | 20:6d2af70c92ab | 71 | } |
darienf | 20:6d2af70c92ab | 72 | } |
darienf | 20:6d2af70c92ab | 73 | |
darienf | 20:6d2af70c92ab | 74 | public bool SelectCSVFile(string fileName) |
darienf | 20:6d2af70c92ab | 75 | { |
darienf | 20:6d2af70c92ab | 76 | fileDialog.FileName = fileName + "_" + string.Format("{0:yyyy-MM-dd_HH-mm-ss}", DateTime.Now) + ".csv"; |
darienf | 20:6d2af70c92ab | 77 | fileDialog.Filter = "CSV files (*.csv)|*.csv|All files (*.*)|*.*"; |
darienf | 20:6d2af70c92ab | 78 | fileDialog.InitialDirectory = fileDirectory; |
darienf | 20:6d2af70c92ab | 79 | if (fileDialog.ShowDialog() == DialogResult.OK) |
darienf | 20:6d2af70c92ab | 80 | { |
darienf | 20:6d2af70c92ab | 81 | fileDirectory = Path.GetDirectoryName(fileDialog.FileName); |
darienf | 20:6d2af70c92ab | 82 | outputStream = new StreamWriter(fileDialog.FileName, false, System.Text.Encoding.UTF8); |
darienf | 20:6d2af70c92ab | 83 | outputStream.AutoFlush = true; |
darienf | 20:6d2af70c92ab | 84 | |
darienf | 20:6d2af70c92ab | 85 | return true; |
darienf | 20:6d2af70c92ab | 86 | } |
darienf | 20:6d2af70c92ab | 87 | else |
darienf | 20:6d2af70c92ab | 88 | return false; |
darienf | 20:6d2af70c92ab | 89 | } |
darienf | 20:6d2af70c92ab | 90 | |
darienf | 20:6d2af70c92ab | 91 | public void Close() |
darienf | 20:6d2af70c92ab | 92 | { |
darienf | 20:6d2af70c92ab | 93 | if (outputStream != null) |
darienf | 20:6d2af70c92ab | 94 | { |
darienf | 20:6d2af70c92ab | 95 | try |
darienf | 20:6d2af70c92ab | 96 | { |
darienf | 20:6d2af70c92ab | 97 | outputStream.Flush(); |
darienf | 20:6d2af70c92ab | 98 | } |
darienf | 20:6d2af70c92ab | 99 | catch (System.ObjectDisposedException) |
darienf | 20:6d2af70c92ab | 100 | { |
darienf | 20:6d2af70c92ab | 101 | // TODO |
darienf | 20:6d2af70c92ab | 102 | } |
darienf | 20:6d2af70c92ab | 103 | outputStream.Close(); |
darienf | 20:6d2af70c92ab | 104 | } |
darienf | 20:6d2af70c92ab | 105 | } |
darienf | 20:6d2af70c92ab | 106 | |
darienf | 20:6d2af70c92ab | 107 | public void Write(string value) |
darienf | 20:6d2af70c92ab | 108 | { |
darienf | 20:6d2af70c92ab | 109 | outputStream.Write(value); |
darienf | 20:6d2af70c92ab | 110 | } |
darienf | 20:6d2af70c92ab | 111 | |
darienf | 20:6d2af70c92ab | 112 | public void WriteLine(string value) |
darienf | 20:6d2af70c92ab | 113 | { |
darienf | 20:6d2af70c92ab | 114 | //outputStream.WriteLine(string.Format("{0:HH-mm-ss}", DateTime.Now) + ", " + value); |
darienf | 20:6d2af70c92ab | 115 | outputStream.WriteLine(value); |
darienf | 20:6d2af70c92ab | 116 | } |
darienf | 20:6d2af70c92ab | 117 | } |
darienf | 20:6d2af70c92ab | 118 | } |