Multithreaded Programming using Java Threads 1 Agenda n

  • Slides: 46
Download presentation
Multithreaded Programming using Java Threads 1

Multithreaded Programming using Java Threads 1

Agenda n n Introduction Thread Applications Defining Threads Java Threads and States n n

Agenda n n Introduction Thread Applications Defining Threads Java Threads and States n n Accessing Shared Resources n n Synchronisation Assignment 1: n n Priorities Multi-Threaded Math Server Advanced Issues: n n Concurrency Models: master/worker, pipeline, peer processing Multithreading Vs multiprocessing 2

A single threaded program class ABC { …. public void main(. . ) {

A single threaded program class ABC { …. public void main(. . ) { …. . } begin body end } 3

A Multithreaded Program Main Thread start Thread A start Thread B Thread C Threads

A Multithreaded Program Main Thread start Thread A start Thread B Thread C Threads may switch or exchange data/results 4

Single and Multithreaded Processes threads are light-weight processes within a process Single-threaded Process Multiplethreaded

Single and Multithreaded Processes threads are light-weight processes within a process Single-threaded Process Multiplethreaded Process Threads of Execution Multiple instruction stream Single instruction stream Common Address Space 5

Multithreaded Server: For Serving Multiple Clients Concurrently Server Process Client 1 Process Server Threads

Multithreaded Server: For Serving Multiple Clients Concurrently Server Process Client 1 Process Server Threads n Internet Client 2 Process 6

Web/Internet Applications: Serving Many Users Simultaneously PC client Internet Server Local Area Network PDA

Web/Internet Applications: Serving Many Users Simultaneously PC client Internet Server Local Area Network PDA 7

Modern Applications need Threads (ex 1): Editing and Printing documents in background. Printing Thread

Modern Applications need Threads (ex 1): Editing and Printing documents in background. Printing Thread Editing Thread 8

Multithreaded/Parallel File Copy reader() { - - - - lock(buff[i]); read(src, buff[i]); unlock(buff[i]); -

Multithreaded/Parallel File Copy reader() { - - - - lock(buff[i]); read(src, buff[i]); unlock(buff[i]); - - - - } buff[0] buff[1] writer() { - - - - - lock(buff[i]); write(src, buff[i]); unlock(buff[i]); - - - - - } Cooperative Parallel Synchronized Threads 9

Levels of Parallelism Sockets/ PVM/MPI Threads Compilers CPU Task i-l func 1 ( )

Levels of Parallelism Sockets/ PVM/MPI Threads Compilers CPU Task i-l func 1 ( ) {. . . . } a ( 0 ) =. . b ( 0 ) =. . + Task i func 2 ( ) {. . . . } a ( 1 )=. . b ( 1 )=. . x Task i+1 func 3 ( ) {. . . . } a ( 2 )=. . b ( 2 )=. . Load Code-Granularity Code Item Large grain (task level) Program Medium grain (control level) Function (thread) Fine grain (data level) Loop (Compiler) Very fine grain (multiple issue) With hardware 10

What are Threads? n n A piece of code that run in concurrent with

What are Threads? n n A piece of code that run in concurrent with other threads. Each thread is a statically ordered sequence of instructions. Threads are being extensively used express concurrency on both single and multiprocessors machines. Programming a task having multiple threads of control – Multithreading or Multithreaded Programming. 11

Java Threads n n Java has built in thread support for Multithreading Synchronization Thread

Java Threads n n Java has built in thread support for Multithreading Synchronization Thread Scheduling Inter-Thread Communication: n n n current. Thread yield sleep resume start run stop set. Priority get. Priority suspend Java Garbage Collector is a low-priority thread. 12

Threading Mechanisms. . . n n Create a class that extends the Thread class

Threading Mechanisms. . . n n Create a class that extends the Thread class Create a class that implements the Runnable interface Thread My. Thread (objects are threads) [a] Runnable Thread My. Class (objects with run() body) [b] 13

1 st method: Extending Thread class n Create a class by extending Thread class

1 st method: Extending Thread class n Create a class by extending Thread class and override run() method: class My. Thread extends Thread { public void run() { // thread body of execution } } n n n Create a thread: My. Thread thr 1 = new My. Thread(); Start Execution of threads: thr 1. start(); Create and Execute: new My. Thread(). start(); 14

An example class My. Thread extends Thread { public void run() { System. out.

An example class My. Thread extends Thread { public void run() { System. out. println(" this thread is running. . . "); } } class Thread. Ex 1 { public static void main(String [] args ) { My. Thread t = new My. Thread(); t. start(); } } 15

2 nd method: Threads by implementing Runnable interface n Create a class that implements

2 nd method: Threads by implementing Runnable interface n Create a class that implements the interface Runnable and override run() method: class My. Thread implements Runnable {. . . public void run() { // thread body of execution } } n Creating Object: My. Thread my. Object = new My. Thread(); n Creating Thread Object: Thread thr 1 = new Thread( my. Object ); n Start Execution: thr 1. start(); 16

An example class My. Thread implements Runnable { public void run() { System. out.

An example class My. Thread implements Runnable { public void run() { System. out. println(" this thread is running. . . "); } } class Thread. Ex 2 { public static void main(String [] args ) { Thread t = new Thread(new My. Thread()); t. start(); } } 17

Life Cycle of Thread new start() I/O completed ready notify() waiting wait() resume() Time

Life Cycle of Thread new start() I/O completed ready notify() waiting wait() resume() Time expired/ interrupted sleeping blocked dispatch sleep() running suspend() Block on I/O completion stop() dead 18

A Program with Three Java Threads n Write a program that creates 3 threads

A Program with Three Java Threads n Write a program that creates 3 threads 19

Three threads example n n n n n n class A extends Thread {

Three threads example n n n n n n class A extends Thread { public void run() { for(int i=1; i<=5; i++) { System. out. println("t From Thread. A: i= "+i); } System. out. println("Exit from A"); } } class B extends Thread { public void run() { for(int j=1; j<=5; j++) { System. out. println("t From Thread. B: j= "+j); } System. out. println("Exit from B"); } } 20

n n n n class C extends Thread { public void run() { for(int

n n n n class C extends Thread { public void run() { for(int k=1; k<=5; k++) { System. out. println("t From Thread. C: k= "+k); } n n n } } System. out. println("Exit from C"); class Thread. Test { public static void main(String args[]) { new A(). start(); new B(). start(); new C(). start(); } } 21

Run 1 [raj@mundroo] threads [1: 76] java Thread. Test From Thread. A: i= 1

Run 1 [raj@mundroo] threads [1: 76] java Thread. Test From Thread. A: i= 1 From Thread. A: i= 2 From Thread. A: i= 3 From Thread. A: i= 4 From Thread. A: i= 5 Exit from A From Thread. C: k= 1 From Thread. C: k= 2 From Thread. C: k= 3 From Thread. C: k= 4 From Thread. C: k= 5 Exit from C From Thread. B: j= 1 From Thread. B: j= 2 From Thread. B: j= 3 From Thread. B: j= 4 From Thread. B: j= 5 Exit from B n 22

Run 2 [raj@mundroo] threads [1: 77] java Thread. Test From Thread. A: i= 1

Run 2 [raj@mundroo] threads [1: 77] java Thread. Test From Thread. A: i= 1 From Thread. A: i= 2 From Thread. A: i= 3 From Thread. A: i= 4 From Thread. A: i= 5 From Thread. C: k= 1 From Thread. C: k= 2 From Thread. C: k= 3 From Thread. C: k= 4 From Thread. C: k= 5 Exit from C From Thread. B: j= 1 From Thread. B: j= 2 From Thread. B: j= 3 From Thread. B: j= 4 From Thread. B: j= 5 Exit from B Exit from A n 23

Process Parallelism n n int add (int a, int b, int & result) //

Process Parallelism n n int add (int a, int b, int & result) // function stuff int sub(int a, int b, int & result) // function stuff Processor IS 1 pthread t 1, t 2; pthread-create(&t 1, add, a, b, & r 1); pthread-create(&t 2, sub, c, d, & r 2); pthread-par (2, t 1, t 2); add Processor IS 2 sub Data a b r 1 c d r 2 MISD and MIMD Processing 24

Data Parallelism n n n Data sort( int *array, int count) //. . .

Data Parallelism n n n Data sort( int *array, int count) //. . . pthread-t, thread 1, thread 2; “ “ pthread-create(& thread 1, sort, array, N/2); pthread-create(& thread 2, sort, array, N/2); pthread-par(2, thread 1, thread 2); Processor Sort IS Processor Sort SIMD Processing do “ “ dn/2 dn 2/+1 “ “ dn 25

Thread Priority n In Java, each thread is assigned priority, which affects the order

Thread Priority n In Java, each thread is assigned priority, which affects the order in which it is scheduled for running. The threads so far had same default priority (NORM_PRIORITY) and they are served using FCFS policy. n Java allows users to change priority: n Thread. Name. set. Priority(int. Number) n n n MIN_PRIORITY = 1 NORM_PRIORITY=5 MAX_PRIORITY=10 26

Thread Priority Example class A extends Thread { public void run() { System. out.

Thread Priority Example class A extends Thread { public void run() { System. out. println("Thread A started"); for(int i=1; i<=4; i++) { System. out. println("t From Thread. A: i= "+i); } System. out. println("Exit from A"); } } class B extends Thread { public void run() { System. out. println("Thread B started"); for(int j=1; j<=4; j++) { System. out. println("t From Thread. B: j= "+j); } System. out. println("Exit from B"); } } 27

Thread Priority Example class C extends Thread { public void run() { System. out.

Thread Priority Example class C extends Thread { public void run() { System. out. println("Thread C started"); for(int k=1; k<=4; k++) { System. out. println("t From Thread. C: k= "+k); } System. out. println("Exit from C"); } } class Thread. Priority { public static void main(String args[]) { A thread. A=new A(); B thread. B=new B(); C thread. C=new C(); thread. C. set. Priority(Thread. MAX_PRIORITY); thread. B. set. Priority(thread. A. get. Priority()+1); thread. A. set. Priority(Thread. MIN_PRIORITY); System. out. println("Started Thread A"); thread. A. start(); System. out. println("Started Thread B"); thread. B. start(); System. out. println("Started Thread C"); thread. C. start(); System. out. println("End of main thread"); } } 28

Accessing Shared Resources n Applications Access to Shared Resources need to be coordinated. n

Accessing Shared Resources n Applications Access to Shared Resources need to be coordinated. n n n Printer (two person jobs cannot be printed at the same time) Simultaneous operations on your bank account. Can the following operations be done at the same time on the same account? n n n Deposit() Withdraw() Enquire() 29

Online Bank: Serving Many Customers and Operations PC client Internet Bank Server Local Area

Online Bank: Serving Many Customers and Operations PC client Internet Bank Server Local Area Network Bank Database PDA 30

Shared Resources n n n If one thread tries to read the data and

Shared Resources n n n If one thread tries to read the data and other thread tries to update the same data, it leads to inconsistent state. This can be prevented by synchronising access to the data. Use “Synchronized” method: n n public synchronized void update() { n n … } 31

the driver: 3 rd Threads sharing the same object class Internet. Banking. System {

the driver: 3 rd Threads sharing the same object class Internet. Banking. System { public static void main(String [] args ) { Account account. Object = new Account (); Thread t 1 = new Thread(new My. Thread(account. Object)); Thread t 2 = new Thread(new Your. Thread(account. Object)); Thread t 3 = new Thread(new Her. Thread(account. Object)); t 1. start(); t 2. start(); t 3. start(); // DO some other operation } // end main() } 32

Shared account object between 3 threads class My. Thread implements Runnable { Account account;

Shared account object between 3 threads class My. Thread implements Runnable { Account account; public My. Thread (Account s) { account = s; } public void run() { account. deposit(); } } // end class My. Thread class Your. Thread implements Runnable { Account account; public Your. Thread (Account s) { account = s; } public void run() { account. withdraw(); } } // end class Your. Thread class Her. Thread implements Runnable { Account account; public Her. Thread (Account s) { account = s; } public void run() {account. enquire(); } } // end class Her. Thread account (shared object) 33

Monitor (shared object access): serializes operation on shared object class Account { // the

Monitor (shared object access): serializes operation on shared object class Account { // the 'monitor' int balance; // if 'synchronized' is removed, the outcome is unpredictable public synchronized void deposit( ) { // METHOD BODY : balance += deposit_amount; } } public synchronized void withdraw( ) { // METHOD BODY: balance -= deposit_amount; } public synchronized void enquire( ) { // METHOD BODY: display balance. } 34

Multithreaded Server Client Process Server Threads Client Process User Mode Kernel Mode Message Passing

Multithreaded Server Client Process Server Threads Client Process User Mode Kernel Mode Message Passing Facility 35

Assignment 1: Multithreaded Math. Server – Demonstrates the use of Sockets and Threads A

Assignment 1: Multithreaded Math. Server – Demonstrates the use of Sockets and Threads A Client Program What is sqrt(10)? “sqrt 4. 0” “ 2. 0” Multithreaded Math. Server (sin, cos, sqrt, etc. ) A Client Program What is sin(10)? A Client Program in “C” What is sin(10)? A Client Program in “C++” What is sin(10)? 36

A Multithreaded Program Math. Threads start Math. Sin start Math. Cos join Math. Tan

A Multithreaded Program Math. Threads start Math. Sin start Math. Cos join Math. Tan join Math. Threads 37

Thread Programming models Thread concurrency/operation n The master/worker model The peer model A thread

Thread Programming models Thread concurrency/operation n The master/worker model The peer model A thread pipeline 38

The master/worker model Program Resources Workers task. X Files Databases Master task. Y Input

The master/worker model Program Resources Workers task. X Files Databases Master task. Y Input (Stream) main ( ) Disks task. Z Special Devices 39

The peer model Program Input Resources Workers task. X Files Databases task. Y Disks

The peer model Program Input Resources Workers task. X Files Databases task. Y Disks task. Z Special Devices 40

A thread pipeline Program Filter Threads Stage 1 Stage 2 Stage 3 Input (Stream)

A thread pipeline Program Filter Threads Stage 1 Stage 2 Stage 3 Input (Stream) Resources Files Databases Disks Special Devices 41

Multithreading and Multiprocessing Deployment issues On Shared and distributed memory systems 42

Multithreading and Multiprocessing Deployment issues On Shared and distributed memory systems 42

Multithreading - Multiprocessors Process Parallelism CPU P 1 P 2 CPU P 3 CPU

Multithreading - Multiprocessors Process Parallelism CPU P 1 P 2 CPU P 3 CPU time No of execution processes <= the number of CPUs 43

Multithreading on Uni-processor n Concurrency Vs Parallelism K Process Concurrency P 1 P 2

Multithreading on Uni-processor n Concurrency Vs Parallelism K Process Concurrency P 1 P 2 CPU P 3 time Number of Simultaneous execution units > number of CPUs 44

Multi-Processing (clusters & grids) and Multi-Threaded Computing Threaded Libraries, Multi-threaded I/O Application CPU CPU

Multi-Processing (clusters & grids) and Multi-Threaded Computing Threaded Libraries, Multi-threaded I/O Application CPU CPU Better Response Times in Multiple Application Environments CPU CPU Higher Throughput for Parallelizeable Applications 45

References n n Rajkumar Buyya, Thamarai Selvi, Xingchen Chu, Mastering OOP with Java, Mc.

References n n Rajkumar Buyya, Thamarai Selvi, Xingchen Chu, Mastering OOP with Java, Mc. Graw Hill (I) Press, New Delhi, India, 2009. Sun Java Tutorial – Concurrency: n http: //java. sun. com/docs/books/tutorial/esse ntial/concurrency/ 46