TD2_DEV51_Qualite_Algo/compte_rendu.md

97 lines
1.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Compte rendu TD2
## fichier *daemon.c*
**create_daemon**
<br>
```M = 4```
**ping_request**
<br>
```M = 2```
**send_check**
<br>
```M = 4```
**check_keep_working**
<br>
```M = 4```
**daemon_work**
<br>
```M = 3```
## fichier *db-sqlite.c*
**db_connect**
<br>
```M = 1```
**db_disconnect**
<br>
```M = 1```
**insert_hourly_report**
<br>
```M = 1```
## fichier *ping-report.c*
**main**
<br>
```M = 5```
## fichier *stats.c*
**get_ping_from_temp_log**
<br>
```M = 15```
Graph :
<br>
<img src="./src/Capture_decran_2024-09-17_115202.png" />
**write_ping_log**
<br>
```M = 4```
**set_stats_ping**
<br>
```M =25```
Graph :
<br>
<img src="./src/diagramme.png" />
## fichier *ping-report.c*
**write_pid_file**
<br>
```M = 2```
**remove_file**
<br>
```M = 1```
## Optimisation
### fichier *stats.c*
**get_ping_from_temp_log**
Pour optimiser cette fonction, nous avons décidé de retirer la boucle *while* de la fonction pour en faire une autre fonction qui va être appelée dans la fonction principale. Nous avons fait cela car la boucle *while* contenait le plus de chemins, et donc augmentait grandement le score de la complexité cyclomatique.
Graph :
**get_ping_from_temp_log**
<br>
```M = 7```
<br>
<img src="./src/Capture décran 2024-10-14 182936.png" />
**while_stat**
<br>
```M = 4```
<br>
<img src="./src/Capture décran 2024-10-14 182719.png" />