/[projects]/smsdaemon/Util.cpp
ViewVC logotype

Diff of /smsdaemon/Util.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 26 by torben, Mon Jun 9 18:15:53 2008 UTC revision 89 by torben, Mon Jun 16 10:09:17 2008 UTC
# Line 2  Line 2 
2  #include <string>  #include <string>
3  #include <sstream>  #include <sstream>
4  #include <vector>  #include <vector>
5    #include <cctype>
6    
7  #include <iostream>  #include <iostream>
8  #include <fstream>  #include <fstream>
9  #include <iconv.h>  #include <iconv.h>
10    #include <stdexcept>
11  #include <time.h>  #include <time.h>
12    #include <sys/time.h>
13    
14  #include "util.h"  #include "util.h"
15    
# Line 28  namespace Util Line 31  namespace Util
31    
32    
33    
34          void str_clean(string* str, string search, string replace)          string str_replace(string str, string search, string replace)
35          {          {
36                  unsigned int pos = 0;                  unsigned int pos = 0;
37                                    
38                  while ( (pos = str->find(search,pos)) != string::npos)                  while ( (pos = str.find(search,pos)) != string::npos)
39                  {                  {
40                          str->replace(pos, search.size(), replace);                          str.replace(pos, search.size(), replace);
41                          pos += replace.size();                          pos += replace.size();
42                  }                  }
43                    return str;
44            }
45    
46        std::string str_replace_char(std::string str, char search, char replace)
47            {
48                    unsigned int pos = 0;
49    
50                    while ( (pos = str.find(search,pos)) != string::npos)
51                    {
52                            str.replace(pos, 1, 1, replace);
53                    }
54                    return str;
55            }
56    
57            bool my_isspace(char ch)
58            {
59                    return (isspace(ch) || ch == 0);
60            }
61    
62            string str_trim(string str)
63            {
64                    while (str.length() > 0 && my_isspace(str.at(0)))
65                            str.erase(0,1);
66                    while (str.length() > 0 && my_isspace(str.at(str.length()-1)))
67                            str.erase(str.length()-1,1);
68                    return str;
69            }
70    
71            string str_striptags(string str)
72            {
73                    unsigned int pos=0;
74    
75                    while ( (pos=str.find("<",pos)) != string::npos)
76                    {
77                            unsigned int endpos = str.find(">",pos);
78                            if (endpos == string::npos)
79                                    break;
80                            str.erase(pos, (endpos-pos)+1);
81                    }
82    
83                    return str;
84          }          }
85    
86          vector<string> str_split(string input, string delimiter)          vector<string> str_split(string input, string delimiter)
# Line 61  namespace Util Line 105  namespace Util
105                  return retval;                  return retval;
106          }          }
107    
108    
109        string str_toupper(string str)
110            {
111                    for (unsigned i=0; i<str.length(); ++i)
112                    {
113                            str.replace(i, 1 ,1, ::toupper(str.at(i)));
114                    }
115                    return str;
116            }
117    
118            string str_tolower(string str)
119            {
120                    for (unsigned i=0; i<str.length(); ++i)
121                    {
122                            str.replace(i, 1 ,1, ::tolower(str.at(i)));
123                    }
124                    return str;
125            }
126    
127    
128            string str_formatint(int i)
129            {
130                    std::ostringstream os;
131                    os << i;
132                    return os.str();
133            }
134    
135    
136            string str_characters(string str)
137            {
138                    string rep;
139                    rep.append(1,197);
140                    str = str_replace(str, "&#197;", rep);
141    
142                    rep.at(0) = 198;
143                    str = str_replace(str, "&#198;", rep);
144    
145                    rep.at(0) = 216;
146                    str = str_replace(str, "&#216;", rep);
147    
148    
149                    rep.at(0) = 229;
150                    str = str_replace(str, "&#229;", rep);
151    
152                    rep.at(0) = 230;
153                    str = str_replace(str, "&#230;", rep);
154    
155                    rep.at(0) = 248;
156                    str = str_replace(str, "&#248;", rep);
157    
158                    return str;
159            }
160    
161    
162            string str_gsm2latin(string str)
163            {
164                    str = str_replace_char(str, 0x1c, 198); //AE
165                    str = str_replace_char(str, 0x0b, 216); //OE
166                    str = str_replace_char(str, 0x0e, 197); //AA
167    
168                    str = str_replace_char(str, 0x1d, 230); //ae
169                    str = str_replace_char(str, 0x0c, 248); //oe
170                    str = str_replace_char(str, 0x0f, 229); //aa
171                    return str;
172            }
173    
174            string str_latin2gsm(string str)
175            {
176                    str = str_replace_char(str, 198, 0x1c); //AE
177                    str = str_replace_char(str, 216, 0x0b); //OE
178                    str = str_replace_char(str, 197, 0x0e); //AA
179    
180                    str = str_replace_char(str, 230, 0x1d); //ae
181                    str = str_replace_char(str, 248, 0x0c); //oe
182                    str = str_replace_char(str, 229, 0x0f); //aa
183                    return str;
184            }
185    
186          string readUrl(string url, string tempfile)          string readUrl(string url, string tempfile)
187          {          {
188                  char buf[128000];                  char buf[128000];
189                  string document;                  string document;
190                                    
191                  ostringstream command;                  ostringstream command;
192                  command << "wget -O " << tempfile << " -o /dev/null \"" << url << "\"";                  command << "wget -O " << tempfile << " --tries=1 --timeout=15 -o /dev/null  \"" << url << "\"";
193                  system( command.str().c_str() );                  int res = my_system( command.str().c_str() );
194    
195                    if (res<0)
196                    {
197                            throw( std::runtime_error("Error retrieving document"));
198                    }
199    
200                    if (res>0)
201                    {
202                            throw std::runtime_error("Command time out or document not found");
203                    }
204    
205                  ifstream in( tempfile.c_str() );                  ifstream in( tempfile.c_str() );
206    
# Line 87  namespace Util Line 219  namespace Util
219                  return document;                  return document;
220          }          }
221    
222          string convertToUnicode(string _input)          
223    
224            string iconv_wrapper(string _input, string to_format, string from_format)
225          {          {
226                  char* input,*output,*input_ptr, *output_ptr;                  char* input,*output,*input_ptr, *output_ptr;
227                  input = input_ptr = (char*) malloc(_input.size()+1);                  input = input_ptr = (char*) malloc(_input.size()+1);
# Line 99  namespace Util Line 233  namespace Util
233                                    
234                  unsigned int realinsize,insize,outsize,realsize;                  unsigned int realinsize,insize,outsize,realsize;
235                                    
236                  iconv_t icv = iconv_open("UTF8", "ISO8859-1");                  iconv_t icv = iconv_open(to_format.c_str(), from_format.c_str());
237                  if (icv == (iconv_t)-1)                  if (icv == (iconv_t)-1)
238                  {                  {
239                          perror(0);                          perror(0);
# Line 135  namespace Util Line 269  namespace Util
269              return returnstr;              return returnstr;
270          }          }
271    
272            std::string convertToUnicode(std::string str)
273            {
274                    return iconv_wrapper(str, "UTF-8", "ISO8859-1");
275            }
276    
277            std::string convertFromUnicode(std::string str)
278            {
279                    return iconv_wrapper(str, "ISO8859-1", "UTF-8");
280            }
281    
282          int uTimeDiff(const timeval& then, const timeval& now)          int uTimeDiff(const timeval& then, const timeval& now)
283          {          {
284                  return ( (now.tv_sec - then.tv_sec)*1000000) + (now.tv_usec-then.tv_usec);                  return ( (now.tv_sec - then.tv_sec)*1000000) + (now.tv_usec-then.tv_usec);
# Line 142  namespace Util Line 286  namespace Util
286    
287          int mTimeDiff(const timeval& then, const timeval& now)          int mTimeDiff(const timeval& then, const timeval& now)
288          {          {
289                  return uTimeDiff(then,now) / 1000;                  return ( (now.tv_sec - then.tv_sec)*1000) +
290                                    ((now.tv_usec-then.tv_usec)/1000);
291            }
292    
293    
294            timeval GetTimeOfDay()
295            {
296                    timeval now;
297                    gettimeofday(&now,0);
298                    return now;
299            }
300    
301            int my_system(const char* cmd)
302            {
303                    FILE* p;
304                    if ((p = popen(cmd,"w")) == NULL)
305                            return (-1);
306                    return (pclose(p));
307          }          }
308    
309  }  }

Legend:
Removed from v.26  
changed lines
  Added in v.89

  ViewVC Help
Powered by ViewVC 1.1.20