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-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-18 14:14:01 +00:00
|
|
|
printf("L'ascenseur %s recoit le visiteur %s\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),
|
|
|
|
this->passengers->get_size(this->passengers), this->name);
|
2018-06-18 13:51:48 +00:00
|
|
|
if (this->passengers->get_size(this->passengers) >= MAX_ELEVATOR_CAPACITY)
|
2018-06-15 09:50:38 +00:00
|
|
|
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 17:21:17 +00:00
|
|
|
void remove_passenger_Elevator(THIS(Elevator), Passenger * passenger){
|
|
|
|
pthread_mutex_lock(&this->mutex_passengers);
|
|
|
|
this->passengers->remove_inside(this->passengers, passenger, passenger->compare);
|
|
|
|
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-20 12:19:56 +00:00
|
|
|
if(abs(this->floor - temp_floor) < min_diff && temp_floor != this->floor){
|
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-15 13:38:26 +00:00
|
|
|
this->state == WAITING && this->floor == floor);
|
|
|
|
|
|
|
|
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-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 15:39:30 +00:00
|
|
|
building->signal_elevator_at_floor(data->main_building, this->get_floor(this));
|
|
|
|
if(this->target_floor == this->get_floor(this)){
|
2018-06-21 16:22:02 +00:00
|
|
|
if((next_passenger_stop = this->get_next_passenger_stop(this)) != -1){
|
|
|
|
this->target_floor = next_passenger_stop;
|
|
|
|
}else if((next_call = building->get_next_call(building, this->floor)) != -1){
|
|
|
|
this->target_floor = next_call;
|
2018-06-21 15:39:30 +00:00
|
|
|
}
|
2018-06-21 16:22:02 +00:00
|
|
|
}
|
|
|
|
if(this->get_floor(this) != this->target_floor){
|
|
|
|
printf("Ascenseur %s en route vers l'étage %d\n", this->name, this->target_floor);
|
|
|
|
printf("DEBUG : Next passenger stop : %d\n", next_passenger_stop);
|
|
|
|
printf("DEBUG : Next call from user : %d\n", next_call);
|
|
|
|
printf("\n\n");
|
2018-06-21 17:21:17 +00:00
|
|
|
fflush(stdout);
|
2018-06-21 15:39:30 +00:00
|
|
|
}
|
|
|
|
this->set_floor(this, this->target_floor);
|
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,
|
|
|
|
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
|
|
|
}
|