Lua to read tsOutputs #3376
This commit is contained in:
parent
8ee2f49966
commit
5ed26f1ca1
Binary file not shown.
|
@ -14,13 +14,13 @@ import static com.rusefi.output.DataLogConsumer.UNUSED;
|
|||
|
||||
@SuppressWarnings("StringConcatenationInsideStringBufferAppend")
|
||||
public class GetConfigValueConsumer extends AbstractConfigurationConsumer {
|
||||
public static final String CONFIG_ENGINE_CONFIGURATION = "config->engineConfiguration.";
|
||||
public static final String ENGINE_CONFIGURATION = "engineConfiguration.";
|
||||
public static final String FILE_HEADER = "#include \"pch.h\"\n";
|
||||
public static final String GET_METHOD_HEADER = "float getConfigValueByName(const char *name) {\n";
|
||||
public static final String GET_METHOD_FOOTER = "\treturn EFI_ERROR_CODE;\n" + "}\n";
|
||||
public static final String SET_METHOD_HEADER = "void setConfigValueByName(const char *name, float value) {\n";
|
||||
public static final String SET_METHOD_FOOTER = "}\n";
|
||||
private static final String CONFIG_ENGINE_CONFIGURATION = "config->engineConfiguration.";
|
||||
private static final String ENGINE_CONFIGURATION = "engineConfiguration.";
|
||||
private static final String FILE_HEADER = "#include \"pch.h\"\n";
|
||||
private static final String GET_METHOD_HEADER = "float getConfigValueByName(const char *name) {\n";
|
||||
private static final String GET_METHOD_FOOTER = "\treturn EFI_ERROR_CODE;\n" + "}\n";
|
||||
private static final String SET_METHOD_HEADER = "void setConfigValueByName(const char *name, float value) {\n";
|
||||
private static final String SET_METHOD_FOOTER = "}\n";
|
||||
private final StringBuilder getterBody = new StringBuilder();
|
||||
private final StringBuilder setterBody = new StringBuilder();
|
||||
private final String outputFIleName;
|
||||
|
@ -79,14 +79,25 @@ public class GetConfigValueConsumer extends AbstractConfigurationConsumer {
|
|||
|
||||
if (TypesHelper.isFloat(cf.getType())) {
|
||||
setterBody.append(getCompareName(userName));
|
||||
setterBody.append("\t{\n" + "\t\t" + javaName + cf.getName() + " = value;\n" +
|
||||
"\t\treturn;\n\t}\n");
|
||||
String str = getAssignment(cf, javaName, "");
|
||||
setterBody.append(str);
|
||||
} else {
|
||||
setterBody.append(getCompareName(userName));
|
||||
String str = getAssignment(cf, javaName, "(int)");
|
||||
setterBody.append(str);
|
||||
}
|
||||
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private String getAssignment(ConfigField cf, String javaName, String cast) {
|
||||
return "\t{\n" + "\t\t" + javaName + cf.getName() + " = " + cast +
|
||||
"value;\n" +
|
||||
"\t\treturn;\n\t}\n";
|
||||
}
|
||||
|
||||
@NotNull
|
||||
private String getCompareName(String userName) {
|
||||
return "\tif (strEqualCaseInsensitive(name, \"" + userName + "\"))\n";
|
||||
|
|
|
@ -156,6 +156,11 @@ public class OutputsTest {
|
|||
"\t{\n" +
|
||||
"\t\tconfig->iat.config.tempC_1 = value;\n" +
|
||||
"\t\treturn;\n" +
|
||||
"\t}\n" +
|
||||
"\tif (strEqualCaseInsensitive(name, \"iat.adcChannel\"))\n" +
|
||||
"\t{\n" +
|
||||
"\t\tconfig->iat.adcChannel = (int)value;\n" +
|
||||
"\t\treturn;\n" +
|
||||
"\t}\n", getConfigValueConsumer.getSetterBody());
|
||||
|
||||
assertEquals("#include \"pch.h\"\n" +
|
||||
|
|
Loading…
Reference in New Issue