/[winpt]/trunk/Src/wptUtil.cpp
ViewVC logotype

Contents of /trunk/Src/wptUtil.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 214 - (show annotations)
Sun May 14 18:40:36 2006 UTC (18 years, 9 months ago) by twoaday
File size: 3399 byte(s)
2006-05-14  Timo Schulz  <ts@g10code.de>
                                                                                
        * wptKeyCache.cpp (gpg_keycache_update_attr): Parse
        preferred keyserver URL.
        * wptHTTP.cpp (extractHostInfo): Fix segv.
        * wptGPGUtil.cpp (gpg_find_key_subpacket): Ignore default
        gpg.conf.
        * wptKeyserverSearchDlg.cpp (search_hkp_keys): Do not
        assume an existing user id.
        * wptPassphraseCB.cpp (passphrase_cb): Automatic cancel
        if no passphrase is available.

(for complete list of changes, see Src/ChangeLog)

About to release 0.12.1


1 /* wptUtil.cpp - Helper functions
2 * Copyright (C) 2005 Timo Schulz
3 *
4 * This file is part of WinPT.
5 *
6 * WinPT is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * WinPT 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 GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with WinPT; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifdef HAVE_CONFIG_H
22 #include <config.h>
23 #endif
24
25 #include <string.h>
26 #include <stdlib.h>
27 #include <stdio.h>
28 #include <ctype.h>
29
30 /* code taken from glibc-2.2.1/sysdeps/generic/strsep.c */
31 char*
32 strsep (char **stringp, const char *delim)
33 {
34 char *begin, *end;
35 begin = *stringp;
36
37 if (begin == NULL)
38 return NULL;
39
40 /* A frequent case is when the delimiter string contains only one
41 character. Here we don't need to call the expensive `strpbrk'
42 function and instead work using `strchr'. */
43 if (delim[0] == '\0' || delim[1] == '\0') {
44 char ch = delim[0];
45 if (ch == '\0')
46 end = NULL;
47 else {
48 if (*begin == ch)
49 end = begin;
50 else if (*begin == '\0')
51 end = NULL;
52 else
53 end = strchr (begin + 1, ch);
54 }
55 }
56 else /* Find the end of the token. */
57 end = strpbrk (begin, delim);
58 if ( end ){
59 /* Terminate the token and set *STRINGP past NUL character. */
60 *end++ = '\0';
61 *stringp = end;
62 }
63 else
64 /* No more delimiters; this is the last token. */
65 *stringp = NULL;
66
67 return begin;
68 }
69
70
71 /* Like strstr but this version is case in-sentensive. */
72 const char *
73 stristr (const char *buf, const char *sub)
74 {
75 const char *t, *s ;
76 size_t n;
77 size_t buflen = strlen (buf);
78
79 for( t=buf, n=buflen, s=sub ; n ; t++, n-- ) {
80 if( toupper(*t) == toupper(*s) ) {
81 for( buf=t++, buflen = n--, s++;
82 n && toupper(*t) == toupper(*s); t++, s++, n-- )
83 ;
84 if( !*s )
85 return buf;
86 t = buf; n = buflen; s = sub ;
87 }
88 }
89 return NULL ;
90 }
91
92
93 /* Check if the email address @email only contain valid characters.
94 Return 0 on success. */
95 int
96 check_email_address (const char *email)
97 {
98 const char *allowed = "@._-%+;";
99 size_t i;
100
101 if (!strchr (email, '@'))
102 return -1;
103 for (i=0; i < strlen (email); i++) {
104 if (isdigit (email[i]) || isalpha (email[i])
105 || strchr (allowed, email[i]))
106 continue;
107 else
108 return -1;
109 }
110 return 0;
111 }
112
113
114 /* Return a substring of @str from the position @begin
115 to position @end. */
116 char*
117 substr (const char *str, unsigned int begin, unsigned int end)
118 {
119 char *p;
120 size_t i, pos;
121
122 if (end > strlen (str) || begin > strlen (str) || (end-begin) < 0)
123 return NULL;
124
125 /*p = new char[end-begin+1]; XXX: fixme*/
126 p = (char*)calloc (1, end-begin+1);
127 if (!p)
128 abort ();
129
130 for (i = begin, pos=0; i < end; i++)
131 p[pos++] = str[i];
132 p[pos] = '\0';
133 return p;
134 }

Properties

Name Value
svn:eol-style native

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26