1 // ContactDataObject.cpp - Client Data Object.
3 // (c) 2012-2015 Xestia Software Development.
5 // This file is part of Xestia Address Book.
7 // Xestia Address Book is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by the
9 // Free Software Foundation, version 3 of the license.
11 // Xestia Address Book is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License along
17 // with Xestia Address Book. If not, see <http://www.gnu.org/licenses/>
19 #include "ContactDataObject.h"
21 ContactLoadStatus ContactDataObject::LoadFile(wxString Filename){
23 if (!wxFileExists(Filename)){
25 return CONTACTLOAD_FILEMISSING;
31 if (!ContactFile.Open(Filename, wxFile::read, wxS_DEFAULT)){
33 return CONTACTLOAD_FILEERROR;
37 // Check that the vCard is a valid vCard 4.0 file.
39 vCard vCard4FormatCheck;
41 vCard4FormatCheck.LoadFile(Filename);
43 if (vCard4FormatCheck.Get("VERSION") != wxT("4.0")){
45 return CONTACTLOAD_FILEINVALIDFORMAT;
49 // Check that the vCard meets the base specification.
51 if (!vCard4FormatCheck.MeetBaseSpecification()){
53 return CONTACTLOAD_FILEBASESPECFAIL;
57 wxStringTokenizer wSTContactFileLines(vCard4FormatCheck.WriteString(), wxT("\r\n"));
59 std::map<int, wxString> ContactFileLines;
61 int ContactLineSeek = 0;
63 while (wSTContactFileLines.HasMoreTokens() == TRUE){
65 wxString ContactLine = wSTContactFileLines.GetNextToken();
66 ContactFileLines.insert(std::make_pair(ContactLineSeek, ContactLine));
71 wxString wxSPropertyNextLine;
73 bool ExtraLineSeek = TRUE;
74 bool QuoteMode = FALSE;
75 bool PropertyFind = TRUE;
76 bool KindProcessed = FALSE;
77 bool NameProcessed = FALSE;
78 bool GenderProcessed = FALSE;
79 bool BirthdayProcessed = FALSE;
80 bool AnniversaryProcessed = FALSE;
81 bool UIDProcessed = FALSE;
82 bool RevisionProcessed = FALSE;
83 int ContactLineLen = 0;
84 int QuoteBreakPoint = 0;
88 int NicknameCount = 0;
89 int TimeZoneCount = 0;
93 int TelephoneCount = 0;
94 int LanguageCount = 0;
95 int GeographicCount = 0;
100 int OrganisationCount = 0;
102 int CategoryCount = 0;
106 int CalendarCount = 0;
107 int CalendarAddressCount = 0;
108 int FreeBusyAddressCount = 0;
113 int ClientPIDCount = 0;
114 wxString ContactLine;
115 wxString PropertyLine;
116 wxString PropertySeg1;
117 wxString PropertySeg2;
118 wxString PropertyNextLine;
121 for (std::map<int,wxString>::iterator iter = ContactFileLines.begin();
122 iter != ContactFileLines.end(); ++iter){
124 ExtraLineSeek = TRUE;
130 PropertyLine.Clear();
131 PropertySeg1.Clear();
132 PropertySeg2.Clear();
135 ContactLine = iter->second;
137 while (ExtraLineSeek == TRUE){
139 // Check if there is extra data on the next line
140 // (indicated by space or tab at the start) and add data.
144 if (iter == ContactFileLines.end()){
151 PropertyNextLine = iter->second;
153 if (PropertyNextLine.Mid(0, 1) == wxT(" ") || PropertyNextLine.Mid(0, 1) == wxT("\t")){
155 PropertyNextLine.Remove(0, 1);
156 ContactLine.Append(PropertyNextLine);
161 ExtraLineSeek = FALSE;
167 ContactLineLen = ContactLine.Len();
169 // Make sure we are not in quotation mode.
170 // Make sure colon does not have \ or \\ before it.
172 for (int i = 0; i <= ContactLineLen; i++){
174 if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
176 PropertyFind = FALSE;
178 } else if (PropertyFind == TRUE){
180 Property.Append(ContactLine.Mid(i, 1));
184 if (ContactLine.Mid(i, 1) == wxT("\"")){
186 if (QuoteMode == TRUE){
198 if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
207 // Split that line at the point into two variables (ignore the colon).
209 PropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
210 PropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
212 if (Property == wxT("KIND") && KindProcessed == FALSE){
214 ProcessKind(PropertySeg2);
216 } else if (Property == wxT("UID") && UIDProcessed == FALSE){
218 UIDToken = PropertySeg2;
221 } else if (Property == wxT("SOURCE")){
223 ProcessSource(PropertySeg1, PropertySeg2, &SourceCount);
226 } else if (Property == wxT("XML")){
228 ProcessXML(PropertySeg1, PropertySeg2, &XMLCount);
231 } else if (Property == wxT("REV") && RevisionProcessed == FALSE){
233 ProcessRevision(PropertySeg1, PropertySeg2);
234 RevisionProcessed = TRUE;
236 } else if (Property == wxT("MEMBER")){
238 ProcessMember(PropertySeg1, PropertySeg2, &GroupCount);
241 } else if (Property == wxT("FN")){
243 ProcessFN(PropertySeg1, PropertySeg2, &FNCount);
246 } else if (Property == wxT("N") && NameProcessed == FALSE){
248 ProcessN(PropertySeg1, PropertySeg2);
249 NameProcessed = TRUE;
251 } else if (Property == wxT("CLIENTPIDMAP")){
253 ProcessClientPIDMap(PropertySeg1, PropertySeg2, &ClientPIDCount);
256 } else if (Property == wxT("NICKNAME")){
258 ProcessNickname(PropertySeg1, PropertySeg2, &NicknameCount);
261 } else if (Property == wxT("GENDER") && GenderProcessed == FALSE){
263 ProcessGender(PropertySeg1, PropertySeg2);
264 GenderProcessed = TRUE;
266 } else if (Property == wxT("BDAY") && BirthdayProcessed == FALSE){
268 ProcessBirthday(PropertySeg1, PropertySeg2);
269 BirthdayProcessed = TRUE;
271 } else if (Property == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
273 ProcessAnniversary(PropertySeg1, PropertySeg2);
274 AnniversaryProcessed = TRUE;
276 } else if (Property == wxT("TZ")){
278 ProcessTimeZone(PropertySeg1, PropertySeg2, &TimeZoneCount);
281 } else if (Property == wxT("ADR")){
283 ProcessAddress(PropertySeg1, PropertySeg2, &AddressCount);
286 } else if (Property == wxT("EMAIL")){
288 ProcessEmail(PropertySeg1, PropertySeg2, &EmailCount);
291 } else if (Property == wxT("IMPP")){
293 ProcessIM(PropertySeg1, PropertySeg2, &IMCount);
296 } else if (Property == wxT("TEL")){
298 ProcessTelephone(PropertySeg1, PropertySeg2, &TelephoneCount);
301 } else if (Property == wxT("LANG")){
303 // See frmContactEditor-LoadLanguage.cpp
305 ProcessLanguage(PropertySeg1, PropertySeg2, &LanguageCount);
308 } else if (Property == wxT("GEO")){
310 // See frmContactEditor-LoadGeo.cpp
312 ProcessGeographic(PropertySeg1, PropertySeg2, &GeographicCount);
315 } else if (Property == wxT("RELATED")){
317 // See fromContactEditor-LoadRelated.cpp
319 ProcessRelated(PropertySeg1, PropertySeg2, &RelatedCount);
322 } else if (Property == wxT("URL")){
324 // See frmContactEditor-LoadURL.cpp
326 ProcessURL(PropertySeg1, PropertySeg2, &URLCount);
329 } else if (Property == wxT("TITLE")) {
331 // See frmContactEditor-LoadTitle.cpp
333 ProcessTitle(PropertySeg1, PropertySeg2, &TitleCount);
336 } else if (Property == wxT("ROLE")) {
338 // See frmContactEditor-LoadTitle.cpp
340 ProcessRole(PropertySeg1, PropertySeg2, &RoleCount);
343 } else if (Property == wxT("ORG")) {
345 // See frmContactEditor-LoadOrg.cpp
347 ProcessOrganisation(PropertySeg1, PropertySeg2, &OrganisationCount);
350 } else if (Property == wxT("NOTE")) {
352 // See frmContactEditor-LoadNote.cpp
354 ProcessNote(PropertySeg1, PropertySeg2, &NoteCount);
357 } else if (Property == wxT("CATEGORIES")) {
359 // See frmContactEditor-LoadCategory.cpp
361 ProcessCategory(PropertySeg1, PropertySeg2, &CategoryCount);
364 } else if (Property == wxT("PHOTO")) {
366 // See frmContactEditor-LoadPhoto.cpp
368 ProcessPhoto(PropertySeg1, PropertySeg2, &PhotoCount);
371 } else if (Property == wxT("LOGO")) {
373 // See frmContactEditor-LoadPhoto.cpp
375 ProcessLogo(PropertySeg1, PropertySeg2, &LogoCount);
378 } else if (Property == wxT("LOGO")) {
380 // See frmContactEditor-LoadPhoto.cpp
382 ProcessLogo(PropertySeg1, PropertySeg2, &LogoCount);
385 } else if (Property == wxT("SOUND")) {
387 // See frmContactEditor-LoadSound.cpp
389 ProcessSound(PropertySeg1, PropertySeg2, &SoundCount);
392 } else if (Property == wxT("CALURI")){
394 // See frmContactEditor-LoadCalendar.cpp
396 ProcessCalendarURI(PropertySeg1, PropertySeg2, &CalendarCount);
399 } else if (Property == wxT("CALADRURI")){
401 ProcessCalendarAddressURI(PropertySeg1, PropertySeg2, &CalendarAddressCount);
402 CalendarAddressCount++;
404 } else if (Property == wxT("FBURL")){
406 // See frmContactEditor-LoadCalendar.cpp
408 ProcessCalendarFreeBusy(PropertySeg1, PropertySeg2, &FreeBusyAddressCount);
409 FreeBusyAddressCount++;
411 } else if (Property == wxT("KEY")){
413 // See frmContactEditor-LoadKey.cpp
415 ProcessKey(PropertySeg1, PropertySeg2, &KeyCount);
418 } else if (Property.Mid(0, 3) == wxT("VND")){
420 ProcessVendor(PropertySeg1, PropertySeg2, &VendorCount);
423 } else if (Property.Mid(0, 2) == wxT("X-")){
425 XTokenList.insert(std::make_pair(XTokenCount, PropertySeg2));
426 XTokenListTokens.insert(std::make_pair(XTokenCount, PropertySeg1.Mid(2)));
433 return CONTACTLOAD_OK;
437 void ContactDataObject::ProcessKind(wxString KindType){
439 if (KindType == wxT("individual")){
441 ContactKind = CONTACTKIND_INDIVIDUAL;
443 } else if (KindType == wxT("group")){
445 ContactKind = CONTACTKIND_GROUP;
447 } else if (KindType == wxT("org")){
449 ContactKind = CONTACTKIND_ORGANISATION;
451 } else if (KindType == wxT("location")){
453 ContactKind = CONTACTKIND_LOCATION;
457 ContactKind = CONTACTKIND_NONE;
462 void ContactDataObject::ProcessRevision(wxString PropertySeg1, wxString PropertySeg2){
464 size_t intPropertyLen = PropertySeg1.Len();
465 std::map<int, int> SplitPoints;
466 std::map<int, int> SplitLength;
467 std::map<int, int>::iterator SLiter;
468 wxString PropertyData;
469 wxString PropertyName;
470 wxString PropertyValue;
471 wxString PropertyTokens;
472 bool FirstToken = TRUE;
473 int intSplitsFound = 0;
474 int intSplitSize = 0;
475 int intPrevValue = 5;
479 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
483 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
484 intiter != SplitPoints.end(); ++intiter){
486 SLiter = SplitLength.find(intiter->first);
488 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
490 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
491 PropertyName = PropertyElement.GetNextToken();
492 PropertyValue = PropertyElement.GetNextToken();
494 intPrevValue = intiter->second;
496 // Process properties.
498 size_t intPropertyValueLen = PropertyValue.Len();
500 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
502 PropertyValue.Trim();
503 PropertyValue.RemoveLast();
507 if (PropertyValue.Mid(0, 1) == wxT("\"")){
509 PropertyValue.Remove(0, 1);
513 CaptureString(&PropertyValue, FALSE);
515 if (FirstToken == TRUE){
517 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
522 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
528 CaptureString(&PropertySeg2, FALSE);
530 Revision = PropertySeg2;
532 if (!PropertyTokens.IsEmpty()){
534 RevisionTokens = PropertyTokens;
541 void ContactDataObject::ProcessSource(wxString PropertySeg1, wxString PropertySeg2, int *SourceCount){
543 size_t intPropertyLen = PropertySeg1.Len();
544 std::map<int, int> SplitPoints;
545 std::map<int, int> SplitLength;
546 std::map<int, int>::iterator SLiter;
547 wxString PropertyData;
548 wxString PropertyName;
549 wxString PropertyValue;
550 wxString PropertyTokens;
551 bool FirstToken = TRUE;
552 int intSplitsFound = 0;
553 int intSplitSize = 0;
554 int intPrevValue = 8;
558 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
562 PropertyType PropType = PROPERTY_NONE;
564 // Look for type before continuing.
566 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
570 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
571 intiter != SplitPoints.end(); ++intiter){
573 SLiter = SplitLength.find(intiter->first);
575 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
577 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
578 PropertyName = PropertyElement.GetNextToken();
579 PropertyValue = PropertyElement.GetNextToken();
581 intPrevValue = intiter->second;
583 // Process properties.
585 size_t intPropertyValueLen = PropertyValue.Len();
587 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
589 PropertyValue.Trim();
590 PropertyValue.RemoveLast();
594 if (PropertyValue.Mid(0, 1) == wxT("\"")){
596 PropertyValue.Remove(0, 1);
600 CaptureString(&PropertyValue, FALSE);
602 if (PropertyName == wxT("ALTID")){
604 SourceListAltID.erase(*SourceCount);
605 SourceListAltID.insert(std::make_pair(*SourceCount, PropertyValue));
607 } else if (PropertyName == wxT("PID")){
609 SourceListPID.erase(*SourceCount);
610 SourceListPID.insert(std::make_pair(*SourceCount, PropertyValue));
612 } else if (PropertyName == wxT("PREF")){
614 ProcessIntegerValue(this, &SourceListPref, &PropertyValue, SourceCount);
616 } else if (PropertyName == wxT("MEDIATYPE")){
618 SourceListMediatype.erase(*SourceCount);
619 SourceListMediatype.insert(std::make_pair(*SourceCount, PropertyValue));
623 // Something else we don't know about so append
624 // to the tokens variable.
626 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
628 if (FirstToken == TRUE){
630 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
635 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
645 intPropertyLen = PropertySeg2.Len();
652 CaptureString(&PropertySeg2, FALSE);
654 // Add the data to the General/Home/Work address variables.
660 SourceListType.insert(std::make_pair(*SourceCount, "home"));
663 SourceListType.insert(std::make_pair(*SourceCount, "work"));
667 SourceList.insert(std::make_pair(*SourceCount, PropertySeg2));
669 if (!PropertyTokens.IsEmpty()){
671 SourceListTokens.insert(std::make_pair(*SourceCount, PropertyTokens));
677 void ContactDataObject::ProcessXML(wxString PropertySeg1, wxString PropertySeg2, int *XMLCount){
679 std::map<int, int> SplitPoints;
680 std::map<int, int> SplitLength;
682 int intPrevValue = 5;
686 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
690 wxString PropertyName;
691 wxString PropertyValue;
692 wxString PropertyData;
693 wxString PropertyTokens;
694 std::map<int,int>::iterator SLiter;
695 bool FirstToken = TRUE;
697 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
698 intiter != SplitPoints.end(); ++intiter){
700 SLiter = SplitLength.find(intiter->first);
702 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
704 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
705 PropertyName = PropertyElement.GetNextToken();
706 PropertyValue = PropertyElement.GetNextToken();
708 intPrevValue = intiter->second;
710 CaptureString(&PropertyValue, FALSE);
712 if (PropertyName == wxT("ALTID")){
714 XMLListAltID.erase(*XMLCount);
715 XMLListAltID.insert(std::make_pair(*XMLCount, PropertyValue));
721 XMLList.insert(std::make_pair(*XMLCount, PropertySeg2));
725 void ContactDataObject::ProcessMember(wxString PropertySeg1, wxString PropertySeg2, int *GroupCount){
727 std::map<int, int> SplitPoints;
728 std::map<int, int> SplitLength;
730 int intPrevValue = 8;
734 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
738 wxString PropertyName;
739 wxString PropertyValue;
740 wxString PropertyData;
741 wxString PropertyTokens;
742 std::map<int,int>::iterator SLiter;
743 bool FirstToken = TRUE;
745 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
746 intiter != SplitPoints.end(); ++intiter){
748 SLiter = SplitLength.find(intiter->first);
750 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
752 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
753 PropertyName = PropertyElement.GetNextToken();
754 PropertyValue = PropertyElement.GetNextToken();
756 intPrevValue = intiter->second;
758 CaptureString(&PropertyValue, FALSE);
760 if (PropertyName == wxT("ALTID")){
762 GroupsListAltID.erase(*GroupCount);
763 GroupsListAltID.insert(std::make_pair(*GroupCount, PropertyValue));
765 } else if (PropertyName == wxT("PID")){
767 GroupsListPID.erase(*GroupCount);
768 GroupsListPID.insert(std::make_pair(*GroupCount, PropertyValue));
770 } else if (PropertyName == wxT("PREF")){
772 ProcessIntegerValue(this, &GroupsListPref, &PropertyValue, GroupCount);
774 } else if (PropertyName == wxT("MEDIATYPE")){
776 GroupsListMediaType.erase(*GroupCount);
777 GroupsListMediaType.insert(std::make_pair(*GroupCount, PropertyValue));
779 } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
781 if (FirstToken == TRUE){
783 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
788 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
796 GroupsList.insert(std::make_pair(*GroupCount, PropertySeg2));
798 if (!PropertyTokens.IsEmpty()){
800 GroupsListTokens.insert(std::make_pair(*GroupCount, PropertyTokens));
807 void ContactDataObject::ProcessFN(wxString PropertySeg1, wxString PropertySeg2, int *FNCount){
809 std::map<int, int> SplitPoints;
810 std::map<int, int> SplitLength;
812 int intPrevValue = 4;
816 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
820 wxString PropertyName;
821 wxString PropertyValue;
822 wxString PropertyData;
823 wxString PropertyTokens;
824 std::map<int,int>::iterator SLiter;
825 bool FirstToken = TRUE;
827 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
828 intiter != SplitPoints.end(); ++intiter){
830 SLiter = SplitLength.find(intiter->first);
832 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
834 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
835 PropertyName = PropertyElement.GetNextToken();
836 PropertyValue = PropertyElement.GetNextToken();
838 intPrevValue = intiter->second;
840 CaptureString(&PropertyValue, FALSE);
842 if (PropertyName == wxT("TYPE")){
844 if (!PropertyValue.IsEmpty() || PropertyValue == wxT("home") ||
845 PropertyValue == wxT("work") ){
847 FullNamesListType.erase(*FNCount);
848 FullNamesListType.insert(std::make_pair(*FNCount, PropertyValue));
852 } else if (PropertyName == wxT("LANGUAGE")){
854 FullNamesListLanguage.erase(*FNCount);
855 FullNamesListLanguage.insert(std::make_pair(*FNCount, PropertyValue));
857 } else if (PropertyName == wxT("ALTID")){
859 FullNamesListAltID.erase(*FNCount);
860 FullNamesListAltID.insert(std::make_pair(*FNCount, PropertyValue));
862 } else if (PropertyName == wxT("PID")){
864 FullNamesListPID.erase(*FNCount);
865 FullNamesListPID.insert(std::make_pair(*FNCount, PropertyValue));
867 } else if (PropertyName == wxT("PREF")){
869 ProcessIntegerValue(this, &FullNamesListPref, &PropertyValue, FNCount);
871 } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
873 if (FirstToken == TRUE){
875 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
880 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
888 FullNamesList.insert(std::make_pair(*FNCount, PropertySeg2));
890 if (!PropertyTokens.IsEmpty()){
892 FullNamesListTokens.insert(std::make_pair(*FNCount, PropertyTokens));
898 void ContactDataObject::ProcessN(wxString PropertySeg1, wxString PropertySeg2){
900 std::map<int, int> SplitPoints;
901 std::map<int, int> SplitLength;
903 int intPrevValue = 3;
907 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
911 wxString PropertyName;
912 wxString PropertyValue;
913 wxString PropertyData;
914 wxString PropertyTokens;
915 std::map<int,int>::iterator SLiter;
916 bool FirstToken = TRUE;
918 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
919 intiter != SplitPoints.end(); ++intiter){
921 SLiter = SplitLength.find(intiter->first);
923 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
925 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
926 PropertyName = PropertyElement.GetNextToken();
927 PropertyValue = PropertyElement.GetNextToken();
929 intPrevValue = intiter->second;
931 CaptureString(&PropertyValue, FALSE);
933 if (PropertyName == wxT("ALTID")){
935 NameAltID = PropertyValue;
937 } else if (PropertyName == wxT("LANGUAGE")){
939 NameLanguage = PropertyValue;
941 } else if (PropertyName == wxT("SORT-AS")){
943 if (PropertyValue.Left(1) == wxT("\"") && PropertyValue.Right(1) == wxT("\"") &&
944 PropertyValue.Len() >= 3){
945 NameDisplayAs = PropertyValue.Mid(1, (PropertyValue.Len() - 2));
948 } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
950 if (FirstToken == TRUE){
952 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
957 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
965 // Split the name data.
967 int intSplitSeek = 0;
968 int intSplitsFound = 0;
969 int intSplitSize = 0;
970 int intPropertyLen = PropertySeg2.Len();
972 std::map<int,wxString> NameValues;
975 for (int i = 0; i <= intPropertyLen; i++){
977 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
979 NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, intSplitSize)));
984 if (intSplitsFound == 4){
986 NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, wxString::npos)));
1000 // Split the data into several parts.
1002 for (std::map<int, wxString>::iterator iter = NameValues.begin();
1003 iter != NameValues.end(); ++iter){
1005 if (iter->first == 1){
1007 // Deal with family name.
1009 NameSurname = iter->second;
1011 } else if (iter->first == 2){
1013 // Deal with given names.
1015 NameForename = iter->second;
1017 } else if (iter->first == 3){
1019 // Deal with additional names.
1021 NameOtherNames = iter->second;
1023 } else if (iter->first == 4){
1025 // Deal with honorifix prefixes and suffixes.
1027 NameTitle = iter->second;
1031 if (iter == NameValues.end()){
1037 NameSuffix = iter->second;
1043 // Add the name token data.
1045 if (!PropertyTokens.IsEmpty()){
1047 NameTokens = PropertyTokens;
1053 void ContactDataObject::ProcessClientPIDMap(wxString PropertySeg1, wxString PropertySeg2, int *ClientPIDCount){
1055 size_t intPropertyLen = PropertySeg1.Len();
1056 std::map<int, int> SplitPoints;
1057 std::map<int, int> SplitLength;
1058 std::map<int, int>::iterator SLiter;
1059 wxString PropertyData;
1060 wxString PropertyName;
1061 wxString PropertyValue;
1062 wxString PropertyTokens;
1063 bool FirstToken = TRUE;
1064 int intSplitsFound = 0;
1065 int intSplitSize = 0;
1066 int intPrevValue = 14;
1070 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1074 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1075 intiter != SplitPoints.end(); ++intiter){
1077 SLiter = SplitLength.find(intiter->first);
1079 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1081 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1082 PropertyName = PropertyElement.GetNextToken();
1083 PropertyValue = PropertyElement.GetNextToken();
1085 intPrevValue = intiter->second;
1087 // Process properties.
1089 size_t intPropertyValueLen = PropertyValue.Len();
1091 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
1093 PropertyValue.Trim();
1094 PropertyValue.RemoveLast();
1098 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1100 PropertyValue.Remove(0, 1);
1104 CaptureString(&PropertyValue, FALSE);
1106 if (PropertyName.IsEmpty() || PropertyName.IsEmpty()){
1112 if (FirstToken == TRUE){
1114 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1119 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1125 CaptureString(&PropertySeg2, FALSE);
1127 ClientPIDList.insert(std::make_pair(*ClientPIDCount, PropertySeg2));
1129 if (!PropertyTokens.IsEmpty()){
1131 ClientPIDListTokens.insert(std::make_pair(*ClientPIDCount, PropertyTokens));
1137 void ContactDataObject::ProcessNickname(wxString PropertySeg1, wxString PropertySeg2, int *NicknameCount){
1139 std::map<int, int> SplitPoints;
1140 std::map<int, int> SplitLength;
1142 int intPrevValue = 10;
1145 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1149 PropertyType PropType = PROPERTY_NONE;
1151 // Look for type before continuing.
1153 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1157 std::map<int, wxString> *NicknamesList = NULL;
1158 std::map<int, wxString> *NicknamesListType = NULL;
1159 std::map<int, wxString> *NicknamesListLanguage = NULL;
1160 std::map<int, wxString> *NicknamesListAltID = NULL;
1161 std::map<int, wxString> *NicknamesListPID = NULL;
1162 std::map<int, wxString> *NicknamesListTokens = NULL;
1163 std::map<int, int> *NicknamesListPref = NULL;
1167 NicknamesList = &GeneralNicknamesList;
1168 NicknamesListType = &GeneralNicknamesListType;
1169 NicknamesListLanguage = &GeneralNicknamesListLanguage;
1170 NicknamesListAltID = &GeneralNicknamesListAltID;
1171 NicknamesListPID = &GeneralNicknamesListPID;
1172 NicknamesListTokens = &GeneralNicknamesListTokens;
1173 NicknamesListPref = &GeneralNicknamesListPref;
1176 NicknamesList = &HomeNicknamesList;
1177 NicknamesListType = &HomeNicknamesListType;
1178 NicknamesListLanguage = &HomeNicknamesListLanguage;
1179 NicknamesListAltID = &HomeNicknamesListAltID;
1180 NicknamesListPID = &HomeNicknamesListPID;
1181 NicknamesListTokens = &HomeNicknamesListTokens;
1182 NicknamesListPref = &HomeNicknamesListPref;
1185 NicknamesList = &BusinessNicknamesList;
1186 NicknamesListType = &BusinessNicknamesListType;
1187 NicknamesListLanguage = &BusinessNicknamesListLanguage;
1188 NicknamesListAltID = &BusinessNicknamesListAltID;
1189 NicknamesListPID = &BusinessNicknamesListPID;
1190 NicknamesListTokens = &BusinessNicknamesListTokens;
1191 NicknamesListPref = &BusinessNicknamesListPref;
1195 std::map<int, int>::iterator SLiter;
1196 wxString PropertyData;
1197 wxString PropertyName;
1198 wxString PropertyValue;
1199 wxString PropertyTokens;
1200 bool FirstToken = TRUE;
1202 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1203 intiter != SplitPoints.end(); ++intiter){
1205 SLiter = SplitLength.find(intiter->first);
1207 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1209 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1210 PropertyName = PropertyElement.GetNextToken();
1211 PropertyValue = PropertyElement.GetNextToken();
1213 intPrevValue = intiter->second;
1215 CaptureString(&PropertyValue, FALSE);
1217 if (PropertyName == wxT("ALTID")){
1219 NicknamesListAltID->erase(*NicknameCount);
1220 NicknamesListAltID->insert(std::make_pair(*NicknameCount, PropertyValue));
1222 } else if (PropertyName == wxT("PID")){
1224 NicknamesListPID->erase(*NicknameCount);
1225 NicknamesListPID->insert(std::make_pair(*NicknameCount, PropertyValue));
1227 } else if (PropertyName == wxT("PREF")){
1229 ProcessIntegerValue(this, NicknamesListPref, &PropertyValue, NicknameCount);
1231 } else if (PropertyName == wxT("LANGUAGE")){
1233 NicknamesListLanguage->erase(*NicknameCount);
1234 NicknamesListLanguage->insert(std::make_pair(*NicknameCount, PropertyValue));
1238 // Something else we don't know about so append
1239 // to the tokens variable.
1241 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1243 if (FirstToken == TRUE){
1245 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1250 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1260 NicknamesList->insert(std::make_pair(*NicknameCount, PropertySeg2));
1262 // Add the name token data.
1264 if (!PropertyTokens.IsEmpty()){
1266 NicknamesListTokens->insert(std::make_pair(*NicknameCount, PropertyTokens));
1272 void ContactDataObject::ProcessGender(wxString PropertySeg1, wxString PropertySeg2){
1274 std::map<int, int> SplitPoints;
1275 std::map<int, int> SplitLength;
1276 std::map<int, int>::iterator SLiter;
1277 wxString PropertyData;
1278 wxString PropertyName;
1279 wxString PropertyValue;
1280 wxString PropertyTokens;
1281 bool FirstToken = TRUE;
1282 int intPrevValue = 8;
1284 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1288 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1289 intiter != SplitPoints.end(); ++intiter){
1291 SLiter = SplitLength.find(intiter->first);
1293 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1295 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1296 PropertyName = PropertyElement.GetNextToken();
1297 PropertyValue = PropertyElement.GetNextToken();
1299 intPrevValue = intiter->second;
1301 // Process properties.
1303 size_t intPropertyValueLen = PropertyValue.Len();
1305 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
1307 PropertyValue.Trim();
1308 PropertyValue.RemoveLast();
1312 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1314 PropertyValue.Remove(0, 1);
1318 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1320 if (FirstToken == TRUE){
1322 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1327 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1335 wxStringTokenizer GenderData (PropertySeg2, wxT(";"));
1337 wxString GenderComponent;
1339 if (GenderData.CountTokens() >= 2){
1341 Gender = GenderData.GetNextToken();
1342 GenderDetails = GenderData.GetString();
1344 CaptureString(&GenderDetails, FALSE);
1348 Gender = GenderData.GetNextToken();
1352 if (!PropertyTokens.IsEmpty()){
1354 GenderTokens = PropertyTokens;
1360 void ContactDataObject::ProcessBirthday(wxString PropertySeg1, wxString PropertySeg2){
1362 // Process date. Preserve the remainder in the string.
1364 std::map<int, int> SplitPoints;
1365 std::map<int, int> SplitLength;
1366 std::map<int, int>::iterator SLiter;
1367 wxString PropertyData;
1368 wxString PropertyName;
1369 wxString PropertyValue;
1370 wxString PropertyTokens;
1371 bool BirthdayText = FALSE;
1372 int intPrevValue = 6;
1374 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1378 // Look for type before continuing.
1380 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1381 intiter != SplitPoints.end(); ++intiter){
1383 SLiter = SplitLength.find(intiter->first);
1385 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1387 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1388 PropertyName = PropertyElement.GetNextToken();
1389 PropertyValue = PropertyElement.GetNextToken();
1391 intPrevValue = intiter->second;
1393 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && BirthdayText == FALSE){
1395 CaptureString(&PropertySeg2, FALSE);
1396 Birthday = PropertySeg2;
1397 BirthdayText = TRUE;
1403 // Setup blank lines for later on.
1406 bool FirstToken = TRUE;
1408 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1409 intiter != SplitPoints.end(); ++intiter){
1411 SLiter = SplitLength.find(intiter->first);
1413 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1415 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1416 PropertyName = PropertyElement.GetNextToken();
1417 PropertyValue = PropertyElement.GetNextToken();
1419 intPrevValue = intiter->second;
1421 // Process properties.
1423 CaptureString(&PropertyValue, FALSE);
1425 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1427 PropertyValue.Trim();
1428 PropertyValue.RemoveLast();
1432 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1434 PropertyValue.Remove(0, 1);
1438 if (PropertyName == wxT("ALTID")){
1440 BirthdayAltID = PropertyValue;
1442 } else if (PropertyName == wxT("CALSCALE")){
1444 BirthdayCalScale = PropertyValue;
1446 } else if (PropertyName != wxT("VALUE")) {
1448 // Something else we don't know about so append
1449 // to the tokens variable.
1451 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1453 if (FirstToken == TRUE){
1455 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1460 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1470 // Add the data to the variables and form.
1472 if (BirthdayText == FALSE){
1474 Birthday = PropertySeg2;
1478 if (!PropertyTokens.IsEmpty()){
1480 BirthdayTokens = PropertyTokens;
1486 void ContactDataObject::ProcessAnniversary(wxString PropertySeg1, wxString PropertySeg2){
1488 // Process date. Preserve the remainder in the string.
1490 std::map<int, int> SplitPoints;
1491 std::map<int, int> SplitLength;
1492 std::map<int, int>::iterator SLiter;
1493 wxString PropertyData;
1494 wxString PropertyName;
1495 wxString PropertyValue;
1496 wxString PropertyTokens;
1497 bool AnniversaryText = FALSE;
1498 int intPrevValue = 13;
1500 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1504 // Look for type before continuing.
1506 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1507 intiter != SplitPoints.end(); ++intiter){
1509 SLiter = SplitLength.find(intiter->first);
1511 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1513 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1514 PropertyName = PropertyElement.GetNextToken();
1515 PropertyValue = PropertyElement.GetNextToken();
1517 intPrevValue = intiter->second;
1519 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && AnniversaryText == FALSE){
1521 CaptureString(&PropertySeg2, FALSE);
1522 Anniversary = PropertySeg2;
1523 AnniversaryText = TRUE;
1529 // Setup blank lines for later on.
1532 bool FirstToken = TRUE;
1534 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1535 intiter != SplitPoints.end(); ++intiter){
1537 SLiter = SplitLength.find(intiter->first);
1539 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1541 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1542 PropertyName = PropertyElement.GetNextToken();
1543 PropertyValue = PropertyElement.GetNextToken();
1545 intPrevValue = intiter->second;
1547 // Process properties.
1549 CaptureString(&PropertyValue, FALSE);
1551 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1553 PropertyValue.Trim();
1554 PropertyValue.RemoveLast();
1558 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1560 PropertyValue.Remove(0, 1);
1564 if (PropertyName == wxT("ALTID")){
1566 AnniversaryAltID = PropertyValue;
1568 } else if (PropertyName == wxT("CALSCALE")){
1570 AnniversaryCalScale = PropertyValue;
1572 } else if (PropertyName != wxT("VALUE")) {
1574 // Something else we don't know about so append
1575 // to the tokens variable.
1577 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1579 if (FirstToken == TRUE){
1581 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1586 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1596 // Add the data to the variables and form.
1598 if (AnniversaryText == FALSE){
1600 Anniversary = PropertySeg2;
1604 if (!PropertyTokens.IsEmpty()){
1606 AnniversaryTokens = PropertyTokens;
1612 void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString PropertySeg2, int *TimeZoneCount){
1614 std::map<int, int> SplitPoints;
1615 std::map<int, int> SplitLength;
1617 int intPrevValue = 4;
1620 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1624 PropertyType PropType = PROPERTY_NONE;
1626 // Look for type before continuing.
1628 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1632 std::map<int, wxString> *TZList = NULL;
1633 std::map<int, wxString> *TZListType = NULL;
1634 std::map<int, wxString> *TZListMediatype = NULL;
1635 std::map<int, wxString> *TZListAltID = NULL;
1636 std::map<int, wxString> *TZListPID = NULL;
1637 std::map<int, wxString> *TZListTokens = NULL;
1638 std::map<int, int> *TZListPref = NULL;
1642 TZList = &GeneralTZList;
1643 TZListType = &GeneralTZListType;
1644 TZListMediatype = &GeneralTZListMediatype;
1645 TZListAltID = &GeneralTZListAltID;
1646 TZListPID = &GeneralTZListPID;
1647 TZListTokens = &GeneralTZListTokens;
1648 TZListPref = &GeneralTZListPref;
1651 TZList = &HomeTZList;
1652 TZListType = &HomeTZListType;
1653 TZListMediatype = &HomeTZListMediatype;
1654 TZListAltID = &HomeTZListAltID;
1655 TZListPID = &HomeTZListPID;
1656 TZListTokens = &HomeTZListTokens;
1657 TZListPref = &HomeTZListPref;
1660 TZList = &BusinessTZList;
1661 TZListType = &BusinessTZListType;
1662 TZListMediatype = &BusinessTZListMediatype;
1663 TZListAltID = &BusinessTZListAltID;
1664 TZListPID = &BusinessTZListPID;
1665 TZListTokens = &BusinessTZListTokens;
1666 TZListPref = &BusinessTZListPref;
1670 std::map<int, int>::iterator SLiter;
1671 wxString PropertyData;
1672 wxString PropertyName;
1673 wxString PropertyValue;
1674 wxString PropertyTokens;
1675 bool FirstToken = TRUE;
1677 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1678 intiter != SplitPoints.end(); ++intiter){
1680 SLiter = SplitLength.find(intiter->first);
1682 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1684 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1685 PropertyName = PropertyElement.GetNextToken();
1686 PropertyValue = PropertyElement.GetNextToken();
1688 intPrevValue = intiter->second;
1690 CaptureString(&PropertyValue, FALSE);
1692 if (PropertyName == wxT("ALTID")){
1694 TZListAltID->erase(*TimeZoneCount);
1695 TZListAltID->insert(std::make_pair(*TimeZoneCount, PropertyValue));
1697 } else if (PropertyName == wxT("PID")){
1699 TZListPID->erase(*TimeZoneCount);
1700 TZListPID->insert(std::make_pair(*TimeZoneCount, PropertyValue));
1702 } else if (PropertyName == wxT("PREF")){
1704 ProcessIntegerValue(this, TZListPref, &PropertyValue, TimeZoneCount);
1706 } else if (PropertyName == wxT("MEDIATYPE")){
1708 TZListMediatype->erase(*TimeZoneCount);
1709 TZListMediatype->insert(std::make_pair(*TimeZoneCount, PropertyValue));
1713 // Something else we don't know about so append
1714 // to the tokens variable.
1716 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1718 if (FirstToken == TRUE){
1720 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1725 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1735 TZList->insert(std::make_pair(*TimeZoneCount, PropertySeg2));
1737 // Add the name token data.
1739 if (!PropertyTokens.IsEmpty()){
1741 TZListTokens->insert(std::make_pair(*TimeZoneCount, PropertyTokens));
1748 void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertySeg2, int *AddressCount){
1750 size_t intPropertyLen = PropertySeg1.Len();
1751 std::map<int, int> SplitPoints;
1752 std::map<int, int> SplitLength;
1753 std::map<int, int>::iterator SLiter;
1754 wxString PropertyData;
1755 wxString PropertyName;
1756 wxString PropertyValue;
1757 wxString PropertyTokens;
1758 wxString AddressLabel;
1759 wxString AddressLang;
1760 wxString AddressAltID;
1761 wxString AddressPID;
1762 wxString AddressTokens;
1763 wxString AddressGeo;
1764 wxString AddressTimezone;
1765 wxString AddressType;
1766 wxString AddressMediatype;
1767 wxString AddressPOBox;
1768 wxString AddressExtended;
1769 wxString AddressStreet;
1770 wxString AddressLocality;
1771 wxString AddressCity;
1772 wxString AddressRegion;
1773 wxString AddressPostalCode;
1774 wxString AddressCountry;
1775 bool FirstToken = TRUE;
1776 int intSplitsFound = 0;
1777 int intSplitSize = 0;
1778 int intPrevValue = 5;
1783 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1787 PropertyType PropType = PROPERTY_NONE;
1789 // Look for type before continuing.
1791 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1795 std::map<int, wxString> *AddressList = NULL;
1796 std::map<int, wxString> *AddressListTown = NULL;
1797 std::map<int, wxString> *AddressListCounty = NULL;
1798 std::map<int, wxString> *AddressListPostCode = NULL;
1799 std::map<int, wxString> *AddressListCountry = NULL;
1800 std::map<int, wxString> *AddressListLabel = NULL;
1801 std::map<int, wxString> *AddressListLang = NULL;
1802 std::map<int, wxString> *AddressListAltID = NULL;
1803 std::map<int, wxString> *AddressListPID = NULL;
1804 std::map<int, wxString> *AddressListTokens = NULL;
1805 std::map<int, wxString> *AddressListGeo = NULL;
1806 std::map<int, wxString> *AddressListTimezone = NULL;
1807 std::map<int, wxString> *AddressListType = NULL;
1808 std::map<int, wxString> *AddressListMediatype = NULL;
1809 std::map<int, int> *AddressListPref = NULL;
1813 AddressList = &GeneralAddressList;
1814 AddressListTown = &GeneralAddressListTown;
1815 AddressListCounty = &GeneralAddressListCounty;
1816 AddressListPostCode = &GeneralAddressListPostCode;
1817 AddressListCountry = &GeneralAddressListCountry;
1818 AddressListLabel = &GeneralAddressListLabel;
1819 AddressListLang = &GeneralAddressListLang;
1820 AddressListAltID = &GeneralAddressListAltID;
1821 AddressListPID = &GeneralAddressListPID;
1822 AddressListTokens = &GeneralAddressListTokens;
1823 AddressListGeo = &GeneralAddressListGeo;
1824 AddressListTimezone = &GeneralAddressListTimezone;
1825 AddressListType = &GeneralAddressListType;
1826 AddressListMediatype = &GeneralAddressListMediatype;
1827 AddressListPref = &GeneralAddressListPref;
1830 AddressList = &HomeAddressList;
1831 AddressListTown = &HomeAddressListTown;
1832 AddressListCounty = &HomeAddressListCounty;
1833 AddressListPostCode = &HomeAddressListPostCode;
1834 AddressListCountry = &HomeAddressListCountry;
1835 AddressListLabel = &HomeAddressListLabel;
1836 AddressListLang = &HomeAddressListLang;
1837 AddressListAltID = &HomeAddressListAltID;
1838 AddressListPID = &HomeAddressListPID;
1839 AddressListTokens = &HomeAddressListTokens;
1840 AddressListGeo = &HomeAddressListGeo;
1841 AddressListTimezone = &HomeAddressListTimezone;
1842 AddressListType = &HomeAddressListType;
1843 AddressListMediatype = &HomeAddressListMediatype;
1844 AddressListPref = &HomeAddressListPref;
1847 AddressList = &BusinessAddressList;
1848 AddressListTown = &BusinessAddressListTown;
1849 AddressListCounty = &BusinessAddressListCounty;
1850 AddressListPostCode = &BusinessAddressListPostCode;
1851 AddressListCountry = &BusinessAddressListCountry;
1852 AddressListLabel = &BusinessAddressListLabel;
1853 AddressListLang = &BusinessAddressListLang;
1854 AddressListAltID = &BusinessAddressListAltID;
1855 AddressListPID = &BusinessAddressListPID;
1856 AddressListTokens = &BusinessAddressListTokens;
1857 AddressListGeo = &BusinessAddressListGeo;
1858 AddressListTimezone = &BusinessAddressListTimezone;
1859 AddressListType = &BusinessAddressListType;
1860 AddressListMediatype = &BusinessAddressListMediatype;
1861 AddressListPref = &BusinessAddressListPref;
1867 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1868 intiter != SplitPoints.end(); ++intiter){
1870 SLiter = SplitLength.find(intiter->first);
1872 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1874 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1875 PropertyName = PropertyElement.GetNextToken();
1876 PropertyValue = PropertyElement.GetNextToken();
1878 intPrevValue = intiter->second;
1880 CaptureString(&PropertyValue, FALSE);
1882 // Process properties.
1884 if (PropertyName == wxT("LABEL")){
1886 AddressListLabel->erase(*AddressCount);
1887 AddressListLabel->insert(std::make_pair(*AddressCount, PropertyValue));
1889 } else if (PropertyName == wxT("LANGUAGE")){
1891 AddressListLang->erase(*AddressCount);
1892 AddressListLang->insert(std::make_pair(*AddressCount, PropertyValue));
1894 } else if (PropertyName == wxT("ALTID")){
1896 AddressListAltID->erase(*AddressCount);
1897 AddressListAltID->insert(std::make_pair(*AddressCount, PropertyValue));
1899 } else if (PropertyName == wxT("PID")){
1901 AddressListPID->erase(*AddressCount);
1902 AddressListPID->insert(std::make_pair(*AddressCount, PropertyValue));
1904 } else if (PropertyName == wxT("GEO")){
1906 AddressListGeo->erase(*AddressCount);
1907 AddressListGeo->insert(std::make_pair(*AddressCount, PropertyValue));
1909 } else if (PropertyName == wxT("TZ")){
1911 AddressListTimezone->erase(*AddressCount);
1912 AddressListTimezone->insert(std::make_pair(*AddressCount, PropertyValue));
1914 } else if (PropertyName == wxT("MEDIATYPE")){
1916 AddressListMediatype->erase(*AddressCount);
1917 AddressListMediatype->insert(std::make_pair(*AddressCount, PropertyValue));
1919 } else if (PropertyName == wxT("PREF")){
1921 ProcessIntegerValue(this, AddressListPref, &PropertyValue, AddressCount);
1925 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1927 if (FirstToken == TRUE){
1929 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1934 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1944 // Split the address.
1946 //std::map<int, int>::iterator SLiter;
1947 intPropertyLen = PropertySeg2.Len();
1948 SplitPoints.clear();
1949 SplitLength.clear();
1954 for (int i = 0; i <= intPropertyLen; i++){
1958 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
1961 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
1963 if (intSplitsFound == 6){
1965 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1970 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1980 // Split the data into several parts.
1982 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1983 intiter != SplitPoints.end(); ++intiter){
1985 if (intiter->first == 1){
1987 // Deal with PO Box.
1989 SLiter = SplitLength.find(1);
1991 //txtSurname->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(0, SLiter->second), TRUE));
1992 AddressPOBox = PropertySeg2.Mid(0, SLiter->second);
1993 intPrevValue = intiter->second;
1995 } else if (intiter->first == 2){
1997 // Deal with extended address.
1999 SLiter = SplitLength.find(2);
2001 AddressExtended = PropertySeg2.Mid(intPrevValue, SLiter->second);
2002 //txtForename->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
2003 intPrevValue = intiter->second;
2005 } else if (intiter->first == 3){
2007 // Deal with street address.
2009 SLiter = SplitLength.find(3);
2011 AddressStreet = PropertySeg2.Mid(intPrevValue, SLiter->second);
2012 //txtOtherNames->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
2013 intPrevValue = intiter->second;
2015 } else if (intiter->first == 4){
2017 // Deal with locality
2019 SLiter = SplitLength.find(4);
2021 AddressLocality = PropertySeg2.Mid(intPrevValue, SLiter->second);
2022 //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
2023 intPrevValue = intiter->second;
2025 //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
2027 } else if (intiter->first == 5){
2029 // Deal with region.
2031 SLiter = SplitLength.find(5);
2033 AddressRegion = PropertySeg2.Mid(intPrevValue, SLiter->second);
2034 //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
2035 intPrevValue = intiter->second;
2037 //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
2039 } else if (intiter->first == 6){
2041 // Deal with post code.
2043 SLiter = SplitLength.find(6);
2045 AddressPostalCode = PropertySeg2.Mid(intPrevValue, SLiter->second);
2046 //txtTitle->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue, SLiter->second), TRUE));
2047 intPrevValue = intiter->second;
2049 // Deal with country.
2051 AddressCountry = PropertySeg2.Mid(intPrevValue, wxString::npos);
2052 //txtSuffix->SetValue(ContactData.Convert(wxSPropertySeg2.Mid(intPrevValue), TRUE));
2060 // Add the data to the General/Home/Work address variables.
2062 CaptureString(&AddressStreet, FALSE);
2063 CaptureString(&AddressLocality, FALSE);
2064 CaptureString(&AddressRegion, FALSE);
2065 CaptureString(&AddressPostalCode, FALSE);
2066 CaptureString(&AddressCountry, FALSE);
2068 if (!PropertyTokens.IsEmpty()){
2070 AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
2074 AddressListCountry->insert(std::make_pair(*AddressCount, AddressCountry));
2075 AddressList->insert(std::make_pair(*AddressCount, AddressStreet));
2076 AddressListTown->insert(std::make_pair(*AddressCount, AddressLocality));
2077 AddressListCounty->insert(std::make_pair(*AddressCount, AddressRegion));
2078 AddressListPostCode->insert(std::make_pair(*AddressCount, AddressPostalCode));
2082 AddressListType->insert(std::make_pair(*AddressCount, wxT("")));
2085 AddressListType->insert(std::make_pair(*AddressCount, wxT("home")));
2088 AddressListType->insert(std::make_pair(*AddressCount, wxT("work")));
2092 AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
2096 void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg2, int *EmailCount){
2098 std::map<int, int> SplitPoints;
2099 std::map<int, int> SplitLength;
2101 int intPrevValue = 7;
2104 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2108 PropertyType PropType = PROPERTY_NONE;
2110 // Look for type before continuing.
2112 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2114 std::map<int, wxString> *EmailList = NULL;
2115 std::map<int, wxString> *EmailListType = NULL;
2116 std::map<int, wxString> *EmailListAltID = NULL;
2117 std::map<int, wxString> *EmailListPID = NULL;
2118 std::map<int, wxString> *EmailListTokens = NULL;
2119 std::map<int, int> *EmailListPref = NULL;
2123 EmailList = &GeneralEmailList;
2124 EmailListType = &GeneralEmailListType;
2125 EmailListAltID = &GeneralEmailListAltID;
2126 EmailListPID = &GeneralEmailListPID;
2127 EmailListTokens = &GeneralEmailListTokens;
2128 EmailListPref = &GeneralEmailListPref;
2131 EmailList = &HomeEmailList;
2132 EmailListType = &HomeEmailListType;
2133 EmailListAltID = &HomeEmailListAltID;
2134 EmailListPID = &HomeEmailListPID;
2135 EmailListTokens = &HomeEmailListTokens;
2136 EmailListPref = &HomeEmailListPref;
2139 EmailList = &BusinessEmailList;
2140 EmailListType = &BusinessEmailListType;
2141 EmailListAltID = &BusinessEmailListAltID;
2142 EmailListPID = &BusinessEmailListPID;
2143 EmailListTokens = &BusinessEmailListTokens;
2144 EmailListPref = &BusinessEmailListPref;
2150 std::map<int,int>::iterator SLiter;
2151 wxString PropertyData;
2152 wxString PropertyName;
2153 wxString PropertyValue;
2154 wxString PropertyTokens;
2155 bool FirstToken = TRUE;
2157 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2158 intiter != SplitPoints.end(); ++intiter){
2160 SLiter = SplitLength.find(intiter->first);
2162 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2164 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2165 PropertyName = PropertyElement.GetNextToken();
2166 PropertyValue = PropertyElement.GetNextToken();
2168 intPrevValue = intiter->second;
2170 CaptureString(&PropertyValue, FALSE);
2172 // Process properties.
2174 if (PropertyName == wxT("ALTID")){
2176 EmailListAltID->erase(*EmailCount);
2177 EmailListAltID->insert(std::make_pair(*EmailCount, PropertyValue));
2179 } else if (PropertyName == wxT("PID")){
2181 EmailListPID->erase(*EmailCount);
2182 EmailListPID->insert(std::make_pair(*EmailCount, PropertyValue));
2184 } else if (PropertyName == wxT("PREF")){
2186 ProcessIntegerValue(this, EmailListPref, &PropertyValue, EmailCount);
2190 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2192 if (FirstToken == TRUE){
2194 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2199 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2209 EmailList->insert(std::make_pair(*EmailCount, PropertySeg2));
2211 // Add the name token data.
2213 if (!PropertyTokens.IsEmpty()){
2215 EmailListTokens->insert(std::make_pair(*EmailCount, PropertyTokens));
2222 void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, int *IMCount){
2224 std::map<int, int> SplitPoints;
2225 std::map<int, int> SplitLength;
2227 int intPrevValue = 6;
2230 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2234 PropertyType PropType = PROPERTY_NONE;
2236 // Look for type before continuing.
2238 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2240 std::map<int, wxString> *IMList = NULL;
2241 std::map<int, wxString> *IMListType = NULL;
2242 std::map<int, wxString> *IMListAltID = NULL;
2243 std::map<int, wxString> *IMListPID = NULL;
2244 std::map<int, wxString> *IMListTokens = NULL;
2245 std::map<int, wxString> *IMListMediatype = NULL;
2246 std::map<int, int> *IMListPref = NULL;
2250 IMList = &GeneralIMList;
2251 IMListType = &GeneralIMListType;
2252 IMListAltID = &GeneralIMListAltID;
2253 IMListPID = &GeneralIMListPID;
2254 IMListTokens = &GeneralIMListTokens;
2255 IMListMediatype = &GeneralIMListMediatype;
2256 IMListPref = &GeneralIMListPref;
2259 IMList = &HomeIMList;
2260 IMListType = &HomeIMListType;
2261 IMListAltID = &HomeIMListAltID;
2262 IMListPID = &HomeIMListPID;
2263 IMListTokens = &HomeIMListTokens;
2264 IMListMediatype = &HomeIMListMediatype;
2265 IMListPref = &HomeIMListPref;
2268 IMList = &BusinessIMList;
2269 IMListType = &BusinessIMListType;
2270 IMListAltID = &BusinessIMListAltID;
2271 IMListPID = &BusinessIMListPID;
2272 IMListTokens = &BusinessIMListTokens;
2273 IMListMediatype = &BusinessIMListMediatype;
2274 IMListPref = &BusinessIMListPref;
2280 std::map<int,int>::iterator SLiter;
2281 wxString PropertyData;
2282 wxString PropertyName;
2283 wxString PropertyValue;
2284 wxString PropertyTokens;
2285 bool FirstToken = TRUE;
2287 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2288 intiter != SplitPoints.end(); ++intiter){
2290 SLiter = SplitLength.find(intiter->first);
2292 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2294 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2295 PropertyName = PropertyElement.GetNextToken();
2296 PropertyValue = PropertyElement.GetNextToken();
2298 intPrevValue = intiter->second;
2300 CaptureString(&PropertyValue, FALSE);
2302 // Process properties.
2304 if (PropertyName == wxT("ALTID")){
2306 IMListAltID->erase(*IMCount);
2307 IMListAltID->insert(std::make_pair(*IMCount, PropertyValue));
2309 } else if (PropertyName == wxT("PID")){
2311 IMListPID->erase(*IMCount);
2312 IMListPID->insert(std::make_pair(*IMCount, PropertyValue));
2314 } else if (PropertyName == wxT("MEDIATYPE")){
2316 IMListMediatype->erase(*IMCount);
2317 IMListMediatype->insert(std::make_pair(*IMCount, PropertyValue));
2319 } else if (PropertyName == wxT("PREF")){
2321 ProcessIntegerValue(this, IMListPref, &PropertyValue, IMCount);
2325 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2327 if (FirstToken == TRUE){
2329 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2334 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2344 IMList->insert(std::make_pair(*IMCount, PropertySeg2));
2346 // Add the name token data.
2348 if (!PropertyTokens.IsEmpty()){
2350 IMListTokens->insert(std::make_pair(*IMCount, PropertyTokens));
2356 void ContactDataObject::ProcessTelephone(wxString PropertySeg1, wxString PropertySeg2, int *TelephoneCount){
2358 std::map<int, int> SplitPoints;
2359 std::map<int, int> SplitLength;
2360 std::map<int, int>::iterator SLiter;
2364 PropertyType PropType = PROPERTY_NONE;
2366 // Look for type before continuing.
2369 wxString TelTypeDetail;
2370 wxString PropertyData;
2371 wxString PropertyName;
2372 wxString PropertyValue;
2373 wxString PropertyTokens;
2375 std::map<int,int> TypeSplitPoints;
2376 std::map<int,int> TypeSplitLength;
2377 std::map<int,int>::iterator TSLiter;
2379 int intSplitSize = 0;
2380 int intSplitsFound = 0;
2381 int intSplitPoint = 0;
2383 int intPrevValue = 5;
2385 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2389 // Look for type before continuing.
2391 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2392 intiter != SplitPoints.end(); ++intiter){
2394 SLiter = SplitLength.find(intiter->first);
2396 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2398 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2399 PropertyName = PropertyElement.GetNextToken();
2400 PropertyValue = PropertyElement.GetNextToken();
2402 intPrevValue = intiter->second;
2404 if (PropertyName == wxT("TYPE")){
2406 // Process each value in type and translate each
2409 // Strip out the quotes if they are there.
2411 size_t intPropertyValueLen = PropertyValue.Len();
2413 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2415 PropertyValue.Trim();
2416 PropertyValue.RemoveLast();
2420 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2422 PropertyValue.Remove(0, 1);
2426 TelTypeDetail = PropertyValue;
2432 for (int i = 0; i <= intPropertyValueLen; i++){
2436 if (PropertyValue.Mid(i, 1) == wxT(",") && PropertyValue.Mid((i - 1), 1) != wxT("\\")){
2438 if (intSplitsFound == 0){
2440 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2441 TypeSplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
2445 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2446 TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
2459 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2460 TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
2462 int intTypeSeek = 0;
2464 for (std::map<int, int>::iterator typeiter = TypeSplitPoints.begin();
2465 typeiter != TypeSplitPoints.end(); ++typeiter){
2467 wxString TypePropertyName;
2469 TSLiter = TypeSplitLength.find(typeiter->first);
2471 TypePropertyName = PropertyValue.Mid(typeiter->second, TSLiter->second);
2473 if (intTypeSeek == 0){
2478 TelTypeUI.Append(wxT(","));
2482 if (TypePropertyName == wxT("home")){
2484 PropType = PROPERTY_HOME;
2486 } else if (TypePropertyName == wxT("work")){
2488 PropType = PROPERTY_WORK;
2493 if (TypePropertyName == wxT("text")){
2495 TelTypeUI.Append(_("text"));
2498 } else if (TypePropertyName == wxT("voice")){
2500 TelTypeUI.Append(_("voice"));
2503 } else if (TypePropertyName == wxT("fax")){
2505 TelTypeUI.Append(_("fax"));
2508 } else if (TypePropertyName == wxT("cell")){
2510 TelTypeUI.Append(_("mobile"));
2513 } else if (TypePropertyName == wxT("video")){
2515 TelTypeUI.Append(_("video"));
2518 } else if (TypePropertyName == wxT("pager")){
2520 TelTypeUI.Append(_("pager"));
2523 } else if (TypePropertyName == wxT("textphone")){
2525 TelTypeUI.Append(_("textphone"));
2536 std::map<int, wxString> *TelephoneList = NULL;
2537 std::map<int, wxString> *TelephoneListType = NULL;
2538 std::map<int, wxString> *TelephoneListAltID = NULL;
2539 std::map<int, wxString> *TelephoneListPID = NULL;
2540 std::map<int, wxString> *TelephoneListTokens = NULL;
2541 std::map<int, wxString> *TelephoneListTypeInfo = NULL;
2542 std::map<int, int> *TelephoneListPref = NULL;
2546 TelephoneList = &GeneralTelephoneList;
2547 TelephoneListType = &GeneralTelephoneListType;
2548 TelephoneListAltID = &GeneralTelephoneListAltID;
2549 TelephoneListPID = &GeneralTelephoneListPID;
2550 TelephoneListTokens = &GeneralTelephoneListTokens;
2551 TelephoneListTypeInfo = &GeneralTelephoneListTypeInfo;
2552 TelephoneListPref = &GeneralTelephoneListPref;
2555 TelephoneList = &HomeTelephoneList;
2556 TelephoneListType = &HomeTelephoneListType;
2557 TelephoneListAltID = &HomeTelephoneListAltID;
2558 TelephoneListPID = &HomeTelephoneListPID;
2559 TelephoneListTokens = &HomeTelephoneListTokens;
2560 TelephoneListTypeInfo = &HomeTelephoneListTypeInfo;
2561 TelephoneListPref = &HomeTelephoneListPref;
2564 TelephoneList = &BusinessTelephoneList;
2565 TelephoneListType = &BusinessTelephoneListType;
2566 TelephoneListAltID = &BusinessTelephoneListAltID;
2567 TelephoneListPID = &BusinessTelephoneListPID;
2568 TelephoneListTokens = &BusinessTelephoneListTokens;
2569 TelephoneListTypeInfo = &BusinessTelephoneListTypeInfo;
2570 TelephoneListPref = &BusinessTelephoneListPref;
2574 // Process the properties.
2576 bool FirstToken = TRUE;
2579 SplitPoints.clear();
2580 SplitLength.clear();
2582 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2586 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2587 intiter != SplitPoints.end(); ++intiter){
2589 SLiter = SplitLength.find(intiter->first);
2591 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2593 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2594 PropertyName = PropertyElement.GetNextToken();
2595 PropertyValue = PropertyElement.GetNextToken();
2597 intPrevValue = intiter->second;
2599 CaptureString(&PropertyValue, FALSE);
2601 // Process properties.
2603 if (PropertyName == wxT("ALTID")){
2605 TelephoneListAltID->erase(*TelephoneCount);
2606 TelephoneListAltID->insert(std::make_pair(*TelephoneCount, PropertyValue));
2608 } else if (PropertyName == wxT("PID")){
2610 TelephoneListPID->erase(*TelephoneCount);
2611 TelephoneListPID->insert(std::make_pair(*TelephoneCount, PropertyValue));
2613 } else if (PropertyName == wxT("PREF")){
2615 ProcessIntegerValue(this, TelephoneListPref, &PropertyValue, TelephoneCount);
2619 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2621 if (FirstToken == TRUE){
2623 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2628 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2638 TelephoneList->insert(std::make_pair(*TelephoneCount, PropertySeg2));
2639 TelephoneListTypeInfo->insert(std::make_pair(*TelephoneCount, TelTypeUI));
2641 // Add the name token data.
2643 if (!PropertyTokens.IsEmpty()){
2645 TelephoneListTokens->insert(std::make_pair(*TelephoneCount, PropertyTokens));
2651 void ContactDataObject::ProcessLanguage(wxString PropertySeg1, wxString PropertySeg2, int *LanguageCount){
2653 std::map<int, int> SplitPoints;
2654 std::map<int, int> SplitLength;
2656 int intPrevValue = 6;
2659 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2663 PropertyType PropType = PROPERTY_NONE;
2665 // Look for type before continuing.
2667 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2669 std::map<int, wxString> *LanguageList = NULL;
2670 std::map<int, wxString> *LanguageListType = NULL;
2671 std::map<int, wxString> *LanguageListAltID = NULL;
2672 std::map<int, wxString> *LanguageListPID = NULL;
2673 std::map<int, wxString> *LanguageListTokens = NULL;
2674 std::map<int, int> *LanguageListPref = NULL;
2678 LanguageList = &GeneralLanguageList;
2679 LanguageListType = &GeneralLanguageListType;
2680 LanguageListAltID = &GeneralLanguageListAltID;
2681 LanguageListPID = &GeneralLanguageListPID;
2682 LanguageListTokens = &GeneralLanguageListTokens;
2683 LanguageListPref = &GeneralLanguageListPref;
2686 LanguageList = &HomeLanguageList;
2687 LanguageListType = &HomeLanguageListType;
2688 LanguageListAltID = &HomeLanguageListAltID;
2689 LanguageListPID = &HomeLanguageListPID;
2690 LanguageListTokens = &HomeLanguageListTokens;
2691 LanguageListPref = &HomeLanguageListPref;
2694 LanguageList = &BusinessLanguageList;
2695 LanguageListType = &BusinessLanguageListType;
2696 LanguageListAltID = &BusinessLanguageListAltID;
2697 LanguageListPID = &BusinessLanguageListPID;
2698 LanguageListTokens = &BusinessLanguageListTokens;
2699 LanguageListPref = &BusinessLanguageListPref;
2705 std::map<int,int>::iterator SLiter;
2706 wxString PropertyData;
2707 wxString PropertyName;
2708 wxString PropertyValue;
2709 wxString PropertyTokens;
2710 bool FirstToken = TRUE;
2712 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2713 intiter != SplitPoints.end(); ++intiter){
2715 SLiter = SplitLength.find(intiter->first);
2717 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2719 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2720 PropertyName = PropertyElement.GetNextToken();
2721 PropertyValue = PropertyElement.GetNextToken();
2723 intPrevValue = intiter->second;
2725 CaptureString(&PropertyValue, FALSE);
2727 // Process properties.
2729 if (PropertyName == wxT("ALTID")){
2731 LanguageListAltID->erase(*LanguageCount);
2732 LanguageListAltID->insert(std::make_pair(*LanguageCount, PropertyValue));
2734 } else if (PropertyName == wxT("PID")){
2736 LanguageListPID->erase(*LanguageCount);
2737 LanguageListPID->insert(std::make_pair(*LanguageCount, PropertyValue));
2739 } else if (PropertyName == wxT("PREF")){
2741 ProcessIntegerValue(this, LanguageListPref, &PropertyValue, LanguageCount);
2745 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2747 if (FirstToken == TRUE){
2749 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2754 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2764 LanguageList->insert(std::make_pair(*LanguageCount, PropertySeg2));
2766 // Add the name token data.
2768 if (!PropertyTokens.IsEmpty()){
2770 LanguageListTokens->insert(std::make_pair(*LanguageCount, PropertyTokens));
2776 void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString PropertySeg2, int *GeographicCount){
2778 std::map<int, int> SplitPoints;
2779 std::map<int, int> SplitLength;
2781 int intPrevValue = 5;
2784 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2788 PropertyType PropType = PROPERTY_NONE;
2790 // Look for type before continuing.
2792 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2794 std::map<int, wxString> *GeopositionList = NULL;
2795 std::map<int, wxString> *GeopositionListType = NULL;
2796 std::map<int, wxString> *GeopositionListAltID = NULL;
2797 std::map<int, wxString> *GeopositionListPID = NULL;
2798 std::map<int, wxString> *GeopositionListTokens = NULL;
2799 std::map<int, wxString> *GeopositionListMediatype = NULL;
2800 std::map<int, int> *GeopositionListPref = NULL;
2804 GeopositionList = &GeneralGeographyList;
2805 GeopositionListType = &GeneralGeographyListType;
2806 GeopositionListAltID = &GeneralGeographyListAltID;
2807 GeopositionListPID = &GeneralGeographyListPID;
2808 GeopositionListTokens = &GeneralGeographyListTokens;
2809 GeopositionListMediatype = &GeneralGeographyListMediatype;
2810 GeopositionListPref = &GeneralGeographyListPref;
2813 GeopositionList = &HomeGeographyList;
2814 GeopositionListType = &HomeGeographyListType;
2815 GeopositionListAltID = &HomeGeographyListAltID;
2816 GeopositionListPID = &HomeGeographyListPID;
2817 GeopositionListTokens = &HomeGeographyListTokens;
2818 GeopositionListMediatype = &HomeGeographyListMediatype;
2819 GeopositionListPref = &HomeGeographyListPref;
2822 GeopositionList = &BusinessGeographyList;
2823 GeopositionListType = &BusinessGeographyListType;
2824 GeopositionListAltID = &BusinessGeographyListAltID;
2825 GeopositionListPID = &BusinessGeographyListPID;
2826 GeopositionListTokens = &BusinessGeographyListTokens;
2827 GeopositionListMediatype = &BusinessGeographyListMediatype;
2828 GeopositionListPref = &BusinessGeographyListPref;
2834 std::map<int,int>::iterator SLiter;
2835 wxString PropertyData;
2836 wxString PropertyName;
2837 wxString PropertyValue;
2838 wxString PropertyTokens;
2839 bool FirstToken = TRUE;
2841 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2842 intiter != SplitPoints.end(); ++intiter){
2844 SLiter = SplitLength.find(intiter->first);
2846 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2848 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2849 PropertyName = PropertyElement.GetNextToken();
2850 PropertyValue = PropertyElement.GetNextToken();
2852 intPrevValue = intiter->second;
2854 CaptureString(&PropertyValue, FALSE);
2856 // Process properties.
2858 if (PropertyName == wxT("ALTID")){
2860 GeopositionListAltID->erase(*GeographicCount);
2861 GeopositionListAltID->insert(std::make_pair(*GeographicCount, PropertyValue));
2863 } else if (PropertyName == wxT("PID")){
2865 GeopositionListPID->erase(*GeographicCount);
2866 GeopositionListPID->insert(std::make_pair(*GeographicCount, PropertyValue));
2868 } else if (PropertyName == wxT("MEDIATYPE")){
2870 GeopositionListMediatype->erase(*GeographicCount);
2871 GeopositionListMediatype->insert(std::make_pair(*GeographicCount, PropertyValue));
2873 } else if (PropertyName == wxT("PREF")){
2875 int PriorityNumber = 0;
2876 bool ValidNumber = TRUE;
2879 PriorityNumber = std::stoi(PropertyValue.ToStdString());
2882 catch(std::invalid_argument &e){
2883 ValidNumber = FALSE;
2886 if (ValidNumber == TRUE){
2888 GeopositionListPref->erase(*GeographicCount);
2889 GeopositionListPref->insert(std::make_pair(*GeographicCount, PriorityNumber));
2895 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2897 if (FirstToken == TRUE){
2899 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2904 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2914 GeopositionList->insert(std::make_pair(*GeographicCount, PropertySeg2));
2916 // Add the name token data.
2918 if (!PropertyTokens.IsEmpty()){
2920 GeopositionListTokens->insert(std::make_pair(*GeographicCount, PropertyTokens));
2926 void ContactDataObject::ProcessRelated(wxString PropertySeg1, wxString PropertySeg2, int *RelatedCount){
2928 size_t intPropertyLen = PropertySeg1.Len();
2929 std::map<int, int> SplitPoints;
2930 std::map<int, int> SplitLength;
2931 std::map<int, int>::iterator SLiter;
2932 wxString PropertyData;
2933 wxString PropertyName;
2934 wxString PropertyValue;
2935 wxString PropertyTokens;
2936 wxString RelatedType;
2937 wxString RelatedTypeOriginal;
2938 wxString RelatedName;
2939 bool FirstToken = TRUE;
2940 int intSplitsFound = 0;
2941 int intSplitSize = 0;
2942 int intPrevValue = 9;
2946 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2950 // Look for type before continuing.
2952 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2953 intiter != SplitPoints.end(); ++intiter){
2955 SLiter = SplitLength.find(intiter->first);
2957 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2959 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2960 PropertyName = PropertyElement.GetNextToken();
2961 PropertyValue = PropertyElement.GetNextToken();
2963 intPrevValue = intiter->second;
2967 RelatedTypeOriginal = PropertyValue;
2969 if (PropertyName == wxT("TYPE")){
2971 if (PropertyValue == wxT("contact")){
2973 RelatedType = _("Contact");
2975 } else if (PropertyValue == wxT("acquaintance")){
2977 RelatedType = _("Acquaintance");
2979 } else if (PropertyValue == wxT("friend")){
2981 RelatedType = _("Friend");
2983 } else if (PropertyValue == wxT("met")){
2985 RelatedType = _("Met");
2987 } else if (PropertyValue == wxT("co-worker")){
2989 RelatedType = _("Co-worker");
2991 } else if (PropertyValue == wxT("colleague")){
2993 RelatedType = _("Colleague");
2995 } else if (PropertyValue == wxT("co-resident")){
2997 RelatedType = _("Co-resident");
2999 } else if (PropertyValue == wxT("neighbor")){
3001 RelatedType = _("Neighbour");
3003 } else if (PropertyValue == wxT("child")){
3005 RelatedType = _("Child");
3007 } else if (PropertyValue == wxT("parent")){
3009 RelatedType = _("Parent");
3011 } else if (PropertyValue == wxT("sibling")){
3013 RelatedType = _("Sibling");
3015 } else if (PropertyValue == wxT("spouse")){
3017 RelatedType = _("Spouse");
3019 } else if (PropertyValue == wxT("kin")){
3021 RelatedType = _("Kin");
3023 } else if (PropertyValue == wxT("muse")){
3025 RelatedType = _("Muse");
3027 } else if (PropertyValue == wxT("crush")){
3029 RelatedType = _("Crush");
3031 } else if (PropertyValue == wxT("date")){
3033 RelatedType = _("Date");
3035 } else if (PropertyValue == wxT("sweetheart")){
3037 RelatedType = _("Sweetheart");
3039 } else if (PropertyValue == wxT("me")){
3041 RelatedType = _("Me");
3043 } else if (PropertyValue == wxT("agent")){
3045 RelatedType = _("Agent");
3047 } else if (PropertyValue == wxT("emergency")){
3049 RelatedType = _("Emergency");
3053 RelatedType = PropertyValue;
3063 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3064 intiter != SplitPoints.end(); ++intiter){
3066 SLiter = SplitLength.find(intiter->first);
3068 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3070 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3071 PropertyName = PropertyElement.GetNextToken();
3072 PropertyValue = PropertyElement.GetNextToken();
3074 intPrevValue = intiter->second;
3076 // Process properties.
3078 size_t intPropertyValueLen = PropertyValue.Len();
3080 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3082 PropertyValue.Trim();
3083 PropertyValue.RemoveLast();
3087 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3089 PropertyValue.Remove(0, 1);
3093 CaptureString(&PropertyValue, FALSE);
3095 if (PropertyName == wxT("ALTID")){
3097 GeneralRelatedListAltID.erase(*RelatedCount);
3098 GeneralRelatedListAltID.insert(std::make_pair(*RelatedCount, PropertyValue));
3100 } else if (PropertyName == wxT("PID")){
3102 GeneralRelatedListPID.erase(*RelatedCount);
3103 GeneralRelatedListPID.insert(std::make_pair(*RelatedCount, PropertyValue));
3105 } else if (PropertyName == wxT("PREF")){
3107 int PriorityNumber = 0;
3108 bool ValidNumber = TRUE;
3111 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3114 catch(std::invalid_argument &e){
3115 ValidNumber = FALSE;
3118 if (ValidNumber == TRUE){
3120 GeneralRelatedListPref.erase(*RelatedCount);
3121 GeneralRelatedListPref.insert(std::make_pair(*RelatedCount, PriorityNumber));
3125 } else if (PropertyName == wxT("LANGUAGE")){
3127 GeneralRelatedListLanguage.erase(*RelatedCount);
3128 GeneralRelatedListLanguage.insert(std::make_pair(*RelatedCount, PropertyValue));
3130 } else if (PropertyName != wxT("TYPE")) {
3132 // Something else we don't know about so append
3133 // to the tokens variable.
3135 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3137 if (FirstToken == TRUE){
3139 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3144 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3154 // Add the data to the General/Home/Work address variables.
3156 GeneralRelatedList.erase(*RelatedCount);
3157 GeneralRelatedListRelType.erase(*RelatedCount);
3158 GeneralRelatedListType.erase(*RelatedCount);
3159 GeneralRelatedListTokens.erase(*RelatedCount);
3160 GeneralRelatedList.insert(std::make_pair(*RelatedCount, PropertySeg2));
3161 GeneralRelatedListRelType.insert(std::make_pair(*RelatedCount, RelatedType));
3162 GeneralRelatedListType.insert(std::make_pair(*RelatedCount, RelatedType));
3163 GeneralRelatedListTokens.insert(std::make_pair(*RelatedCount, PropertyTokens));
3167 void ContactDataObject::ProcessURL(wxString PropertySeg1, wxString PropertySeg2, int *URLCount){
3169 std::map<int, int> SplitPoints;
3170 std::map<int, int> SplitLength;
3171 std::map<int, int>::iterator SLiter;
3172 wxString PropertyData;
3173 wxString PropertyName;
3174 wxString PropertyValue;
3175 wxString PropertyTokens;
3176 bool FirstToken = TRUE;
3177 int intPrevValue = 5;
3182 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3186 PropertyType PropType = PROPERTY_NONE;
3188 // Look for type before continuing.
3190 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3192 // Setup the pointers.
3194 std::map<int, wxString> *WebsiteList = NULL;
3195 std::map<int, wxString> *WebsiteListAltID = NULL;
3196 std::map<int, wxString> *WebsiteListPID = NULL;
3197 std::map<int, wxString> *WebsiteListType = NULL;
3198 std::map<int, wxString> *WebsiteListTokens = NULL;
3199 std::map<int, wxString> *WebsiteListMediatype = NULL;
3200 std::map<int, int> *WebsiteListPref = NULL;
3202 // Setup blank lines for later on.
3206 WebsiteList = &GeneralWebsiteList;
3207 WebsiteListType = &GeneralWebsiteListType;
3208 WebsiteListAltID = &GeneralWebsiteListAltID;
3209 WebsiteListPID = &GeneralWebsiteListPID;
3210 WebsiteListTokens = &GeneralWebsiteListTokens;
3211 WebsiteListMediatype = &GeneralWebsiteListMediatype;
3212 WebsiteListPref = &GeneralWebsiteListPref;
3215 WebsiteList = &HomeWebsiteList;
3216 WebsiteListType = &HomeWebsiteListType;
3217 WebsiteListAltID = &HomeWebsiteListAltID;
3218 WebsiteListPID = &HomeWebsiteListPID;
3219 WebsiteListTokens = &HomeWebsiteListTokens;
3220 WebsiteListMediatype = &HomeWebsiteListMediatype;
3221 WebsiteListPref = &HomeWebsiteListPref;
3224 WebsiteList = &BusinessWebsiteList;
3225 WebsiteListType = &BusinessWebsiteListType;
3226 WebsiteListAltID = &BusinessWebsiteListAltID;
3227 WebsiteListPID = &BusinessWebsiteListPID;
3228 WebsiteListTokens = &BusinessWebsiteListTokens;
3229 WebsiteListMediatype = &BusinessWebsiteListMediatype;
3230 WebsiteListPref = &BusinessWebsiteListPref;
3236 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3237 intiter != SplitPoints.end(); ++intiter){
3239 SLiter = SplitLength.find(intiter->first);
3241 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3243 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3244 PropertyName = PropertyElement.GetNextToken();
3245 PropertyValue = PropertyElement.GetNextToken();
3247 intPrevValue = intiter->second;
3249 // Process properties.
3251 size_t intPropertyValueLen = PropertyValue.Len();
3253 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3255 PropertyValue.Trim();
3256 PropertyValue.RemoveLast();
3260 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3262 PropertyValue.Remove(0, 1);
3266 CaptureString(&PropertyValue, FALSE);
3268 if (PropertyName == wxT("ALTID")){
3270 WebsiteListAltID->erase(*URLCount);
3271 WebsiteListAltID->insert(std::make_pair(*URLCount, PropertyValue));
3273 } else if (PropertyName == wxT("PID")){
3275 WebsiteListPID->erase(*URLCount);
3276 WebsiteListPID->insert(std::make_pair(*URLCount, PropertyValue));
3278 } else if (PropertyName == wxT("PREF")){
3280 int PriorityNumber = 0;
3281 bool ValidNumber = TRUE;
3284 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3287 catch(std::invalid_argument &e){
3288 ValidNumber = FALSE;
3291 if (ValidNumber == TRUE){
3293 WebsiteListPref->erase(*URLCount);
3294 WebsiteListPref->insert(std::make_pair(*URLCount, PriorityNumber));
3298 } else if (PropertyName == wxT("MEDIATYPE")){
3300 WebsiteListMediatype->erase(*URLCount);
3301 WebsiteListMediatype->insert(std::make_pair(*URLCount, PropertyValue));
3305 // Something else we don't know about so append
3306 // to the tokens variable.
3308 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3310 if (FirstToken == TRUE){
3312 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3317 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3327 // Add the data to the General/Home/Work address variables.
3329 CaptureString(&PropertySeg2, FALSE);
3331 WebsiteList->insert(std::make_pair(*URLCount, PropertySeg2));
3333 if (!PropertyTokens.IsEmpty()){
3335 WebsiteListTokens->insert(std::make_pair(*URLCount, PropertyTokens));
3341 void ContactDataObject::ProcessTitle(wxString PropertySeg1, wxString PropertySeg2, int *TitleCount){
3343 std::map<int, int> SplitPoints;
3344 std::map<int, int> SplitLength;
3345 std::map<int, int>::iterator SLiter;
3346 wxString PropertyData;
3347 wxString PropertyName;
3348 wxString PropertyValue;
3349 wxString PropertyTokens;
3350 bool FirstToken = TRUE;
3351 int intPrevValue = 7;
3356 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3360 PropertyType PropType = PROPERTY_NONE;
3362 // Look for type before continuing.
3364 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3366 // Setup the pointers.
3368 std::map<int, wxString> *TitleList = NULL;
3369 std::map<int, wxString> *TitleListAltID = NULL;
3370 std::map<int, wxString> *TitleListPID = NULL;
3371 std::map<int, wxString> *TitleListType = NULL;
3372 std::map<int, wxString> *TitleListTokens = NULL;
3373 std::map<int, wxString> *TitleListLanguage = NULL;
3374 std::map<int, int> *TitleListPref = NULL;
3376 // Setup blank lines for later on.
3380 TitleList = &GeneralTitleList;
3381 TitleListType = &GeneralTitleListType;
3382 TitleListAltID = &GeneralTitleListAltID;
3383 TitleListPID = &GeneralTitleListPID;
3384 TitleListTokens = &GeneralTitleListTokens;
3385 TitleListLanguage = &GeneralTitleListLanguage;
3386 TitleListPref = &GeneralTitleListPref;
3389 TitleList = &HomeTitleList;
3390 TitleListType = &HomeTitleListType;
3391 TitleListAltID = &HomeTitleListAltID;
3392 TitleListPID = &HomeTitleListPID;
3393 TitleListTokens = &HomeTitleListTokens;
3394 TitleListLanguage = &HomeTitleListLanguage;
3395 TitleListPref = &HomeTitleListPref;
3398 TitleList = &BusinessTitleList;
3399 TitleListType = &BusinessTitleListType;
3400 TitleListAltID = &BusinessTitleListAltID;
3401 TitleListPID = &BusinessTitleListPID;
3402 TitleListTokens = &BusinessTitleListTokens;
3403 TitleListLanguage = &BusinessTitleListLanguage;
3404 TitleListPref = &BusinessTitleListPref;
3410 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3411 intiter != SplitPoints.end(); ++intiter){
3413 SLiter = SplitLength.find(intiter->first);
3415 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3417 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3418 PropertyName = PropertyElement.GetNextToken();
3419 PropertyValue = PropertyElement.GetNextToken();
3421 intPrevValue = intiter->second;
3423 // Process properties.
3425 size_t intPropertyValueLen = PropertyValue.Len();
3427 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3429 PropertyValue.Trim();
3430 PropertyValue.RemoveLast();
3434 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3436 PropertyValue.Remove(0, 1);
3440 CaptureString(&PropertyValue, FALSE);
3442 if (PropertyName == wxT("ALTID")){
3444 TitleListAltID->erase(*TitleCount);
3445 TitleListAltID->insert(std::make_pair(*TitleCount, PropertyValue));
3447 } else if (PropertyName == wxT("PID")){
3449 TitleListPID->erase(*TitleCount);
3450 TitleListPID->insert(std::make_pair(*TitleCount, PropertyValue));
3452 } else if (PropertyName == wxT("PREF")){
3454 int PriorityNumber = 0;
3455 bool ValidNumber = TRUE;
3458 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3461 catch(std::invalid_argument &e){
3462 ValidNumber = FALSE;
3465 if (ValidNumber == TRUE){
3467 TitleListPref->erase(*TitleCount);
3468 TitleListPref->insert(std::make_pair(*TitleCount, PriorityNumber));
3472 } else if (PropertyName == wxT("LANGUAGE")){
3474 TitleListLanguage->erase(*TitleCount);
3475 TitleListLanguage->insert(std::make_pair(*TitleCount, PropertyValue));
3479 // Something else we don't know about so append
3480 // to the tokens variable.
3482 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3484 if (FirstToken == TRUE){
3486 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3491 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3501 // Add the data to the General/Home/Work address variables.
3503 CaptureString(&PropertySeg2, FALSE);
3505 TitleList->insert(std::make_pair(*TitleCount, PropertySeg2));
3507 if (!PropertyTokens.IsEmpty()){
3509 TitleListTokens->insert(std::make_pair(*TitleCount, PropertyTokens));
3515 void ContactDataObject::ProcessRole(wxString PropertySeg1, wxString PropertySeg2, int *RoleCount){
3517 std::map<int, int> SplitPoints;
3518 std::map<int, int> SplitLength;
3519 std::map<int, int>::iterator SLiter;
3520 wxString PropertyData;
3521 wxString PropertyName;
3522 wxString PropertyValue;
3523 wxString PropertyTokens;
3524 bool FirstToken = TRUE;
3525 int intPrevValue = 6;
3530 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3534 PropertyType PropType = PROPERTY_NONE;
3536 // Look for type before continuing.
3538 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3540 // Setup the pointers.
3542 std::map<int, wxString> *RoleList = NULL;
3543 std::map<int, wxString> *RoleListAltID = NULL;
3544 std::map<int, wxString> *RoleListPID = NULL;
3545 std::map<int, wxString> *RoleListType = NULL;
3546 std::map<int, wxString> *RoleListTokens = NULL;
3547 std::map<int, wxString> *RoleListLanguage = NULL;
3548 std::map<int, int> *RoleListPref = NULL;
3550 // Setup blank lines for later on.
3554 RoleList = &GeneralRoleList;
3555 RoleListType = &GeneralRoleListType;
3556 RoleListAltID = &GeneralRoleListAltID;
3557 RoleListPID = &GeneralRoleListPID;
3558 RoleListTokens = &GeneralRoleListTokens;
3559 RoleListLanguage = &GeneralRoleListLanguage;
3560 RoleListPref = &GeneralRoleListPref;
3563 RoleList = &HomeRoleList;
3564 RoleListType = &HomeRoleListType;
3565 RoleListAltID = &HomeRoleListAltID;
3566 RoleListPID = &HomeRoleListPID;
3567 RoleListTokens = &HomeRoleListTokens;
3568 RoleListLanguage = &HomeRoleListLanguage;
3569 RoleListPref = &HomeRoleListPref;
3572 RoleList = &BusinessRoleList;
3573 RoleListType = &BusinessRoleListType;
3574 RoleListAltID = &BusinessRoleListAltID;
3575 RoleListPID = &BusinessRoleListPID;
3576 RoleListTokens = &BusinessRoleListTokens;
3577 RoleListLanguage = &BusinessRoleListLanguage;
3578 RoleListPref = &BusinessRoleListPref;
3584 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3585 intiter != SplitPoints.end(); ++intiter){
3587 SLiter = SplitLength.find(intiter->first);
3589 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3591 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3592 PropertyName = PropertyElement.GetNextToken();
3593 PropertyValue = PropertyElement.GetNextToken();
3595 intPrevValue = intiter->second;
3597 // Process properties.
3599 size_t intPropertyValueLen = PropertyValue.Len();
3601 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3603 PropertyValue.Trim();
3604 PropertyValue.RemoveLast();
3608 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3610 PropertyValue.Remove(0, 1);
3614 CaptureString(&PropertyValue, FALSE);
3616 if (PropertyName == wxT("ALTID")){
3618 RoleListAltID->erase(*RoleCount);
3619 RoleListAltID->insert(std::make_pair(*RoleCount, PropertyValue));
3621 } else if (PropertyName == wxT("PID")){
3623 RoleListPID->erase(*RoleCount);
3624 RoleListPID->insert(std::make_pair(*RoleCount, PropertyValue));
3626 } else if (PropertyName == wxT("PREF")){
3628 int PriorityNumber = 0;
3629 bool ValidNumber = TRUE;
3632 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3635 catch(std::invalid_argument &e){
3636 ValidNumber = FALSE;
3639 if (ValidNumber == TRUE){
3641 RoleListPref->erase(*RoleCount);
3642 RoleListPref->insert(std::make_pair(*RoleCount, PriorityNumber));
3646 } else if (PropertyName == wxT("LANGUAGE")){
3648 RoleListLanguage->erase(*RoleCount);
3649 RoleListLanguage->insert(std::make_pair(*RoleCount, PropertyValue));
3653 // Something else we don't know about so append
3654 // to the tokens variable.
3656 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3658 if (FirstToken == TRUE){
3660 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3665 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3675 // Add the data to the General/Home/Work address variables.
3677 CaptureString(&PropertySeg2, FALSE);
3679 RoleList->insert(std::make_pair(*RoleCount, PropertySeg2));
3681 if (!PropertyTokens.IsEmpty()){
3683 RoleListTokens->insert(std::make_pair(*RoleCount, PropertyTokens));
3689 void ContactDataObject::ProcessOrganisation(wxString PropertySeg1, wxString PropertySeg2, int *OrganisationCount){
3691 std::map<int, int> SplitPoints;
3692 std::map<int, int> SplitLength;
3693 std::map<int, int>::iterator SLiter;
3694 wxString PropertyData;
3695 wxString PropertyName;
3696 wxString PropertyValue;
3697 wxString PropertyTokens;
3698 bool FirstToken = TRUE;
3699 int intPrevValue = 5;
3704 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3708 PropertyType PropType = PROPERTY_NONE;
3710 // Look for type before continuing.
3712 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3714 // Setup the pointers.
3716 std::map<int, wxString> *OrganisationsList = NULL;
3717 std::map<int, wxString> *OrganisationsListAltID = NULL;
3718 std::map<int, wxString> *OrganisationsListPID = NULL;
3719 std::map<int, wxString> *OrganisationsListType = NULL;
3720 std::map<int, wxString> *OrganisationsListTokens = NULL;
3721 std::map<int, wxString> *OrganisationsListLanguage = NULL;
3722 std::map<int, wxString> *OrganisationsListSortAs = NULL;
3723 std::map<int, int> *OrganisationsListPref = NULL;
3725 // Setup blank lines for later on.
3729 OrganisationsList = &GeneralOrganisationsList;
3730 OrganisationsListType = &GeneralOrganisationsListType;
3731 OrganisationsListAltID = &GeneralOrganisationsListAltID;
3732 OrganisationsListPID = &GeneralOrganisationsListPID;
3733 OrganisationsListTokens = &GeneralOrganisationsListTokens;
3734 OrganisationsListLanguage = &GeneralOrganisationsListLanguage;
3735 OrganisationsListSortAs = &GeneralOrganisationsListSortAs;
3736 OrganisationsListPref = &GeneralOrganisationsListPref;
3739 OrganisationsList = &HomeOrganisationsList;
3740 OrganisationsListType = &HomeOrganisationsListType;
3741 OrganisationsListAltID = &HomeOrganisationsListAltID;
3742 OrganisationsListPID = &HomeOrganisationsListPID;
3743 OrganisationsListTokens = &HomeOrganisationsListTokens;
3744 OrganisationsListLanguage = &HomeOrganisationsListLanguage;
3745 OrganisationsListSortAs = &HomeOrganisationsListSortAs;
3746 OrganisationsListPref = &HomeOrganisationsListPref;
3749 OrganisationsList = &BusinessOrganisationsList;
3750 OrganisationsListType = &BusinessOrganisationsListType;
3751 OrganisationsListAltID = &BusinessOrganisationsListAltID;
3752 OrganisationsListPID = &BusinessOrganisationsListPID;
3753 OrganisationsListTokens = &BusinessOrganisationsListTokens;
3754 OrganisationsListLanguage = &BusinessOrganisationsListLanguage;
3755 OrganisationsListSortAs = &BusinessOrganisationsListSortAs;
3756 OrganisationsListPref = &BusinessOrganisationsListPref;
3762 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3763 intiter != SplitPoints.end(); ++intiter){
3765 SLiter = SplitLength.find(intiter->first);
3767 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3769 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3770 PropertyName = PropertyElement.GetNextToken();
3771 PropertyValue = PropertyElement.GetNextToken();
3773 intPrevValue = intiter->second;
3775 // Process properties.
3777 size_t intPropertyValueLen = PropertyValue.Len();
3779 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3781 PropertyValue.Trim();
3782 PropertyValue.RemoveLast();
3786 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3788 PropertyValue.Remove(0, 1);
3792 CaptureString(&PropertyValue, FALSE);
3794 if (PropertyName == wxT("ALTID")){
3796 OrganisationsListAltID->erase(*OrganisationCount);
3797 OrganisationsListAltID->insert(std::make_pair(*OrganisationCount, PropertyValue));
3799 } else if (PropertyName == wxT("PID")){
3801 OrganisationsListPID->erase(*OrganisationCount);
3802 OrganisationsListPID->insert(std::make_pair(*OrganisationCount, PropertyValue));
3804 } else if (PropertyName == wxT("SORT-AS")){
3806 OrganisationsListSortAs->erase(*OrganisationCount);
3807 OrganisationsListSortAs->insert(std::make_pair(*OrganisationCount, PropertyValue));
3809 } else if (PropertyName == wxT("PREF")){
3811 int PriorityNumber = 0;
3812 bool ValidNumber = TRUE;
3815 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3818 catch(std::invalid_argument &e){
3819 ValidNumber = FALSE;
3822 if (ValidNumber == TRUE){
3824 OrganisationsListPref->erase(*OrganisationCount);
3825 OrganisationsListPref->insert(std::make_pair(*OrganisationCount, PriorityNumber));
3829 } else if (PropertyName == wxT("LANGUAGE")){
3831 OrganisationsListLanguage->erase(*OrganisationCount);
3832 OrganisationsListLanguage->insert(std::make_pair(*OrganisationCount, PropertyValue));
3836 // Something else we don't know about so append
3837 // to the tokens variable.
3839 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3841 if (FirstToken == TRUE){
3843 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3848 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3858 // Add the data to the General/Home/Work address variables.
3860 CaptureString(&PropertySeg2, FALSE);
3862 OrganisationsList->insert(std::make_pair(*OrganisationCount, PropertySeg2));
3864 if (!PropertyTokens.IsEmpty()){
3866 OrganisationsListTokens->insert(std::make_pair(*OrganisationCount, PropertyTokens));
3872 void ContactDataObject::ProcessNote(wxString PropertySeg1, wxString PropertySeg2, int *NoteCount){
3874 std::map<int, int> SplitPoints;
3875 std::map<int, int> SplitLength;
3876 std::map<int, int>::iterator SLiter;
3877 wxString PropertyData;
3878 wxString PropertyName;
3879 wxString PropertyValue;
3880 wxString PropertyTokens;
3881 bool FirstToken = TRUE;
3882 int intPrevValue = 6;
3887 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3891 PropertyType PropType = PROPERTY_NONE;
3893 // Look for type before continuing.
3895 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3897 // Setup the pointers.
3899 std::map<int, wxString> *NoteList = NULL;
3900 std::map<int, wxString> *NoteListAltID = NULL;
3901 std::map<int, wxString> *NoteListPID = NULL;
3902 std::map<int, wxString> *NoteListType = NULL;
3903 std::map<int, wxString> *NoteListTokens = NULL;
3904 std::map<int, wxString> *NoteListLanguage = NULL;
3905 std::map<int, int> *NoteListPref = NULL;
3907 // Setup blank lines for later on.
3911 NoteList = &GeneralNoteList;
3912 NoteListType = &GeneralNoteListType;
3913 NoteListAltID = &GeneralNoteListAltID;
3914 NoteListPID = &GeneralNoteListPID;
3915 NoteListTokens = &GeneralNoteListTokens;
3916 NoteListLanguage = &GeneralNoteListLanguage;
3917 NoteListPref = &GeneralNoteListPref;
3920 NoteList = &HomeNoteList;
3921 NoteListType = &HomeNoteListType;
3922 NoteListAltID = &HomeNoteListAltID;
3923 NoteListPID = &HomeNoteListPID;
3924 NoteListTokens = &HomeNoteListTokens;
3925 NoteListLanguage = &HomeNoteListLanguage;
3926 NoteListPref = &HomeNoteListPref;
3929 NoteList = &BusinessNoteList;
3930 NoteListType = &BusinessNoteListType;
3931 NoteListAltID = &BusinessNoteListAltID;
3932 NoteListPID = &BusinessNoteListPID;
3933 NoteListTokens = &BusinessNoteListTokens;
3934 NoteListLanguage = &BusinessNoteListLanguage;
3935 NoteListPref = &BusinessNoteListPref;
3941 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3942 intiter != SplitPoints.end(); ++intiter){
3944 SLiter = SplitLength.find(intiter->first);
3946 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3948 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3949 PropertyName = PropertyElement.GetNextToken();
3950 PropertyValue = PropertyElement.GetNextToken();
3952 intPrevValue = intiter->second;
3954 // Process properties.
3956 size_t intPropertyValueLen = PropertyValue.Len();
3958 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3960 PropertyValue.Trim();
3961 PropertyValue.RemoveLast();
3965 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3967 PropertyValue.Remove(0, 1);
3971 CaptureString(&PropertyValue, FALSE);
3973 if (PropertyName == wxT("ALTID")){
3975 NoteListAltID->erase(*NoteCount);
3976 NoteListAltID->insert(std::make_pair(*NoteCount, PropertyValue));
3978 } else if (PropertyName == wxT("PID")){
3980 NoteListPID->erase(*NoteCount);
3981 NoteListPID->insert(std::make_pair(*NoteCount, PropertyValue));
3983 } else if (PropertyName == wxT("PREF")){
3985 int PriorityNumber = 0;
3986 bool ValidNumber = TRUE;
3989 PriorityNumber = std::stoi(PropertyValue.ToStdString());
3992 catch(std::invalid_argument &e){
3993 ValidNumber = FALSE;
3996 if (ValidNumber == TRUE){
3998 NoteListPref->erase(*NoteCount);
3999 NoteListPref->insert(std::make_pair(*NoteCount, PriorityNumber));
4003 } else if (PropertyName == wxT("LANGUAGE")){
4005 NoteListLanguage->erase(*NoteCount);
4006 NoteListLanguage->insert(std::make_pair(*NoteCount, PropertyValue));
4010 // Something else we don't know about so append
4011 // to the tokens variable.
4013 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4015 if (FirstToken == TRUE){
4017 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4022 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4032 // Add the data to the General/Home/Work address variables.
4034 CaptureString(&PropertySeg2, FALSE);
4036 NoteList->insert(std::make_pair(*NoteCount, PropertySeg2));
4038 if (!PropertyTokens.IsEmpty()){
4040 NoteListTokens->insert(std::make_pair(*NoteCount, PropertyTokens));
4046 void ContactDataObject::ProcessCategory(wxString PropertySeg1, wxString PropertySeg2, int *CategoryCount){
4048 std::map<int, int> SplitPoints;
4049 std::map<int, int> SplitLength;
4050 std::map<int, int>::iterator SLiter;
4051 wxString PropertyData;
4052 wxString PropertyName;
4053 wxString PropertyValue;
4054 wxString PropertyTokens;
4055 bool FirstToken = TRUE;
4056 int intPrevValue = 12;
4061 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4065 PropertyType PropType = PROPERTY_NONE;
4067 // Look for type before continuing.
4069 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4071 // Setup blank lines for later on.
4077 CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
4080 CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
4086 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4087 intiter != SplitPoints.end(); ++intiter){
4089 SLiter = SplitLength.find(intiter->first);
4091 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4093 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4094 PropertyName = PropertyElement.GetNextToken();
4095 PropertyValue = PropertyElement.GetNextToken();
4097 intPrevValue = intiter->second;
4099 // Process properties.
4101 size_t intPropertyValueLen = PropertyValue.Len();
4103 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4105 PropertyValue.Trim();
4106 PropertyValue.RemoveLast();
4110 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4112 PropertyValue.Remove(0, 1);
4116 CaptureString(&PropertyValue, FALSE);
4118 if (PropertyName == wxT("ALTID")){
4120 CategoriesListAltID.erase(*CategoryCount);
4121 CategoriesListAltID.insert(std::make_pair(*CategoryCount, PropertyValue));
4123 } else if (PropertyName == wxT("PID")){
4125 CategoriesListPID.erase(*CategoryCount);
4126 CategoriesListPID.insert(std::make_pair(*CategoryCount, PropertyValue));
4128 } else if (PropertyName == wxT("PREF")){
4130 int PriorityNumber = 0;
4131 bool ValidNumber = TRUE;
4134 PriorityNumber = std::stoi(PropertyValue.ToStdString());
4137 catch(std::invalid_argument &e){
4138 ValidNumber = FALSE;
4141 if (ValidNumber == TRUE){
4143 CategoriesListPref.erase(*CategoryCount);
4144 CategoriesListPref.insert(std::make_pair(*CategoryCount, PriorityNumber));
4148 } else if (PropertyName == wxT("LANGUAGE")){
4150 CategoriesListLanguage.erase(*CategoryCount);
4151 CategoriesListLanguage.insert(std::make_pair(*CategoryCount, PropertyValue));
4155 // Something else we don't know about so append
4156 // to the tokens variable.
4158 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4160 if (FirstToken == TRUE){
4162 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4167 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4177 // Deal with multiple categories.
4179 int intOrigCatCount = *CategoryCount;
4180 bool FirstCategoryProcessed = TRUE;
4181 bool AfterFirstToken = FALSE;
4182 int intSplitSize = 0;
4183 int intSplitsFound = 0;
4184 int intSplitSeek = 0;
4185 int intPropertyLen = PropertySeg2.Len();
4187 SplitPoints.clear();
4188 SplitLength.clear();
4191 for (int i = 0; i <= intPropertyLen; i++){
4193 if (intSplitSize == 0 && PropertySeg2.Mid(i, 1) == wxT(" ")){
4201 if (PropertySeg2.Mid(i, 1) == wxT(",") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
4203 if (AfterFirstToken == TRUE){
4205 SplitPoints.insert(std::make_pair(intSplitsFound, (i - intSplitSize + 1)));
4206 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));
4210 SplitPoints.insert(std::make_pair(intSplitsFound, 0));
4211 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));
4212 AfterFirstToken = TRUE;
4224 if (SplitPoints.size() > 0){
4226 SplitPoints.insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
4227 SplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
4231 if (SplitPoints.size() == 0){
4233 CategoriesList.insert(std::make_pair(*CategoryCount, PropertySeg2));
4235 if (!PropertyTokens.IsEmpty()){
4237 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4243 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4244 intiter != SplitPoints.end(); ++intiter){
4246 SLiter = SplitLength.find(intiter->first);
4248 intPrevValue = intiter->second;
4250 PropertyData = PropertySeg2.Mid(intPrevValue, (SLiter->second + 1));
4252 // Add the data to the General/Home/Work address variables.
4254 // Trim any whitespace from the start and end.
4256 PropertyData = PropertyData.Trim(FALSE);
4257 PropertyData = PropertyData.Trim(TRUE);
4259 CaptureString(&PropertyData, FALSE);
4261 if (FirstCategoryProcessed == TRUE){
4263 FirstCategoryProcessed = FALSE;
4265 CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
4267 if (!PropertyTokens.IsEmpty()){
4269 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4279 CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
4281 if (!PropertyTokens.IsEmpty()){
4283 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4289 // Copy the properties to each of the categories (if it exists).
4291 if (!PropertyTokens.IsEmpty()){
4293 CategoriesListTokens.insert(std::make_pair(*CategoryCount, CategoriesListTokens.find(intOrigCatCount)->second));
4297 // Check if ALTID was used.
4299 if (CategoriesListAltID.find(intOrigCatCount) != CategoriesListAltID.end()){
4301 CategoriesListAltID.insert(std::make_pair(*CategoryCount, CategoriesListAltID.find(intOrigCatCount)->second));
4305 // Check if PID was used.
4307 if (CategoriesListPID.find(intOrigCatCount) != CategoriesListPID.end()){
4309 CategoriesListPID.insert(std::make_pair(*CategoryCount, CategoriesListPID.find(intOrigCatCount)->second));
4313 // Check if PREF was used.
4315 if (CategoriesListPref.find(intOrigCatCount) != CategoriesListPref.end()){
4317 CategoriesListPref.insert(std::make_pair(*CategoryCount, CategoriesListPref.find(intOrigCatCount)->second));
4321 // Check if LANGUAGE was used.
4323 if (CategoriesListLanguage.find(intOrigCatCount) != CategoriesListLanguage.end()){
4325 CategoriesListLanguage.insert(std::make_pair(*CategoryCount, CategoriesListLanguage.find(intOrigCatCount)->second));
4329 // Check if TYPE was used.
4335 CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
4338 CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
4346 void ContactDataObject::ProcessPhoto(wxString PropertySeg1, wxString PropertySeg2, int *PhotoCount){
4348 size_t intPropertyLen = PropertySeg1.Len();
4349 std::map<int, int> SplitPoints;
4350 std::map<int, int> SplitLength;
4351 std::map<int, int>::iterator SLiter;
4352 wxString PropertyData;
4353 wxString PropertyName;
4354 wxString PropertyValue;
4355 wxString PropertyTokens;
4356 bool FirstToken = TRUE;
4357 int intSplitsFound = 0;
4358 int intSplitSize = 0;
4359 int intPrevValue = 7;
4363 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4367 PropertyType PropType = PROPERTY_NONE;
4369 // Look for type before continuing.
4371 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4375 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4376 intiter != SplitPoints.end(); ++intiter){
4378 SLiter = SplitLength.find(intiter->first);
4380 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4382 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4383 PropertyName = PropertyElement.GetNextToken();
4384 PropertyValue = PropertyElement.GetNextToken();
4386 intPrevValue = intiter->second;
4388 // Process properties.
4390 size_t intPropertyValueLen = PropertyValue.Len();
4392 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4394 PropertyValue.Trim();
4395 PropertyValue.RemoveLast();
4399 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4401 PropertyValue.Remove(0, 1);
4405 CaptureString(&PropertyValue, FALSE);
4407 if (PropertyName == wxT("ALTID")){
4409 PicturesListAltID.erase(*PhotoCount);
4410 PicturesListAltID.insert(std::make_pair(*PhotoCount, PropertyValue));
4412 } else if (PropertyName == wxT("PID")){
4414 PicturesListPID.erase(*PhotoCount);
4415 PicturesListPID.insert(std::make_pair(*PhotoCount, PropertyValue));
4417 } else if (PropertyName == wxT("PREF")){
4419 int PriorityNumber = 0;
4420 bool ValidNumber = TRUE;
4423 PriorityNumber = std::stoi(PropertyValue.ToStdString());
4426 catch(std::invalid_argument &e){
4427 ValidNumber = FALSE;
4430 if (ValidNumber == TRUE){
4432 PicturesListPref.erase(*PhotoCount);
4433 PicturesListPref.insert(std::make_pair(*PhotoCount, PriorityNumber));
4437 } else if (PropertyName == wxT("MEDIATYPE")){
4439 PicturesListMediatype.erase(*PhotoCount);
4440 PicturesListMediatype.insert(std::make_pair(*PhotoCount, PropertyValue));
4444 // Something else we don't know about so append
4445 // to the tokens variable.
4447 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4449 if (FirstToken == TRUE){
4451 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4456 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4466 intPropertyLen = PropertySeg2.Len();
4467 SplitPoints.clear();
4468 SplitLength.clear();
4473 CaptureString(&PropertySeg2, FALSE);
4475 for (int i = 0; i <= intPropertyLen; i++){
4479 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4482 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4484 if (intSplitsFound == 6){
4486 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4491 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4501 wxString wxSPhotoURI;
4502 wxString wxSPhotoMIME;
4503 wxString wxSPhotoEncoding;
4504 wxString wxSPhotoData;
4505 std::string base64enc;
4507 if (intSplitsFound == 0){
4511 std::map<int, int>::iterator striter;
4513 striter = SplitLength.find(1);
4515 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4517 while (wSTDataType.HasMoreTokens() == TRUE){
4519 wxSPhotoURI = wSTDataType.GetNextToken();
4520 wxSPhotoMIME = wSTDataType.GetNextToken();
4525 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4527 while (wSTDataInfo.HasMoreTokens() == TRUE){
4529 wxSPhotoEncoding = wSTDataInfo.GetNextToken();
4530 wxSPhotoData = wSTDataInfo.GetNextToken();
4531 base64enc = wxSPhotoData.mb_str();
4538 // Add the data to the General/Home/Work address variables.
4540 PicturesList.insert(std::make_pair(*PhotoCount, base64enc));
4541 PicturesListPictureType.insert(std::make_pair(*PhotoCount, wxSPhotoMIME));
4542 PicturesListPicEncType.insert(std::make_pair(*PhotoCount, wxSPhotoEncoding));
4548 PicturesListType.insert(std::make_pair(*PhotoCount, "home"));
4551 PicturesListType.insert(std::make_pair(*PhotoCount, "work"));
4555 if (!PropertyTokens.IsEmpty()){
4557 PicturesListTokens.insert(std::make_pair(*PhotoCount, PropertyTokens));
4563 void ContactDataObject::ProcessLogo(wxString PropertySeg1, wxString PropertySeg2, int *LogoCount){
4565 size_t intPropertyLen = PropertySeg1.Len();
4566 std::map<int, int> SplitPoints;
4567 std::map<int, int> SplitLength;
4568 std::map<int, int>::iterator SLiter;
4569 wxString PropertyData;
4570 wxString PropertyName;
4571 wxString PropertyValue;
4572 wxString PropertyTokens;
4573 bool FirstToken = TRUE;
4574 int intSplitsFound = 0;
4575 int intSplitSize = 0;
4576 int intPrevValue = 6;
4580 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4584 PropertyType PropType = PROPERTY_NONE;
4586 // Look for type before continuing.
4588 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4592 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4593 intiter != SplitPoints.end(); ++intiter){
4595 SLiter = SplitLength.find(intiter->first);
4597 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4599 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4600 PropertyName = PropertyElement.GetNextToken();
4601 PropertyValue = PropertyElement.GetNextToken();
4603 intPrevValue = intiter->second;
4605 // Process properties.
4607 size_t intPropertyValueLen = PropertyValue.Len();
4609 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4611 PropertyValue.Trim();
4612 PropertyValue.RemoveLast();
4616 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4618 PropertyValue.Remove(0, 1);
4622 CaptureString(&PropertyValue, FALSE);
4624 if (PropertyName == wxT("ALTID")){
4626 LogosListAltID.erase(*LogoCount);
4627 LogosListAltID.insert(std::make_pair(*LogoCount, PropertyValue));
4629 } else if (PropertyName == wxT("PID")){
4631 LogosListPID.erase(*LogoCount);
4632 LogosListPID.insert(std::make_pair(*LogoCount, PropertyValue));
4634 } else if (PropertyName == wxT("PREF")){
4636 int PriorityNumber = 0;
4637 bool ValidNumber = TRUE;
4640 PriorityNumber = std::stoi(PropertyValue.ToStdString());
4643 catch(std::invalid_argument &e){
4644 ValidNumber = FALSE;
4647 if (ValidNumber == TRUE){
4649 LogosListPref.erase(*LogoCount);
4650 LogosListPref.insert(std::make_pair(*LogoCount, PriorityNumber));
4654 } else if (PropertyName == wxT("MEDIATYPE")){
4656 LogosListMediatype.erase(*LogoCount);
4657 LogosListMediatype.insert(std::make_pair(*LogoCount, PropertyValue));
4661 // Something else we don't know about so append
4662 // to the tokens variable.
4664 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4666 if (FirstToken == TRUE){
4668 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4673 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4683 intPropertyLen = PropertySeg2.Len();
4684 SplitPoints.clear();
4685 SplitLength.clear();
4690 CaptureString(&PropertySeg2, FALSE);
4692 for (int i = 0; i <= intPropertyLen; i++){
4696 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4699 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4701 if (intSplitsFound == 6){
4703 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4708 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4718 wxString wxSPhotoURI;
4719 wxString wxSPhotoMIME;
4720 wxString wxSPhotoEncoding;
4721 wxString wxSPhotoData;
4722 std::string base64enc;
4724 if (intSplitsFound == 0){
4728 std::map<int, int>::iterator striter;
4730 striter = SplitLength.find(1);
4732 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4734 while (wSTDataType.HasMoreTokens() == TRUE){
4736 wxSPhotoURI = wSTDataType.GetNextToken();
4737 wxSPhotoMIME = wSTDataType.GetNextToken();
4742 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4744 while (wSTDataInfo.HasMoreTokens() == TRUE){
4746 wxSPhotoEncoding = wSTDataInfo.GetNextToken();
4747 wxSPhotoData = wSTDataInfo.GetNextToken();
4748 base64enc = wxSPhotoData.mb_str();
4755 // Add the data to the General/Home/Work address variables.
4757 LogosList.insert(std::make_pair(*LogoCount, base64enc));
4758 LogosListPictureType.insert(std::make_pair(*LogoCount, wxSPhotoMIME));
4759 LogosListPicEncType.insert(std::make_pair(*LogoCount, wxSPhotoEncoding));
4765 LogosListType.insert(std::make_pair(*LogoCount, "home"));
4768 LogosListType.insert(std::make_pair(*LogoCount, "work"));
4772 if (!PropertyTokens.IsEmpty()){
4774 LogosListTokens.insert(std::make_pair(*LogoCount, PropertyTokens));
4780 void ContactDataObject::ProcessSound(wxString PropertySeg1, wxString PropertySeg2, int *SoundCount){
4782 size_t intPropertyLen = PropertySeg1.Len();
4783 std::map<int, int> SplitPoints;
4784 std::map<int, int> SplitLength;
4785 std::map<int, int>::iterator SLiter;
4786 wxString PropertyData;
4787 wxString PropertyName;
4788 wxString PropertyValue;
4789 wxString PropertyTokens;
4790 bool FirstToken = TRUE;
4791 int intSplitsFound = 0;
4792 int intSplitSize = 0;
4793 int intPrevValue = 7;
4797 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4801 PropertyType PropType = PROPERTY_NONE;
4803 // Look for type before continuing.
4805 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4809 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4810 intiter != SplitPoints.end(); ++intiter){
4812 SLiter = SplitLength.find(intiter->first);
4814 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4816 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4817 PropertyName = PropertyElement.GetNextToken();
4818 PropertyValue = PropertyElement.GetNextToken();
4820 intPrevValue = intiter->second;
4822 // Process properties.
4824 size_t intPropertyValueLen = PropertyValue.Len();
4826 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4828 PropertyValue.Trim();
4829 PropertyValue.RemoveLast();
4833 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4835 PropertyValue.Remove(0, 1);
4839 CaptureString(&PropertyValue, FALSE);
4841 if (PropertyName == wxT("ALTID")){
4843 SoundsListAltID.erase(*SoundCount);
4844 SoundsListAltID.insert(std::make_pair(*SoundCount, PropertyValue));
4846 } else if (PropertyName == wxT("PID")){
4848 SoundsListPID.erase(*SoundCount);
4849 SoundsListPID.insert(std::make_pair(*SoundCount, PropertyValue));
4851 } else if (PropertyName == wxT("PREF")){
4853 int PriorityNumber = 0;
4854 bool ValidNumber = TRUE;
4857 PriorityNumber = std::stoi(PropertyValue.ToStdString());
4860 catch(std::invalid_argument &e){
4861 ValidNumber = FALSE;
4864 if (ValidNumber == TRUE){
4866 SoundsListPref.erase(*SoundCount);
4867 SoundsListPref.insert(std::make_pair(*SoundCount, PriorityNumber));
4871 } else if (PropertyName == wxT("MEDIATYPE")){
4873 SoundsListMediatype.erase(*SoundCount);
4874 SoundsListMediatype.insert(std::make_pair(*SoundCount, PropertyValue));
4876 } else if (PropertyName == wxT("LANGUAGE")){
4878 SoundsListLanguage.erase(*SoundCount);
4879 SoundsListLanguage.insert(std::make_pair(*SoundCount, PropertyValue));
4883 // Something else we don't know about so append
4884 // to the tokens variable.
4886 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4888 if (FirstToken == TRUE){
4890 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4895 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4905 intPropertyLen = PropertySeg2.Len();
4906 SplitPoints.clear();
4907 SplitLength.clear();
4912 CaptureString(&PropertySeg2, FALSE);
4914 for (int i = 0; i <= intPropertyLen; i++){
4918 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4921 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4923 if (intSplitsFound == 6){
4925 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4930 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4940 wxString wxSSoundURI;
4941 wxString wxSSoundMIME;
4942 wxString wxSSoundEncoding;
4943 wxString wxSSoundData;
4944 std::string base64enc;
4946 if (intSplitsFound == 0){
4950 std::map<int, int>::iterator striter;
4952 striter = SplitLength.find(1);
4954 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4956 while (wSTDataType.HasMoreTokens() == TRUE){
4958 wxSSoundURI = wSTDataType.GetNextToken();
4959 wxSSoundMIME = wSTDataType.GetNextToken();
4964 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4966 while (wSTDataInfo.HasMoreTokens() == TRUE){
4968 wxSSoundEncoding = wSTDataInfo.GetNextToken();
4969 wxSSoundData = wSTDataInfo.GetNextToken();
4970 base64enc = wxSSoundData.mb_str();
4977 // Add the data to the General/Home/Work address variables.
4983 SoundsListType.insert(std::make_pair(*SoundCount, "home"));
4986 SoundsListType.insert(std::make_pair(*SoundCount, "work"));
4990 SoundsList.insert(std::make_pair(*SoundCount, base64enc));
4991 SoundsListAudioEncType.insert(std::make_pair(*SoundCount, wxSSoundEncoding));
4992 SoundsListAudioType.insert(std::make_pair(*SoundCount, wxSSoundMIME));
4994 if (!PropertyTokens.IsEmpty()){
4996 SoundsListTokens.insert(std::make_pair(*SoundCount, PropertyTokens));
5002 void ContactDataObject::ProcessCalendarURI(wxString PropertySeg1, wxString PropertySeg2, int *CalURICount){
5004 size_t intPropertyLen = PropertySeg1.Len();
5005 std::map<int, int> SplitPoints;
5006 std::map<int, int> SplitLength;
5007 std::map<int, int>::iterator SLiter;
5008 wxString PropertyData;
5009 wxString PropertyName;
5010 wxString PropertyValue;
5011 wxString PropertyTokens;
5012 bool FirstToken = TRUE;
5013 int intSplitsFound = 0;
5014 int intSplitSize = 0;
5015 int intPrevValue = 8;
5019 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5023 PropertyType PropType = PROPERTY_NONE;
5025 // Look for type before continuing.
5027 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5031 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5032 intiter != SplitPoints.end(); ++intiter){
5034 SLiter = SplitLength.find(intiter->first);
5036 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5038 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5039 PropertyName = PropertyElement.GetNextToken();
5040 PropertyValue = PropertyElement.GetNextToken();
5042 intPrevValue = intiter->second;
5044 // Process properties.
5046 size_t intPropertyValueLen = PropertyValue.Len();
5048 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5050 PropertyValue.Trim();
5051 PropertyValue.RemoveLast();
5055 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5057 PropertyValue.Remove(0, 1);
5061 CaptureString(&PropertyValue, FALSE);
5063 if (PropertyName == wxT("ALTID")){
5065 CalendarListAltID.erase(*CalURICount);
5066 CalendarListAltID.insert(std::make_pair(*CalURICount, PropertyValue));
5068 } else if (PropertyName == wxT("PID")){
5070 CalendarListPID.erase(*CalURICount);
5071 CalendarListPID.insert(std::make_pair(*CalURICount, PropertyValue));
5073 } else if (PropertyName == wxT("PREF")){
5075 int PriorityNumber = 0;
5076 bool ValidNumber = TRUE;
5079 PriorityNumber = std::stoi(PropertyValue.ToStdString());
5082 catch(std::invalid_argument &e){
5083 ValidNumber = FALSE;
5086 if (ValidNumber == TRUE){
5088 CalendarListPref.erase(*CalURICount);
5089 CalendarListPref.insert(std::make_pair(*CalURICount, PriorityNumber));
5093 } else if (PropertyName == wxT("MEDIATYPE")){
5095 CalendarListMediatype.erase(*CalURICount);
5096 CalendarListMediatype.insert(std::make_pair(*CalURICount, PropertyValue));
5100 // Something else we don't know about so append
5101 // to the tokens variable.
5103 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5105 if (FirstToken == TRUE){
5107 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5112 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5122 intPropertyLen = PropertySeg2.Len();
5123 SplitPoints.clear();
5124 SplitLength.clear();
5129 CaptureString(&PropertySeg2, FALSE);
5131 // Add the data to the General/Home/Work address variables.
5137 CalendarListType.insert(std::make_pair(*CalURICount, "home"));
5140 CalendarListType.insert(std::make_pair(*CalURICount, "work"));
5144 CalendarList.insert(std::make_pair(*CalURICount, PropertySeg2));
5146 if (!PropertyTokens.IsEmpty()){
5148 CalendarListTokens.insert(std::make_pair(*CalURICount, PropertyTokens));
5154 void ContactDataObject::ProcessCalendarAddressURI(wxString PropertySeg1, wxString PropertySeg2, int *CalAdrURICount){
5156 size_t intPropertyLen = PropertySeg1.Len();
5157 std::map<int, int> SplitPoints;
5158 std::map<int, int> SplitLength;
5159 std::map<int, int>::iterator SLiter;
5160 wxString PropertyData;
5161 wxString PropertyName;
5162 wxString PropertyValue;
5163 wxString PropertyTokens;
5164 bool FirstToken = TRUE;
5165 int intSplitsFound = 0;
5166 int intSplitSize = 0;
5167 int intPrevValue = 8;
5171 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5175 PropertyType PropType = PROPERTY_NONE;
5177 // Look for type before continuing.
5179 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5183 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5184 intiter != SplitPoints.end(); ++intiter){
5186 SLiter = SplitLength.find(intiter->first);
5188 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5190 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5191 PropertyName = PropertyElement.GetNextToken();
5192 PropertyValue = PropertyElement.GetNextToken();
5194 intPrevValue = intiter->second;
5196 // Process properties.
5198 size_t intPropertyValueLen = PropertyValue.Len();
5200 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5202 PropertyValue.Trim();
5203 PropertyValue.RemoveLast();
5207 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5209 PropertyValue.Remove(0, 1);
5213 CaptureString(&PropertyValue, FALSE);
5215 if (PropertyName == wxT("ALTID")){
5217 CalendarRequestListAltID.erase(*CalAdrURICount);
5218 CalendarRequestListAltID.insert(std::make_pair(*CalAdrURICount, PropertyValue));
5220 } else if (PropertyName == wxT("PID")){
5222 CalendarRequestListPID.erase(*CalAdrURICount);
5223 CalendarRequestListPID.insert(std::make_pair(*CalAdrURICount, PropertyValue));
5225 } else if (PropertyName == wxT("PREF")){
5227 int PriorityNumber = 0;
5228 bool ValidNumber = TRUE;
5231 PriorityNumber = std::stoi(PropertyValue.ToStdString());
5234 catch(std::invalid_argument &e){
5235 ValidNumber = FALSE;
5238 if (ValidNumber == TRUE){
5240 CalendarRequestListPref.erase(*CalAdrURICount);
5241 CalendarRequestListPref.insert(std::make_pair(*CalAdrURICount, PriorityNumber));
5245 } else if (PropertyName == wxT("MEDIATYPE")){
5247 CalendarRequestListMediatype.erase(*CalAdrURICount);
5248 CalendarRequestListMediatype.insert(std::make_pair(*CalAdrURICount, PropertyValue));
5252 // Something else we don't know about so append
5253 // to the tokens variable.
5255 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5257 if (FirstToken == TRUE){
5259 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5264 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5274 intPropertyLen = PropertySeg2.Len();
5275 SplitPoints.clear();
5276 SplitLength.clear();
5281 CaptureString(&PropertySeg2, FALSE);
5283 // Add the data to the General/Home/Work address variables.
5289 CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "home"));
5292 CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "work"));
5296 CalendarRequestList.insert(std::make_pair(*CalAdrURICount, PropertySeg2));
5298 if (!PropertyTokens.IsEmpty()){
5300 CalendarRequestListTokens.insert(std::make_pair(*CalAdrURICount, PropertyTokens));
5306 void ContactDataObject::ProcessCalendarFreeBusy(wxString PropertySeg1, wxString PropertySeg2, int *FreeBusyAddressCount){
5308 size_t intPropertyLen = PropertySeg1.Len();
5309 std::map<int, int> SplitPoints;
5310 std::map<int, int> SplitLength;
5311 std::map<int, int>::iterator SLiter;
5312 wxString PropertyData;
5313 wxString PropertyName;
5314 wxString PropertyValue;
5315 wxString PropertyTokens;
5316 bool FirstToken = TRUE;
5317 int intSplitsFound = 0;
5318 int intSplitSize = 0;
5319 int intPrevValue = 7;
5323 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5327 PropertyType PropType = PROPERTY_NONE;
5329 // Look for type before continuing.
5331 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5335 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5336 intiter != SplitPoints.end(); ++intiter){
5338 SLiter = SplitLength.find(intiter->first);
5340 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5342 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5343 PropertyName = PropertyElement.GetNextToken();
5344 PropertyValue = PropertyElement.GetNextToken();
5346 intPrevValue = intiter->second;
5348 // Process properties.
5350 size_t intPropertyValueLen = PropertyValue.Len();
5352 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5354 PropertyValue.Trim();
5355 PropertyValue.RemoveLast();
5359 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5361 PropertyValue.Remove(0, 1);
5365 CaptureString(&PropertyValue, FALSE);
5367 if (PropertyName == wxT("ALTID")){
5369 FreeBusyListAltID.erase(*FreeBusyAddressCount);
5370 FreeBusyListAltID.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5372 } else if (PropertyName == wxT("PID")){
5374 FreeBusyListPID.erase(*FreeBusyAddressCount);
5375 FreeBusyListPID.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5377 } else if (PropertyName == wxT("PREF")){
5379 int PriorityNumber = 0;
5380 bool ValidNumber = TRUE;
5383 PriorityNumber = std::stoi(PropertyValue.ToStdString());
5386 catch(std::invalid_argument &e){
5387 ValidNumber = FALSE;
5390 if (ValidNumber == TRUE){
5392 FreeBusyListPref.erase(*FreeBusyAddressCount);
5393 FreeBusyListPref.insert(std::make_pair(*FreeBusyAddressCount, PriorityNumber));
5397 } else if (PropertyName == wxT("MEDIATYPE")){
5399 FreeBusyListMediatype.erase(*FreeBusyAddressCount);
5400 FreeBusyListMediatype.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5404 // Something else we don't know about so append
5405 // to the tokens variable.
5407 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5409 if (FirstToken == TRUE){
5411 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5416 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5426 intPropertyLen = PropertySeg2.Len();
5427 SplitPoints.clear();
5428 SplitLength.clear();
5433 CaptureString(&PropertySeg2, FALSE);
5435 // Add the data to the General/Home/Work address variables.
5441 FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "home"));
5444 FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "work"));
5448 FreeBusyList.insert(std::make_pair(*FreeBusyAddressCount, PropertySeg2));
5450 if (!PropertyTokens.IsEmpty()){
5452 FreeBusyListTokens.insert(std::make_pair(*FreeBusyAddressCount, PropertyTokens));
5458 void ContactDataObject::ProcessKey(wxString PropertySeg1, wxString PropertySeg2, int *KeyCount){
5460 size_t intPropertyLen = PropertySeg1.Len();
5461 std::map<int, int> SplitPoints;
5462 std::map<int, int> SplitLength;
5463 std::map<int, int>::iterator SLiter;
5464 wxString PropertyData;
5465 wxString PropertyName;
5466 wxString PropertyValue;
5467 wxString PropertyTokens;
5468 bool FirstToken = TRUE;
5469 int intSplitsFound = 0;
5470 int intSplitSize = 0;
5471 int intPrevValue = 5;
5476 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5480 PropertyType PropType = PROPERTY_NONE;
5482 // Look for type before continuing.
5484 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5488 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5489 intiter != SplitPoints.end(); ++intiter){
5491 SLiter = SplitLength.find(intiter->first);
5493 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5495 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5496 PropertyName = PropertyElement.GetNextToken();
5497 PropertyValue = PropertyElement.GetNextToken();
5499 intPrevValue = intiter->second;
5501 // Process properties.
5503 size_t intPropertyValueLen = PropertyValue.Len();
5505 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5507 PropertyValue.Trim();
5508 PropertyValue.RemoveLast();
5512 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5514 PropertyValue.Remove(0, 1);
5518 if (PropertyName == wxT("ALTID")){
5520 KeyListAltID.erase(*KeyCount);
5521 KeyListAltID.insert(std::make_pair(*KeyCount, PropertyValue));
5523 } else if (PropertyName == wxT("PID")){
5525 KeyListPID.erase(*KeyCount);
5526 KeyListPID.insert(std::make_pair(*KeyCount, PropertyValue));
5528 } else if (PropertyName == wxT("PREF")){
5530 int PriorityNumber = 0;
5531 bool ValidNumber = TRUE;
5534 PriorityNumber = std::stoi(PropertyValue.ToStdString());
5537 catch(std::invalid_argument &e){
5538 ValidNumber = FALSE;
5541 if (ValidNumber == TRUE){
5543 KeyListPref.erase(*KeyCount);
5544 KeyListPref.insert(std::make_pair(*KeyCount, PriorityNumber));
5550 // Something else we don't know about so append
5551 // to the tokens variable.
5553 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5555 if (FirstToken == TRUE){
5557 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5562 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5572 intPropertyLen = PropertySeg2.Len();
5573 SplitPoints.clear();
5574 SplitLength.clear();
5579 for (int i = 0; i <= intPropertyLen; i++){
5583 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
5586 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
5588 if (intSplitsFound == 6){
5590 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5595 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5606 wxString wxSKeyMIME;
5607 wxString wxSKeyEncoding;
5608 wxString wxSKeyData;
5609 std::string base64enc;
5611 if (intSplitsFound == 0){
5615 std::map<int, int>::iterator striter;
5617 striter = SplitLength.find(1);
5619 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
5621 while (wSTDataType.HasMoreTokens() == TRUE){
5623 wxSKeyURI = wSTDataType.GetNextToken();
5624 wxSKeyMIME = wSTDataType.GetNextToken();
5629 if (wxSKeyURI == wxT("data")){
5631 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
5633 while (wSTDataInfo.HasMoreTokens() == TRUE){
5635 wxSKeyEncoding = wSTDataInfo.GetNextToken();
5636 wxSKeyData = wSTDataInfo.GetNextToken();
5645 // Add the data to the General/Home/Work address variables.
5647 if (wxSKeyURI == wxT("data")){
5649 KeyListDataEncType.erase(*KeyCount);
5650 KeyListKeyType.erase(*KeyCount);
5651 KeyListDataEncType.insert(std::make_pair(*KeyCount, wxSKeyEncoding));
5652 KeyListKeyType.insert(std::make_pair(*KeyCount, TRUE));
5654 KeyList.erase(*KeyCount);
5655 KeyList.insert(std::make_pair(*KeyCount, wxSKeyData));
5659 KeyList.erase(*KeyCount);
5660 KeyList.insert(std::make_pair(*KeyCount, PropertySeg2));
5664 KeyListDataType.insert(std::make_pair(*KeyCount, wxSKeyMIME));
5670 KeyListType.insert(std::make_pair(*KeyCount, wxT("home")));
5673 KeyListType.insert(std::make_pair(*KeyCount, wxT("work")));
5677 if (!PropertyTokens.IsEmpty()){
5679 KeyListTokens.insert(std::make_pair(*KeyCount, PropertyTokens));
5685 void ContactDataObject::ProcessVendor(wxString PropertySeg1, wxString PropertySeg2, int *VendorCount){
5687 // Split the Vendor three ways.
5689 wxStringTokenizer wSTVendorDetails(PropertySeg1, wxT("-"));
5692 wxString wxSVNDPropName;
5695 while (wSTVendorDetails.HasMoreTokens() == TRUE){
5697 wSTVendorDetails.GetNextToken();
5698 wxSVNDID = wSTVendorDetails.GetNextToken();
5699 wxSVNDPropName = wSTVendorDetails.GetNextToken();
5704 if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
5706 // Add the data to the vendor variables.
5708 VendorList.erase(*VendorCount);
5709 VendorListPEN.erase(*VendorCount);
5710 VendorListElement.erase(*VendorCount);
5712 VendorList.insert(std::make_pair(*VendorCount, PropertySeg2));
5713 VendorListPEN.insert(std::make_pair(*VendorCount, wxSVNDID));
5714 VendorListElement.insert(std::make_pair(*VendorCount, wxSVNDPropName));
5720 void ProcessIntegerValue(ContactDataObject *ContactData,
5721 std::map<int,int> *PrefPtr,
5722 wxString *PropertyValue,
5725 int PriorityNumber = 0;
5726 bool ValidNumber = TRUE;
5729 PriorityNumber = std::stoi(PropertyValue->ToStdString());
5732 catch(std::invalid_argument &e){
5733 ValidNumber = FALSE;
5736 if (ValidNumber == TRUE){
5738 PrefPtr->erase(*ItemCount);
5739 PrefPtr->insert(std::make_pair(*ItemCount, PriorityNumber));
5745 void SplitValues(wxString *PropertyLine,
5746 std::map<int,int> *SplitPoints,
5747 std::map<int,int> *SplitLength,
5750 size_t intPropertyLen = PropertyLine->Len();
5751 int intSplitsFound = 0;
5752 int intSplitSize = 0;
5753 int intSplitSeek = 0;
5755 for (int i = intSize; i <= intPropertyLen; i++){
5759 if (PropertyLine->Mid(i, 1) == wxT(";") &&
5760 PropertyLine->Mid((i - 1), 1) != wxT("\\")){
5762 if (intSplitsFound == 0){
5764 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
5768 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5772 SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
5782 if (intSplitsFound == 0){
5784 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
5785 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5789 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
5790 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5796 void CheckType(wxString *PropertySeg1,
5797 std::map<int,int> *SplitPoints,
5798 std::map<int,int> *SplitLength,
5800 PropertyType *PropType){
5802 wxString PropertyData;
5803 wxString PropertyName;
5804 wxString PropertyValue;
5805 std::map<int,int>::iterator SLiter;
5807 for (std::map<int, int>::iterator intiter = SplitPoints->begin();
5808 intiter != SplitPoints->end(); ++intiter){
5810 SLiter = SplitLength->find(intiter->first);
5812 PropertyData = PropertySeg1->Mid(*intPrevValue, (SLiter->second));
5814 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5815 PropertyName = PropertyElement.GetNextToken();
5816 PropertyValue = PropertyElement.GetNextToken();
5818 *intPrevValue = intiter->second;
5820 if (PropertyName == wxT("TYPE")){
5822 if (PropertyValue == wxT("work")){
5824 *PropType = PROPERTY_WORK;
5826 } else if (PropertyValue == wxT("home")){
5828 *PropType = PROPERTY_HOME;
5832 *PropType = PROPERTY_NONE;