Package draftdb

Source Code of draftdb.ParseurXML

package draftdb;

import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.jdom2.Document;
import org.jdom2.Element;
import org.jdom2.JDOMException;
import org.jdom2.input.JDOMParseException;
import org.jdom2.input.SAXBuilder;

public class ParseurXML {

    private File fichier;
    private Document document;
    private HashMap<Integer, Coureur> coureurs;
    private HashMap<Integer, Equipe> equipes;
    private Integer idEquipeJoueur;
    
    private static final int DYN_COACH = 6;
    private static final int DYN_CONTRACT_CYCLIST = 7;
    private static final int DYN_CYCLIST = 9;
    private static final int DYN_PHYSICIAN = 25;
    private static final int DYN_SCOUT = 28;
    private static final int DYN_SPONSOR = 32;
    private static final int DYN_TEAM = 36;
    private static final int GAM_USER = 51;
    private static final int STA_REGION = 95;
 
    public ParseurXML(File fichier) {
       
        this.fichier = fichier;
        this.coureurs = new HashMap<>();
        this.equipes = new HashMap<>();
       
        try {
            SAXBuilder saxBuilder = new SAXBuilder();
            this.document = saxBuilder.build(fichier);
           
        } catch (JDOMException | IOException ex) {
            if (ex instanceof JDOMParseException) {
                JDOMParseException exJDOMParse = (JDOMParseException) ex;
                System.out.println("colonne : " + exJDOMParse.getColumnNumber());
                System.out.println("ligne : " + exJDOMParse.getLineNumber());
               
            }
            Logger.getLogger(ParseurXML.class.getName()).log(Level.SEVERE, null, ex);
        }
       
    }
   
