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 bool PropertyMatched = FALSE;
553 int intSplitsFound = 0;
554 int intSplitSize = 0;
555 int intPrevValue = 8;
559 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
563 PropertyType PropType = PROPERTY_NONE;
565 // Look for type before continuing.
567 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
571 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
572 intiter != SplitPoints.end(); ++intiter){
574 SLiter = SplitLength.find(intiter->first);
576 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
578 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
579 PropertyName = PropertyElement.GetNextToken();
580 PropertyValue = PropertyElement.GetNextToken();
582 intPrevValue = intiter->second;
584 // Process properties.
586 size_t intPropertyValueLen = PropertyValue.Len();
588 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
590 PropertyValue.Trim();
591 PropertyValue.RemoveLast();
595 if (PropertyValue.Mid(0, 1) == wxT("\"")){
597 PropertyValue.Remove(0, 1);
601 CaptureString(&PropertyValue, FALSE);
603 ProcessStringValue(&PropertyName, "ALTID", &SourceListAltID, &PropertyValue, SourceCount, &PropertyMatched);
604 ProcessStringValue(&PropertyName, "PID", &SourceListPID, &PropertyValue, SourceCount, &PropertyMatched);
605 ProcessStringValue(&PropertyName, "MEDIATYPE", &SourceListMediatype, &PropertyValue, SourceCount, &PropertyMatched);
606 ProcessIntegerValue(&PropertyName, "PREF", &SourceListPref, &PropertyValue, SourceCount, &PropertyMatched);
608 if (PropertyMatched == TRUE){
610 PropertyMatched = FALSE;
615 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
617 if (FirstToken == TRUE){
619 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
624 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
632 intPropertyLen = PropertySeg2.Len();
639 CaptureString(&PropertySeg2, FALSE);
641 // Add the data to the General/Home/Work address variables.
647 SourceListType.insert(std::make_pair(*SourceCount, "home"));
650 SourceListType.insert(std::make_pair(*SourceCount, "work"));
654 SourceList.insert(std::make_pair(*SourceCount, PropertySeg2));
656 if (!PropertyTokens.IsEmpty()){
658 SourceListTokens.insert(std::make_pair(*SourceCount, PropertyTokens));
664 void ContactDataObject::ProcessXML(wxString PropertySeg1, wxString PropertySeg2, int *XMLCount){
666 std::map<int, int> SplitPoints;
667 std::map<int, int> SplitLength;
669 int intPrevValue = 5;
673 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
677 wxString PropertyName;
678 wxString PropertyValue;
679 wxString PropertyData;
680 wxString PropertyTokens;
681 std::map<int,int>::iterator SLiter;
682 bool FirstToken = TRUE;
683 bool PropertyMatched = FALSE;
685 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
686 intiter != SplitPoints.end(); ++intiter){
688 SLiter = SplitLength.find(intiter->first);
690 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
692 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
693 PropertyName = PropertyElement.GetNextToken();
694 PropertyValue = PropertyElement.GetNextToken();
696 intPrevValue = intiter->second;
698 CaptureString(&PropertyValue, FALSE);
700 ProcessStringValue(&PropertyName, "ALTID", &XMLListAltID, &PropertyValue, XMLCount, &PropertyMatched);
702 if (PropertyMatched == TRUE){
704 PropertyMatched = FALSE;
711 XMLList.insert(std::make_pair(*XMLCount, PropertySeg2));
715 void ContactDataObject::ProcessMember(wxString PropertySeg1, wxString PropertySeg2, int *GroupCount){
717 std::map<int, int> SplitPoints;
718 std::map<int, int> SplitLength;
720 int intPrevValue = 8;
724 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
728 wxString PropertyName;
729 wxString PropertyValue;
730 wxString PropertyData;
731 wxString PropertyTokens;
732 std::map<int,int>::iterator SLiter;
733 bool FirstToken = TRUE;
734 bool PropertyMatched = FALSE;
736 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
737 intiter != SplitPoints.end(); ++intiter){
739 SLiter = SplitLength.find(intiter->first);
741 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
743 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
744 PropertyName = PropertyElement.GetNextToken();
745 PropertyValue = PropertyElement.GetNextToken();
747 intPrevValue = intiter->second;
749 CaptureString(&PropertyValue, FALSE);
751 ProcessStringValue(&PropertyName, "ALTID", &GroupsListAltID, &PropertyValue, GroupCount, &PropertyMatched);
752 ProcessStringValue(&PropertyName, "PID", &GroupsListPID, &PropertyValue, GroupCount, &PropertyMatched);
753 ProcessStringValue(&PropertyName, "MEDIATYPE", &GroupsListMediaType, &PropertyValue, GroupCount, &PropertyMatched);
754 ProcessIntegerValue(&PropertyName, "PREF", &GroupsListPref, &PropertyValue, GroupCount, &PropertyMatched);
756 if (PropertyMatched == TRUE){
758 PropertyMatched = FALSE;
763 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
765 if (FirstToken == TRUE){
767 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
772 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
780 GroupsList.insert(std::make_pair(*GroupCount, PropertySeg2));
782 if (!PropertyTokens.IsEmpty()){
784 GroupsListTokens.insert(std::make_pair(*GroupCount, PropertyTokens));
791 void ContactDataObject::ProcessFN(wxString PropertySeg1, wxString PropertySeg2, int *FNCount){
793 std::map<int, int> SplitPoints;
794 std::map<int, int> SplitLength;
796 int intPrevValue = 4;
800 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
804 wxString PropertyName;
805 wxString PropertyValue;
806 wxString PropertyData;
807 wxString PropertyTokens;
808 std::map<int,int>::iterator SLiter;
809 bool FirstToken = TRUE;
810 bool PropertyMatched = FALSE;
812 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
813 intiter != SplitPoints.end(); ++intiter){
815 SLiter = SplitLength.find(intiter->first);
817 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
819 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
820 PropertyName = PropertyElement.GetNextToken();
821 PropertyValue = PropertyElement.GetNextToken();
823 intPrevValue = intiter->second;
825 CaptureString(&PropertyValue, FALSE);
827 if (PropertyName == wxT("TYPE")){
829 if (!PropertyValue.IsEmpty() || PropertyValue == wxT("home") ||
830 PropertyValue == wxT("work") ){
832 FullNamesListType.erase(*FNCount);
833 FullNamesListType.insert(std::make_pair(*FNCount, PropertyValue));
837 PropertyMatched = TRUE;
841 ProcessStringValue(&PropertyName, "ALTID", &FullNamesListAltID, &PropertyValue, FNCount, &PropertyMatched);
842 ProcessStringValue(&PropertyName, "PID", &FullNamesListPID, &PropertyValue, FNCount, &PropertyMatched);
843 ProcessStringValue(&PropertyName, "LANGUAGE", &FullNamesListLanguage, &PropertyValue, FNCount, &PropertyMatched);
844 ProcessIntegerValue(&PropertyName, "PREF", &FullNamesListPref, &PropertyValue, FNCount, &PropertyMatched);
846 if (PropertyMatched == TRUE){
848 PropertyMatched = FALSE;
853 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
855 if (FirstToken == TRUE){
857 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
862 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
870 FullNamesList.insert(std::make_pair(*FNCount, PropertySeg2));
872 if (!PropertyTokens.IsEmpty()){
874 FullNamesListTokens.insert(std::make_pair(*FNCount, PropertyTokens));
880 void ContactDataObject::ProcessN(wxString PropertySeg1, wxString PropertySeg2){
882 std::map<int, int> SplitPoints;
883 std::map<int, int> SplitLength;
885 int intPrevValue = 3;
889 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
893 wxString PropertyName;
894 wxString PropertyValue;
895 wxString PropertyData;
896 wxString PropertyTokens;
897 std::map<int,int>::iterator SLiter;
898 bool FirstToken = TRUE;
900 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
901 intiter != SplitPoints.end(); ++intiter){
903 SLiter = SplitLength.find(intiter->first);
905 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
907 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
908 PropertyName = PropertyElement.GetNextToken();
909 PropertyValue = PropertyElement.GetNextToken();
911 intPrevValue = intiter->second;
913 CaptureString(&PropertyValue, FALSE);
915 if (PropertyName == wxT("ALTID")){
917 NameAltID = PropertyValue;
919 } else if (PropertyName == wxT("LANGUAGE")){
921 NameLanguage = PropertyValue;
923 } else if (PropertyName == wxT("SORT-AS")){
925 if (PropertyValue.Left(1) == wxT("\"") && PropertyValue.Right(1) == wxT("\"") &&
926 PropertyValue.Len() >= 3){
927 NameDisplayAs = PropertyValue.Mid(1, (PropertyValue.Len() - 2));
930 } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
932 if (FirstToken == TRUE){
934 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
939 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
947 // Split the name data.
949 int intSplitSeek = 0;
950 int intSplitsFound = 0;
951 int intSplitSize = 0;
952 int intPropertyLen = PropertySeg2.Len();
954 std::map<int,wxString> NameValues;
957 for (int i = 0; i <= intPropertyLen; i++){
959 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
961 NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, intSplitSize)));
966 if (intSplitsFound == 4){
968 NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, wxString::npos)));
982 // Split the data into several parts.
984 for (std::map<int, wxString>::iterator iter = NameValues.begin();
985 iter != NameValues.end(); ++iter){
987 if (iter->first == 1){
989 // Deal with family name.
991 NameSurname = iter->second;
993 } else if (iter->first == 2){
995 // Deal with given names.
997 NameForename = iter->second;
999 } else if (iter->first == 3){
1001 // Deal with additional names.
1003 NameOtherNames = iter->second;
1005 } else if (iter->first == 4){
1007 // Deal with honorifix prefixes and suffixes.
1009 NameTitle = iter->second;
1013 if (iter == NameValues.end()){
1019 NameSuffix = iter->second;
1025 // Add the name token data.
1027 if (!PropertyTokens.IsEmpty()){
1029 NameTokens = PropertyTokens;
1035 void ContactDataObject::ProcessClientPIDMap(wxString PropertySeg1, wxString PropertySeg2, int *ClientPIDCount){
1037 size_t intPropertyLen = PropertySeg1.Len();
1038 std::map<int, int> SplitPoints;
1039 std::map<int, int> SplitLength;
1040 std::map<int, int>::iterator SLiter;
1041 wxString PropertyData;
1042 wxString PropertyName;
1043 wxString PropertyValue;
1044 wxString PropertyTokens;
1045 bool FirstToken = TRUE;
1046 int intSplitsFound = 0;
1047 int intSplitSize = 0;
1048 int intPrevValue = 14;
1052 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1056 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1057 intiter != SplitPoints.end(); ++intiter){
1059 SLiter = SplitLength.find(intiter->first);
1061 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1063 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1064 PropertyName = PropertyElement.GetNextToken();
1065 PropertyValue = PropertyElement.GetNextToken();
1067 intPrevValue = intiter->second;
1069 // Process properties.
1071 CaptureString(&PropertyValue, FALSE);
1073 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1075 if (FirstToken == TRUE){
1077 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1082 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1090 CaptureString(&PropertySeg2, FALSE);
1092 ClientPIDList.insert(std::make_pair(*ClientPIDCount, PropertySeg2));
1094 if (!PropertyTokens.IsEmpty()){
1096 ClientPIDListTokens.insert(std::make_pair(*ClientPIDCount, PropertyTokens));
1102 void ContactDataObject::ProcessNickname(wxString PropertySeg1, wxString PropertySeg2, int *NicknameCount){
1104 std::map<int, int> SplitPoints;
1105 std::map<int, int> SplitLength;
1107 int intPrevValue = 10;
1110 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1114 PropertyType PropType = PROPERTY_NONE;
1116 // Look for type before continuing.
1118 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1122 std::map<int, wxString> *NicknamesList = NULL;
1123 std::map<int, wxString> *NicknamesListType = NULL;
1124 std::map<int, wxString> *NicknamesListLanguage = NULL;
1125 std::map<int, wxString> *NicknamesListAltID = NULL;
1126 std::map<int, wxString> *NicknamesListPID = NULL;
1127 std::map<int, wxString> *NicknamesListTokens = NULL;
1128 std::map<int, int> *NicknamesListPref = NULL;
1132 NicknamesList = &GeneralNicknamesList;
1133 NicknamesListType = &GeneralNicknamesListType;
1134 NicknamesListLanguage = &GeneralNicknamesListLanguage;
1135 NicknamesListAltID = &GeneralNicknamesListAltID;
1136 NicknamesListPID = &GeneralNicknamesListPID;
1137 NicknamesListTokens = &GeneralNicknamesListTokens;
1138 NicknamesListPref = &GeneralNicknamesListPref;
1141 NicknamesList = &HomeNicknamesList;
1142 NicknamesListType = &HomeNicknamesListType;
1143 NicknamesListLanguage = &HomeNicknamesListLanguage;
1144 NicknamesListAltID = &HomeNicknamesListAltID;
1145 NicknamesListPID = &HomeNicknamesListPID;
1146 NicknamesListTokens = &HomeNicknamesListTokens;
1147 NicknamesListPref = &HomeNicknamesListPref;
1150 NicknamesList = &BusinessNicknamesList;
1151 NicknamesListType = &BusinessNicknamesListType;
1152 NicknamesListLanguage = &BusinessNicknamesListLanguage;
1153 NicknamesListAltID = &BusinessNicknamesListAltID;
1154 NicknamesListPID = &BusinessNicknamesListPID;
1155 NicknamesListTokens = &BusinessNicknamesListTokens;
1156 NicknamesListPref = &BusinessNicknamesListPref;
1160 std::map<int, int>::iterator SLiter;
1161 wxString PropertyData;
1162 wxString PropertyName;
1163 wxString PropertyValue;
1164 wxString PropertyTokens;
1165 bool FirstToken = TRUE;
1166 bool PropertyMatched = FALSE;
1168 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1169 intiter != SplitPoints.end(); ++intiter){
1171 SLiter = SplitLength.find(intiter->first);
1173 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1175 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1176 PropertyName = PropertyElement.GetNextToken();
1177 PropertyValue = PropertyElement.GetNextToken();
1179 intPrevValue = intiter->second;
1181 CaptureString(&PropertyValue, FALSE);
1183 ProcessStringValue(&PropertyName, "ALTID", NicknamesListAltID, &PropertyValue, NicknameCount, &PropertyMatched);
1184 ProcessStringValue(&PropertyName, "PID", NicknamesListPID, &PropertyValue, NicknameCount, &PropertyMatched);
1185 ProcessStringValue(&PropertyName, "LANGUAGE", NicknamesListLanguage, &PropertyValue, NicknameCount, &PropertyMatched);
1186 ProcessIntegerValue(&PropertyName, "PREF", NicknamesListPref, &PropertyValue, NicknameCount, &PropertyMatched);
1188 if (PropertyMatched == TRUE){
1190 PropertyMatched = FALSE;
1195 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1197 if (FirstToken == TRUE){
1199 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1204 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1212 NicknamesList->insert(std::make_pair(*NicknameCount, PropertySeg2));
1214 // Add the name token data.
1216 if (!PropertyTokens.IsEmpty()){
1218 NicknamesListTokens->insert(std::make_pair(*NicknameCount, PropertyTokens));
1224 void ContactDataObject::ProcessGender(wxString PropertySeg1, wxString PropertySeg2){
1226 std::map<int, int> SplitPoints;
1227 std::map<int, int> SplitLength;
1228 std::map<int, int>::iterator SLiter;
1229 wxString PropertyData;
1230 wxString PropertyName;
1231 wxString PropertyValue;
1232 wxString PropertyTokens;
1233 bool FirstToken = TRUE;
1234 int intPrevValue = 8;
1236 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1240 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1241 intiter != SplitPoints.end(); ++intiter){
1243 SLiter = SplitLength.find(intiter->first);
1245 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1247 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1248 PropertyName = PropertyElement.GetNextToken();
1249 PropertyValue = PropertyElement.GetNextToken();
1251 intPrevValue = intiter->second;
1253 // Process properties.
1255 size_t intPropertyValueLen = PropertyValue.Len();
1257 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
1259 PropertyValue.Trim();
1260 PropertyValue.RemoveLast();
1264 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1266 PropertyValue.Remove(0, 1);
1270 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1272 if (FirstToken == TRUE){
1274 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1279 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1287 wxStringTokenizer GenderData (PropertySeg2, wxT(";"));
1289 wxString GenderComponent;
1291 if (GenderData.CountTokens() >= 2){
1293 Gender = GenderData.GetNextToken();
1294 GenderDetails = GenderData.GetString();
1296 CaptureString(&GenderDetails, FALSE);
1300 Gender = GenderData.GetNextToken();
1304 if (!PropertyTokens.IsEmpty()){
1306 GenderTokens = PropertyTokens;
1312 void ContactDataObject::ProcessBirthday(wxString PropertySeg1, wxString PropertySeg2){
1314 // Process date. Preserve the remainder in the string.
1316 std::map<int, int> SplitPoints;
1317 std::map<int, int> SplitLength;
1318 std::map<int, int>::iterator SLiter;
1319 wxString PropertyData;
1320 wxString PropertyName;
1321 wxString PropertyValue;
1322 wxString PropertyTokens;
1323 bool BirthdayText = FALSE;
1324 int intPrevValue = 6;
1326 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1330 // Look for type before continuing.
1332 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1333 intiter != SplitPoints.end(); ++intiter){
1335 SLiter = SplitLength.find(intiter->first);
1337 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1339 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1340 PropertyName = PropertyElement.GetNextToken();
1341 PropertyValue = PropertyElement.GetNextToken();
1343 intPrevValue = intiter->second;
1345 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && BirthdayText == FALSE){
1347 CaptureString(&PropertySeg2, FALSE);
1348 Birthday = PropertySeg2;
1349 BirthdayText = TRUE;
1355 // Setup blank lines for later on.
1358 bool FirstToken = TRUE;
1360 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1361 intiter != SplitPoints.end(); ++intiter){
1363 SLiter = SplitLength.find(intiter->first);
1365 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1367 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1368 PropertyName = PropertyElement.GetNextToken();
1369 PropertyValue = PropertyElement.GetNextToken();
1371 intPrevValue = intiter->second;
1373 // Process properties.
1375 CaptureString(&PropertyValue, FALSE);
1377 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1379 PropertyValue.Trim();
1380 PropertyValue.RemoveLast();
1384 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1386 PropertyValue.Remove(0, 1);
1390 if (PropertyName == wxT("ALTID")){
1392 BirthdayAltID = PropertyValue;
1394 } else if (PropertyName == wxT("CALSCALE")){
1396 BirthdayCalScale = PropertyValue;
1398 } else if (PropertyName != wxT("VALUE")) {
1400 // Something else we don't know about so append
1401 // to the tokens variable.
1403 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1405 if (FirstToken == TRUE){
1407 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1412 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1422 // Add the data to the variables and form.
1424 if (BirthdayText == FALSE){
1426 Birthday = PropertySeg2;
1430 if (!PropertyTokens.IsEmpty()){
1432 BirthdayTokens = PropertyTokens;
1438 void ContactDataObject::ProcessAnniversary(wxString PropertySeg1, wxString PropertySeg2){
1440 // Process date. Preserve the remainder in the string.
1442 std::map<int, int> SplitPoints;
1443 std::map<int, int> SplitLength;
1444 std::map<int, int>::iterator SLiter;
1445 wxString PropertyData;
1446 wxString PropertyName;
1447 wxString PropertyValue;
1448 wxString PropertyTokens;
1449 bool AnniversaryText = FALSE;
1450 int intPrevValue = 13;
1452 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1456 // Look for type before continuing.
1458 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1459 intiter != SplitPoints.end(); ++intiter){
1461 SLiter = SplitLength.find(intiter->first);
1463 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1465 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1466 PropertyName = PropertyElement.GetNextToken();
1467 PropertyValue = PropertyElement.GetNextToken();
1469 intPrevValue = intiter->second;
1471 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && AnniversaryText == FALSE){
1473 CaptureString(&PropertySeg2, FALSE);
1474 Anniversary = PropertySeg2;
1475 AnniversaryText = TRUE;
1481 // Setup blank lines for later on.
1484 bool FirstToken = TRUE;
1486 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1487 intiter != SplitPoints.end(); ++intiter){
1489 SLiter = SplitLength.find(intiter->first);
1491 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1493 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1494 PropertyName = PropertyElement.GetNextToken();
1495 PropertyValue = PropertyElement.GetNextToken();
1497 intPrevValue = intiter->second;
1499 // Process properties.
1501 CaptureString(&PropertyValue, FALSE);
1503 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1505 PropertyValue.Trim();
1506 PropertyValue.RemoveLast();
1510 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1512 PropertyValue.Remove(0, 1);
1516 if (PropertyName == wxT("ALTID")){
1518 AnniversaryAltID = PropertyValue;
1520 } else if (PropertyName == wxT("CALSCALE")){
1522 AnniversaryCalScale = PropertyValue;
1524 } else if (PropertyName != wxT("VALUE")) {
1526 // Something else we don't know about so append
1527 // to the tokens variable.
1529 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
1531 if (FirstToken == TRUE){
1533 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1538 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1548 // Add the data to the variables and form.
1550 if (AnniversaryText == FALSE){
1552 Anniversary = PropertySeg2;
1556 if (!PropertyTokens.IsEmpty()){
1558 AnniversaryTokens = PropertyTokens;
1564 void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString PropertySeg2, int *TimeZoneCount){
1566 std::map<int, int> SplitPoints;
1567 std::map<int, int> SplitLength;
1569 int intPrevValue = 4;
1572 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1576 PropertyType PropType = PROPERTY_NONE;
1578 // Look for type before continuing.
1580 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1584 std::map<int, wxString> *TZList = NULL;
1585 std::map<int, wxString> *TZListType = NULL;
1586 std::map<int, wxString> *TZListMediatype = NULL;
1587 std::map<int, wxString> *TZListAltID = NULL;
1588 std::map<int, wxString> *TZListPID = NULL;
1589 std::map<int, wxString> *TZListTokens = NULL;
1590 std::map<int, int> *TZListPref = NULL;
1594 TZList = &GeneralTZList;
1595 TZListType = &GeneralTZListType;
1596 TZListMediatype = &GeneralTZListMediatype;
1597 TZListAltID = &GeneralTZListAltID;
1598 TZListPID = &GeneralTZListPID;
1599 TZListTokens = &GeneralTZListTokens;
1600 TZListPref = &GeneralTZListPref;
1603 TZList = &HomeTZList;
1604 TZListType = &HomeTZListType;
1605 TZListMediatype = &HomeTZListMediatype;
1606 TZListAltID = &HomeTZListAltID;
1607 TZListPID = &HomeTZListPID;
1608 TZListTokens = &HomeTZListTokens;
1609 TZListPref = &HomeTZListPref;
1612 TZList = &BusinessTZList;
1613 TZListType = &BusinessTZListType;
1614 TZListMediatype = &BusinessTZListMediatype;
1615 TZListAltID = &BusinessTZListAltID;
1616 TZListPID = &BusinessTZListPID;
1617 TZListTokens = &BusinessTZListTokens;
1618 TZListPref = &BusinessTZListPref;
1622 std::map<int, int>::iterator SLiter;
1623 wxString PropertyData;
1624 wxString PropertyName;
1625 wxString PropertyValue;
1626 wxString PropertyTokens;
1627 bool FirstToken = TRUE;
1628 bool PropertyMatched = FALSE;
1630 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1631 intiter != SplitPoints.end(); ++intiter){
1633 SLiter = SplitLength.find(intiter->first);
1635 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1637 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1638 PropertyName = PropertyElement.GetNextToken();
1639 PropertyValue = PropertyElement.GetNextToken();
1641 intPrevValue = intiter->second;
1643 CaptureString(&PropertyValue, FALSE);
1645 ProcessStringValue(&PropertyName, "ALTID", TZListAltID, &PropertyValue, TimeZoneCount, &PropertyMatched);
1646 ProcessStringValue(&PropertyName, "PID", TZListPID, &PropertyValue, TimeZoneCount, &PropertyMatched);
1647 ProcessStringValue(&PropertyName, "MEDIATYPE", TZListMediatype, &PropertyValue, TimeZoneCount, &PropertyMatched);
1648 ProcessIntegerValue(&PropertyName, "PREF", TZListPref, &PropertyValue, TimeZoneCount, &PropertyMatched);
1650 if (PropertyMatched == TRUE){
1652 PropertyMatched = FALSE;
1657 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1659 if (FirstToken == TRUE){
1661 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1666 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1674 TZList->insert(std::make_pair(*TimeZoneCount, PropertySeg2));
1676 // Add the name token data.
1678 if (!PropertyTokens.IsEmpty()){
1680 TZListTokens->insert(std::make_pair(*TimeZoneCount, PropertyTokens));
1687 void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertySeg2, int *AddressCount){
1689 size_t intPropertyLen = PropertySeg1.Len();
1690 std::map<int, int> SplitPoints;
1691 std::map<int, int> SplitLength;
1692 std::map<int, int>::iterator SLiter;
1693 wxString PropertyData;
1694 wxString PropertyName;
1695 wxString PropertyValue;
1696 wxString PropertyTokens;
1697 wxString AddressLabel;
1698 wxString AddressLang;
1699 wxString AddressAltID;
1700 wxString AddressPID;
1701 wxString AddressTokens;
1702 wxString AddressGeo;
1703 wxString AddressTimezone;
1704 wxString AddressType;
1705 wxString AddressMediatype;
1706 wxString AddressPOBox;
1707 wxString AddressExtended;
1708 wxString AddressStreet;
1709 wxString AddressLocality;
1710 wxString AddressCity;
1711 wxString AddressRegion;
1712 wxString AddressPostalCode;
1713 wxString AddressCountry;
1714 bool FirstToken = TRUE;
1715 int intSplitsFound = 0;
1716 int intSplitSize = 0;
1717 int intPrevValue = 5;
1721 bool PropertyMatched = FALSE;
1723 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1727 PropertyType PropType = PROPERTY_NONE;
1729 // Look for type before continuing.
1731 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1735 std::map<int, wxString> *AddressList = NULL;
1736 std::map<int, wxString> *AddressListTown = NULL;
1737 std::map<int, wxString> *AddressListCounty = NULL;
1738 std::map<int, wxString> *AddressListPostCode = NULL;
1739 std::map<int, wxString> *AddressListCountry = NULL;
1740 std::map<int, wxString> *AddressListLabel = NULL;
1741 std::map<int, wxString> *AddressListLang = NULL;
1742 std::map<int, wxString> *AddressListAltID = NULL;
1743 std::map<int, wxString> *AddressListPID = NULL;
1744 std::map<int, wxString> *AddressListTokens = NULL;
1745 std::map<int, wxString> *AddressListGeo = NULL;
1746 std::map<int, wxString> *AddressListTimezone = NULL;
1747 std::map<int, wxString> *AddressListType = NULL;
1748 std::map<int, wxString> *AddressListMediatype = NULL;
1749 std::map<int, int> *AddressListPref = NULL;
1753 AddressList = &GeneralAddressList;
1754 AddressListTown = &GeneralAddressListTown;
1755 AddressListCounty = &GeneralAddressListCounty;
1756 AddressListPostCode = &GeneralAddressListPostCode;
1757 AddressListCountry = &GeneralAddressListCountry;
1758 AddressListLabel = &GeneralAddressListLabel;
1759 AddressListLang = &GeneralAddressListLang;
1760 AddressListAltID = &GeneralAddressListAltID;
1761 AddressListPID = &GeneralAddressListPID;
1762 AddressListTokens = &GeneralAddressListTokens;
1763 AddressListGeo = &GeneralAddressListGeo;
1764 AddressListTimezone = &GeneralAddressListTimezone;
1765 AddressListType = &GeneralAddressListType;
1766 AddressListMediatype = &GeneralAddressListMediatype;
1767 AddressListPref = &GeneralAddressListPref;
1770 AddressList = &HomeAddressList;
1771 AddressListTown = &HomeAddressListTown;
1772 AddressListCounty = &HomeAddressListCounty;
1773 AddressListPostCode = &HomeAddressListPostCode;
1774 AddressListCountry = &HomeAddressListCountry;
1775 AddressListLabel = &HomeAddressListLabel;
1776 AddressListLang = &HomeAddressListLang;
1777 AddressListAltID = &HomeAddressListAltID;
1778 AddressListPID = &HomeAddressListPID;
1779 AddressListTokens = &HomeAddressListTokens;
1780 AddressListGeo = &HomeAddressListGeo;
1781 AddressListTimezone = &HomeAddressListTimezone;
1782 AddressListType = &HomeAddressListType;
1783 AddressListMediatype = &HomeAddressListMediatype;
1784 AddressListPref = &HomeAddressListPref;
1787 AddressList = &BusinessAddressList;
1788 AddressListTown = &BusinessAddressListTown;
1789 AddressListCounty = &BusinessAddressListCounty;
1790 AddressListPostCode = &BusinessAddressListPostCode;
1791 AddressListCountry = &BusinessAddressListCountry;
1792 AddressListLabel = &BusinessAddressListLabel;
1793 AddressListLang = &BusinessAddressListLang;
1794 AddressListAltID = &BusinessAddressListAltID;
1795 AddressListPID = &BusinessAddressListPID;
1796 AddressListTokens = &BusinessAddressListTokens;
1797 AddressListGeo = &BusinessAddressListGeo;
1798 AddressListTimezone = &BusinessAddressListTimezone;
1799 AddressListType = &BusinessAddressListType;
1800 AddressListMediatype = &BusinessAddressListMediatype;
1801 AddressListPref = &BusinessAddressListPref;
1807 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1808 intiter != SplitPoints.end(); ++intiter){
1810 SLiter = SplitLength.find(intiter->first);
1812 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1814 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
1815 PropertyName = PropertyElement.GetNextToken();
1816 PropertyValue = PropertyElement.GetNextToken();
1818 intPrevValue = intiter->second;
1820 CaptureString(&PropertyValue, FALSE);
1822 // Process properties.
1824 ProcessStringValue(&PropertyName, "LABEL", AddressListLabel, &PropertyValue, AddressCount, &PropertyMatched);
1825 ProcessStringValue(&PropertyName, "LANGUAGE", AddressListLang, &PropertyValue, AddressCount, &PropertyMatched);
1826 ProcessStringValue(&PropertyName, "ALTID", AddressListAltID, &PropertyValue, AddressCount, &PropertyMatched);
1827 ProcessStringValue(&PropertyName, "PID", AddressListPID, &PropertyValue, AddressCount, &PropertyMatched);
1828 ProcessStringValue(&PropertyName, "GEO", AddressListGeo, &PropertyValue, AddressCount, &PropertyMatched);
1829 ProcessStringValue(&PropertyName, "TZ", AddressListTimezone, &PropertyValue, AddressCount, &PropertyMatched);
1830 ProcessStringValue(&PropertyName, "MEDIATYPE", AddressListMediatype, &PropertyValue, AddressCount, &PropertyMatched);
1831 ProcessIntegerValue(&PropertyName, "PREF", AddressListPref, &PropertyValue, AddressCount, &PropertyMatched);
1833 if (PropertyMatched == TRUE){
1835 PropertyMatched = FALSE;
1840 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1842 if (FirstToken == TRUE){
1844 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
1849 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
1857 // Split the address.
1859 //std::map<int, int>::iterator SLiter;
1860 intPropertyLen = PropertySeg2.Len();
1861 SplitPoints.clear();
1862 SplitLength.clear();
1867 for (int i = 0; i <= intPropertyLen; i++){
1871 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
1874 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
1876 if (intSplitsFound == 6){
1878 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1883 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1893 // Split the data into several parts.
1895 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
1896 intiter != SplitPoints.end(); ++intiter){
1898 if (intiter->first == 1){
1900 // Deal with PO Box.
1902 SLiter = SplitLength.find(1);
1904 AddressPOBox = PropertySeg2.Mid(0, SLiter->second);
1905 intPrevValue = intiter->second;
1907 } else if (intiter->first == 2){
1909 // Deal with extended address.
1911 SLiter = SplitLength.find(2);
1913 AddressExtended = PropertySeg2.Mid(intPrevValue, SLiter->second);
1914 intPrevValue = intiter->second;
1916 } else if (intiter->first == 3){
1918 // Deal with street address.
1920 SLiter = SplitLength.find(3);
1922 AddressStreet = PropertySeg2.Mid(intPrevValue, SLiter->second);
1923 intPrevValue = intiter->second;
1925 } else if (intiter->first == 4){
1927 // Deal with locality
1929 SLiter = SplitLength.find(4);
1931 AddressLocality = PropertySeg2.Mid(intPrevValue, SLiter->second);
1932 intPrevValue = intiter->second;
1934 } else if (intiter->first == 5){
1936 // Deal with region.
1938 SLiter = SplitLength.find(5);
1940 AddressRegion = PropertySeg2.Mid(intPrevValue, SLiter->second);
1941 intPrevValue = intiter->second;
1944 } else if (intiter->first == 6){
1946 // Deal with post code.
1948 SLiter = SplitLength.find(6);
1950 AddressPostalCode = PropertySeg2.Mid(intPrevValue, SLiter->second);
1951 intPrevValue = intiter->second;
1953 // Deal with country.
1955 AddressCountry = PropertySeg2.Mid(intPrevValue, wxString::npos);
1963 // Add the data to the General/Home/Work address variables.
1965 CaptureString(&AddressStreet, FALSE);
1966 CaptureString(&AddressLocality, FALSE);
1967 CaptureString(&AddressRegion, FALSE);
1968 CaptureString(&AddressPostalCode, FALSE);
1969 CaptureString(&AddressCountry, FALSE);
1971 if (!PropertyTokens.IsEmpty()){
1973 AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
1977 AddressListCountry->insert(std::make_pair(*AddressCount, AddressCountry));
1978 AddressList->insert(std::make_pair(*AddressCount, AddressStreet));
1979 AddressListTown->insert(std::make_pair(*AddressCount, AddressLocality));
1980 AddressListCounty->insert(std::make_pair(*AddressCount, AddressRegion));
1981 AddressListPostCode->insert(std::make_pair(*AddressCount, AddressPostalCode));
1985 AddressListType->insert(std::make_pair(*AddressCount, wxT("")));
1988 AddressListType->insert(std::make_pair(*AddressCount, wxT("home")));
1991 AddressListType->insert(std::make_pair(*AddressCount, wxT("work")));
1995 AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
1999 void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg2, int *EmailCount){
2001 std::map<int, int> SplitPoints;
2002 std::map<int, int> SplitLength;
2004 int intPrevValue = 7;
2007 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2011 PropertyType PropType = PROPERTY_NONE;
2013 // Look for type before continuing.
2015 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2017 std::map<int, wxString> *EmailList = NULL;
2018 std::map<int, wxString> *EmailListType = NULL;
2019 std::map<int, wxString> *EmailListAltID = NULL;
2020 std::map<int, wxString> *EmailListPID = NULL;
2021 std::map<int, wxString> *EmailListTokens = NULL;
2022 std::map<int, int> *EmailListPref = NULL;
2026 EmailList = &GeneralEmailList;
2027 EmailListType = &GeneralEmailListType;
2028 EmailListAltID = &GeneralEmailListAltID;
2029 EmailListPID = &GeneralEmailListPID;
2030 EmailListTokens = &GeneralEmailListTokens;
2031 EmailListPref = &GeneralEmailListPref;
2034 EmailList = &HomeEmailList;
2035 EmailListType = &HomeEmailListType;
2036 EmailListAltID = &HomeEmailListAltID;
2037 EmailListPID = &HomeEmailListPID;
2038 EmailListTokens = &HomeEmailListTokens;
2039 EmailListPref = &HomeEmailListPref;
2042 EmailList = &BusinessEmailList;
2043 EmailListType = &BusinessEmailListType;
2044 EmailListAltID = &BusinessEmailListAltID;
2045 EmailListPID = &BusinessEmailListPID;
2046 EmailListTokens = &BusinessEmailListTokens;
2047 EmailListPref = &BusinessEmailListPref;
2053 std::map<int,int>::iterator SLiter;
2054 wxString PropertyData;
2055 wxString PropertyName;
2056 wxString PropertyValue;
2057 wxString PropertyTokens;
2058 bool FirstToken = TRUE;
2059 bool PropertyMatched = FALSE;
2061 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2062 intiter != SplitPoints.end(); ++intiter){
2064 SLiter = SplitLength.find(intiter->first);
2066 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2068 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2069 PropertyName = PropertyElement.GetNextToken();
2070 PropertyValue = PropertyElement.GetNextToken();
2072 intPrevValue = intiter->second;
2074 CaptureString(&PropertyValue, FALSE);
2076 // Process properties.
2078 ProcessStringValue(&PropertyName, "ALTID", EmailListAltID, &PropertyValue, EmailCount, &PropertyMatched);
2079 ProcessStringValue(&PropertyName, "PID", EmailListPID, &PropertyValue, EmailCount, &PropertyMatched);
2080 ProcessIntegerValue(&PropertyName, "PREF", EmailListPref, &PropertyValue, EmailCount, &PropertyMatched);
2082 if (PropertyMatched == TRUE){
2084 PropertyMatched = FALSE;
2089 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2091 if (FirstToken == TRUE){
2093 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2098 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2106 EmailList->insert(std::make_pair(*EmailCount, PropertySeg2));
2108 // Add the name token data.
2110 if (!PropertyTokens.IsEmpty()){
2112 EmailListTokens->insert(std::make_pair(*EmailCount, PropertyTokens));
2119 void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, int *IMCount){
2121 std::map<int, int> SplitPoints;
2122 std::map<int, int> SplitLength;
2124 int intPrevValue = 6;
2127 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2131 PropertyType PropType = PROPERTY_NONE;
2133 // Look for type before continuing.
2135 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2137 std::map<int, wxString> *IMList = NULL;
2138 std::map<int, wxString> *IMListType = NULL;
2139 std::map<int, wxString> *IMListAltID = NULL;
2140 std::map<int, wxString> *IMListPID = NULL;
2141 std::map<int, wxString> *IMListTokens = NULL;
2142 std::map<int, wxString> *IMListMediatype = NULL;
2143 std::map<int, int> *IMListPref = NULL;
2147 IMList = &GeneralIMList;
2148 IMListType = &GeneralIMListType;
2149 IMListAltID = &GeneralIMListAltID;
2150 IMListPID = &GeneralIMListPID;
2151 IMListTokens = &GeneralIMListTokens;
2152 IMListMediatype = &GeneralIMListMediatype;
2153 IMListPref = &GeneralIMListPref;
2156 IMList = &HomeIMList;
2157 IMListType = &HomeIMListType;
2158 IMListAltID = &HomeIMListAltID;
2159 IMListPID = &HomeIMListPID;
2160 IMListTokens = &HomeIMListTokens;
2161 IMListMediatype = &HomeIMListMediatype;
2162 IMListPref = &HomeIMListPref;
2165 IMList = &BusinessIMList;
2166 IMListType = &BusinessIMListType;
2167 IMListAltID = &BusinessIMListAltID;
2168 IMListPID = &BusinessIMListPID;
2169 IMListTokens = &BusinessIMListTokens;
2170 IMListMediatype = &BusinessIMListMediatype;
2171 IMListPref = &BusinessIMListPref;
2177 std::map<int,int>::iterator SLiter;
2178 wxString PropertyData;
2179 wxString PropertyName;
2180 wxString PropertyValue;
2181 wxString PropertyTokens;
2182 bool FirstToken = TRUE;
2183 bool PropertyMatched = FALSE;
2185 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2186 intiter != SplitPoints.end(); ++intiter){
2188 SLiter = SplitLength.find(intiter->first);
2190 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2192 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2193 PropertyName = PropertyElement.GetNextToken();
2194 PropertyValue = PropertyElement.GetNextToken();
2196 intPrevValue = intiter->second;
2198 CaptureString(&PropertyValue, FALSE);
2200 ProcessStringValue(&PropertyName, "ALTID", IMListAltID, &PropertyValue, IMCount, &PropertyMatched);
2201 ProcessStringValue(&PropertyName, "PID", IMListPID, &PropertyValue, IMCount, &PropertyMatched);
2202 ProcessStringValue(&PropertyName, "MEDIATYPE", IMListMediatype, &PropertyValue, IMCount, &PropertyMatched);
2203 ProcessIntegerValue(&PropertyName, "PREF", IMListPref, &PropertyValue, IMCount, &PropertyMatched);
2205 // Process properties.
2207 if (PropertyMatched == TRUE){
2209 PropertyMatched = FALSE;
2214 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2216 if (FirstToken == TRUE){
2218 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2223 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2231 IMList->insert(std::make_pair(*IMCount, PropertySeg2));
2233 // Add the name token data.
2235 if (!PropertyTokens.IsEmpty()){
2237 IMListTokens->insert(std::make_pair(*IMCount, PropertyTokens));
2243 void ContactDataObject::ProcessTelephone(wxString PropertySeg1, wxString PropertySeg2, int *TelephoneCount){
2245 std::map<int, int> SplitPoints;
2246 std::map<int, int> SplitLength;
2247 std::map<int, int>::iterator SLiter;
2251 PropertyType PropType = PROPERTY_NONE;
2253 // Look for type before continuing.
2256 wxString TelTypeDetail;
2257 wxString PropertyData;
2258 wxString PropertyName;
2259 wxString PropertyValue;
2260 wxString PropertyTokens;
2262 std::map<int,int> TypeSplitPoints;
2263 std::map<int,int> TypeSplitLength;
2264 std::map<int,int>::iterator TSLiter;
2266 int intSplitSize = 0;
2267 int intSplitsFound = 0;
2268 int intSplitPoint = 0;
2270 int intPrevValue = 5;
2272 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2276 // Look for type before continuing.
2278 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2279 intiter != SplitPoints.end(); ++intiter){
2281 SLiter = SplitLength.find(intiter->first);
2283 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2285 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2286 PropertyName = PropertyElement.GetNextToken();
2287 PropertyValue = PropertyElement.GetNextToken();
2289 intPrevValue = intiter->second;
2291 if (PropertyName == wxT("TYPE")){
2293 // Process each value in type and translate each
2296 // Strip out the quotes if they are there.
2298 size_t intPropertyValueLen = PropertyValue.Len();
2300 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2302 PropertyValue.Trim();
2303 PropertyValue.RemoveLast();
2307 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2309 PropertyValue.Remove(0, 1);
2313 TelTypeDetail = PropertyValue;
2319 for (int i = 0; i <= intPropertyValueLen; i++){
2323 if (PropertyValue.Mid(i, 1) == wxT(",") && PropertyValue.Mid((i - 1), 1) != wxT("\\")){
2325 if (intSplitsFound == 0){
2327 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2328 TypeSplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
2332 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2333 TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
2346 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2347 TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
2349 int intTypeSeek = 0;
2351 for (std::map<int, int>::iterator typeiter = TypeSplitPoints.begin();
2352 typeiter != TypeSplitPoints.end(); ++typeiter){
2354 wxString TypePropertyName;
2356 TSLiter = TypeSplitLength.find(typeiter->first);
2358 TypePropertyName = PropertyValue.Mid(typeiter->second, TSLiter->second);
2360 if (intTypeSeek == 0){
2365 TelTypeUI.Append(wxT(","));
2369 if (TypePropertyName == wxT("home")){
2371 PropType = PROPERTY_HOME;
2373 } else if (TypePropertyName == wxT("work")){
2375 PropType = PROPERTY_WORK;
2380 if (TypePropertyName == wxT("text")){
2382 TelTypeUI.Append(_("text"));
2385 } else if (TypePropertyName == wxT("voice")){
2387 TelTypeUI.Append(_("voice"));
2390 } else if (TypePropertyName == wxT("fax")){
2392 TelTypeUI.Append(_("fax"));
2395 } else if (TypePropertyName == wxT("cell")){
2397 TelTypeUI.Append(_("mobile"));
2400 } else if (TypePropertyName == wxT("video")){
2402 TelTypeUI.Append(_("video"));
2405 } else if (TypePropertyName == wxT("pager")){
2407 TelTypeUI.Append(_("pager"));
2410 } else if (TypePropertyName == wxT("textphone")){
2412 TelTypeUI.Append(_("textphone"));
2423 std::map<int, wxString> *TelephoneList = NULL;
2424 std::map<int, wxString> *TelephoneListType = NULL;
2425 std::map<int, wxString> *TelephoneListAltID = NULL;
2426 std::map<int, wxString> *TelephoneListPID = NULL;
2427 std::map<int, wxString> *TelephoneListTokens = NULL;
2428 std::map<int, wxString> *TelephoneListTypeInfo = NULL;
2429 std::map<int, int> *TelephoneListPref = NULL;
2433 TelephoneList = &GeneralTelephoneList;
2434 TelephoneListType = &GeneralTelephoneListType;
2435 TelephoneListAltID = &GeneralTelephoneListAltID;
2436 TelephoneListPID = &GeneralTelephoneListPID;
2437 TelephoneListTokens = &GeneralTelephoneListTokens;
2438 TelephoneListTypeInfo = &GeneralTelephoneListTypeInfo;
2439 TelephoneListPref = &GeneralTelephoneListPref;
2442 TelephoneList = &HomeTelephoneList;
2443 TelephoneListType = &HomeTelephoneListType;
2444 TelephoneListAltID = &HomeTelephoneListAltID;
2445 TelephoneListPID = &HomeTelephoneListPID;
2446 TelephoneListTokens = &HomeTelephoneListTokens;
2447 TelephoneListTypeInfo = &HomeTelephoneListTypeInfo;
2448 TelephoneListPref = &HomeTelephoneListPref;
2451 TelephoneList = &BusinessTelephoneList;
2452 TelephoneListType = &BusinessTelephoneListType;
2453 TelephoneListAltID = &BusinessTelephoneListAltID;
2454 TelephoneListPID = &BusinessTelephoneListPID;
2455 TelephoneListTokens = &BusinessTelephoneListTokens;
2456 TelephoneListTypeInfo = &BusinessTelephoneListTypeInfo;
2457 TelephoneListPref = &BusinessTelephoneListPref;
2461 // Process the properties.
2463 bool FirstToken = TRUE;
2466 SplitPoints.clear();
2467 SplitLength.clear();
2469 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2473 bool PropertyMatched = FALSE;
2475 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2476 intiter != SplitPoints.end(); ++intiter){
2478 SLiter = SplitLength.find(intiter->first);
2480 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2482 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2483 PropertyName = PropertyElement.GetNextToken();
2484 PropertyValue = PropertyElement.GetNextToken();
2486 intPrevValue = intiter->second;
2488 CaptureString(&PropertyValue, FALSE);
2490 // Process properties.
2492 ProcessStringValue(&PropertyName, "ALTID", TelephoneListAltID, &PropertyValue, TelephoneCount, &PropertyMatched);
2493 ProcessStringValue(&PropertyName, "PID", TelephoneListPID, &PropertyValue, TelephoneCount, &PropertyMatched);
2494 ProcessIntegerValue(&PropertyName, "PREF", TelephoneListPref, &PropertyValue, TelephoneCount, &PropertyMatched);
2496 if (PropertyMatched == TRUE){
2498 PropertyMatched = FALSE;
2503 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2505 if (FirstToken == TRUE){
2507 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2512 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2520 TelephoneList->insert(std::make_pair(*TelephoneCount, PropertySeg2));
2521 TelephoneListTypeInfo->insert(std::make_pair(*TelephoneCount, TelTypeUI));
2523 // Add the name token data.
2525 if (!PropertyTokens.IsEmpty()){
2527 TelephoneListTokens->insert(std::make_pair(*TelephoneCount, PropertyTokens));
2533 void ContactDataObject::ProcessLanguage(wxString PropertySeg1, wxString PropertySeg2, int *LanguageCount){
2535 std::map<int, int> SplitPoints;
2536 std::map<int, int> SplitLength;
2538 int intPrevValue = 6;
2541 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2545 PropertyType PropType = PROPERTY_NONE;
2547 // Look for type before continuing.
2549 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2551 std::map<int, wxString> *LanguageList = NULL;
2552 std::map<int, wxString> *LanguageListType = NULL;
2553 std::map<int, wxString> *LanguageListAltID = NULL;
2554 std::map<int, wxString> *LanguageListPID = NULL;
2555 std::map<int, wxString> *LanguageListTokens = NULL;
2556 std::map<int, int> *LanguageListPref = NULL;
2560 LanguageList = &GeneralLanguageList;
2561 LanguageListType = &GeneralLanguageListType;
2562 LanguageListAltID = &GeneralLanguageListAltID;
2563 LanguageListPID = &GeneralLanguageListPID;
2564 LanguageListTokens = &GeneralLanguageListTokens;
2565 LanguageListPref = &GeneralLanguageListPref;
2568 LanguageList = &HomeLanguageList;
2569 LanguageListType = &HomeLanguageListType;
2570 LanguageListAltID = &HomeLanguageListAltID;
2571 LanguageListPID = &HomeLanguageListPID;
2572 LanguageListTokens = &HomeLanguageListTokens;
2573 LanguageListPref = &HomeLanguageListPref;
2576 LanguageList = &BusinessLanguageList;
2577 LanguageListType = &BusinessLanguageListType;
2578 LanguageListAltID = &BusinessLanguageListAltID;
2579 LanguageListPID = &BusinessLanguageListPID;
2580 LanguageListTokens = &BusinessLanguageListTokens;
2581 LanguageListPref = &BusinessLanguageListPref;
2587 std::map<int,int>::iterator SLiter;
2588 wxString PropertyData;
2589 wxString PropertyName;
2590 wxString PropertyValue;
2591 wxString PropertyTokens;
2592 bool FirstToken = TRUE;
2593 bool PropertyMatched = FALSE;
2595 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2596 intiter != SplitPoints.end(); ++intiter){
2598 SLiter = SplitLength.find(intiter->first);
2600 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2602 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2603 PropertyName = PropertyElement.GetNextToken();
2604 PropertyValue = PropertyElement.GetNextToken();
2606 intPrevValue = intiter->second;
2608 CaptureString(&PropertyValue, FALSE);
2610 // Process properties.
2612 ProcessStringValue(&PropertyName, "ALTID", LanguageListAltID, &PropertyValue, LanguageCount, &PropertyMatched);
2613 ProcessStringValue(&PropertyName, "PID", LanguageListPID, &PropertyValue, LanguageCount, &PropertyMatched);
2614 ProcessIntegerValue(&PropertyName, "PREF", LanguageListPref, &PropertyValue, LanguageCount, &PropertyMatched);
2616 if (PropertyMatched == TRUE){
2618 PropertyMatched = FALSE;
2623 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2625 if (FirstToken == TRUE){
2627 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2632 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2640 LanguageList->insert(std::make_pair(*LanguageCount, PropertySeg2));
2642 // Add the name token data.
2644 if (!PropertyTokens.IsEmpty()){
2646 LanguageListTokens->insert(std::make_pair(*LanguageCount, PropertyTokens));
2652 void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString PropertySeg2, int *GeographicCount){
2654 std::map<int, int> SplitPoints;
2655 std::map<int, int> SplitLength;
2657 int intPrevValue = 5;
2660 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2664 PropertyType PropType = PROPERTY_NONE;
2666 // Look for type before continuing.
2668 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2670 std::map<int, wxString> *GeopositionList = NULL;
2671 std::map<int, wxString> *GeopositionListType = NULL;
2672 std::map<int, wxString> *GeopositionListAltID = NULL;
2673 std::map<int, wxString> *GeopositionListPID = NULL;
2674 std::map<int, wxString> *GeopositionListTokens = NULL;
2675 std::map<int, wxString> *GeopositionListMediatype = NULL;
2676 std::map<int, int> *GeopositionListPref = NULL;
2680 GeopositionList = &GeneralGeographyList;
2681 GeopositionListType = &GeneralGeographyListType;
2682 GeopositionListAltID = &GeneralGeographyListAltID;
2683 GeopositionListPID = &GeneralGeographyListPID;
2684 GeopositionListTokens = &GeneralGeographyListTokens;
2685 GeopositionListMediatype = &GeneralGeographyListMediatype;
2686 GeopositionListPref = &GeneralGeographyListPref;
2689 GeopositionList = &HomeGeographyList;
2690 GeopositionListType = &HomeGeographyListType;
2691 GeopositionListAltID = &HomeGeographyListAltID;
2692 GeopositionListPID = &HomeGeographyListPID;
2693 GeopositionListTokens = &HomeGeographyListTokens;
2694 GeopositionListMediatype = &HomeGeographyListMediatype;
2695 GeopositionListPref = &HomeGeographyListPref;
2698 GeopositionList = &BusinessGeographyList;
2699 GeopositionListType = &BusinessGeographyListType;
2700 GeopositionListAltID = &BusinessGeographyListAltID;
2701 GeopositionListPID = &BusinessGeographyListPID;
2702 GeopositionListTokens = &BusinessGeographyListTokens;
2703 GeopositionListMediatype = &BusinessGeographyListMediatype;
2704 GeopositionListPref = &BusinessGeographyListPref;
2710 std::map<int,int>::iterator SLiter;
2711 wxString PropertyData;
2712 wxString PropertyName;
2713 wxString PropertyValue;
2714 wxString PropertyTokens;
2715 bool FirstToken = TRUE;
2717 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2718 intiter != SplitPoints.end(); ++intiter){
2720 SLiter = SplitLength.find(intiter->first);
2722 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2724 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2725 PropertyName = PropertyElement.GetNextToken();
2726 PropertyValue = PropertyElement.GetNextToken();
2728 intPrevValue = intiter->second;
2730 CaptureString(&PropertyValue, FALSE);
2732 // Process properties.
2734 if (PropertyName == wxT("ALTID")){
2736 GeopositionListAltID->erase(*GeographicCount);
2737 GeopositionListAltID->insert(std::make_pair(*GeographicCount, PropertyValue));
2739 } else if (PropertyName == wxT("PID")){
2741 GeopositionListPID->erase(*GeographicCount);
2742 GeopositionListPID->insert(std::make_pair(*GeographicCount, PropertyValue));
2744 } else if (PropertyName == wxT("MEDIATYPE")){
2746 GeopositionListMediatype->erase(*GeographicCount);
2747 GeopositionListMediatype->insert(std::make_pair(*GeographicCount, PropertyValue));
2749 } else if (PropertyName == wxT("PREF")){
2751 ProcessIntegerValue(GeopositionListPref, &PropertyValue, GeographicCount);
2755 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2757 if (FirstToken == TRUE){
2759 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
2764 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
2774 GeopositionList->insert(std::make_pair(*GeographicCount, PropertySeg2));
2776 // Add the name token data.
2778 if (!PropertyTokens.IsEmpty()){
2780 GeopositionListTokens->insert(std::make_pair(*GeographicCount, PropertyTokens));
2786 void ContactDataObject::ProcessRelated(wxString PropertySeg1, wxString PropertySeg2, int *RelatedCount){
2788 size_t intPropertyLen = PropertySeg1.Len();
2789 std::map<int, int> SplitPoints;
2790 std::map<int, int> SplitLength;
2791 std::map<int, int>::iterator SLiter;
2792 wxString PropertyData;
2793 wxString PropertyName;
2794 wxString PropertyValue;
2795 wxString PropertyTokens;
2796 wxString RelatedType;
2797 wxString RelatedTypeOriginal;
2798 wxString RelatedName;
2799 bool FirstToken = TRUE;
2800 int intSplitsFound = 0;
2801 int intSplitSize = 0;
2802 int intPrevValue = 9;
2806 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2810 // Look for type before continuing.
2812 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2813 intiter != SplitPoints.end(); ++intiter){
2815 SLiter = SplitLength.find(intiter->first);
2817 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2819 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2820 PropertyName = PropertyElement.GetNextToken();
2821 PropertyValue = PropertyElement.GetNextToken();
2823 intPrevValue = intiter->second;
2827 RelatedTypeOriginal = PropertyValue;
2829 if (PropertyName == wxT("TYPE")){
2831 if (PropertyValue == wxT("contact")){
2833 RelatedType = _("Contact");
2835 } else if (PropertyValue == wxT("acquaintance")){
2837 RelatedType = _("Acquaintance");
2839 } else if (PropertyValue == wxT("friend")){
2841 RelatedType = _("Friend");
2843 } else if (PropertyValue == wxT("met")){
2845 RelatedType = _("Met");
2847 } else if (PropertyValue == wxT("co-worker")){
2849 RelatedType = _("Co-worker");
2851 } else if (PropertyValue == wxT("colleague")){
2853 RelatedType = _("Colleague");
2855 } else if (PropertyValue == wxT("co-resident")){
2857 RelatedType = _("Co-resident");
2859 } else if (PropertyValue == wxT("neighbor")){
2861 RelatedType = _("Neighbour");
2863 } else if (PropertyValue == wxT("child")){
2865 RelatedType = _("Child");
2867 } else if (PropertyValue == wxT("parent")){
2869 RelatedType = _("Parent");
2871 } else if (PropertyValue == wxT("sibling")){
2873 RelatedType = _("Sibling");
2875 } else if (PropertyValue == wxT("spouse")){
2877 RelatedType = _("Spouse");
2879 } else if (PropertyValue == wxT("kin")){
2881 RelatedType = _("Kin");
2883 } else if (PropertyValue == wxT("muse")){
2885 RelatedType = _("Muse");
2887 } else if (PropertyValue == wxT("crush")){
2889 RelatedType = _("Crush");
2891 } else if (PropertyValue == wxT("date")){
2893 RelatedType = _("Date");
2895 } else if (PropertyValue == wxT("sweetheart")){
2897 RelatedType = _("Sweetheart");
2899 } else if (PropertyValue == wxT("me")){
2901 RelatedType = _("Me");
2903 } else if (PropertyValue == wxT("agent")){
2905 RelatedType = _("Agent");
2907 } else if (PropertyValue == wxT("emergency")){
2909 RelatedType = _("Emergency");
2913 RelatedType = PropertyValue;
2923 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
2924 intiter != SplitPoints.end(); ++intiter){
2926 SLiter = SplitLength.find(intiter->first);
2928 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2930 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
2931 PropertyName = PropertyElement.GetNextToken();
2932 PropertyValue = PropertyElement.GetNextToken();
2934 intPrevValue = intiter->second;
2936 // Process properties.
2938 size_t intPropertyValueLen = PropertyValue.Len();
2940 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2942 PropertyValue.Trim();
2943 PropertyValue.RemoveLast();
2947 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2949 PropertyValue.Remove(0, 1);
2953 CaptureString(&PropertyValue, FALSE);
2955 if (PropertyName == wxT("ALTID")){
2957 GeneralRelatedListAltID.erase(*RelatedCount);
2958 GeneralRelatedListAltID.insert(std::make_pair(*RelatedCount, PropertyValue));
2960 } else if (PropertyName == wxT("PID")){
2962 GeneralRelatedListPID.erase(*RelatedCount);
2963 GeneralRelatedListPID.insert(std::make_pair(*RelatedCount, PropertyValue));
2965 } else if (PropertyName == wxT("PREF")){
2967 int PriorityNumber = 0;
2968 bool ValidNumber = TRUE;
2971 PriorityNumber = std::stoi(PropertyValue.ToStdString());
2974 catch(std::invalid_argument &e){
2975 ValidNumber = FALSE;
2978 if (ValidNumber == TRUE){
2980 GeneralRelatedListPref.erase(*RelatedCount);
2981 GeneralRelatedListPref.insert(std::make_pair(*RelatedCount, PriorityNumber));
2985 } else if (PropertyName == wxT("LANGUAGE")){
2987 ProcessIntegerValue(&GeneralRelatedListPref, &PropertyValue, RelatedCount);
2989 } else if (PropertyName != wxT("TYPE")) {
2991 // Something else we don't know about so append
2992 // to the tokens variable.
2994 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
2996 if (FirstToken == TRUE){
2998 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3003 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3013 // Add the data to the General/Home/Work address variables.
3015 GeneralRelatedList.erase(*RelatedCount);
3016 GeneralRelatedListRelType.erase(*RelatedCount);
3017 GeneralRelatedListType.erase(*RelatedCount);
3018 GeneralRelatedListTokens.erase(*RelatedCount);
3019 GeneralRelatedList.insert(std::make_pair(*RelatedCount, PropertySeg2));
3020 GeneralRelatedListRelType.insert(std::make_pair(*RelatedCount, RelatedType));
3021 GeneralRelatedListType.insert(std::make_pair(*RelatedCount, RelatedType));
3022 GeneralRelatedListTokens.insert(std::make_pair(*RelatedCount, PropertyTokens));
3026 void ContactDataObject::ProcessURL(wxString PropertySeg1, wxString PropertySeg2, int *URLCount){
3028 std::map<int, int> SplitPoints;
3029 std::map<int, int> SplitLength;
3030 std::map<int, int>::iterator SLiter;
3031 wxString PropertyData;
3032 wxString PropertyName;
3033 wxString PropertyValue;
3034 wxString PropertyTokens;
3035 bool FirstToken = TRUE;
3036 int intPrevValue = 5;
3041 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3045 PropertyType PropType = PROPERTY_NONE;
3047 // Look for type before continuing.
3049 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3051 // Setup the pointers.
3053 std::map<int, wxString> *WebsiteList = NULL;
3054 std::map<int, wxString> *WebsiteListAltID = NULL;
3055 std::map<int, wxString> *WebsiteListPID = NULL;
3056 std::map<int, wxString> *WebsiteListType = NULL;
3057 std::map<int, wxString> *WebsiteListTokens = NULL;
3058 std::map<int, wxString> *WebsiteListMediatype = NULL;
3059 std::map<int, int> *WebsiteListPref = NULL;
3061 // Setup blank lines for later on.
3065 WebsiteList = &GeneralWebsiteList;
3066 WebsiteListType = &GeneralWebsiteListType;
3067 WebsiteListAltID = &GeneralWebsiteListAltID;
3068 WebsiteListPID = &GeneralWebsiteListPID;
3069 WebsiteListTokens = &GeneralWebsiteListTokens;
3070 WebsiteListMediatype = &GeneralWebsiteListMediatype;
3071 WebsiteListPref = &GeneralWebsiteListPref;
3074 WebsiteList = &HomeWebsiteList;
3075 WebsiteListType = &HomeWebsiteListType;
3076 WebsiteListAltID = &HomeWebsiteListAltID;
3077 WebsiteListPID = &HomeWebsiteListPID;
3078 WebsiteListTokens = &HomeWebsiteListTokens;
3079 WebsiteListMediatype = &HomeWebsiteListMediatype;
3080 WebsiteListPref = &HomeWebsiteListPref;
3083 WebsiteList = &BusinessWebsiteList;
3084 WebsiteListType = &BusinessWebsiteListType;
3085 WebsiteListAltID = &BusinessWebsiteListAltID;
3086 WebsiteListPID = &BusinessWebsiteListPID;
3087 WebsiteListTokens = &BusinessWebsiteListTokens;
3088 WebsiteListMediatype = &BusinessWebsiteListMediatype;
3089 WebsiteListPref = &BusinessWebsiteListPref;
3095 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3096 intiter != SplitPoints.end(); ++intiter){
3098 SLiter = SplitLength.find(intiter->first);
3100 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3102 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3103 PropertyName = PropertyElement.GetNextToken();
3104 PropertyValue = PropertyElement.GetNextToken();
3106 intPrevValue = intiter->second;
3108 // Process properties.
3110 size_t intPropertyValueLen = PropertyValue.Len();
3112 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3114 PropertyValue.Trim();
3115 PropertyValue.RemoveLast();
3119 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3121 PropertyValue.Remove(0, 1);
3125 CaptureString(&PropertyValue, FALSE);
3127 if (PropertyName == wxT("ALTID")){
3129 WebsiteListAltID->erase(*URLCount);
3130 WebsiteListAltID->insert(std::make_pair(*URLCount, PropertyValue));
3132 } else if (PropertyName == wxT("PID")){
3134 WebsiteListPID->erase(*URLCount);
3135 WebsiteListPID->insert(std::make_pair(*URLCount, PropertyValue));
3137 } else if (PropertyName == wxT("PREF")){
3139 ProcessIntegerValue(WebsiteListPref, &PropertyValue, URLCount);
3141 } else if (PropertyName == wxT("MEDIATYPE")){
3143 WebsiteListMediatype->erase(*URLCount);
3144 WebsiteListMediatype->insert(std::make_pair(*URLCount, PropertyValue));
3148 // Something else we don't know about so append
3149 // to the tokens variable.
3151 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3153 if (FirstToken == TRUE){
3155 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3160 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3170 // Add the data to the General/Home/Work address variables.
3172 CaptureString(&PropertySeg2, FALSE);
3174 WebsiteList->insert(std::make_pair(*URLCount, PropertySeg2));
3176 if (!PropertyTokens.IsEmpty()){
3178 WebsiteListTokens->insert(std::make_pair(*URLCount, PropertyTokens));
3184 void ContactDataObject::ProcessTitle(wxString PropertySeg1, wxString PropertySeg2, int *TitleCount){
3186 std::map<int, int> SplitPoints;
3187 std::map<int, int> SplitLength;
3188 std::map<int, int>::iterator SLiter;
3189 wxString PropertyData;
3190 wxString PropertyName;
3191 wxString PropertyValue;
3192 wxString PropertyTokens;
3193 bool FirstToken = TRUE;
3194 int intPrevValue = 7;
3199 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3203 PropertyType PropType = PROPERTY_NONE;
3205 // Look for type before continuing.
3207 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3209 // Setup the pointers.
3211 std::map<int, wxString> *TitleList = NULL;
3212 std::map<int, wxString> *TitleListAltID = NULL;
3213 std::map<int, wxString> *TitleListPID = NULL;
3214 std::map<int, wxString> *TitleListType = NULL;
3215 std::map<int, wxString> *TitleListTokens = NULL;
3216 std::map<int, wxString> *TitleListLanguage = NULL;
3217 std::map<int, int> *TitleListPref = NULL;
3219 // Setup blank lines for later on.
3223 TitleList = &GeneralTitleList;
3224 TitleListType = &GeneralTitleListType;
3225 TitleListAltID = &GeneralTitleListAltID;
3226 TitleListPID = &GeneralTitleListPID;
3227 TitleListTokens = &GeneralTitleListTokens;
3228 TitleListLanguage = &GeneralTitleListLanguage;
3229 TitleListPref = &GeneralTitleListPref;
3232 TitleList = &HomeTitleList;
3233 TitleListType = &HomeTitleListType;
3234 TitleListAltID = &HomeTitleListAltID;
3235 TitleListPID = &HomeTitleListPID;
3236 TitleListTokens = &HomeTitleListTokens;
3237 TitleListLanguage = &HomeTitleListLanguage;
3238 TitleListPref = &HomeTitleListPref;
3241 TitleList = &BusinessTitleList;
3242 TitleListType = &BusinessTitleListType;
3243 TitleListAltID = &BusinessTitleListAltID;
3244 TitleListPID = &BusinessTitleListPID;
3245 TitleListTokens = &BusinessTitleListTokens;
3246 TitleListLanguage = &BusinessTitleListLanguage;
3247 TitleListPref = &BusinessTitleListPref;
3253 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3254 intiter != SplitPoints.end(); ++intiter){
3256 SLiter = SplitLength.find(intiter->first);
3258 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3260 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3261 PropertyName = PropertyElement.GetNextToken();
3262 PropertyValue = PropertyElement.GetNextToken();
3264 intPrevValue = intiter->second;
3266 // Process properties.
3268 size_t intPropertyValueLen = PropertyValue.Len();
3270 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3272 PropertyValue.Trim();
3273 PropertyValue.RemoveLast();
3277 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3279 PropertyValue.Remove(0, 1);
3283 CaptureString(&PropertyValue, FALSE);
3285 if (PropertyName == wxT("ALTID")){
3287 TitleListAltID->erase(*TitleCount);
3288 TitleListAltID->insert(std::make_pair(*TitleCount, PropertyValue));
3290 } else if (PropertyName == wxT("PID")){
3292 TitleListPID->erase(*TitleCount);
3293 TitleListPID->insert(std::make_pair(*TitleCount, PropertyValue));
3295 } else if (PropertyName == wxT("PREF")){
3297 ProcessIntegerValue(TitleListPref, &PropertyValue, TitleCount);
3299 } else if (PropertyName == wxT("LANGUAGE")){
3301 TitleListLanguage->erase(*TitleCount);
3302 TitleListLanguage->insert(std::make_pair(*TitleCount, PropertyValue));
3306 // Something else we don't know about so append
3307 // to the tokens variable.
3309 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3311 if (FirstToken == TRUE){
3313 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3318 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3328 // Add the data to the General/Home/Work address variables.
3330 CaptureString(&PropertySeg2, FALSE);
3332 TitleList->insert(std::make_pair(*TitleCount, PropertySeg2));
3334 if (!PropertyTokens.IsEmpty()){
3336 TitleListTokens->insert(std::make_pair(*TitleCount, PropertyTokens));
3342 void ContactDataObject::ProcessRole(wxString PropertySeg1, wxString PropertySeg2, int *RoleCount){
3344 std::map<int, int> SplitPoints;
3345 std::map<int, int> SplitLength;
3346 std::map<int, int>::iterator SLiter;
3347 wxString PropertyData;
3348 wxString PropertyName;
3349 wxString PropertyValue;
3350 wxString PropertyTokens;
3351 bool FirstToken = TRUE;
3352 int intPrevValue = 6;
3357 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3361 PropertyType PropType = PROPERTY_NONE;
3363 // Look for type before continuing.
3365 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3367 // Setup the pointers.
3369 std::map<int, wxString> *RoleList = NULL;
3370 std::map<int, wxString> *RoleListAltID = NULL;
3371 std::map<int, wxString> *RoleListPID = NULL;
3372 std::map<int, wxString> *RoleListType = NULL;
3373 std::map<int, wxString> *RoleListTokens = NULL;
3374 std::map<int, wxString> *RoleListLanguage = NULL;
3375 std::map<int, int> *RoleListPref = NULL;
3377 // Setup blank lines for later on.
3381 RoleList = &GeneralRoleList;
3382 RoleListType = &GeneralRoleListType;
3383 RoleListAltID = &GeneralRoleListAltID;
3384 RoleListPID = &GeneralRoleListPID;
3385 RoleListTokens = &GeneralRoleListTokens;
3386 RoleListLanguage = &GeneralRoleListLanguage;
3387 RoleListPref = &GeneralRoleListPref;
3390 RoleList = &HomeRoleList;
3391 RoleListType = &HomeRoleListType;
3392 RoleListAltID = &HomeRoleListAltID;
3393 RoleListPID = &HomeRoleListPID;
3394 RoleListTokens = &HomeRoleListTokens;
3395 RoleListLanguage = &HomeRoleListLanguage;
3396 RoleListPref = &HomeRoleListPref;
3399 RoleList = &BusinessRoleList;
3400 RoleListType = &BusinessRoleListType;
3401 RoleListAltID = &BusinessRoleListAltID;
3402 RoleListPID = &BusinessRoleListPID;
3403 RoleListTokens = &BusinessRoleListTokens;
3404 RoleListLanguage = &BusinessRoleListLanguage;
3405 RoleListPref = &BusinessRoleListPref;
3411 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3412 intiter != SplitPoints.end(); ++intiter){
3414 SLiter = SplitLength.find(intiter->first);
3416 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3418 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3419 PropertyName = PropertyElement.GetNextToken();
3420 PropertyValue = PropertyElement.GetNextToken();
3422 intPrevValue = intiter->second;
3424 // Process properties.
3426 size_t intPropertyValueLen = PropertyValue.Len();
3428 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3430 PropertyValue.Trim();
3431 PropertyValue.RemoveLast();
3435 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3437 PropertyValue.Remove(0, 1);
3441 CaptureString(&PropertyValue, FALSE);
3443 if (PropertyName == wxT("ALTID")){
3445 RoleListAltID->erase(*RoleCount);
3446 RoleListAltID->insert(std::make_pair(*RoleCount, PropertyValue));
3448 } else if (PropertyName == wxT("PID")){
3450 RoleListPID->erase(*RoleCount);
3451 RoleListPID->insert(std::make_pair(*RoleCount, PropertyValue));
3453 } else if (PropertyName == wxT("PREF")){
3455 ProcessIntegerValue(RoleListPref, &PropertyValue, RoleCount);
3457 } else if (PropertyName == wxT("LANGUAGE")){
3459 RoleListLanguage->erase(*RoleCount);
3460 RoleListLanguage->insert(std::make_pair(*RoleCount, PropertyValue));
3464 // Something else we don't know about so append
3465 // to the tokens variable.
3467 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3469 if (FirstToken == TRUE){
3471 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3476 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3486 // Add the data to the General/Home/Work address variables.
3488 CaptureString(&PropertySeg2, FALSE);
3490 RoleList->insert(std::make_pair(*RoleCount, PropertySeg2));
3492 if (!PropertyTokens.IsEmpty()){
3494 RoleListTokens->insert(std::make_pair(*RoleCount, PropertyTokens));
3500 void ContactDataObject::ProcessOrganisation(wxString PropertySeg1, wxString PropertySeg2, int *OrganisationCount){
3502 std::map<int, int> SplitPoints;
3503 std::map<int, int> SplitLength;
3504 std::map<int, int>::iterator SLiter;
3505 wxString PropertyData;
3506 wxString PropertyName;
3507 wxString PropertyValue;
3508 wxString PropertyTokens;
3509 bool FirstToken = TRUE;
3510 int intPrevValue = 5;
3515 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3519 PropertyType PropType = PROPERTY_NONE;
3521 // Look for type before continuing.
3523 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3525 // Setup the pointers.
3527 std::map<int, wxString> *OrganisationsList = NULL;
3528 std::map<int, wxString> *OrganisationsListAltID = NULL;
3529 std::map<int, wxString> *OrganisationsListPID = NULL;
3530 std::map<int, wxString> *OrganisationsListType = NULL;
3531 std::map<int, wxString> *OrganisationsListTokens = NULL;
3532 std::map<int, wxString> *OrganisationsListLanguage = NULL;
3533 std::map<int, wxString> *OrganisationsListSortAs = NULL;
3534 std::map<int, int> *OrganisationsListPref = NULL;
3536 // Setup blank lines for later on.
3540 OrganisationsList = &GeneralOrganisationsList;
3541 OrganisationsListType = &GeneralOrganisationsListType;
3542 OrganisationsListAltID = &GeneralOrganisationsListAltID;
3543 OrganisationsListPID = &GeneralOrganisationsListPID;
3544 OrganisationsListTokens = &GeneralOrganisationsListTokens;
3545 OrganisationsListLanguage = &GeneralOrganisationsListLanguage;
3546 OrganisationsListSortAs = &GeneralOrganisationsListSortAs;
3547 OrganisationsListPref = &GeneralOrganisationsListPref;
3550 OrganisationsList = &HomeOrganisationsList;
3551 OrganisationsListType = &HomeOrganisationsListType;
3552 OrganisationsListAltID = &HomeOrganisationsListAltID;
3553 OrganisationsListPID = &HomeOrganisationsListPID;
3554 OrganisationsListTokens = &HomeOrganisationsListTokens;
3555 OrganisationsListLanguage = &HomeOrganisationsListLanguage;
3556 OrganisationsListSortAs = &HomeOrganisationsListSortAs;
3557 OrganisationsListPref = &HomeOrganisationsListPref;
3560 OrganisationsList = &BusinessOrganisationsList;
3561 OrganisationsListType = &BusinessOrganisationsListType;
3562 OrganisationsListAltID = &BusinessOrganisationsListAltID;
3563 OrganisationsListPID = &BusinessOrganisationsListPID;
3564 OrganisationsListTokens = &BusinessOrganisationsListTokens;
3565 OrganisationsListLanguage = &BusinessOrganisationsListLanguage;
3566 OrganisationsListSortAs = &BusinessOrganisationsListSortAs;
3567 OrganisationsListPref = &BusinessOrganisationsListPref;
3573 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3574 intiter != SplitPoints.end(); ++intiter){
3576 SLiter = SplitLength.find(intiter->first);
3578 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3580 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3581 PropertyName = PropertyElement.GetNextToken();
3582 PropertyValue = PropertyElement.GetNextToken();
3584 intPrevValue = intiter->second;
3586 // Process properties.
3588 size_t intPropertyValueLen = PropertyValue.Len();
3590 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3592 PropertyValue.Trim();
3593 PropertyValue.RemoveLast();
3597 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3599 PropertyValue.Remove(0, 1);
3603 CaptureString(&PropertyValue, FALSE);
3605 if (PropertyName == wxT("ALTID")){
3607 OrganisationsListAltID->erase(*OrganisationCount);
3608 OrganisationsListAltID->insert(std::make_pair(*OrganisationCount, PropertyValue));
3610 } else if (PropertyName == wxT("PID")){
3612 OrganisationsListPID->erase(*OrganisationCount);
3613 OrganisationsListPID->insert(std::make_pair(*OrganisationCount, PropertyValue));
3615 } else if (PropertyName == wxT("SORT-AS")){
3617 OrganisationsListSortAs->erase(*OrganisationCount);
3618 OrganisationsListSortAs->insert(std::make_pair(*OrganisationCount, PropertyValue));
3620 } else if (PropertyName == wxT("PREF")){
3622 ProcessIntegerValue(OrganisationsListPref, &PropertyValue, OrganisationCount);
3624 } else if (PropertyName == wxT("LANGUAGE")){
3626 OrganisationsListLanguage->erase(*OrganisationCount);
3627 OrganisationsListLanguage->insert(std::make_pair(*OrganisationCount, PropertyValue));
3631 // Something else we don't know about so append
3632 // to the tokens variable.
3634 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3636 if (FirstToken == TRUE){
3638 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3643 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3653 // Add the data to the General/Home/Work address variables.
3655 CaptureString(&PropertySeg2, FALSE);
3657 OrganisationsList->insert(std::make_pair(*OrganisationCount, PropertySeg2));
3659 if (!PropertyTokens.IsEmpty()){
3661 OrganisationsListTokens->insert(std::make_pair(*OrganisationCount, PropertyTokens));
3667 void ContactDataObject::ProcessNote(wxString PropertySeg1, wxString PropertySeg2, int *NoteCount){
3669 std::map<int, int> SplitPoints;
3670 std::map<int, int> SplitLength;
3671 std::map<int, int>::iterator SLiter;
3672 wxString PropertyData;
3673 wxString PropertyName;
3674 wxString PropertyValue;
3675 wxString PropertyTokens;
3676 bool FirstToken = TRUE;
3677 int intPrevValue = 6;
3682 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3686 PropertyType PropType = PROPERTY_NONE;
3688 // Look for type before continuing.
3690 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3692 // Setup the pointers.
3694 std::map<int, wxString> *NoteList = NULL;
3695 std::map<int, wxString> *NoteListAltID = NULL;
3696 std::map<int, wxString> *NoteListPID = NULL;
3697 std::map<int, wxString> *NoteListType = NULL;
3698 std::map<int, wxString> *NoteListTokens = NULL;
3699 std::map<int, wxString> *NoteListLanguage = NULL;
3700 std::map<int, int> *NoteListPref = NULL;
3702 // Setup blank lines for later on.
3706 NoteList = &GeneralNoteList;
3707 NoteListType = &GeneralNoteListType;
3708 NoteListAltID = &GeneralNoteListAltID;
3709 NoteListPID = &GeneralNoteListPID;
3710 NoteListTokens = &GeneralNoteListTokens;
3711 NoteListLanguage = &GeneralNoteListLanguage;
3712 NoteListPref = &GeneralNoteListPref;
3715 NoteList = &HomeNoteList;
3716 NoteListType = &HomeNoteListType;
3717 NoteListAltID = &HomeNoteListAltID;
3718 NoteListPID = &HomeNoteListPID;
3719 NoteListTokens = &HomeNoteListTokens;
3720 NoteListLanguage = &HomeNoteListLanguage;
3721 NoteListPref = &HomeNoteListPref;
3724 NoteList = &BusinessNoteList;
3725 NoteListType = &BusinessNoteListType;
3726 NoteListAltID = &BusinessNoteListAltID;
3727 NoteListPID = &BusinessNoteListPID;
3728 NoteListTokens = &BusinessNoteListTokens;
3729 NoteListLanguage = &BusinessNoteListLanguage;
3730 NoteListPref = &BusinessNoteListPref;
3736 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3737 intiter != SplitPoints.end(); ++intiter){
3739 SLiter = SplitLength.find(intiter->first);
3741 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3743 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3744 PropertyName = PropertyElement.GetNextToken();
3745 PropertyValue = PropertyElement.GetNextToken();
3747 intPrevValue = intiter->second;
3749 // Process properties.
3751 size_t intPropertyValueLen = PropertyValue.Len();
3753 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3755 PropertyValue.Trim();
3756 PropertyValue.RemoveLast();
3760 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3762 PropertyValue.Remove(0, 1);
3766 CaptureString(&PropertyValue, FALSE);
3768 if (PropertyName == wxT("ALTID")){
3770 NoteListAltID->erase(*NoteCount);
3771 NoteListAltID->insert(std::make_pair(*NoteCount, PropertyValue));
3773 } else if (PropertyName == wxT("PID")){
3775 NoteListPID->erase(*NoteCount);
3776 NoteListPID->insert(std::make_pair(*NoteCount, PropertyValue));
3778 } else if (PropertyName == wxT("PREF")){
3780 ProcessIntegerValue(NoteListPref, &PropertyValue, NoteCount);
3782 } else if (PropertyName == wxT("LANGUAGE")){
3784 NoteListLanguage->erase(*NoteCount);
3785 NoteListLanguage->insert(std::make_pair(*NoteCount, PropertyValue));
3789 // Something else we don't know about so append
3790 // to the tokens variable.
3792 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3794 if (FirstToken == TRUE){
3796 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3801 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3811 // Add the data to the General/Home/Work address variables.
3813 CaptureString(&PropertySeg2, FALSE);
3815 NoteList->insert(std::make_pair(*NoteCount, PropertySeg2));
3817 if (!PropertyTokens.IsEmpty()){
3819 NoteListTokens->insert(std::make_pair(*NoteCount, PropertyTokens));
3825 void ContactDataObject::ProcessCategory(wxString PropertySeg1, wxString PropertySeg2, int *CategoryCount){
3827 std::map<int, int> SplitPoints;
3828 std::map<int, int> SplitLength;
3829 std::map<int, int>::iterator SLiter;
3830 wxString PropertyData;
3831 wxString PropertyName;
3832 wxString PropertyValue;
3833 wxString PropertyTokens;
3834 bool FirstToken = TRUE;
3835 int intPrevValue = 12;
3840 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3844 PropertyType PropType = PROPERTY_NONE;
3846 // Look for type before continuing.
3848 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3850 // Setup blank lines for later on.
3856 CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
3859 CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
3865 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
3866 intiter != SplitPoints.end(); ++intiter){
3868 SLiter = SplitLength.find(intiter->first);
3870 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3872 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
3873 PropertyName = PropertyElement.GetNextToken();
3874 PropertyValue = PropertyElement.GetNextToken();
3876 intPrevValue = intiter->second;
3878 // Process properties.
3880 size_t intPropertyValueLen = PropertyValue.Len();
3882 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3884 PropertyValue.Trim();
3885 PropertyValue.RemoveLast();
3889 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3891 PropertyValue.Remove(0, 1);
3895 CaptureString(&PropertyValue, FALSE);
3897 if (PropertyName == wxT("ALTID")){
3899 CategoriesListAltID.erase(*CategoryCount);
3900 CategoriesListAltID.insert(std::make_pair(*CategoryCount, PropertyValue));
3902 } else if (PropertyName == wxT("PID")){
3904 CategoriesListPID.erase(*CategoryCount);
3905 CategoriesListPID.insert(std::make_pair(*CategoryCount, PropertyValue));
3907 } else if (PropertyName == wxT("PREF")){
3909 ProcessIntegerValue(&CategoriesListPref, &PropertyValue, CategoryCount);
3911 } else if (PropertyName == wxT("LANGUAGE")){
3913 CategoriesListLanguage.erase(*CategoryCount);
3914 CategoriesListLanguage.insert(std::make_pair(*CategoryCount, PropertyValue));
3918 // Something else we don't know about so append
3919 // to the tokens variable.
3921 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
3923 if (FirstToken == TRUE){
3925 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
3930 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
3940 // Deal with multiple categories.
3942 int intOrigCatCount = *CategoryCount;
3943 bool FirstCategoryProcessed = TRUE;
3944 bool AfterFirstToken = FALSE;
3945 int intSplitSize = 0;
3946 int intSplitsFound = 0;
3947 int intSplitSeek = 0;
3948 int intPropertyLen = PropertySeg2.Len();
3950 SplitPoints.clear();
3951 SplitLength.clear();
3954 for (int i = 0; i <= intPropertyLen; i++){
3956 if (intSplitSize == 0 && PropertySeg2.Mid(i, 1) == wxT(" ")){
3964 if (PropertySeg2.Mid(i, 1) == wxT(",") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
3966 if (AfterFirstToken == TRUE){
3968 SplitPoints.insert(std::make_pair(intSplitsFound, (i - intSplitSize + 1)));
3969 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));
3973 SplitPoints.insert(std::make_pair(intSplitsFound, 0));
3974 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));
3975 AfterFirstToken = TRUE;
3987 if (SplitPoints.size() > 0){
3989 SplitPoints.insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
3990 SplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
3994 if (SplitPoints.size() == 0){
3996 CategoriesList.insert(std::make_pair(*CategoryCount, PropertySeg2));
3998 if (!PropertyTokens.IsEmpty()){
4000 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4006 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4007 intiter != SplitPoints.end(); ++intiter){
4009 SLiter = SplitLength.find(intiter->first);
4011 intPrevValue = intiter->second;
4013 PropertyData = PropertySeg2.Mid(intPrevValue, (SLiter->second + 1));
4015 // Add the data to the General/Home/Work address variables.
4017 // Trim any whitespace from the start and end.
4019 PropertyData = PropertyData.Trim(FALSE);
4020 PropertyData = PropertyData.Trim(TRUE);
4022 CaptureString(&PropertyData, FALSE);
4024 if (FirstCategoryProcessed == TRUE){
4026 FirstCategoryProcessed = FALSE;
4028 CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
4030 if (!PropertyTokens.IsEmpty()){
4032 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4042 CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
4044 if (!PropertyTokens.IsEmpty()){
4046 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
4052 // Copy the properties to each of the categories (if it exists).
4054 if (!PropertyTokens.IsEmpty()){
4056 CategoriesListTokens.insert(std::make_pair(*CategoryCount, CategoriesListTokens.find(intOrigCatCount)->second));
4060 // Check if ALTID was used.
4062 if (CategoriesListAltID.find(intOrigCatCount) != CategoriesListAltID.end()){
4064 CategoriesListAltID.insert(std::make_pair(*CategoryCount, CategoriesListAltID.find(intOrigCatCount)->second));
4068 // Check if PID was used.
4070 if (CategoriesListPID.find(intOrigCatCount) != CategoriesListPID.end()){
4072 CategoriesListPID.insert(std::make_pair(*CategoryCount, CategoriesListPID.find(intOrigCatCount)->second));
4076 // Check if PREF was used.
4078 if (CategoriesListPref.find(intOrigCatCount) != CategoriesListPref.end()){
4080 CategoriesListPref.insert(std::make_pair(*CategoryCount, CategoriesListPref.find(intOrigCatCount)->second));
4084 // Check if LANGUAGE was used.
4086 if (CategoriesListLanguage.find(intOrigCatCount) != CategoriesListLanguage.end()){
4088 CategoriesListLanguage.insert(std::make_pair(*CategoryCount, CategoriesListLanguage.find(intOrigCatCount)->second));
4092 // Check if TYPE was used.
4098 CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
4101 CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
4109 void ContactDataObject::ProcessPhoto(wxString PropertySeg1, wxString PropertySeg2, int *PhotoCount){
4111 size_t intPropertyLen = PropertySeg1.Len();
4112 std::map<int, int> SplitPoints;
4113 std::map<int, int> SplitLength;
4114 std::map<int, int>::iterator SLiter;
4115 wxString PropertyData;
4116 wxString PropertyName;
4117 wxString PropertyValue;
4118 wxString PropertyTokens;
4119 bool FirstToken = TRUE;
4120 int intSplitsFound = 0;
4121 int intSplitSize = 0;
4122 int intPrevValue = 7;
4126 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4130 PropertyType PropType = PROPERTY_NONE;
4132 // Look for type before continuing.
4134 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4138 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4139 intiter != SplitPoints.end(); ++intiter){
4141 SLiter = SplitLength.find(intiter->first);
4143 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4145 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4146 PropertyName = PropertyElement.GetNextToken();
4147 PropertyValue = PropertyElement.GetNextToken();
4149 intPrevValue = intiter->second;
4151 // Process properties.
4153 size_t intPropertyValueLen = PropertyValue.Len();
4155 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4157 PropertyValue.Trim();
4158 PropertyValue.RemoveLast();
4162 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4164 PropertyValue.Remove(0, 1);
4168 CaptureString(&PropertyValue, FALSE);
4170 if (PropertyName == wxT("ALTID")){
4172 PicturesListAltID.erase(*PhotoCount);
4173 PicturesListAltID.insert(std::make_pair(*PhotoCount, PropertyValue));
4175 } else if (PropertyName == wxT("PID")){
4177 PicturesListPID.erase(*PhotoCount);
4178 PicturesListPID.insert(std::make_pair(*PhotoCount, PropertyValue));
4180 } else if (PropertyName == wxT("PREF")){
4182 ProcessIntegerValue(&PicturesListPref, &PropertyValue, PhotoCount);
4184 } else if (PropertyName == wxT("MEDIATYPE")){
4186 PicturesListMediatype.erase(*PhotoCount);
4187 PicturesListMediatype.insert(std::make_pair(*PhotoCount, PropertyValue));
4191 // Something else we don't know about so append
4192 // to the tokens variable.
4194 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4196 if (FirstToken == TRUE){
4198 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4203 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4213 intPropertyLen = PropertySeg2.Len();
4214 SplitPoints.clear();
4215 SplitLength.clear();
4220 CaptureString(&PropertySeg2, FALSE);
4222 for (int i = 0; i <= intPropertyLen; i++){
4226 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4229 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4231 if (intSplitsFound == 6){
4233 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4238 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4248 wxString wxSPhotoURI;
4249 wxString wxSPhotoMIME;
4250 wxString wxSPhotoEncoding;
4251 wxString wxSPhotoData;
4252 std::string base64enc;
4254 if (intSplitsFound == 0){
4258 std::map<int, int>::iterator striter;
4260 striter = SplitLength.find(1);
4262 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4264 while (wSTDataType.HasMoreTokens() == TRUE){
4266 wxSPhotoURI = wSTDataType.GetNextToken();
4267 wxSPhotoMIME = wSTDataType.GetNextToken();
4272 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4274 while (wSTDataInfo.HasMoreTokens() == TRUE){
4276 wxSPhotoEncoding = wSTDataInfo.GetNextToken();
4277 wxSPhotoData = wSTDataInfo.GetNextToken();
4278 base64enc = wxSPhotoData.mb_str();
4285 // Add the data to the General/Home/Work address variables.
4287 PicturesList.insert(std::make_pair(*PhotoCount, base64enc));
4288 PicturesListPictureType.insert(std::make_pair(*PhotoCount, wxSPhotoMIME));
4289 PicturesListPicEncType.insert(std::make_pair(*PhotoCount, wxSPhotoEncoding));
4295 PicturesListType.insert(std::make_pair(*PhotoCount, "home"));
4298 PicturesListType.insert(std::make_pair(*PhotoCount, "work"));
4302 if (!PropertyTokens.IsEmpty()){
4304 PicturesListTokens.insert(std::make_pair(*PhotoCount, PropertyTokens));
4310 void ContactDataObject::ProcessLogo(wxString PropertySeg1, wxString PropertySeg2, int *LogoCount){
4312 size_t intPropertyLen = PropertySeg1.Len();
4313 std::map<int, int> SplitPoints;
4314 std::map<int, int> SplitLength;
4315 std::map<int, int>::iterator SLiter;
4316 wxString PropertyData;
4317 wxString PropertyName;
4318 wxString PropertyValue;
4319 wxString PropertyTokens;
4320 bool FirstToken = TRUE;
4321 int intSplitsFound = 0;
4322 int intSplitSize = 0;
4323 int intPrevValue = 6;
4327 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4331 PropertyType PropType = PROPERTY_NONE;
4333 // Look for type before continuing.
4335 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4339 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4340 intiter != SplitPoints.end(); ++intiter){
4342 SLiter = SplitLength.find(intiter->first);
4344 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4346 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4347 PropertyName = PropertyElement.GetNextToken();
4348 PropertyValue = PropertyElement.GetNextToken();
4350 intPrevValue = intiter->second;
4352 // Process properties.
4354 size_t intPropertyValueLen = PropertyValue.Len();
4356 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4358 PropertyValue.Trim();
4359 PropertyValue.RemoveLast();
4363 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4365 PropertyValue.Remove(0, 1);
4369 CaptureString(&PropertyValue, FALSE);
4371 if (PropertyName == wxT("ALTID")){
4373 LogosListAltID.erase(*LogoCount);
4374 LogosListAltID.insert(std::make_pair(*LogoCount, PropertyValue));
4376 } else if (PropertyName == wxT("PID")){
4378 LogosListPID.erase(*LogoCount);
4379 LogosListPID.insert(std::make_pair(*LogoCount, PropertyValue));
4381 } else if (PropertyName == wxT("PREF")){
4383 ProcessIntegerValue(&LogosListPref, &PropertyValue, LogoCount);
4385 } else if (PropertyName == wxT("MEDIATYPE")){
4387 LogosListMediatype.erase(*LogoCount);
4388 LogosListMediatype.insert(std::make_pair(*LogoCount, PropertyValue));
4392 // Something else we don't know about so append
4393 // to the tokens variable.
4395 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4397 if (FirstToken == TRUE){
4399 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4404 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4414 intPropertyLen = PropertySeg2.Len();
4415 SplitPoints.clear();
4416 SplitLength.clear();
4421 CaptureString(&PropertySeg2, FALSE);
4423 for (int i = 0; i <= intPropertyLen; i++){
4427 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4430 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4432 if (intSplitsFound == 6){
4434 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4439 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4449 wxString wxSPhotoURI;
4450 wxString wxSPhotoMIME;
4451 wxString wxSPhotoEncoding;
4452 wxString wxSPhotoData;
4453 std::string base64enc;
4455 if (intSplitsFound == 0){
4459 std::map<int, int>::iterator striter;
4461 striter = SplitLength.find(1);
4463 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4465 while (wSTDataType.HasMoreTokens() == TRUE){
4467 wxSPhotoURI = wSTDataType.GetNextToken();
4468 wxSPhotoMIME = wSTDataType.GetNextToken();
4473 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4475 while (wSTDataInfo.HasMoreTokens() == TRUE){
4477 wxSPhotoEncoding = wSTDataInfo.GetNextToken();
4478 wxSPhotoData = wSTDataInfo.GetNextToken();
4479 base64enc = wxSPhotoData.mb_str();
4486 // Add the data to the General/Home/Work address variables.
4488 LogosList.insert(std::make_pair(*LogoCount, base64enc));
4489 LogosListPictureType.insert(std::make_pair(*LogoCount, wxSPhotoMIME));
4490 LogosListPicEncType.insert(std::make_pair(*LogoCount, wxSPhotoEncoding));
4496 LogosListType.insert(std::make_pair(*LogoCount, "home"));
4499 LogosListType.insert(std::make_pair(*LogoCount, "work"));
4503 if (!PropertyTokens.IsEmpty()){
4505 LogosListTokens.insert(std::make_pair(*LogoCount, PropertyTokens));
4511 void ContactDataObject::ProcessSound(wxString PropertySeg1, wxString PropertySeg2, int *SoundCount){
4513 size_t intPropertyLen = PropertySeg1.Len();
4514 std::map<int, int> SplitPoints;
4515 std::map<int, int> SplitLength;
4516 std::map<int, int>::iterator SLiter;
4517 wxString PropertyData;
4518 wxString PropertyName;
4519 wxString PropertyValue;
4520 wxString PropertyTokens;
4521 bool FirstToken = TRUE;
4522 int intSplitsFound = 0;
4523 int intSplitSize = 0;
4524 int intPrevValue = 7;
4528 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4532 PropertyType PropType = PROPERTY_NONE;
4534 // Look for type before continuing.
4536 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4540 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4541 intiter != SplitPoints.end(); ++intiter){
4543 SLiter = SplitLength.find(intiter->first);
4545 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4547 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4548 PropertyName = PropertyElement.GetNextToken();
4549 PropertyValue = PropertyElement.GetNextToken();
4551 intPrevValue = intiter->second;
4553 // Process properties.
4555 size_t intPropertyValueLen = PropertyValue.Len();
4557 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4559 PropertyValue.Trim();
4560 PropertyValue.RemoveLast();
4564 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4566 PropertyValue.Remove(0, 1);
4570 CaptureString(&PropertyValue, FALSE);
4572 if (PropertyName == wxT("ALTID")){
4574 SoundsListAltID.erase(*SoundCount);
4575 SoundsListAltID.insert(std::make_pair(*SoundCount, PropertyValue));
4577 } else if (PropertyName == wxT("PID")){
4579 SoundsListPID.erase(*SoundCount);
4580 SoundsListPID.insert(std::make_pair(*SoundCount, PropertyValue));
4582 } else if (PropertyName == wxT("PREF")){
4584 ProcessIntegerValue(&SoundsListPref, &PropertyValue, SoundCount);
4586 } else if (PropertyName == wxT("MEDIATYPE")){
4588 SoundsListMediatype.erase(*SoundCount);
4589 SoundsListMediatype.insert(std::make_pair(*SoundCount, PropertyValue));
4591 } else if (PropertyName == wxT("LANGUAGE")){
4593 SoundsListLanguage.erase(*SoundCount);
4594 SoundsListLanguage.insert(std::make_pair(*SoundCount, PropertyValue));
4598 // Something else we don't know about so append
4599 // to the tokens variable.
4601 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4603 if (FirstToken == TRUE){
4605 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4610 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4620 intPropertyLen = PropertySeg2.Len();
4621 SplitPoints.clear();
4622 SplitLength.clear();
4627 CaptureString(&PropertySeg2, FALSE);
4629 for (int i = 0; i <= intPropertyLen; i++){
4633 if (PropertySeg2.Mid(i, 1) == wxT(";")){
4636 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4638 if (intSplitsFound == 6){
4640 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4645 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4655 wxString wxSSoundURI;
4656 wxString wxSSoundMIME;
4657 wxString wxSSoundEncoding;
4658 wxString wxSSoundData;
4659 std::string base64enc;
4661 if (intSplitsFound == 0){
4665 std::map<int, int>::iterator striter;
4667 striter = SplitLength.find(1);
4669 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4671 while (wSTDataType.HasMoreTokens() == TRUE){
4673 wxSSoundURI = wSTDataType.GetNextToken();
4674 wxSSoundMIME = wSTDataType.GetNextToken();
4679 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
4681 while (wSTDataInfo.HasMoreTokens() == TRUE){
4683 wxSSoundEncoding = wSTDataInfo.GetNextToken();
4684 wxSSoundData = wSTDataInfo.GetNextToken();
4685 base64enc = wxSSoundData.mb_str();
4692 // Add the data to the General/Home/Work address variables.
4698 SoundsListType.insert(std::make_pair(*SoundCount, "home"));
4701 SoundsListType.insert(std::make_pair(*SoundCount, "work"));
4705 SoundsList.insert(std::make_pair(*SoundCount, base64enc));
4706 SoundsListAudioEncType.insert(std::make_pair(*SoundCount, wxSSoundEncoding));
4707 SoundsListAudioType.insert(std::make_pair(*SoundCount, wxSSoundMIME));
4709 if (!PropertyTokens.IsEmpty()){
4711 SoundsListTokens.insert(std::make_pair(*SoundCount, PropertyTokens));
4717 void ContactDataObject::ProcessCalendarURI(wxString PropertySeg1, wxString PropertySeg2, int *CalURICount){
4719 size_t intPropertyLen = PropertySeg1.Len();
4720 std::map<int, int> SplitPoints;
4721 std::map<int, int> SplitLength;
4722 std::map<int, int>::iterator SLiter;
4723 wxString PropertyData;
4724 wxString PropertyName;
4725 wxString PropertyValue;
4726 wxString PropertyTokens;
4727 bool FirstToken = TRUE;
4728 int intSplitsFound = 0;
4729 int intSplitSize = 0;
4730 int intPrevValue = 8;
4734 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4738 PropertyType PropType = PROPERTY_NONE;
4740 // Look for type before continuing.
4742 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4746 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4747 intiter != SplitPoints.end(); ++intiter){
4749 SLiter = SplitLength.find(intiter->first);
4751 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4753 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4754 PropertyName = PropertyElement.GetNextToken();
4755 PropertyValue = PropertyElement.GetNextToken();
4757 intPrevValue = intiter->second;
4759 // Process properties.
4761 size_t intPropertyValueLen = PropertyValue.Len();
4763 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4765 PropertyValue.Trim();
4766 PropertyValue.RemoveLast();
4770 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4772 PropertyValue.Remove(0, 1);
4776 CaptureString(&PropertyValue, FALSE);
4778 if (PropertyName == wxT("ALTID")){
4780 CalendarListAltID.erase(*CalURICount);
4781 CalendarListAltID.insert(std::make_pair(*CalURICount, PropertyValue));
4783 } else if (PropertyName == wxT("PID")){
4785 CalendarListPID.erase(*CalURICount);
4786 CalendarListPID.insert(std::make_pair(*CalURICount, PropertyValue));
4788 } else if (PropertyName == wxT("PREF")){
4790 ProcessIntegerValue(&CalendarListPref, &PropertyValue, CalURICount);
4792 } else if (PropertyName == wxT("MEDIATYPE")){
4794 CalendarListMediatype.erase(*CalURICount);
4795 CalendarListMediatype.insert(std::make_pair(*CalURICount, PropertyValue));
4799 // Something else we don't know about so append
4800 // to the tokens variable.
4802 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4804 if (FirstToken == TRUE){
4806 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4811 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4821 intPropertyLen = PropertySeg2.Len();
4822 SplitPoints.clear();
4823 SplitLength.clear();
4828 CaptureString(&PropertySeg2, FALSE);
4830 // Add the data to the General/Home/Work address variables.
4836 CalendarListType.insert(std::make_pair(*CalURICount, "home"));
4839 CalendarListType.insert(std::make_pair(*CalURICount, "work"));
4843 CalendarList.insert(std::make_pair(*CalURICount, PropertySeg2));
4845 if (!PropertyTokens.IsEmpty()){
4847 CalendarListTokens.insert(std::make_pair(*CalURICount, PropertyTokens));
4853 void ContactDataObject::ProcessCalendarAddressURI(wxString PropertySeg1, wxString PropertySeg2, int *CalAdrURICount){
4855 size_t intPropertyLen = PropertySeg1.Len();
4856 std::map<int, int> SplitPoints;
4857 std::map<int, int> SplitLength;
4858 std::map<int, int>::iterator SLiter;
4859 wxString PropertyData;
4860 wxString PropertyName;
4861 wxString PropertyValue;
4862 wxString PropertyTokens;
4863 bool FirstToken = TRUE;
4864 int intSplitsFound = 0;
4865 int intSplitSize = 0;
4866 int intPrevValue = 8;
4870 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4874 PropertyType PropType = PROPERTY_NONE;
4876 // Look for type before continuing.
4878 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4882 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
4883 intiter != SplitPoints.end(); ++intiter){
4885 SLiter = SplitLength.find(intiter->first);
4887 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4889 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
4890 PropertyName = PropertyElement.GetNextToken();
4891 PropertyValue = PropertyElement.GetNextToken();
4893 intPrevValue = intiter->second;
4895 // Process properties.
4897 size_t intPropertyValueLen = PropertyValue.Len();
4899 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4901 PropertyValue.Trim();
4902 PropertyValue.RemoveLast();
4906 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4908 PropertyValue.Remove(0, 1);
4912 CaptureString(&PropertyValue, FALSE);
4914 if (PropertyName == wxT("ALTID")){
4916 CalendarRequestListAltID.erase(*CalAdrURICount);
4917 CalendarRequestListAltID.insert(std::make_pair(*CalAdrURICount, PropertyValue));
4919 } else if (PropertyName == wxT("PID")){
4921 CalendarRequestListPID.erase(*CalAdrURICount);
4922 CalendarRequestListPID.insert(std::make_pair(*CalAdrURICount, PropertyValue));
4924 } else if (PropertyName == wxT("PREF")){
4926 ProcessIntegerValue(&CalendarRequestListPref, &PropertyValue, CalAdrURICount);
4928 } else if (PropertyName == wxT("MEDIATYPE")){
4930 CalendarRequestListMediatype.erase(*CalAdrURICount);
4931 CalendarRequestListMediatype.insert(std::make_pair(*CalAdrURICount, PropertyValue));
4935 // Something else we don't know about so append
4936 // to the tokens variable.
4938 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
4940 if (FirstToken == TRUE){
4942 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
4947 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
4957 intPropertyLen = PropertySeg2.Len();
4958 SplitPoints.clear();
4959 SplitLength.clear();
4964 CaptureString(&PropertySeg2, FALSE);
4966 // Add the data to the General/Home/Work address variables.
4972 CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "home"));
4975 CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "work"));
4979 CalendarRequestList.insert(std::make_pair(*CalAdrURICount, PropertySeg2));
4981 if (!PropertyTokens.IsEmpty()){
4983 CalendarRequestListTokens.insert(std::make_pair(*CalAdrURICount, PropertyTokens));
4989 void ContactDataObject::ProcessCalendarFreeBusy(wxString PropertySeg1, wxString PropertySeg2, int *FreeBusyAddressCount){
4991 size_t intPropertyLen = PropertySeg1.Len();
4992 std::map<int, int> SplitPoints;
4993 std::map<int, int> SplitLength;
4994 std::map<int, int>::iterator SLiter;
4995 wxString PropertyData;
4996 wxString PropertyName;
4997 wxString PropertyValue;
4998 wxString PropertyTokens;
4999 bool FirstToken = TRUE;
5000 int intSplitsFound = 0;
5001 int intSplitSize = 0;
5002 int intPrevValue = 7;
5006 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5010 PropertyType PropType = PROPERTY_NONE;
5012 // Look for type before continuing.
5014 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5018 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5019 intiter != SplitPoints.end(); ++intiter){
5021 SLiter = SplitLength.find(intiter->first);
5023 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5025 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5026 PropertyName = PropertyElement.GetNextToken();
5027 PropertyValue = PropertyElement.GetNextToken();
5029 intPrevValue = intiter->second;
5031 // Process properties.
5033 size_t intPropertyValueLen = PropertyValue.Len();
5035 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5037 PropertyValue.Trim();
5038 PropertyValue.RemoveLast();
5042 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5044 PropertyValue.Remove(0, 1);
5048 CaptureString(&PropertyValue, FALSE);
5050 if (PropertyName == wxT("ALTID")){
5052 FreeBusyListAltID.erase(*FreeBusyAddressCount);
5053 FreeBusyListAltID.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5055 } else if (PropertyName == wxT("PID")){
5057 FreeBusyListPID.erase(*FreeBusyAddressCount);
5058 FreeBusyListPID.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5060 } else if (PropertyName == wxT("PREF")){
5062 ProcessIntegerValue(&FreeBusyListPref, &PropertyValue, FreeBusyAddressCount);
5064 } else if (PropertyName == wxT("MEDIATYPE")){
5066 FreeBusyListMediatype.erase(*FreeBusyAddressCount);
5067 FreeBusyListMediatype.insert(std::make_pair(*FreeBusyAddressCount, PropertyValue));
5071 // Something else we don't know about so append
5072 // to the tokens variable.
5074 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5076 if (FirstToken == TRUE){
5078 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5083 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5093 intPropertyLen = PropertySeg2.Len();
5094 SplitPoints.clear();
5095 SplitLength.clear();
5100 CaptureString(&PropertySeg2, FALSE);
5102 // Add the data to the General/Home/Work address variables.
5108 FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "home"));
5111 FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "work"));
5115 FreeBusyList.insert(std::make_pair(*FreeBusyAddressCount, PropertySeg2));
5117 if (!PropertyTokens.IsEmpty()){
5119 FreeBusyListTokens.insert(std::make_pair(*FreeBusyAddressCount, PropertyTokens));
5125 void ContactDataObject::ProcessKey(wxString PropertySeg1, wxString PropertySeg2, int *KeyCount){
5127 size_t intPropertyLen = PropertySeg1.Len();
5128 std::map<int, int> SplitPoints;
5129 std::map<int, int> SplitLength;
5130 std::map<int, int>::iterator SLiter;
5131 wxString PropertyData;
5132 wxString PropertyName;
5133 wxString PropertyValue;
5134 wxString PropertyTokens;
5135 bool FirstToken = TRUE;
5136 int intSplitsFound = 0;
5137 int intSplitSize = 0;
5138 int intPrevValue = 5;
5143 SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
5147 PropertyType PropType = PROPERTY_NONE;
5149 // Look for type before continuing.
5151 CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
5155 for (std::map<int, int>::iterator intiter = SplitPoints.begin();
5156 intiter != SplitPoints.end(); ++intiter){
5158 SLiter = SplitLength.find(intiter->first);
5160 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
5162 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5163 PropertyName = PropertyElement.GetNextToken();
5164 PropertyValue = PropertyElement.GetNextToken();
5166 intPrevValue = intiter->second;
5168 // Process properties.
5170 size_t intPropertyValueLen = PropertyValue.Len();
5172 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
5174 PropertyValue.Trim();
5175 PropertyValue.RemoveLast();
5179 if (PropertyValue.Mid(0, 1) == wxT("\"")){
5181 PropertyValue.Remove(0, 1);
5185 if (PropertyName == wxT("ALTID")){
5187 KeyListAltID.erase(*KeyCount);
5188 KeyListAltID.insert(std::make_pair(*KeyCount, PropertyValue));
5190 } else if (PropertyName == wxT("PID")){
5192 KeyListPID.erase(*KeyCount);
5193 KeyListPID.insert(std::make_pair(*KeyCount, PropertyValue));
5195 } else if (PropertyName == wxT("PREF")){
5197 ProcessIntegerValue(&KeyListPref, &PropertyValue, KeyCount);
5201 // Something else we don't know about so append
5202 // to the tokens variable.
5204 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
5206 if (FirstToken == TRUE){
5208 PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
5213 PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
5223 intPropertyLen = PropertySeg2.Len();
5224 SplitPoints.clear();
5225 SplitLength.clear();
5230 for (int i = 0; i <= intPropertyLen; i++){
5234 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
5237 SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
5239 if (intSplitsFound == 6){
5241 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5246 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5257 wxString wxSKeyMIME;
5258 wxString wxSKeyEncoding;
5259 wxString wxSKeyData;
5260 std::string base64enc;
5262 if (intSplitsFound == 0){
5266 std::map<int, int>::iterator striter;
5268 striter = SplitLength.find(1);
5270 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
5272 while (wSTDataType.HasMoreTokens() == TRUE){
5274 wxSKeyURI = wSTDataType.GetNextToken();
5275 wxSKeyMIME = wSTDataType.GetNextToken();
5280 if (wxSKeyURI == wxT("data")){
5282 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));
5284 while (wSTDataInfo.HasMoreTokens() == TRUE){
5286 wxSKeyEncoding = wSTDataInfo.GetNextToken();
5287 wxSKeyData = wSTDataInfo.GetNextToken();
5296 // Add the data to the General/Home/Work address variables.
5298 if (wxSKeyURI == wxT("data")){
5300 KeyListDataEncType.erase(*KeyCount);
5301 KeyListKeyType.erase(*KeyCount);
5302 KeyListDataEncType.insert(std::make_pair(*KeyCount, wxSKeyEncoding));
5303 KeyListKeyType.insert(std::make_pair(*KeyCount, TRUE));
5305 KeyList.erase(*KeyCount);
5306 KeyList.insert(std::make_pair(*KeyCount, wxSKeyData));
5310 KeyList.erase(*KeyCount);
5311 KeyList.insert(std::make_pair(*KeyCount, PropertySeg2));
5315 KeyListDataType.insert(std::make_pair(*KeyCount, wxSKeyMIME));
5321 KeyListType.insert(std::make_pair(*KeyCount, wxT("home")));
5324 KeyListType.insert(std::make_pair(*KeyCount, wxT("work")));
5328 if (!PropertyTokens.IsEmpty()){
5330 KeyListTokens.insert(std::make_pair(*KeyCount, PropertyTokens));
5336 void ContactDataObject::ProcessVendor(wxString PropertySeg1, wxString PropertySeg2, int *VendorCount){
5338 // Split the Vendor three ways.
5340 wxStringTokenizer wSTVendorDetails(PropertySeg1, wxT("-"));
5343 wxString wxSVNDPropName;
5346 while (wSTVendorDetails.HasMoreTokens() == TRUE){
5348 wSTVendorDetails.GetNextToken();
5349 wxSVNDID = wSTVendorDetails.GetNextToken();
5350 wxSVNDPropName = wSTVendorDetails.GetNextToken();
5355 if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
5357 // Add the data to the vendor variables.
5359 VendorList.erase(*VendorCount);
5360 VendorListPEN.erase(*VendorCount);
5361 VendorListElement.erase(*VendorCount);
5363 VendorList.insert(std::make_pair(*VendorCount, PropertySeg2));
5364 VendorListPEN.insert(std::make_pair(*VendorCount, wxSVNDID));
5365 VendorListElement.insert(std::make_pair(*VendorCount, wxSVNDPropName));
5371 void ProcessStringValue(wxString *PropertyName,
5372 wxString PropertyNameMatch,
5373 std::map<int,wxString> *MapPtr,
5374 wxString *PropertyValue,
5376 bool *PropertyMatched){
5378 if (*PropertyName == PropertyNameMatch){
5379 MapPtr->erase(*ItemCount);
5380 MapPtr->insert(std::make_pair(*ItemCount, *PropertyValue));
5381 *PropertyMatched = TRUE;
5386 void ProcessIntegerValue(wxString *PropertyName,
5387 wxString PropertyNameMatch,
5388 std::map<int,int> *PrefPtr,
5389 wxString *PropertyValue,
5391 bool *PropertyMatched){
5393 if (*PropertyName == PropertyNameMatch){
5394 *PropertyMatched = TRUE;
5399 int PriorityNumber = 0;
5400 bool ValidNumber = TRUE;
5403 PriorityNumber = std::stoi(PropertyValue->ToStdString());
5406 catch(std::invalid_argument &e){
5407 ValidNumber = FALSE;
5410 if (ValidNumber == TRUE){
5412 PrefPtr->erase(*ItemCount);
5413 PrefPtr->insert(std::make_pair(*ItemCount, PriorityNumber));
5419 void ProcessIntegerValue(std::map<int,int> *PrefPtr,
5420 wxString *PropertyValue,
5423 int PriorityNumber = 0;
5424 bool ValidNumber = TRUE;
5427 PriorityNumber = std::stoi(PropertyValue->ToStdString());
5430 catch(std::invalid_argument &e){
5431 ValidNumber = FALSE;
5434 if (ValidNumber == TRUE){
5436 PrefPtr->erase(*ItemCount);
5437 PrefPtr->insert(std::make_pair(*ItemCount, PriorityNumber));
5443 void SplitValues(wxString *PropertyLine,
5444 std::map<int,int> *SplitPoints,
5445 std::map<int,int> *SplitLength,
5448 size_t intPropertyLen = PropertyLine->Len();
5449 int intSplitsFound = 0;
5450 int intSplitSize = 0;
5451 int intSplitSeek = 0;
5453 for (int i = intSize; i <= intPropertyLen; i++){
5457 if (PropertyLine->Mid(i, 1) == wxT(";") &&
5458 PropertyLine->Mid((i - 1), 1) != wxT("\\")){
5460 if (intSplitsFound == 0){
5462 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
5466 SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5470 SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
5480 if (intSplitsFound == 0){
5482 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
5483 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5487 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
5488 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5494 void CheckType(wxString *PropertySeg1,
5495 std::map<int,int> *SplitPoints,
5496 std::map<int,int> *SplitLength,
5498 PropertyType *PropType){
5500 wxString PropertyData;
5501 wxString PropertyName;
5502 wxString PropertyValue;
5503 std::map<int,int>::iterator SLiter;
5505 for (std::map<int, int>::iterator intiter = SplitPoints->begin();
5506 intiter != SplitPoints->end(); ++intiter){
5508 SLiter = SplitLength->find(intiter->first);
5510 PropertyData = PropertySeg1->Mid(*intPrevValue, (SLiter->second));
5512 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
5513 PropertyName = PropertyElement.GetNextToken();
5514 PropertyValue = PropertyElement.GetNextToken();
5516 *intPrevValue = intiter->second;
5518 if (PropertyName == wxT("TYPE")){
5520 if (PropertyValue == wxT("work")){
5522 *PropType = PROPERTY_WORK;
5524 } else if (PropertyValue == wxT("home")){
5526 *PropType = PROPERTY_HOME;
5530 *PropType = PROPERTY_NONE;