X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2Fcontacteditor%2FContactDataObject.cpp;h=54e0bfd1294367f85ff8c683258232f58b759b0b;hp=49a5f2ce08f62a4d699ac82b869e739bb43d5663;hb=02c28b750d6eb441da1053646ca981a4a6473b75;hpb=d0aff1878b93bd25d923176e4e18829b7040da1c diff --git a/source/contacteditor/ContactDataObject.cpp b/source/contacteditor/ContactDataObject.cpp index 49a5f2c..54e0bfd 100644 --- a/source/contacteditor/ContactDataObject.cpp +++ b/source/contacteditor/ContactDataObject.cpp @@ -73,8 +73,12 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){ bool ExtraLineSeek = TRUE; bool QuoteMode = FALSE; bool PropertyFind = TRUE; + bool KindProcessed = FALSE; + bool NameProcessed = FALSE; int ContactLineLen = 0; int QuoteBreakPoint = 0; + int GroupCount = 0; + int FNCount = 0; wxString ContactLine; wxString PropertyLine; wxString PropertySeg1; @@ -173,10 +177,361 @@ ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){ PropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint); PropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1)); + if (Property == wxT("KIND") && KindProcessed == FALSE){ + + ProcessKind(PropertySeg2); + + } else if (Property == wxT("MEMBER")){ + + ProcessMember(PropertySeg1, PropertySeg2, &GroupCount); + GroupCount++; + + } else if (Property == wxT("FN")){ + + ProcessFN(PropertySeg1, PropertySeg2, &FNCount); + FNCount++; + + } else if (Property == wxT("N") && NameProcessed == FALSE){ + + ProcessN(PropertySeg1, PropertySeg2); + NameProcessed = TRUE; + + } - } 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 SplitPoints; + std::map SplitLength; + + int intPrevValue = 8; + int intPref = 0; + int intType = 0; + + SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue); + + intPrevValue = 7; + + wxString PropertyName; + wxString PropertyValue; + wxString PropertyData; + wxString PropertyTokens; + std::map::iterator SLiter; + 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); + + 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 == wxT("MEDIATYPE")){ + + GroupsListMediaType.erase(*GroupCount); + GroupsListMediaType.insert(std::make_pair(*GroupCount, PropertyValue)); + + } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){ + + if (FirstToken == TRUE){ + + PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue); + FirstToken = FALSE; + + } else { + + PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue); + + } + + } + + } + + GroupsList.insert(std::make_pair(*GroupCount, PropertySeg2)); + + if (!PropertyTokens.IsEmpty()){ + + GroupsListTokens.insert(std::make_pair(*GroupCount, PropertyTokens)); + + } + + +} + +void ContactDataObject::ProcessFN(wxString PropertySeg1, wxString PropertySeg2, int *FNCount){ + + std::map SplitPoints; + std::map SplitLength; + + int intPrevValue = 4; + int intPref = 0; + int intType = 0; + + SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue); + + intPrevValue = 3; + + wxString PropertyName; + wxString PropertyValue; + wxString PropertyData; + wxString PropertyTokens; + std::map::iterator SLiter; + 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); + + if (PropertyName == wxT("TYPE")){ + + if (!PropertyValue.IsEmpty() || PropertyValue == wxT("home") || + PropertyValue == wxT("work") ){ + + FullNamesListType.erase(*FNCount); + FullNamesListType.insert(std::make_pair(*FNCount, PropertyValue)); + + } + + } else if (PropertyName == wxT("LANGUAGE")){ + + FullNamesListLanguage.erase(*FNCount); + FullNamesListLanguage.insert(std::make_pair(*FNCount, PropertyValue)); + + } else if (PropertyName == wxT("ALTID")){ + + FullNamesListAltID.erase(*FNCount); + FullNamesListAltID.insert(std::make_pair(*FNCount, PropertyValue)); + + } else if (PropertyName == wxT("PID")){ + + FullNamesListPID.erase(*FNCount); + FullNamesListPID.insert(std::make_pair(*FNCount, 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){ + + FullNamesListPref.erase(*FNCount); + FullNamesListPref.insert(std::make_pair(*FNCount, PriorityNumber)); + + } + + } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){ + + if (FirstToken == TRUE){ + + PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue); + FirstToken = FALSE; + + } else { + + PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue); + + } + + } + + } + + FullNamesList.insert(std::make_pair(*FNCount, PropertySeg2)); + + if (!PropertyTokens.IsEmpty()){ + + FullNamesListTokens.insert(std::make_pair(*FNCount, PropertyTokens)); + + } + +} + +void ContactDataObject::ProcessN(wxString PropertySeg1, wxString PropertySeg2){ + + std::map SplitPoints; + std::map SplitLength; + + int intPrevValue = 3; + int intPref = 0; + int intType = 0; + + SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue); + + intPrevValue = 2; + + NameForename = PropertySeg2; + + wxString PropertyName; + wxString PropertyValue; + wxString PropertyData; + wxString PropertyTokens; + std::map::iterator SLiter; + 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); + + if (PropertyName == wxT("ALTID")){ + + NameAltID = PropertyValue; + + } else if (PropertyName == wxT("LANGUAGE")){ + + NameLanguage = PropertyValue; + + } + + } + +} + +void SplitValues(wxString *PropertyLine, + std::map *SplitPoints, + std::map *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