find_cygwin . -type f -print0 | xargs -0 dos2unix
for java_console
This commit is contained in:
parent
66b935ffbb
commit
98c5bcef9e
|
@ -1,24 +1,24 @@
|
|||
package com.rusefi.io;
|
||||
|
||||
/**
|
||||
* @author Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public interface ConnectionStateListener {
|
||||
ConnectionStateListener VOID = new ConnectionStateListener() {
|
||||
@Override
|
||||
public void onConnectionEstablished() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onConnectionFailed() {
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* This method is invoked once we have connection & configuration from controller
|
||||
*/
|
||||
void onConnectionEstablished();
|
||||
|
||||
void onConnectionFailed();
|
||||
}
|
||||
package com.rusefi.io;
|
||||
|
||||
/**
|
||||
* @author Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public interface ConnectionStateListener {
|
||||
ConnectionStateListener VOID = new ConnectionStateListener() {
|
||||
@Override
|
||||
public void onConnectionEstablished() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onConnectionFailed() {
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* This method is invoked once we have connection & configuration from controller
|
||||
*/
|
||||
void onConnectionEstablished();
|
||||
|
||||
void onConnectionFailed();
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,33 +1,33 @@
|
|||
package com.opensr5;
|
||||
|
||||
import com.opensr5.io.IniFileMetaInfo;
|
||||
import com.opensr5.io.IniFileReader;
|
||||
import com.opensr5.io.RawIniFile;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("OpenSR5 - load/program tune via serial port utility");
|
||||
System.out.println(" (c) 2017 Andrey Belomutskiy");
|
||||
System.out.println(" https://github.com/rusefi/opensr5_flash");
|
||||
System.out.flush();
|
||||
|
||||
if (args.length < 1) {
|
||||
System.err.println("Usage:");
|
||||
System.err.println("opensr5 DEFINITION_FILE.INI");
|
||||
System.exit(-1);
|
||||
}
|
||||
|
||||
String projectIniFileName = args[0];
|
||||
|
||||
RawIniFile content = IniFileReader.read(new File(projectIniFileName));
|
||||
|
||||
IniFileMetaInfo meta = new IniFileMetaInfo(content);
|
||||
|
||||
System.out.println("nPages = " + meta.getnPages());
|
||||
System.out.println("blockingFactor = " + meta.getBlockingFactor());
|
||||
|
||||
}
|
||||
}
|
||||
package com.opensr5;
|
||||
|
||||
import com.opensr5.io.IniFileMetaInfo;
|
||||
import com.opensr5.io.IniFileReader;
|
||||
import com.opensr5.io.RawIniFile;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class Main {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println("OpenSR5 - load/program tune via serial port utility");
|
||||
System.out.println(" (c) 2017 Andrey Belomutskiy");
|
||||
System.out.println(" https://github.com/rusefi/opensr5_flash");
|
||||
System.out.flush();
|
||||
|
||||
if (args.length < 1) {
|
||||
System.err.println("Usage:");
|
||||
System.err.println("opensr5 DEFINITION_FILE.INI");
|
||||
System.exit(-1);
|
||||
}
|
||||
|
||||
String projectIniFileName = args[0];
|
||||
|
||||
RawIniFile content = IniFileReader.read(new File(projectIniFileName));
|
||||
|
||||
IniFileMetaInfo meta = new IniFileMetaInfo(content);
|
||||
|
||||
System.out.println("nPages = " + meta.getnPages());
|
||||
System.out.println("blockingFactor = " + meta.getBlockingFactor());
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package com.opensr5.io;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class BasicBinaryProtocol {
|
||||
}
|
||||
package com.opensr5.io;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class BasicBinaryProtocol {
|
||||
}
|
||||
|
|
|
@ -1,69 +1,69 @@
|
|||
package com.opensr5.io;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileMetaInfo {
|
||||
public static final int DEFAULT_BLOCKING_FACTOR = 16000;
|
||||
private final int nPages;
|
||||
private final String signature;
|
||||
private final List<String> pageReadCommands;
|
||||
|
||||
private int totalSize;
|
||||
private final List<Integer> pageSizes = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* read maximum chunk size
|
||||
*/
|
||||
private final int blockingFactor; // todo: this is probably an optional propery, come up with some default
|
||||
|
||||
public IniFileMetaInfo(RawIniFile file) {
|
||||
|
||||
nPages = file.getSimpleIntegerProperty("nPages");
|
||||
|
||||
blockingFactor = file.getSimpleIntegerProperty("blockingFactor", DEFAULT_BLOCKING_FACTOR);
|
||||
|
||||
signature = file.getValues("signature").get(0);
|
||||
|
||||
List<String> individualPageSizes = file.getValues("pageSize");
|
||||
|
||||
if (individualPageSizes.size() != nPages)
|
||||
throw new IllegalStateException("Unexpected individual sizes: " + individualPageSizes);
|
||||
|
||||
for (String value : individualPageSizes) {
|
||||
int size = Integer.parseInt(value);
|
||||
pageSizes.add(size);
|
||||
totalSize += size;
|
||||
}
|
||||
|
||||
pageReadCommands = file.getValues("pageReadCommand");
|
||||
}
|
||||
|
||||
public int getnPages() {
|
||||
return nPages;
|
||||
}
|
||||
|
||||
public int getBlockingFactor() {
|
||||
return blockingFactor;
|
||||
}
|
||||
|
||||
public int getTotalSize() {
|
||||
return totalSize;
|
||||
}
|
||||
|
||||
public String getSignature() {
|
||||
return signature;
|
||||
}
|
||||
|
||||
public String getPageReadCommand(int pageIndex) {
|
||||
return pageReadCommands.get(pageIndex);
|
||||
}
|
||||
|
||||
public int getPageSize(int pageIndex) {
|
||||
return pageSizes.get(pageIndex);
|
||||
}
|
||||
}
|
||||
package com.opensr5.io;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileMetaInfo {
|
||||
public static final int DEFAULT_BLOCKING_FACTOR = 16000;
|
||||
private final int nPages;
|
||||
private final String signature;
|
||||
private final List<String> pageReadCommands;
|
||||
|
||||
private int totalSize;
|
||||
private final List<Integer> pageSizes = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* read maximum chunk size
|
||||
*/
|
||||
private final int blockingFactor; // todo: this is probably an optional propery, come up with some default
|
||||
|
||||
public IniFileMetaInfo(RawIniFile file) {
|
||||
|
||||
nPages = file.getSimpleIntegerProperty("nPages");
|
||||
|
||||
blockingFactor = file.getSimpleIntegerProperty("blockingFactor", DEFAULT_BLOCKING_FACTOR);
|
||||
|
||||
signature = file.getValues("signature").get(0);
|
||||
|
||||
List<String> individualPageSizes = file.getValues("pageSize");
|
||||
|
||||
if (individualPageSizes.size() != nPages)
|
||||
throw new IllegalStateException("Unexpected individual sizes: " + individualPageSizes);
|
||||
|
||||
for (String value : individualPageSizes) {
|
||||
int size = Integer.parseInt(value);
|
||||
pageSizes.add(size);
|
||||
totalSize += size;
|
||||
}
|
||||
|
||||
pageReadCommands = file.getValues("pageReadCommand");
|
||||
}
|
||||
|
||||
public int getnPages() {
|
||||
return nPages;
|
||||
}
|
||||
|
||||
public int getBlockingFactor() {
|
||||
return blockingFactor;
|
||||
}
|
||||
|
||||
public int getTotalSize() {
|
||||
return totalSize;
|
||||
}
|
||||
|
||||
public String getSignature() {
|
||||
return signature;
|
||||
}
|
||||
|
||||
public String getPageReadCommand(int pageIndex) {
|
||||
return pageReadCommands.get(pageIndex);
|
||||
}
|
||||
|
||||
public int getPageSize(int pageIndex) {
|
||||
return pageSizes.get(pageIndex);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,84 +1,84 @@
|
|||
package com.opensr5.io;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileReader {
|
||||
private IniFileReader() {
|
||||
}
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* This method reads
|
||||
* x = y, "Z"
|
||||
* lines returning
|
||||
* {x, y, "Z"}
|
||||
* array of Strings
|
||||
*
|
||||
* equals sign, space, tab and commas are all equally considered not parts of the token, quotes are supportd
|
||||
*
|
||||
* Technically a line like
|
||||
* x, y = z
|
||||
* is also supported and would produce same valid output
|
||||
*
|
||||
* </pre>
|
||||
*/
|
||||
public static String[] splitTokens(String str) {
|
||||
ArrayList<String> strings = new ArrayList<>();
|
||||
boolean inQuote = false;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0; i < str.length(); i++) {
|
||||
char c = str.charAt(i);
|
||||
if (c == '\"' || isTokenSeparator(c) && !inQuote) {
|
||||
if (c == '\"')
|
||||
inQuote = !inQuote;
|
||||
if (!inQuote && sb.length() > 0) {
|
||||
strings.add(sb.toString());
|
||||
sb.delete(0, sb.length());
|
||||
}
|
||||
} else
|
||||
sb.append(c);
|
||||
}
|
||||
if (sb.length() > 0)
|
||||
strings.add(sb.toString());
|
||||
|
||||
return strings.toArray(new String[strings.size()]);
|
||||
}
|
||||
|
||||
private static boolean isTokenSeparator(int c) {
|
||||
return c == ' ' || c == '\t' || c == '=' || c == ',';
|
||||
}
|
||||
|
||||
public static RawIniFile read(InputStream in) {
|
||||
List<RawIniFile.Line> lines = new ArrayList<>();
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
|
||||
|
||||
try {
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (line.trim().isEmpty() || RawIniFile.Line.isCommentLine(line)) {
|
||||
// let's skip comments right here
|
||||
continue;
|
||||
}
|
||||
lines.add(new RawIniFile.Line(line));
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
return new RawIniFile(lines);
|
||||
}
|
||||
|
||||
public static RawIniFile read(File input) {
|
||||
try {
|
||||
InputStream in = new FileInputStream(input);
|
||||
return read(in);
|
||||
} catch (FileNotFoundException e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
package com.opensr5.io;
|
||||
|
||||
import java.io.*;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileReader {
|
||||
private IniFileReader() {
|
||||
}
|
||||
|
||||
/**
|
||||
* <pre>
|
||||
* This method reads
|
||||
* x = y, "Z"
|
||||
* lines returning
|
||||
* {x, y, "Z"}
|
||||
* array of Strings
|
||||
*
|
||||
* equals sign, space, tab and commas are all equally considered not parts of the token, quotes are supportd
|
||||
*
|
||||
* Technically a line like
|
||||
* x, y = z
|
||||
* is also supported and would produce same valid output
|
||||
*
|
||||
* </pre>
|
||||
*/
|
||||
public static String[] splitTokens(String str) {
|
||||
ArrayList<String> strings = new ArrayList<>();
|
||||
boolean inQuote = false;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (int i = 0; i < str.length(); i++) {
|
||||
char c = str.charAt(i);
|
||||
if (c == '\"' || isTokenSeparator(c) && !inQuote) {
|
||||
if (c == '\"')
|
||||
inQuote = !inQuote;
|
||||
if (!inQuote && sb.length() > 0) {
|
||||
strings.add(sb.toString());
|
||||
sb.delete(0, sb.length());
|
||||
}
|
||||
} else
|
||||
sb.append(c);
|
||||
}
|
||||
if (sb.length() > 0)
|
||||
strings.add(sb.toString());
|
||||
|
||||
return strings.toArray(new String[strings.size()]);
|
||||
}
|
||||
|
||||
private static boolean isTokenSeparator(int c) {
|
||||
return c == ' ' || c == '\t' || c == '=' || c == ',';
|
||||
}
|
||||
|
||||
public static RawIniFile read(InputStream in) {
|
||||
List<RawIniFile.Line> lines = new ArrayList<>();
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
|
||||
|
||||
try {
|
||||
String line;
|
||||
while ((line = reader.readLine()) != null) {
|
||||
if (line.trim().isEmpty() || RawIniFile.Line.isCommentLine(line)) {
|
||||
// let's skip comments right here
|
||||
continue;
|
||||
}
|
||||
lines.add(new RawIniFile.Line(line));
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
return new RawIniFile(lines);
|
||||
}
|
||||
|
||||
public static RawIniFile read(File input) {
|
||||
try {
|
||||
InputStream in = new FileInputStream(input);
|
||||
return read(in);
|
||||
} catch (FileNotFoundException e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,95 +1,95 @@
|
|||
package com.opensr5.io;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class RawIniFile {
|
||||
/**
|
||||
* A list of lines. Lines which are only a comment were filtered out already.
|
||||
*/
|
||||
private final List<Line> lines;
|
||||
|
||||
/**
|
||||
* Often we want to look-up line by first token.
|
||||
* Each line in this map has at least two tokens
|
||||
*/
|
||||
private final Map<String, Line> asSet = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
|
||||
|
||||
public RawIniFile(List<Line> lines) {
|
||||
this.lines = lines;
|
||||
|
||||
for (Line line : lines) {
|
||||
if (line.tokens.length > 1)
|
||||
asSet.put(line.tokens[0], line);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@NotNull
|
||||
public Line getMandatoryLine(String key) {
|
||||
Line result = getByKey(key);
|
||||
if (result == null)
|
||||
throw new IllegalStateException("Line not found: " + key);
|
||||
assert result.tokens.length > 1;
|
||||
return result;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public Line getByKey(String key) {
|
||||
return asSet.get(key);
|
||||
}
|
||||
|
||||
public List<Line> getLines() {
|
||||
return lines;
|
||||
}
|
||||
|
||||
public int getSimpleIntegerProperty(String key) {
|
||||
Line line = asSet.get(key);
|
||||
if (line == null)
|
||||
throw new IllegalStateException("Line not found: " + key);
|
||||
String value = line.getTokens()[1];
|
||||
return Integer.parseInt(value);
|
||||
}
|
||||
|
||||
public int getSimpleIntegerProperty(String key, int defaultValue) {
|
||||
if (!asSet.containsKey(key))
|
||||
return defaultValue;
|
||||
return getSimpleIntegerProperty(key);
|
||||
}
|
||||
|
||||
public List<String> getValues(String key) {
|
||||
RawIniFile.Line line = getMandatoryLine(key);
|
||||
return Arrays.asList(line.getTokens()).subList(1, line.getTokens().length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Immutable representation of since ini file line
|
||||
*/
|
||||
public static class Line {
|
||||
private String rawText;
|
||||
private String[] tokens;
|
||||
|
||||
public Line(String rawText) {
|
||||
this.rawText = rawText;
|
||||
tokens = IniFileReader.splitTokens(rawText);
|
||||
}
|
||||
|
||||
public String[] getTokens() {
|
||||
return tokens;
|
||||
}
|
||||
|
||||
public static boolean isCommentLine(String rawText) {
|
||||
return rawText.trim().startsWith(";");
|
||||
}
|
||||
|
||||
public String getRawText() {
|
||||
return rawText;
|
||||
}
|
||||
}
|
||||
}
|
||||
package com.opensr5.io;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class RawIniFile {
|
||||
/**
|
||||
* A list of lines. Lines which are only a comment were filtered out already.
|
||||
*/
|
||||
private final List<Line> lines;
|
||||
|
||||
/**
|
||||
* Often we want to look-up line by first token.
|
||||
* Each line in this map has at least two tokens
|
||||
*/
|
||||
private final Map<String, Line> asSet = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
|
||||
|
||||
public RawIniFile(List<Line> lines) {
|
||||
this.lines = lines;
|
||||
|
||||
for (Line line : lines) {
|
||||
if (line.tokens.length > 1)
|
||||
asSet.put(line.tokens[0], line);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@NotNull
|
||||
public Line getMandatoryLine(String key) {
|
||||
Line result = getByKey(key);
|
||||
if (result == null)
|
||||
throw new IllegalStateException("Line not found: " + key);
|
||||
assert result.tokens.length > 1;
|
||||
return result;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public Line getByKey(String key) {
|
||||
return asSet.get(key);
|
||||
}
|
||||
|
||||
public List<Line> getLines() {
|
||||
return lines;
|
||||
}
|
||||
|
||||
public int getSimpleIntegerProperty(String key) {
|
||||
Line line = asSet.get(key);
|
||||
if (line == null)
|
||||
throw new IllegalStateException("Line not found: " + key);
|
||||
String value = line.getTokens()[1];
|
||||
return Integer.parseInt(value);
|
||||
}
|
||||
|
||||
public int getSimpleIntegerProperty(String key, int defaultValue) {
|
||||
if (!asSet.containsKey(key))
|
||||
return defaultValue;
|
||||
return getSimpleIntegerProperty(key);
|
||||
}
|
||||
|
||||
public List<String> getValues(String key) {
|
||||
RawIniFile.Line line = getMandatoryLine(key);
|
||||
return Arrays.asList(line.getTokens()).subList(1, line.getTokens().length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Immutable representation of since ini file line
|
||||
*/
|
||||
public static class Line {
|
||||
private String rawText;
|
||||
private String[] tokens;
|
||||
|
||||
public Line(String rawText) {
|
||||
this.rawText = rawText;
|
||||
tokens = IniFileReader.splitTokens(rawText);
|
||||
}
|
||||
|
||||
public String[] getTokens() {
|
||||
return tokens;
|
||||
}
|
||||
|
||||
public static boolean isCommentLine(String rawText) {
|
||||
return rawText.trim().startsWith(";");
|
||||
}
|
||||
|
||||
public String getRawText() {
|
||||
return rawText;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
package com.opensr5.io;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public interface WriteStream {
|
||||
/**
|
||||
* this blocking method would transmit the outgoing bytes
|
||||
*/
|
||||
void write(byte[] bytes) throws IOException;
|
||||
}
|
||||
package com.opensr5.io;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public interface WriteStream {
|
||||
/**
|
||||
* this blocking method would transmit the outgoing bytes
|
||||
*/
|
||||
void write(byte[] bytes) throws IOException;
|
||||
}
|
||||
|
|
|
@ -1,81 +1,81 @@
|
|||
package com.opensr5.io.test;
|
||||
|
||||
import com.opensr5.io.IniFileMetaInfo;
|
||||
import com.opensr5.io.IniFileReader;
|
||||
import com.opensr5.io.RawIniFile;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileReaderTest {
|
||||
@Test
|
||||
public void testSplit() {
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("1");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("1", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("hello");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("hello", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("\"hello\"");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("hello", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("\"hello\",\"w\"");
|
||||
assertEquals(s.length, 2);
|
||||
assertEquals("hello", s[0]);
|
||||
assertEquals("w", s[1]);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQuotedTokens() {
|
||||
{
|
||||
String[] result = IniFileReader.splitTokens("\"hel lo\"");
|
||||
assertEquals(result.length, 1);
|
||||
assertEquals("hel lo", result[0]);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRealLine() {
|
||||
String[] result = IniFileReader.splitTokens("\tdialog = engineChars,\t\"Base Engine Settings\"");
|
||||
assertEquals(result.length, 3);
|
||||
|
||||
assertEquals("dialog", result[0]);
|
||||
assertEquals("engineChars", result[1]);
|
||||
assertEquals("Base Engine Settings", result[2]);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTotalPagesSize() {
|
||||
String string = " nPages = 3\n" +
|
||||
" signature = \"unit test\"\n" +
|
||||
" pageReadCommand = \"X\", \"X\", \"X\"\n\n\n\n" +
|
||||
" pageSize = 288, 64, 288\n";
|
||||
|
||||
|
||||
RawIniFile content = IniFileReader.read(new ByteArrayInputStream(string.getBytes()));
|
||||
|
||||
IniFileMetaInfo meta = new IniFileMetaInfo(content);
|
||||
|
||||
assertEquals(3, meta.getnPages());
|
||||
assertEquals(IniFileMetaInfo.DEFAULT_BLOCKING_FACTOR, meta.getBlockingFactor());
|
||||
assertEquals(640, meta.getTotalSize());
|
||||
assertEquals("unit test", meta.getSignature());
|
||||
|
||||
assertEquals(64, meta.getPageSize(1));
|
||||
assertEquals("X", meta.getPageReadCommand(1));
|
||||
}
|
||||
}
|
||||
package com.opensr5.io.test;
|
||||
|
||||
import com.opensr5.io.IniFileMetaInfo;
|
||||
import com.opensr5.io.IniFileReader;
|
||||
import com.opensr5.io.RawIniFile;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.io.ByteArrayInputStream;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/1/2017
|
||||
*/
|
||||
public class IniFileReaderTest {
|
||||
@Test
|
||||
public void testSplit() {
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("1");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("1", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("hello");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("hello", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("\"hello\"");
|
||||
assertEquals(s.length, 1);
|
||||
assertEquals("hello", s[0]);
|
||||
}
|
||||
{
|
||||
String[] s = IniFileReader.splitTokens("\"hello\",\"w\"");
|
||||
assertEquals(s.length, 2);
|
||||
assertEquals("hello", s[0]);
|
||||
assertEquals("w", s[1]);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testQuotedTokens() {
|
||||
{
|
||||
String[] result = IniFileReader.splitTokens("\"hel lo\"");
|
||||
assertEquals(result.length, 1);
|
||||
assertEquals("hel lo", result[0]);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRealLine() {
|
||||
String[] result = IniFileReader.splitTokens("\tdialog = engineChars,\t\"Base Engine Settings\"");
|
||||
assertEquals(result.length, 3);
|
||||
|
||||
assertEquals("dialog", result[0]);
|
||||
assertEquals("engineChars", result[1]);
|
||||
assertEquals("Base Engine Settings", result[2]);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testTotalPagesSize() {
|
||||
String string = " nPages = 3\n" +
|
||||
" signature = \"unit test\"\n" +
|
||||
" pageReadCommand = \"X\", \"X\", \"X\"\n\n\n\n" +
|
||||
" pageSize = 288, 64, 288\n";
|
||||
|
||||
|
||||
RawIniFile content = IniFileReader.read(new ByteArrayInputStream(string.getBytes()));
|
||||
|
||||
IniFileMetaInfo meta = new IniFileMetaInfo(content);
|
||||
|
||||
assertEquals(3, meta.getnPages());
|
||||
assertEquals(IniFileMetaInfo.DEFAULT_BLOCKING_FACTOR, meta.getBlockingFactor());
|
||||
assertEquals(640, meta.getTotalSize());
|
||||
assertEquals("unit test", meta.getSignature());
|
||||
|
||||
assertEquals(64, meta.getPageSize(1));
|
||||
assertEquals("X", meta.getPageReadCommand(1));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,28 +1,28 @@
|
|||
package com.rusefi.ui.widgets.test;
|
||||
|
||||
import com.rusefi.ui.widgets.AnyCommand;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/9/2017.
|
||||
*/
|
||||
public class AnyCommandTest {
|
||||
@Test
|
||||
public void testUnquote() {
|
||||
assertEquals("1 2 3", AnyCommand.unquote(" \"1 2 3\" "));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPrepareEvalCommand() {
|
||||
assertEquals("rpn_eval \"2 3 +\"", AnyCommand.prepareCommand("eval \"2 + 3\" "));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetFSIOexpression() {
|
||||
// todo: parameter order needs to be in postfix form
|
||||
assertEquals("set_rpn_expression 1 \"rpm fsio_setting 0 >\"", AnyCommand.prepareCommand("set_fsio_expression 1 \"rpm > fsio_setting 0\""));
|
||||
}
|
||||
}
|
||||
package com.rusefi.ui.widgets.test;
|
||||
|
||||
import com.rusefi.ui.widgets.AnyCommand;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
/**
|
||||
* (c) Andrey Belomutskiy
|
||||
* 3/9/2017.
|
||||
*/
|
||||
public class AnyCommandTest {
|
||||
@Test
|
||||
public void testUnquote() {
|
||||
assertEquals("1 2 3", AnyCommand.unquote(" \"1 2 3\" "));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testPrepareEvalCommand() {
|
||||
assertEquals("rpn_eval \"2 3 +\"", AnyCommand.prepareCommand("eval \"2 + 3\" "));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSetFSIOexpression() {
|
||||
// todo: parameter order needs to be in postfix form
|
||||
assertEquals("set_rpn_expression 1 \"rpm fsio_setting 0 >\"", AnyCommand.prepareCommand("set_fsio_expression 1 \"rpm > fsio_setting 0\""));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue