1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdio.h>
#include <semaphore.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <iostream>
#include <vector>
#include <fstream>
#include <sstream>
#include <string>
#include <unistd.h>
using std::cout;
using std::vector;
using std::stringstream;
using std::ifstream;
using std::string;
struct customer
{
int serialNumber;
int timeToArrival;
int executionTime;
};
void populateCustomerQueue(vector<customer*>&, char*);
int whoHasControl(vector<int>);
int main(int argc, char* argv[])
{
//Ensure the proper number of input arguments were provided
if(argc != 2)
{
cout << "Improper number of input arguments.\n";
exit(1);
}
//Creates semaphores for: alice, bob, n_alice, n_bob
sem_t* alice;
char alice_name[] = "RV_alice";
//unsigned int alice_initial_value;
alice = sem_open(alice_name, O_CREAT);
sem_t* n_alice;
char n_alice_name[] = "RV_n_alice";
//unsigned int n_alice_initial_value;
n_alice = sem_open(n_alice_name, O_CREAT);
sem_t* bob;
char bob_name[] = "RV_bob";
//unsigned int bob_initial_value;
bob = sem_open(bob_name, O_CREAT);
sem_t* n_bob;
char n_bob_name[] = "RV_n_bob";
//unsigned int n_bob_initial_value;
n_bob = sem_open(n_bob_name, O_CREAT);
//Creates shared int values for the queue size for Alice and Bob
int n_alice_shmid;
key_t n_alice_key;
size_t n_alice_sizechar = sizeof(int);
n_alice_shmid = shmget(n_alice_key, n_alice_sizechar, 0600 | IPC_CREAT);
int* n_alice_shm = (int*) shmat(n_alice_shmid, 0, 0);
*n_alice_shm = 0;
cout << "n_alice>shm = " << *n_alice_shm << "\n";
int n_bob_shmid;
key_t n_bob_key;
size_t n_bob_sizechar = sizeof(int);
n_bob_shmid = shmget(n_bob_key, n_bob_sizechar, 0600 | IPC_CREAT);
int* n_bob_shm = (int*) shmat(n_bob_shmid, 0, 0);
*n_bob_shm = 0;
cout << "n_bob_shm = " << *n_bob_shm << "\n";
//Initialize and populate the vector containing the customer queue
vector<int> accessArray;
vector<customer*> customerQueue;
populateCustomerQueue(customerQueue, argv[1]);
//CHECK VALUES OF CUSTOMER QUEUE
/*for(int i = 0; i < customerQueue.size(); i++)
{
cout << customerQueue[i]->serialNumber << " "
<< customerQueue[i]->timeToArrival << " "
<< customerQueue[i]->executionTime << "\n";
}*/
//FINISH CHECKING VALUES FOR CUSTOMER QUEUE
pid_t pid; //Initialize the pid variable
//Iterate through the customer queue, sleeping in between customers until they arrive
//then placing them into the appropriate queue. After each customer has been checked
//out their process exits
for(int i = 0; i < customerQueue.size(); i++)
{
cout << "Executing for loop, cycle " << i << "\n";
if(customerQueue[i]->timeToArrival == 0)
{
cout << "Customer " << customerQueue[i]->serialNumber << " is being processed.\n";
sleep(customerQueue[i]->executionTime);
cout << "Done sleeping.\n";
pid = fork();
if(pid == 0)
{
cout << "Customer " << customerQueue[i]->serialNumber << " has been given a thread.\n";
sem_wait(n_alice);
cout << "Got alice.\n";
sem_wait(n_bob);
cout << "Got bob and alice.\n";
if(*n_alice_shm >= *n_bob_shm)
{
*n_alice_shm++;
sem_post(n_alice);
sem_post(n_bob);
cout << "Customer" << customerQueue[i]->serialNumber << " selected Alice.\n";
sem_wait(alice);
sleep(customerQueue[i]->executionTime);
sem_post(alice);
cout << "Customer " << customerQueue[i]->serialNumber << " leaves the supermarket.\n";
_exit(0);
}
else
{
*n_bob_shm++;
sem_post(n_alice);
sem_post(n_bob);
cout << "Customer" << customerQueue[i]->serialNumber << " selected Bob.\n";
sem_wait(bob);
sleep(customerQueue[i]->executionTime);
sem_post(bob);
cout << "Customer " << customerQueue[i]->serialNumber << " leaves the supermarket.\n";
_exit(0);
}
}
}
else
{
cout << "Customer " << customerQueue[i]->serialNumber << " is being processed.\n";
sleep(customerQueue[i]->timeToArrival);
pid = fork();
if(pid == 0)
{
cout << "Customer " << customerQueue[i]->serialNumber << " has been given a thread.\n";
sem_wait(n_alice);
cout << "Got alice.\n";
sem_wait(n_bob);
cout << "Got bob and alice.\n";
if(*n_alice_shm >= *n_bob_shm)
{
*n_alice_shm++;
sem_post(n_alice);
sem_post(n_bob);
cout << "Customer" << customerQueue[i]->serialNumber << " selected Alice.\n";
sem_wait(alice);
sleep(customerQueue[i]->executionTime);
sem_post(alice);
cout << "Customer " << customerQueue[i]->serialNumber << " leaves the supermarket.\n";
_exit(0);
}
else
{
*n_bob_shm++;
sem_post(n_alice);
sem_post(n_bob);
cout << "Customer" << customerQueue[i]->serialNumber << " selected Bob.\n";
sem_wait(bob);
sleep(customerQueue[i]->executionTime);
sem_post(bob);
cout << "Customer " << customerQueue[i]->serialNumber << " leaves the supermarket.\n";
_exit(0);
}
sleep(customerQueue[i]->executionTime);
_exit(0);
}
}
}
}
int whoHasControl(vector<int> control)
{
if(control.size() == 0) return 0;
for(int i = 0; i < control.size(); i++)
{
if(control[i] == 1)
return 1;
}
return 0;
}
void populateCustomerQueue(vector<customer*>& customerQueue, char* fileName)
{
ifstream inputFile (fileName);
string tempString;
while(getline(inputFile, tempString))
{
stringstream ss;
customer* tempCustomer = new customer;
ss << tempString;
int tempSerialNumber;
int tempTimeToArrival;
int tempExecutionTime;
ss >> tempSerialNumber >> tempTimeToArrival >> tempExecutionTime;
tempCustomer->serialNumber = tempSerialNumber;
tempCustomer->timeToArrival = tempTimeToArrival;
tempCustomer->executionTime = tempExecutionTime;
customerQueue.push_back(tempCustomer);
tempCustomer = NULL;
}
}
|