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

Diff of /smsdaemon/Util.cpp

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

revision 42 by torben, Tue Jun 10 22:22:19 2008 UTC revision 86 by torben, Mon Jun 16 07:39:56 2008 UTC
# Line 7  Line 7 
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    
13  #include "util.h"  #include "util.h"
# Line 53  namespace Util Line 53  namespace Util
53                  return str;                  return str;
54          }          }
55    
56                    bool my_isspace(char ch)
57            {
58                    return (isspace(ch) || ch == 0);
59            }
60    
61          string str_trim(string str)          string str_trim(string str)
62          {          {
63                  while (str.length() > 0 && isspace(str.at(0)))                  while (str.length() > 0 && my_isspace(str.at(0)))
64                          str.erase(0,1);                          str.erase(0,1);
65                  while (str.length() > 0 && isspace(str.at(str.length()-1)))                  while (str.length() > 0 && my_isspace(str.at(str.length()-1)))
66                          str.erase(str.length()-1,1);                          str.erase(str.length()-1,1);
67                  return str;                  return str;
68          }          }
# Line 101  namespace Util Line 104  namespace Util
104                  return retval;                  return retval;
105          }          }
106    
107    
108        string str_toupper(string str)
109            {
110                    for (unsigned i=0; i<str.length(); ++i)
111                    {
112                            str.replace(i, 1 ,1, ::toupper(str.at(i)));
113                    }
114                    return str;
115            }
116    
117            string str_tolower(string str)
118            {
119                    for (unsigned i=0; i<str.length(); ++i)
120                    {
121                            str.replace(i, 1 ,1, ::tolower(str.at(i)));
122                    }
123                    return str;
124            }
125    
126    
127            string str_formatint(int i)
128            {
129                    std::ostringstream os;
130                    os << i;
131                    return os.str();
132            }
133    
134    
135          string str_characters(string str)          string str_characters(string str)
136          {          {
137                  string rep;                  string rep;
# Line 127  namespace Util Line 158  namespace Util
158          }          }
159    
160    
161          string str_gsm2latin1(string str)          string str_gsm2latin(string str)
162          {          {
163                  str = str_replace_char(str, 0x1c, 198); //AE                  str = str_replace_char(str, 0x1c, 198); //AE
164                  str = str_replace_char(str, 0x0b, 216); //OE                  str = str_replace_char(str, 0x0b, 216); //OE
# Line 139  namespace Util Line 170  namespace Util
170                  return str;                  return str;
171          }          }
172    
173            string str_latin2gsm(string str)
174            {
175                    str = str_replace_char(str, 198, 0x1c); //AE
176                    str = str_replace_char(str, 216, 0x0b); //OE
177                    str = str_replace_char(str, 197, 0x0e); //AA
178    
179                    str = str_replace_char(str, 230, 0x1d); //ae
180                    str = str_replace_char(str, 248, 0x0c); //oe
181                    str = str_replace_char(str, 229, 0x0f); //aa
182                    return str;
183            }
184    
185          string readUrl(string url, string tempfile)          string readUrl(string url, string tempfile)
186          {          {
187                  char buf[128000];                  char buf[128000];
188                  string document;                  string document;
189                                    
190                  ostringstream command;                  ostringstream command;
191                  command << "wget -O " << tempfile << " -o /dev/null \"" << url << "\"";                  command << "wget -O " << tempfile << " --tries=1 --timeout=15 -o /dev/null  \"" << url << "\"";
192                  system( command.str().c_str() );                  int res = my_system( command.str().c_str() );
193    
194                    if (res<0)
195                    {
196                            throw( std::runtime_error("Error retrieving document"));
197                    }
198    
199                    if (res>0)
200                    {
201                            throw std::runtime_error("Command time out or document not found");
202                    }
203    
204                  ifstream in( tempfile.c_str() );                  ifstream in( tempfile.c_str() );
205    
# Line 232  namespace Util Line 285  namespace Util
285    
286          int mTimeDiff(const timeval& then, const timeval& now)          int mTimeDiff(const timeval& then, const timeval& now)
287          {          {
288                  return uTimeDiff(then,now) / 1000;                  return ( (now.tv_sec - then.tv_sec)*1000) +
289                                    ((now.tv_usec-then.tv_usec)/1000);
290            }
291    
292            int my_system(const char* cmd)
293            {
294                    FILE* p;
295                    if ((p = popen(cmd,"w")) == NULL)
296                            return (-1);
297                    return (pclose(p));
298          }          }
299    
300  }  }

Legend:
Removed from v.42  
changed lines
  Added in v.86

  ViewVC Help
Powered by ViewVC 1.1.20