Update parser
This commit is contained in:
parent
1f12bca33f
commit
84c669f82a
5 changed files with 94 additions and 91 deletions
|
@ -12,14 +12,14 @@
|
||||||
#include "Website.hpp"
|
#include "Website.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
//Constructor
|
||||||
Website::Website(){
|
Website::Website(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//----- Getters -----
|
||||||
|
|
||||||
std::string Website::getTitle(){
|
std::string Website::getTitle(){
|
||||||
return this->title;
|
return this->title;
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@ std::string Website::getDescription(){
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//----- Setters -----
|
||||||
void Website::setTitle(std::string title){
|
void Website::setTitle(std::string title){
|
||||||
this->title = title;
|
this->title = title;
|
||||||
}
|
}
|
||||||
|
@ -56,6 +56,8 @@ void Website::setDescription(std::string description){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Equality comparator
|
||||||
bool Website::operator==(const Website& website) const{
|
bool Website::operator==(const Website& website) const{
|
||||||
if((this->getId()).compare(website.getId())==0){
|
if((this->getId()).compare(website.getId())==0){
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -64,9 +64,12 @@ class Website : public AbstractIDManager {
|
||||||
void setPassword(std::string password);
|
void setPassword(std::string password);
|
||||||
void setDescription(std::string description);
|
void setDescription(std::string description);
|
||||||
|
|
||||||
//bool operator==(Website const& website1, Website const& website2) const;
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Equality comparator
|
||||||
|
*/
|
||||||
bool operator==(const Website& website) const;
|
bool operator==(const Website& website) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
std::string title; ///< Title of the website
|
std::string title; ///< Title of the website
|
||||||
|
|
|
@ -35,8 +35,20 @@ FileManParser::FileManParser(std::string data){
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::string FileManParser::getDocument(){
|
||||||
|
std::string data=(this->document)->write_to_string();
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::vector<Website>* FileManParser::getWebsites(){
|
||||||
|
return this->websites;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//----------------Container part------------------------
|
||||||
void FileManParser::initWebsites(){
|
void FileManParser::initWebsites(){
|
||||||
this->websites=new std::vector<Website>;
|
this->websites=new std::vector<Website>;
|
||||||
|
|
||||||
|
@ -76,33 +88,18 @@ void FileManParser::initWebsites(){
|
||||||
}
|
}
|
||||||
else if(currentChild->get_name().compare("description")==0){
|
else if(currentChild->get_name().compare("description")==0){
|
||||||
newWebsite.setDescription(cdataContent);
|
newWebsite.setDescription(cdataContent);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this->websites->push_back(newWebsite);
|
this->websites->push_back(newWebsite);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
std::string FileManParser::getDocument(){
|
|
||||||
std::string data=(this->document)->write_to_string();
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
std::vector<Website>* FileManParser::getWebsites(){
|
|
||||||
return this->websites;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void FileManParser::updateParser(){
|
void FileManParser::updateParser(){
|
||||||
|
|
|
@ -9,6 +9,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef __FileManParser__
|
||||||
|
#define __FileManParser__
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----- std -----
|
//----- std -----
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
@ -24,7 +30,14 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @class FileManParser FileManParser.hpp "/ParserClass/FileManContainer/FileManParser.hpp"
|
||||||
|
* @brief Class for parser un xml file in a string.
|
||||||
|
* @author manzerbredes
|
||||||
|
*
|
||||||
|
* Parse string using libxml++ library.
|
||||||
|
*
|
||||||
|
*/
|
||||||
class FileManParser{
|
class FileManParser{
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,39 +47,68 @@ class FileManParser{
|
||||||
FileManParser(std::string data);
|
FileManParser(std::string data);
|
||||||
|
|
||||||
|
|
||||||
//Get document in string
|
/**
|
||||||
|
* @brief Get document in string
|
||||||
|
*
|
||||||
|
* @return a string that contain the document
|
||||||
|
*
|
||||||
|
* Return current document.
|
||||||
|
* To have an up-to-date document, please run updateParser() before.
|
||||||
|
*
|
||||||
|
*/
|
||||||
std::string getDocument();
|
std::string getDocument();
|
||||||
|
|
||||||
|
|
||||||
//Get container vector pointer:
|
/**
|
||||||
|
* @brief Write data in encrypted file.
|
||||||
|
*
|
||||||
|
* @return vector pointer that point to the vector of website in document
|
||||||
|
*
|
||||||
|
* You can modified this vector, and for apply change run updateParser()
|
||||||
|
*
|
||||||
|
*/
|
||||||
std::vector<Website>* getWebsites();
|
std::vector<Website>* getWebsites();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//Apply change that have made on container
|
/**
|
||||||
|
* @brief Update the parser
|
||||||
|
*
|
||||||
|
* Apply all modifications you have made on the vector object (example std::vector<Website>* websites).
|
||||||
|
*
|
||||||
|
*/
|
||||||
void updateParser();
|
void updateParser();
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
||||||
//Instaciate all website container
|
/**
|
||||||
|
* @brief Instanciate websites vector
|
||||||
|
*
|
||||||
|
* Read the document and create all Website object and put them into
|
||||||
|
* the websites vector attribute.
|
||||||
|
*
|
||||||
|
*/
|
||||||
void initWebsites();
|
void initWebsites();
|
||||||
|
|
||||||
|
|
||||||
//Parser attributes
|
//Parser attributes
|
||||||
std::stringstream dataStream;
|
std::stringstream dataStream; ///< Contain the document you want to parse
|
||||||
xmlpp::DomParser parser;
|
xmlpp::DomParser parser; ///< Contain the parser
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//Document attributes
|
//Document attributes
|
||||||
xmlpp::Document* document;
|
xmlpp::Document* document; ///< Contain the document (generate by the parser and dataStream)
|
||||||
xmlpp::Node* rootNode;
|
xmlpp::Node* rootNode; ///< Contain the root node of the document
|
||||||
|
|
||||||
|
|
||||||
//Website attributes
|
//Website attributes
|
||||||
xmlpp::Node* websitesNode;
|
xmlpp::Node* websitesNode; ///< Contain the websites node of the document
|
||||||
std::vector<Website> *websites;
|
std::vector<Website> *websites; ///< Contain all website of the document (you can modify it and run updateParser to apply all modifications).
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
81
main.cpp
81
main.cpp
|
@ -11,21 +11,22 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
//----- std -----
|
//----- std -----
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
//----- class -----
|
//----- class -----
|
||||||
#include "FileManIOFile.hpp"
|
#include "FileManIOFile.hpp"
|
||||||
#include "FileManParser.hpp"
|
#include "FileManParser.hpp"
|
||||||
#include "Website.hpp"
|
#include "Website.hpp"
|
||||||
|
|
||||||
#include <list>
|
|
||||||
#include <cstdlib>
|
|
||||||
#include <libxml++/nodes/node.h>
|
|
||||||
#include <libxml++/libxml++.h>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @fn int main(int argc, char *argv[])
|
* @fn int main(int argc, char *argv[])
|
||||||
|
@ -37,72 +38,30 @@
|
||||||
*/
|
*/
|
||||||
int main(int argc, char *argv[]){
|
int main(int argc, char *argv[]){
|
||||||
|
|
||||||
/*
|
|
||||||
FileManIOFile fichier("Doxygen/bob.bin");
|
|
||||||
|
|
||||||
fichier.read("loic");
|
//TEST PARSER FAKE ARGUMENT
|
||||||
|
FileManParser xmlParser("");
|
||||||
|
|
||||||
std::cout << fichier.getData();*/
|
std::vector<Website> *siteWeb=xmlParser.getWebsites();
|
||||||
|
|
||||||
|
siteWeb->erase(siteWeb->begin()+1);
|
||||||
|
|
||||||
|
xmlParser.updateParser();
|
||||||
|
|
||||||
|
|
||||||
std::stringstream xml;
|
//Save modification in file
|
||||||
xml <<"<?xml version=\"1.0\" standalone=\"yes\" ?>\n\
|
|
||||||
<forgetIt> \n\
|
FileManIOFile save("Doxygen/bob.bin");
|
||||||
<websites> \n\
|
|
||||||
\n\
|
save.write("loic", xmlParser.getDocument());
|
||||||
</websites> \n\
|
|
||||||
</forgetIt> \n\
|
//Print
|
||||||
";
|
std::cout << xmlParser.getDocument();
|
||||||
|
|
||||||
|
|
||||||
/*FileManParser parser(xml);
|
|
||||||
|
|
||||||
|
|
||||||
std::vector<Website> websites= parser.getContainer();
|
|
||||||
std::cout << typeid(websites.at(0)).name();*/
|
|
||||||
|
|
||||||
/*xmlpp::DomParser parser;
|
|
||||||
parser.parse_file("Doxygen/doc.xml");
|
|
||||||
xmlpp::Document* doc=parser.get_document();
|
|
||||||
const xmlpp::Node* pNode = doc->get_root_node(); //deleted by DomParser.
|
|
||||||
const Glib::ustring nom="news";
|
|
||||||
const Glib::ustring nm="";
|
|
||||||
xmlpp::Element* elem=(xmlpp::Element*)pNode;*/
|
|
||||||
|
|
||||||
//std::vector<xmlpp::Node*> websites=pNode->find("//websites/*/attribute::id");
|
|
||||||
/*
|
|
||||||
xmlpp::Element* ell=(xmlpp::Element*)websites.at(0);
|
|
||||||
ell->set_child_text("56");
|
|
||||||
elem->add_child(nom);
|
|
||||||
|
|
||||||
std::cout << doc->write_to_string();*/
|
|
||||||
//std::cout << (elem->get_child_text())->get_content();
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
FileManParser fichier("loic");
|
|
||||||
|
|
||||||
|
|
||||||
std::vector<Website> *bb=fichier.getWebsites();
|
|
||||||
|
|
||||||
|
|
||||||
Website a;
|
|
||||||
a.setTitle("pierre");
|
|
||||||
|
|
||||||
|
|
||||||
bb->push_back(a);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
fichier.updateParser();
|
|
||||||
|
|
||||||
std::cout << fichier.getDocument();
|
|
||||||
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue