Imported Upstream version 0.8~alpha1
[platform/upstream/syncevolution.git] / src / client-api / src / c++ / common / examples / MailTest.cpp
1 /*
2  * Funambol is a mobile platform developed by Funambol, Inc. 
3  * Copyright (C) 2003 - 2007 Funambol, Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by
7  * the Free Software Foundation with the addition of the following permission 
8  * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
9  * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE 
10  * WARRANTY OF NON INFRINGEMENT  OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License 
18  * along with this program; if not, see http://www.gnu.org/licenses or write to
19  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20  * MA 02110-1301 USA.
21  * 
22  * You can contact Funambol, Inc. headquarters at 643 Bair Island Road, Suite 
23  * 305, Redwood City, CA 94063, USA, or at email address info@funambol.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License
30  * version 3, these Appropriate Legal Notices must retain the display of the
31  * "Powered by Funambol" logo. If the display of the logo is not reasonably 
32  * feasible for technical reasons, the Appropriate Legal Notices must display
33  * the words "Powered by Funambol".
34  */
35
36 #include "base/fscapi.h"
37 #include "base/util/utils.h"
38 #include "base/Log.h"
39 #include "spds/spdsutils.h"
40 #include <stdio.h>
41
42 #include "spds/MailMessage.h"
43 #include "spds/EmailData.h"
44 #include "base/globalsdef.h"
45
46 USE_NAMESPACE
47
48 // Read a text file and convert it from UTF-8 to WCHAR
49 static int readFromFile(const char* path, WCHAR **message, size_t *len)
50 {
51     char *msg = 0;
52     size_t msglen;
53
54     // Read file
55     int ret = readFile(path, &msg, &msglen);
56     if(ret)
57         return ret;
58     msg[msglen]=0;
59     // Convert content
60     *message = utf82wc(msg);
61     *len=wcslen(*message);
62     // Free memory
63     delete [] msg;
64
65     return 0;
66 }
67
68 #ifdef _WIN32_WCE
69 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd )
70 #else
71 int main(int argc, char** argv)
72 #endif
73 {
74     size_t msglen=0;
75     WCHAR *name[10], *msg=0;
76     int i;
77     const WCHAR *attach;
78
79 #ifdef _WIN32_WCE
80     name[0] = stringdup(TEXT("message.xml"));
81     name[1] = stringdup(TEXT("text.xml"));
82     name[2] = NULL;
83     attach = TEXT("/synclog.txt");
84 #else
85     for(i=1; i<argc; i++)
86        name[i-1] = utf82wc(argv[i]);
87     name[i-1] = NULL;
88     attach = TEXT("c:/windows/temp/synclog.txt");
89 #endif
90     LOG.setLevel(LOG_LEVEL_DEBUG); // Force debug level for this test.
91
92     // Test parse/format loop if names were given on cmdline
93     for (i=0; name[i]; i++) {
94         msg = loadAndConvert(name[i]);
95         if( !msg ){
96             WCHAR dbg[256];
97             wsprintf(dbg, TEXT("Can't open file %s\n"), name[i]);
98                 LOG.error(dbg);
99             continue;
100         }
101
102         EmailData em;
103
104         if (em.parse(msg))
105             fprintf(stderr, "Parse failed on: %S\n", name[i]);
106
107         delete [] msg;
108
109         WCHAR outname[10];
110         wsprintf(outname, TEXT("msgout%d.xml"), i);
111         if ( convertAndSave( outname, em.format() ) ) {
112             fprintf(stderr, "Error in convertAndSave(em)\n");
113         }
114     }
115
116     // Try to send a new mail with attachment
117     EmailData newmail;
118     MailMessage n;
119     BodyPart body;
120
121     body.setContent(TEXT("Ma che bella la città!"));
122
123     n.setFrom(TEXT("gazza@funambol.com"));
124     n.setTo(TEXT("magi@funambol.com"));
125     n.setSubject(TEXT("Test"));
126     n.setBody(body);
127
128         BodyPart a;
129         a.setFilename( TEXT("pippo.txt") );
130         a.setContent( attach );
131         a.setEncoding( TEXT("base64") );
132     n.addAttachment(a);
133
134     newmail.setRead(true);
135     newmail.setEmailItem(n);
136
137     if ( convertAndSave( L"attachment.xml", newmail.format() ) ) {
138         fprintf(stderr, "Error in convertAndSave(newmail)\n");
139     }
140     //extern size_t StringBuffer_memcount;
141     //fprintf(stderr, "Memcount: %ld\n", StringBuffer_memcount);
142     //getchar();
143         return 0;
144 }