[Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/FlashBridge/apps/FlashBridgeViewer/messages
ViewerMsg.java, NONE, 1.1
dmm
rincon at users.sourceforge.net
Tue Jul 18 09:25:27 PDT 2006
- Previous message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/FlashBridge/media/AT45DB
FlashBridgeC.nc, NONE, 1.1 FlashSettings.h, NONE,
1.1 FlashBridgeM.nc, NONE, 1.1 readme.txt, NONE, 1.1 Makefile,
NONE, 1.1
- Next message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/FlashBridge/interfaces
FlashBridge.nc, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-1.x/contrib/rincon/apps/FlashBridge/apps/FlashBridgeViewer/messages
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv13205/contrib/rincon/apps/FlashBridge/apps/FlashBridgeViewer/messages
Added Files:
ViewerMsg.java
Log Message:
Extracted the FlashBridge component and test app from Blackbook5
--- NEW FILE: ViewerMsg.java ---
/**
* This class is automatically generated by mig. DO NOT EDIT THIS FILE.
* This class implements a Java interface to the 'ViewerMsg'
* message type.
*/
package com.rincon.flashbridgeviewer.messages;
public class ViewerMsg extends net.tinyos.message.Message {
/** The default size of this message type in bytes. */
public static final int DEFAULT_MESSAGE_SIZE = 28;
/** The Active Message type associated with this message. */
public static final int AM_TYPE = 161;
/** Create a new ViewerMsg of size 28. */
public ViewerMsg() {
super(DEFAULT_MESSAGE_SIZE);
amTypeSet(AM_TYPE);
}
/** Create a new ViewerMsg of the given data_length. */
public ViewerMsg(int data_length) {
super(data_length);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg with the given data_length
* and base offset.
*/
public ViewerMsg(int data_length, int base_offset) {
super(data_length, base_offset);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg using the given byte array
* as backing store.
*/
public ViewerMsg(byte[] data) {
super(data);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg using the given byte array
* as backing store, with the given base offset.
*/
public ViewerMsg(byte[] data, int base_offset) {
super(data, base_offset);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg using the given byte array
* as backing store, with the given base offset and data length.
*/
public ViewerMsg(byte[] data, int base_offset, int data_length) {
super(data, base_offset, data_length);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg embedded in the given message
* at the given base offset.
*/
public ViewerMsg(net.tinyos.message.Message msg, int base_offset) {
super(msg, base_offset, DEFAULT_MESSAGE_SIZE);
amTypeSet(AM_TYPE);
}
/**
* Create a new ViewerMsg embedded in the given message
* at the given base offset and length.
*/
public ViewerMsg(net.tinyos.message.Message msg, int base_offset, int data_length) {
super(msg, base_offset, data_length);
amTypeSet(AM_TYPE);
}
/**
/* Return a String representation of this message. Includes the
* message type name and the non-indexed field values.
*/
public String toString() {
String s = "Message <ViewerMsg> \n";
try {
s += " [addr=0x"+Long.toHexString(get_addr())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
try {
s += " [len=0x"+Long.toHexString(get_len())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
try {
s += " [cmd=0x"+Long.toHexString(get_cmd())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
try {
s += " [id=0x"+Long.toHexString(get_id())+"]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
try {
s += " [data=";
for (int i = 0; i < 20; i++) {
s += "0x"+Long.toHexString(getElement_data(i) & 0xff)+" ";
}
s += "]\n";
} catch (ArrayIndexOutOfBoundsException aioobe) { /* Skip field */ }
return s;
}
// Message-type-specific access methods appear below.
/////////////////////////////////////////////////////////
// Accessor methods for field: addr
// Field type: long, unsigned
// Offset (bits): 0
// Size (bits): 32
/////////////////////////////////////////////////////////
/**
* Return whether the field 'addr' is signed (false).
*/
public static boolean isSigned_addr() {
return false;
}
/**
* Return whether the field 'addr' is an array (false).
*/
public static boolean isArray_addr() {
return false;
}
/**
* Return the offset (in bytes) of the field 'addr'
*/
public static int offset_addr() {
return (0 / 8);
}
/**
* Return the offset (in bits) of the field 'addr'
*/
public static int offsetBits_addr() {
return 0;
}
/**
* Return the value (as a long) of the field 'addr'
*/
public long get_addr() {
return (long)getUIntElement(offsetBits_addr(), 32);
}
/**
* Set the value of the field 'addr'
*/
public void set_addr(long value) {
setUIntElement(offsetBits_addr(), 32, value);
}
/**
* Return the size, in bytes, of the field 'addr'
*/
public static int size_addr() {
return (32 / 8);
}
/**
* Return the size, in bits, of the field 'addr'
*/
public static int sizeBits_addr() {
return 32;
}
/////////////////////////////////////////////////////////
// Accessor methods for field: len
// Field type: int, unsigned
// Offset (bits): 32
// Size (bits): 16
/////////////////////////////////////////////////////////
/**
* Return whether the field 'len' is signed (false).
*/
public static boolean isSigned_len() {
return false;
}
/**
* Return whether the field 'len' is an array (false).
*/
public static boolean isArray_len() {
return false;
}
/**
* Return the offset (in bytes) of the field 'len'
*/
public static int offset_len() {
return (32 / 8);
}
/**
* Return the offset (in bits) of the field 'len'
*/
public static int offsetBits_len() {
return 32;
}
/**
* Return the value (as a int) of the field 'len'
*/
public int get_len() {
return (int)getUIntElement(offsetBits_len(), 16);
}
/**
* Set the value of the field 'len'
*/
public void set_len(int value) {
setUIntElement(offsetBits_len(), 16, value);
}
/**
* Return the size, in bytes, of the field 'len'
*/
public static int size_len() {
return (16 / 8);
}
/**
* Return the size, in bits, of the field 'len'
*/
public static int sizeBits_len() {
return 16;
}
/////////////////////////////////////////////////////////
// Accessor methods for field: cmd
// Field type: short, unsigned
// Offset (bits): 48
// Size (bits): 8
/////////////////////////////////////////////////////////
/**
* Return whether the field 'cmd' is signed (false).
*/
public static boolean isSigned_cmd() {
return false;
}
/**
* Return whether the field 'cmd' is an array (false).
*/
public static boolean isArray_cmd() {
return false;
}
/**
* Return the offset (in bytes) of the field 'cmd'
*/
public static int offset_cmd() {
return (48 / 8);
}
/**
* Return the offset (in bits) of the field 'cmd'
*/
public static int offsetBits_cmd() {
return 48;
}
/**
* Return the value (as a short) of the field 'cmd'
*/
public short get_cmd() {
return (short)getUIntElement(offsetBits_cmd(), 8);
}
/**
* Set the value of the field 'cmd'
*/
public void set_cmd(short value) {
setUIntElement(offsetBits_cmd(), 8, value);
}
/**
* Return the size, in bytes, of the field 'cmd'
*/
public static int size_cmd() {
return (8 / 8);
}
/**
* Return the size, in bits, of the field 'cmd'
*/
public static int sizeBits_cmd() {
return 8;
}
/////////////////////////////////////////////////////////
// Accessor methods for field: id
// Field type: short, unsigned
// Offset (bits): 56
// Size (bits): 8
/////////////////////////////////////////////////////////
/**
* Return whether the field 'id' is signed (false).
*/
public static boolean isSigned_id() {
return false;
}
/**
* Return whether the field 'id' is an array (false).
*/
public static boolean isArray_id() {
return false;
}
/**
* Return the offset (in bytes) of the field 'id'
*/
public static int offset_id() {
return (56 / 8);
}
/**
* Return the offset (in bits) of the field 'id'
*/
public static int offsetBits_id() {
return 56;
}
/**
* Return the value (as a short) of the field 'id'
*/
public short get_id() {
return (short)getUIntElement(offsetBits_id(), 8);
}
/**
* Set the value of the field 'id'
*/
public void set_id(short value) {
setUIntElement(offsetBits_id(), 8, value);
}
/**
* Return the size, in bytes, of the field 'id'
*/
public static int size_id() {
return (8 / 8);
}
/**
* Return the size, in bits, of the field 'id'
*/
public static int sizeBits_id() {
return 8;
}
/////////////////////////////////////////////////////////
// Accessor methods for field: data
// Field type: short[], unsigned
// Offset (bits): 64
// Size of each element (bits): 8
/////////////////////////////////////////////////////////
/**
* Return whether the field 'data' is signed (false).
*/
public static boolean isSigned_data() {
return false;
}
/**
* Return whether the field 'data' is an array (true).
*/
public static boolean isArray_data() {
return true;
}
/**
* Return the offset (in bytes) of the field 'data'
*/
public static int offset_data(int index1) {
int offset = 64;
if (index1 < 0 || index1 >= 20) throw new ArrayIndexOutOfBoundsException();
offset += 0 + index1 * 8;
return (offset / 8);
}
/**
* Return the offset (in bits) of the field 'data'
*/
public static int offsetBits_data(int index1) {
int offset = 64;
if (index1 < 0 || index1 >= 20) throw new ArrayIndexOutOfBoundsException();
offset += 0 + index1 * 8;
return offset;
}
/**
* Return the entire array 'data' as a short[]
*/
public short[] get_data() {
short[] tmp = new short[20];
for (int index0 = 0; index0 < numElements_data(0); index0++) {
tmp[index0] = getElement_data(index0);
}
return tmp;
}
/**
* Set the contents of the array 'data' from the given short[]
*/
public void set_data(short[] value) {
for (int index0 = 0; index0 < value.length; index0++) {
setElement_data(index0, value[index0]);
}
}
/**
* Return an element (as a short) of the array 'data'
*/
public short getElement_data(int index1) {
return (short)getUIntElement(offsetBits_data(index1), 8);
}
/**
* Set an element of the array 'data'
*/
public void setElement_data(int index1, short value) {
setUIntElement(offsetBits_data(index1), 8, value);
}
/**
* Return the total size, in bytes, of the array 'data'
*/
public static int totalSize_data() {
return (160 / 8);
}
/**
* Return the total size, in bits, of the array 'data'
*/
public static int totalSizeBits_data() {
return 160;
}
/**
* Return the size, in bytes, of each element of the array 'data'
*/
public static int elementSize_data() {
return (8 / 8);
}
/**
* Return the size, in bits, of each element of the array 'data'
*/
public static int elementSizeBits_data() {
return 8;
}
/**
* Return the number of dimensions in the array 'data'
*/
public static int numDimensions_data() {
return 1;
}
/**
* Return the number of elements in the array 'data'
*/
public static int numElements_data() {
return 20;
}
/**
* Return the number of elements in the array 'data'
* for the given dimension.
*/
public static int numElements_data(int dimension) {
int array_dims[] = { 20, };
if (dimension < 0 || dimension >= 1) throw new ArrayIndexOutOfBoundsException();
if (array_dims[dimension] == 0) throw new IllegalArgumentException("Array dimension "+dimension+" has unknown size");
return array_dims[dimension];
}
/**
* Fill in the array 'data' with a String
*/
public void setString_data(String s) {
int len = s.length();
int i;
for (i = 0; i < len; i++) {
setElement_data(i, (short)s.charAt(i));
}
setElement_data(i, (short)0); //null terminate
}
/**
* Read the array 'data' as a String
*/
public String getString_data() {
char carr[] = new char[Math.min(net.tinyos.message.Message.MAX_CONVERTED_STRING_LENGTH,20)];
int i;
for (i = 0; i < carr.length; i++) {
if ((char)getElement_data(i) == (char)0) break;
carr[i] = (char)getElement_data(i);
}
return new String(carr,0,i);
}
}
- Previous message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/FlashBridge/media/AT45DB
FlashBridgeC.nc, NONE, 1.1 FlashSettings.h, NONE,
1.1 FlashBridgeM.nc, NONE, 1.1 readme.txt, NONE, 1.1 Makefile,
NONE, 1.1
- Next message: [Tinyos-contrib-commits]
CVS: tinyos-1.x/contrib/rincon/apps/FlashBridge/interfaces
FlashBridge.nc, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-contrib-commits
mailing list