2018-06-05 23:15:23 +00:00
|
|
|
//
|
|
|
|
// Created by Antoine Bartuccio on 05/06/2018.
|
|
|
|
//
|
|
|
|
|
2018-06-07 20:04:30 +00:00
|
|
|
#include <string.h>
|
2018-06-18 17:24:35 +00:00
|
|
|
#include <math.h>
|
2018-06-21 18:26:35 +00:00
|
|
|
#include <unistd.h>
|
2018-06-05 23:15:23 +00:00
|
|
|
#include "Elevator.h"
|
2018-06-15 13:38:26 +00:00
|
|
|
#include "../SharedData/SharedData.h"
|
2018-06-06 01:00:35 +00:00
|
|
|
|
2018-06-07 22:08:18 +00:00
|
|
|
SYNCHRONIZED_GETTER(Elevator, ELEVATOR_STATE, state)
|
|
|
|
SYNCHRONIZED_SETTER(Elevator, ELEVATOR_STATE, state)
|
2018-06-10 10:47:07 +00:00
|
|
|
SYNCHRONIZED_GETTER(Elevator, int, floor)
|
|
|
|
SYNCHRONIZED_SETTER(Elevator, int, floor)
|
2018-06-07 22:08:18 +00:00
|
|
|
|
2018-06-06 01:00:35 +00:00
|
|
|
void _free__Elevator(THIS(Elevator)){
|
2018-06-18 13:51:48 +00:00
|
|
|
DELETE(this->passengers);
|
2018-06-07 20:04:30 +00:00
|
|
|
if (this->name != NULL)
|
|
|
|
free(this->name);
|
2018-06-07 22:08:18 +00:00
|
|
|
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
|
|
|
pthread_mutex_destroy(&this->mutex_passengers);
|
2018-06-07 22:08:18 +00:00
|
|
|
|
|
|
|
pthread_mutex_unlock(&this->mutex_state);
|
|
|
|
pthread_mutex_destroy(&this->mutex_state);
|
|
|
|
|
2018-06-10 02:00:01 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_floor);
|
|
|
|
pthread_mutex_destroy(&this->mutex_floor);
|
|
|
|
|
2018-06-06 01:00:35 +00:00
|
|
|
free(this);
|
|
|
|
}
|
|
|
|
|
2018-06-20 17:36:00 +00:00
|
|
|
void add_passenger_Elevator(THIS(Elevator), Passenger * passenger){
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
2018-06-20 17:36:00 +00:00
|
|
|
this->passengers->insert_tail(this->passengers, ((void *)passenger), sizeof(Passenger));
|
2018-06-21 22:48:43 +00:00
|
|
|
printf("L'ascenseur %s recoit le passager %s à l'étage %d\nIl y a maintenant %d passagers dans l'ascenseur %s\n", this->name,
|
2018-06-20 20:06:45 +00:00
|
|
|
passenger->get_name(passenger),
|
2018-06-21 19:34:34 +00:00
|
|
|
this->get_floor(this),
|
2018-06-20 20:06:45 +00:00
|
|
|
this->passengers->get_size(this->passengers), this->name);
|
2018-06-21 22:04:52 +00:00
|
|
|
/*if (this->passengers->get_size(this->passengers) >= MAX_ELEVATOR_CAPACITY)
|
|
|
|
this->set_state(this, SLEEPING);*/
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
2018-06-15 09:50:38 +00:00
|
|
|
}
|
|
|
|
|
2018-06-21 18:26:35 +00:00
|
|
|
/**
|
|
|
|
* Remove a passenger from an elevator. Efectively remove him from the elevator's passenger list.
|
|
|
|
* @SYNCHRONIZED passengers : this elevator's list of passenger is accessed via mutex
|
|
|
|
* @param THIS(Elevator) : this
|
|
|
|
* @param passenger : the passenger to remove
|
|
|
|
*/
|
2018-06-21 17:21:17 +00:00
|
|
|
void remove_passenger_Elevator(THIS(Elevator), Passenger * passenger){
|
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
2018-06-21 18:26:35 +00:00
|
|
|
if (passenger->type == RESIDENT)
|
|
|
|
printf("Le résident %s sort de l'ascenseur %s à l'étage %d\n", passenger->get_name(passenger), this->name, this->get_floor(this));
|
|
|
|
else if (passenger->type == VISITOR)
|
|
|
|
printf("Le visiteur %s sort de l'ascenseur %s à l'étage %d\n", passenger->get_name(passenger), this->name, this->get_floor(this));
|
2018-06-21 17:21:17 +00:00
|
|
|
this->passengers->remove_inside(this->passengers, passenger, passenger->compare);
|
2018-06-21 18:26:35 +00:00
|
|
|
printf("Ascenseur %s : j'ai encore %d passagers\n", this->name, this->passengers->get_size(this->passengers));
|
2018-06-21 17:21:17 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
|
|
|
}
|
|
|
|
|
2018-06-07 20:04:30 +00:00
|
|
|
int get_number_of_passengers_Elevator(THIS(Elevator)){
|
|
|
|
int num;
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
2018-06-18 13:51:48 +00:00
|
|
|
num = this->passengers->get_size(this->passengers);
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
2018-06-07 20:04:30 +00:00
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2018-06-18 17:24:35 +00:00
|
|
|
/**
|
|
|
|
* Search the closest floor where the elevator should stop. In practice ( for now ), it means that this function returns the closest floor amongs it's passengers destinations.
|
|
|
|
* @THIS(Elevator) a pointer the current Elevator
|
2018-06-21 15:39:30 +00:00
|
|
|
* @return the found floor as an int. If no passengers are in the elevator, returns -1.
|
2018-06-18 17:24:35 +00:00
|
|
|
* @todo should consider passenger calling the elevator
|
|
|
|
*/
|
2018-06-21 15:39:30 +00:00
|
|
|
int get_next_passenger_stop_Elevator(THIS(Elevator)){
|
2018-06-18 17:24:35 +00:00
|
|
|
int i, next_floor, temp_floor;
|
|
|
|
float min_diff;
|
|
|
|
Element* temp_element;
|
|
|
|
Passenger* temp_passenger;
|
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
|
|
|
pthread_mutex_lock(&this->mutex_floor);
|
|
|
|
|
|
|
|
min_diff = INFINITY;
|
2018-06-21 15:39:30 +00:00
|
|
|
next_floor = -1;
|
2018-06-18 17:24:35 +00:00
|
|
|
|
|
|
|
for(i=0;i<this->passengers->get_size(this->passengers);i++){
|
|
|
|
temp_element = this->passengers->get_element(this->passengers, i);
|
|
|
|
temp_passenger = (Passenger*) temp_element->get_data(temp_element);
|
2018-06-20 20:11:48 +00:00
|
|
|
temp_floor = temp_passenger->get_destination(temp_passenger);
|
2018-06-21 23:26:00 +00:00
|
|
|
if(abs(this->floor - temp_floor) < min_diff && temp_floor != this->floor/*beware*/){
|
2018-06-18 17:24:35 +00:00
|
|
|
min_diff = abs(this->floor - temp_floor);
|
|
|
|
next_floor = temp_floor;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
|
|
|
pthread_mutex_unlock(&this->mutex_floor);
|
|
|
|
|
|
|
|
return next_floor;
|
|
|
|
}
|
|
|
|
|
2018-06-15 13:38:26 +00:00
|
|
|
int can_get_inside_Elevator(THIS(Elevator), int floor){
|
|
|
|
int permission;
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
2018-06-15 13:38:26 +00:00
|
|
|
pthread_mutex_lock(&this->mutex_state);
|
|
|
|
pthread_mutex_lock(&this->mutex_floor);
|
|
|
|
|
2018-06-18 13:51:48 +00:00
|
|
|
permission = (this->passengers->get_size(this->passengers) < MAX_ELEVATOR_CAPACITY &&
|
2018-06-21 22:04:52 +00:00
|
|
|
/*this->state == WAITING &&*/ this->floor == floor);
|
2018-06-15 13:38:26 +00:00
|
|
|
|
2018-06-21 23:26:00 +00:00
|
|
|
//if(this->floor != floor)
|
|
|
|
//printf("DEBUG : Cause de la préemption : l'ascenseur %s n'est pas là !\n", this->name);
|
2018-06-15 13:38:26 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_floor);
|
|
|
|
pthread_mutex_unlock(&this->mutex_state);
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
2018-06-15 13:38:26 +00:00
|
|
|
|
|
|
|
return permission;
|
2018-06-07 20:04:30 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 22:08:18 +00:00
|
|
|
void repair_Elevator(THIS(Elevator)){
|
2018-06-15 09:50:38 +00:00
|
|
|
this->set_state(this, RUNNING);
|
2018-06-07 22:08:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void *runnable_Elevator(void * void_this){
|
|
|
|
/* This is where the thread logic will be implemented */
|
|
|
|
Elevator * this = (Elevator*) void_this;
|
2018-06-15 13:38:26 +00:00
|
|
|
SharedData * data = GET_INSTANCE(SharedData);
|
2018-06-21 15:39:30 +00:00
|
|
|
Building * building = data->main_building;
|
2018-06-15 13:38:26 +00:00
|
|
|
|
2018-06-21 16:22:02 +00:00
|
|
|
int next_call;
|
|
|
|
int next_passenger_stop;
|
2018-06-21 23:26:00 +00:00
|
|
|
int i;
|
2018-06-21 16:22:02 +00:00
|
|
|
|
2018-06-15 17:14:30 +00:00
|
|
|
AGENT_OPTIONS
|
|
|
|
|
2018-06-21 16:22:02 +00:00
|
|
|
printf("Initialisation de l'ascenseur %s\n", this->name);
|
2018-06-18 21:03:32 +00:00
|
|
|
for (;;){
|
2018-06-21 23:26:00 +00:00
|
|
|
usleep(250000);
|
2018-06-21 15:39:30 +00:00
|
|
|
if(this->target_floor == this->get_floor(this)){
|
2018-06-21 23:26:00 +00:00
|
|
|
|
|
|
|
pthread_mutex_lock(&this->mutex_passengers);//on débarque les passagers
|
|
|
|
Element* temp_element = this->passengers->head;
|
|
|
|
while(temp_element != NULL){
|
|
|
|
Passenger* temp_passenger = ((Passenger*) temp_element->data);
|
|
|
|
if(temp_passenger->get_destination(temp_passenger) == this->get_floor(this)){
|
|
|
|
building->signal_elevator_at_floor(building, this->get_floor(this));
|
2018-06-21 22:48:43 +00:00
|
|
|
}
|
2018-06-21 23:26:00 +00:00
|
|
|
temp_element = temp_element->next;
|
2018-06-21 15:39:30 +00:00
|
|
|
}
|
2018-06-21 23:26:00 +00:00
|
|
|
pthread_mutex_unlock(&this->mutex_passengers);
|
|
|
|
|
|
|
|
for(i=0;i<building->waiting_floors[this->get_floor(this)];i++){ //on embarque les passagers
|
|
|
|
building->signal_elevator_at_floor(building, this->get_floor(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
next_passenger_stop = this->get_next_passenger_stop(this);
|
|
|
|
next_call = building->get_next_call(building, this->get_floor(this));
|
|
|
|
|
|
|
|
if(next_passenger_stop != -1){
|
|
|
|
this->target_floor = next_passenger_stop;
|
|
|
|
}else if(next_call != -1){
|
|
|
|
this->target_floor = next_call;
|
|
|
|
}
|
|
|
|
|
2018-06-21 16:22:02 +00:00
|
|
|
}
|
|
|
|
if(this->get_floor(this) != this->target_floor){
|
2018-06-21 19:34:34 +00:00
|
|
|
this->set_floor(this, this->target_floor);
|
2018-06-21 16:22:02 +00:00
|
|
|
printf("Ascenseur %s en route vers l'étage %d\n", this->name, this->target_floor);
|
2018-06-21 15:39:30 +00:00
|
|
|
}
|
2018-06-18 21:03:32 +00:00
|
|
|
}
|
|
|
|
|
2018-06-10 23:58:52 +00:00
|
|
|
return NULL;
|
2018-06-07 22:08:18 +00:00
|
|
|
}
|
|
|
|
|
2018-06-07 20:04:30 +00:00
|
|
|
Elevator *_init_Elevator(char * name){
|
2018-06-06 01:00:35 +00:00
|
|
|
Elevator * new_elevator = malloc_or_die(sizeof(Elevator));
|
2018-06-07 20:04:30 +00:00
|
|
|
new_elevator->name = strdup(name);
|
2018-06-18 13:51:48 +00:00
|
|
|
new_elevator->passengers = NEW(List);
|
2018-06-21 15:39:30 +00:00
|
|
|
new_elevator->target_floor = 0;
|
2018-06-18 17:24:35 +00:00
|
|
|
pthread_mutex_init(&new_elevator->mutex_passengers, NULL);
|
2018-06-07 22:08:18 +00:00
|
|
|
pthread_mutex_init(&new_elevator->mutex_state, NULL);
|
2018-06-10 02:00:01 +00:00
|
|
|
pthread_mutex_init(&new_elevator->mutex_floor, NULL);
|
2018-06-06 01:00:35 +00:00
|
|
|
|
2018-06-07 20:04:30 +00:00
|
|
|
LINK_ALL(Elevator, new_elevator,
|
2018-06-21 15:39:30 +00:00
|
|
|
runnable,
|
|
|
|
get_number_of_passengers,
|
|
|
|
get_next_passenger_stop,
|
|
|
|
can_get_inside,
|
2018-06-21 18:26:35 +00:00
|
|
|
remove_passenger,
|
2018-06-21 15:39:30 +00:00
|
|
|
add_passenger,
|
|
|
|
get_state,
|
|
|
|
set_state,
|
|
|
|
get_floor,
|
|
|
|
set_floor,
|
|
|
|
repair
|
2018-06-07 20:04:30 +00:00
|
|
|
);
|
2018-06-06 01:00:35 +00:00
|
|
|
|
2018-06-15 17:14:30 +00:00
|
|
|
new_elevator->set_floor(new_elevator, 0);
|
|
|
|
new_elevator->set_state(new_elevator, WAITING);
|
|
|
|
|
2018-06-06 01:00:35 +00:00
|
|
|
return new_elevator;
|
2018-06-18 13:20:08 +00:00
|
|
|
}
|