473,624 Members | 2,612 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Producer / Consumer problems

I'm getting an IllegalMonitorS tateException in trying to implement the
above subject. The static declararions made it work, so if this is
part of the problem let me know. I think it has something to do with
the synchronization . I think I'm accessing the bin when I'm not
supposed to be.

**This IS a homework assignment, FYI, and we are using the 1.4.2 API**
So it does have to sleep for a random time, it does have to use as
many consumers as specified as well as number of items. The bin is
either a stack or queue, but that is irrelevant. It does have to
output the exact string and it has to watch for the stop button on the
frame.

Thanks if you can help.

Here's the consumer, which is much like the producer:

// Class Consumer
class Consumer extends Thread
{
// Class data
private int maxItems, currItem, numCons;
private boolean isInterrupted = false;
private static XBin bin;

// Constructor
public Consumer()
{
bin = XThread.bin;
maxItems = ((Number) XThread.sItems. getValue()).int Value();
currItem = 0;
numCons = ((Number) XThread.sConsum er.getValue()). intValue();
isInterrupted = false;
}

// Thread run
public void run()
{
// Catch system interrupts
try {
// Make bin thread-safe
synchronized(bi n) {
// Do until requested items produced
while(currItem < maxItems) {
// watch for requested interrupt (stop button)
while (!isInterrupted ) {

// Do thread action for as many consumers as
requested
for (int x = 0; x < numCons && !isInterrupted;
x++) {

// Sleep random time
sleep((int)Math .random() * 1000);
// call wait() if nothing to do
while (currItem < maxItems &&
bin.isEmpty()) {
wait();
}
// Notify all when finished
if (currItem >= maxItems &&
bin.isEmpty()) {
notifyAll();
return;
}

// Append Output string
XThread.text.ap pend("item " );
XThread.text.ap pend(new
Integer(currIte m).toString());
XThread.text.ap pend(" taken by
Consumer ");
XThread.text.ap pend(new
Integer(x).toSt ring());
XThread.text.ap pend(": ");
bin.printBin();
XThread.text.ap pend("\n");

// Remove Item
bin.pop();

// Release thread and go back to sleep
notifyAll();

currItem++;

} // end for loop

} // number of items produced completed

} // Stop button check

} // End synchronized block

// System interrupt
} catch (InterruptedExc eption it) {
return;
}

} // end run()

// Stop button pressed
public void interrupt() {
isInterrupted = true;
}

}
And for reference, the following:

// Main GUI Code for XThead interface
class XThread extends JFrame {

// Storage bin
static XBin bin;

// threads
private Thread pro;
private Thread con;

// GUI Components
static JToolBar toolBar;
static JPanel mPanel;
static JPanel pcPanel;
static JPanel bPanel;
static JButton button;
static JSpinner sConsumer;
static JSpinner sProducer;
static JSpinner sBin;
static JSpinner sItems;
static JComboBox boxType;

// Output text area
static JTextArea text;

...
Jul 17 '05 #1
0 7443

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
2358
by: Evan Simpson | last post by:
WEBoggle needs a new game board every three minutes. Boards take an unpredictable (much less than 3min, but non-trivial) amount of time to generate. The system is driven by web requests, and I don't want the request that happens to trigger the need for the new board to have to pay the time cost of generating it. I set up a producer thread that does nothing but generate boards and put them into a length-two Queue (blocking). At the rate...
2
3962
by: ian douglas | last post by:
I have one process that will be multi-threaded. The parent (A) will sit and deal with TCP/IP issues, and feed data to its child process (B) via shared memory. I need assistance in finding a good example of (B) pausing (not in a busy-wait loop) until it gets a signal from (A) that data is ready. That the child process (B) will then have a shared memory segment with a second running process (C), where (B) will be the producer for (C), so...
3
3516
by: smith4894 | last post by:
Hello, I have an application that essentially consists of two threads doing their things. One thread is a producer, and pushes bytes (of a struct) into a pipe, and another is a consumer that simply checks the pipe at regular intervals reads out the bytes. If the consumer extracts bytes and sees that it's not enough to recast to the struct, it caches it and waits for more bytes in the pipe. My question is: Do I still need to maintain...
3
4944
by: MrNobody | last post by:
I am developing an application that has several multi threaded tasks where one thread is doing IO and another thread is grabbing data from the first thread to process it further. I've been noticing that every once in a while my program simply hangs- it is rare but it is annoying. I am worried it may be a synchronization issue involving my producer/consumer threads. I basically go like this:
0
1246
by: Kyle Rowe | last post by:
class Buffer { const int size = 4; int n = 0; public void Put(char ch) { lock(this) { while (n == size) Monitor.Wait(this);
2
4208
by: Ramta | last post by:
Hi all, I am trying to develop a Producer thread that listens for UDP packets on a socket and store then in an ArrayList. The consumer should read data from list and block when no element is in list. When producer inserts a message in list, it should make the consumer aware of the item and consumer should process the item as soon as it is available.
2
5471
by: Rene Ruppert | last post by:
Hi, I'm trying to implement the Producer-Consumer-Problem in C#. Below is my code. The problem is, that the buffer always contains only one element...it seems that the Thread.Sleep() in the producer and in the consumers make the whole app sleep instead of only making the current thread sleep. Maybe someone can help?
4
11171
by: mps | last post by:
It seems to me that the MSDN code for synchronizing a producer and consumer thread at http://msdn2.microsoft.com/en-us/library/yy12yx1f.aspx is completely wrong. There is no reason to assume that each call to NewItemEvent.Set() will release a consumer thread (as explicitly mentioned in the AutoResetEven documentation), which means that the consumer threads won't necessarily know that there are items on the queue. Is this correct? Mike
10
4410
by: George Sakkis | last post by:
I'd like some feedback on a solution to a variant of the producer- consumer problem. My first few attempts turned out to deadlock occasionally; this one seems to be deadlock-free so far but I can't tell if it's provably correct, and if so, whether it can be simplified. The generic producer-consumer situation with unlimited buffer capacity is illustrated at http://docs.python.org/lib/condition-objects.html. That approach assumes that the...
0
8179
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8685
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8631
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8341
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8490
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7174
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
4084
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1796
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1489
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.