research:rfid
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
research:rfid [2010/07/27 17:15] – kpinte | research:rfid [2011/09/12 18:50] (current) – kpinte | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
// | // | ||
+ | |||
+ | [[http:// | ||
+ | |||
+ | < | ||
+ | This page is under construction, | ||
+ | </ | ||
==== RFID-enabled Library ==== | ==== RFID-enabled Library ==== | ||
- | The RFID-enabled library is a //mobile RFID-enabled application// | + | The RFID-enabled library is a //mobile RFID-enabled application |
== Towards naturally expressing RFID applications == | == Towards naturally expressing RFID applications == | ||
Line 28: | Line 34: | ||
==== Requirements ==== | ==== Requirements ==== | ||
- | To align physical objects tagged with writable RFID tags as true mutable software objects we model these objects as proxy objects acting as stand-ins for physical objects. For this model to be applicable to mobile RFID- enabled applications, | + | To align physical objects tagged with writable RFID tags as true mutable software objects we model these objects as proxy objects acting as stand-ins for physical objects. For this model to be applicable to mobile RFID-enabled applications, |
- | - **Addressing physical objects** RFID communication is based on broad- casting | + | - **Addressing physical objects** RFID communication is based on broadcasting |
- **Storing application-specific data on RFID tags** Since mobile RFID- enabled applications do not rely on a backend database, the data on the RFID tags should be self-contained and stored on the writable memory of the tags. | - **Storing application-specific data on RFID tags** Since mobile RFID- enabled applications do not rely on a backend database, the data on the RFID tags should be self-contained and stored on the writable memory of the tags. | ||
- | - **Reactivity to appearing and disappearing objects** It is necessary to observe the connection, reconnection and disconnection of RFID tags to keep the proxy objects synchronized with their physical counterparts. | + | - **Reactivity to appearing and disappearing objects** It is necessary to observe the connection, reconnection and disconnection of RFID tags to keep the proxy objects synchronized with their physical counterparts. |
- | - **Asynchronous communication** To hide latency and keep applications responsive, communication with proxy objects representing physical objects should happen asynchronously. Blocking communication will freeze the ap- plication | + | - **Asynchronous communication** To hide latency and keep applications responsive, communication with proxy objects representing physical objects should happen asynchronously. Blocking communication will freeze the application |
- **Fault-tolerant communication** Treating communication failures as the rule instead of the exception allows applications to deal with temporary unavailability of the physical objects and makes them resilient to failures. For example, read/write operations frequently fail due hardware phenomena. | - **Fault-tolerant communication** Treating communication failures as the rule instead of the exception allows applications to deal with temporary unavailability of the physical objects and makes them resilient to failures. For example, read/write operations frequently fail due hardware phenomena. | ||
==== Software Abstractions ==== | ==== Software Abstractions ==== | ||
- | Here we will illustrate our model by presenting small code snippets that, in the end, will bring us to the RFID-enabled library application | + | Here we will illustrate our model by presenting small code snippets that, in the end, will bring us to the RFID-enabled library application |
== RFID tags as mutable proxy objects == | == RFID tags as mutable proxy objects == | ||
- | Physical objects are represented using a digital counterpart. This is done by simply defining an object with appropriate methods and slots. | + | Physical objects are represented using a digital counterpart. This is done by simply defining an object with appropriate methods and slots. The code example shows the definition of a book object in AmbientTalk. |
< | < | ||
Line 61: | Line 67: | ||
} taggedAs: Book; | } taggedAs: Book; | ||
</ | </ | ||
+ | |||
+ | In this example a book contains an ISBN, a title and a set of review messages. There are two methods that allow to change the title and to add a review. By annotating the message with //Mutator// the programmer specifies when the software object is to be synchronized with the RFID tag. | ||
+ | |||
+ | Discovering books that are tagged with such an object happens by installing a discovery handler. To react upon disconnection or reconnection of a book, similar handlers are used: | ||
< | < | ||
Line 69: | Line 79: | ||
</ | </ | ||
+ | The example above uses // | ||
+ | |||
+ | The [[at: | ||
< | < | ||
when: book< | when: book< | ||
Line 75: | Line 88: | ||
system.println(" | system.println(" | ||
</ | </ | ||
+ | This method invocation is [[at: | ||
+ | In case the book is not available at the time of the message send, no exception is raised but the message is simply buffered. When the book reappears in range the message is delivered and will be processed. The programmer can control the amount of time a message is buffered. For example, if the book does not respond within 10 seconds, the programmer might no longer be interested in the result. The code below exemplifies how this can be achieved by annotating the message send with a //Due// annotation. | ||
< | < | ||
Line 85: | Line 100: | ||
}; | }; | ||
</ | </ | ||
+ | |||
+ | If the message send does not yield a result within 10 seconds, the catch block will be executed. | ||
== Ambient References == | == Ambient References == | ||
+ | |||
+ | RFID tags very frequently appear in groups of the same kind of item. For example, the set of books, or in a supermarket a set of jars of jam, etc. Thanks to [[: | ||
< | < | ||
Line 94: | Line 113: | ||
}; | }; | ||
</ | </ | ||
+ | |||
+ | On the first line, we have an ambient reference //books// that designates the set of all books that are detected. Note that this set changes dynamically when the user moves about and books become available or unavailable. | ||
+ | |||
+ | The last three lines define // | ||
< | < | ||
Line 105: | Line 128: | ||
== Multiway References == | == Multiway References == | ||
+ | |||
+ | {{: | ||
Line 130: | Line 155: | ||
==== Conclusions ==== | ==== Conclusions ==== | ||
- | By implementing an example mobile RFID-enabled application, we have ob- served | + | By implementing an example mobile RFID-enabled application |
- **Addressing physical objects** The implementation of the application shows that mobile RFID-enabled applications can be written in an object-oriented fashion, where application-level proxy objects uniquely represent physical objects in one’s physical environment. | - **Addressing physical objects** The implementation of the application shows that mobile RFID-enabled applications can be written in an object-oriented fashion, where application-level proxy objects uniquely represent physical objects in one’s physical environment. | ||
- **Storing application-specific data on RFID tags** The data needed to con- struct these proxy objects is stored on the RFID tags themselves. | - **Storing application-specific data on RFID tags** The data needed to con- struct these proxy objects is stored on the RFID tags themselves. | ||
Line 136: | Line 161: | ||
- **Asynchronous communication** Interacting with physical objects is achieved by using the message passing metaphor on the proxy objects, by means of asynchronous message passing and asynchronous signaling of return values. | - **Asynchronous communication** Interacting with physical objects is achieved by using the message passing metaphor on the proxy objects, by means of asynchronous message passing and asynchronous signaling of return values. | ||
- **Fault-tolerant communication** Communication failures are considered the rule rather than the exception. Failures that must be considered permanent are detected and raise the appropriate exceptions. | - **Fault-tolerant communication** Communication failures are considered the rule rather than the exception. Failures that must be considered permanent are detected and raise the appropriate exceptions. | ||
+ | |||
==== Further Reading ==== | ==== Further Reading ==== | ||
- | * Distributed Object-Oriented Programming with RFID Technology. Andoni Lombide Carreton, Kevin Pinte, Wolfgang De Meuter. In Lecture Notes in Computer Science, vol. 6115, Eliassen F, Kapitza R (eds.), 2010; 56–69. [{{: | + | * Distributed Object-Oriented Programming with RFID Technology. Andoni Lombide Carreton, Kevin Pinte, Wolfgang De Meuter. In Lecture Notes in Computer Science, vol. 6115, Eliassen F, Kapitza R (eds.), 2010; 56–69. [{{: |
| |
research/rfid.1280243717.txt.gz · Last modified: 2010/07/27 17:16 (external edit)