Multithread Computing

Similar documents
Chapter 19 Multithreading

Threads in Java (Deitel & Deitel)

7. MULTITHREDED PROGRAMMING

Threads & Timers. CSE260, Computer Science B: Honors Stony Brook University

Unit - IV Multi-Threading

Software Practice 1 - Multithreading

Chapter 32 Multithreading and Parallel Programming

Object Oriented Programming (II-Year CSE II-Sem-R09)

Introduction to Java Threads

Object Oriented Programming. Week 10 Part 1 Threads

Concurrent Programming using Threads

CS 556 Distributed Systems

JAVA and J2EE UNIT - 4 Multithreaded Programming And Event Handling

Computation Abstractions. Processes vs. Threads. So, What Is a Thread? CMSC 433 Programming Language Technologies and Paradigms Spring 2007

Module - 4 Multi-Threaded Programming

Contents. G53SRP: Java Threads. Definition. Why we need it. A Simple Embedded System. Why we need it. Java Threads 24/09/2009 G53SRP 1 ADC

Threads Chate Patanothai

Unit 4. Thread class & Runnable Interface. Inter Thread Communication

Overview. Processes vs. Threads. Computation Abstractions. CMSC 433, Fall Michael Hicks 1

Multithreaded Programming

Unit III Rupali Sherekar 2017

Lecture 10 Multithreading

Multitasking Multitasking allows several activities to occur concurrently on the computer. A distinction is usually made between: Process-based multit

CMSC 132: Object-Oriented Programming II. Threads in Java

Java Threads. Written by John Bell for CS 342, Spring 2018

Multi-threading in Java. Jeff HUANG

CS360 Lecture 12 Multithreading

Quiz on Tuesday April 13. CS 361 Concurrent programming Drexel University Fall 2004 Lecture 4. Java facts and questions. Things to try in Java

Threads. Definitions. Process Creation. Process. Thread Example. Thread. From Volume II

CIS233J Java Programming II. Threads

Animation Part 2: MoveableShape interface & Multithreading

Note: Each loop has 5 iterations in the ThreeLoopTest program.

Advanced Programming Methods. Lecture 6 - Concurrency in Java (1)

Chapter 8 Threads Zindell Technologies, Ltd. Question 1: Which one statement below is true concerning the following code?

Java Threads. COMP 585 Noteset #2 1

Multithreaded Programming

Amity School of Engineering

Tommy Färnqvist, IDA, Linköping University

Java s Implementation of Concurrency, and how to use it in our applications.

MultiThreading 07/01/2013. Session objectives. Introduction. Introduction. Advanced Java Programming Course

Advanced Java Programming Course. MultiThreading. By Võ Văn Hải Faculty of Information Technologies Industrial University of Ho Chi Minh City

COE518 Lecture Notes Week 7 (Oct 17, 2011)

Multithreading Pearson Education, Inc. All rights reserved.

Performance Throughput Utilization of system resources

Basics of. Multithreading in Java

CS 351 Design of Large Programs Threads and Concurrency

27/04/2012. We re going to build Multithreading Application. Objectives. MultiThreading. Multithreading Applications. What are Threads?

Techniques of Java Programming: Concurrent Programming in Java

CMSC 433 Programming Language Technologies and Paradigms. Concurrency

Advanced Concepts of Programming

Programmazione Avanzata e Paradigmi Ingegneria e Scienze Informatiche - UNIBO a.a 2013/2014 Lecturer: Alessandro Ricci

JAVA - MULTITHREADING

Le L c e t c ur u e e 7 To T p o i p c i s c t o o b e b e co c v o e v r e ed e Multithreading

Concurrent Programming

Concurrent Computing CSCI 201 Principles of Software Development

JAVA. Lab 12 & 13: Multithreading

Threads Questions Important Questions

Programming Language Concepts: Lecture 11

Overview. CMSC 330: Organization of Programming Languages. Concurrency. Multiprocessors. Processes vs. Threads. Computation Abstractions

Synchronized Methods of Old Versions of Java

04-Java Multithreading

