Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added source, header and unit tests to the ADR vCard property in ContactDataObject.
[xestiaab/.git] / source / contacteditor / ContactDataObject.cpp
index 2a7f6a4..eeb95b0 100644 (file)
@@ -84,6 +84,7 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
        int FNCount = 0;
        int NicknameCount = 0;
        int TimeZoneCount = 0;
+       int AddressCount = 0;
        wxString ContactLine;
        wxString PropertyLine;
        wxString PropertySeg1;
@@ -226,6 +227,11 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
                        ProcessTimeZone(PropertySeg1, PropertySeg2, &TimeZoneCount);
                        TimeZoneCount++;
                
+               } else if (Property == wxT("ADR")){
+               
+                       ProcessAddress(PropertySeg1, PropertySeg2, &AddressCount);
+                       AddressCount++;
+               
                }
                
        }
@@ -1262,6 +1268,370 @@ void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString Property
 
 }
 
+void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertySeg2, int *AddressCount){
+
+       size_t intPropertyLen = PropertySeg1.Len();
+       std::map<int, int> SplitPoints;
+       std::map<int, int> SplitLength;
+       std::map<int, int>::iterator SLiter;                    
+       wxString PropertyData;
+       wxString PropertyName;
+       wxString PropertyValue;
+       wxString PropertyTokens;
+       wxString AddressLabel;
+       wxString AddressLang;
+       wxString AddressAltID;
+       wxString AddressPID;
+       wxString AddressTokens;
+       wxString AddressGeo;
+       wxString AddressTimezone;
+       wxString AddressType;
+       wxString AddressMediatype;
+       wxString AddressPOBox;
+       wxString AddressExtended;
+       wxString AddressStreet;
+       wxString AddressLocality;
+       wxString AddressCity;
+       wxString AddressRegion;
+       wxString AddressPostalCode;
+       wxString AddressCountry;
+       bool FirstToken = TRUE;                 
+       int intSplitsFound = 0;
+       int intSplitSize = 0;
+       int intPrevValue = 5;
+       int intPref = 0;                        
+       int intType = 0;
+       long ListCtrlIndex;
+       
+       SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
+       
+       intPrevValue = 4;
+       
+       PropertyType PropType;
+       
+       // Look for type before continuing.
+       
+       CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
+       
+       intPrevValue = 4;
+       
+       std::map<int, wxString> *AddressList = NULL;
+       std::map<int, wxString> *AddressListTown = NULL;
+       std::map<int, wxString> *AddressListCounty = NULL;
+       std::map<int, wxString> *AddressListPostCode = NULL;
+       std::map<int, wxString> *AddressListCountry = NULL;
+       std::map<int, wxString> *AddressListLabel = NULL;
+       std::map<int, wxString> *AddressListLang = NULL;                
+       std::map<int, wxString> *AddressListAltID = NULL;
+       std::map<int, wxString> *AddressListPID = NULL;
+       std::map<int, wxString> *AddressListTokens = NULL;
+       std::map<int, wxString> *AddressListGeo = NULL;
+       std::map<int, wxString> *AddressListTimezone = NULL;            
+       std::map<int, wxString> *AddressListType = NULL;
+       std::map<int, wxString> *AddressListMediatype = NULL;
+       std::map<int, int> *AddressListPref = NULL;
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       AddressList = &GeneralAddressList;
+                       AddressListTown = &GeneralAddressListTown;
+                       AddressListCounty = &GeneralAddressListCounty;
+                       AddressListPostCode = &GeneralAddressListPostCode;
+                       AddressListCountry = &GeneralAddressListCountry;
+                       AddressListLabel = &GeneralAddressListLabel;
+                       AddressListLang = &GeneralAddressListLang;              
+                       AddressListAltID = &GeneralAddressListAltID;
+                       AddressListPID = &GeneralAddressListPID;
+                       AddressListTokens = &GeneralAddressListTokens;
+                       AddressListGeo = &GeneralAddressListGeo;
+                       AddressListTimezone = &GeneralAddressListTimezone;
+                       AddressListType = &GeneralAddressListType;
+                       AddressListMediatype = &GeneralAddressListMediatype;
+                       AddressListPref = &GeneralAddressListPref;              
+                       break;
+               case PROPERTY_HOME:
+                       AddressList = &HomeAddressList;
+                       AddressListTown = &HomeAddressListTown;
+                       AddressListCounty = &HomeAddressListCounty;
+                       AddressListPostCode = &HomeAddressListPostCode;
+                       AddressListCountry = &HomeAddressListCountry;
+                       AddressListLabel = &HomeAddressListLabel;
+                       AddressListLang = &HomeAddressListLang;         
+                       AddressListAltID = &HomeAddressListAltID;
+                       AddressListPID = &HomeAddressListPID;
+                       AddressListTokens = &HomeAddressListTokens;
+                       AddressListGeo = &HomeAddressListGeo;
+                       AddressListTimezone = &HomeAddressListTimezone;
+                       AddressListType = &HomeAddressListType;
+                       AddressListMediatype = &HomeAddressListMediatype;
+                       AddressListPref = &HomeAddressListPref;
+                       break;
+               case PROPERTY_WORK:
+                       AddressList = &BusinessAddressList;
+                       AddressListTown = &BusinessAddressListTown;
+                       AddressListCounty = &BusinessAddressListCounty;
+                       AddressListPostCode = &BusinessAddressListPostCode;
+                       AddressListCountry = &BusinessAddressListCountry;
+                       AddressListLabel = &BusinessAddressListLabel;
+                       AddressListLang = &BusinessAddressListLang;             
+                       AddressListAltID = &BusinessAddressListAltID;
+                       AddressListPID = &BusinessAddressListPID;
+                       AddressListTokens = &BusinessAddressListTokens;
+                       AddressListGeo = &BusinessAddressListGeo;
+                       AddressListTimezone = &BusinessAddressListTimezone;
+                       AddressListType = &BusinessAddressListType;
+                       AddressListMediatype = &BusinessAddressListMediatype;
+                       AddressListPref = &BusinessAddressListPref;
+                       break;
+       }
+       
+       intPrevValue = 4;
+       
+       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);
+               
+               // Process properties.
+               
+               if (PropertyName == wxT("LABEL")){
+               
+                       AddressListLabel->erase(*AddressCount);
+                       AddressListLabel->insert(std::make_pair(*AddressCount, PropertyValue));
+                               
+               } else if (PropertyName == wxT("LANGUAGE")){
+               
+                       AddressListLang->erase(*AddressCount);
+                       AddressListLang->insert(std::make_pair(*AddressCount, PropertyValue));                  
+               
+               } else if (PropertyName == wxT("ALTID")){
+
+                       AddressListAltID->erase(*AddressCount);
+                       AddressListAltID->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("PID")){
+
+                       AddressListPID->erase(*AddressCount);
+                       AddressListPID->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("GEO")){
+               
+                       AddressListGeo->erase(*AddressCount);
+                       AddressListGeo->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("TZ")){
+
+                       AddressListTimezone->erase(*AddressCount);
+                       AddressListTimezone->insert(std::make_pair(*AddressCount, PropertyValue));
+               
+               } else if (PropertyName == wxT("MEDIATYPE")){
+
+                       AddressListMediatype->erase(*AddressCount);
+                       AddressListMediatype->insert(std::make_pair(*AddressCount, 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){
+
+                               AddressListPref->erase(*AddressCount);
+                               AddressListPref->insert(std::make_pair(*AddressCount, PriorityNumber));
+
+                       }
+               
+               } else {
+               
+                       if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
+                       
+                               if (FirstToken == TRUE){
+                               
+                                       PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
+                                       FirstToken = FALSE;
+                               
+                               } else {
+                               
+                                       PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
+                               
+                               }
+                       
+                       }
+               
+               }
+       
+       }                       
+       
+       // Split the address. 
+
+       //std::map<int, int>::iterator SLiter;
+       intPropertyLen = PropertySeg2.Len();
+       SplitPoints.clear();
+       SplitLength.clear();
+       intSplitsFound = 0;
+       intSplitSize = 0;
+       intPrevValue = 0;
+       
+       for (int i = 0; i <= intPropertyLen; i++){
+
+               intSplitSize++;
+       
+               if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
+       
+                       intSplitsFound++;
+                       SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
+                       
+                       if (intSplitsFound == 6){ 
+                       
+                               SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+                               break; 
+                               
+                       } else {
+                       
+                               SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
+                       
+                       }
+                       
+                       intSplitSize = 0;                                       
+       
+               }
+
+       }
+       
+       // Split the data into several parts.                   
+       
+       for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
+       intiter != SplitPoints.end(); ++intiter){
+                       
+               if (intiter->first == 1){
+               
+                       // Deal with PO Box.
+                       
+                       SLiter = SplitLength.find(1);
+                                                               
+                       //txtSurname->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(0, SLiter->second), TRUE));
+                       AddressPOBox = PropertySeg2.Mid(0, SLiter->second);
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 2){
+               
+                       // Deal with extended address.
+                       
+                       SLiter = SplitLength.find(2);
+                       
+                       AddressExtended = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtForename->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 3){
+               
+                       // Deal with street address.
+                       
+                       SLiter = SplitLength.find(3);
+                                                               
+                       AddressStreet = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtOtherNames->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+               
+               } else if (intiter->first == 4){
+               
+                       // Deal with locality
+
+                       SLiter = SplitLength.find(4);
+                       
+                       AddressLocality = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+               
+               } else if (intiter->first == 5){
+               
+                       // Deal with region.
+
+                       SLiter = SplitLength.find(5);
+                       
+                       AddressRegion = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+               
+               } else if (intiter->first == 6){
+               
+                       // Deal with post code.
+
+                       SLiter = SplitLength.find(6);
+                       
+                       AddressPostalCode = PropertySeg2.Mid(intPrevValue, SLiter->second);
+                       //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
+                       intPrevValue = intiter->second;
+                       
+                       // Deal with country.
+                                               
+                       AddressCountry = PropertySeg2.Mid(intPrevValue, wxString::npos);
+                       //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
+                       
+                       break;
+               
+               }
+       
+       }       
+       
+       // Add the data to the General/Home/Work address variables.
+       
+       CaptureString(&AddressStreet, FALSE); 
+       CaptureString(&AddressLocality, FALSE);
+       CaptureString(&AddressRegion, FALSE);
+       CaptureString(&AddressPostalCode, FALSE);
+       CaptureString(&AddressCountry, FALSE);
+               
+       if (!PropertyTokens.IsEmpty()){
+       
+               AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
+       
+       }
+
+       AddressListCountry->insert(std::make_pair(*AddressCount, AddressCountry));      
+       AddressList->insert(std::make_pair(*AddressCount, AddressStreet));
+       AddressListTown->insert(std::make_pair(*AddressCount, AddressLocality));
+       AddressListCounty->insert(std::make_pair(*AddressCount, AddressRegion));
+       AddressListPostCode->insert(std::make_pair(*AddressCount, AddressPostalCode));
+
+       switch(PropType){
+               case PROPERTY_NONE:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("")));
+                       break;
+               case PROPERTY_HOME:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("home")));
+                       break;
+               case PROPERTY_WORK:
+                       AddressListType->insert(std::make_pair(*AddressCount, wxT("work")));    
+                       break;
+       }
+       
+       AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
+
+}
+
 void SplitValues(wxString *PropertyLine, 
        std::map<int,int> *SplitPoints, 
        std::map<int,int> *SplitLength, 
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