Home | News | Projects | Releases
Bugs | RFE | Repositories | Help
Added copyright and license header to the C++ source and header files in the contacte...
[xestiaab/.git] / source / contacteditor / frmContactEditor-LoadSound.cpp
1 // frmContactEditor-LoadSound.cpp - frmContactEditor load sound subroutines.
2 //
3 // (c) 2012-2015 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 "frmContactEditor.h"
20 #include "../common/base64.h"
22 void frmContactEditor::LoadSound(wxString wxSPropertySeg1, wxString wxSPropertySeg2, int *SoundCount){
24                         size_t intPropertyLen = wxSPropertySeg1.Len();
25                         std::map<int, int> SplitPoints;
26                         std::map<int, int> SplitLength;
27                         std::map<int, int>::iterator SLiter;                    
28                         wxString PropertyData;
29                         wxString PropertyName;
30                         wxString PropertyValue;
31                         wxString PropertyTokens;
32                         bool FirstToken = TRUE;
33                         int intSplitsFound = 0;
34                         int intSplitSize = 0;
35                         int intPrevValue = 7;
36                         int intPref = 0;                        
37                         int intType = 0;
38                         long ListCtrlIndex;
39                         
40                         SplitValues(&wxSPropertySeg1, &SplitPoints, &SplitLength, intPrevValue);
41                         
42                         intPrevValue = 6;
43                         
44                         // Look for type before continuing.                     
45                         
46                         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
47                         intiter != SplitPoints.end(); ++intiter){
48                         
49                                 SLiter = SplitLength.find(intiter->first);
50                         
51                                 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
52                                 
53                                 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
54                                 PropertyName = PropertyElement.GetNextToken();                          
55                                 PropertyValue = PropertyElement.GetNextToken();
56                                 
57                                 intPrevValue = intiter->second;
58                                 
59                                 if (PropertyName == wxT("TYPE")){
60                                 
61                                         if (PropertyValue == wxT("work")){
62                                         
63                                                 intType = 2;                                    
64                                         
65                                         } else if (PropertyValue == wxT("home")){
67                                                 intType = 1;
68                                         
69                                         } else {
70                                         
71                                                 intType = 0;
72                                         
73                                         }
74                                 
75                                 }
76                         
77                         }
78                         
79                         // Setup blank lines for later on.
80                         
81                         SoundsList.insert(std::make_pair(intValueSeek, ""));
82                         SoundsListType.insert(std::make_pair(intValueSeek, wxT("")));
83                         SoundsListAltID.insert(std::make_pair(intValueSeek, wxT("")));
84                         SoundsListPID.insert(std::make_pair(intValueSeek, wxT("")));
85                         SoundsListPref.insert(std::make_pair(intValueSeek, 0));
86                         SoundsListAudioEncType.insert(std::make_pair(intValueSeek, wxT("")));
87                         SoundsListAudioType.insert(std::make_pair(intValueSeek, wxT("")));                      
88                         SoundsListTokens.insert(std::make_pair(intValueSeek, wxT("")));
89                         SoundsListMediatype.insert(std::make_pair(intValueSeek, wxT("")));
91                         intPrevValue = 6;
93                         for (std::map<int, int>::iterator intiter = SplitPoints.begin(); 
94                         intiter != SplitPoints.end(); ++intiter){
95                         
96                                 SLiter = SplitLength.find(intiter->first);
97                         
98                                 PropertyData = wxSPropertySeg1.Mid(intPrevValue, (SLiter->second));
99                                 
100                                 wxStringTokenizer PropertyElement (PropertyData, wxT("="));
101                                 PropertyName = PropertyElement.GetNextToken();                          
102                                 PropertyValue = PropertyElement.GetNextToken();
103                                 
104                                 intPrevValue = intiter->second;
105                                 
106                                 // Process properties.
107                                 
108                                 size_t intPropertyValueLen = PropertyValue.Len();
109                                 
110                                 if (PropertyValue.Mid((intPropertyValueLen - 1), 1) == wxT("\"")){
111                                         
112                                         PropertyValue.Trim();
113                                         PropertyValue.RemoveLast();
114                                         
115                                 }                               
116                                 
117                                 if (PropertyValue.Mid(0, 1) == wxT("\"")){
118                                         
119                                         PropertyValue.Remove(0, 1);
120                                         
121                                 }                       
122                                 
123                                 ProcessCaptureStrings(&PropertyValue);
124                                 
125                                 if (PropertyName == wxT("ALTID")){
127                                         if (intType == 0){ SoundsListAltID.erase(intValueSeek); SoundsListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
128                                         else if (intType == 1){ SoundsListAltID.erase(intValueSeek); SoundsListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
129                                         else if (intType == 2){ SoundsListAltID.erase(intValueSeek); SoundsListAltID.insert(std::make_pair(intValueSeek, PropertyValue)); }
130                                 
131                                 } else if (PropertyName == wxT("PID")){
133                                         if (intType == 0){ SoundsListPID.erase(intValueSeek); SoundsListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
134                                         else if (intType == 1){ SoundsListPID.erase(intValueSeek); SoundsListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
135                                         else if (intType == 2){ SoundsListPID.erase(intValueSeek); SoundsListPID.insert(std::make_pair(intValueSeek, PropertyValue)); }
136                                 
137                                 } else if (PropertyName == wxT("PREF")){
138                                         
139                                         intPref = wxAtoi(PropertyValue);
140                                 
141                                         if (intType == 0){ SoundsListPref.erase(intValueSeek); SoundsListPref.insert(std::make_pair(intValueSeek, intPref)); }
142                                         else if (intType == 1){ SoundsListPref.erase(intValueSeek); SoundsListPref.insert(std::make_pair(intValueSeek, intPref)); }
143                                         else if (intType == 2){ SoundsListPref.erase(intValueSeek); SoundsListPref.insert(std::make_pair(intValueSeek, intPref)); }
144                                 
145                                 } else if (PropertyName == wxT("MEDIATYPE")){
146                                 
147                                         if (intType == 0){ SoundsListMediatype.erase(intValueSeek); SoundsListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
148                                         else if (intType == 1){ SoundsListMediatype.erase(intValueSeek); SoundsListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
149                                         else if (intType == 2){ SoundsListMediatype.erase(intValueSeek); SoundsListMediatype.insert(std::make_pair(intValueSeek, PropertyValue)); }
150                                 
151                                 } else {
152                                 
153                                         // Something else we don't know about so append
154                                         // to the tokens variable.
155                                         
156                                         if (!PropertyName.IsEmpty() && !PropertyValue.IsEmpty() && PropertyName != wxT("TYPE")){
157                                         
158                                                 if (FirstToken == TRUE){
159                                                 
160                                                         PropertyTokens.Append(PropertyName + wxT("=") + PropertyValue);
161                                                         FirstToken = FALSE;
162                                                 
163                                                 } else {
164                                                 
165                                                         PropertyTokens.Append(wxT(";") + PropertyName + wxT("=") + PropertyValue);
166                                                 
167                                                 }
168                                         
169                                         }
170                                 
171                                 }
172                         
173                         }       
174                         
175                         intPropertyLen = wxSPropertySeg2.Len();
176                         SplitPoints.clear();
177                         SplitLength.clear();
178                         intSplitsFound = 0;
179                         intSplitSize = 0;
180                         intPrevValue = 0;
181                         
182                         ProcessCaptureStrings(&wxSPropertySeg2);        
183                         
184                         for (int i = 0; i <= intPropertyLen; i++){
185                 
186                                 intSplitSize++;
187                         
188                                 if (wxSPropertySeg2.Mid(i, 1) == wxT(";")){
189                         
190                                         intSplitsFound++;
191                                         SplitPoints.insert(std::make_pair(intSplitsFound, (i + 1)));
192                                         
193                                         if (intSplitsFound == 6){ 
194                                         
195                                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
196                                                 break; 
197                                                 
198                                         } else {
199                                         
200                                                 SplitLength.insert(std::make_pair(intSplitsFound, (intSplitSize - 1)));
201                                         
202                                         }
203                                         
204                                         intSplitSize = 0;                                       
205                         
206                                 }
207                 
208                         }
209                         
210                         wxString wxSSoundURI;
211                         wxString wxSSoundMIME;
212                         wxString wxSSoundEncoding;
213                         wxString wxSSoundData;
214                         std::string base64enc;
215                         
216                         if (intSplitsFound == 0){
217                         
218                         } else {
219                         
220                                 std::map<int, int>::iterator striter;
221                         
222                                 striter = SplitLength.find(1);
223                         
224                                 wxStringTokenizer wSTDataType(wxSPropertySeg2.Mid(0, striter->second), wxT(":"));
225                         
226                                 while (wSTDataType.HasMoreTokens() == TRUE){
227                                 
228                                         wxSSoundURI = wSTDataType.GetNextToken();
229                                         wxSSoundMIME = wSTDataType.GetNextToken();
230                                         break;
231                                 
232                                 }                       
233                         
234                                 wxStringTokenizer wSTDataInfo(wxSPropertySeg2.Mid((striter->second + 1)), wxT(","));                    
235                         
236                                 while (wSTDataInfo.HasMoreTokens() == TRUE){
237                                 
238                                         wxSSoundEncoding = wSTDataInfo.GetNextToken();
239                                         wxSSoundData = wSTDataInfo.GetNextToken();                                      
240                                         base64enc = wxSSoundData.mb_str();
241                                         break;
242                                 
243                                 }
244                         
245                         }
246                         
247                         // Add the data to the General/Home/Work address variables.
248                         
249                         wxListItem coldata;
250                 
251                         coldata.SetId(intValueSeek);
252                         coldata.SetData(intValueSeek);
253                         coldata.SetText(_("Sound"));
254                         
255                         ListCtrlIndex = lboSounds->InsertItem(coldata);
256                                 
257                         if (intPref > 0 && intPref < 101){
258                                 
259                                 lboSounds->SetItem(ListCtrlIndex, 2, wxString::Format(wxT("%i"), intPref));
260                         
261                         }
262                                 
263                         SoundsList.erase(intValueSeek);
264                         SoundsListType.erase(intValueSeek);
265                         SoundsListTokens.erase(intValueSeek);
266                         SoundsListAudioType.erase(intValueSeek);
267                         SoundsListAudioEncType.erase(intValueSeek);
268                         SoundsList.insert(std::make_pair(intValueSeek, base64enc));
269                         SoundsListAudioType.insert(std::make_pair(intValueSeek, wxSSoundMIME));
270                         SoundsListAudioEncType.insert(std::make_pair(intValueSeek, wxSSoundEncoding));
271                         
272                         if (intType == 0){
273                         
274                                 SoundsListType.insert(std::make_pair(intValueSeek, wxT("")));
275                         
276                         } else if (intType == 1){
277                         
278                                 SoundsListType.insert(std::make_pair(intValueSeek, wxT("home")));
279                                 lboLogos->SetItem(ListCtrlIndex, 1, _("Home"));                 
280                         
281                         } else if (intType == 2){
282                         
283                                 SoundsListType.insert(std::make_pair(intValueSeek, wxT("work")));
284                                 lboLogos->SetItem(ListCtrlIndex, 1, _("Work"));
285                         
286                         }
287                         
288                         SoundsListTokens.insert(std::make_pair(intValueSeek, PropertyTokens));
289                         
290                         SoundCount++;
291                         intValueSeek++;
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