Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added check for GEO in ProcessAddress
[xestiaab/.git] / source / contacteditor / cdo / ContactDataObject.cpp
1 // ContactDataObject.cpp - Client Data Object.
2 //
3 // (c) 2012-2016 Xestia Software Development.
4 //
5 // This file is part of Xestia Address Book.
6 //
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.
10 //
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.
15 //
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){
22         
23         if (!wxFileExists(Filename)){
24         
25                 return CONTACTLOAD_FILEMISSING;
26         
27         }
28         
29         wxFile ContactFile;
30         
31         if (!ContactFile.Open(Filename, wxFile::read, wxS_DEFAULT)){
32         
33                 return CONTACTLOAD_FILEERROR;
34         
35         }
36         
37         // Check that the vCard is a valid vCard 4.0 file.
39         vCard vCard4FormatCheck;
40         
41         vCard4FormatCheck.LoadFile(Filename);
42         
43         if (vCard4FormatCheck.Get("VERSION") != wxT("4.0")){
44         
45                 return CONTACTLOAD_FILEINVALIDFORMAT;
46         
47         }
49         // Check that the vCard meets the base specification.
50         
51         if (!vCard4FormatCheck.MeetBaseSpecification()){
52         
53                 return CONTACTLOAD_FILEBASESPECFAIL;
54         
55         }
56         
57         wxStringTokenizer wSTContactFileLines(vCard4FormatCheck.WriteString(), wxT("\r\n"));
58         
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));
67                 ContactLineSeek++;              
68         
69         }
70         
71         wxString wxSPropertyNextLine;
72         
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;
85         int SourceCount = 0;
86         int GroupCount = 0;
87         int FNCount = 0;
88         int NicknameCount = 0;
89         int TimeZoneCount = 0;
90         int AddressCount = 0;
91         int EmailCount = 0;
92         int IMCount = 0;
93         int TelephoneCount = 0;
94         int LanguageCount = 0;
95         int GeographicCount = 0;
96         int RelatedCount = 0;
97         int URLCount = 0;
98         int TitleCount = 0;
99         int RoleCount = 0;
100         int OrganisationCount = 0;
101         int NoteCount = 0;
102         int CategoryCount = 0;
103         int PhotoCount = 0;
104         int LogoCount = 0;
105         int SoundCount = 0;
106         int CalendarCount = 0;
107         int CalendarAddressCount = 0;
108         int FreeBusyAddressCount = 0;
109         int KeyCount = 0;
110         int VendorCount = 0;
111         int XTokenCount = 0;
112         int XMLCount = 0;
113         int ClientPIDCount = 0;
114         wxString ContactLine;
115         wxString PropertyLine;
116         wxString PropertySeg1;
117         wxString PropertySeg2;
118         wxString PropertyNextLine;
119         wxString Property;
120         
121         for (std::map<int,wxString>::iterator iter = ContactFileLines.begin(); 
122          iter != ContactFileLines.end(); ++iter){
124                 ExtraLineSeek = TRUE;
125                 QuoteMode = FALSE;
126                 PropertyFind = TRUE;
127                 ContactLineLen = 0;
128                 QuoteBreakPoint = 0;
129                 ContactLine.Clear();
130                 PropertyLine.Clear();
131                 PropertySeg1.Clear();
132                 PropertySeg2.Clear();
133                 Property.Clear();
134          
135                 ContactLine = iter->second;
136                 
137                 while (ExtraLineSeek == TRUE){
138                 
139                         // Check if there is extra data on the next line 
140                         // (indicated by space or tab at the start) and add data.
141                 
142                         iter++;
143                         
144                         if (iter == ContactFileLines.end()){
145                         
146                                 iter--;
147                                 break;
148                         
149                         }                       
150                 
151                         PropertyNextLine = iter->second;
152                 
153                         if (PropertyNextLine.Mid(0, 1) == wxT(" ") || PropertyNextLine.Mid(0, 1) == wxT("\t")){
154                 
155                                 PropertyNextLine.Remove(0, 1);
156                                 ContactLine.Append(PropertyNextLine);
157                 
158                         } else {
159                         
160                                 iter--;
161                                 ExtraLineSeek = FALSE;
162                         
163                         }
164                 
165                 }
167                 ContactLineLen = ContactLine.Len();
168                 
169                 // Make sure we are not in quotation mode.
170                 // Make sure colon does not have \ or \\ before it.
171                 
172                 for (int i = 0; i <= ContactLineLen; i++){
173                 
174                         if ((ContactLine.Mid(i, 1) == wxT(";") || ContactLine.Mid(i, 1) == wxT(":")) && PropertyFind == TRUE){
175                         
176                                 PropertyFind = FALSE;
177                         
178                         } else if (PropertyFind == TRUE){
179                         
180                                 Property.Append(ContactLine.Mid(i, 1));
181                         
182                         }               
183                 
184                         if (ContactLine.Mid(i, 1) == wxT("\"")){
185                         
186                                 if (QuoteMode == TRUE){
187                                 
188                                         QuoteMode = FALSE;
189                                 
190                                 } else {
191                         
192                                         QuoteMode = TRUE;
193                                         
194                                 }
195                         
196                         }
197                         
198                         if (ContactLine.Mid(i, 1) == wxT(":") && ContactLine.Mid((i - 1), 1) != wxT("\\") && QuoteMode == FALSE){
199                         
200                                 QuoteBreakPoint = i;
201                                 break;
202                         
203                         }
204                 
205                 }
206                 
207                 // Split that line at the point into two variables (ignore the colon).
208                 
209                 PropertySeg1 = ContactLine.Mid(0, QuoteBreakPoint);
210                 PropertySeg2 = ContactLine.Mid((QuoteBreakPoint + 1));
211                 
212                  if (Property == wxT("KIND") && KindProcessed == FALSE){
213                                 
214                         ProcessKind(PropertySeg2);
215                 
216                 } else if (Property == wxT("UID") && UIDProcessed == FALSE){
217                 
218                         UIDToken = PropertySeg2;
219                         UIDProcessed = TRUE;
220                 
221                 } else if (Property == wxT("SOURCE")){
222                 
223                         ProcessSource(PropertySeg1, PropertySeg2, &SourceCount);
224                         SourceCount++;
225                 
226                 } else if (Property == wxT("XML")){
227                 
228                         ProcessXML(PropertySeg1, PropertySeg2, &XMLCount);
229                         XMLCount++;
230                 
231                 } else if (Property == wxT("REV") && RevisionProcessed == FALSE){
232                 
233                         ProcessRevision(PropertySeg1, PropertySeg2);
234                         RevisionProcessed = TRUE;
235                 
236                 } else if (Property == wxT("MEMBER")){
238                         ProcessMember(PropertySeg1, PropertySeg2, &GroupCount);
239                         GroupCount++;   
240                 
241                 } else if (Property == wxT("FN")){
242                 
243                         ProcessFN(PropertySeg1, PropertySeg2, &FNCount);
244                         FNCount++;
245                 
246                 } else if (Property == wxT("N") && NameProcessed == FALSE){
247                 
248                         ProcessN(PropertySeg1, PropertySeg2);
249                         NameProcessed = TRUE;
250                 
251                 } else if (Property == wxT("CLIENTPIDMAP")){
252                 
253                         ProcessClientPIDMap(PropertySeg1, PropertySeg2, &ClientPIDCount);
254                         ClientPIDCount++;
255                 
256                 } else if (Property == wxT("NICKNAME")){
257                                                 
258                         ProcessNickname(PropertySeg1, PropertySeg2, &NicknameCount);
259                         NicknameCount++;
260                         
261                 } else if (Property == wxT("GENDER") && GenderProcessed == FALSE){
262                 
263                         ProcessGender(PropertySeg1, PropertySeg2);
264                         GenderProcessed = TRUE;
265                 
266                 } else if (Property == wxT("BDAY") && BirthdayProcessed == FALSE){
267                 
268                         ProcessBirthday(PropertySeg1, PropertySeg2);
269                         BirthdayProcessed = TRUE;
270                 
271                 } else if (Property == wxT("ANNIVERSARY") && AnniversaryProcessed == FALSE){
272                 
273                         ProcessAnniversary(PropertySeg1, PropertySeg2);
274                         AnniversaryProcessed = TRUE;
275                 
276                 } else if (Property == wxT("TZ")){
277                 
278                         ProcessTimeZone(PropertySeg1, PropertySeg2, &TimeZoneCount);
279                         TimeZoneCount++;
280                 
281                 } else if (Property == wxT("ADR")){
282                 
283                         ProcessAddress(PropertySeg1, PropertySeg2, &AddressCount);
284                         AddressCount++;
285                 
286                 } else if (Property == wxT("EMAIL")){
287                                         
288                         ProcessEmail(PropertySeg1, PropertySeg2, &EmailCount);  
289                         EmailCount++;
290                 
291                 } else if (Property == wxT("IMPP")){
292                 
293                         ProcessIM(PropertySeg1, PropertySeg2, &IMCount);
294                         IMCount++;
295                         
296                 } else if (Property == wxT("TEL")){
297                                 
298                         ProcessTelephone(PropertySeg1, PropertySeg2, &TelephoneCount);
299                         TelephoneCount++;
300                 
301                 } else if (Property == wxT("LANG")){
302                 
303                         // See frmContactEditor-LoadLanguage.cpp
304                         
305                         ProcessLanguage(PropertySeg1, PropertySeg2, &LanguageCount);
306                         LanguageCount++;
307                 
308                 } else if (Property == wxT("GEO")){
309                 
310                         // See frmContactEditor-LoadGeo.cpp
311                         
312                         ProcessGeographic(PropertySeg1, PropertySeg2, &GeographicCount);        
313                         GeographicCount++;
314                 
315                 } else if (Property == wxT("RELATED")){
316                         
317                         // See fromContactEditor-LoadRelated.cpp
318                         
319                         ProcessRelated(PropertySeg1, PropertySeg2, &RelatedCount);              
320                         RelatedCount++;
321                         
322                 } else if (Property == wxT("URL")){
324                         // See frmContactEditor-LoadURL.cpp
325                 
326                         ProcessURL(PropertySeg1, PropertySeg2, &URLCount);
327                         URLCount++;
328                 
329                 } else if (Property == wxT("TITLE")) {
330                 
331                         // See frmContactEditor-LoadTitle.cpp
332                         
333                         ProcessTitle(PropertySeg1, PropertySeg2, &TitleCount);
334                         TitleCount++;
335                         
336                 } else if (Property == wxT("ROLE")) {
337                 
338                         // See frmContactEditor-LoadTitle.cpp
339                         
340                         ProcessRole(PropertySeg1, PropertySeg2, &RoleCount);
341                         RoleCount++;
342                         
343                 } else if (Property == wxT("ORG")) {
344                 
345                         // See frmContactEditor-LoadOrg.cpp
346                         
347                         ProcessOrganisation(PropertySeg1, PropertySeg2, &OrganisationCount);
348                         OrganisationCount++;
349                         
350                 } else if (Property == wxT("NOTE")) {
352                         // See frmContactEditor-LoadNote.cpp
354                         ProcessNote(PropertySeg1, PropertySeg2, &NoteCount);
355                         NoteCount++;    
356                         
357                 } else if (Property == wxT("CATEGORIES")) {
358                 
359                         // See frmContactEditor-LoadCategory.cpp
360                 
361                         ProcessCategory(PropertySeg1, PropertySeg2, &CategoryCount);    
362                         CategoryCount++;
363                         
364                 } else if (Property == wxT("PHOTO")) {
365                 
366                         // See frmContactEditor-LoadPhoto.cpp
367                         
368                         ProcessPhoto(PropertySeg1, PropertySeg2, &PhotoCount);
369                         PhotoCount++;
371                 } else if (Property == wxT("LOGO")) {
372                 
373                         // See frmContactEditor-LoadPhoto.cpp
374                         
375                         ProcessLogo(PropertySeg1, PropertySeg2, &LogoCount);
376                         LogoCount++;
378                 } else if (Property == wxT("SOUND")) {
379                 
380                         // See frmContactEditor-LoadSound.cpp
381                         
382                         ProcessSound(PropertySeg1, PropertySeg2, &SoundCount);
383                         SoundCount++;
384                         
385                 } else if (Property == wxT("CALURI")){
387                         // See frmContactEditor-LoadCalendar.cpp
388                         
389                         ProcessCalendarURI(PropertySeg1, PropertySeg2, &CalendarCount);
390                         CalendarCount++;
391                 
392                 } else if (Property == wxT("CALADRURI")){
393                 
394                         ProcessCalendarAddressURI(PropertySeg1, PropertySeg2, &CalendarAddressCount);
395                         CalendarAddressCount++;
396                 
397                 } else if (Property == wxT("FBURL")){
399                         // See frmContactEditor-LoadCalendar.cpp
401                         ProcessCalendarFreeBusy(PropertySeg1, PropertySeg2, &FreeBusyAddressCount);
402                         FreeBusyAddressCount++;
404                 } else if (Property == wxT("KEY")){
405                 
406                         // See frmContactEditor-LoadKey.cpp
407                         
408                         ProcessKey(PropertySeg1, PropertySeg2, &KeyCount);
409                         KeyCount++;
410                 
411                 } else if (Property.Mid(0, 3) == wxT("VND")){
412                 
413                         ProcessVendor(PropertySeg1, PropertySeg2, &VendorCount);
414                         VendorCount++;
415                 
416                 } else if (Property.Mid(0, 2) == wxT("X-")){
417                         
418                         XTokenList.insert(std::make_pair(XTokenCount, PropertySeg2));
419                         XTokenListTokens.insert(std::make_pair(XTokenCount, PropertySeg1.Mid(2)));
420                         XTokenCount++;
421                 
422                 }
423                 
424         }
425         
426         return CONTACTLOAD_OK;
430 void ContactDataObject::ProcessKind(wxString KindType){
432         if (KindType == wxT("individual")){
433                         
434                 ContactKind = CONTACTKIND_INDIVIDUAL;
435                         
436         } else if (KindType == wxT("group")){
437                         
438                 ContactKind = CONTACTKIND_GROUP;
439                         
440         } else if (KindType == wxT("org")){
441                         
442                 ContactKind = CONTACTKIND_ORGANISATION;
443                         
444         } else if (KindType == wxT("location")){
445                         
446                 ContactKind = CONTACTKIND_LOCATION;
447                         
448         } else {
449                         
450                 ContactKind = CONTACTKIND_NONE;                 
451         }
455 void ContactDataObject::ProcessRevision(wxString PropertySeg1, wxString PropertySeg2){
457         size_t intPropertyLen = PropertySeg1.Len();
458         std::map<int, int> SplitPoints;
459         std::map<int, int> SplitLength;
460         std::map<int, int>::iterator SLiter;                    
461         wxString PropertyData;
462         wxString PropertyName;
463         wxString PropertyValue;
464         wxString PropertyTokens;
465         bool FirstToken = TRUE;
466         int intSplitsFound = 0;
467         int intSplitSize = 0;
468         int intPrevValue = 5;
469         
470         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
471         
472         intPrevValue = 4;
474         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
475         intiter != SplitPoints.end(); ++intiter){
476         
477                 SLiter = SplitLength.find(intiter->first);
478                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
479                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
480                 intPrevValue = intiter->second;
481                 
482                 // Process properties.
483                 
484                 size_t intPropertyValueLen = PropertyValue.Len();
485                 
486                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
487                         
488                         PropertyValue.Trim();
489                         PropertyValue.RemoveLast();
490                         
491                 }                               
492                 
493                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
494                         
495                         PropertyValue.Remove(0, 1);
496                         
497                 }                       
498                 
499                 CaptureString(&PropertyValue, FALSE);
500                 
501                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
502         
503         }       
504         
505         CaptureString(&PropertySeg2, FALSE);
506         
507         Revision = PropertySeg2;
508         
509         if (!PropertyTokens.IsEmpty()){
510         
511                 RevisionTokens = PropertyTokens;
512         
513         }
518 void ContactDataObject::ProcessSource(wxString PropertySeg1, wxString PropertySeg2, int *SourceCount){
520         size_t intPropertyLen = PropertySeg1.Len();
521         std::map<int, int> SplitPoints;
522         std::map<int, int> SplitLength;
523         std::map<int, int>::iterator SLiter;                    
524         wxString PropertyData;
525         wxString PropertyName;
526         wxString PropertyValue;
527         wxString PropertyTokens;
528         bool FirstToken = TRUE;
529         bool PropertyMatched = FALSE;
530         int intSplitsFound = 0;
531         int intSplitSize = 0;
532         int intPrevValue = 8;
533         
534         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
535         
536         intPrevValue = 7;
537         
538         PropertyType PropType = PROPERTY_NONE;
539         
540         // Look for type before continuing.                     
542         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
544         intPrevValue = 7;
546         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
547         intiter != SplitPoints.end(); ++intiter){
548         
549                 SLiter = SplitLength.find(intiter->first);
550         
551                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
552                 
553                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
554                 
555                 intPrevValue = intiter->second;
556                 
557                 // Process properties.
558                 
559                 size_t intPropertyValueLen = PropertyValue.Len();
560                 
561                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
562                         
563                         PropertyValue.Trim();
564                         PropertyValue.RemoveLast();
565                         
566                 }                               
567                 
568                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
569                         
570                         PropertyValue.Remove(0, 1);
571                         
572                 }                       
573                 
574                 CaptureString(&PropertyValue, FALSE);
575                 
576                 ProcessStringValue(&PropertyName, "ALTID", &SourceListAltID, &PropertyValue, SourceCount, &PropertyMatched);
577                 ProcessStringValue(&PropertyName, "PID", &SourceListPID, &PropertyValue, SourceCount, &PropertyMatched);
578                 ProcessStringValue(&PropertyName, "MEDIATYPE", &SourceListMediatype, &PropertyValue, SourceCount, &PropertyMatched);
579                 ProcessIntegerValue(&PropertyName, "PREF", &SourceListPref, &PropertyValue, SourceCount, &PropertyMatched);
580                 
581                 if (PropertyMatched == TRUE){
582                 
583                         PropertyMatched = FALSE;
584                         continue;
585                 
586                 }
587                 
588                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
589         
590         }       
591         
592         intPropertyLen = PropertySeg2.Len();
593         SplitPoints.clear();
594         SplitLength.clear();
595         intSplitsFound = 0;
596         intSplitSize = 0;
597         intPrevValue = 0;
598         
599         CaptureString(&PropertySeg2, FALSE);
600         
601         // Add the data to the General/Home/Work address variables.
602                 
603         switch(PropType){
604                 case PROPERTY_NONE:
605                         break;
606                 case PROPERTY_HOME:
607                         SourceListType.insert(std::make_pair(*SourceCount, "home"));
608                         break;
609                 case PROPERTY_WORK:
610                         SourceListType.insert(std::make_pair(*SourceCount, "work"));
611                         break;
612         }
613         
614         SourceList.insert(std::make_pair(*SourceCount, PropertySeg2));
615         
616         if (!PropertyTokens.IsEmpty()){
617         
618                 SourceListTokens.insert(std::make_pair(*SourceCount, PropertyTokens));
619         
620         }
624 void ContactDataObject::ProcessXML(wxString PropertySeg1, wxString PropertySeg2, int *XMLCount){
626         std::map<int, int> SplitPoints;
627         std::map<int, int> SplitLength;
629         int intPrevValue = 5;
630         
631         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
633         intPrevValue = 4;
634         
635         wxString PropertyName;
636         wxString PropertyValue;
637         wxString PropertyData;
638         wxString PropertyTokens;
639         std::map<int,int>::iterator SLiter;
640         bool FirstToken = TRUE;
641         bool PropertyMatched = FALSE;
642         
643         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
644         intiter != SplitPoints.end(); ++intiter){
645         
646                 SLiter = SplitLength.find(intiter->first);
647                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
648                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
649                 intPrevValue = intiter->second;
650                 
651                 CaptureString(&PropertyValue, FALSE);
652         
653                 ProcessStringValue(&PropertyName, "ALTID", &XMLListAltID, &PropertyValue, XMLCount, &PropertyMatched);
654                 
655                 if (PropertyMatched == TRUE){
656                 
657                         PropertyMatched = FALSE;
658                         continue;
659                 
660                 }
661                 
662         }
664         XMLList.insert(std::make_pair(*XMLCount, PropertySeg2));
668 void ContactDataObject::ProcessMember(wxString PropertySeg1, wxString PropertySeg2, int *GroupCount){
670         std::map<int, int> SplitPoints;
671         std::map<int, int> SplitLength;
673         int intPrevValue = 8;
674         
675         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
677         intPrevValue = 7;
678         
679         wxString PropertyName;
680         wxString PropertyValue;
681         wxString PropertyData;
682         wxString PropertyTokens;
683         std::map<int,int>::iterator SLiter;
684         bool FirstToken = TRUE;
685         bool PropertyMatched = FALSE;
686         
687         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
688         intiter != SplitPoints.end(); ++intiter){
689         
690                 SLiter = SplitLength.find(intiter->first);
691                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
692                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
693                 intPrevValue = intiter->second;
694                 
695                 CaptureString(&PropertyValue, FALSE);
696         
697                 ProcessStringValue(&PropertyName, "ALTID", &GroupsListAltID, &PropertyValue, GroupCount, &PropertyMatched);
698                 ProcessStringValue(&PropertyName, "PID", &GroupsListPID, &PropertyValue, GroupCount, &PropertyMatched);
699                 ProcessStringValue(&PropertyName, "MEDIATYPE", &GroupsListMediaType, &PropertyValue, GroupCount, &PropertyMatched);
700                 ProcessIntegerValue(&PropertyName, "PREF", &GroupsListPref, &PropertyValue, GroupCount, &PropertyMatched);
701                 
702                 if (PropertyMatched == TRUE){
703                 
704                         PropertyMatched = FALSE;
705                         continue;
706                 
707                 }
708                 
709                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
710                 
711         }
713         GroupsList.insert(std::make_pair(*GroupCount, PropertySeg2));
715         if (!PropertyTokens.IsEmpty()){
716         
717                 GroupsListTokens.insert(std::make_pair(*GroupCount, PropertyTokens));
718         
719         }
724 void ContactDataObject::ProcessFN(wxString PropertySeg1, wxString PropertySeg2, int *FNCount){
726         std::map<int, int> SplitPoints;
727         std::map<int, int> SplitLength;
729         int intPrevValue = 4;
730         
731         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
733         intPrevValue = 3;
734         
735         wxString PropertyName;
736         wxString PropertyValue;
737         wxString PropertyData;
738         wxString PropertyTokens;
739         std::map<int,int>::iterator SLiter;
740         bool FirstToken = TRUE;
741         bool PropertyMatched = FALSE;
742         
743         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
744         intiter != SplitPoints.end(); ++intiter){
745         
746                 SLiter = SplitLength.find(intiter->first);
747                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
748                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue); 
749                 intPrevValue = intiter->second;
750                 
751                 CaptureString(&PropertyValue, FALSE);
752                 
753                 if (PropertyName == wxT("TYPE")){
755                         if (!PropertyValue.IsEmpty() || PropertyValue == wxT("home") ||
756                                 PropertyValue == wxT("work") ){
758                                 FullNamesListType.erase(*FNCount);
759                                 FullNamesListType.insert(std::make_pair(*FNCount, PropertyValue));
760                 
761                         }
762                         
763                         PropertyMatched = TRUE;
764                 
765                 }
766                 
767                 ProcessStringValue(&PropertyName, "ALTID", &FullNamesListAltID, &PropertyValue, FNCount, &PropertyMatched);
768                 ProcessStringValue(&PropertyName, "PID", &FullNamesListPID, &PropertyValue, FNCount, &PropertyMatched);
769                 ProcessStringValue(&PropertyName, "LANGUAGE", &FullNamesListLanguage, &PropertyValue, FNCount, &PropertyMatched);
770                 ProcessIntegerValue(&PropertyName, "PREF", &FullNamesListPref, &PropertyValue, FNCount, &PropertyMatched);
771                 
772                 if (PropertyMatched == TRUE){
773                 
774                         PropertyMatched = FALSE;
775                         continue;
776                 
777                 }
778                 
779                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
780         
781         }
783         FullNamesList.insert(std::make_pair(*FNCount, PropertySeg2));
785         if (!PropertyTokens.IsEmpty()){
786         
787                 FullNamesListTokens.insert(std::make_pair(*FNCount, PropertyTokens));
788         
789         }
793 void ContactDataObject::ProcessN(wxString PropertySeg1, wxString PropertySeg2){
795         std::map<int, int> SplitPoints;
796         std::map<int, int> SplitLength;
798         int intPrevValue = 3;
799         
800         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
801         
802         intPrevValue = 2;
803         
804         wxString PropertyName;
805         wxString PropertyValue;
806         wxString PropertyData;
807         wxString PropertyTokens;
808         std::map<int,int>::iterator SLiter;
809         bool FirstToken = TRUE;
810         
811         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
812         intiter != SplitPoints.end(); ++intiter){
813         
814                 SLiter = SplitLength.find(intiter->first);
815                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
816                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
817                 intPrevValue = intiter->second;
818                 
819                 CaptureString(&PropertyValue, FALSE);
820                 
821                 if (PropertyName == wxT("ALTID")){
823                         NameAltID = PropertyValue;
824                 
825                 } else if (PropertyName == wxT("LANGUAGE")){
826                 
827                         NameLanguage = PropertyValue;
828                 
829                 } else if (PropertyName == wxT("SORT-AS")){
830                 
831                         if (PropertyValue.Left(1) == wxT("\"") && PropertyValue.Right(1) == wxT("\"") &&
832                                 PropertyValue.Len() >= 3){
833                                 NameDisplayAs = PropertyValue.Mid(1, (PropertyValue.Len() - 2));
834                         }
835                 
836                 } else if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty()){
837                         
838                         ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
839                         
840                 }
841         
842         }
843         
844         // Split the name data.
845         
846         int intSplitSeek = 0;           
847         int intSplitsFound = 0;
848         int intSplitSize = 0;
849         int intPropertyLen = PropertySeg2.Len();
850         
851         std::map<int,wxString> NameValues;
852         intPrevValue = 0;                                       
853         
854         for (int i = 0; i <= intPropertyLen; i++){
855         
856                 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
857                         
858                         NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, intSplitSize)));
859                         
860                         intSplitSeek = i;
861                         intSplitSeek++;
862                         
863                         if (intSplitsFound == 4){
864                         
865                                 NameValues.insert(std::make_pair(++intSplitsFound, PropertySeg2.Mid(intSplitSeek, wxString::npos)));
866                                 break;
867                         
868                         }
869                         
870                         intSplitSize = 0;
871                         continue;
872         
873                 }
874                 
875                 intSplitSize++;
877         }
878         
879         // Split the data into several parts.
880                         
881         for (std::map<int, wxString>::iterator iter = NameValues.begin(); 
882         iter != NameValues.end(); ++iter){
883         
884                 if (iter->first == 1){
885                 
886                         // Deal with family name.
887                         
888                         NameSurname = iter->second;
889                 
890                 } else if (iter->first == 2){
891                 
892                         // Deal with given names.
893                         
894                         NameForename = iter->second;
895                 
896                 } else if (iter->first == 3){
897                 
898                         // Deal with additional names.
899                         
900                         NameOtherNames = iter->second;
901                 
902                 } else if (iter->first == 4){
903                 
904                         // Deal with honorifix prefixes and suffixes.
906                         NameTitle = iter->second;
907                 
908                         iter++;
909                         
910                         if (iter == NameValues.end()){
911                         
912                                 break;
913                         
914                         }
915                 
916                         NameSuffix = iter->second;
917                 
918                 }
919         
920         }
921         
922         // Add the name token data.
923         
924         if (!PropertyTokens.IsEmpty()){
925         
926                 NameTokens = PropertyTokens;
927         
928         }
932 void ContactDataObject::ProcessClientPIDMap(wxString PropertySeg1, wxString PropertySeg2, int *ClientPIDCount){
934         size_t intPropertyLen = PropertySeg1.Len();
935         std::map<int, int> SplitPoints;
936         std::map<int, int> SplitLength;
937         std::map<int, int>::iterator SLiter;                    
938         wxString PropertyData;
939         wxString PropertyName;
940         wxString PropertyValue;
941         wxString PropertyTokens;
942         bool FirstToken = TRUE;
943         int intSplitsFound = 0;
944         int intSplitSize = 0;
945         int intPrevValue = 14;
946         
947         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
948         
949         intPrevValue = 13;
951         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
952         intiter != SplitPoints.end(); ++intiter){
953         
954                 SLiter = SplitLength.find(intiter->first);
955                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
956                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
957                 intPrevValue = intiter->second;
958                 
959                 // Process properties.
960                                 
961                 CaptureString(&PropertyValue, FALSE);
962                                         
963                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
964         
965         }       
966         
967         CaptureString(&PropertySeg2, FALSE);
968         
969         ClientPIDList.insert(std::make_pair(*ClientPIDCount, PropertySeg2));
970         
971         if (!PropertyTokens.IsEmpty()){
972         
973                 ClientPIDListTokens.insert(std::make_pair(*ClientPIDCount, PropertyTokens));
974         
975         }
979 void ContactDataObject::ProcessNickname(wxString PropertySeg1, wxString PropertySeg2, int *NicknameCount){
981         std::map<int, int> SplitPoints;
982         std::map<int, int> SplitLength;
984         int intPrevValue = 10;
985         
986         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
987         
988         intPrevValue = 9;
989         
990         PropertyType PropType = PROPERTY_NONE;
991         
992         // Look for type before continuing.
993         
994         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
995         
996         intPrevValue = 9;
997         
998         std::map<int, wxString> *NicknamesList = NULL;
999         std::map<int, wxString> *NicknamesListType = NULL;
1000         std::map<int, wxString> *NicknamesListLanguage = NULL;
1001         std::map<int, wxString> *NicknamesListAltID = NULL;
1002         std::map<int, wxString> *NicknamesListPID = NULL;
1003         std::map<int, wxString> *NicknamesListTokens = NULL;            
1004         std::map<int, int> *NicknamesListPref = NULL;
1005         
1006         switch(PropType){
1007                 case PROPERTY_NONE:
1008                         NicknamesList = &GeneralNicknamesList;
1009                         NicknamesListType = &GeneralNicknamesListType;
1010                         NicknamesListLanguage = &GeneralNicknamesListLanguage;
1011                         NicknamesListAltID = &GeneralNicknamesListAltID;
1012                         NicknamesListPID = &GeneralNicknamesListPID;
1013                         NicknamesListTokens = &GeneralNicknamesListTokens;
1014                         NicknamesListPref = &GeneralNicknamesListPref;
1015                         break;
1016                 case PROPERTY_HOME:
1017                         NicknamesList = &HomeNicknamesList;
1018                         NicknamesListType = &HomeNicknamesListType;
1019                         NicknamesListLanguage = &HomeNicknamesListLanguage;
1020                         NicknamesListAltID = &HomeNicknamesListAltID;
1021                         NicknamesListPID = &HomeNicknamesListPID;
1022                         NicknamesListTokens = &HomeNicknamesListTokens;
1023                         NicknamesListPref = &HomeNicknamesListPref;
1024                         break;
1025                 case PROPERTY_WORK:
1026                         NicknamesList = &BusinessNicknamesList;
1027                         NicknamesListType = &BusinessNicknamesListType;
1028                         NicknamesListLanguage = &BusinessNicknamesListLanguage;
1029                         NicknamesListAltID = &BusinessNicknamesListAltID;
1030                         NicknamesListPID = &BusinessNicknamesListPID;
1031                         NicknamesListTokens = &BusinessNicknamesListTokens;
1032                         NicknamesListPref = &BusinessNicknamesListPref;
1033                         break;
1034         }
1035         
1036         std::map<int, int>::iterator SLiter;    
1037         wxString PropertyData;
1038         wxString PropertyName;
1039         wxString PropertyValue;
1040         wxString PropertyTokens;
1041         bool FirstToken = TRUE;
1042         bool PropertyMatched = FALSE;
1043         
1044         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1045         intiter != SplitPoints.end(); ++intiter){
1046         
1047                 SLiter = SplitLength.find(intiter->first);
1048                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1049                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1050                 intPrevValue = intiter->second;
1051                 
1052                 CaptureString(&PropertyValue, FALSE);
1053                 
1054                 ProcessStringValue(&PropertyName, "ALTID", NicknamesListAltID, &PropertyValue, NicknameCount, &PropertyMatched);
1055                 ProcessStringValue(&PropertyName, "PID", NicknamesListPID, &PropertyValue, NicknameCount, &PropertyMatched);
1056                 ProcessStringValue(&PropertyName, "LANGUAGE", NicknamesListLanguage, &PropertyValue, NicknameCount, &PropertyMatched);
1057                 ProcessIntegerValue(&PropertyName, "PREF", NicknamesListPref, &PropertyValue, NicknameCount, &PropertyMatched);
1058                 
1059                 if (PropertyMatched == TRUE){
1060                 
1061                         PropertyMatched = FALSE;
1062                         continue;
1063                 
1064                 }
1065                 
1066                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1067                 
1068         }
1069         
1070         NicknamesList->insert(std::make_pair(*NicknameCount, PropertySeg2));
1071         
1072         // Add the name token data.
1073         
1074         if (!PropertyTokens.IsEmpty()){
1075         
1076                 NicknamesListTokens->insert(std::make_pair(*NicknameCount, PropertyTokens));
1077         
1078         }
1082 void ContactDataObject::ProcessGender(wxString PropertySeg1, wxString PropertySeg2){
1084         std::map<int, int> SplitPoints;
1085         std::map<int, int> SplitLength;
1086         std::map<int, int>::iterator SLiter;                    
1087         wxString PropertyData;
1088         wxString PropertyName;
1089         wxString PropertyValue;
1090         wxString PropertyTokens;
1091         bool FirstToken = TRUE;
1092         int intPrevValue = 8;
1094         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1096         intPrevValue = 7;                       
1097         
1098         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1099         intiter != SplitPoints.end(); ++intiter){
1100         
1101                 SLiter = SplitLength.find(intiter->first);
1102                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1103                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1104                 intPrevValue = intiter->second;
1105                 
1106                 // Process properties.
1107                 
1108                 size_t intPropertyValueLen = PropertyValue.Len();
1109                 
1110                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
1111                         
1112                         PropertyValue.Trim();
1113                         PropertyValue.RemoveLast();
1114                         
1115                 }                               
1116                 
1117                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1118                         
1119                         PropertyValue.Remove(0, 1);
1120                         
1121                 }                               
1122                 
1123                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1124         
1125         }       
1127         wxStringTokenizer GenderData (PropertySeg2, wxT(";"));
1128         
1129         wxString GenderComponent;
1130         
1131         if (GenderData.CountTokens() >= 2){
1132         
1133                 Gender = GenderData.GetNextToken();
1134                 GenderDetails = GenderData.GetString();
1135         
1136                 CaptureString(&GenderDetails, FALSE);
1137                                                 
1138         } else {
1139         
1140                 Gender = GenderData.GetNextToken();
1141         
1142         }
1143         
1144         if (!PropertyTokens.IsEmpty()){
1145         
1146                 GenderTokens = PropertyTokens;
1147         
1148         }
1152 void ContactDataObject::ProcessBirthday(wxString PropertySeg1, wxString PropertySeg2){
1154         // Process date. Preserve the remainder in the string.
1156         std::map<int, int> SplitPoints;
1157         std::map<int, int> SplitLength;
1158         std::map<int, int>::iterator SLiter;                    
1159         wxString PropertyData;
1160         wxString PropertyName;
1161         wxString PropertyValue;
1162         wxString PropertyTokens;
1163         int intPrevValue = 6;
1165         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1167         intPrevValue = 5;
1169         // Look for type before continuing.
1171         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1172         intiter != SplitPoints.end(); ++intiter){
1174                 SLiter = SplitLength.find(intiter->first);
1175                 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1176                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1177                 intPrevValue = intiter->second;
1178         
1179                 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && BirthdayText == FALSE){
1180         
1181                         CaptureString(&PropertySeg2, FALSE);
1182                         Birthday = PropertySeg2;
1183                         BirthdayText = TRUE;
1184         
1185                 }
1187         }
1189         // Setup blank lines for later on.
1190         
1191         intPrevValue = 5;
1192         bool FirstToken = TRUE;
1194         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1195         intiter != SplitPoints.end(); ++intiter){
1197                 SLiter = SplitLength.find(intiter->first);
1198                 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1199                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1200                 intPrevValue = intiter->second;
1201         
1202                 // Process properties.
1203         
1204                 CaptureString(&PropertyValue, FALSE);
1205         
1206                 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1207                 
1208                         PropertyValue.Trim();
1209                         PropertyValue.RemoveLast();
1210                 
1211                 }                               
1212         
1213                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1214                 
1215                         PropertyValue.Remove(0, 1);
1216                 
1217                 }                               
1218         
1219                 if (PropertyName == wxT("ALTID")){
1221                         BirthdayAltID = PropertyValue;
1222         
1223                 } else if (PropertyName == wxT("CALSCALE")){
1224         
1225                         BirthdayCalScale = PropertyValue;
1226         
1227                 } else if (PropertyName != wxT("VALUE")) {
1228         
1229                         // Something else we don't know about so append
1230                         // to the tokens variable.
1231                 
1232                         ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1233                         
1234                 }
1236         }       
1238         // Add the data to the variables and form.
1239         
1240         if (BirthdayText == FALSE){
1241         
1242                 Birthday = PropertySeg2;
1244         }
1245         
1246         if (!PropertyTokens.IsEmpty()){
1247         
1248                 BirthdayTokens = PropertyTokens;
1250         }
1254 void ContactDataObject::ProcessAnniversary(wxString PropertySeg1, wxString PropertySeg2){
1256         // Process date. Preserve the remainder in the string.
1258         std::map<int, int> SplitPoints;
1259         std::map<int, int> SplitLength;
1260         std::map<int, int>::iterator SLiter;                    
1261         wxString PropertyData;
1262         wxString PropertyName;
1263         wxString PropertyValue;
1264         wxString PropertyTokens;
1265         int intPrevValue = 13;
1267         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1269         intPrevValue = 12;
1271         // Look for type before continuing.
1273         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1274         intiter != SplitPoints.end(); ++intiter){
1276                 SLiter = SplitLength.find(intiter->first);
1277                 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1278                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1279                 intPrevValue = intiter->second;
1280         
1281                 if (PropertyName == wxT("VALUE") && PropertyValue == wxT("text") && AnniversaryText == FALSE){
1282         
1283                         CaptureString(&PropertySeg2, FALSE);
1284                         Anniversary = PropertySeg2;
1285                         AnniversaryText = TRUE;
1286         
1287                 }
1289         }
1291         // Setup blank lines for later on.
1292         
1293         intPrevValue = 12;
1294         bool FirstToken = TRUE;
1296         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1297         intiter != SplitPoints.end(); ++intiter){
1299                 SLiter = SplitLength.find(intiter->first);
1300                 PropertyData = PropertySeg1.Mid(intPrevValue, SLiter->second);
1301                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1302                 intPrevValue = intiter->second;
1303         
1304                 // Process properties.
1305         
1306                 CaptureString(&PropertyValue, FALSE);
1307         
1308                 if (PropertyValue.Mid((PropertyValue.Len() - 1), 1) == wxT("\"")){
1309                 
1310                         PropertyValue.Trim();
1311                         PropertyValue.RemoveLast();
1312                 
1313                 }                               
1314         
1315                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
1316                 
1317                         PropertyValue.Remove(0, 1);
1318                 
1319                 }                               
1320         
1321                 if (PropertyName == wxT("ALTID")){
1323                         AnniversaryAltID = PropertyValue;
1324         
1325                 } else if (PropertyName == wxT("CALSCALE")){
1326         
1327                         AnniversaryCalScale = PropertyValue;
1328         
1329                 } else if (PropertyName != wxT("VALUE")) {
1330         
1331                         // Something else we don't know about so append
1332                         // to the tokens variable.
1333                 
1334                         ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1335                         
1336                 }
1338         }       
1340         // Add the data to the variables and form.
1341         
1342         if (AnniversaryText == FALSE){
1343         
1344                 Anniversary = PropertySeg2;
1346         }
1347         
1348         if (!PropertyTokens.IsEmpty()){
1349         
1350                 AnniversaryTokens = PropertyTokens;
1352         }
1356 void ContactDataObject::ProcessTimeZone(wxString PropertySeg1, wxString PropertySeg2, int *TimeZoneCount){
1358         std::map<int, int> SplitPoints;
1359         std::map<int, int> SplitLength;
1361         int intPrevValue = 4;
1362         
1363         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1364         
1365         intPrevValue = 3;
1366         
1367         PropertyType PropType = PROPERTY_NONE;
1368         
1369         // Look for type before continuing.
1370         
1371         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1372         
1373         intPrevValue = 3;
1374         
1375         std::map<int, wxString> *TZList = NULL;
1376         std::map<int, wxString> *TZListType = NULL;
1377         std::map<int, wxString> *TZListMediatype = NULL;
1378         std::map<int, wxString> *TZListAltID = NULL;
1379         std::map<int, wxString> *TZListPID = NULL;
1380         std::map<int, wxString> *TZListTokens = NULL;           
1381         std::map<int, int> *TZListPref = NULL;
1382         
1383         switch(PropType){
1384                 case PROPERTY_NONE:
1385                         TZList = &GeneralTZList;
1386                         TZListType = &GeneralTZListType;
1387                         TZListMediatype = &GeneralTZListMediatype;
1388                         TZListAltID = &GeneralTZListAltID;
1389                         TZListPID = &GeneralTZListPID;
1390                         TZListTokens = &GeneralTZListTokens;
1391                         TZListPref = &GeneralTZListPref;
1392                         break;
1393                 case PROPERTY_HOME:
1394                         TZList = &HomeTZList;
1395                         TZListType = &HomeTZListType;
1396                         TZListMediatype = &HomeTZListMediatype;
1397                         TZListAltID = &HomeTZListAltID;
1398                         TZListPID = &HomeTZListPID;
1399                         TZListTokens = &HomeTZListTokens;
1400                         TZListPref = &HomeTZListPref;
1401                         break;
1402                 case PROPERTY_WORK:
1403                         TZList = &BusinessTZList;
1404                         TZListType = &BusinessTZListType;
1405                         TZListMediatype = &BusinessTZListMediatype;
1406                         TZListAltID = &BusinessTZListAltID;
1407                         TZListPID = &BusinessTZListPID;
1408                         TZListTokens = &BusinessTZListTokens;
1409                         TZListPref = &BusinessTZListPref;
1410                         break;
1411         }
1412         
1413         std::map<int, int>::iterator SLiter;    
1414         wxString PropertyData;
1415         wxString PropertyName;
1416         wxString PropertyValue;
1417         wxString PropertyTokens;
1418         bool FirstToken = TRUE;
1419         bool PropertyMatched = FALSE;
1420         
1421         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1422         intiter != SplitPoints.end(); ++intiter){
1423         
1424                 SLiter = SplitLength.find(intiter->first);      
1425                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1426                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1427                 intPrevValue = intiter->second;
1428                 
1429                 CaptureString(&PropertyValue, FALSE);
1431                 ProcessStringValue(&PropertyName, "ALTID", TZListAltID, &PropertyValue, TimeZoneCount, &PropertyMatched);
1432                 ProcessStringValue(&PropertyName, "PID", TZListPID, &PropertyValue, TimeZoneCount, &PropertyMatched);
1433                 ProcessStringValue(&PropertyName, "MEDIATYPE", TZListMediatype, &PropertyValue, TimeZoneCount, &PropertyMatched);
1434                 ProcessIntegerValue(&PropertyName, "PREF", TZListPref, &PropertyValue, TimeZoneCount, &PropertyMatched);
1435                 
1436                 if (PropertyMatched == TRUE){
1437                 
1438                         PropertyMatched = FALSE;
1439                         continue;
1440                 
1441                 }
1443                 if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
1444         
1445                         ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1446         
1447                 }
1448                 
1449         }
1450         
1451         TZList->insert(std::make_pair(*TimeZoneCount, PropertySeg2));
1452         
1453         // Add the name token data.
1454         
1455         if (!PropertyTokens.IsEmpty()){
1456         
1457                 TZListTokens->insert(std::make_pair(*TimeZoneCount, PropertyTokens));
1458         
1459         }
1464 void ContactDataObject::ProcessAddress(wxString PropertySeg1, wxString PropertySeg2, int *AddressCount){
1466         size_t intPropertyLen = PropertySeg1.Len();
1467         std::map<int, int> SplitPoints;
1468         std::map<int, int> SplitLength;
1469         std::map<int, int>::iterator SLiter;                    
1470         wxString PropertyData;
1471         wxString PropertyName;
1472         wxString PropertyValue;
1473         wxString PropertyTokens;
1474         wxString AddressLabel;
1475         wxString AddressLang;
1476         wxString AddressAltID;
1477         wxString AddressPID;
1478         wxString AddressTokens;
1479         wxString AddressGeo;
1480         wxString AddressTimezone;
1481         wxString AddressType;
1482         wxString AddressMediatype;
1483         wxString AddressPOBox;
1484         wxString AddressExtended;
1485         wxString AddressStreet;
1486         wxString AddressLocality;
1487         wxString AddressCity;
1488         wxString AddressRegion;
1489         wxString AddressPostalCode;
1490         wxString AddressCountry;
1491         bool FirstToken = TRUE;                 
1492         int intSplitsFound = 0;
1493         int intSplitSize = 0;
1494         int intPrevValue = 5;
1495         bool PropertyMatched = FALSE;
1496         
1497         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1498         
1499         intPrevValue = 4;
1500         
1501         PropertyType PropType = PROPERTY_NONE;
1502                 
1503         // Look for type before continuing.
1504         
1505         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1506         
1507         intPrevValue = 4;
1508         
1509         std::map<int, wxString> *AddressList = NULL;
1510         std::map<int, wxString> *AddressListTown = NULL;
1511         std::map<int, wxString> *AddressListCounty = NULL;
1512         std::map<int, wxString> *AddressListPostCode = NULL;
1513         std::map<int, wxString> *AddressListCountry = NULL;
1514         std::map<int, wxString> *AddressListLabel = NULL;
1515         std::map<int, wxString> *AddressListLang = NULL;                
1516         std::map<int, wxString> *AddressListAltID = NULL;
1517         std::map<int, wxString> *AddressListPID = NULL;
1518         std::map<int, wxString> *AddressListTokens = NULL;
1519         std::map<int, wxString> *AddressListGeo = NULL;
1520         std::map<int, wxString> *AddressListTimezone = NULL;            
1521         std::map<int, wxString> *AddressListType = NULL;
1522         std::map<int, wxString> *AddressListMediatype = NULL;
1523         std::map<int, int> *AddressListPref = NULL;
1525         switch(PropType){
1526                 case PROPERTY_NONE:
1527                         AddressList = &GeneralAddressList;
1528                         AddressListTown = &GeneralAddressListTown;
1529                         AddressListCounty = &GeneralAddressListCounty;
1530                         AddressListPostCode = &GeneralAddressListPostCode;
1531                         AddressListCountry = &GeneralAddressListCountry;
1532                         AddressListLabel = &GeneralAddressListLabel;
1533                         AddressListLang = &GeneralAddressListLang;              
1534                         AddressListAltID = &GeneralAddressListAltID;
1535                         AddressListPID = &GeneralAddressListPID;
1536                         AddressListTokens = &GeneralAddressListTokens;
1537                         AddressListGeo = &GeneralAddressListGeo;
1538                         AddressListTimezone = &GeneralAddressListTimezone;
1539                         AddressListType = &GeneralAddressListType;
1540                         AddressListMediatype = &GeneralAddressListMediatype;
1541                         AddressListPref = &GeneralAddressListPref;              
1542                         break;
1543                 case PROPERTY_HOME:
1544                         AddressList = &HomeAddressList;
1545                         AddressListTown = &HomeAddressListTown;
1546                         AddressListCounty = &HomeAddressListCounty;
1547                         AddressListPostCode = &HomeAddressListPostCode;
1548                         AddressListCountry = &HomeAddressListCountry;
1549                         AddressListLabel = &HomeAddressListLabel;
1550                         AddressListLang = &HomeAddressListLang;         
1551                         AddressListAltID = &HomeAddressListAltID;
1552                         AddressListPID = &HomeAddressListPID;
1553                         AddressListTokens = &HomeAddressListTokens;
1554                         AddressListGeo = &HomeAddressListGeo;
1555                         AddressListTimezone = &HomeAddressListTimezone;
1556                         AddressListType = &HomeAddressListType;
1557                         AddressListMediatype = &HomeAddressListMediatype;
1558                         AddressListPref = &HomeAddressListPref;
1559                         break;
1560                 case PROPERTY_WORK:
1561                         AddressList = &BusinessAddressList;
1562                         AddressListTown = &BusinessAddressListTown;
1563                         AddressListCounty = &BusinessAddressListCounty;
1564                         AddressListPostCode = &BusinessAddressListPostCode;
1565                         AddressListCountry = &BusinessAddressListCountry;
1566                         AddressListLabel = &BusinessAddressListLabel;
1567                         AddressListLang = &BusinessAddressListLang;             
1568                         AddressListAltID = &BusinessAddressListAltID;
1569                         AddressListPID = &BusinessAddressListPID;
1570                         AddressListTokens = &BusinessAddressListTokens;
1571                         AddressListGeo = &BusinessAddressListGeo;
1572                         AddressListTimezone = &BusinessAddressListTimezone;
1573                         AddressListType = &BusinessAddressListType;
1574                         AddressListMediatype = &BusinessAddressListMediatype;
1575                         AddressListPref = &BusinessAddressListPref;
1576                         break;
1577         }
1578         
1579         intPrevValue = 4;
1580         
1581         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1582         intiter != SplitPoints.end(); ++intiter){
1583         
1584                 SLiter = SplitLength.find(intiter->first);
1585                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1586                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1587                 intPrevValue = intiter->second;
1588                 
1589                 if (PropertyName == "GEO"){
1590                 
1591                         CaptureString(&PropertyValue, TRUE); 
1592                 
1593                 } else {
1594                 
1595                         CaptureString(&PropertyValue, FALSE);                   
1596                 
1597                 }
1598                 
1599                 // Process properties.
1600                 
1601                 ProcessStringValue(&PropertyName, "LABEL", AddressListLabel, &PropertyValue, AddressCount, &PropertyMatched);
1602                 ProcessStringValue(&PropertyName, "LANGUAGE", AddressListLang, &PropertyValue, AddressCount, &PropertyMatched);
1603                 ProcessStringValue(&PropertyName, "ALTID", AddressListAltID, &PropertyValue, AddressCount, &PropertyMatched);
1604                 ProcessStringValue(&PropertyName, "PID", AddressListPID, &PropertyValue, AddressCount, &PropertyMatched);
1605                 ProcessStringValue(&PropertyName, "GEO", AddressListGeo, &PropertyValue, AddressCount, &PropertyMatched);
1606                 ProcessStringValue(&PropertyName, "TZ", AddressListTimezone, &PropertyValue, AddressCount, &PropertyMatched);
1607                 ProcessStringValue(&PropertyName, "MEDIATYPE", AddressListMediatype, &PropertyValue, AddressCount, &PropertyMatched);
1608                 ProcessIntegerValue(&PropertyName, "PREF", AddressListPref, &PropertyValue, AddressCount, &PropertyMatched);
1609                 
1610                 if (PropertyMatched == TRUE){
1611                 
1612                         PropertyMatched = FALSE;
1613                         continue;
1614                 
1615                 }
1616                 
1617                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1618         
1619         }                       
1620         
1621         // Split the address. 
1623         //std::map<int, int>::iterator SLiter;
1624         intPropertyLen = PropertySeg2.Len();
1625         SplitPoints.clear();
1626         SplitLength.clear();
1627         intSplitsFound = 0;
1628         intSplitSize = 0;
1629         intPrevValue = 0;
1630         
1631         for (int i = 0; i <= intPropertyLen; i++){
1633                 intSplitSize++;
1634         
1635                 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
1636         
1637                         intSplitsFound++;
1638                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
1639                         
1640                         if (intSplitsFound == 6){ 
1641                         
1642                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1643                                 break; 
1644                                 
1645                         } else {
1646                         
1647                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
1648                         
1649                         }
1650                         
1651                         intSplitSize = 0;                                       
1652         
1653                 }
1655         }
1656         
1657         // Split the data into several parts.                   
1658         
1659         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1660         intiter != SplitPoints.end(); ++intiter){
1661                         
1662                 if (intiter->first == 1){
1663                 
1664                         // Deal with PO Box.
1665                         
1666                         SLiter = SplitLength.find(1);
1667                                                                 
1668                         AddressPOBox = PropertySeg2.Mid(0, SLiter->second);
1669                         intPrevValue = intiter->second;
1670                 
1671                 } else if (intiter->first == 2){
1672                 
1673                         // Deal with extended address.
1674                         
1675                         SLiter = SplitLength.find(2);
1676                         
1677                         AddressExtended = PropertySeg2.Mid(intPrevValue, SLiter->second);
1678                         intPrevValue = intiter->second;
1679                 
1680                 } else if (intiter->first == 3){
1681                 
1682                         // Deal with street address.
1683                         
1684                         SLiter = SplitLength.find(3);
1685                                                                 
1686                         AddressStreet = PropertySeg2.Mid(intPrevValue, SLiter->second);
1687                         intPrevValue = intiter->second;
1688                 
1689                 } else if (intiter->first == 4){
1690                 
1691                         // Deal with locality
1693                         SLiter = SplitLength.find(4);
1694                         
1695                         AddressLocality = PropertySeg2.Mid(intPrevValue, SLiter->second);
1696                         intPrevValue = intiter->second;
1697                 
1698                 } else if (intiter->first == 5){
1699                 
1700                         // Deal with region.
1702                         SLiter = SplitLength.find(5);
1703                         
1704                         AddressRegion = PropertySeg2.Mid(intPrevValue, SLiter->second);
1705                         intPrevValue = intiter->second;
1706                         
1707                 
1708                 } else if (intiter->first == 6){
1709                 
1710                         // Deal with post code.
1712                         SLiter = SplitLength.find(6);
1713                         
1714                         AddressPostalCode = PropertySeg2.Mid(intPrevValue, SLiter->second);
1715                         intPrevValue = intiter->second;
1716                         
1717                         // Deal with country.
1718                                                 
1719                         AddressCountry = PropertySeg2.Mid(intPrevValue, wxString::npos);
1721                         break;
1722                 
1723                 }
1724         
1725         }       
1726         
1727         // Add the data to the General/Home/Work address variables.
1728         
1729         CaptureString(&AddressStreet, FALSE); 
1730         CaptureString(&AddressLocality, FALSE);
1731         CaptureString(&AddressRegion, FALSE);
1732         CaptureString(&AddressPostalCode, FALSE);
1733         CaptureString(&AddressCountry, FALSE);
1734                 
1735         if (!PropertyTokens.IsEmpty()){
1736         
1737                 AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
1738         
1739         }
1741         AddressListCountry->insert(std::make_pair(*AddressCount, AddressCountry));      
1742         AddressList->insert(std::make_pair(*AddressCount, AddressStreet));
1743         AddressListTown->insert(std::make_pair(*AddressCount, AddressLocality));
1744         AddressListCounty->insert(std::make_pair(*AddressCount, AddressRegion));
1745         AddressListPostCode->insert(std::make_pair(*AddressCount, AddressPostalCode));
1747         switch(PropType){
1748                 case PROPERTY_NONE:
1749                         AddressListType->insert(std::make_pair(*AddressCount, wxT("")));
1750                         break;
1751                 case PROPERTY_HOME:
1752                         AddressListType->insert(std::make_pair(*AddressCount, wxT("home")));
1753                         break;
1754                 case PROPERTY_WORK:
1755                         AddressListType->insert(std::make_pair(*AddressCount, wxT("work")));    
1756                         break;
1757         }
1758         
1759         AddressListTokens->insert(std::make_pair(*AddressCount, PropertyTokens));
1763 void ContactDataObject::ProcessEmail(wxString PropertySeg1, wxString PropertySeg2, int *EmailCount){
1765         std::map<int, int> SplitPoints;
1766         std::map<int, int> SplitLength;
1768         int intPrevValue = 7;
1769         
1770         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1771         
1772         intPrevValue = 6;
1773         
1774         PropertyType PropType = PROPERTY_NONE;
1775                 
1776         // Look for type before continuing.
1777         
1778         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1779         
1780         std::map<int, wxString> *EmailList = NULL;
1781         std::map<int, wxString> *EmailListType = NULL;
1782         std::map<int, wxString> *EmailListAltID = NULL;
1783         std::map<int, wxString> *EmailListPID = NULL;
1784         std::map<int, wxString> *EmailListTokens = NULL;                
1785         std::map<int, int> *EmailListPref = NULL;
1787         switch(PropType){
1788                 case PROPERTY_NONE:
1789                         EmailList = &GeneralEmailList;
1790                         EmailListType = &GeneralEmailListType;
1791                         EmailListAltID = &GeneralEmailListAltID;
1792                         EmailListPID = &GeneralEmailListPID;
1793                         EmailListTokens = &GeneralEmailListTokens;              
1794                         EmailListPref = &GeneralEmailListPref;  
1795                         break;
1796                 case PROPERTY_HOME:
1797                         EmailList = &HomeEmailList;
1798                         EmailListType = &HomeEmailListType;
1799                         EmailListAltID = &HomeEmailListAltID;
1800                         EmailListPID = &HomeEmailListPID;
1801                         EmailListTokens = &HomeEmailListTokens;         
1802                         EmailListPref = &HomeEmailListPref;     
1803                         break;
1804                 case PROPERTY_WORK:
1805                         EmailList = &BusinessEmailList;
1806                         EmailListType = &BusinessEmailListType;
1807                         EmailListAltID = &BusinessEmailListAltID;
1808                         EmailListPID = &BusinessEmailListPID;
1809                         EmailListTokens = &BusinessEmailListTokens;             
1810                         EmailListPref = &BusinessEmailListPref; 
1811                         break;
1812         }
1813         
1814         intPrevValue = 6;
1815         
1816         std::map<int,int>::iterator SLiter;
1817         wxString PropertyData;
1818         wxString PropertyName;
1819         wxString PropertyValue;
1820         wxString PropertyTokens;
1821         bool FirstToken = TRUE;
1822         bool PropertyMatched = FALSE;
1823         
1824         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1825         intiter != SplitPoints.end(); ++intiter){
1826         
1827                 SLiter = SplitLength.find(intiter->first);
1828                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1829                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1830                 intPrevValue = intiter->second;
1831                 
1832                 CaptureString(&PropertyValue, FALSE);
1833                 
1834                 // Process properties.
1835                 
1836                 ProcessStringValue(&PropertyName, "ALTID", EmailListAltID, &PropertyValue, EmailCount, &PropertyMatched);
1837                 ProcessStringValue(&PropertyName, "PID", EmailListPID, &PropertyValue, EmailCount, &PropertyMatched);
1838                 ProcessIntegerValue(&PropertyName, "PREF", EmailListPref, &PropertyValue, EmailCount, &PropertyMatched);
1839                 
1840                 if (PropertyMatched == TRUE){
1841                 
1842                         PropertyMatched = FALSE;
1843                         continue;
1844                 
1845                 }
1846                 
1847                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1848         
1849         }
1850         
1851         EmailList->insert(std::make_pair(*EmailCount, PropertySeg2));
1852         
1853         // Add the name token data.
1854         
1855         if (!PropertyTokens.IsEmpty()){
1856         
1857                 EmailListTokens->insert(std::make_pair(*EmailCount, PropertyTokens));
1858         
1859         }       
1864 void ContactDataObject::ProcessIM(wxString PropertySeg1, wxString PropertySeg2, int *IMCount){
1866         std::map<int, int> SplitPoints;
1867         std::map<int, int> SplitLength;
1869         int intPrevValue = 6;
1870         
1871         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
1872         
1873         intPrevValue = 5;
1874         
1875         PropertyType PropType = PROPERTY_NONE;
1876                 
1877         // Look for type before continuing.
1878         
1879         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
1880         
1881         std::map<int, wxString> *IMList = NULL;
1882         std::map<int, wxString> *IMListType = NULL;
1883         std::map<int, wxString> *IMListAltID = NULL;
1884         std::map<int, wxString> *IMListPID = NULL;
1885         std::map<int, wxString> *IMListTokens = NULL;
1886         std::map<int, wxString> *IMListMediatype = NULL;
1887         std::map<int, wxString> *IMListTypeInfo = NULL;
1888         std::map<int, int> *IMListPref = NULL;
1890         switch(PropType){
1891                 case PROPERTY_NONE:
1892                         IMList = &GeneralIMList;
1893                         IMListType = &GeneralIMListType;
1894                         IMListAltID = &GeneralIMListAltID;
1895                         IMListPID = &GeneralIMListPID;
1896                         IMListTokens = &GeneralIMListTokens;
1897                         IMListMediatype = &GeneralIMListMediatype;
1898                         IMListTypeInfo = &GeneralIMListTypeInfo;
1899                         IMListPref = &GeneralIMListPref;        
1900                         break;
1901                 case PROPERTY_HOME:
1902                         IMList = &HomeIMList;
1903                         IMListType = &HomeIMListType;
1904                         IMListAltID = &HomeIMListAltID;
1905                         IMListPID = &HomeIMListPID;
1906                         IMListTokens = &HomeIMListTokens;
1907                         IMListMediatype = &HomeIMListMediatype; 
1908                         IMListTypeInfo = &HomeIMListTypeInfo;   
1909                         IMListPref = &HomeIMListPref;   
1910                         break;
1911                 case PROPERTY_WORK:
1912                         IMList = &BusinessIMList;
1913                         IMListType = &BusinessIMListType;
1914                         IMListAltID = &BusinessIMListAltID;
1915                         IMListPID = &BusinessIMListPID;
1916                         IMListTokens = &BusinessIMListTokens;   
1917                         IMListMediatype = &BusinessIMListMediatype;
1918                         IMListTypeInfo = &BusinessIMListTypeInfo;
1919                         IMListPref = &BusinessIMListPref;       
1920                         break;
1921         }
1922         
1923         intPrevValue = 5;
1924         
1925         std::map<int,int>::iterator SLiter;
1926         wxString PropertyData;
1927         wxString PropertyName;
1928         wxString PropertyValue;
1929         wxString PropertyTokens;
1930         bool FirstToken = TRUE;
1931         bool PropertyMatched = FALSE;
1932         
1933         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
1934         intiter != SplitPoints.end(); ++intiter){
1935         
1936                 SLiter = SplitLength.find(intiter->first);
1937                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
1938                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
1939                 intPrevValue = intiter->second;
1940                 
1941                 CaptureString(&PropertyValue, FALSE);
1942                 
1943                 ProcessStringValue(&PropertyName, "ALTID", IMListAltID, &PropertyValue, IMCount, &PropertyMatched);
1944                 ProcessStringValue(&PropertyName, "PID", IMListPID, &PropertyValue, IMCount, &PropertyMatched);
1945                 ProcessStringValue(&PropertyName, "MEDIATYPE", IMListMediatype, &PropertyValue, IMCount, &PropertyMatched);
1946                 ProcessIntegerValue(&PropertyName, "PREF", IMListPref, &PropertyValue, IMCount, &PropertyMatched);
1947                 
1948                 // Process properties.
1949                 
1950                 if (PropertyMatched == TRUE){
1951                         
1952                         PropertyMatched = FALSE;
1953                         continue;
1954                 
1955                 }
1956                 
1957                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
1958         
1959         }
1960                 
1961         wxStringTokenizer IMPPSplitData(PropertySeg2, wxT(":"));
1962                 
1963         if (IMPPSplitData.CountTokens() > 1){
1965                 IMListTypeInfo->insert(std::make_pair(*IMCount, IMPPSplitData.GetNextToken()));
1966                 IMList->insert(std::make_pair(*IMCount, IMPPSplitData.GetString()));
1967         
1968         } else {
1969         
1970                 IMList->insert(std::make_pair(*IMCount, PropertySeg2));
1971                 IMListTypeInfo->insert(std::make_pair(*IMCount, "none"));
1972         
1973         }
1974         
1975         // Add the name token data.
1976         
1977         if (!PropertyTokens.IsEmpty()){
1978         
1979                 IMListTokens->insert(std::make_pair(*IMCount, PropertyTokens));
1980         
1981         }
1985 void ContactDataObject::ProcessTelephone(wxString PropertySeg1, wxString PropertySeg2, int *TelephoneCount){
1987         std::map<int, int> SplitPoints;
1988         std::map<int, int> SplitLength;
1989         std::map<int, int>::iterator SLiter;
1990         
1991         PropertyType PropType = PROPERTY_NONE;
1992                 
1993         // Look for type before continuing.
1994         
1995         wxString TelTypeUI;
1996         wxString TelTypeDetail;
1997         wxString PropertyData;
1998         wxString PropertyName;
1999         wxString PropertyValue;
2000         wxString PropertyTokens;
2001         
2002         std::map<int,int> TypeSplitPoints;
2003         std::map<int,int> TypeSplitLength;
2004         std::map<int,int>::iterator TSLiter;
2005         
2006         int intSplitSize = 0;
2007         int intSplitsFound = 0;
2008         int intSplitPoint = 0;
2009         int intType = 0;
2010         int intPrevValue = 5;
2011                 
2012         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2013         
2014         intPrevValue = 4;
2015         
2016         // Look for type before continuing.
2017         
2018         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2019         intiter != SplitPoints.end(); ++intiter){
2020         
2021                 SLiter = SplitLength.find(intiter->first);
2022                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2023                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2024                 intPrevValue = intiter->second;
2026                 if (PropertyName == wxT("TYPE")){
2027                 
2028                         // Process each value in type and translate each
2029                         // part.
2030                 
2031                         // Strip out the quotes if they are there.
2032                 
2033                         size_t intPropertyValueLen = PropertyValue.Len();
2034                 
2035                         if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2036                         
2037                                 PropertyValue.Trim();
2038                                 PropertyValue.RemoveLast();
2039                         
2040                         }                               
2041                 
2042                         if (PropertyValue.Mid(0, 1) == wxT("\"")){
2043                         
2044                                 PropertyValue.Remove(0, 1);
2045                         
2046                         }
2047                         
2048                         TelTypeDetail = PropertyValue;
2049                         
2050                         intSplitSize = 0;
2051                         intSplitsFound = 0;
2052                         intSplitPoint = 0;
2053                         
2054                         for (int i = 0; i <= intPropertyValueLen; i++){
2055         
2056                                 intSplitSize++;
2057         
2058                                 if (PropertyValue.Mid(i, 1) == wxT(",") && PropertyValue.Mid((i - 1), 1) != wxT("\\")){
2059         
2060                                         if (intSplitsFound == 0){
2062                                                 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2063                                                 TypeSplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
2064                         
2065                                         } else {
2066                         
2067                                                 TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2068                                                 TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
2069                         
2070                                         }                       
2072                                         intSplitsFound++;
2073                                         i++;
2074                                         intSplitPoint = i;
2075                                         intSplitSize = 0;
2076         
2077                                 }
2078         
2079                         }
2080                         
2081                         TypeSplitPoints.insert(std::make_pair(intSplitsFound, intSplitPoint));
2082                         TypeSplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));                                                           
2083                 
2084                         int intTypeSeek = 0;
2085                 
2086                         for (std::map<int, int>::iterator typeiter = TypeSplitPoints.begin(); 
2087                         typeiter != TypeSplitPoints.end(); ++typeiter){
2088                                                 
2089                                 wxString TypePropertyName;
2090                                 
2091                                 TSLiter = TypeSplitLength.find(typeiter->first);
2092                                 
2093                                 TypePropertyName = PropertyValue.Mid(typeiter->second, TSLiter->second);
2094                                 
2095                                 if (intTypeSeek == 0){
2096                                 
2097                                 
2098                                 } else {
2099                                                                                 
2100                                         TelTypeUI.Append(wxT(","));                                                     
2101                                 
2102                                 }
2104                                 if (TypePropertyName == wxT("home")){
2105                                 
2106                                         PropType = PROPERTY_HOME;
2107                                 
2108                                 } else if (TypePropertyName == wxT("work")){
2109                                 
2110                                         PropType = PROPERTY_WORK;
2111                                                                         
2112                                 }
2113                                 
2114                                 
2115                                 if (TypePropertyName == wxT("text")){
2116                                 
2117                                         TelTypeUI.Append(_("text"));
2118                                         intTypeSeek++;
2119                                 
2120                                 } else if (TypePropertyName == wxT("voice")){
2121                                 
2122                                         TelTypeUI.Append(_("voice"));
2123                                         intTypeSeek++;
2124                                 
2125                                 } else if (TypePropertyName == wxT("fax")){
2126                                 
2127                                         TelTypeUI.Append(_("fax"));
2128                                         intTypeSeek++;
2129                                 
2130                                 } else if (TypePropertyName == wxT("cell")){
2131                                 
2132                                         TelTypeUI.Append(_("cell"));
2133                                         intTypeSeek++;
2134                                 
2135                                 } else if (TypePropertyName == wxT("video")){
2136                                 
2137                                         TelTypeUI.Append(_("video"));
2138                                         intTypeSeek++;
2139                                 
2140                                 } else if (TypePropertyName == wxT("pager")){
2141                                 
2142                                         TelTypeUI.Append(_("pager"));
2143                                         intTypeSeek++;
2144                                 
2145                                 } else if (TypePropertyName == wxT("textphone")){
2146                                 
2147                                         TelTypeUI.Append(_("textphone"));
2148                                         intTypeSeek++;
2149                                 
2150                                 }
2151                         
2152                         }
2153                 
2154                 }
2155                 
2156         }
2157         
2158         std::map<int, wxString> *TelephoneList = NULL;
2159         std::map<int, wxString> *TelephoneListType = NULL;
2160         std::map<int, wxString> *TelephoneListAltID = NULL;
2161         std::map<int, wxString> *TelephoneListPID = NULL;
2162         std::map<int, wxString> *TelephoneListTokens = NULL;
2163         std::map<int, wxString> *TelephoneListTypeInfo = NULL;
2164         std::map<int, wxString> *TelephoneListDataType = NULL;
2165         std::map<int, int> *TelephoneListPref = NULL;
2167         switch(PropType){
2168                 case PROPERTY_NONE:
2169                         TelephoneList = &GeneralTelephoneList;
2170                         TelephoneListType = &GeneralTelephoneListType;
2171                         TelephoneListAltID = &GeneralTelephoneListAltID;
2172                         TelephoneListPID = &GeneralTelephoneListPID;
2173                         TelephoneListTokens = &GeneralTelephoneListTokens;
2174                         TelephoneListTypeInfo = &GeneralTelephoneListTypeInfo;
2175                         TelephoneListDataType = &GeneralTelephoneListDataType;
2176                         TelephoneListPref = &GeneralTelephoneListPref;  
2177                         break;
2178                 case PROPERTY_HOME:
2179                         TelephoneList = &HomeTelephoneList;
2180                         TelephoneListType = &HomeTelephoneListType;
2181                         TelephoneListAltID = &HomeTelephoneListAltID;
2182                         TelephoneListPID = &HomeTelephoneListPID;
2183                         TelephoneListTokens = &HomeTelephoneListTokens;
2184                         TelephoneListTypeInfo = &HomeTelephoneListTypeInfo;
2185                         TelephoneListDataType = &HomeTelephoneListDataType;
2186                         TelephoneListPref = &HomeTelephoneListPref;     
2187                         break;
2188                 case PROPERTY_WORK:
2189                         TelephoneList = &BusinessTelephoneList;
2190                         TelephoneListType = &BusinessTelephoneListType;
2191                         TelephoneListAltID = &BusinessTelephoneListAltID;
2192                         TelephoneListPID = &BusinessTelephoneListPID;
2193                         TelephoneListTokens = &BusinessTelephoneListTokens;     
2194                         TelephoneListTypeInfo = &BusinessTelephoneListTypeInfo;
2195                         TelephoneListDataType = &BusinessTelephoneListDataType;
2196                         TelephoneListPref = &BusinessTelephoneListPref; 
2197                         break;
2198         }
2199                 
2200         // Process the properties.
2201         
2202         bool FirstToken = TRUE;
2203         
2204         intPrevValue = 5;
2205         SplitPoints.clear();
2206         SplitLength.clear();
2208         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2210         intPrevValue = 4;
2211         
2212         bool PropertyMatched = FALSE;
2213         
2214         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2215         intiter != SplitPoints.end(); ++intiter){
2216         
2217                 SLiter = SplitLength.find(intiter->first);
2218                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2219                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2220                 intPrevValue = intiter->second;
2221                 
2222                 CaptureString(&PropertyValue, FALSE);
2223                 
2224                 // Process properties.
2225                 
2226                 ProcessStringValue(&PropertyName, "ALTID", TelephoneListAltID, &PropertyValue, TelephoneCount, &PropertyMatched);
2227                 ProcessStringValue(&PropertyName, "PID", TelephoneListPID, &PropertyValue, TelephoneCount, &PropertyMatched);
2228                 ProcessIntegerValue(&PropertyName, "PREF", TelephoneListPref, &PropertyValue, TelephoneCount, &PropertyMatched);
2229                 
2230                 if (PropertyMatched == TRUE){
2231                 
2232                         PropertyMatched = FALSE;
2233                         continue;
2234                 
2235                 }
2237                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2238         
2239         }
2240                 
2241         // Check for the type information and split it down.
2242         
2243         wxStringTokenizer TelSplitData(PropertySeg2, wxT(":"));
2244                 
2245         if (TelSplitData.CountTokens() > 1){
2247                 TelephoneListDataType->insert(std::make_pair(*TelephoneCount, TelSplitData.GetNextToken()));                    
2248                 TelephoneList->insert(std::make_pair(*TelephoneCount, TelSplitData.GetString()));
2249         
2250         } else {
2251         
2252                 TelephoneList->insert(std::make_pair(*TelephoneCount, PropertySeg2));
2253                 TelephoneListDataType->insert(std::make_pair(*TelephoneCount, "tel"));
2254         
2255         }
2256                 
2257         TelephoneListTypeInfo->insert(std::make_pair(*TelephoneCount, TelTypeUI));
2258                 
2259         // Add the name token data.
2260         
2261         if (!PropertyTokens.IsEmpty()){
2262         
2263                 TelephoneListTokens->insert(std::make_pair(*TelephoneCount, PropertyTokens));
2264         
2265         }
2269 void ContactDataObject::ProcessLanguage(wxString PropertySeg1, wxString PropertySeg2, int *LanguageCount){
2271         std::map<int, int> SplitPoints;
2272         std::map<int, int> SplitLength;
2274         int intPrevValue = 6;
2275         
2276         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2277         
2278         intPrevValue = 5;
2279         
2280         PropertyType PropType = PROPERTY_NONE;
2281                 
2282         // Look for type before continuing.
2283         
2284         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2285         
2286         std::map<int, wxString> *LanguageList = NULL;
2287         std::map<int, wxString> *LanguageListType = NULL;
2288         std::map<int, wxString> *LanguageListAltID = NULL;
2289         std::map<int, wxString> *LanguageListPID = NULL;
2290         std::map<int, wxString> *LanguageListTokens = NULL;
2291         std::map<int, int> *LanguageListPref = NULL;
2293         switch(PropType){
2294                 case PROPERTY_NONE:
2295                         LanguageList = &GeneralLanguageList;
2296                         LanguageListType = &GeneralLanguageListType;
2297                         LanguageListAltID = &GeneralLanguageListAltID;
2298                         LanguageListPID = &GeneralLanguageListPID;
2299                         LanguageListTokens = &GeneralLanguageListTokens;
2300                         LanguageListPref = &GeneralLanguageListPref;    
2301                         break;
2302                 case PROPERTY_HOME:
2303                         LanguageList = &HomeLanguageList;
2304                         LanguageListType = &HomeLanguageListType;
2305                         LanguageListAltID = &HomeLanguageListAltID;
2306                         LanguageListPID = &HomeLanguageListPID;
2307                         LanguageListTokens = &HomeLanguageListTokens;   
2308                         LanguageListPref = &HomeLanguageListPref;       
2309                         break;
2310                 case PROPERTY_WORK:
2311                         LanguageList = &BusinessLanguageList;
2312                         LanguageListType = &BusinessLanguageListType;
2313                         LanguageListAltID = &BusinessLanguageListAltID;
2314                         LanguageListPID = &BusinessLanguageListPID;
2315                         LanguageListTokens = &BusinessLanguageListTokens;       
2316                         LanguageListPref = &BusinessLanguageListPref;
2317                         break;
2318         }
2319         
2320         intPrevValue = 5;
2321         
2322         std::map<int,int>::iterator SLiter;
2323         wxString PropertyData;
2324         wxString PropertyName;
2325         wxString PropertyValue;
2326         wxString PropertyTokens;
2327         bool FirstToken = TRUE;
2328         bool PropertyMatched = FALSE;
2329         
2330         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2331         intiter != SplitPoints.end(); ++intiter){
2332         
2333                 SLiter = SplitLength.find(intiter->first);
2334                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2335                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2336                 intPrevValue = intiter->second;
2338                 CaptureString(&PropertyValue, FALSE);
2339                 
2340                 // Process properties.
2341                 
2342                 ProcessStringValue(&PropertyName, "ALTID", LanguageListAltID, &PropertyValue, LanguageCount, &PropertyMatched);
2343                 ProcessStringValue(&PropertyName, "PID", LanguageListPID, &PropertyValue, LanguageCount, &PropertyMatched);
2344                 ProcessIntegerValue(&PropertyName, "PREF", LanguageListPref, &PropertyValue, LanguageCount, &PropertyMatched);
2346                 if (PropertyMatched == TRUE){
2347                 
2348                         PropertyMatched = FALSE;
2349                         continue;
2350                 
2351                 }
2352                 
2353                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2354         
2355         }
2356                 
2357         LanguageList->insert(std::make_pair(*LanguageCount, PropertySeg2));
2358         
2359         // Add the name token data.
2360         
2361         if (!PropertyTokens.IsEmpty()){
2362         
2363                 LanguageListTokens->insert(std::make_pair(*LanguageCount, PropertyTokens));
2364         
2365         }
2369 void ContactDataObject::ProcessGeographic(wxString PropertySeg1, wxString PropertySeg2, int *GeographicCount){
2371         std::map<int, int> SplitPoints;
2372         std::map<int, int> SplitLength;
2374         int intPrevValue = 5;
2375         
2376         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2377         
2378         intPrevValue = 4;
2379         
2380         PropertyType PropType = PROPERTY_NONE;
2381                 
2382         // Look for type before continuing.
2383         
2384         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2385         
2386         std::map<int, wxString> *GeopositionList = NULL;
2387         std::map<int, wxString> *GeopositionListType = NULL;
2388         std::map<int, wxString> *GeopositionListAltID = NULL;
2389         std::map<int, wxString> *GeopositionListPID = NULL;
2390         std::map<int, wxString> *GeopositionListTokens = NULL;
2391         std::map<int, wxString> *GeopositionListMediatype = NULL;
2392         std::map<int, int> *GeopositionListPref = NULL;
2394         switch(PropType){
2395                 case PROPERTY_NONE:
2396                         GeopositionList = &GeneralGeographyList;
2397                         GeopositionListType = &GeneralGeographyListType;
2398                         GeopositionListAltID = &GeneralGeographyListAltID;
2399                         GeopositionListPID = &GeneralGeographyListPID;
2400                         GeopositionListTokens = &GeneralGeographyListTokens;
2401                         GeopositionListMediatype = &GeneralGeographyListMediatype;
2402                         GeopositionListPref = &GeneralGeographyListPref;        
2403                         break;
2404                 case PROPERTY_HOME:
2405                         GeopositionList = &HomeGeographyList;
2406                         GeopositionListType = &HomeGeographyListType;
2407                         GeopositionListAltID = &HomeGeographyListAltID;
2408                         GeopositionListPID = &HomeGeographyListPID;
2409                         GeopositionListTokens = &HomeGeographyListTokens;
2410                         GeopositionListMediatype = &HomeGeographyListMediatype;
2411                         GeopositionListPref = &HomeGeographyListPref;   
2412                         break;
2413                 case PROPERTY_WORK:
2414                         GeopositionList = &BusinessGeographyList;
2415                         GeopositionListType = &BusinessGeographyListType;
2416                         GeopositionListAltID = &BusinessGeographyListAltID;
2417                         GeopositionListPID = &BusinessGeographyListPID;
2418                         GeopositionListTokens = &BusinessGeographyListTokens;
2419                         GeopositionListMediatype = &BusinessGeographyListMediatype;     
2420                         GeopositionListPref = &BusinessGeographyListPref;
2421                         break;
2422         }
2423         
2424         intPrevValue = 4;
2425         
2426         std::map<int,int>::iterator SLiter;
2427         wxString PropertyData;
2428         wxString PropertyName;
2429         wxString PropertyValue;
2430         wxString PropertyTokens;
2431         bool FirstToken = TRUE;
2432         bool PropertyMatched = FALSE;
2433         
2434         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2435         intiter != SplitPoints.end(); ++intiter){
2436         
2437                 SLiter = SplitLength.find(intiter->first);
2438                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2439                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2440                 intPrevValue = intiter->second;
2441                 
2442                 CaptureString(&PropertyValue, FALSE);
2443                 
2444                 // Process properties.
2445                 
2446                 ProcessStringValue(&PropertyName, "ALTID", GeopositionListAltID, &PropertyValue, GeographicCount, &PropertyMatched);
2447                 ProcessStringValue(&PropertyName, "PID", GeopositionListPID, &PropertyValue, GeographicCount, &PropertyMatched);
2448                 ProcessStringValue(&PropertyName, "MEDIATYPE", GeopositionListMediatype, &PropertyValue, GeographicCount, &PropertyMatched);
2449                 ProcessIntegerValue(&PropertyName, "PREF", GeopositionListPref, &PropertyValue, GeographicCount, &PropertyMatched);
2450                 
2451                 if (PropertyMatched == TRUE){
2452                 
2453                         PropertyMatched = FALSE;
2454                         continue;
2455                 
2456                 }
2457                 
2458                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2459         
2460         }
2461                 
2462         GeopositionList->insert(std::make_pair(*GeographicCount, PropertySeg2));
2463         
2464         // Add the name token data.
2465         
2466         if (!PropertyTokens.IsEmpty()){
2467         
2468                 GeopositionListTokens->insert(std::make_pair(*GeographicCount, PropertyTokens));
2469         
2470         }
2474 void ContactDataObject::ProcessRelated(wxString PropertySeg1, wxString PropertySeg2, int *RelatedCount){
2476         size_t intPropertyLen = PropertySeg1.Len();
2477         std::map<int, int> SplitPoints;
2478         std::map<int, int> SplitLength;
2479         std::map<int, int>::iterator SLiter;                    
2480         wxString PropertyData;
2481         wxString PropertyName;
2482         wxString PropertyValue;
2483         wxString PropertyTokens;
2484         wxString RelatedType;
2485         wxString RelatedTypeOriginal;                   
2486         wxString RelatedName;
2487         bool FirstToken = TRUE;                 
2488         int intSplitsFound = 0;
2489         int intSplitSize = 0;
2490         int intPrevValue = 9;
2491         
2492         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2493         
2494         intPrevValue = 8;
2495         
2496         // Look for type before continuing.
2497         
2498         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2499         intiter != SplitPoints.end(); ++intiter){
2500         
2501                 SLiter = SplitLength.find(intiter->first);
2502                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2503                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2504                 intPrevValue = intiter->second;
2505                 
2506                 // Process these.
2507                 
2508                 RelatedTypeOriginal = PropertyValue;
2509                 
2510                 if (PropertyName == wxT("TYPE")){
2511                 
2512                         if (PropertyValue == wxT("contact")){
2514                                 RelatedType = _("Contact");
2516                         } else if (PropertyValue == wxT("acquaintance")){
2518                                 RelatedType = _("Acquaintance");
2520                         } else if (PropertyValue == wxT("friend")){
2522                                 RelatedType = _("Friend");
2524                         } else if (PropertyValue == wxT("met")){
2526                                 RelatedType = _("Met");
2528                         } else if (PropertyValue == wxT("co-worker")){
2530                                 RelatedType = _("Co-worker");
2532                         } else if (PropertyValue == wxT("colleague")){
2534                                 RelatedType = _("Colleague");
2536                         } else if (PropertyValue == wxT("co-resident")){
2538                                 RelatedType = _("Co-resident");
2540                         } else if (PropertyValue == wxT("neighbor")){
2542                                 RelatedType = _("Neighbour");
2544                         } else if (PropertyValue == wxT("child")){
2546                                 RelatedType = _("Child");
2548                         } else if (PropertyValue == wxT("parent")){
2550                                 RelatedType = _("Parent");
2552                         } else if (PropertyValue == wxT("sibling")){
2554                                 RelatedType = _("Sibling");
2556                         } else if (PropertyValue == wxT("spouse")){
2558                                 RelatedType = _("Spouse");
2560                         } else if (PropertyValue == wxT("kin")){
2562                                 RelatedType = _("Kin");
2564                         } else if (PropertyValue == wxT("muse")){
2566                                 RelatedType = _("Muse");
2568                         } else if (PropertyValue == wxT("crush")){
2570                                 RelatedType = _("Crush");
2572                         } else if (PropertyValue == wxT("date")){
2574                                 RelatedType = _("Date");
2576                         } else if (PropertyValue == wxT("sweetheart")){
2578                                 RelatedType = _("Sweetheart");
2580                         } else if (PropertyValue == wxT("me")){
2582                                 RelatedType = _("Me");
2584                         } else if (PropertyValue == wxT("agent")){
2586                                 RelatedType = _("Agent");
2588                         } else if (PropertyValue == wxT("emergency")){
2590                                 RelatedType = _("Emergency");
2592                         } else {
2594                                 RelatedType = PropertyValue;
2596                         }
2597                 
2598                 }
2599         
2600         }
2601         
2602         intPrevValue = 8;                       
2603         
2604         bool PropertyMatched = FALSE;
2605         
2606         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2607         intiter != SplitPoints.end(); ++intiter){
2608         
2609                 SLiter = SplitLength.find(intiter->first);
2610                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2611                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2612                 intPrevValue = intiter->second;
2613                 
2614                 // Process properties.
2615                 
2616                 size_t intPropertyValueLen = PropertyValue.Len();
2617                 
2618                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2619                         
2620                         PropertyValue.Trim();
2621                         PropertyValue.RemoveLast();
2622                         
2623                 }                               
2624                 
2625                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2626                         
2627                         PropertyValue.Remove(0, 1);
2628                         
2629                 }
2630                 
2631                 CaptureString(&PropertyValue, FALSE);
2632                         
2633                 ProcessStringValue(&PropertyName, "ALTID", &GeneralRelatedListAltID, &PropertyValue, RelatedCount, &PropertyMatched);
2634                 ProcessStringValue(&PropertyName, "PID", &GeneralRelatedListPID, &PropertyValue, RelatedCount, &PropertyMatched);
2635                 ProcessStringValue(&PropertyName, "LANGUAGE", &GeneralRelatedListLanguage, &PropertyValue, RelatedCount, &PropertyMatched);
2636                 ProcessIntegerValue(&PropertyName, "PREF", &GeneralRelatedListPref, &PropertyValue, RelatedCount, &PropertyMatched);
2638                 if (PropertyMatched == TRUE){
2639                 
2640                         PropertyMatched = FALSE;
2641                         continue;
2642                 
2643                 }
2645                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2646         
2647         }                                       
2648         
2649         // Add the data to the General/Home/Work address variables.
2650                                 
2651         GeneralRelatedList.erase(*RelatedCount);
2652         GeneralRelatedListRelType.erase(*RelatedCount);
2653         GeneralRelatedListType.erase(*RelatedCount);
2654         GeneralRelatedListTokens.erase(*RelatedCount);
2655         GeneralRelatedList.insert(std::make_pair(*RelatedCount, PropertySeg2));
2656         GeneralRelatedListRelType.insert(std::make_pair(*RelatedCount, RelatedType));                   
2657         GeneralRelatedListType.insert(std::make_pair(*RelatedCount, RelatedType));
2658         GeneralRelatedListTokens.insert(std::make_pair(*RelatedCount, PropertyTokens));
2662 void ContactDataObject::ProcessURL(wxString PropertySeg1, wxString PropertySeg2, int *URLCount){
2664         std::map<int, int> SplitPoints;
2665         std::map<int, int> SplitLength;
2666         std::map<int, int>::iterator SLiter;                    
2667         wxString PropertyData;
2668         wxString PropertyName;
2669         wxString PropertyValue;
2670         wxString PropertyTokens;
2671         bool FirstToken = TRUE;
2672         int intPrevValue = 5;
2673         
2674         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2675         
2676         intPrevValue = 4;
2677         
2678         PropertyType PropType = PROPERTY_NONE;
2679                 
2680         // Look for type before continuing.
2681         
2682         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2683         
2684         // Setup the pointers.
2685         
2686         std::map<int, wxString> *WebsiteList = NULL;
2687         std::map<int, wxString> *WebsiteListAltID = NULL;
2688         std::map<int, wxString> *WebsiteListPID = NULL;
2689         std::map<int, wxString> *WebsiteListType = NULL;
2690         std::map<int, wxString> *WebsiteListTokens = NULL;
2691         std::map<int, wxString> *WebsiteListMediatype = NULL;
2692         std::map<int, int> *WebsiteListPref = NULL;
2693         
2694         // Setup blank lines for later on.
2695         
2696         switch(PropType){
2697                 case PROPERTY_NONE:
2698                         WebsiteList = &GeneralWebsiteList;
2699                         WebsiteListType = &GeneralWebsiteListType;
2700                         WebsiteListAltID = &GeneralWebsiteListAltID;
2701                         WebsiteListPID = &GeneralWebsiteListPID;
2702                         WebsiteListTokens = &GeneralWebsiteListTokens;
2703                         WebsiteListMediatype = &GeneralWebsiteListMediatype;
2704                         WebsiteListPref = &GeneralWebsiteListPref;      
2705                         break;
2706                 case PROPERTY_HOME:
2707                         WebsiteList = &HomeWebsiteList;
2708                         WebsiteListType = &HomeWebsiteListType;
2709                         WebsiteListAltID = &HomeWebsiteListAltID;
2710                         WebsiteListPID = &HomeWebsiteListPID;
2711                         WebsiteListTokens = &HomeWebsiteListTokens;
2712                         WebsiteListMediatype = &HomeWebsiteListMediatype;
2713                         WebsiteListPref = &HomeWebsiteListPref; 
2714                         break;
2715                 case PROPERTY_WORK:
2716                         WebsiteList = &BusinessWebsiteList;
2717                         WebsiteListType = &BusinessWebsiteListType;
2718                         WebsiteListAltID = &BusinessWebsiteListAltID;
2719                         WebsiteListPID = &BusinessWebsiteListPID;
2720                         WebsiteListTokens = &BusinessWebsiteListTokens;
2721                         WebsiteListMediatype = &BusinessWebsiteListMediatype;   
2722                         WebsiteListPref = &BusinessWebsiteListPref;
2723                         break;
2724         }
2725         
2726         intPrevValue = 4;
2727         bool PropertyMatched = FALSE;
2728         
2729         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2730         intiter != SplitPoints.end(); ++intiter){
2731         
2732                 SLiter = SplitLength.find(intiter->first);
2733                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2734                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2735                 intPrevValue = intiter->second;
2736                 
2737                 // Process properties.
2738                 
2739                 size_t intPropertyValueLen = PropertyValue.Len();
2740                 
2741                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2742                         
2743                         PropertyValue.Trim();
2744                         PropertyValue.RemoveLast();
2745                         
2746                 }                               
2747                 
2748                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2749                         
2750                         PropertyValue.Remove(0, 1);
2751                         
2752                 }
2753                 
2754                 CaptureString(&PropertyValue, FALSE);
2755                 
2756                 ProcessStringValue(&PropertyName, "ALTID", WebsiteListAltID, &PropertyValue, URLCount, &PropertyMatched);
2757                 ProcessStringValue(&PropertyName, "PID", WebsiteListPID, &PropertyValue, URLCount, &PropertyMatched);
2758                 ProcessStringValue(&PropertyName, "MEDIATYPE", WebsiteListMediatype, &PropertyValue, URLCount, &PropertyMatched);
2759                 ProcessIntegerValue(&PropertyName, "PREF", WebsiteListPref, &PropertyValue, URLCount, &PropertyMatched);
2760                 
2761                 if (PropertyMatched == TRUE){
2762                 
2763                         PropertyMatched = FALSE;
2764                         continue;
2765                 
2766                 }
2767                 
2768                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2769         
2770         }
2771         
2772         // Add the data to the General/Home/Work address variables.
2773         
2774         CaptureString(&PropertySeg2, FALSE);
2775                         
2776         WebsiteList->insert(std::make_pair(*URLCount, PropertySeg2));
2777         
2778         if (!PropertyTokens.IsEmpty()){
2779         
2780                 WebsiteListTokens->insert(std::make_pair(*URLCount, PropertyTokens));
2781                         
2782         }
2783         
2786 void ContactDataObject::ProcessTitle(wxString PropertySeg1, wxString PropertySeg2, int *TitleCount){
2788         std::map<int, int> SplitPoints;
2789         std::map<int, int> SplitLength;
2790         std::map<int, int>::iterator SLiter;                    
2791         wxString PropertyData;
2792         wxString PropertyName;
2793         wxString PropertyValue;
2794         wxString PropertyTokens;
2795         bool FirstToken = TRUE;
2796         int intPrevValue = 7;
2797         
2798         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2799         
2800         intPrevValue = 6;
2801         
2802         PropertyType PropType = PROPERTY_NONE;
2803                 
2804         // Look for type before continuing.
2805         
2806         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2807         
2808         // Setup the pointers.
2809         
2810         std::map<int, wxString> *TitleList = NULL;
2811         std::map<int, wxString> *TitleListAltID = NULL;
2812         std::map<int, wxString> *TitleListPID = NULL;
2813         std::map<int, wxString> *TitleListType = NULL;
2814         std::map<int, wxString> *TitleListTokens = NULL;
2815         std::map<int, wxString> *TitleListLanguage = NULL;
2816         std::map<int, int> *TitleListPref = NULL;
2817         
2818         // Setup blank lines for later on.
2819         
2820         switch(PropType){
2821                 case PROPERTY_NONE:
2822                         TitleList = &GeneralTitleList;
2823                         TitleListType = &GeneralTitleListType;
2824                         TitleListAltID = &GeneralTitleListAltID;
2825                         TitleListPID = &GeneralTitleListPID;
2826                         TitleListTokens = &GeneralTitleListTokens;
2827                         TitleListLanguage = &GeneralTitleListLanguage;
2828                         TitleListPref = &GeneralTitleListPref;  
2829                         break;
2830                 case PROPERTY_HOME:
2831                         TitleList = &HomeTitleList;
2832                         TitleListType = &HomeTitleListType;
2833                         TitleListAltID = &HomeTitleListAltID;
2834                         TitleListPID = &HomeTitleListPID;
2835                         TitleListTokens = &HomeTitleListTokens;
2836                         TitleListLanguage = &HomeTitleListLanguage;
2837                         TitleListPref = &HomeTitleListPref;     
2838                         break;
2839                 case PROPERTY_WORK:
2840                         TitleList = &BusinessTitleList;
2841                         TitleListType = &BusinessTitleListType;
2842                         TitleListAltID = &BusinessTitleListAltID;
2843                         TitleListPID = &BusinessTitleListPID;
2844                         TitleListTokens = &BusinessTitleListTokens;
2845                         TitleListLanguage = &BusinessTitleListLanguage; 
2846                         TitleListPref = &BusinessTitleListPref;
2847                         break;
2848         }
2850         intPrevValue = 6;
2851         bool PropertyMatched = FALSE;
2852                 
2853         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2854         intiter != SplitPoints.end(); ++intiter){
2855         
2856                 SLiter = SplitLength.find(intiter->first);
2857                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2858                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2859                 intPrevValue = intiter->second;
2860                 
2861                 // Process properties.
2862                 
2863                 size_t intPropertyValueLen = PropertyValue.Len();
2864                 
2865                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2866                         
2867                         PropertyValue.Trim();
2868                         PropertyValue.RemoveLast();
2869                         
2870                 }                               
2871                 
2872                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2873                         
2874                         PropertyValue.Remove(0, 1);
2875                         
2876                 }                               
2877                 
2878                 CaptureString(&PropertyValue, FALSE);
2879                 
2880                 ProcessStringValue(&PropertyName, "ALTID", TitleListAltID, &PropertyValue, TitleCount, &PropertyMatched);
2881                 ProcessStringValue(&PropertyName, "PID", TitleListPID, &PropertyValue, TitleCount, &PropertyMatched);
2882                 ProcessStringValue(&PropertyName, "LANGUAGE", TitleListLanguage, &PropertyValue, TitleCount, &PropertyMatched);
2883                 ProcessIntegerValue(&PropertyName, "PREF", TitleListPref, &PropertyValue, TitleCount, &PropertyMatched);
2884                 
2885                 if (PropertyMatched == TRUE){
2886                 
2887                         PropertyMatched = FALSE;
2888                         continue;
2889                 
2890                 }
2892                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
2893         
2894         }
2895         
2896         // Add the data to the General/Home/Work address variables.
2897         
2898         CaptureString(&PropertySeg2, FALSE);
2900         TitleList->insert(std::make_pair(*TitleCount, PropertySeg2));
2901         
2902         if (!PropertyTokens.IsEmpty()){
2903         
2904                 TitleListTokens->insert(std::make_pair(*TitleCount, PropertyTokens));
2905                         
2906         }
2910 void ContactDataObject::ProcessRole(wxString PropertySeg1, wxString PropertySeg2, int *RoleCount){
2912         std::map<int, int> SplitPoints;
2913         std::map<int, int> SplitLength;
2914         std::map<int, int>::iterator SLiter;                    
2915         wxString PropertyData;
2916         wxString PropertyName;
2917         wxString PropertyValue;
2918         wxString PropertyTokens;
2919         bool FirstToken = TRUE;
2920         int intPrevValue = 6;
2921         
2922         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
2923         
2924         intPrevValue = 5;
2925         
2926         PropertyType PropType = PROPERTY_NONE;
2927                 
2928         // Look for type before continuing.
2929         
2930         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
2931         
2932         // Setup the pointers.
2933         
2934         std::map<int, wxString> *RoleList = NULL;
2935         std::map<int, wxString> *RoleListAltID = NULL;
2936         std::map<int, wxString> *RoleListPID = NULL;
2937         std::map<int, wxString> *RoleListType = NULL;
2938         std::map<int, wxString> *RoleListTokens = NULL;
2939         std::map<int, wxString> *RoleListLanguage = NULL;
2940         std::map<int, int> *RoleListPref = NULL;
2941         
2942         // Setup blank lines for later on.
2943         
2944         switch(PropType){
2945                 case PROPERTY_NONE:
2946                         RoleList = &GeneralRoleList;
2947                         RoleListType = &GeneralRoleListType;
2948                         RoleListAltID = &GeneralRoleListAltID;
2949                         RoleListPID = &GeneralRoleListPID;
2950                         RoleListTokens = &GeneralRoleListTokens;
2951                         RoleListLanguage = &GeneralRoleListLanguage;
2952                         RoleListPref = &GeneralRoleListPref;    
2953                         break;
2954                 case PROPERTY_HOME:
2955                         RoleList = &HomeRoleList;
2956                         RoleListType = &HomeRoleListType;
2957                         RoleListAltID = &HomeRoleListAltID;
2958                         RoleListPID = &HomeRoleListPID;
2959                         RoleListTokens = &HomeRoleListTokens;
2960                         RoleListLanguage = &HomeRoleListLanguage;
2961                         RoleListPref = &HomeRoleListPref;       
2962                         break;
2963                 case PROPERTY_WORK:
2964                         RoleList = &BusinessRoleList;
2965                         RoleListType = &BusinessRoleListType;
2966                         RoleListAltID = &BusinessRoleListAltID;
2967                         RoleListPID = &BusinessRoleListPID;
2968                         RoleListTokens = &BusinessRoleListTokens;
2969                         RoleListLanguage = &BusinessRoleListLanguage;   
2970                         RoleListPref = &BusinessRoleListPref;
2971                         break;
2972         }
2974         intPrevValue = 5;
2975         bool PropertyMatched = FALSE;
2976                 
2977         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
2978         intiter != SplitPoints.end(); ++intiter){
2979         
2980                 SLiter = SplitLength.find(intiter->first);
2981                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
2982                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
2983                 intPrevValue = intiter->second;
2984                 
2985                 // Process properties.
2986                 
2987                 size_t intPropertyValueLen = PropertyValue.Len();
2988                 
2989                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
2990                         
2991                         PropertyValue.Trim();
2992                         PropertyValue.RemoveLast();
2993                         
2994                 }                               
2995                 
2996                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
2997                         
2998                         PropertyValue.Remove(0, 1);
2999                         
3000                 }                               
3001                 
3002                 CaptureString(&PropertyValue, FALSE);
3003                 
3004                 ProcessStringValue(&PropertyName, "ALTID", RoleListAltID, &PropertyValue, RoleCount, &PropertyMatched);
3005                 ProcessStringValue(&PropertyName, "PID", RoleListPID, &PropertyValue, RoleCount, &PropertyMatched);
3006                 ProcessStringValue(&PropertyName, "LANGUAGE", RoleListLanguage, &PropertyValue, RoleCount, &PropertyMatched);
3007                 ProcessIntegerValue(&PropertyName, "PREF", RoleListPref, &PropertyValue, RoleCount, &PropertyMatched);
3008                 
3009                 if (PropertyMatched == TRUE){
3010                 
3011                         PropertyMatched = FALSE;
3012                         continue;
3013                 
3014                 }
3015                 
3016                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3017                 
3018         }
3019         
3020         // Add the data to the General/Home/Work address variables.
3021         
3022         CaptureString(&PropertySeg2, FALSE);
3024         RoleList->insert(std::make_pair(*RoleCount, PropertySeg2));
3025         
3026         if (!PropertyTokens.IsEmpty()){
3027         
3028                 RoleListTokens->insert(std::make_pair(*RoleCount, PropertyTokens));
3029                         
3030         }
3034 void ContactDataObject::ProcessOrganisation(wxString PropertySeg1, wxString PropertySeg2, int *OrganisationCount){
3036         std::map<int, int> SplitPoints;
3037         std::map<int, int> SplitLength;
3038         std::map<int, int>::iterator SLiter;                    
3039         wxString PropertyData;
3040         wxString PropertyName;
3041         wxString PropertyValue;
3042         wxString PropertyTokens;
3043         bool FirstToken = TRUE;
3044         int intPrevValue = 5;
3045         
3046         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3047         
3048         intPrevValue = 4;
3049         
3050         PropertyType PropType = PROPERTY_NONE;
3051                 
3052         // Look for type before continuing.
3053         
3054         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3055         
3056         // Setup the pointers.
3057         
3058         std::map<int, wxString> *OrganisationsList = NULL;
3059         std::map<int, wxString> *OrganisationsListAltID = NULL;
3060         std::map<int, wxString> *OrganisationsListPID = NULL;
3061         std::map<int, wxString> *OrganisationsListType = NULL;
3062         std::map<int, wxString> *OrganisationsListTokens = NULL;
3063         std::map<int, wxString> *OrganisationsListLanguage = NULL;
3064         std::map<int, wxString> *OrganisationsListSortAs = NULL;
3065         std::map<int, int> *OrganisationsListPref = NULL;
3066         
3067         // Setup blank lines for later on.
3068         
3069         switch(PropType){
3070                 case PROPERTY_NONE:
3071                         OrganisationsList = &GeneralOrganisationsList;
3072                         OrganisationsListType = &GeneralOrganisationsListType;
3073                         OrganisationsListAltID = &GeneralOrganisationsListAltID;
3074                         OrganisationsListPID = &GeneralOrganisationsListPID;
3075                         OrganisationsListTokens = &GeneralOrganisationsListTokens;
3076                         OrganisationsListLanguage = &GeneralOrganisationsListLanguage;
3077                         OrganisationsListSortAs = &GeneralOrganisationsListSortAs;
3078                         OrganisationsListPref = &GeneralOrganisationsListPref;  
3079                         break;
3080                 case PROPERTY_HOME:
3081                         OrganisationsList = &HomeOrganisationsList;
3082                         OrganisationsListType = &HomeOrganisationsListType;
3083                         OrganisationsListAltID = &HomeOrganisationsListAltID;
3084                         OrganisationsListPID = &HomeOrganisationsListPID;
3085                         OrganisationsListTokens = &HomeOrganisationsListTokens;
3086                         OrganisationsListLanguage = &HomeOrganisationsListLanguage;
3087                         OrganisationsListSortAs = &HomeOrganisationsListSortAs;
3088                         OrganisationsListPref = &HomeOrganisationsListPref;     
3089                         break;
3090                 case PROPERTY_WORK:
3091                         OrganisationsList = &BusinessOrganisationsList;
3092                         OrganisationsListType = &BusinessOrganisationsListType;
3093                         OrganisationsListAltID = &BusinessOrganisationsListAltID;
3094                         OrganisationsListPID = &BusinessOrganisationsListPID;
3095                         OrganisationsListTokens = &BusinessOrganisationsListTokens;
3096                         OrganisationsListLanguage = &BusinessOrganisationsListLanguage;
3097                         OrganisationsListSortAs = &BusinessOrganisationsListSortAs;     
3098                         OrganisationsListPref = &BusinessOrganisationsListPref;
3099                         break;
3100         }
3102         intPrevValue = 4;
3103         bool PropertyMatched = FALSE;
3104                 
3105         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3106         intiter != SplitPoints.end(); ++intiter){
3107         
3108                 SLiter = SplitLength.find(intiter->first);
3109                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3110                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3111                 intPrevValue = intiter->second;
3112                 
3113                 // Process properties.
3114                 
3115                 size_t intPropertyValueLen = PropertyValue.Len();
3116                 
3117                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3118                         
3119                         PropertyValue.Trim();
3120                         PropertyValue.RemoveLast();
3121                         
3122                 }                               
3123                 
3124                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3125                         
3126                         PropertyValue.Remove(0, 1);
3127                         
3128                 }                               
3129                 
3130                 CaptureString(&PropertyValue, FALSE);
3131                 
3132                 ProcessStringValue(&PropertyName, "ALTID", OrganisationsListAltID, &PropertyValue, OrganisationCount, &PropertyMatched);
3133                 ProcessStringValue(&PropertyName, "PID", OrganisationsListPID, &PropertyValue, OrganisationCount, &PropertyMatched);
3134                 ProcessStringValue(&PropertyName, "LANGUAGE", OrganisationsListLanguage, &PropertyValue, OrganisationCount, &PropertyMatched);
3135                 ProcessStringValue(&PropertyName, "SORT-AS", OrganisationsListSortAs, &PropertyValue, OrganisationCount, &PropertyMatched);
3136                 ProcessIntegerValue(&PropertyName, "PREF", OrganisationsListPref, &PropertyValue, OrganisationCount, &PropertyMatched);
3137                 
3138                 if (PropertyMatched == TRUE){
3139                 
3140                         PropertyMatched = FALSE;
3141                         continue;
3142                 
3143                 }
3144                 
3145                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3147         }
3148         
3149         // Add the data to the General/Home/Work address variables.
3150         
3151         CaptureString(&PropertySeg2, FALSE);
3153         OrganisationsList->insert(std::make_pair(*OrganisationCount, PropertySeg2));
3154         
3155         if (!PropertyTokens.IsEmpty()){
3156         
3157                 OrganisationsListTokens->insert(std::make_pair(*OrganisationCount, PropertyTokens));
3158                         
3159         }
3163 void ContactDataObject::ProcessNote(wxString PropertySeg1, wxString PropertySeg2, int *NoteCount){
3165         std::map<int, int> SplitPoints;
3166         std::map<int, int> SplitLength;
3167         std::map<int, int>::iterator SLiter;                    
3168         wxString PropertyData;
3169         wxString PropertyName;
3170         wxString PropertyValue;
3171         wxString PropertyTokens;
3172         bool FirstToken = TRUE;
3173         int intPrevValue = 6;
3174         
3175         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3176         
3177         intPrevValue = 5;
3178         
3179         PropertyType PropType = PROPERTY_NONE;
3180                 
3181         // Look for type before continuing.
3182         
3183         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3184         
3185         // Setup the pointers.
3186         
3187         std::map<int, wxString> *NoteList = NULL;
3188         std::map<int, wxString> *NoteListAltID = NULL;
3189         std::map<int, wxString> *NoteListPID = NULL;
3190         std::map<int, wxString> *NoteListType = NULL;
3191         std::map<int, wxString> *NoteListTokens = NULL;
3192         std::map<int, wxString> *NoteListLanguage = NULL;
3193         std::map<int, int> *NoteListPref = NULL;
3194         
3195         // Setup blank lines for later on.
3196         
3197         switch(PropType){
3198                 case PROPERTY_NONE:
3199                         NoteList = &GeneralNoteList;
3200                         NoteListType = &GeneralNoteListType;
3201                         NoteListAltID = &GeneralNoteListAltID;
3202                         NoteListPID = &GeneralNoteListPID;
3203                         NoteListTokens = &GeneralNoteListTokens;
3204                         NoteListLanguage = &GeneralNoteListLanguage;
3205                         NoteListPref = &GeneralNoteListPref;    
3206                         break;
3207                 case PROPERTY_HOME:
3208                         NoteList = &HomeNoteList;
3209                         NoteListType = &HomeNoteListType;
3210                         NoteListAltID = &HomeNoteListAltID;
3211                         NoteListPID = &HomeNoteListPID;
3212                         NoteListTokens = &HomeNoteListTokens;
3213                         NoteListLanguage = &HomeNoteListLanguage;
3214                         NoteListPref = &HomeNoteListPref;       
3215                         break;
3216                 case PROPERTY_WORK:
3217                         NoteList = &BusinessNoteList;
3218                         NoteListType = &BusinessNoteListType;
3219                         NoteListAltID = &BusinessNoteListAltID;
3220                         NoteListPID = &BusinessNoteListPID;
3221                         NoteListTokens = &BusinessNoteListTokens;
3222                         NoteListLanguage = &BusinessNoteListLanguage;   
3223                         NoteListPref = &BusinessNoteListPref;
3224                         break;
3225         }
3227         intPrevValue = 5;
3228         bool PropertyMatched = FALSE;
3229                 
3230         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3231         intiter != SplitPoints.end(); ++intiter){
3232         
3233                 SLiter = SplitLength.find(intiter->first);
3234                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3235                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3236                 intPrevValue = intiter->second;
3237                 
3238                 // Process properties.
3239                 
3240                 size_t intPropertyValueLen = PropertyValue.Len();
3241                 
3242                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3243                         
3244                         PropertyValue.Trim();
3245                         PropertyValue.RemoveLast();
3246                         
3247                 }                               
3248                 
3249                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3250                         
3251                         PropertyValue.Remove(0, 1);
3252                         
3253                 }                               
3254                 
3255                 CaptureString(&PropertyValue, FALSE);
3256                 
3257                 ProcessStringValue(&PropertyName, "ALTID", NoteListAltID, &PropertyValue, NoteCount, &PropertyMatched);
3258                 ProcessStringValue(&PropertyName, "PID", NoteListPID, &PropertyValue, NoteCount, &PropertyMatched);
3259                 ProcessStringValue(&PropertyName, "LANGUAGE", NoteListLanguage, &PropertyValue, NoteCount, &PropertyMatched);
3260                 ProcessIntegerValue(&PropertyName, "PREF", NoteListPref, &PropertyValue, NoteCount, &PropertyMatched);
3261                 
3262                 if (PropertyMatched == TRUE){
3263                 
3264                         PropertyMatched = FALSE;
3265                         continue;
3266                 
3267                 }
3269                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3270         
3271         }
3272         
3273         // Add the data to the General/Home/Work address variables.
3274         
3275         CaptureString(&PropertySeg2, FALSE);
3277         NoteList->insert(std::make_pair(*NoteCount, PropertySeg2));
3278         
3279         if (!PropertyTokens.IsEmpty()){
3280         
3281                 NoteListTokens->insert(std::make_pair(*NoteCount, PropertyTokens));
3282                         
3283         }
3287 void ContactDataObject::ProcessCategory(wxString PropertySeg1, wxString PropertySeg2, int *CategoryCount){
3289         std::map<int, int> SplitPoints;
3290         std::map<int, int> SplitLength;
3291         std::map<int, int>::iterator SLiter;                    
3292         wxString PropertyData;
3293         wxString PropertyName;
3294         wxString PropertyValue;
3295         wxString PropertyTokens;
3296         bool FirstToken = TRUE;
3297         int intPrevValue = 12;
3298         
3299         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3300         
3301         intPrevValue = 11;
3302         
3303         PropertyType PropType = PROPERTY_NONE;
3304                 
3305         // Look for type before continuing.
3306         
3307         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3308         
3309         // Setup blank lines for later on.
3310         
3311         switch(PropType){
3312                 case PROPERTY_NONE:
3313                         break;
3314                 case PROPERTY_HOME:
3315                         CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
3316                         break;
3317                 case PROPERTY_WORK:
3318                         CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
3319                         break;
3320         }
3322         intPrevValue = 11;
3323         bool PropertyMatched = FALSE;
3324                 
3325         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3326         intiter != SplitPoints.end(); ++intiter){
3327         
3328                 SLiter = SplitLength.find(intiter->first);
3329                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3330                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3331                 intPrevValue = intiter->second;
3332                 
3333                 // Process properties.
3334                 
3335                 size_t intPropertyValueLen = PropertyValue.Len();
3336                 
3337                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3338                         
3339                         PropertyValue.Trim();
3340                         PropertyValue.RemoveLast();
3341                         
3342                 }                               
3343                 
3344                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3345                         
3346                         PropertyValue.Remove(0, 1);
3347                         
3348                 }                               
3349                 
3350                 CaptureString(&PropertyValue, FALSE);
3351                 
3352                 ProcessStringValue(&PropertyName, "ALTID", &CategoriesListAltID, &PropertyValue, CategoryCount, &PropertyMatched);
3353                 ProcessStringValue(&PropertyName, "PID", &CategoriesListPID, &PropertyValue, CategoryCount, &PropertyMatched);
3354                 ProcessStringValue(&PropertyName, "LANGUAGE", &CategoriesListLanguage, &PropertyValue, CategoryCount, &PropertyMatched);
3355                 ProcessIntegerValue(&PropertyName, "PREF", &CategoriesListPref, &PropertyValue, CategoryCount, &PropertyMatched);
3356                 
3357                 if (PropertyMatched == TRUE){
3358                 
3359                         PropertyMatched = FALSE;
3360                         continue;
3361                 
3362                 }
3364                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3365         
3366         }
3367         
3368         // Deal with multiple categories.
3369         
3370         int intOrigCatCount = *CategoryCount;
3371         bool FirstCategoryProcessed = TRUE;
3372         bool AfterFirstToken = FALSE;
3373         int intSplitSize = 0;
3374         int intSplitsFound = 0;
3375         int intSplitSeek = 0;
3376         int intPropertyLen = PropertySeg2.Len();
3377         
3378         SplitPoints.clear();
3379         SplitLength.clear();
3380         intPrevValue = 0;
3381         
3382         for (int i = 0; i <= intPropertyLen; i++){
3383         
3384                 if (intSplitSize == 0 && PropertySeg2.Mid(i, 1) == wxT(" ")){
3385         
3386                         continue;
3387                 
3388                 }
3389         
3390                 intSplitSize++;
3391         
3392                 if (PropertySeg2.Mid(i, 1) == wxT(",") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
3393         
3394                         if (AfterFirstToken == TRUE){
3395                 
3396                                 SplitPoints.insert(std::make_pair(intSplitsFound, (i - intSplitSize + 1)));
3397                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));
3398                         
3399                         } else {
3400                         
3401                                 SplitPoints.insert(std::make_pair(intSplitsFound, 0));
3402                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 2)));                                 
3403                                 AfterFirstToken = TRUE;
3405                         }
3407                         intSplitsFound++;
3408                         intSplitSeek = i;
3409                         intSplitSize = 0;                               
3410         
3411                 }                       
3412         
3413         }
3414         
3415         if (SplitPoints.size() > 0){
3416         
3417                 SplitPoints.insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
3418                 SplitLength.insert(std::make_pair(intSplitsFound, intSplitSize));
3419         
3420         }
3421         
3422         if (SplitPoints.size() == 0){
3423         
3424                 CategoriesList.insert(std::make_pair(*CategoryCount, PropertySeg2));
3425         
3426                 if (!PropertyTokens.IsEmpty()){
3427                 
3428                         CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
3429                 
3430                 }
3431         
3432         }
3433         
3434         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3435         intiter != SplitPoints.end(); ++intiter){
3436         
3437                 SLiter = SplitLength.find(intiter->first);
3438         
3439                 intPrevValue = intiter->second;
3440         
3441                 PropertyData = PropertySeg2.Mid(intPrevValue, (SLiter->second + 1));
3442                 
3443                 // Add the data to the General/Home/Work address variables.
3444         
3445                 // Trim any whitespace from the start and end.
3446         
3447                 PropertyData = PropertyData.Trim(FALSE);
3448                 PropertyData = PropertyData.Trim(TRUE); 
3449         
3450                 CaptureString(&PropertyData, FALSE);
3451                 
3452                 if (FirstCategoryProcessed == TRUE){
3453                 
3454                         FirstCategoryProcessed = FALSE;
3455                         
3456                         CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
3457         
3458                         if (!PropertyTokens.IsEmpty()){
3459                 
3460                                 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
3461                 
3462                         }
3463                         
3464                         continue;
3465                 
3466                 } else {
3468                         (*CategoryCount)++;
3469                         
3470                         CategoriesList.insert(std::make_pair(*CategoryCount, PropertyData));
3471                 
3472                         if (!PropertyTokens.IsEmpty()){
3473                 
3474                                 CategoriesListTokens.insert(std::make_pair(*CategoryCount, PropertyTokens));
3475                 
3476                         }
3477                 
3478                 }
3479                 
3480                 // Copy the properties to each of the categories (if it exists).
3481                 
3482                 if (!PropertyTokens.IsEmpty()){
3483                 
3484                         CategoriesListTokens.insert(std::make_pair(*CategoryCount, CategoriesListTokens.find(intOrigCatCount)->second));
3485                 
3486                 }
3487                 
3488                 // Check if ALTID was used.
3489                 
3490                 if (CategoriesListAltID.find(intOrigCatCount) != CategoriesListAltID.end()){
3491                 
3492                         CategoriesListAltID.insert(std::make_pair(*CategoryCount, CategoriesListAltID.find(intOrigCatCount)->second));
3493                 
3494                 }
3495                 
3496                 // Check if PID was used.
3497                 
3498                 if (CategoriesListPID.find(intOrigCatCount) != CategoriesListPID.end()){
3499                 
3500                         CategoriesListPID.insert(std::make_pair(*CategoryCount, CategoriesListPID.find(intOrigCatCount)->second));
3501                 
3502                 }
3503         
3504                 // Check if PREF was used.
3505         
3506                 if (CategoriesListPref.find(intOrigCatCount) != CategoriesListPref.end()){
3507                 
3508                         CategoriesListPref.insert(std::make_pair(*CategoryCount, CategoriesListPref.find(intOrigCatCount)->second));
3509                 
3510                 }
3511                 
3512                 // Check if LANGUAGE was used.
3513                 
3514                 if (CategoriesListLanguage.find(intOrigCatCount) != CategoriesListLanguage.end()){
3515                 
3516                         CategoriesListLanguage.insert(std::make_pair(*CategoryCount, CategoriesListLanguage.find(intOrigCatCount)->second));
3517                 
3518                 }
3519                 
3520                 // Check if TYPE was used.
3521                 
3522                 switch(PropType){
3523                         case PROPERTY_NONE:
3524                                 break;
3525                         case PROPERTY_HOME:
3526                                 CategoriesListType.insert(std::make_pair(*CategoryCount, "home"));
3527                                 break;
3528                         case PROPERTY_WORK:
3529                                 CategoriesListType.insert(std::make_pair(*CategoryCount, "work"));
3530                                 break;
3531                 }
3532         
3533         }
3537 void ContactDataObject::ProcessPhoto(wxString PropertySeg1, wxString PropertySeg2, int *PhotoCount){
3539         size_t intPropertyLen = PropertySeg1.Len();
3540         std::map<int, int> SplitPoints;
3541         std::map<int, int> SplitLength;
3542         std::map<int, int>::iterator SLiter;                    
3543         wxString PropertyData;
3544         wxString PropertyName;
3545         wxString PropertyValue;
3546         wxString PropertyTokens;
3547         bool FirstToken = TRUE;
3548         int intSplitsFound = 0;
3549         int intSplitSize = 0;
3550         int intPrevValue = 7;
3551         
3552         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3553         
3554         intPrevValue = 6;
3555         
3556         PropertyType PropType = PROPERTY_NONE;
3557                 
3558         // Look for type before continuing.
3559         
3560         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3562         intPrevValue = 6;
3563         bool PropertyMatched = FALSE;
3565         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3566         intiter != SplitPoints.end(); ++intiter){
3567         
3568                 SLiter = SplitLength.find(intiter->first);
3569                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3570                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3571                 intPrevValue = intiter->second;
3572                 
3573                 // Process properties.
3574                 
3575                 size_t intPropertyValueLen = PropertyValue.Len();
3576                 
3577                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3578                         
3579                         PropertyValue.Trim();
3580                         PropertyValue.RemoveLast();
3581                         
3582                 }                               
3583                 
3584                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3585                         
3586                         PropertyValue.Remove(0, 1);
3587                         
3588                 }
3589                 
3590                 CaptureString(&PropertyValue, FALSE);
3591                 
3592                 ProcessStringValue(&PropertyName, "ALTID", &PicturesListAltID, &PropertyValue, PhotoCount, &PropertyMatched);
3593                 ProcessStringValue(&PropertyName, "PID", &PicturesListPID, &PropertyValue, PhotoCount, &PropertyMatched);
3594                 ProcessStringValue(&PropertyName, "MEDIATYPE", &PicturesListMediatype, &PropertyValue, PhotoCount, &PropertyMatched);
3595                 ProcessIntegerValue(&PropertyName, "PREF", &PicturesListPref, &PropertyValue, PhotoCount, &PropertyMatched);
3596                 
3597                 if (PropertyMatched == TRUE){
3598                 
3599                         PropertyMatched = FALSE;
3600                         continue;
3601                 
3602                 }
3604                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3605                         
3606         }       
3607         
3608         intPropertyLen = PropertySeg2.Len();
3609         SplitPoints.clear();
3610         SplitLength.clear();
3611         intSplitsFound = 0;
3612         intSplitSize = 0;
3613         intPrevValue = 0;                       
3614         
3615         CaptureString(&PropertySeg2, FALSE);
3616         
3617         for (int i = 0; i <= intPropertyLen; i++){
3619                 intSplitSize++;
3620         
3621                 if (PropertySeg2.Mid(i, 1) == wxT(";")){
3622         
3623                         intSplitsFound++;
3624                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
3625                         
3626                         if (intSplitsFound == 6){ 
3627                         
3628                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3629                                 break; 
3630                                 
3631                         } else {
3632                         
3633                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3634                         
3635                         }
3636                         
3637                         intSplitSize = 0;                                       
3638         
3639                 }
3641         }
3642         
3643         wxString wxSPhotoURI;
3644         wxString wxSPhotoMIME;
3645         wxString wxSPhotoEncoding;
3646         wxString wxSPhotoData;
3647         std::string base64enc;
3648         
3649         if (intSplitsFound == 0){
3650         
3651         } else {
3652         
3653                 std::map<int, int>::iterator striter;
3654         
3655                 striter = SplitLength.find(1);
3656         
3657                 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
3658         
3659                 while (wSTDataType.HasMoreTokens() == TRUE){
3660                 
3661                         wxSPhotoURI = wSTDataType.GetNextToken();
3662                         wxSPhotoMIME = wSTDataType.GetNextToken();
3663                         break;
3664                 
3665                 }                       
3666         
3667                 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));                       
3668         
3669                 while (wSTDataInfo.HasMoreTokens() == TRUE){
3670                 
3671                         wxSPhotoEncoding = wSTDataInfo.GetNextToken();
3672                         wxSPhotoData = wSTDataInfo.GetNextToken();
3673                         base64enc = wxSPhotoData.mb_str();
3674                         break;
3675                 
3676                 }
3677         
3678         }
3679         
3680         // Add the data to the General/Home/Work address variables.
3681         
3682         PicturesList.insert(std::make_pair(*PhotoCount, base64enc));
3683         PicturesListPictureType.insert(std::make_pair(*PhotoCount, wxSPhotoMIME));
3684         PicturesListPicEncType.insert(std::make_pair(*PhotoCount, wxSPhotoEncoding));
3685         
3686         switch(PropType){
3687                 case PROPERTY_NONE:
3688                         break;
3689                 case PROPERTY_HOME:
3690                         PicturesListType.insert(std::make_pair(*PhotoCount, "home"));
3691                         break;
3692                 case PROPERTY_WORK:
3693                         PicturesListType.insert(std::make_pair(*PhotoCount, "work"));
3694                         break;
3695         }
3696         
3697         if (!PropertyTokens.IsEmpty()){
3699                 PicturesListTokens.insert(std::make_pair(*PhotoCount, PropertyTokens));
3700         
3701         }
3705 void ContactDataObject::ProcessLogo(wxString PropertySeg1, wxString PropertySeg2, int *LogoCount){
3707         size_t intPropertyLen = PropertySeg1.Len();
3708         std::map<int, int> SplitPoints;
3709         std::map<int, int> SplitLength;
3710         std::map<int, int>::iterator SLiter;                    
3711         wxString PropertyData;
3712         wxString PropertyName;
3713         wxString PropertyValue;
3714         wxString PropertyTokens;
3715         bool FirstToken = TRUE;
3716         int intSplitsFound = 0;
3717         int intSplitSize = 0;
3718         int intPrevValue = 6;
3719         
3720         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3721         
3722         intPrevValue = 5;
3723         
3724         PropertyType PropType = PROPERTY_NONE;
3725                 
3726         // Look for type before continuing.
3727         
3728         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3730         intPrevValue = 5;
3731         bool PropertyMatched = FALSE;
3733         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3734         intiter != SplitPoints.end(); ++intiter){
3735         
3736                 SLiter = SplitLength.find(intiter->first);
3737                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3738                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3739                 intPrevValue = intiter->second;
3740                 
3741                 // Process properties.
3742                 
3743                 size_t intPropertyValueLen = PropertyValue.Len();
3744                 
3745                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3746                         
3747                         PropertyValue.Trim();
3748                         PropertyValue.RemoveLast();
3749                         
3750                 }                               
3751                 
3752                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3753                         
3754                         PropertyValue.Remove(0, 1);
3755                         
3756                 }
3757                 
3758                 CaptureString(&PropertyValue, FALSE);
3759                 
3760                 ProcessStringValue(&PropertyName, "ALTID", &LogosListAltID, &PropertyValue, LogoCount, &PropertyMatched);
3761                 ProcessStringValue(&PropertyName, "PID", &LogosListPID, &PropertyValue, LogoCount, &PropertyMatched);
3762                 ProcessStringValue(&PropertyName, "MEDIATYPE", &LogosListMediatype, &PropertyValue, LogoCount, &PropertyMatched);
3763                 ProcessIntegerValue(&PropertyName, "PREF", &LogosListPref, &PropertyValue, LogoCount, &PropertyMatched);
3764                 
3765                 if (PropertyMatched == TRUE){
3766                 
3767                         PropertyMatched = FALSE;
3768                         continue;
3769                 
3770                 }
3772                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3773         
3774         }       
3775         
3776         intPropertyLen = PropertySeg2.Len();
3777         SplitPoints.clear();
3778         SplitLength.clear();
3779         intSplitsFound = 0;
3780         intSplitSize = 0;
3781         intPrevValue = 0;                       
3782         
3783         CaptureString(&PropertySeg2, FALSE);
3784         
3785         for (int i = 0; i <= intPropertyLen; i++){
3787                 intSplitSize++;
3788         
3789                 if (PropertySeg2.Mid(i, 1) == wxT(";")){
3790         
3791                         intSplitsFound++;
3792                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
3793                         
3794                         if (intSplitsFound == 6){ 
3795                         
3796                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3797                                 break; 
3798                                 
3799                         } else {
3800                         
3801                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3802                         
3803                         }
3804                         
3805                         intSplitSize = 0;                                       
3806         
3807                 }
3809         }
3810         
3811         wxString wxSPhotoURI;
3812         wxString wxSPhotoMIME;
3813         wxString wxSPhotoEncoding;
3814         wxString wxSPhotoData;
3815         std::string base64enc;
3816         
3817         if (intSplitsFound == 0){
3818         
3819         } else {
3820         
3821                 std::map<int, int>::iterator striter;
3822         
3823                 striter = SplitLength.find(1);
3824         
3825                 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
3826         
3827                 while (wSTDataType.HasMoreTokens() == TRUE){
3828                 
3829                         wxSPhotoURI = wSTDataType.GetNextToken();
3830                         wxSPhotoMIME = wSTDataType.GetNextToken();
3831                         break;
3832                 
3833                 }                       
3834         
3835                 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));                       
3836         
3837                 while (wSTDataInfo.HasMoreTokens() == TRUE){
3838                 
3839                         wxSPhotoEncoding = wSTDataInfo.GetNextToken();
3840                         wxSPhotoData = wSTDataInfo.GetNextToken();
3841                         base64enc = wxSPhotoData.mb_str();
3842                         break;
3843                 
3844                 }
3845         
3846         }
3847         
3848         // Add the data to the General/Home/Work address variables.
3849                 
3850         LogosList.insert(std::make_pair(*LogoCount, base64enc));
3851         LogosListPictureType.insert(std::make_pair(*LogoCount, wxSPhotoMIME));
3852         LogosListPicEncType.insert(std::make_pair(*LogoCount, wxSPhotoEncoding));
3853         
3854         switch(PropType){
3855                 case PROPERTY_NONE:
3856                         break;
3857                 case PROPERTY_HOME:
3858                         LogosListType.insert(std::make_pair(*LogoCount, "home"));
3859                         break;
3860                 case PROPERTY_WORK:
3861                         LogosListType.insert(std::make_pair(*LogoCount, "work"));
3862                         break;
3863         }
3864         
3865         if (!PropertyTokens.IsEmpty()){
3867                 LogosListTokens.insert(std::make_pair(*LogoCount, PropertyTokens));
3868         
3869         }
3873 void ContactDataObject::ProcessSound(wxString PropertySeg1, wxString PropertySeg2, int *SoundCount){
3875         size_t intPropertyLen = PropertySeg1.Len();
3876         std::map<int, int> SplitPoints;
3877         std::map<int, int> SplitLength;
3878         std::map<int, int>::iterator SLiter;                    
3879         wxString PropertyData;
3880         wxString PropertyName;
3881         wxString PropertyValue;
3882         wxString PropertyTokens;
3883         bool FirstToken = TRUE;
3884         int intSplitsFound = 0;
3885         int intSplitSize = 0;
3886         int intPrevValue = 7;
3887         
3888         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
3889         
3890         intPrevValue = 6;
3891         
3892         PropertyType PropType = PROPERTY_NONE;
3893         
3894         // Look for type before continuing.                     
3896         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
3898         intPrevValue = 6;
3899         bool PropertyMatched = FALSE;
3901         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
3902         intiter != SplitPoints.end(); ++intiter){
3903         
3904                 SLiter = SplitLength.find(intiter->first);
3905                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
3906                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
3907                 intPrevValue = intiter->second;
3908                 
3909                 // Process properties.
3910                 
3911                 size_t intPropertyValueLen = PropertyValue.Len();
3912                 
3913                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
3914                         
3915                         PropertyValue.Trim();
3916                         PropertyValue.RemoveLast();
3917                         
3918                 }                               
3919                 
3920                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
3921                         
3922                         PropertyValue.Remove(0, 1);
3923                         
3924                 }                       
3925                 
3926                 CaptureString(&PropertyValue, FALSE);
3927                 
3928                 ProcessStringValue(&PropertyName, "ALTID", &SoundsListAltID, &PropertyValue, SoundCount, &PropertyMatched);
3929                 ProcessStringValue(&PropertyName, "PID", &SoundsListPID, &PropertyValue, SoundCount, &PropertyMatched);
3930                 ProcessStringValue(&PropertyName, "MEDIATYPE", &SoundsListMediatype, &PropertyValue, SoundCount, &PropertyMatched);
3931                 ProcessStringValue(&PropertyName, "LANGUAGE", &SoundsListLanguage, &PropertyValue, SoundCount, &PropertyMatched);
3932                 ProcessIntegerValue(&PropertyName, "PREF", &SoundsListPref, &PropertyValue, SoundCount, &PropertyMatched);
3933                 
3934                 if (PropertyMatched == TRUE){
3935                 
3936                         PropertyMatched = FALSE;
3937                         continue;
3938                 
3939                 }
3941                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
3942         
3943         }       
3944         
3945         intPropertyLen = PropertySeg2.Len();
3946         SplitPoints.clear();
3947         SplitLength.clear();
3948         intSplitsFound = 0;
3949         intSplitSize = 0;
3950         intPrevValue = 0;
3951         
3952         CaptureString(&PropertySeg2, FALSE);
3953         
3954         for (int i = 0; i <= intPropertyLen; i++){
3956                 intSplitSize++;
3957         
3958                 if (PropertySeg2.Mid(i, 1) == wxT(";")){
3959         
3960                         intSplitsFound++;
3961                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
3962                         
3963                         if (intSplitsFound == 6){ 
3964                         
3965                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3966                                 break; 
3967                                 
3968                         } else {
3969                         
3970                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
3971                         
3972                         }
3973                         
3974                         intSplitSize = 0;                                       
3975         
3976                 }
3978         }
3979         
3980         wxString wxSSoundURI;
3981         wxString wxSSoundMIME;
3982         wxString wxSSoundEncoding;
3983         wxString wxSSoundData;
3984         std::string base64enc;
3985         
3986         if (intSplitsFound == 0){
3987         
3988         } else {
3989         
3990                 std::map<int, int>::iterator striter;
3991         
3992                 striter = SplitLength.find(1);
3993         
3994                 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
3995         
3996                 while (wSTDataType.HasMoreTokens() == TRUE){
3997                 
3998                         wxSSoundURI = wSTDataType.GetNextToken();
3999                         wxSSoundMIME = wSTDataType.GetNextToken();
4000                         break;
4001                 
4002                 }                       
4003         
4004                 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));                       
4005         
4006                 while (wSTDataInfo.HasMoreTokens() == TRUE){
4007                 
4008                         wxSSoundEncoding = wSTDataInfo.GetNextToken();
4009                         wxSSoundData = wSTDataInfo.GetNextToken();                                      
4010                         base64enc = wxSSoundData.mb_str();
4011                         break;
4012                 
4013                 }
4014         
4015         }
4016         
4017         // Add the data to the General/Home/Work address variables.
4018                 
4019         switch(PropType){
4020                 case PROPERTY_NONE:
4021                         break;
4022                 case PROPERTY_HOME:
4023                         SoundsListType.insert(std::make_pair(*SoundCount, "home"));
4024                         break;
4025                 case PROPERTY_WORK:
4026                         SoundsListType.insert(std::make_pair(*SoundCount, "work"));
4027                         break;
4028         }
4029         
4030         SoundsList.insert(std::make_pair(*SoundCount, base64enc));
4031         SoundsListAudioEncType.insert(std::make_pair(*SoundCount, wxSSoundEncoding));
4032         SoundsListAudioType.insert(std::make_pair(*SoundCount, wxSSoundMIME));
4033         
4034         if (!PropertyTokens.IsEmpty()){
4035         
4036                 SoundsListTokens.insert(std::make_pair(*SoundCount, PropertyTokens));
4037         
4038         }
4039         
4042 void ContactDataObject::ProcessCalendarURI(wxString PropertySeg1, wxString PropertySeg2, int *CalURICount){
4044         size_t intPropertyLen = PropertySeg1.Len();
4045         std::map<int, int> SplitPoints;
4046         std::map<int, int> SplitLength;
4047         std::map<int, int>::iterator SLiter;                    
4048         wxString PropertyData;
4049         wxString PropertyName;
4050         wxString PropertyValue;
4051         wxString PropertyTokens;
4052         bool FirstToken = TRUE;
4053         int intSplitsFound = 0;
4054         int intSplitSize = 0;
4055         int intPrevValue = 8;
4056         
4057         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4058         
4059         intPrevValue = 7;
4060         
4061         PropertyType PropType = PROPERTY_NONE;
4062         
4063         // Look for type before continuing.                     
4065         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4067         intPrevValue = 7;
4068         bool PropertyMatched = FALSE;
4070         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
4071         intiter != SplitPoints.end(); ++intiter){
4072         
4073                 SLiter = SplitLength.find(intiter->first);
4074                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4075                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
4076                 intPrevValue = intiter->second;
4077                 
4078                 // Process properties.
4079                 
4080                 size_t intPropertyValueLen = PropertyValue.Len();
4081                 
4082                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4083                         
4084                         PropertyValue.Trim();
4085                         PropertyValue.RemoveLast();
4086                         
4087                 }                               
4088                 
4089                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4090                         
4091                         PropertyValue.Remove(0, 1);
4092                         
4093                 }                       
4094                 
4095                 CaptureString(&PropertyValue, FALSE);
4096                 
4097                 ProcessStringValue(&PropertyName, "ALTID", &CalendarListAltID, &PropertyValue, CalURICount, &PropertyMatched);
4098                 ProcessStringValue(&PropertyName, "PID", &CalendarListPID, &PropertyValue, CalURICount, &PropertyMatched);
4099                 ProcessStringValue(&PropertyName, "MEDIATYPE", &CalendarListMediatype, &PropertyValue, CalURICount, &PropertyMatched);
4100                 ProcessIntegerValue(&PropertyName, "PREF", &CalendarListPref, &PropertyValue, CalURICount, &PropertyMatched);
4101                 
4102                 if (PropertyMatched == TRUE){
4103                 
4104                         PropertyMatched = FALSE;
4105                         continue;
4106                 
4107                 }
4109                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
4110         
4111         }       
4112         
4113         intPropertyLen = PropertySeg2.Len();
4114         SplitPoints.clear();
4115         SplitLength.clear();
4116         intSplitsFound = 0;
4117         intSplitSize = 0;
4118         intPrevValue = 0;
4119         
4120         CaptureString(&PropertySeg2, FALSE);
4121         
4122         // Add the data to the General/Home/Work address variables.
4123                 
4124         switch(PropType){
4125                 case PROPERTY_NONE:
4126                         break;
4127                 case PROPERTY_HOME:
4128                         CalendarListType.insert(std::make_pair(*CalURICount, "home"));
4129                         break;
4130                 case PROPERTY_WORK:
4131                         CalendarListType.insert(std::make_pair(*CalURICount, "work"));
4132                         break;
4133         }
4134         
4135         CalendarList.insert(std::make_pair(*CalURICount, PropertySeg2));
4136         
4137         if (!PropertyTokens.IsEmpty()){
4138         
4139                 CalendarListTokens.insert(std::make_pair(*CalURICount, PropertyTokens));
4140         
4141         }
4145 void ContactDataObject::ProcessCalendarAddressURI(wxString PropertySeg1, wxString PropertySeg2, int *CalAdrURICount){
4147         size_t intPropertyLen = PropertySeg1.Len();
4148         std::map<int, int> SplitPoints;
4149         std::map<int, int> SplitLength;
4150         std::map<int, int>::iterator SLiter;                    
4151         wxString PropertyData;
4152         wxString PropertyName;
4153         wxString PropertyValue;
4154         wxString PropertyTokens;
4155         bool FirstToken = TRUE;
4156         int intSplitsFound = 0;
4157         int intSplitSize = 0;
4158         int intPrevValue = 8;
4159         
4160         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4161         
4162         intPrevValue = 7;
4163         
4164         PropertyType PropType = PROPERTY_NONE;
4165         
4166         // Look for type before continuing.                     
4168         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4170         intPrevValue = 7;
4171         bool PropertyMatched = FALSE;
4173         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
4174         intiter != SplitPoints.end(); ++intiter){
4175         
4176                 SLiter = SplitLength.find(intiter->first);
4177                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4178                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
4179                 intPrevValue = intiter->second;
4180                 
4181                 // Process properties.
4182                 
4183                 size_t intPropertyValueLen = PropertyValue.Len();
4184                 
4185                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4186                         
4187                         PropertyValue.Trim();
4188                         PropertyValue.RemoveLast();
4189                         
4190                 }                               
4191                 
4192                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4193                         
4194                         PropertyValue.Remove(0, 1);
4195                         
4196                 }                       
4197                 
4198                 CaptureString(&PropertyValue, FALSE);
4199                 
4200                 ProcessStringValue(&PropertyName, "ALTID", &CalendarRequestListAltID, &PropertyValue, CalAdrURICount, &PropertyMatched);
4201                 ProcessStringValue(&PropertyName, "PID", &CalendarRequestListPID, &PropertyValue, CalAdrURICount, &PropertyMatched);
4202                 ProcessStringValue(&PropertyName, "MEDIATYPE", &CalendarRequestListMediatype, &PropertyValue, CalAdrURICount, &PropertyMatched);
4203                 ProcessIntegerValue(&PropertyName, "PREF", &CalendarRequestListPref, &PropertyValue, CalAdrURICount, &PropertyMatched);
4204                 
4205                 if (PropertyMatched == TRUE){
4206                 
4207                         PropertyMatched = FALSE;
4208                         continue;
4209                 
4210                 }
4212                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
4213         
4214         }       
4215         
4216         intPropertyLen = PropertySeg2.Len();
4217         SplitPoints.clear();
4218         SplitLength.clear();
4219         intSplitsFound = 0;
4220         intSplitSize = 0;
4221         intPrevValue = 0;
4222         
4223         CaptureString(&PropertySeg2, FALSE);
4224         
4225         // Add the data to the General/Home/Work address variables.
4226                 
4227         switch(PropType){
4228                 case PROPERTY_NONE:
4229                         break;
4230                 case PROPERTY_HOME:
4231                         CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "home"));
4232                         break;
4233                 case PROPERTY_WORK:
4234                         CalendarRequestListType.insert(std::make_pair(*CalAdrURICount, "work"));
4235                         break;
4236         }
4237         
4238         CalendarRequestList.insert(std::make_pair(*CalAdrURICount, PropertySeg2));
4239         
4240         if (!PropertyTokens.IsEmpty()){
4241         
4242                 CalendarRequestListTokens.insert(std::make_pair(*CalAdrURICount, PropertyTokens));
4243         
4244         }       
4245         
4248 void ContactDataObject::ProcessCalendarFreeBusy(wxString PropertySeg1, wxString PropertySeg2, int *FreeBusyAddressCount){
4250         size_t intPropertyLen = PropertySeg1.Len();
4251         std::map<int, int> SplitPoints;
4252         std::map<int, int> SplitLength;
4253         std::map<int, int>::iterator SLiter;                    
4254         wxString PropertyData;
4255         wxString PropertyName;
4256         wxString PropertyValue;
4257         wxString PropertyTokens;
4258         bool FirstToken = TRUE;
4259         int intSplitsFound = 0;
4260         int intSplitSize = 0;
4261         int intPrevValue = 7;
4262         
4263         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4264         
4265         intPrevValue = 6;
4266         
4267         PropertyType PropType = PROPERTY_NONE;
4268         
4269         // Look for type before continuing.                     
4271         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4273         intPrevValue = 6;
4274         bool PropertyMatched = FALSE;
4276         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
4277         intiter != SplitPoints.end(); ++intiter){
4278         
4279                 SLiter = SplitLength.find(intiter->first);
4280                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4281                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
4282                 intPrevValue = intiter->second;
4283                 
4284                 // Process properties.
4285                 
4286                 size_t intPropertyValueLen = PropertyValue.Len();
4287                 
4288                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4289                         
4290                         PropertyValue.Trim();
4291                         PropertyValue.RemoveLast();
4292                         
4293                 }                               
4294                 
4295                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4296                         
4297                         PropertyValue.Remove(0, 1);
4298                         
4299                 }                       
4300                 
4301                 CaptureString(&PropertyValue, FALSE);
4302                 
4303                 ProcessStringValue(&PropertyName, "ALTID", &FreeBusyListAltID, &PropertyValue, FreeBusyAddressCount, &PropertyMatched);
4304                 ProcessStringValue(&PropertyName, "PID", &FreeBusyListPID, &PropertyValue, FreeBusyAddressCount, &PropertyMatched);
4305                 ProcessStringValue(&PropertyName, "MEDIATYPE", &FreeBusyListMediatype, &PropertyValue, FreeBusyAddressCount, &PropertyMatched);
4306                 ProcessIntegerValue(&PropertyName, "PREF", &FreeBusyListPref, &PropertyValue, FreeBusyAddressCount, &PropertyMatched);
4307                 
4308                 if (PropertyMatched == TRUE){
4309                 
4310                         PropertyMatched = FALSE;
4311                         continue;
4312                 
4313                 }
4315                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
4316         
4317         }       
4318         
4319         intPropertyLen = PropertySeg2.Len();
4320         SplitPoints.clear();
4321         SplitLength.clear();
4322         intSplitsFound = 0;
4323         intSplitSize = 0;
4324         intPrevValue = 0;
4325         
4326         CaptureString(&PropertySeg2, FALSE);
4327         
4328         // Add the data to the General/Home/Work address variables.
4329                 
4330         switch(PropType){
4331                 case PROPERTY_NONE:
4332                         break;
4333                 case PROPERTY_HOME:
4334                         FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "home"));
4335                         break;
4336                 case PROPERTY_WORK:
4337                         FreeBusyListType.insert(std::make_pair(*FreeBusyAddressCount, "work"));
4338                         break;
4339         }
4340         
4341         FreeBusyList.insert(std::make_pair(*FreeBusyAddressCount, PropertySeg2));
4342         
4343         if (!PropertyTokens.IsEmpty()){
4344         
4345                 FreeBusyListTokens.insert(std::make_pair(*FreeBusyAddressCount, PropertyTokens));
4346         
4347         }
4351 void ContactDataObject::ProcessKey(wxString PropertySeg1, wxString PropertySeg2, int *KeyCount){
4353         size_t intPropertyLen = PropertySeg1.Len();
4354         std::map<int, int> SplitPoints;
4355         std::map<int, int> SplitLength;
4356         std::map<int, int>::iterator SLiter;                    
4357         wxString PropertyData;
4358         wxString PropertyName;
4359         wxString PropertyValue;
4360         wxString PropertyTokens;
4361         bool FirstToken = TRUE;
4362         int intSplitsFound = 0;
4363         int intSplitSize = 0;
4364         int intPrevValue = 5;
4365         
4366         SplitValues(&PropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
4367         
4368         intPrevValue = 4;
4369         
4370         PropertyType PropType = PROPERTY_NONE;
4371         
4372         // Look for type before continuing.
4374         CheckType(&PropertySeg1, &SplitPoints, &SplitLength, &intPrevValue, &PropType);
4376         intPrevValue = 4;
4377         bool PropertyMatched = FALSE;
4379         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
4380         intiter != SplitPoints.end(); ++intiter){
4381         
4382                 SLiter = SplitLength.find(intiter->first);
4383                 PropertyData = PropertySeg1.Mid(intPrevValue, (SLiter->second));
4384                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);
4385                 intPrevValue = intiter->second;
4386                 
4387                 // Process properties.
4388                 
4389                 size_t intPropertyValueLen = PropertyValue.Len();
4390                 
4391                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
4392                         
4393                         PropertyValue.Trim();
4394                         PropertyValue.RemoveLast();
4395                         
4396                 }                               
4397                 
4398                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
4399                         
4400                         PropertyValue.Remove(0, 1);
4401                         
4402                 }
4403                 
4404                 ProcessStringValue(&PropertyName, "ALTID", &KeyListAltID, &PropertyValue, KeyCount, &PropertyMatched);
4405                 ProcessStringValue(&PropertyName, "PID", &KeyListPID, &PropertyValue, KeyCount, &PropertyMatched);
4406                 ProcessIntegerValue(&PropertyName, "PREF", &KeyListPref, &PropertyValue, KeyCount, &PropertyMatched);
4407                 
4408                 if (PropertyMatched == TRUE){
4409                 
4410                         PropertyMatched = FALSE;
4411                         continue;
4412                 
4413                 }
4415                 ProcessTokens(&PropertyName, &PropertyValue, &PropertyTokens, &FirstToken);
4416         
4417         }                               
4418         
4419         intPropertyLen = PropertySeg2.Len();
4420         SplitPoints.clear();
4421         SplitLength.clear();
4422         intSplitsFound = 0;
4423         intSplitSize = 0;
4424         intPrevValue = 0;                       
4425         
4426         for (int i = 0; i <= intPropertyLen; i++){
4428                 intSplitSize++;
4429         
4430                 if (PropertySeg2.Mid(i, 1) == wxT(";") && PropertySeg2.Mid((i - 1), 1) != wxT("\\")){
4431         
4432                         intSplitsFound++;
4433                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
4434                         
4435                         if (intSplitsFound == 6){ 
4436                         
4437                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4438                                 break; 
4439                                 
4440                         } else {
4441                         
4442                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
4443                         
4444                         }
4445                         
4446                         intSplitSize = 0;                                       
4447         
4448                 }
4450         }
4451         
4452         wxString wxSKeyURI;
4453         wxString wxSKeyMIME;
4454         wxString wxSKeyEncoding;
4455         wxString wxSKeyData;
4456         std::string base64enc;
4457         
4458         if (intSplitsFound == 0){
4459         
4460         } else {
4461         
4462                 std::map<int, int>::iterator striter;
4463         
4464                 striter = SplitLength.find(1);
4465         
4466                 wxStringTokenizer wSTDataType(PropertySeg2.Mid(0, striter->second), wxT(":"));
4467         
4468                 while (wSTDataType.HasMoreTokens() == TRUE){
4469                 
4470                         wxSKeyURI = wSTDataType.GetNextToken();
4471                         wxSKeyMIME = wSTDataType.GetNextToken();
4472                         break;
4473                 
4474                 }                       
4475         
4476                 if (wxSKeyURI == wxT("data")){
4477                 
4478                                 wxStringTokenizer wSTDataInfo(PropertySeg2.Mid((striter->second + 1)), wxT(","));                       
4479         
4480                                 while (wSTDataInfo.HasMoreTokens() == TRUE){
4481                 
4482                                 wxSKeyEncoding = wSTDataInfo.GetNextToken();
4483                                 wxSKeyData = wSTDataInfo.GetNextToken();
4484                                 break;
4485                 
4486                         }
4487                 
4488                 }
4489         
4490         }
4491         
4492         // Add the data to the General/Home/Work address variables.
4493         
4494         if (wxSKeyURI == wxT("data")){
4495                 
4496                 KeyListDataEncType.erase(*KeyCount);
4497                 KeyListKeyType.erase(*KeyCount);
4498                 KeyListDataEncType.insert(std::make_pair(*KeyCount, wxSKeyEncoding));
4499                 KeyListKeyType.insert(std::make_pair(*KeyCount, TRUE));
4500                 
4501                 KeyList.erase(*KeyCount);
4502                 KeyList.insert(std::make_pair(*KeyCount, wxSKeyData));
4503         
4504         } else {
4505                 
4506                 KeyList.erase(*KeyCount);
4507                 KeyList.insert(std::make_pair(*KeyCount, PropertySeg2));
4508         
4509         }
4510         
4511         KeyListDataType.insert(std::make_pair(*KeyCount, wxSKeyMIME));
4512                 
4513         switch (PropType){
4514                 case PROPERTY_NONE:
4515                         break;
4516                 case PROPERTY_HOME: 
4517                         KeyListType.insert(std::make_pair(*KeyCount, wxT("home")));
4518                         break;
4519                 case PROPERTY_WORK: 
4520                         KeyListType.insert(std::make_pair(*KeyCount, wxT("work")));
4521                         break;
4522         }
4524         if (!PropertyTokens.IsEmpty()){
4526                 KeyListTokens.insert(std::make_pair(*KeyCount, PropertyTokens));
4528         }
4532 void ContactDataObject::ProcessVendor(wxString PropertySeg1, wxString PropertySeg2, int *VendorCount){
4534         // Split the Vendor three ways.
4535         
4536         wxStringTokenizer wSTVendorDetails(PropertySeg1, wxT("-"));
4537         
4538         wxString wxSVNDID;
4539         wxString wxSVNDPropName;
4541         while (wSTVendorDetails.HasMoreTokens() == TRUE){
4542         
4543                 wSTVendorDetails.GetNextToken();
4544                 wxSVNDID = wSTVendorDetails.GetNextToken();
4545                 wxSVNDPropName = wSTVendorDetails.GetNextToken();
4546                 break;
4547         
4548         }
4549         
4550         if (!wxSVNDID.IsEmpty() && !wxSVNDPropName.IsEmpty()){
4551         
4552                 // Add the data to the vendor variables.
4553         
4554                 VendorList.erase(*VendorCount);
4555                 VendorListPEN.erase(*VendorCount);
4556                 VendorListElement.erase(*VendorCount);
4557         
4558                 VendorList.insert(std::make_pair(*VendorCount, PropertySeg2));
4559                 VendorListPEN.insert(std::make_pair(*VendorCount, wxSVNDID));
4560                 VendorListElement.insert(std::make_pair(*VendorCount, wxSVNDPropName));
4561         
4562         }
4566 void ContactDataObject::ClearData(){
4568     NameTitle.clear();
4569     NameForename.clear();
4570     NameSurname.clear();
4571     NameOtherNames.clear();
4572     NameSuffix.clear();
4573     NameNickname.clear();
4574     NameDisplayAs.clear();
4575     NameLanguage.clear();
4576     NameAltID.clear();
4577     NameTokens.clear();
4578     
4579     Birthday.clear();
4580     BirthdayAltID.clear();
4581     BirthdayCalScale.clear();
4582     BirthdayTokens.clear();
4583     Anniversary.clear();
4584     AnniversaryAltID.clear();
4585     AnniversaryCalScale.clear();
4586     AnniversaryTokens.clear();
4587     
4588     Gender.clear();
4589     GenderDetails.clear();
4590     GenderTokens.clear();
4591     
4592     UIDToken.clear();
4593     Revision.clear();
4594     RevisionTokens.clear();
4595     
4596     SourceList.clear();
4597     SourceListAltID.clear();
4598     SourceListPID.clear();
4599     SourceListType.clear();
4600     SourceListTokens.clear();
4601     SourceListMediatype.clear();
4602     SourceListPref.clear();
4603     
4604     XMLList.clear();
4605     XMLListAltID.clear();
4606     
4607     ClientPIDList.clear();
4608     ClientPIDListTokens.clear();
4609     
4610     FullNamesList.clear();    
4611     FullNamesListType.clear();
4612     FullNamesListLanguage.clear();
4613     FullNamesListAltID.clear();
4614     FullNamesListPID.clear();
4615     FullNamesListTokens.clear();
4616     FullNamesListPref.clear();
4617     
4618     GeneralNicknamesList.clear();
4619     GeneralNicknamesListType.clear();
4620     GeneralNicknamesListLanguage.clear();
4621     GeneralNicknamesListAltID.clear();
4622     GeneralNicknamesListPID.clear();
4623     GeneralNicknamesListTokens.clear();        
4624     GeneralNicknamesListPref.clear();        
4625     
4626     GeneralAddressList.clear();
4627     GeneralAddressListTown.clear();
4628     GeneralAddressListCounty.clear();
4629     GeneralAddressListPostCode.clear();
4630     GeneralAddressListCountry.clear();
4631     GeneralAddressListLabel.clear();
4632     GeneralAddressListLang.clear();        
4633     GeneralAddressListAltID.clear();
4634     GeneralAddressListPID.clear();
4635     GeneralAddressListTokens.clear();
4636     GeneralAddressListGeo.clear();
4637     GeneralAddressListTimezone.clear();        
4638     GeneralAddressListType.clear();
4639     GeneralAddressListMediatype.clear();
4640     GeneralAddressListPref.clear();
4641     
4642     GeneralEmailList.clear();
4643     GeneralEmailListAltID.clear();
4644     GeneralEmailListPID.clear();
4645     GeneralEmailListType.clear();
4646     GeneralEmailListTokens.clear();
4647     GeneralEmailListPref.clear();
4648     
4649     GeneralIMList.clear();
4650     GeneralIMListAltID.clear();
4651     GeneralIMListPID.clear();
4652     GeneralIMListType.clear();
4653     GeneralIMListTypeInfo.clear();
4654     GeneralIMListTokens.clear();
4655     GeneralIMListMediatype.clear();
4656     GeneralIMListPref.clear();
4657     
4658     GeneralTelephoneList.clear();
4659     GeneralTelephoneListAltID.clear();
4660     GeneralTelephoneListPID.clear();
4661     GeneralTelephoneListType.clear();
4662     GeneralTelephoneListTokens.clear();
4663     GeneralTelephoneListTypeInfo.clear();
4664     GeneralTelephoneListPref.clear();
4665     
4666     GeneralLanguageList.clear();
4667     GeneralLanguageListAltID.clear();
4668     GeneralLanguageListPID.clear();
4669     GeneralLanguageListType.clear();
4670     GeneralLanguageListTokens.clear();
4671     GeneralLanguageListPref.clear();
4672     
4673     GeneralTZList.clear();
4674     GeneralTZListAltID.clear();
4675     GeneralTZListPID.clear();
4676     GeneralTZListType.clear();
4677     GeneralTZListTokens.clear();
4678     GeneralTZListMediatype.clear();
4679     GeneralTZListPref.clear();
4680     
4681     GeneralGeographyList.clear();
4682     GeneralGeographyListAltID.clear();
4683     GeneralGeographyListPID.clear();
4684     GeneralGeographyListType.clear();
4685     GeneralGeographyListTokens.clear();
4686     GeneralGeographyListMediatype.clear();
4687     GeneralGeographyListPref.clear();
4688     
4689     GeneralRelatedList.clear();
4690     GeneralRelatedListRelType.clear();
4691     GeneralRelatedListLanguage.clear();
4692     GeneralRelatedListAltID.clear();
4693     GeneralRelatedListPID.clear();
4694     GeneralRelatedListType.clear();
4695     GeneralRelatedListTokens.clear();
4696     GeneralRelatedListPref.clear();
4697     
4698     GeneralWebsiteList.clear();
4699     GeneralWebsiteListAltID.clear();
4700     GeneralWebsiteListPID.clear();
4701     GeneralWebsiteListType.clear();
4702     GeneralWebsiteListTokens.clear();
4703     GeneralWebsiteListMediatype.clear();
4704     GeneralWebsiteListPref.clear();
4705     
4706     GeneralTitleList.clear();
4707     GeneralTitleListLanguage.clear();        
4708     GeneralTitleListAltID.clear();
4709     GeneralTitleListPID.clear();
4710     GeneralTitleListType.clear();
4711     GeneralTitleListTokens.clear();
4712     GeneralTitleListPref.clear();
4713     
4714     GeneralRoleList.clear();
4715     GeneralRoleListLanguage.clear();        
4716     GeneralRoleListAltID.clear();
4717     GeneralRoleListPID.clear();
4718     GeneralRoleListType.clear();
4719     GeneralRoleListTokens.clear();
4720     GeneralRoleListPref.clear();
4721     
4722     GeneralOrganisationsList.clear();
4723     GeneralOrganisationsListLanguage.clear();        
4724     GeneralOrganisationsListAltID.clear();
4725     GeneralOrganisationsListPID.clear();
4726     GeneralOrganisationsListType.clear();
4727     GeneralOrganisationsListTokens.clear();
4728     GeneralOrganisationsListSortAs.clear();
4729     GeneralOrganisationsListPref.clear();
4730     
4731     GeneralNoteList.clear();
4732     GeneralNoteListLanguage.clear();        
4733     GeneralNoteListAltID.clear();
4734     GeneralNoteListPID.clear();
4735     GeneralNoteListType.clear();
4736     GeneralNoteListTokens.clear();
4737     GeneralNoteListPref.clear();
4738     
4739     /* Items on Home Tab */        
4740     
4741     HomeNicknamesList.clear();
4742     HomeNicknamesListType.clear();
4743     HomeNicknamesListLanguage.clear();
4744     HomeNicknamesListAltID.clear();
4745     HomeNicknamesListPID.clear();
4746     HomeNicknamesListTokens.clear();        
4747     HomeNicknamesListPref.clear();        
4748     
4749     HomeAddressList.clear();
4750     HomeAddressListTown.clear();
4751     HomeAddressListCounty.clear();
4752     HomeAddressListPostCode.clear();
4753     HomeAddressListCountry.clear();
4754     HomeAddressListLabel.clear();
4755     HomeAddressListLang.clear();        
4756     HomeAddressListAltID.clear();
4757     HomeAddressListPID.clear();
4758     HomeAddressListTokens.clear();
4759     HomeAddressListGeo.clear();
4760     HomeAddressListTimezone.clear();        
4761     HomeAddressListType.clear();
4762     HomeAddressListMediatype.clear();
4763     HomeAddressListPref.clear();
4764     
4765     HomeEmailList.clear();
4766     HomeEmailListAltID.clear();
4767     HomeEmailListPID.clear();
4768     HomeEmailListType.clear();
4769     HomeEmailListTokens.clear();
4770     HomeEmailListPref.clear();
4771     
4772     HomeIMList.clear();
4773     HomeIMListAltID.clear();
4774     HomeIMListPID.clear();
4775     HomeIMListType.clear();
4776     HomeIMListTypeInfo.clear();
4777     HomeIMListTokens.clear();
4778     HomeIMListMediatype.clear();
4779     HomeIMListPref.clear();
4780     
4781     HomeTelephoneList.clear();
4782     HomeTelephoneListAltID.clear();
4783     HomeTelephoneListPID.clear();
4784     HomeTelephoneListType.clear();
4785     HomeTelephoneListTokens.clear();
4786     HomeTelephoneListTypeInfo.clear();
4787     HomeTelephoneListPref.clear();
4788     
4789     HomeLanguageList.clear();
4790     HomeLanguageListAltID.clear();
4791     HomeLanguageListPID.clear();
4792     HomeLanguageListType.clear();
4793     HomeLanguageListTokens.clear();
4794     HomeLanguageListPref.clear();
4795     
4796     HomeTZList.clear();
4797     HomeTZListAltID.clear();
4798     HomeTZListPID.clear();
4799     HomeTZListType.clear();
4800     HomeTZListTokens.clear();
4801     HomeTZListMediatype.clear();
4802     HomeTZListPref.clear();
4803     
4804     HomeGeographyList.clear();
4805     HomeGeographyListAltID.clear();
4806     HomeGeographyListPID.clear();
4807     HomeGeographyListType.clear();
4808     HomeGeographyListTokens.clear();
4809     HomeGeographyListMediatype.clear();
4810     HomeGeographyListPref.clear();       
4811     
4812     HomeWebsiteList.clear();
4813     HomeWebsiteListAltID.clear();
4814     HomeWebsiteListPID.clear();
4815     HomeWebsiteListType.clear();
4816     HomeWebsiteListTokens.clear();
4817     HomeWebsiteListMediatype.clear();
4818     HomeWebsiteListPref.clear();
4819     
4820     HomeTitleList.clear();
4821     HomeTitleListLanguage.clear();
4822     HomeTitleListAltID.clear();
4823     HomeTitleListPID.clear();
4824     HomeTitleListType.clear();
4825     HomeTitleListTokens.clear();
4826     HomeTitleListPref.clear();
4827     
4828     HomeRoleList.clear();
4829     HomeRoleListLanguage.clear();        
4830     HomeRoleListAltID.clear();
4831     HomeRoleListPID.clear();
4832     HomeRoleListType.clear();
4833     HomeRoleListTokens.clear();
4834     HomeRoleListPref.clear();
4835     
4836     HomeOrganisationsList.clear();
4837     HomeOrganisationsListLanguage.clear();        
4838     HomeOrganisationsListAltID.clear();
4839     HomeOrganisationsListPID.clear();
4840     HomeOrganisationsListType.clear();
4841     HomeOrganisationsListTokens.clear();
4842     HomeOrganisationsListSortAs.clear();
4843     HomeOrganisationsListPref.clear();
4844     
4845     HomeNoteList.clear();
4846     HomeNoteListLanguage.clear();        
4847     HomeNoteListAltID.clear();
4848     HomeNoteListPID.clear();
4849     HomeNoteListType.clear();
4850     HomeNoteListTokens.clear();
4851     HomeNoteListPref.clear();        
4852     
4853     /* Items on the Business tab */
4854     
4855     BusinessNicknamesList.clear();
4856     BusinessNicknamesListType.clear();
4857     BusinessNicknamesListLanguage.clear();
4858     BusinessNicknamesListAltID.clear();
4859     BusinessNicknamesListPID.clear();
4860     BusinessNicknamesListTokens.clear();        
4861     BusinessNicknamesListPref.clear();        
4862     
4863     BusinessAddressList.clear();
4864     BusinessAddressListTown.clear();
4865     BusinessAddressListCounty.clear();
4866     BusinessAddressListPostCode.clear();
4867     BusinessAddressListCountry.clear();
4868     BusinessAddressListLabel.clear();
4869     BusinessAddressListLang.clear();        
4870     BusinessAddressListAltID.clear();
4871     BusinessAddressListPID.clear();
4872     BusinessAddressListTokens.clear();
4873     BusinessAddressListGeo.clear();
4874     BusinessAddressListTimezone.clear();        
4875     BusinessAddressListType.clear();
4876     BusinessAddressListMediatype.clear();
4877     BusinessAddressListPref.clear();
4878     
4879     BusinessEmailList.clear();
4880     BusinessEmailListAltID.clear();
4881     BusinessEmailListPID.clear();
4882     BusinessEmailListType.clear();
4883     BusinessEmailListTokens.clear();
4884     BusinessEmailListPref.clear();
4885     
4886     BusinessIMList.clear();
4887     BusinessIMListAltID.clear();
4888     BusinessIMListPID.clear();
4889     BusinessIMListType.clear();
4890     BusinessIMListTokens.clear();
4891     BusinessIMListMediatype.clear();
4892     BusinessIMListPref.clear();
4893     
4894     BusinessTelephoneList.clear();
4895     BusinessTelephoneListAltID.clear();
4896     BusinessTelephoneListPID.clear();
4897     BusinessTelephoneListType.clear();
4898     BusinessTelephoneListTokens.clear();
4899     BusinessTelephoneListPref.clear();
4900     
4901     BusinessLanguageList.clear();
4902     BusinessLanguageListAltID.clear();
4903     BusinessLanguageListPID.clear();
4904     BusinessLanguageListType.clear();
4905     BusinessLanguageListTokens.clear();
4906     BusinessLanguageListPref.clear();
4907     
4908     BusinessTZList.clear();
4909     BusinessTZListAltID.clear();
4910     BusinessTZListPID.clear();
4911     BusinessTZListType.clear();
4912     BusinessTZListTokens.clear();
4913     BusinessTZListMediatype.clear();
4914     BusinessTZListPref.clear();
4915     
4916     BusinessGeographyList.clear();
4917     BusinessGeographyListAltID.clear();
4918     BusinessGeographyListPID.clear();
4919     BusinessGeographyListType.clear();
4920     BusinessGeographyListTokens.clear();
4921     BusinessGeographyListMediatype.clear();
4922     BusinessGeographyListPref.clear();          
4923     
4924     BusinessWebsiteList.clear();
4925     BusinessWebsiteListAltID.clear();
4926     BusinessWebsiteListPID.clear();
4927     BusinessWebsiteListType.clear();
4928     BusinessWebsiteListTokens.clear();
4929     BusinessWebsiteListMediatype.clear();
4930     BusinessWebsiteListPref.clear();
4931     
4932     BusinessTitleList.clear();
4933     BusinessTitleListLanguage.clear();        
4934     BusinessTitleListAltID.clear();
4935     BusinessTitleListPID.clear();
4936     BusinessTitleListType.clear();
4937     BusinessTitleListTokens.clear();
4938     BusinessTitleListPref.clear();
4939     
4940     BusinessRoleList.clear();
4941     BusinessRoleListLanguage.clear();        
4942     BusinessRoleListAltID.clear();
4943     BusinessRoleListPID.clear();
4944     BusinessRoleListType.clear();
4945     BusinessRoleListTokens.clear();
4946     BusinessRoleListPref.clear();
4947     
4948     BusinessOrganisationsList.clear();
4949     BusinessOrganisationsListLanguage.clear();        
4950     BusinessOrganisationsListAltID.clear();
4951     BusinessOrganisationsListPID.clear();
4952     BusinessOrganisationsListType.clear();
4953     BusinessOrganisationsListTokens.clear();
4954     BusinessOrganisationsListSortAs.clear();        
4955     BusinessOrganisationsListPref.clear();
4956     
4957     BusinessNoteList.clear();
4958     BusinessNoteListLanguage.clear();        
4959     BusinessNoteListAltID.clear();
4960     BusinessNoteListPID.clear();
4961     BusinessNoteListType.clear();
4962     BusinessNoteListTokens.clear();
4963     BusinessNoteListPref.clear();        
4964     
4965     /* Items on the Categories tab */
4966     
4967     CategoriesList.clear();
4968     CategoriesListAltID.clear();
4969     CategoriesListPID.clear();
4970     CategoriesListType.clear();
4971     CategoriesListTokens.clear();
4972     CategoriesListLanguage.clear();
4973     CategoriesListPref.clear();    
4974     
4975     /* Items on the Groups tab */
4976     
4977     GroupsList.clear();
4978     GroupsListAltID.clear();
4979     GroupsListPID.clear();
4980     GroupsListType.clear();
4981     GroupsListMediaType.clear();
4982     GroupsListTokens.clear();
4983     GroupsListPref.clear();
4984     
4985     /* Items on the Pictures tab */
4986     
4987     PicturesList.clear();
4988     PicturesListAltID.clear();
4989     PicturesListPID.clear();
4990     PicturesListType.clear();
4991     PicturesListPicEncType.clear();
4992     PicturesListPictureType.clear();
4993     PicturesListTokens.clear();
4994     PicturesListMediatype.clear();        
4995     PicturesListPref.clear();
4996     
4997     /* Items on the Logos tab */
4998     
4999     LogosList.clear();
5000     LogosListAltID.clear();
5001     LogosListPID.clear();
5002     LogosListType.clear();
5003     LogosListPicEncType.clear();        
5004     LogosListPictureType.clear();
5005     LogosListTokens.clear();
5006     LogosListMediatype.clear();        
5007     LogosListPref.clear();
5008     
5009     /* Items on the Sounds tab */
5010     
5011     SoundsList.clear();
5012     SoundsListAltID.clear();
5013     SoundsListPID.clear();
5014     SoundsListType.clear();
5015     SoundsListAudioEncType.clear();        
5016     SoundsListAudioType.clear();        
5017     SoundsListTokens.clear();
5018     SoundsListMediatype.clear();        
5019     SoundsListPref.clear();    
5020     
5021     /* Items on the Calendaring tab */
5022     
5023     CalendarList.clear();
5024     CalendarListAltID.clear();
5025     CalendarListPID.clear();
5026     CalendarListType.clear();
5027     CalendarListTokens.clear();
5028     CalendarListMediatype.clear();        
5029     CalendarListPref.clear();
5030     
5031     CalendarRequestList.clear();
5032     CalendarRequestListAltID.clear();
5033     CalendarRequestListPID.clear();
5034     CalendarRequestListType.clear();
5035     CalendarRequestListTokens.clear();
5036     CalendarRequestListMediatype.clear();        
5037     CalendarRequestListPref.clear();        
5038     
5039     FreeBusyList.clear();
5040     FreeBusyListAltID.clear();
5041     FreeBusyListPID.clear();
5042     FreeBusyListType.clear();
5043     FreeBusyListTokens.clear();
5044     FreeBusyListMediatype.clear();        
5045     FreeBusyListPref.clear();
5046     
5047     /* Items on the Security tab */
5048     
5049     KeyList.clear();
5050     KeyListAltID.clear();
5051     KeyListPID.clear();
5052     KeyListKeyType.clear();        
5053     KeyListDataType.clear();        
5054     KeyListDataEncType.clear();
5055     KeyListType.clear();
5056     KeyListTokens.clear();
5057     KeyListPref.clear();
5058     
5059     /* Items on the Other tab */
5060     
5061     VendorList.clear();
5062     VendorListPEN.clear();
5063     VendorListElement.clear();
5064     
5065     XTokenList.clear();
5066     XTokenListTokens.clear();
5070 void ProcessNameValue(wxString *PropertyData, 
5071         wxString *PropertyName, 
5072         wxString *PropertyValue){
5074         wxStringTokenizer PropertyElement (*PropertyData, wxT("="));
5075         *PropertyName = PropertyElement.GetNextToken();                         
5076         *PropertyValue = PropertyElement.GetNextToken();
5080 void ProcessTokens(wxString *PropertyName,
5081         wxString *PropertyValue,
5082         wxString *PropertyTokens,
5083         bool *FirstToken){
5084         
5085         if (!PropertyName->IsEmpty() && !PropertyValue->IsEmpty() && *PropertyName != wxT("TYPE")){
5086                 
5087                 if (*FirstToken == TRUE){
5088                         
5089                         PropertyTokens->Append(*PropertyName + wxT("=") + *PropertyValue);
5090                         *FirstToken = FALSE;
5091                         
5092                 } else {
5093                         
5094                         PropertyTokens->Append(wxT(";") + *PropertyName + wxT("=") + *PropertyValue);
5095                         
5096                 }
5097                 
5098         }
5099         
5102 void ProcessStringValue(wxString *PropertyName,
5103         wxString PropertyNameMatch,
5104         std::map<int,wxString> *MapPtr,
5105         wxString *PropertyValue,
5106         int *ItemCount,
5107         bool *PropertyMatched){
5108         
5109         if (*PropertyName == PropertyNameMatch){
5110                 MapPtr->erase(*ItemCount);
5111                 MapPtr->insert(std::make_pair(*ItemCount, *PropertyValue));
5112                 *PropertyMatched = TRUE;
5113         }
5114         
5117 void ProcessIntegerValue(wxString *PropertyName,
5118         wxString PropertyNameMatch,
5119         std::map<int,int> *PrefPtr, 
5120         wxString *PropertyValue, 
5121         int *ItemCount,
5122         bool *PropertyMatched){
5124         if (*PropertyName == PropertyNameMatch){
5125                 *PropertyMatched = TRUE;
5126         } else {
5127                 return;
5128         }
5130         int PriorityNumber = 0; 
5131         bool ValidNumber = TRUE;
5132                         
5133         try{
5134                 PriorityNumber = std::stoi(PropertyValue->ToStdString());
5135         }
5136                         
5137         catch(std::invalid_argument &e){
5138                 ValidNumber = FALSE;
5139         }
5141         if (ValidNumber == TRUE){
5143                 PrefPtr->erase(*ItemCount);
5144                 PrefPtr->insert(std::make_pair(*ItemCount, PriorityNumber));
5146         }
5150 void SplitValues(wxString *PropertyLine, 
5151         std::map<int,int> *SplitPoints, 
5152         std::map<int,int> *SplitLength, 
5153         int intSize){
5154         
5155         size_t intPropertyLen = PropertyLine->Len();
5156         int intSplitsFound = 0;
5157         int intSplitSize = 0;
5158         int intSplitSeek = 0;
5159         
5160         for (int i = intSize; i <= intPropertyLen; i++){
5162                 intSplitSize++;
5163         
5164                 if (PropertyLine->Mid(i, 1) == wxT(";") &&
5165                     PropertyLine->Mid((i - 1), 1) != wxT("\\")){
5166            
5167                     if (intSplitsFound == 0){
5168             
5169                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize)));
5170           
5171                     } else {
5172            
5173                         SplitLength->insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
5174             
5175                     }
5176             
5177                     SplitPoints->insert(std::make_pair(intSplitsFound, (i + 1)));
5178             
5179                     intSplitsFound++;
5180                     intSplitSeek = i;
5181                     intSplitSize = 0;
5182             
5183                 }
5185         }
5187         if (intSplitsFound == 0){
5189                 SplitPoints->insert(std::make_pair(intSplitsFound, (8 + 1)));
5190                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5192         } else {
5194                 SplitPoints->insert(std::make_pair(intSplitsFound, (intSplitSeek + 1)));
5195                 SplitLength->insert(std::make_pair(intSplitsFound, intSplitSize));
5197         }
5201 void CheckType(wxString *PropertySeg1, 
5202         std::map<int,int> *SplitPoints, 
5203         std::map<int,int> *SplitLength, 
5204         int *intPrevValue, 
5205         PropertyType *PropType){
5206         
5207         wxString PropertyData;
5208         wxString PropertyName;
5209         wxString PropertyValue;
5210         std::map<int,int>::iterator SLiter;
5211         
5212         for (std::map<int, int>::iterator intiter = SplitPoints->begin(); 
5213         intiter != SplitPoints->end(); ++intiter){
5214         
5215                 SLiter = SplitLength->find(intiter->first);     
5216                 PropertyData = PropertySeg1->Mid(*intPrevValue, (SLiter->second));
5217                 ProcessNameValue(&PropertyData, &PropertyName, &PropertyValue);         
5218                 *intPrevValue = intiter->second;
5219                 
5220                 if (PropertyName == wxT("TYPE")){
5221                                 
5222                         if (PropertyValue == wxT("work")){
5223                         
5224                                 *PropType = PROPERTY_WORK;
5225                                                         
5226                         } else if (PropertyValue == wxT("home")){
5228                                 *PropType = PROPERTY_HOME;
5229                                                         
5230                         } else {
5231                         
5232                                 *PropType = PROPERTY_NONE;
5233                         
5234                         }
5235                 
5236                         return;
5237                 
5238                 }
5239         
5240         }
5241         
Xestia Software Development
Yn Maystri
© 2006 - 2019 Xestia Software Development
Software

Xestia Address Book
Xestia Calendar
Development

Xestia Gelforn
Everything else

About
News
Privacy Policy