COMPSCI 230 Threading Week8. Figure 1 Thread status diagram [

Unit 5 - Exception Handling & Multithreaded

By: Abhishek Khare (SVIM - INDORE M.P)

CS 455: INTRODUCTION TO DISTRIBUTED SYSTEMS [THREADS] Frequently asked questions from the previous class survey

What is a thread anyway?

UNIT V CONCURRENT PROGRAMMING

Contents. 6-1 Copyright (c) N. Afshartous

COURSE 11 PROGRAMMING III OOP. JAVA LANGUAGE

Definition: A thread is a single sequential flow of control within a program.

Synchronization synchronization.

Java Threads. Introduction to Java Threads

Programming Java. Multithreaded Programming

G51PGP Programming Paradigms. Lecture 009 Concurrency, exceptions

Advanced Programming Concurrency

User Space Multithreading. Computer Science, University of Warwick

public class Shared0 { private static int x = 0, y = 0;

CS455: Introduction to Distributed Systems [Spring 2019] Dept. Of Computer Science, Colorado State University

Multithreading using Java. Dr. Ferdin Joe John Joseph

UNIT-3 : MULTI THREADED PROGRAMMING, EVENT HANDLING. A Multithreaded program contains two or more parts that can run concurrently.

UNIT IV MULTITHREADING AND GENERIC PROGRAMMING

MultiThreading. Object Orientated Programming in Java. Benjamin Kenwright

Thread Programming. Comp-303 : Programming Techniques Lecture 11. Alexandre Denault Computer Science McGill University Winter 2004

Week 7. Concurrent Programming: Thread Synchronization. CS 180 Sunil Prabhakar Department of Computer Science Purdue University

MULTI-THREADING

CS 159: Parallel Processing

SUMMARY INTRODUCTION CONCURRENT PROGRAMMING THREAD S BASICS. Introduction Thread basics. Thread states. Sequence diagrams

The Java Programming Language Basics. Identifiers, Keywords, and Types. Object-Oriented Programming. Objects and Classes. Exception Handling

15CS45 : OBJECT ORIENTED CONCEPTS

CISC 4700 L01 Network & Client-Server Programming Spring Cowell Chapter 15: Writing Threaded Applications

CS180 Review. Recitation Week 15

Synchronization

Concurrency in Java Prof. Stephen A. Edwards

Need for synchronization: If threads comprise parts of our software systems, then they must communicate.

Threads. What Is a Thread? Customizing a Thread's run Method. Understanding Threads. Subclassing Thread and Overriding run. Thread Objects.

Multithreaded OO. Questions:

Model Requirements and JAVA Programs MVP 2 1

Single processor CPU. Memory I/O

Java Threads. Thread. Rui Moreira. control within a program. threads. performed concurrently

Java FX. Threads, Workers and Tasks

Transcription:

Multithread Computing About This Lecture Purpose To learn multithread programming in Java What You Will Learn ¾ Benefits of multithreading ¾ Class Thread and interface Runnable ¾ Thread methods and thread state diagram ¾ Synchronization problem and its solution ¾ Thread groups Java for C++ Programmers 08-1 Java for C++ Programmers 08-2 Thread vs. Process A thread is a function or method in execution. It is represented by code, program counter value, register values, and its own method activation stack A process is allocated system resources like disk/memory space to perform a task. It generates threads to execute code Threads in a process can share data. Synchronization and data protection are programmers' responsibility. The benefit is better performance due to finer user control. Benefits of Multithreading (1/2) Multithreading on multiprocessor system leads to parallel computing task 1 task 2 task 3 Multithreading on a single processor may also benefit from overlapping of running time on different function units task 1 task 2 task 3 Java for C++ Programmers 08-3 Java for C++ Programmers 08-4 Benefits of Multithreading (2/2) On a single processor, multithreading supports the illusion that several threads are executing in parallel. The programmer can thus focus on the subtask of each thread, and let OS take care of detail how the threads share the CPU For interactive systems, multithreading is almost the only way to make a system remain responsive when heavy computing is going on Threads are System-Dependent (1/2) The scheduling of threads is system dependent On any system, a thread of higher priority can preempt the CPU from a running thread of lower priority On Windows, round-robin time-sharing is used. Each thread of the highest priority is allocated a small time slice to run. When its time slice is up, it gives up the CPU to another thread of the same priority, and waits for its next turn. Java for C++ Programmers 08-5 Java for C++ Programmers 08-6 1

Threads are System-Dependent (2/2) On Sun Solaris, the running thread will not give up CPU to threads of the same priority. As a result, programmers have to use yield() to let some thread voluntarily give up CPU from time to time to share CPU Java code should try to accommodate both thread models Our discussion will be based on round-robin time-sharing, which represents the future Class java.lang.thread For a simple thread that doesn't need to inherit from an existing class, extend the thread class from java.lang.thread, and implement thread computation in Thread method "void run()" //Client class //User Defined Thread Class public class Client { class UserThread extends Thread { main() { public UserThread() { UserThread ut = new UserThread(); ut.start(); Java for C++ Programmers 08-7 Java for C++ Programmers 08-8 Interface java.lang.runnable To make a derived class a thread, implement interface Runnable //Client class //User Defined Thread Class public class Client { class UserThread extends X implements Runnable { main() { Thread ut = public UserThread() { new Thread(new UserThread()); ut.start(); TestThreads.java (1/3) public class TestThreads { public static void main(string[] args) { // Create threads PrintChar printa = new PrintChar('a', 100); PrintChar printb = new PrintChar('b', 100); PrintNum print100 = new PrintNum(100); // Start threads print100.start(); printa.start(); printb.start(); Java for C++ Programmers 08-9 Java for C++ Programmers 08-10 TestThreads.java (2/3) class PrintChar extends Thread { private char chartoprint; // The character to print private int times; // The times to repeat public PrintChar(char c, int t) { chartoprint = c; times = t; for (int i=0; i < times; i++) System.out.print(charToPrint); Java for C++ Programmers 08-11 TestThreads.java (3/3) class PrintNum extends Thread { private int lastnum; // Construct a thread for print 1, 2,... i public PrintNum(int n) { lastnum = n; for (int i=1; i <= lastnum; i++) System.out.print(" " + i); Java for C++ Programmers 08-12 2

Run TestThreads Useful Methods of a Thread (1/4) public void run() ¾ Execution of the thread starts from Java runtime system invoking run() in a new thread, as a result of user code calling method start(). Never invoked directly from user code public void start() ¾ User code invokes it to start a new thread, thereby causing the run() be invoked by Java runtime system in the new thread Java for C++ Programmers 08-13 Java for C++ Programmers 08-14 Useful Methods of a Thread (2/4) public static void sleep(long millis) throws InterruptedException ¾ Puts the calling thread to sleep for a specified time in milliseconds. Takes minimum resources. The thread will be awakened by a timer at the end of the sleep public boolean isalive() ¾ Tests whether the thread is currently running or blocked public void setpriority(int p) ¾ Sets priority (1 to 10) for the thread public static void yield() ¾ Temporarily pause the thread to let other threads of the same priority run; only useful for non-time-sharing platforms Java for C++ Programmers 08-15 Useful Methods of a Thread (3/4) public String getname() ¾ Return the name of the thread public static Thread currentthread() ¾ Return the reference of the current running thread object public join() ¾ It will block the caller thread until the target thread dies public void setdaemon(true) ¾ This thread will continue to run after the program terminates Java for C++ Programmers 08-16 Useful Methods of a Thread (4/4) public void interrupt() ¾ Generates InterruptedException on the target thread Thread(Runnable o, String threadname) ¾ Constructor to generate a thread with the given name public void dumpstack() ¾ Prints a stack trace of the current thread. Thread Related Methods of Object public final void wait() throws InterruptedException ¾ Put the thread to waiting for a notification on the same object by another thread. Take less resources than sleep. public final void notify() ¾ Awaken a single thread that is waiting on this object public final void notifyall() ¾ Awaken all threads waiting on this object These 3 methods must be invoked in a synchronized method Java for C++ Programmers 08-17 Java for C++ Programmers 08-18 3

Deprecated Thread Methods Thread State Diagram These methods can cause dead-locks, and therefore should be avoided (more later) Using these methods, or overriding them, will cause compilation warnings public void suspend() ¾ Suspends the thread, which will be awakened by resume() public void resume() ¾ Awakens the suspended thread public void stop() ¾ Terminates the thread without reclaiming resources Thread created new start resume, notify, or notifyall run ready running stop yield, or time expired stop, or complete suspend, sleep, or wait finished stop inactive Java for C++ Programmers 08-19 Java for C++ Programmers 08-20 Thread Group A thread group is a set of threads that can be manipulated together ¾ Create a new group ThreadGroup g = new ThreadGroup("UniqueGroupName); ¾ Add a thread to the group Thread t = new Thread(g, new ThreadClass(), "thread label"); ¾ Find out number of active threads g.activecount() Java for C++ Programmers 08-21 Thread Synchronization When multiple threads access a shared resource simultaneously, the shared resource may be corrupted. Keyword synchronized may help If a method is qualified by "synchronized" but not by "static", any time only one of such methods can be invoked on a particular object of the class type; but two invocations of such synchronized methods can happen at the same time if they are on different objects If a method is qualified by "static synchronized", any time only one of such methods can be invoked on any object of this class type Java for C++ Programmers 08-22 Example for Resource Conflict PiggyBankWithoutSync.java contains an instance of PiggyBank, and 100 threads of AddAPennyThread Due to shared data access, different run has different final balance PiggyBankWithoutSync.java (1/3) public class PiggyBankWithoutSync { private PiggyBank bank = new PiggyBank(); private Thread[] thread = new Thread[100]; public static void main(string[] args) { PiggyBankWithoutSync test = new PiggyBankWithoutSync(); System.out.println("Final balance is " + test.bank.getbalance()); public PiggyBankWithoutSync() { ThreadGroup g = new ThreadGroup("group"); boolean done = false; for (int i = 0; i < 100; i++) { thread[i] = new Thread(g, new AddAPennyThread(), "t"); thread[i].start(); Java for C++ Programmers 08-23 Java for C++ Programmers 08-24 4

PiggyBankWithoutSync.java (2/3) while (!done) if (g.activecount() == 0) done = true; class AddAPennyThread extends Thread { int newbalance = bank.getbalance() + 1; try { Thread.sleep(5); catch (InterruptedException e) { System.out.println(e); bank.setbalance(newbalance); Java for C++ Programmers 08-25 PiggyBankWithoutSync.java (3/3) class PiggyBank { private int balance = 0; public int getbalance() { return balance; public void setbalance(int balance) { this.balance = balance; Java for C++ Programmers 08-26 PiggyBankWithSync.java (modified part) public class PiggyBankWithSync { // next line "static" can be dropped private static synchronized void addapenny(piggybank bank) { int newbalance = bank.getbalance() + 1; try { Thread.sleep(5); catch (InterruptedException e) { System.out.println(e); bank.setbalance(newbalance); class AddAPennyThread extends Thread { addapenny(bank); Java for C++ Programmers 08-27 Monitor (1/4) To ensure object data integrity, some methods cannot be executed by more than one thread at a time Java uses monitor to support data protection. Each class has one class monitor for the class, and one object monitor for each object of the class The class monitor controls the access of threads to the static synchronized methods of the class An object monitor controls the access of threads to the non-static synchronized methods of an object of the class Java for C++ Programmers 08-28 Monitor (2/4) Each monitor has one lock and one key to control access to its synchronized methods. Only a thread holding the key can access these methods When no thread is executing in a monitor, the key is available. A thread grabs the key to execute in the monitor, holding the key. Upon exiting from the monitor, the thread returns the key Each monitor has two queues: the entry queue for threads waiting for the key to access the monitor, and the wait queue for threads that are blocked by invoking wait() when they were executing in a synchronized method Java for C++ Programmers 08-29 Monitor (3/4) When a thread invokes a synchronized method of a class, it first waits in the entry queue of the corresponding monitor If the key is available, the thread takes it and starts executing in the monitor. Otherwise it waits If the running thread exits the method, it returns the key, and the thread with the highest priority in the entry queue will take the key and start its execution in the monitor If the running thread calls wait(), it suspends itself on the wait queue, and releases the key for other threads in the entry queue to execute in the monitor Java for C++ Programmers 08-30 5

Monitor (4/4) If the running thread calls notify() (notifyall()), one (all) of the threads in the wait queue will be awakened and moved to the entry queue (for notify(), the one awakened is implementationspecific) wait(), notify(), and notifyall() are methods of the monitor class (not of the thread class), and must be invoked in a synchronized method of a monitor of the class If the wait queue is empty, notify() and notifyall() have no effect Monitor for Non-Static Synchronized Methods Entry queue Wait queue synchronized method1() synchronized method2() synchronized methodn() One object monitor for each object of the class Java for C++ Programmers 08-31 Java for C++ Programmers 08-32 Monitor for Static Synchronized Methods Entry queue Wait queue static synch method1() static synch method2() static synch methodk() Synchronized Block Synchronizing methods will increase execution time; minimizing units of synchronization can minimize the synchronization penalty A synchronized block has syntax ¾ synchronized (object) statement; the statement will be executed in the monitor of the specified object For monitors, a synchronized block is equivalent to a non-static synchronized method Java for C++ Programmers 08-33 Java for C++ Programmers 08-34 Rewrite Deprecated Methods (1/4) Thread methods suspend() and resume() can deactivate and activate a particular thread; Object methods wait() and notify() cannot do the same thing directly Since suspend() may suspend a thread executing in a monitor without giving up its monitor key, it can lead to deadlock Thread methods suspend(), resume(), and stop() are deprecated and should be avoided The suggested codes are in pseudo-code to show ideas. Integrate them into your own code Rewrite Deprecated Methods (2/4) Assume a boolean variable dedicated to this thread boolean suspended = false; public synchronized void mysuspend() { suspended = true; while (suspended) wait(); Java for C++ Programmers 08-35 Java for C++ Programmers 08-36 6

Rewrite Deprecated Methods (3/4) Assume a boolean variable dedicated to this thread boolean suspended = false; public synchronized void myresume() { if (suspended) { suspended = false; notifyall(); Java for C++ Programmers 08-37 Rewrite Deprecated Methods (4/4) public synchronized void mystop() thread = null; notifyall(); void run() { if (thread == null) termination Processing; Java for C++ Programmers 08-38 ThreadSynch.java (1/7) // ThreadSynch.java demonstrates how to simulate the deprecated methods // suspend(), resume(), and stop(). It creates 3 threads, each prints random // letters. User can suspend or resume each thread with mouse. import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ThreadSynch extends JApplet implements Runnable, ActionListener { private String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; private JLabel outputs[]; private JCheckBox checkboxes[]; private final static int SIZE = 3; private Thread threads[]; private boolean suspended[]; Java for C++ Programmers 08-39 ThreadSynch.java (2/7) public void init() { outputs = new JLabel[SIZE]; checkboxes = new JCheckBox[SIZE]; threads = new Thread[SIZE]; suspended = new boolean[size]; Container c = getcontentpane(); c.setlayout(new GridLayout(SIZE, 2, 5, 5)); for (int i = 0; i < SIZE; i++) { outputs[i] = new JLabel(); outputs[i].setbackground(color.green); outputs[i].setopaque(true); c.add(outputs[i]); checkboxes[i] = new JCheckBox("Suspended"); checkboxes[i].addactionlistener(this); c.add(checkboxes[i]); Java for C++ Programmers 08-40 ThreadSynch.java (3/7) public void start() { // create threads and start every time start is called for (int i = 0; i < threads.length; i++) { threads[ i ] = new Thread( this, "Thread " + (i + 1) ); threads[ i ].start(); Thread currentthread = Thread.currentThread(); int index = getindex(currentthread); char displaychar; Java for C++ Programmers 08-41 ThreadSynch.java (4/7) while (threads[index] == currentthread) { // check for stopping the thread // sleep from 0 to 1 second try { Thread.sleep((int)(Math.random()*1000)); synchronized(this) { while (suspended[index] && threads[index] == currentthread) wait(); catch (InterruptedException e) { System.err.println("sleep interrupted"); Java for C++ Programmers 08-42 7

ThreadSynch.java (5/7) displaychar = alphabet.charat((int)(math.random()*26 )); outputs[index].settext(currentthread.getname() + ": " + displaychar ); System.err.println( currentthread.getname() + " terminating"); private int getindex(thread current) { for (int i = 0; i < threads.length; i++) if (current == threads[i]) return i; ThreadSynch.java (6/7) public synchronized void stop() { // stop threads every time stop is called // as the user browses another Web page for (int i = 0; i < threads.length; i++) threads[ i ] = null; notifyall(); return -1; Java for C++ Programmers 08-43 Java for C++ Programmers 08-44 ThreadSynch.java (7/7) public synchronized void actionperformed( ActionEvent e ) { for ( int i = 0; i < checkboxes.length; i++ ) { if (e.getsource() == checkboxes[i]) { suspended[i] =!suspended[i]; outputs[i].setbackground(!suspended[i]? Color.green : Color.red); if (!suspended[i]) notifyall(); return; ThreadSynch.html <html> <applet code="threadsynch.class" width=275 height=90> </applet> </html> Java for C++ Programmers 08-45 Java for C++ Programmers 08-46 8