    public void recupererCoureurs() {
       
        Element racine = this.document.getRootElement();
       
        HashMap<Integer, Integer> contratsCoureurs = new HashMap<>();
        Element tDYN_contract_cyclist = racine.getChildren().get(DYN_CONTRACT_CYCLIST);
        int nbContrats = Integer.parseInt(tDYN_contract_cyclist.getAttributeValue("NumRows"));
       
        for (int numContrat = 0; numContrat < nbContrats; numContrat++) {
           
            // IDcontract_cyclist
            Integer idContrat = Integer.parseInt(tDYN_contract_cyclist.getChildren().get(0).getChildren().get(numContrat).getValue());
            // finan_i_periode_wage
            Integer salaire = Integer.parseInt(tDYN_contract_cyclist.getChildren().get(3).getChildren().get(numContrat).getValue());
            contratsCoureurs.put(idContrat, salaire);
           
        }
       
        HashMap<Integer, Integer> regionsPays = new HashMap<>();
        Element tSTA_region = racine.getChildren().get(STA_REGION);
        int nbRegions = Integer.parseInt(tSTA_region.getAttributeValue("NumRows"));
       
        for (int numRegions = 0; numRegions < nbRegions; numRegions++) {
           
            // IDregion
            Integer idRegion = Integer.parseInt(tSTA_region.getChildren().get(0).getChildren().get(numRegions).getValue());
            // fkIDcountry
            Integer idPays = Integer.parseInt(tSTA_region.getChildren().get(3).getChildren().get(numRegions).getValue());
            regionsPays.put(idRegion, idPays);
           
        }
       
        Element tDYN_cyclist = racine.getChildren().get(DYN_CYCLIST);
        int nbCoureurs = Integer.parseInt(tDYN_cyclist.getAttributeValue("NumRows"));
       
        // Boucle de recuperation des informations presentes dans la table DYN_cyclist
        for (int numCoureur = 0; numCoureur < nbCoureurs; numCoureur++) {
           
            // IDcyclist
            Integer IDcyclist = Integer.parseInt(tDYN_cyclist.getChildren().get(0).getChildren().get(numCoureur).getValue());
            // gene_sz_lastname
            String gene_sz_lastname = tDYN_cyclist.getChildren().get(1).getChildren().get(numCoureur).getValue();
            // gene_sz_firstname
            String gene_sz_firstname = tDYN_cyclist.getChildren().get(2).getChildren().get(numCoureur).getValue();
            // fkIDteam
            Integer fkIDteam = Integer.parseInt(tDYN_cyclist.getChildren().get(4).getChildren().get(numCoureur).getValue());
           
            // Creation du coureur
            Coureur coureur = new Coureur(IDcyclist, gene_sz_lastname, gene_sz_firstname, fkIDteam);
           
            // gene_sz_firstlastname
            coureur.setNom_prenom(tDYN_cyclist.getChildren().get(3).getChildren().get(numCoureur).getValue());
            // value_f_current_evaluation (float)
            coureur.setMoyenne(Float.parseFloat(tDYN_cyclist.getChildren().get(12).getChildren().get(numCoureur).getValue()));
            // charac_i_plain
            coureur.setPlaine(Integer.parseInt(tDYN_cyclist.getChildren().get(35).getChildren().get(numCoureur).getValue()));
            // charac_i_mountain
            coureur.setMontagne(Integer.parseInt(tDYN_cyclist.getChildren().get(38).getChildren().get(numCoureur).getValue()));
            // charac_i_downhilling
            coureur.setDescente(Integer.parseInt(tDYN_cyclist.getChildren().get(41).getChildren().get(numCoureur).getValue()));
            // charac_i_cobble
            coureur.setPaves(Integer.parseInt(tDYN_cyclist.getChildren().get(44).getChildren().get(numCoureur).getValue()));
            // charac_i_timetrial
            coureur.setClm(Integer.parseInt(tDYN_cyclist.getChildren().get(47).getChildren().get(numCoureur).getValue()));
            // charac_i_prologue
            coureur.setPrologue(Integer.parseInt(tDYN_cyclist.getChildren().get(50).getChildren().get(numCoureur).getValue()));
            // charac_i_sprint
            coureur.setSprint(Integer.parseInt(tDYN_cyclist.getChildren().get(53).getChildren().get(numCoureur).getValue()));
            // charac_i_acceleration
            coureur.setAcceleration(Integer.parseInt(tDYN_cyclist.getChildren().get(56).getChildren().get(numCoureur).getValue()));
            // charac_i_endurance
            coureur.setEndurance(Integer.parseInt(tDYN_cyclist.getChildren().get(59).getChildren().get(numCoureur).getValue()));
            // charac_i_resistance
            coureur.setResistance(Integer.parseInt(tDYN_cyclist.getChildren().get(62).getChildren().get(numCoureur).getValue()));
            // charac_i_recuperation
            coureur.setRecuperation(Integer.parseInt(tDYN_cyclist.getChildren().get(65).getChildren().get(numCoureur).getValue()));
            // charac_i_hill
            coureur.setVallons(Integer.parseInt(tDYN_cyclist.getChildren().get(68).getChildren().get(numCoureur).getValue()));
            // charac_i_baroudeur
            coureur.setBaroudeur(Integer.parseInt(tDYN_cyclist.getChildren().get(71).getChildren().get(numCoureur).getValue()));
            // fkIDcontract
            Integer fkIDcontract = Integer.parseInt(tDYN_cyclist.getChildren().get(5).getChildren().get(numCoureur).getValue());
            Integer salaireDefaut = Integer.max(2500, (int)(11203.7 * coureur.getMoyenne() - 736944));
            Integer salaire = contratsCoureurs.containsKey(fkIDcontract) ? contratsCoureurs.get(fkIDcontract) : salaireDefaut;
            coureur.setSalaire(salaire);
            // fkIDtype_rider
            coureur.setIdOrientation(Integer.parseInt(tDYN_cyclist.getChildren().get(16).getChildren().get(numCoureur).getValue()));
            // fkIDregion
            Integer fkIDregion = Integer.parseInt(tDYN_cyclist.getChildren().get(15).getChildren().get(numCoureur).getValue());
            coureur.setIdPays(regionsPays.get(fkIDregion));
            // gene_i_birthdate
            // System.out.print(tDYN_cyclist.getChildren().get(7).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // gene_f_popularity (float)
            // System.out.print(tDYN_cyclist.getChildren().get(8).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // value_i_potentiel
            // System.out.print(tDYN_cyclist.getChildren().get(11).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // fkIDregion
            // System.out.print(tDYN_cyclist.getChildren().get(14).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // rank_f_orientation_ardennaises (float)
            // System.out.print(tDYN_cyclist.getChildren().get(95).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // rank_f_orientation_flandriennes (float)
            // System.out.print(tDYN_cyclist.getChildren().get(96).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // rank_f_orientation_tour (float)
            // System.out.print(tDYN_cyclist.getChildren().get(97).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
            // rank_f_orientation_sprint (float)
            // System.out.print(tDYN_cyclist.getChildren().get(98).getChildren().get(numCoureur).getValue());
            // System.out.print(" ");
           
            // Ajout du coureur a la hashmap contenant la liste des coureurs
            this.coureurs.put(IDcyclist, coureur);
       
        }
       
    }
    public HashMap<Integer, Coureur> getCoureurs() {
        return this.coureurs;
    }
    public Coureur getCoureur(int idCoureur) {
        return this.coureurs.get(idCoureur);
    }
   
