![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/HSPGui/Presenter/RegisterExportPresenter.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 | |
darienf | 20:6d2af70c92ab | 41 | using System.Globalization; |
darienf | 20:6d2af70c92ab | 42 | |
darienf | 20:6d2af70c92ab | 43 | using HealthSensorPlatform.View; |
darienf | 20:6d2af70c92ab | 44 | using Maxim.CustomControls; |
darienf | 20:6d2af70c92ab | 45 | using Maxim.Utility; |
darienf | 20:6d2af70c92ab | 46 | |
darienf | 20:6d2af70c92ab | 47 | namespace HealthSensorPlatform.Presenter |
darienf | 20:6d2af70c92ab | 48 | { |
darienf | 20:6d2af70c92ab | 49 | class RegisterExportPresenter |
darienf | 20:6d2af70c92ab | 50 | { |
darienf | 20:6d2af70c92ab | 51 | IRegisterExportView exportView; |
darienf | 20:6d2af70c92ab | 52 | IFormView hspMainForm; |
darienf | 20:6d2af70c92ab | 53 | List<RegisterView> registerModels; |
darienf | 20:6d2af70c92ab | 54 | |
darienf | 20:6d2af70c92ab | 55 | Dictionary<string, RegisterView> registerModelDict; |
darienf | 20:6d2af70c92ab | 56 | |
darienf | 20:6d2af70c92ab | 57 | FileLog registerDataFile; |
darienf | 20:6d2af70c92ab | 58 | FileCsvReader fileReader; |
darienf | 20:6d2af70c92ab | 59 | |
darienf | 20:6d2af70c92ab | 60 | public RegisterExportPresenter(IFormView hspMainForm, IRegisterExportView exportView, List<RegisterView> registerModels) |
darienf | 20:6d2af70c92ab | 61 | { |
darienf | 20:6d2af70c92ab | 62 | this.exportView = exportView; |
darienf | 20:6d2af70c92ab | 63 | this.registerModels = registerModels; |
darienf | 20:6d2af70c92ab | 64 | this.hspMainForm = hspMainForm; |
darienf | 20:6d2af70c92ab | 65 | |
darienf | 20:6d2af70c92ab | 66 | exportView.SelectionComplete += new EventHandler<CompleteEventArgs>(OnSelectionComplete); |
darienf | 20:6d2af70c92ab | 67 | |
darienf | 20:6d2af70c92ab | 68 | hspMainForm.RegisterExport += new EventHandler<EventArgs>(OnRegisterExport); |
darienf | 20:6d2af70c92ab | 69 | hspMainForm.RegisterImport += new EventHandler<EventArgs>(OnRegisterImport); |
darienf | 20:6d2af70c92ab | 70 | hspMainForm.Connected += new EventHandler<EventArgs>(OnConnected); |
darienf | 20:6d2af70c92ab | 71 | |
darienf | 20:6d2af70c92ab | 72 | registerDataFile = new FileLog(); |
darienf | 20:6d2af70c92ab | 73 | fileReader = new FileCsvReader(); |
darienf | 20:6d2af70c92ab | 74 | |
darienf | 20:6d2af70c92ab | 75 | registerModelDict = new Dictionary<string, RegisterView>(); |
darienf | 20:6d2af70c92ab | 76 | |
darienf | 20:6d2af70c92ab | 77 | foreach (RegisterView rV in registerModels) |
darienf | 20:6d2af70c92ab | 78 | { |
darienf | 20:6d2af70c92ab | 79 | registerModelDict.Add(rV.DeviceName, rV); |
darienf | 20:6d2af70c92ab | 80 | if (rV.DeviceName == "MAX30001") |
darienf | 20:6d2af70c92ab | 81 | registerModelDict.Add("MAX30003", rV); // add a second reference for MAX30003 |
darienf | 20:6d2af70c92ab | 82 | } |
darienf | 20:6d2af70c92ab | 83 | |
darienf | 20:6d2af70c92ab | 84 | } |
darienf | 20:6d2af70c92ab | 85 | |
darienf | 20:6d2af70c92ab | 86 | public List<string> GetDeviceNames() |
darienf | 20:6d2af70c92ab | 87 | { |
darienf | 20:6d2af70c92ab | 88 | List<string> devices = new List<string>(); |
darienf | 20:6d2af70c92ab | 89 | |
darienf | 20:6d2af70c92ab | 90 | foreach(RegisterView device in registerModels) |
darienf | 20:6d2af70c92ab | 91 | { |
darienf | 20:6d2af70c92ab | 92 | devices.Add(device.DeviceName); |
darienf | 20:6d2af70c92ab | 93 | } |
darienf | 20:6d2af70c92ab | 94 | |
darienf | 20:6d2af70c92ab | 95 | return devices; |
darienf | 20:6d2af70c92ab | 96 | } |
darienf | 20:6d2af70c92ab | 97 | |
darienf | 20:6d2af70c92ab | 98 | private void OnConnected(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 99 | { |
darienf | 20:6d2af70c92ab | 100 | exportView.Devices = GetDeviceNames(); |
darienf | 20:6d2af70c92ab | 101 | exportView.SelectedDevices = new List<string>(); |
darienf | 20:6d2af70c92ab | 102 | } |
darienf | 20:6d2af70c92ab | 103 | |
darienf | 20:6d2af70c92ab | 104 | private void OnRegisterExport(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 105 | { |
darienf | 20:6d2af70c92ab | 106 | exportView.Show(); |
darienf | 20:6d2af70c92ab | 107 | } |
darienf | 20:6d2af70c92ab | 108 | |
darienf | 20:6d2af70c92ab | 109 | private void OnRegisterImport(object sender, EventArgs e) |
darienf | 20:6d2af70c92ab | 110 | { |
darienf | 20:6d2af70c92ab | 111 | char[] hexSymbol = new char[] { 'h', 'H' }; |
darienf | 20:6d2af70c92ab | 112 | bool ok = true; |
darienf | 20:6d2af70c92ab | 113 | |
darienf | 20:6d2af70c92ab | 114 | if (fileReader.OpenCSVFile()) |
darienf | 20:6d2af70c92ab | 115 | { |
darienf | 20:6d2af70c92ab | 116 | while (fileReader.Peek() > 0) |
darienf | 20:6d2af70c92ab | 117 | { |
darienf | 20:6d2af70c92ab | 118 | string[] elements = fileReader.ReadLineElements(); |
darienf | 20:6d2af70c92ab | 119 | string registerAddress; |
darienf | 20:6d2af70c92ab | 120 | string registerValue; |
darienf | 20:6d2af70c92ab | 121 | |
darienf | 20:6d2af70c92ab | 122 | // End of data |
darienf | 20:6d2af70c92ab | 123 | if (elements[0].Contains('%') || elements[0] == String.Empty) |
darienf | 20:6d2af70c92ab | 124 | continue; |
darienf | 20:6d2af70c92ab | 125 | |
darienf | 20:6d2af70c92ab | 126 | if (ok = registerModelDict.ContainsKey(elements[0])) |
darienf | 20:6d2af70c92ab | 127 | { |
darienf | 20:6d2af70c92ab | 128 | RegisterView view = registerModelDict[elements[0]]; // Look up in dictionary |
darienf | 20:6d2af70c92ab | 129 | |
darienf | 20:6d2af70c92ab | 130 | registerAddress = elements[1].TrimEnd(hexSymbol); |
darienf | 20:6d2af70c92ab | 131 | registerValue = elements[3].TrimEnd(hexSymbol); |
darienf | 20:6d2af70c92ab | 132 | |
darienf | 20:6d2af70c92ab | 133 | RPCSupport.DeviceSupport.RegisterInfo reg = view.RegisterAddress(Int32.Parse(registerAddress, NumberStyles.HexNumber)); |
darienf | 20:6d2af70c92ab | 134 | |
darienf | 20:6d2af70c92ab | 135 | if (reg.type == RPCSupport.DeviceSupport.RegisterInfo.RegisterType.None) |
darienf | 20:6d2af70c92ab | 136 | view.WriteRegister(reg, Int32.Parse(registerValue, NumberStyles.HexNumber)); |
darienf | 20:6d2af70c92ab | 137 | } |
darienf | 20:6d2af70c92ab | 138 | else |
darienf | 20:6d2af70c92ab | 139 | break; |
darienf | 20:6d2af70c92ab | 140 | } |
darienf | 20:6d2af70c92ab | 141 | |
darienf | 20:6d2af70c92ab | 142 | fileReader.Close(); |
darienf | 20:6d2af70c92ab | 143 | |
darienf | 20:6d2af70c92ab | 144 | if (ok) |
darienf | 20:6d2af70c92ab | 145 | { |
darienf | 20:6d2af70c92ab | 146 | hspMainForm.UpdateRegisters(); |
darienf | 20:6d2af70c92ab | 147 | hspMainForm.MessageBoxShow("Register load complete", "Register Import/Export"); |
darienf | 20:6d2af70c92ab | 148 | } |
darienf | 20:6d2af70c92ab | 149 | else |
darienf | 20:6d2af70c92ab | 150 | { |
darienf | 20:6d2af70c92ab | 151 | hspMainForm.MessageBoxShow("Register load failed, file format incorrect", "Register Import/Export"); |
darienf | 20:6d2af70c92ab | 152 | } |
darienf | 20:6d2af70c92ab | 153 | } |
darienf | 20:6d2af70c92ab | 154 | } |
darienf | 20:6d2af70c92ab | 155 | |
darienf | 20:6d2af70c92ab | 156 | private void OnSelectionComplete(object sender, CompleteEventArgs e) |
darienf | 20:6d2af70c92ab | 157 | { |
darienf | 20:6d2af70c92ab | 158 | List<string> devices = exportView.SelectedDevices; |
darienf | 20:6d2af70c92ab | 159 | |
darienf | 20:6d2af70c92ab | 160 | if (e.Complete == true) // Successful device selection |
darienf | 20:6d2af70c92ab | 161 | { |
darienf | 20:6d2af70c92ab | 162 | if (registerDataFile.SelectCSVFile("hsp-register_data")) // Successful file selection |
darienf | 20:6d2af70c92ab | 163 | { |
darienf | 20:6d2af70c92ab | 164 | foreach (string device in devices) // Match string with RegisterView |
darienf | 20:6d2af70c92ab | 165 | { |
darienf | 20:6d2af70c92ab | 166 | RegisterView regView = registerModelDict[device]; // Find register view corresponding with device name |
darienf | 20:6d2af70c92ab | 167 | |
darienf | 20:6d2af70c92ab | 168 | regView.ReadAll(); // Update register values |
darienf | 20:6d2af70c92ab | 169 | registerDataFile.WriteLine("% Device, Address (hex), Name, Value (hex)"); |
darienf | 20:6d2af70c92ab | 170 | registerDataFile.WriteLine(regView.RegistersToString()); // Do the Export |
darienf | 20:6d2af70c92ab | 171 | registerDataFile.WriteLine("%"); // End of register data |
darienf | 20:6d2af70c92ab | 172 | } |
darienf | 20:6d2af70c92ab | 173 | |
darienf | 20:6d2af70c92ab | 174 | registerDataFile.Close(); |
darienf | 20:6d2af70c92ab | 175 | |
darienf | 20:6d2af70c92ab | 176 | hspMainForm.MessageBoxShow("Register save complete", "Register Import/Export"); |
darienf | 20:6d2af70c92ab | 177 | } |
darienf | 20:6d2af70c92ab | 178 | } |
darienf | 20:6d2af70c92ab | 179 | |
darienf | 20:6d2af70c92ab | 180 | } |
darienf | 20:6d2af70c92ab | 181 | |
darienf | 20:6d2af70c92ab | 182 | } |
darienf | 20:6d2af70c92ab | 183 | } |