Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • anders_blomdell/labcomm
  • klaren/labcomm
  • tommyo/labcomm
  • erikj/labcomm
  • sven/labcomm
5 results
Show changes
Showing
with 8 additions and 1205 deletions
/*
typedef struct {
struct {
int a;
} a;
} struct_struct_t;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommType;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommDecoder;
public class struct_struct_t implements LabCommType {
public static class struct_a {
public int a;
}
public struct_a a;
public static void encode(LabCommEncoder e, struct_struct_t value) throws IOException {
e.encodeInt(value.a.a);
}
public static struct_struct_t decode(LabCommDecoder d) throws IOException {
struct_struct_t result;
result = new struct_struct_t();
result.a = new struct_a();
result.a.a = d.decodeInt();
return result;
}
}
/*
sample struct_struct_t struct_struct_t_s;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class struct_struct_t_s implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_struct_struct_t_s(struct_struct_t value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return struct_struct_t_s.class;
}
public String getName() {
return "struct_struct_t_s";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_struct_struct_t_s(struct_struct_t_s.decode(d));
}
}
public static void encode(LabCommEncoder e, struct_struct_t value) throws IOException {
e.begin(struct_struct_t_s.class);
struct_struct_t.encode(e, value);
e.end(struct_struct_t_s.class);
}
public static struct_struct_t decode(LabCommDecoder d) throws IOException {
struct_struct_t result;
result = struct_struct_t.decode(d);
return result;
}
private static byte[] signature = new byte[] {
// struct { 1 fields
0, 0, 0, 17,
0, 0, 0, 1,
// struct 'a'
0, 0, 0, 1,
97,
// struct { 1 fields
0, 0, 0, 17,
0, 0, 0, 1,
// int 'a'
0, 0, 0, 1,
97,
0, 0, 0, 35,
// }
// }
};
}
/*
typedef struct {
int a;
} struct_t;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommType;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommDecoder;
public class struct_t implements LabCommType {
public int a;
public static void encode(LabCommEncoder e, struct_t value) throws IOException {
e.encodeInt(value.a);
}
public static struct_t decode(LabCommDecoder d) throws IOException {
struct_t result;
result = new struct_t();
result.a = d.decodeInt();
return result;
}
}
/*
sample struct_t struct_t_s;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class struct_t_s implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_struct_t_s(struct_t value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return struct_t_s.class;
}
public String getName() {
return "struct_t_s";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_struct_t_s(struct_t_s.decode(d));
}
}
public static void encode(LabCommEncoder e, struct_t value) throws IOException {
e.begin(struct_t_s.class);
struct_t.encode(e, value);
e.end(struct_t_s.class);
}
public static struct_t decode(LabCommDecoder d) throws IOException {
struct_t result;
result = struct_t.decode(d);
return result;
}
private static byte[] signature = new byte[] {
// struct { 1 fields
0, 0, 0, 17,
0, 0, 0, 1,
// int 'a'
0, 0, 0, 1,
97,
0, 0, 0, 35,
// }
};
}
/*
sample int a_fixed_int_array[2];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_fixed_int_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_fixed_int_array(int[] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_fixed_int_array.class;
}
public String getName() {
return "a_fixed_int_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_fixed_int_array(a_fixed_int_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[] value) throws IOException {
e.begin(a_fixed_int_array.class);
int i_0_max = 2;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
e.encodeInt(value[i_0]);
}
e.end(a_fixed_int_array.class);
}
public static int[] decode(LabCommDecoder d) throws IOException {
int[] result;
{
int i_0_max = 2;
result = new int[i_0_max];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
result[i_0] = d.decodeInt();
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [2]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 2,
0, 0, 0, 35,
// }
};
}
/*
sample int a_fixed_int_array_array_array[2][2][2];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_fixed_int_array_array_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_fixed_int_array_array_array(int[][][] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_fixed_int_array_array_array.class;
}
public String getName() {
return "a_fixed_int_array_array_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_fixed_int_array_array_array(a_fixed_int_array_array_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[][][] value) throws IOException {
e.begin(a_fixed_int_array_array_array.class);
int i_0_max = 2;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
int i_1_max = 2;
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
int i_2_max = 2;
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
e.encodeInt(value[i_0][i_1][i_2]);
}
}
}
e.end(a_fixed_int_array_array_array.class);
}
public static int[][][] decode(LabCommDecoder d) throws IOException {
int[][][] result;
{
int i_0_max = 2;
result = new int[i_0_max][][];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
{
int i_1_max = 2;
result[i_0] = new int[i_1_max][];
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
{
int i_2_max = 2;
result[i_0][i_1] = new int[i_2_max];
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
result[i_0][i_1][i_2] = d.decodeInt();
}
}
}
}
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [2]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 2,
// array [2]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 2,
// array [2]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 2,
0, 0, 0, 35,
// }
// }
// }
};
}
/*
sample int a_fixed_int_multi_array[2, 2, 2];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_fixed_int_multi_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_fixed_int_multi_array(int[][][] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_fixed_int_multi_array.class;
}
public String getName() {
return "a_fixed_int_multi_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_fixed_int_multi_array(a_fixed_int_multi_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[][][] value) throws IOException {
e.begin(a_fixed_int_multi_array.class);
int i_0_max = 2;
int i_1_max = 2;
int i_2_max = 2;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
e.encodeInt(value[i_0][i_1][i_2]);
}
}
}
e.end(a_fixed_int_multi_array.class);
}
public static int[][][] decode(LabCommDecoder d) throws IOException {
int[][][] result;
{
int i_0_max = 2;
int i_1_max = 2;
int i_2_max = 2;
result = new int[i_0_max][][];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
result[i_0] = new int[i_1_max][];
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
result[i_0][i_1] = new int[i_2_max];
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
result[i_0][i_1][i_2] = d.decodeInt();
}
}
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [2, 2, 2]
0, 0, 0, 16,
0, 0, 0, 3,
0, 0, 0, 2,
0, 0, 0, 2,
0, 0, 0, 2,
0, 0, 0, 35,
// }
};
}
/*
sample int a_variable_int_array[_];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_variable_int_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_variable_int_array(int[] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_variable_int_array.class;
}
public String getName() {
return "a_variable_int_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_variable_int_array(a_variable_int_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[] value) throws IOException {
e.begin(a_variable_int_array.class);
e.encodeInt(value.length);
int i_0_max = value.length;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
e.encodeInt(value[i_0]);
}
e.end(a_variable_int_array.class);
}
public static int[] decode(LabCommDecoder d) throws IOException {
int[] result;
{
int i_0_max = d.decodeInt();
result = new int[i_0_max];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
result[i_0] = d.decodeInt();
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [_]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 0,
0, 0, 0, 35,
// }
};
}
/*
sample int a_variable_int_array_array_array[_][_][_];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_variable_int_array_array_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_variable_int_array_array_array(int[][][] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_variable_int_array_array_array.class;
}
public String getName() {
return "a_variable_int_array_array_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_variable_int_array_array_array(a_variable_int_array_array_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[][][] value) throws IOException {
e.begin(a_variable_int_array_array_array.class);
e.encodeInt(value.length);
int i_0_max = value.length;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
e.encodeInt(value[i_0].length);
int i_1_max = value[i_0].length;
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
e.encodeInt(value[i_0][i_1].length);
int i_2_max = value[i_0][i_1].length;
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
e.encodeInt(value[i_0][i_1][i_2]);
}
}
}
e.end(a_variable_int_array_array_array.class);
}
public static int[][][] decode(LabCommDecoder d) throws IOException {
int[][][] result;
{
int i_0_max = d.decodeInt();
result = new int[i_0_max][][];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
{
int i_1_max = d.decodeInt();
result[i_0] = new int[i_1_max][];
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
{
int i_2_max = d.decodeInt();
result[i_0][i_1] = new int[i_2_max];
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
result[i_0][i_1][i_2] = d.decodeInt();
}
}
}
}
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [_]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 0,
// array [_]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 0,
// array [_]
0, 0, 0, 16,
0, 0, 0, 1,
0, 0, 0, 0,
0, 0, 0, 35,
// }
// }
// }
};
}
/*
sample int a_variable_int_multi_array[_, _, _];
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_variable_int_multi_array implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_variable_int_multi_array(int[][][] value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_variable_int_multi_array.class;
}
public String getName() {
return "a_variable_int_multi_array";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_a_variable_int_multi_array(a_variable_int_multi_array.decode(d));
}
}
public static void encode(LabCommEncoder e, int[][][] value) throws IOException {
e.begin(a_variable_int_multi_array.class);
e.encodeInt(value.length);
int i_0_max = value.length;
e.encodeInt(value[0].length);
int i_1_max = value[0].length;
e.encodeInt(value[0][0].length);
int i_2_max = value[0][0].length;
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
e.encodeInt(value[i_0][i_1][i_2]);
}
}
}
e.end(a_variable_int_multi_array.class);
}
public static int[][][] decode(LabCommDecoder d) throws IOException {
int[][][] result;
{
int i_0_max = d.decodeInt();
int i_1_max = d.decodeInt();
int i_2_max = d.decodeInt();
result = new int[i_0_max][][];
for (int i_0 = 0 ; i_0 < i_0_max ; i_0++) {
result[i_0] = new int[i_1_max][];
for (int i_1 = 0 ; i_1 < i_1_max ; i_1++) {
result[i_0][i_1] = new int[i_2_max];
for (int i_2 = 0 ; i_2 < i_2_max ; i_2++) {
result[i_0][i_1][i_2] = d.decodeInt();
}
}
}
}
return result;
}
private static byte[] signature = new byte[] {
// array [_, _, _]
0, 0, 0, 16,
0, 0, 0, 3,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 35,
// }
};
}
/*
sample void a_void;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class a_void implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_a_void() throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return a_void.class;
}
public String getName() {
return "a_void";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
a_void.decode(d);
((Handler)h).handle_a_void();
}
}
public static void encode(LabCommEncoder e) throws IOException {
e.begin(a_void.class);
e.end(a_void.class);
}
public static void decode(LabCommDecoder d) throws IOException {
}
private static byte[] signature = new byte[] {
// void
0, 0, 0, 17,
0, 0, 0, 0,
};
}
/*
sample int an_int;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class an_int implements LabCommSample {
public interface Handler extends LabCommHandler {
public void handle_an_int(int value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return an_int.class;
}
public String getName() {
return "an_int";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_an_int(an_int.decode(d));
}
}
public static void encode(LabCommEncoder e, int value) throws IOException {
e.begin(an_int.class);
e.encodeInt(value);
e.end(an_int.class);
}
public static int decode(LabCommDecoder d) throws IOException {
int result;
result = d.decodeInt();
return result;
}
private static byte[] signature = new byte[] {
0, 0, 0, 35,
};
}
/*
sample struct {
int a;
int b;
} an_int_struct;
*/
import java.io.IOException;
import se.lth.control.labcomm.LabCommDecoder;
import se.lth.control.labcomm.LabCommDispatcher;
import se.lth.control.labcomm.LabCommEncoder;
import se.lth.control.labcomm.LabCommHandler;
import se.lth.control.labcomm.LabCommSample;
public class an_int_struct implements LabCommSample {
public int a;
public int b;
public interface Handler extends LabCommHandler {
public void handle_an_int_struct(an_int_struct value) throws Exception;
}
public static void register(LabCommDecoder d, Handler h) throws IOException {
d.register(new Dispatcher(), h);
}
public static void register(LabCommEncoder e) throws IOException {
e.register(new Dispatcher());
}
private static class Dispatcher implements LabCommDispatcher {
public Class getSampleClass() {
return an_int_struct.class;
}
public String getName() {
return "an_int_struct";
}
public byte[] getSignature() {
return signature;
}
public void decodeAndHandle(LabCommDecoder d,
LabCommHandler h) throws Exception {
((Handler)h).handle_an_int_struct(an_int_struct.decode(d));
}
}
public static void encode(LabCommEncoder e, an_int_struct value) throws IOException {
e.begin(an_int_struct.class);
e.encodeInt(value.a);
e.encodeInt(value.b);
e.end(an_int_struct.class);
}
public static an_int_struct decode(LabCommDecoder d) throws IOException {
an_int_struct result;
result = new an_int_struct();
result.a = d.decodeInt();
result.b = d.decodeInt();
return result;
}
private static byte[] signature = new byte[] {
// struct { 2 fields
0, 0, 0, 17,
0, 0, 0, 2,
// int 'a'
0, 0, 0, 1,
97,
0, 0, 0, 35,
// int 'b'
0, 0, 0, 1,
98,
0, 0, 0, 35,
// }
};
}
C,typedef,int_array_ss,int_array_ss
C,sample,struct_array_ss,struct_array_ss
C,typedef,int_t,int_t
C,typedef,int_array_t,int_array_t
C,typedef,struct_t,struct_t
C,typedef,struct_array_t,struct_array_t
C,typedef,struct_struct_t,struct_struct_t
C,sample,int_s,int_s
C,sample,int_array_s,int_array_s
C,sample,struct_s,struct_s
C,sample,struct_array_s,struct_array_s
C,sample,struct_struct_s,struct_struct_s
C,sample,int_t_s,int_t_s
C,sample,int_array_t_s,int_array_t_s
C,sample,struct_t_s,struct_t_s
C,sample,struct_array_t_s,struct_array_t_s
C,sample,struct_struct_t_s,struct_struct_t_s
Java,typedef,int_array_ss,int[][][][][]
Java,sample,struct_array_ss,struct_array_ss[][][]
Java,typedef,int_t,int
Java,typedef,int_array_t,int[][][][]
Java,typedef,struct_t,struct_t
Java,typedef,struct_array_t,struct_array_t[]
Java,typedef,struct_struct_t,struct_struct_t
Java,sample,int_s,int
Java,sample,int_array_s,int[][][][][]
Java,sample,struct_s,struct_s
Java,sample,struct_array_s,struct_array_s[]
Java,sample,struct_struct_s,struct_struct_s
Java,sample,int_t_s,int
Java,sample,int_array_t_s,int[][][][]
Java,sample,struct_t_s,struct_t
Java,sample,struct_array_t_s,struct_array_t[]
Java,sample,struct_struct_t_s,struct_struct_t
C#,typedef,int_array_ss,int[][,,][]
C#,sample,struct_array_ss,struct_array_ss[][][]
C#,typedef,int_t,int
C#,typedef,int_array_t,int[,][][]
C#,typedef,struct_t,struct_t
C#,typedef,struct_array_t,struct_array_t[]
C#,typedef,struct_struct_t,struct_struct_t
C#,sample,int_s,int
C#,sample,int_array_s,int[][,,][]
C#,sample,struct_s,struct_s
C#,sample,struct_array_s,struct_array_s[]
C#,sample,struct_struct_s,struct_struct_s
C#,sample,int_t_s,int
C#,sample,int_array_t_s,int[,][][]
C#,sample,struct_t_s,struct_t
C#,sample,struct_array_t_s,struct_array_t[]
C#,sample,struct_struct_t_s,struct_struct_t
File deleted
#!/usr/bin/python
# Auto generated nested
import labcomm
class int_array_ss(object):
no_signature = labcomm.typedef('int_array_ss',
labcomm.array([1],
labcomm.array([0, 3, 0],
labcomm.array([5],
labcomm.INTEGER()))))
class struct_array_ss(object):
signature = labcomm.sample('struct_array_ss',
labcomm.array([1],
labcomm.array([0],
labcomm.array([0],
labcomm.struct([
('aa', labcomm.INTEGER()),
('bb', labcomm.BOOLEAN()),
('ias', labcomm.array([1],
labcomm.array([0, 3, 0],
labcomm.array([5],
labcomm.INTEGER()))))])))))
class int_t(object):
no_signature = labcomm.typedef('int_t',
labcomm.INTEGER())
class int_array_t(object):
no_signature = labcomm.typedef('int_array_t',
labcomm.array([1],
labcomm.array([2],
labcomm.array([3, 4],
labcomm.INTEGER()))))
class struct_t(object):
no_signature = labcomm.typedef('struct_t',
labcomm.struct([
('a', labcomm.INTEGER())]))
class struct_array_t(object):
no_signature = labcomm.typedef('struct_array_t',
labcomm.array([2],
labcomm.struct([
('a', labcomm.INTEGER())])))
class struct_struct_t(object):
no_signature = labcomm.typedef('struct_struct_t',
labcomm.struct([
('a', labcomm.struct([
('a', labcomm.INTEGER())]))]))
class int_s(object):
signature = labcomm.sample('int_s',
labcomm.INTEGER())
class int_array_s(object):
signature = labcomm.sample('int_array_s',
labcomm.array([1],
labcomm.array([0, 3, 0],
labcomm.array([5],
labcomm.INTEGER()))))
class struct_s(object):
signature = labcomm.sample('struct_s',
labcomm.struct([
('a', labcomm.INTEGER()),
('bcd', labcomm.DOUBLE())]))
class struct_array_s(object):
signature = labcomm.sample('struct_array_s',
labcomm.array([2],
labcomm.struct([
('a', labcomm.INTEGER())])))
class struct_struct_s(object):
signature = labcomm.sample('struct_struct_s',
labcomm.struct([
('a', labcomm.struct([
('a', labcomm.INTEGER())]))]))
class int_t_s(object):
signature = labcomm.sample('int_t_s',
labcomm.INTEGER())
class int_array_t_s(object):
signature = labcomm.sample('int_array_t_s',
labcomm.array([1],
labcomm.array([2],
labcomm.array([3, 4],
labcomm.INTEGER()))))
class struct_t_s(object):
signature = labcomm.sample('struct_t_s',
labcomm.struct([
('a', labcomm.INTEGER())]))
class struct_array_t_s(object):
signature = labcomm.sample('struct_array_t_s',
labcomm.array([2],
labcomm.struct([
('a', labcomm.INTEGER())])))
class struct_struct_t_s(object):
signature = labcomm.sample('struct_struct_t_s',
labcomm.struct([
('a', labcomm.struct([
('a', labcomm.INTEGER())]))]))
#!/usr/bin/python
# Auto generated simple
import labcomm
class an_int(object):
signature = labcomm.sample('an_int',
labcomm.INTEGER())
class a_fixed_int_array(object):
signature = labcomm.sample('a_fixed_int_array',
labcomm.array([2],
labcomm.INTEGER()))
class a_fixed_int_multi_array(object):
signature = labcomm.sample('a_fixed_int_multi_array',
labcomm.array([2, 2, 2],
labcomm.INTEGER()))
class a_fixed_int_array_array_array(object):
signature = labcomm.sample('a_fixed_int_array_array_array',
labcomm.array([2],
labcomm.array([2],
labcomm.array([2],
labcomm.INTEGER()))))
class a_variable_int_array(object):
signature = labcomm.sample('a_variable_int_array',
labcomm.array([0],
labcomm.INTEGER()))
class a_variable_int_multi_array(object):
signature = labcomm.sample('a_variable_int_multi_array',
labcomm.array([0, 0, 0],
labcomm.INTEGER()))
class a_variable_int_array_array_array(object):
signature = labcomm.sample('a_variable_int_array_array_array',
labcomm.array([0],
labcomm.array([0],
labcomm.array([0],
labcomm.INTEGER()))))
class an_int_struct(object):
signature = labcomm.sample('an_int_struct',
labcomm.struct([
('a', labcomm.INTEGER()),
('b', labcomm.INTEGER())]))
class a_void(object):
signature = labcomm.sample('a_void',
labcomm.struct([])
)
C,sample,an_int,an_int
C,sample,a_fixed_int_array,a_fixed_int_array
C,sample,a_fixed_int_multi_array,a_fixed_int_multi_array
C,sample,a_fixed_int_array_array_array,a_fixed_int_array_array_array
C,sample,a_variable_int_array,a_variable_int_array
C,sample,a_variable_int_multi_array,a_variable_int_multi_array
C,sample,a_variable_int_array_array_array,a_variable_int_array_array_array
C,sample,an_int_struct,an_int_struct
C,sample,a_void,a_void
Java,sample,an_int,int
Java,sample,a_fixed_int_array,int[]
Java,sample,a_fixed_int_multi_array,int[][][]
Java,sample,a_fixed_int_array_array_array,int[][][]
Java,sample,a_variable_int_array,int[]
Java,sample,a_variable_int_multi_array,int[][][]
Java,sample,a_variable_int_array_array_array,int[][][]
Java,sample,an_int_struct,an_int_struct
Java,sample,a_void,void
C#,sample,an_int,int
C#,sample,a_fixed_int_array,int[]
C#,sample,a_fixed_int_multi_array,int[,,]
C#,sample,a_fixed_int_array_array_array,int[][][]
C#,sample,a_variable_int_array,int[]
C#,sample,a_variable_int_multi_array,int[,,]
C#,sample,a_variable_int_array_array_array,int[][][]
C#,sample,an_int_struct,an_int_struct
C#,sample,a_void,void
File deleted
typedef int int_array_ss[1][_, 3, _][5];
sample struct { int aa; boolean bb; int_array_ss ias; } struct_array_ss[1][_][_];
sample int s_array_array_array[1][1, 1][1, 1, 1];
sample struct {
int b[1][1, 1];
int c[1][_, 1, _][_,_];
} struct_array_ss[1];
typedef int int_t;
typedef int int_array_t[1][2][3,4];
typedef struct { int a; } struct_t;
......@@ -18,3 +20,6 @@ sample int_array_t int_array_t_s;
sample struct_t struct_t_s;
sample struct_array_t struct_array_t_s;
sample struct_struct_t struct_struct_t_s;
sample string string_array[_];
sample struct { string s[_]; } string_struct_array;