ajout des taches

This commit is contained in:
Mylloon 2023-10-27 23:27:41 +02:00
parent dd0c3d6bd5
commit c4927de1eb
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
9 changed files with 94 additions and 33 deletions

View file

@ -40,12 +40,12 @@ TODO avant rendu :
- [x] Tâche `fin`
- Méthodes (cf. le PDF du prof) **⇒ Tout ça avec l'ordre topologique**
- Pas de méthode d'ajout d'un objet `Tache`
- [ ] `bool ajoute(nom, durée)` : sélectionne au hasard 2 tâches déjà
- [x] `bool ajoute(nom, durée)` : sélectionne au hasard 2 tâches déjà
enregistrer et **ajoute** la nouvelle tâche entres-elles
- [ ] `bool ajoute(nom, durée, id)` : **déplace** une tâche qui doit se réaliser
- [x] `bool ajoute(nom, durée, id)` : **déplace** une tâche qui doit se réaliser
**après** la tâche qui à l'`id` correspondant (et avant la tâche finale)
**⇒ création d'une dépendance**
- [ ] `bool ajoute(nom, durée, id1, id2)` : **ajoute** une tâche entre les 2 tâches
- [x] `bool ajoute(nom, durée, id1, id2)` : **ajoute** une tâche entre les 2 tâches
qui ont l'identifiant `id1` et `id2`
- [ ] Surcharge de `<<`

View file

