X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2Fcontacteditor%2FContactDataObject.cpp;h=b158e1904e8fc025b358f037b1ba9b94f6280bd3;hp=b49e0bb451d061c0c5cf607ccb99e74f4e6553cf;hb=c1482227d7cb5d0fdc539682d0fbda830cb28001;hpb=64e5af606c4f78b992c820414044a6ad8fef29f2 diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index b49e0bb..b158e19 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -86,6 +86,7 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){ int TimeZoneCount = 0; int AddressCount = 0; int EmailCount = 0; + int IMCount = 0; wxString ContactLine; wxString PropertyLine; wxString PropertySeg1; @@ -240,6 +241,13 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){ ProcessEmail(PropertySeg1, PropertySeg2, &EmailCount); EmailCount++; + } else if (Property == wxT("IMPP")){ + + // See frmContactEditor-LoadIM.cpp + + ProcessIM(PropertySeg1, PropertySeg2, &IMCount); + IMCount++; + } } @@ -645,7 +653,7 @@ void ContactDataObject::ProcessNickname(wxString PropertySeg1, wxString Property intPrevValue = 9; - PropertyType PropType; + PropertyType PropType = PROPERTY_NONE; // Look for type before continuing. @@ -1136,7 +1144,7 @@ void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString Property intPrevValue = 3; - PropertyType PropType; + PropertyType PropType = PROPERTY_NONE; // Look for type before continuing. @@ -1315,8 +1323,8 @@ void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertyS intPrevValue = 4; - PropertyType PropType; - + PropertyType PropType = PROPERTY_NONE; + // Look for type before continuing. CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType); @@ -1652,8 +1660,8 @@ void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg intPrevValue = 6; - PropertyType PropType; - + PropertyType PropType = PROPERTY_NONE; + // Look for type before continuing. CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType); @@ -1782,6 +1790,156 @@ void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg } +void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, int *IMCount){ + + std::map SplitPoints; + std::map SplitLength; + + int intPrevValue = 6; + int intPref = 0; + + SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue); + + intPrevValue = 5; + + PropertyType PropType = PROPERTY_NONE; + + // Look for type before continuing. + + CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType); + + std::map *IMList = NULL; + std::map *IMListType = NULL; + std::map *IMListAltID = NULL; + std::map *IMListPID = NULL; + std::map *IMListTokens = NULL; + std::map *IMListMediatype = NULL; + std::map *IMListPref = NULL; + + switch(PropType){ + case PROPERTY_NONE: + IMList = &GeneralIMList; + IMListType = &GeneralIMListType; + IMListAltID = &GeneralIMListAltID; + IMListPID = &GeneralIMListPID; + IMListTokens = &GeneralIMListTokens; + IMListMediatype = &GeneralIMListMediatype; + IMListPref = &GeneralIMListPref; + break; + case PROPERTY_HOME: + IMList = &HomeIMList; + IMListType = &HomeIMListType; + IMListAltID = &HomeIMListAltID; + IMListPID = &HomeIMListPID; + IMListTokens = &HomeIMListTokens; + IMListMediatype = &HomeIMListMediatype; + IMListPref = &HomeIMListPref; + break; + case PROPERTY_WORK: + IMList = &BusinessIMList; + IMListType = &BusinessIMListType; + IMListAltID = &BusinessIMListAltID; + IMListPID = &BusinessIMListPID; + IMListTokens = &BusinessIMListTokens; + IMListMediatype = &BusinessIMListMediatype; + IMListPref = &BusinessIMListPref; + break; + } + + intPrevValue = 5; + + std::map::iterator SLiter; + wxString PropertyData; + wxString PropertyName; + wxString PropertyValue; + wxString PropertyTokens; + bool FirstToken = TRUE; + + for (std::map::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("ALTID")){ + + IMListAltID->erase(*IMCount); + IMListAltID->insert(std::make_pair(*IMCount, PropertyValue)); + + } else if (PropertyName == wxT("PID")){ + + IMListPID->erase(*IMCount); + IMListPID->insert(std::make_pair(*IMCount, PropertyValue)); + + } else if (PropertyName == wxT("MEDIATYPE")){ + + IMListMediatype->erase(*IMCount); + IMListMediatype->insert(std::make_pair(*IMCount, 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){ + + IMListPref->erase(*IMCount); + IMListPref->insert(std::make_pair(*IMCount, 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); + + } + + } + + } + + } + + IMList->insert(std::make_pair(*IMCount, PropertySeg2)); + + // Add the name token data. + + if (!PropertyTokens.IsEmpty()){ + + IMListTokens->insert(std::make_pair(*IMCount, PropertyTokens)); + + } + +} + void SplitValues(wxString *PropertyLine, std::map *SplitPoints, std::map *SplitLength,