<< Chapter < Page Chapter >> Page >

Thread: utilizzazione

Thread temporizzati

La classe Thread possiede un metodo sleep() che la mette in stato blocked per un certo numero di millisecondi. Ciò consente di programmare in manieracompatta e agevole flussi di eventi tra loro indipendenti. Ad esempio, il codice che segue produce ildisegno di ellissi di due colori diversi, e ogni colore corrisponde ad un diverso intervallo di tempo (i.e., 1000 e1300 millisecondi) tra due eventi successivi di disegno. class TimerThread extends Thread{ int timediff; // quanto temporalecolor col;TimerThread(color c, int td) { timediff = td;col = c; }void run() {while(true) { fill(col);try { ellipse(int(random(100)), int(random(100)),int(random(20)), int(random(20))); sleep(timediff);} catch (Exception e) {println("Exception in sleep");} }} }void setup() { TimerThread tt1 = new TimerThread(color(120,120,0),1000);TimerThread tt2 = new TimerThread(color(0,120,120),1300); tt1.start();tt2.start(); }void draw() { } Si nota che il metodo sleep() di Java esige di essere invocatoall'interno di un costrutto try catch() , cioè di una sezione di codice che consenta la cattura delle eccezioni. La gestione delle eccezioni consente di affrontare delle condizioni che alterano il normale flusso di esecuzione di unprogramma. Nell'esempio, la sleep() può fallire e sollevare ( throw ) una eccezione che, in questo caso, è gestita mediante la mera scrittura di una messaggiosulla console.

Si aggiunga al codice di [link] una classe che si occupa di ridipingere a intervalli regolarilo sfondo, in maniera da evitare la sovrapposizione delle ellissi.

I/o non bloccante basato su thread

Quando l'oggetto interattivo ha bisogno di leggere o scrivere da/su file, dispositivi, o network socket , è opportuno che essa non si blocchi completamente in attesa dei dati. Con i thread, ciò vienerisolto elegantemente attivando un thread separato che gestisce I/O asincrono, e si blocca laddove è necessario.

Lettura di comandi da tastiera

Si supponga di dover disegnare in maniera automatica e ripetuta delle ellissi nella finestra grafica, e di volercontrollare gli attributi di tali ellissi mediante parole chiave immesse da tastiera. Conviene separare il compito dilettura e interpretazione (parsing) del flusso di caratteri che viene dalla tastiera dal compito di produzione dell'outputgrafico. Ciò si può realizzare come segue, nel caso semplice in cui le parole accettate siano "rosso", "verde", e "blu"corrispondenti a diverse colorature delle ellissi prodotte. StringBuffer stdin; boolean linea;color colore; void keyReleased() {char c = key; if (c!='\n') {stdin.append(c); }else linea=true; }class ColorInput extends Thread { String results;char c;void run() { while(true) {if (linea) { println(stdin);results=stdin.toString(); stdin.setLength(0);linea = false; if (results.equals("rosso")) {colore = color(255, 0, 0); }if (results.equals("verde")) { colore = color(0, 255, 0);} if (results.equals("blu")) {colore = color(0, 0, 255); }} try {sleep(5); // to relief the cpu from active waiting } catch (Exception e) {println("Exception in sleep");}} }} class TimerThread extends Thread{int timediff; // quanto temporaleTimerThread(int td) { timediff = td;}void run() { while(true) {try { fill(colore);ellipse(int(random(100)), int(random(100)), int(random(20)), int(random(20)));sleep(timediff); } catch (Exception e) {println("Exception in sleep");}} }} void setup() {stdin = new StringBuffer(); TimerThread tt1 = new TimerThread(100);ColorInput ci = new ColorInput(); ci.start();tt1.start(); }void draw() { } Sono presenti, in questo caso, due diverse estensioni della classe Thread . La prima estensione fa una attesa attiva di linee di testo, impostando il coloreogniqualvolta viene rilevata una linea di testo contenente una delle tre parole chiave riconosciute. L'invocazione di sleep(5) rende questa attesa attiva meno onerosa per la CPU. L'altro thread, invece, si occupa didisegnare dieci ellissi al secondo. In Processing è difficile realizzare un input bloccante datastiera, in quanto non è accessibile direttamente lo stream System.in , sul quale in Java si può normalmente applicare lettura bufferizzata bloccante.

Per una introduzione all'I/O in Java si veda il Java Java IO Tutorial .
Viceversa, Processing invita ad una programmazione event-based fornendo gli event handler keyReleased() , keyPressed() , e keyTyped() . E' possibile però fare un input bloccante di una linea da file di testo con un codice deltipo try { BufferedReader stdiin = createReader("nomefile");println(stdiin.readLine()); }catch(Exception e){} dove createReader() è una funzione di Processing che crea un BufferedReader object da un file o da una URL. Essa consente una leggera semplificazione rispetto al codice Java try { FileReader is = new FileReader("nomefile");BufferedReader stdiin = new BufferedReader( is ); println(stdiin.readLine());}catch(Exception e){} Per semplificare la lettura da file di testo, locali o remoti, Processing mette a disposizione la funzione loadStrings() , che carica tutte le linee di file di testo in un array di tipo String[] . Questo metodo può essere utile se il file non è troppo grande o dinamicamente variabile.

Questions & Answers

what is microbiology
Agebe Reply
What is a cell
Odelana Reply
what is cell
Mohammed
how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Programmazione di artefatti interattivi. OpenStax CNX. Dec 09, 2010 Download for free at http://cnx.org/content/col10417/1.9
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Programmazione di artefatti interattivi' conversation and receive update notifications?

Ask