@ -9,13 +9,19 @@ class Projet {
friend std::ostream &operator<<(std::ostream &, const Projet &);
// Auxilliaire pour simplifier les copies
void _copy(const Projet &);
// Auxiliiaire pour simplifier la libération de mémoire des tâches
void _free();
protected:
Tache
// Première tâche qui sera exécutée
debut,
*debut,
// Source du graphe aka la dernière à être exécutée
fin;
*fin;
Projet(); // constructor
virtual ~Projet(); // destructor
@ -30,8 +36,8 @@ protected:
const std::pair<const int, const int> pick_two_random_tasks() const;
// Indique pour une tâche si elle fait partie du projet
const Tache *contains(const int id) const;
const Tache *contains(const std::string name) const;
Tache *contains(const int id) const;
Tache *contains(const std::string name) const;
// Donne une version du vecteur de tâches non modifiable
const std::vector<Tache *> consult_tasks() const;

View file

@ -15,7 +15,7 @@ public:
const ProtoProjet &operator=(const ProtoProjet &); // copy assignement
// Remet tous les marquages à leur valeur initiale
void cleanMarks();
void cleanMarks() const;
// Insère une nouvelle tâche en la plaçant entre deux tâches au hasard
bool ajoute(const std::string nom, const int duree);

View file

@ -4,8 +4,6 @@
#include <iostream>
#include <vector>
struct Projet;
class Tache final {
// Compteur global pour les IDs
static int counter_id;
@ -14,9 +12,6 @@ class Tache final {
enum Etat { EnAttente, Realisee };
friend std::ostream &operator<<(std::ostream &, const Etat &);
// ID unique de la tâche
const int unique_id;
// Durée totale pour faire la tâche
int duree_total;
// Etat actuelle de la tâche
@ -24,16 +19,16 @@ class Tache final {
// Liste des dépendances
std::vector<Tache *> dependances;
// Nom de la tâche
std::string name;
friend std::ostream &operator<<(std::ostream &, const Tache &);
friend Projet;
// Auxilliaire pour simplifier les copies
void _copy(const Tache &);
public:
// ID unique de la tâche
const int unique_id;
// Nom de la tâche
std::string name;
// Vrai si la tâche à été visitée par le parcours en profondeur
bool visite;

View file

@ -4,7 +4,7 @@ Consultant::Consultant() { std::cout << "Hello, Consultant!\n"; }
Consultant::~Consultant() {}
Consultant::Consultant(const Consultant &) {}
Consultant::Consultant(const Consultant &) : Gestionnaire() {}
const Consultant &Consultant::operator=(const Consultant &src) {
if (this == &src) {

View file

@ -4,7 +4,7 @@ Expert::Expert() { std::cout << "Hello, Expert!\n"; }
Expert::~Expert() {}
Expert::Expert(const Expert &) {}
Expert::Expert(const Expert &) : Gestionnaire() {}
const Expert &Expert::operator=(const Expert &src) {
if (this == &src) {

View file

@ -1,18 +1,40 @@
#include "../includes/Projet.hpp"
Projet::Projet() : debut(Tache("Début", 0)), fin(Tache("Fin", 0)) {
fin.depends_from(debut);
Projet::Projet() : debut(new Tache("Début", 0)), fin(new Tache("Fin", 0)) {
fin->depends_from(*debut);
taches.push_back(fin);
taches.push_back(debut);
}
Projet::~Projet() {}
Projet::~Projet() { _free(); }
Projet::Projet(const Projet &src) : debut(src.debut), fin(src.fin) {}
void Projet::_copy(const Projet &src) {
// Copie des tâches
taches.reserve(src.taches.size());
for (Tache *t : src.taches) {
taches.push_back(new Tache(*t));
}
}
void Projet::_free() {
for (Tache *it : taches) {
delete it;
}
}
Projet::Projet(const Projet &src) : debut(src.debut), fin(src.fin) {
_copy(src);
}
const Projet &Projet::operator=(const Projet &src) {
if (this == &src) {
return *this;
}
debut = src.debut;
fin = src.fin;
_free();
_copy(src);
return *this;
}
@ -44,7 +66,7 @@ const std::pair<const int, const int> Projet::pick_two_random_tasks() const {
return std::make_pair(id1, id2);
}
const Tache *Projet::contains(const int id) const {
Tache *Projet::contains(const int id) const {
for (Tache *t : this->taches) {
if (id == t->unique_id) {
return t;
@ -54,7 +76,7 @@ const Tache *Projet::contains(const int id) const {
return nullptr;
}
const Tache *Projet::contains(const std::string name) const {
Tache *Projet::contains(const std::string name) const {
for (Tache *t : this->taches) {
if (name == t->name) {
return t;

View file

@ -14,12 +14,50 @@ const ProtoProjet &ProtoProjet::operator=(const ProtoProjet &src) {
return *this;
}
void ProtoProjet::cleanMarks() {
void ProtoProjet::cleanMarks() const {
for (auto t : taches) {
t->visite = false;
}
};
/* bool ProtoProjet::ajoute(std::string nom, int duree) {
return false;
} */
bool ProtoProjet::ajoute(const std::string nom, const int duree) {
// Sélection de 2 tâches au hasard
auto tasks = pick_two_random_tasks();
// Ajout des tâches
return ajoute(nom, duree, tasks.first, tasks.second);
}
bool ProtoProjet::ajoute(const std::string nom, const int duree, const int id) {
// Ajout de la tâche entre l'ID voulu et la tâche finale
return ajoute(nom, duree, id, fin->unique_id);
}
bool ProtoProjet::ajoute(const std::string nom, const int duree, const int id1,
const int id2) {
Tache *tache1 = contains(id1);
Tache *tache2 = contains(id2);
// Vérifie que les tâches avec les id1 et id2 existent bien dans la liste
if (!tache1 || !tache2) {
return false;
}
// Création des dépendances
Tache *tache = new Tache(nom, duree);
if (!tache1->ajouteDependance(*tache)) {
// Problème de dépendance
delete tache;
return false;
}
if (!tache->ajouteDependance(*tache2)) {
// Problème de dépendance
delete tache;
return false;
}
// Mise à jour du vecteur avec tri topologique
taches.push_back(tache);
taches = topologicalSort();
return true;
}

View file

@ -3,8 +3,8 @@
int Tache::counter_id = 0;
Tache::Tache(const std::string n, const int duree)
: unique_id(++counter_id), duree_total(duree), etat(EnAttente),
dependances(std::vector<Tache *>()), name(n) {}
: duree_total(duree), etat(EnAttente), dependances(std::vector<Tache *>()),
unique_id(++counter_id), name(n) {}
Tache::~Tache() {}
@ -17,7 +17,7 @@ void Tache::_copy(const Tache &src) {
}
Tache::Tache(const Tache &src)
: unique_id(++counter_id), duree_total(src.duree_total), etat(src.etat),
: duree_total(src.duree_total), etat(src.etat), unique_id(++counter_id),
name(src.name) {
_copy(src);
}