/* SleepLib Profiles Implementation Author: Mark Watkins License: GPL */ #include #include #include #include #include #include "preferences.h" #include "profiles.h" #include "machine.h" #include "machine_loader.h" #include "tinyxml/tinyxml.h" Preferences *p_pref; Preferences *p_layout; Profile::Profile() :Preferences(),is_first_day(true) { p_name=wxT("Profile"); p_path=pref.Get("{home}{sep}Profiles"); machlist.clear(); m_first=m_last=wxInvalidDateTime; } Profile::Profile(wxString path) :Preferences(),is_first_day(true) { const wxString xmlext=wxT(".xml"); p_name=wxT("Profile"); if (path.IsEmpty()) p_path=GetAppRoot(); else p_path=path; wxString sep=wxFileName::GetPathSeparator(); (*this)["DataFolder"]=p_path; if (!p_path.EndsWith(sep)) p_path+=sep; p_filename=p_path+p_name+xmlext; machlist.clear(); m_first=m_last=wxInvalidDateTime; } Profile::~Profile() { for (map::iterator i=machlist.begin(); i!=machlist.end(); i++) { delete i->second; } } void Profile::LoadMachineData() { for (map::iterator i=machlist.begin(); i!=machlist.end(); i++) { i->second->Load(); } } /** * @brief Machine XML section in profile. * @param root */ void Profile::ExtraLoad(TiXmlHandle *root) { TiXmlElement *elem; elem=root->FirstChild("Machines").FirstChild().Element(); if (!elem) { wxLogDebug(wxT("ExtraLoad: Elem is empty!!!")); } for(; elem; elem=elem->NextSiblingElement()) { wxString pKey(elem->Value(),wxConvUTF8); assert(pKey==wxT("Machine")); int m_id; elem->QueryIntAttribute("id",&m_id); int mt; elem->QueryIntAttribute("type",&mt); MachineType m_type=(MachineType)mt; wxString m_class(elem->Attribute("class"),wxConvUTF8); Machine *m; if (m_type==MT_CPAP) m=new CPAP(this,m_id); else if (m_type==MT_OXIMETER) m=new Oximeter(this,m_id); else if (m_type==MT_SLEEPSTAGE) m=new SleepStage(this,m_id); else m=new Machine(this,m_id); m->SetClass(m_class); AddMachine(m); TiXmlElement *e=elem->FirstChildElement(); for (; e; e=e->NextSiblingElement()) { //wxString type(attr->Value(),wxConvUTF8); wxString pKey(e->Value(),wxConvUTF8); wxString pText(e->GetText(),wxConvUTF8); m->properties[pKey]=pText; } } } void Profile::AddMachine(Machine *m) { assert(m!=NULL); machlist[m->id()]=m; }; void Profile::DelMachine(Machine *m) { assert(m!=NULL); machlist.erase(m->id()); }; TiXmlElement * Profile::ExtraSave() { TiXmlElement *mach=new TiXmlElement("Machines"); for (map::iterator i=machlist.begin(); i!=machlist.end(); i++) { TiXmlElement *me=new TiXmlElement("Machine"); Machine *m=i->second; //wxString t=wxT("0x")+m->hexid(); me->SetAttribute("id",m->id()); me->SetAttribute("type",m->GetType()); me->SetAttribute("class",m->GetClass().mb_str()); i->second->properties[wxT("path")]=wxT("{DataFolder}{sep}")+m->hexid(); for (map::iterator j=i->second->properties.begin(); j!=i->second->properties.end(); j++) { TiXmlElement *mp=new TiXmlElement(j->first.mb_str()); mp->LinkEndChild(new TiXmlText(j->second.mb_str())); me->LinkEndChild(mp); } mach->LinkEndChild(me); } //root->LinkEndChild(mach); return mach; } void Profile::AddDay(wxDateTime date,Day *day,MachineType mt) { //date+=wxTimeSpan::Day(); if (is_first_day) { m_first=m_last=date; is_first_day=false; } if (m_first>date) m_first=date; if (m_last & dl=daylist[date]; for (vector::iterator a=dl.begin();a!=dl.end();a++) { if ((*a)->machine->GetType()==mt) { throw OneTypePerDay(); } } daylist[date].push_back(day); } /** * @brief Import Machine Data * @param path */ void Profile::Import(wxString path) { int c=0; wxLogMessage(wxT("Importing ")+path); listloaders=GetLoaders(); for (list::iterator i=loaders.begin(); i!=loaders.end(); i++) { c+=(*i)->Open(path,this); } } vector Profile::GetMachines(MachineType t) // Returns a vector containing all machine objects regisered of type t { vector vec; map::iterator i; for (i=machlist.begin(); i!=machlist.end(); i++) { assert(i->second!=NULL); if (i->second->GetType()==t) { vec.push_back(i->second); } } return vec; } Profile *profile=NULL; wxString SHA1(wxString pass) { return pass; } namespace Profiles { std::map profiles; void Done() { pref.Save(); layout.Save(); for (map::iterator i=profiles.begin(); i!=profiles.end(); i++) { i->second->Save(); delete i->second; } profiles.clear(); delete p_pref; delete p_layout; } Profile *Get(wxString name) { return profiles[name]; } Profile *Create(wxString name,wxString realname,wxString password) { wxString path=pref.Get("{home}{sep}Profiles"); if (!wxDirExists(path)) wxMkdir(path); path+=wxFileName::GetPathSeparator()+name; if (!wxDirExists(path)) wxMkdir(path); Profile *prof=new Profile(path); prof->Open(); profiles[name]=prof; prof->Set("Username",name); prof->Set("Realname",realname); if (!password.IsEmpty()) prof->Set("Password",SHA1(password)); prof->Set("DataFolder",wxT("{home}{sep}Profiles{sep}{Username}")); return prof; } Profile *Get() { return profile; } /** * @brief Scan Profile directory loading user profiles */ void Scan() { p_pref=new Preferences(wxT("Preferences")); p_layout=new Preferences(wxT("Layout")); pref.Open(); layout.Open(); wxString path=pref.Get("{home}{sep}Profiles"); if (!wxDirExists(path)) { wxString tmp=pref.Get("{home}"); //wxLogMessage(wxT("zzz")+tmp); if (!wxDirExists(tmp)) wxMkdir(tmp); Create(wxGetUserId(),wxGetUserName(),wxT("")); return; } wxDir dir; dir.Open(path); // windows beyatching doesn'topen it. if (!dir.IsOpened()) { wxLogError(wxT("Wierded out opening ")+path); return; } wxString filename; bool cont=dir.GetFirst(&filename); list names; while (cont) { names.push_back(filename); cont=dir.GetNext(&filename); } if (names.size()==0) { Create(wxGetUserId(),wxGetUserName(),wxT("")); return; } for (list::iterator i=names.begin(); i!=names.end(); i++) { wxString newpath=path+wxFileName::GetPathSeparator()+filename; Profile *prof=new Profile(newpath); prof->Open(); profiles[filename]=prof; } } }; // namespace Profiles