From 7544bb9862b5585dd80404fd25dab1cf78ababd0 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Fri, 5 Apr 2024 09:06:42 +0200 Subject: [PATCH] 1.7.09 ajoute un temps d'attente --- core/class/jsondb/JsonDb.class.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/core/class/jsondb/JsonDb.class.php b/core/class/jsondb/JsonDb.class.php index d2accba..0bfa5a7 100644 --- a/core/class/jsondb/JsonDb.class.php +++ b/core/class/jsondb/JsonDb.class.php @@ -18,9 +18,12 @@ class JsonDb extends \Prowebcraft\Dot protected $db = ''; protected $data = null; protected $config = []; - +// Tentative d'encodage après échec const MAX_JSON_ENCODE_ATTEMPTS = 5; +// Tentative d'écriture après échec const MAX_FILE_WRITE_ATTEMPTS = 5; + // Délais entre deux tentaives + const RETRY_DELAY_SECONDS = 1; public function __construct($config = []) { @@ -156,6 +159,7 @@ class JsonDb extends \Prowebcraft\Dot $attempts++; error_log('Erreur d\'encodage JSON (tentative ' . $attempts . ') : ' . json_last_error_msg()); $jsonData = json_encode($this->data, $jsonOptions); // Réessayer l'encodage + sleep(self::RETRY_DELAY_SECONDS); // Attendre avant de réessayer } if ($jsonData === false) { @@ -174,6 +178,7 @@ class JsonDb extends \Prowebcraft\Dot if ($bytesWritten === false) { $attempts++; error_log('Erreur d\'écriture (tentative ' . $attempts . ') : impossible de sauvegarder les données.'); + sleep(self::RETRY_DELAY_SECONDS); // Attendre avant de réessayer } } flock($lockHandle, LOCK_UN); @@ -192,5 +197,8 @@ class JsonDb extends \Prowebcraft\Dot return true; } + + + } \ No newline at end of file