fichierXml = $fichier; $this->fichierXmlSubst = str_replace(".xml", "", $fichier)."_subst.xml" ; $this->s = $s; $this->flag_order = false; } //Méthodes function debutBalise($parser, $nom, $attributs) { global $_starttag; $_starttag=true; if($nom == 'ENTRY' && $attributs['CODE']) $this->current = $attributs['CODE']; if($nom == 'ENTRY' && $attributs['ORDER']) { $this->flag_order = true; $this->order[$attributs['CODE']] = $attributs['ORDER']; } if($nom == 'XMLlist') { $this->table = array(); $this->fav = array(); } } //Méthodes function debutBaliseSubst($parser, $nom, $attributs) { global $_starttag; $_starttag=true; if($nom == 'ENTRY' && $attributs['CODE']) { $this->flag_elt = false ; $this->current = $attributs['CODE']; } if($nom == 'ENTRY' && $attributs['ORDER']) { $this->flag_order = true; $this->order[$attributs['CODE']] = $attributs['ORDER']; } if($nom == 'ENTRY' && $attributs['FAV']) { $this->flag_fav = $attributs['FAV']; } } function finBalise($parser, $nom) { // ICI pour affichage des codes des messages en dur if ($_COOKIE[SESSname."-CHECK-MESSAGES"]==1 && strpos($this->fichierXml, "messages")) { $this->table[$this->current] = "__".$this->current."**".$this->table[$this->current]; } $this->current = ''; } function finBaliseSubst($parser, $nom) { // ICI pour affichage des codes des messages en dur if ($_COOKIE[SESSname."-CHECK-MESSAGES"]==1 && strpos($this->fichierXml, "messages")) { $this->table[$this->current] = "__".$this->current."**".$this->table[$this->current]; } if ((!$this->flag_elt) && ($nom=='ENTRY')) unset($this->table[$this->current]) ; $this->current = ''; $this->flag_fav = false; } function texte($parser, $data) { global $_starttag; if($this->current) if ($_starttag) { $this->table[$this->current] = $data; $_starttag=false; } else $this->table[$this->current] .= $data; } function texteSubst($parser, $data) { global $_starttag; $this->flag_elt = true ; if ($this->current) { if ($_starttag) { $this->table[$this->current] = $data; $_starttag=false; } else $this->table[$this->current] .= $data; $this->tablefav[$this->current] = $this->flag_fav; } } // Modif Armelle Nedelec recherche de l'encodage du fichier xml et transformation en charset' function analyser() { global $charset; global $base_path; if (!($fp = @fopen($this->fichierXml, "r"))) { die("impossible d'ouvrir le fichier XML $this->fichierXml"); } //vérification fichier pseudo-cache dans les temporaires $fileInfo = pathinfo($this->fichierXml); if($this->fichierXmlSubst && file_exists($this->fichierXmlSubst)){ $tempFile = $base_path."/temp/XMLWithSubst".preg_replace("/[^a-z0-9]/i","",$fileInfo['dirname'].$fileInfo['filename'].$charset).".tmp"; $with_subst=true; }else{ $tempFile = $base_path."/temp/XML".preg_replace("/[^a-z0-9]/i","",$fileInfo['dirname'].$fileInfo['filename'].$charset).".tmp"; $with_subst=false; } $dejaParse = false; if(file_exists($tempFile)){ //Le fichier XML original a-t-il été modifié ultérieurement ? if(filemtime($this->fichierXml)>filemtime($tempFile)){ //on va re-générer le pseudo-cache unlink($tempFile); } else { //On regarde aussi si le fichier subst à été modifié après le fichier temp if($with_subst){ if(filemtime($this->fichierXmlSubst)>filemtime($tempFile)){ //on va re-générer le pseudo-cache unlink($tempFile); } else { $dejaParse = true; } }else{ $dejaParse = true; } } } if($dejaParse){ fclose($fp); $tmp = fopen($tempFile, "r"); $this->table = unserialize(fread($tmp,filesize($tempFile))); fclose($tmp); } else { $file_size=filesize ($this->fichierXml); $data = fread ($fp, $file_size); $rx = "//m"; if (preg_match($rx, $data, $m)) $encoding = strtoupper($m[1]); else $encoding = "ISO-8859-1"; $this->analyseur = xml_parser_create($encoding); xml_parser_set_option($this->analyseur, XML_OPTION_TARGET_ENCODING, $charset); xml_parser_set_option($this->analyseur, XML_OPTION_CASE_FOLDING, true); xml_set_object($this->analyseur, $this); xml_set_element_handler($this->analyseur, "debutBalise", "finBalise"); xml_set_character_data_handler($this->analyseur, "texte"); fclose($fp); if ( !xml_parse( $this->analyseur, $data, TRUE ) ) { die( sprintf( "erreur XML %s à la ligne: %d ( $this->fichierXml )\n\n", xml_error_string(xml_get_error_code( $this->analyseur ) ), xml_get_current_line_number( $this->analyseur) ) ); } xml_parser_free($this->analyseur); if ($fp = @fopen($this->fichierXmlSubst, "r")) { $file_sizeSubst=filesize ($this->fichierXmlSubst); if($file_sizeSubst) { $data = fread ($fp, $file_sizeSubst); fclose($fp); $rx = "//m"; if (preg_match($rx, $data, $m)) $encoding = strtoupper($m[1]); else $encoding = "ISO-8859-1"; $this->analyseur = xml_parser_create($encoding); xml_parser_set_option($this->analyseur, XML_OPTION_TARGET_ENCODING, $charset); xml_parser_set_option($this->analyseur, XML_OPTION_CASE_FOLDING, true); xml_set_object($this->analyseur, $this); xml_set_element_handler($this->analyseur, "debutBaliseSubst", "finBaliseSubst"); xml_set_character_data_handler($this->analyseur, "texteSubst"); if ( !xml_parse( $this->analyseur, $data, TRUE ) ) { die( sprintf( "erreur XML %s à la ligne: %d ( $this->fichierXmlSubst )\n\n", xml_error_string(xml_get_error_code( $this->analyseur ) ), xml_get_current_line_number( $this->analyseur) ) ); } xml_parser_free($this->analyseur); } } if ($this->s && is_array($this->table)) { reset($this->table); $tmp=array(); $tmp=array_map("convert_diacrit",$this->table);//On enlève les accents $tmp=array_map("strtoupper",$tmp);//On met en majuscule asort($tmp);//Tri sur les valeurs en majuscule sans accent foreach ( $tmp as $key => $value ) { $tmp[$key]=$this->table[$key];//On reprend les bons couples clé / libellé } $this->table=$tmp; } if($this->flag_order == true){ $table_tmp = array(); asort($this->order); foreach ($this->order as $key =>$value){ $table_tmp[$key] = $this->table[$key]; unset($this->table[$key]); } $this->table = $table_tmp + $this->table;//array_merge réécrivait les clés numériques donc problème. } //on écrit le temporaire $tmp = fopen($tempFile, "wb"); fwrite($tmp,serialize($this->table)); fclose($tmp); } } } } # fin de définition