forked from ArduPilot/MissionPlanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathParameterMetaDataRepositoryPX4.cs
170 lines (147 loc) · 6.9 KB
/
ParameterMetaDataRepositoryPX4.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
using System;
using System.Configuration;
using System.IO;
using System.Xml.Linq;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
namespace MissionPlanner.Utilities
{
public class ParameterMetaDataRepositoryPX4
{
private static XDocument _parameterMetaDataXML;
/// <summary>
/// Initializes a new instance of the <see cref="ParameterMetaDataRepository"/> class.
/// </summary>
public static void CheckLoad()
{
if (_parameterMetaDataXML == null)
Reload();
}
public static void Reload()
{
string paramMetaDataXMLFileName = String.Format("{0}{1}", Settings.GetUserDataDirectory(), "ParameterFactMetaData.xml");
string paramMetaDataXMLFileNameBackup = String.Format("{0}{1}{2}", Settings.GetRunningDirectory(),
Path.DirectorySeparatorChar, "ParameterFactMetaData.xml");
try
{
if (File.Exists(paramMetaDataXMLFileName))
_parameterMetaDataXML = XDocument.Load(paramMetaDataXMLFileName);
// error loading the good file, load the backup
if (File.Exists(paramMetaDataXMLFileNameBackup) && _parameterMetaDataXML == null)
{
_parameterMetaDataXML = XDocument.Load(paramMetaDataXMLFileNameBackup);
Console.WriteLine("Using backup param data");
}
}
catch
{
}
}
static string ConvertMetaKey(string input)
{
if (input == ParameterMetaDataConstants.DisplayName)
return "short_desc";
if (input == ParameterMetaDataConstants.Range)
return "range";
if (input == ParameterMetaDataConstants.Range)
return "range";
if (input == ParameterMetaDataConstants.Description)
return "long_desc";
if (input == ParameterMetaDataConstants.Increment)
return "increment";
if (input == ParameterMetaDataConstants.Units)
return "unit";
if (input == ParameterMetaDataConstants.Values)
return "values";
return input;
}
/// <summary>
/// Gets the parameter meta data.
/// </summary>
/// <param name="nodeKey">The node key.</param>
/// <param name="metaKey">The meta key.</param>
/// <returns></returns>
public static string GetParameterMetaData(string nodeKey, string metaKey, string vechileType = "")
{
CheckLoad();
if (_parameterMetaDataXML != null)
{
metaKey = ConvertMetaKey(metaKey);
try
{
//parameters - group - parameter
//metakeys - short_desc min max decimal long_desc increment unit
//values value
var nodeKeyLower = nodeKey.ToLower();
var groups = _parameterMetaDataXML.Element("parameters").Elements("group");
foreach (var group in groups)
{
if (group != null && group.HasElements)
{
var parameters = group.Elements("parameter");
foreach (var parameter in parameters)
{
if (parameter != null && parameter.HasElements)
{
// match param name
var node = parameter.Attribute("name");
if (node.Value.ToLower() == nodeKeyLower)
{
if (metaKey == "values")
{
try
{
var values = parameter.Element("values");
if (values == null)
return string.Empty;
var valuearray = values.Elements("value");
string value = "";
foreach (var valueelement in valuearray)
{
var no = valueelement.Attribute("code");
if (no == null)
continue;
var val = valueelement.Value;
if (val == null)
continue;
value += no.Value + ":" + val + ",";
}
return value.TrimEnd(',');
}
catch
{
return string.Empty;
}
}
else if (metaKey.ToLower() == "range")
{
return GetParameterMetaData(nodeKey, "min") + " " + GetParameterMetaData(nodeKey, "max");
}
else
{
var key = parameter.Element(metaKey);
if (key != null)
{
return key.Value;
}
else
{
return string.Empty;
}
}
}
}
}
}
}
}
catch
{
} // Exception System.ArgumentException: '' is an invalid expanded name.
}
return string.Empty;
}
}
}