Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added unit tests for the ALTID, PID & PREF properties for the MEMBER vCard property.
[xestiaab/.git] / source / contacteditor / ContactDataObject.cpp
index 49a5f2c..8fb6a39 100644 (file)
@@ -73,8 +73,10 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
        bool ExtraLineSeek = TRUE;
        bool QuoteMode = FALSE;
        bool PropertyFind = TRUE;
+       bool KindProcessed = FALSE;
        int ContactLineLen = 0;
        int QuoteBreakPoint = 0;
+       int GroupCount = 0;
        wxString ContactLine;
        wxString PropertyLine;
        wxString PropertySeg1;
@@ -173,10 +175,192 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
                PropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
                PropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
                
+                if (Property == wxT("KIND") && KindProcessed == FALSE){
+               
+                       // See frmContactEditor-LoadGroup.cpp
+               
+                       ProcessKind(PropertySeg2);
+               
+               } else if (Property == wxT("MEMBER")){
+
+                       // See frmContactEditor-LoadGroup.cpp
+
+                       ProcessMember(PropertySeg1, PropertySeg2, &GroupCount);
+                       GroupCount++;   
+               
+               }
                
-        
        }
        
        return CONTACTLOAD_OK;
 
+}
+
+void ContactDataObject::ProcessKind(wxString KindType){
+
+       if (KindType == wxT("individual")){
+                       
+               ContactKind = CONTACTKIND_INDIVIDUAL;
+                       
+       } else if (KindType == wxT("group")){
+                       
+               ContactKind = CONTACTKIND_GROUP;
+                       
+       } else if (KindType == wxT("org")){
+                       
+               ContactKind = CONTACTKIND_ORGANISATION;
+                       
+       } else if (KindType == wxT("location")){
+                       
+               ContactKind = CONTACTKIND_LOCATION;
+                       
+       } else {
+                       
+               ContactKind = CONTACTKIND_NONE;                 
+       }
+
+}
+
+void ContactDataObject::ProcessMember(wxString PropertySeg1, wxString PropertySeg2, int *GroupCount){
+
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+
+       int intPrevValue = 8;
+       int intPref = 0;                        
+       int intType = 0;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+
+       intPrevValue = 7;
+       
+       // Look for type before continuing.
+       
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyData;
+       wxString PropertyTokens;
+       std::map<int,int>::iterator SLiter;
+       bool FirstToken = TRUE;
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+       
+               SLiter = SplitLength.find(intiter->first);
+       
+               PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
+               
+               wxStringTokenizer PropertyElement (PropertyData, wxT("="));
+               PropertyName = PropertyElement.GetNextToken();                          
+               PropertyValue = PropertyElement.GetNextToken();
+               
+               intPrevValue = intiter->second;
+               
+               CaptureString(&PropertyValue, FALSE);
+               
+               //ContactProcess::ContactProcessCaptureStrings(&PropertyValue);
+       
+               if (PropertyName == wxT("ALTID")){
+
+                       GroupsListAltID.erase(*GroupCount);
+                       GroupsListAltID.insert(std::make_pair(*GroupCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       GroupsListPID.erase(*GroupCount);
+                       GroupsListPID.insert(std::make_pair(*GroupCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PREF")){
+
+                       int PriorityNumber = 0;
+                       bool ValidNumber = TRUE;
+                       
+                       try{
+                               PriorityNumber = std::stoi(PropertyValue.ToStdString());
+                       }
+                       
+                       catch(std::invalid_argument &e){
+                               ValidNumber = FALSE;
+                       }
+
+                       if (ValidNumber == TRUE){
+
+                               GroupsListPref.erase(*GroupCount);
+                               GroupsListPref.insert(std::make_pair(*GroupCount, PriorityNumber));
+               
+                       }
+               
+               } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
+                       
+                       if (FirstToken == TRUE){
+                               
+                               PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                               FirstToken = FALSE;
+                               
+                       } else {
+                       
+                               PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                       }
+                       
+               }
+               
+       }
+
+       //SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+
+       GroupsList.insert(std::make_pair(*GroupCount, PropertySeg2));
+
+
+}
+
+void SplitValues(wxString *PropertyLine, 
+       std::map<int,int> *SplitPoints, 
+       std::map<int,int> *SplitLength, 
+       int intSize){
+       
+       size_t intPropertyLen = PropertyLine->Len();
+       int intSplitsFound = 0;
+       int intSplitSize = 0;
+       int intSplitSeek = 0;
+       
+       for (int i = intSize; i <= intPropertyLen; i++){
+
+               intSplitSize++;
+       
+               if (PropertyLine->Mid(i, 1) == wxT(";") &&
+                   PropertyLine->Mid((i - 1), 1) != wxT("\\")){
+          
+                   if (intSplitsFound == 0){
+           
+                       SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
+         
+                   } else {
+          
+                       SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+           
+                   }
+           
+                   SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
+           
+                   intSplitsFound++;
+                   intSplitSeek = i;
+                   intSplitSize = 0;
+           
+               }
+
+       }
+
+       if (intSplitsFound == 0){
+
+               SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
+               SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
+
+       } else {
+
+               SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
+               SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
+
+       }
+
 }
\ No newline at end of file
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy