You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae2.02/src/Contact.cpp

182 lines
3.9 KiB

/**
* \file Contact.cpp
* \brief On implémente les différentes fonctions et méthodes définies dans les fichiers d'en-tête. La compilation de ce fichiers .cpp nous permettra d'utiliser dans le main ces fonctions
Il inclut les définitions à partir d'un en-tête.
* \author Matis MAZINGUE Joan PIERRON Maxence LANONE Hugo PRADIER G7
* \date 31 Mars 2022
*/
#include <iostream>
#include "Contact.hpp"
using namespace std;
using namespace reseau;
/**
* @brief Construct a new Contact:: Contact object
*
* @param Proprietaire
*/
Contact::Contact(const Personne& Proprietaire): Proprietaire{Proprietaire} {
// cout << "Contact créé " << Proprietaire << "\n";
}
/**
* @brief getter to get propriétaire
*
* @return const Personne&
*/
const Personne& Contact::getProprio() const {
return this->Proprietaire;
}
/**
* @brief
*
* @param unContact
* @return true
* @return false
*/
bool Contact::ajouterContact(const Personne& unContact){
if(lesContacts.empty()){
// cout << "Contact ajouté " << unContact <<"\n";
lesContacts.push_back(&unContact);
return true;
}
if(unContact==Proprietaire)
{
cout << "Erreur : Contact déjà existant (Proprietaire)\n";
return false;
}
list<const Personne*>::iterator it = find(lesContacts.begin(), lesContacts.end(), &unContact);
if(it!=lesContacts.end()){
cout << "Erreur : Personne déjà dans vos contacts : " << unContact << "\n";
return false;
}
else {
// cout << "Contact ajouté " << unContact <<"\n";
lesContacts.push_back(&unContact);
return true;
}
}
/**
* @brief
*
* @param unContact
* @return true
* @return false
*/
bool Contact::rechercher(const Personne& unContact){
list<const Personne*>::iterator it = find(lesContacts.begin(), lesContacts.end(),&unContact);
if(it != lesContacts.end())
{
cout << "trouvé : " << unContact << "\n";
return true;
}
else
{
cout << "pas trouvé\n";
return false;
}
lesContacts.sort();
}
/**
* @brief
*
* @param unContact
* @return true
* @return false
*/
bool Contact::supprimerContact(const Personne& unContact){
list<const Personne*>::iterator it = find(lesContacts.begin(), lesContacts.end(), &unContact);
if(it!=lesContacts.end()){
lesContacts.erase(it);
cout << "Contact " << unContact << " supprimé\n";
return true;
}
else {
cout << "Erreur : le contact n'existe pas\n";
return false;
}
}
/**
* @brief
*
*/
void Contact::afficherContactDirect() {
cout << " Les contacts directs de " << this->Proprietaire << " sont : ";
for(list<const Personne*>::const_iterator it = lesContacts.cbegin(); it != lesContacts.cend(); ++it){
if(it==lesContacts.cbegin())
cout << **it;
else
cout << ", " << **it;
}
if(lesContacts.empty())
cout << "Aucun contact ";
cout << "\n";
}
/**
* @brief
*
* @param Contacts
* @param set
*/
void Contact::Recursive(list<Contact*> Contacts, set<const Personne*>* set) {
for(const Personne* Personne : lesContacts) {
if(set->find(Personne)!=set->end())
continue;
set->insert(Personne);
for(Contact* contact : Contacts) {
if(*Personne == contact->getProprio()) {
contact->Recursive(Contacts,set);
}
}
}
}
/**
* @brief
*
* @param Contacts
*/
void Contact::afficherContactIndirect(list<Contact*> Contacts) {
cout << " Les contacts directs et indirects de " << this->Proprietaire << " sont : ";
set<const Personne*> lesPersonnes{};
Recursive(Contacts,&lesPersonnes);
if(lesPersonnes.empty())
cout << "Aucun contact ";
for(const Personne* Personne : lesPersonnes)
cout << *Personne << " ";
cout << "\n";
}
/**
* @brief
*
* @param os
* @param p
* @return ostream&
*/
ostream& reseau::operator<<(ostream& os, Personne p){
return os << p.getPrenom();
}
/**
* @brief
*
* @param p1
* @param p2
* @return true
* @return false
*/
bool reseau::operator==(reseau::Personne p1, reseau::Personne p2){
if(p1.getPrenom()==p2.getPrenom())
return true;
return false;
}