I have an assignment for my university class, where I "translate" any given text into what is essentially l33t speak. It is a threaded translator, using a producer-consumer model. Under test conditions, not using my struct, gzread appears to read the entire document passed in (beowulf hard-coded in, the version I'm using is from Project Gutenberg)
However, when I use my struct and the coded logic, it appears to miss a gzreads or perhaps a few of the buffers get lost or overwritten. There is a lot of code here, I hope you can understand it. I've added comments so that it is easier to understand.
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include <pthread.h>
#include <zlib.h>
#define NUM_BUFFERS 8
#define NUM_THREADS 3 //read, modify, write
#define BUFFER_LENGTH 1024
typedef struct buffer{
char buff[BUFFER_LENGTH];
int full;
}buffer;
/**
* define blocks in memory so that I may use memcmp
**/
const char a = 'a';
const char e = 'e';
const char i = 'i';
const char o = 'o';
const char s = 's';
const char A = 'A';
const char E = 'E';
const char I = 'I';
const char O = 'O';
const char S = 'S';
/**
* forward declarations of methods with which to create threads
**/
void *readRoutine( void *ptr );
void *modifyRoutine( void *ptr);
void *writeRoutine( void *ptr);
int readBufferIsFull();
int readBufferIsEmpty();
/**
* character buffers
* mutexes
* conditions
**/
buffer readTOmodify[NUM_BUFFERS];
pthread_mutex_t readAndModifyMutex;
pthread_cond_t readAndModifyCond;
int status = BUFFER_LENGTH;
int main(int argc, const char* argv[])
{
int i = 0;
for(i = 0; i < NUM_BUFFERS; i++) /*Initialise the structs in the buffers*/
{
readTOmodify[i].buff[0] = '\0';
readTOmodify[i].full = 0;
modifyTOwrite[i].buff[0] = '\0';
modifyTOwrite[i].full = 0;
}
pthread_mutex_init(&readAndModifyMutex, NULL);
pthread_cond_init(&readAndModifyCond, NULL);
pthread_t readThread, modifyThread, writeThread;
char *message1 = "beowulf.gz";
char *message2 = "modifyThread";
//char *message3 = "writeThread";
int iret1, iret2, iret3;
if(iret1 = pthread_create( &readThread, NULL, readRoutine, (void *) message1))
printf("Thread creation failed: %d\n", iret1);
if(iret2 = pthread_create( &modifyThread, NULL, modifyRoutine, (void *) message2))
printf("Thread creation failed: %d\n", iret2);
pthread_join(readThread, NULL);
pthread_join(modifyThread, NULL);
pthread_mutex_destroy(&readAndModifyMutex);
pthread_cond_destroy(&readAndModifyCond);
return 0;
}
/**
* the reading thread
* @args a message to be passed and printed
**/
void *readRoutine(void *ptr)
{
char *message;
static int read_c = 0;
gzFile inputFile = gzopen("beowulf.gz", "rb");
int readFull;
while(1)
{
pthread_mutex_lock(&readAndModifyMutex); //enter critical section
readFull = readBufferIsFull();
while(readFull == 1)
{
/*if there is no room to read to, wait for a signal to be sent to the condition variable*/
pthread_cond_wait(&readAndModifyCond, &readAndModifyMutex);
readFull = readBufferIsFull();
}
pthread_mutex_unlock(&readAndModifyMutex); //exit critical section
status = gzread(inputFile, readTOmodify[read_c].buff, BUFFER_LENGTH); //we can alter the buffer because we know that this position in the buffer is not being accessed
pthread_mutex_lock(&readAndModifyMutex); //enter critical section
readTOmodify[read_c].full = 1; //set buffer full tag to 1
/*Send signal to any waiting thread that may be looking for a full buffer*/
pthread_cond_signal(&readAndModifyCond);
pthread_mutex_unlock(&readAndModifyMutex); //exit critical section
read_c = (read_c + 1) % 8;
if(status == 0)
{
if(read_c == 0)break;
}
}
pthread_cond_signal(&readAndModifyCond);
gzclose(inputFile);
pthread_exit(NULL);
}
/**
* the modifying thread
**/
void *modifyRoutine(void *ptr)
{
static int modify_c = 0;
int readEmpty;
while(1)
{
pthread_mutex_lock(&readAndModifyMutex); //enter critical section
readEmpty = readBufferIsEmpty();
while(readEmpty == 1) //as it says
{
pthread_cond_wait(&readAndModifyCond, &readAndModifyMutex);
readEmpty = readBufferIsEmpty();
}
pthread_mutex_unlock(&readAndModifyMutex); //exit critical section
int i = 0;
for( i; i < BUFFER_LENGTH; i++ )
{
char *changed = &readTOmodify[modify_c].buff[i];
if( memcmp(&a, changed, 1) == 0 || memcmp(&A, changed, 1) == 0 )
{
readTOmodify[modify_c].buff[i] = '4';
}
else if( memcmp(&e, changed, 1) == 0 || memcmp(&E, changed, 1) == 0 )
{
readTOmodify[modify_c].buff[i] = '3';
}
else if( memcmp(&i, changed, 1) == 0 || memcmp(&I, changed, 1) == 0 )
{
readTOmodify[modify_c].buff[i] = '1';
}
else if( memcmp(&o, changed, 1) == 0 || memcmp(&O, changed, 1) == 0 )
{
readTOmodify[modify_c].buff[i] = '0';
}
else if( memcmp(&s, changed, 1) == 0 || memcmp(&S, changed, 1) == 0 )
{
readTOmodify[modify_c].buff[i] = '5';
}
}
pthread_mutex_lock(&readAndModifyMutex);
readTOmodify[modify_c].full = 0;
pthread_cond_signal(&readAndModifyCond);
pthread_mutex_unlock(&readAndModifyMutex);
//at this point, the readTOmodify[modify_c].buff contains the modified string
//we would need to take the mutex, check for fullness of modifyTOwrite
//then wait if it is full.
//if it is not full, then we may modify the modifyTOwrite buffers
//we would strncpy(modifyTOwrite[modify_c].buff, readTOmodify[modify_c].buff, BUFFER_LENGTH);
//then we would
//printf("modifyThread: modify_c = %d\n", modify_c);
modify_c = (modify_c + 1) % 8;
if(status == 0)
{
if(modify_c == 0)break;
}
}
pthread_exit(NULL);
}
/**
* checks if the read buffer array is full
* @return 0 if false, 1 if true
**/
int readBufferIsFull()
{
int i = 0;
for(i; i < NUM_BUFFERS; i++)
{
if(status == 0) //allows threads to exit
{
return 0;
}
if(readTOmodify[i].full > 0)
continue;
else
return 0;
}
return 1;
}
/**
* checks if the read buffer array is empty
* @return 0 if false, 1 if true
**/
int readBufferIsEmpty()
{
int i = 0;
for(i; i < NUM_BUFFERS; i++)
{
if(status == 0) //allows threads to exit
{
return 0;
}
if(readTOmodify[i].full == 0)
continue;
else
return 0;
}
return 1;
}
I appear to miss two or three buffers off of the end. Any help appreciated
ValgrindorElectricFence. Also, consider enabling a strict(er?) set of your compiler's warnings. – Brian Cain Sep 23 '12 at 4:59