    public void recupererEquipes() {
       
        Element racine = this.document.getRootElement();
       
        // Récupération des budgets d'équipe
        HashMap<Integer, Integer> budgetsSponsors = new HashMap<>();
        Element tDYN_sponsor = racine.getChildren().get(DYN_SPONSOR);
        int nbSponsors = Integer.parseInt(tDYN_sponsor.getAttributeValue("NumRows"));
       
        for (int numSponsor = 0; numSponsor < nbSponsors; numSponsor++) {
            // IDsponsor
            Integer idSponsor = Integer.parseInt(tDYN_sponsor.getChildren().get(0).getChildren().get(numSponsor).getValue());
            // value_i_budget
            Integer budget = Integer.parseInt(tDYN_sponsor.getChildren().get(6).getChildren().get(numSponsor).getValue());
           
            budgetsSponsors.put(idSponsor, budget / 12);
        }
       
        // Récupération des informations sur les équipes
        Element tDYN_team = racine.getChildren().get(DYN_TEAM);
        int nbTeams = Integer.parseInt(tDYN_team.getAttributeValue("NumRows"));

        for (int numTeam = 0; numTeam < nbTeams; numTeam++) {
           
            // IDteam
            Integer IDteam = Integer.parseInt(tDYN_team.getChildren().get(0).getChildren().get(numTeam).getValue());
            // gene_sz_name
            String gene_sz_name = tDYN_team.getChildren().get(1).getChildren().get(numTeam).getValue();
            if (!gene_sz_name.equals("-")) {
                // Creation de l'equipe
                Equipe equipe = new Equipe(IDteam, gene_sz_name);

                // fkIDcountry
                equipe.setIdPays(Integer.parseInt(tDYN_team.getChildren().get(5).getChildren().get(numTeam).getValue()));
                // fkIDdivision
                equipe.setIdDivision(Integer.parseInt(tDYN_team.getChildren().get(8).getChildren().get(numTeam).getValue()));  
                // fkIDsponsor
                Integer fkIdSponsor = Integer.parseInt(tDYN_team.getChildren().get(4).getChildren().get(numTeam).getValue());
                // fkIDtype_rider_orientation1
                Integer fkIDtype_rider_orientation1 = Integer.parseInt(tDYN_team.getChildren().get(19).getChildren().get(numTeam).getValue());
                equipe.setIdOrientationCoureurs1(fkIDtype_rider_orientation1);
                // fkIDtype_rider_orientation2
                Integer fkIDtype_rider_orientation2 = Integer.parseInt(tDYN_team.getChildren().get(20).getChildren().get(numTeam).getValue());
                equipe.setIdOrientationCoureurs2(fkIDtype_rider_orientation2);   
                // fkIDtype_rider_orientation3
                Integer fkIDtype_rider_orientation3 = Integer.parseInt(tDYN_team.getChildren().get(21).getChildren().get(numTeam).getValue());
                equipe.setIdOrientationCoureurs3(fkIDtype_rider_orientation3);
               
                // Récupération du budget pour le recrutement de coureur
                Integer budget = budgetsSponsors.containsKey(fkIdSponsor) ? budgetsSponsors.get(fkIdSponsor) : 0;
                equipe.setBudget(budget);

                // Ajout de l'equipe a la hashmap contenant la liste des equipes
                this.equipes.put(IDteam, equipe);
            }
           
        }
       
        Element tGAM_user = racine.getChildren().get(GAM_USER);
        // fkIDteam_duplicate
        idEquipeJoueur = Integer.parseInt(tGAM_user.getChildren().get(8).getChildren().get(0).getValue());
       
    }  
    public void modifierEquipe(int idCoureur, int idNouvelleEquipe) {
        //TODO : A optimiser, il n'est pas concevable de parcourir la totalité des coureurs autant de fois
        Element racine = this.document.getRootElement();
        Element tDYN_cyclist = racine.getChildren().get(9);
        int nbCoureurs = Integer.parseInt(tDYN_cyclist.getAttributeValue("NumRows"));
       
        for (int numCoureur = 0; numCoureur < nbCoureurs; numCoureur++) {
            if (idCoureur == Integer.parseInt(tDYN_cyclist.getChildren().get(0).getChildren().get(numCoureur).getValue())) {
                tDYN_cyclist.getChildren().get(4).getChildren().get(numCoureur).setText(Integer.toString(idNouvelleEquipe));
            }
        }
       
    }
    public Map<Integer, Equipe> getEquipes() {
        return this.equipes;
    }
    public Equipe getEquipe(int idEquipe) {
        return this.equipes.get(idEquipe);
    }   
   
    public Integer getIdEquipeJoueur() {
        return this.idEquipeJoueur;
    }
    public Equipe getEquipeJoueur() {
        return this.equipes.get(idEquipeJoueur);
    }
   
    public File getFichier() {
        return this.fichier;
    }
   
    public Document getDocument() {
        return this.document;
    }

   

}
TOP

Related Classes of draftdb.ParseurXML

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.