src/include/common/vocl/vCard/vCardConverter.h

00001 /*
00002  * Funambol is a mobile platform developed by Funambol, Inc. 
00003  * Copyright (C) 2003 - 2007 Funambol, Inc.
00004  * 
00005  * This program is free software; you can redistribute it and/or modify it under
00006  * the terms of the GNU Affero General Public License version 3 as published by
00007  * the Free Software Foundation with the addition of the following permission 
00008  * added to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED
00009  * WORK IN WHICH THE COPYRIGHT IS OWNED BY FUNAMBOL, FUNAMBOL DISCLAIMS THE 
00010  * WARRANTY OF NON INFRINGEMENT  OF THIRD PARTY RIGHTS.
00011  * 
00012  * This program is distributed in the hope that it will be useful, but WITHOUT
00013  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00014  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
00015  * details.
00016  * 
00017  * You should have received a copy of the GNU Affero General Public License 
00018  * along with this program; if not, see http://www.gnu.org/licenses or write to
00019  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00020  * MA 02110-1301 USA.
00021  * 
00022  * You can contact Funambol, Inc. headquarters at 643 Bair Island Road, Suite 
00023  * 305, Redwood City, CA 94063, USA, or at email address info@funambol.com.
00024  * 
00025  * The interactive user interfaces in modified source and object code versions
00026  * of this program must display Appropriate Legal Notices, as required under
00027  * Section 5 of the GNU Affero General Public License version 3.
00028  * 
00029  * In accordance with Section 7(b) of the GNU Affero General Public License
00030  * version 3, these Appropriate Legal Notices must retain the display of the
00031  * "Powered by Funambol" logo. If the display of the logo is not reasonably 
00032  * feasible for technical reasons, the Appropriate Legal Notices must display
00033  * the words "Powered by Funambol".
00034  */
00035 
00036 
00037 #ifndef INCL_VIRTUAL_CARD_CONVERTER
00038 #define INCL_VIRTUAL_CARD_CONVERTER
00039 
00041 #include "base/fscapi.h"
00042 #include "vocl/vCard/Contact.h"
00043 #include "vocl/VConverter.h"
00044 
00045 #define VCARD21_PROPERTIES_LIST TEXT("BEGIN,FN,N,PHOTO,BDAY,ADR,LABEL,TEL,EMAIL,MAILER,TZ,GEO,TITLE,ROLE,LOGO,AGENT,ORG,NOTE,REV,SOUND,UID,URL,VERSION,KEY,NICKNAME,END")
00046 #define VCARD30_PROPERTIES_LIST TEXT("BEGIN,FN,N,PHOTO,BDAY,ADR,LABEL,TEL,EMAIL,MAILER,TZ,GEO,TITLE,ROLE,LOGO,AGENT,ORG,NOTE,REV,SOUND,UID,URL,VERSION,KEY,CATEGORIES,CLASS,NICKNAME,PRODID,SORT-STRING,END")
00047 #define PARAMTER21_LIST         TEXT("GROUP,TYPE,type,VALUE,ENCODING,CHARSET,LANGUAGE,QUOTED-PRINTABLE,BASE64,")
00048 #define PARAMTER30_LIST         TEXT("GROUP,TYPE,type,LANGUAGE,ENCODING,VALUE,")
00049 #define PHOTO21_TYPES           TEXT("GIF,CGM,WMF,BMP,MET,PMB,DIB,PICT,TIFF,PS,PDF,JPEG,MPEG,MPEG2,AVI,QTIME")
00050 #define ADDRESS21_TYPES         TEXT("DOM,INTL,POSTAL,PARCEL,HOME,WORK")
00051 #define ADDRESS30_TYPES         TEXT("DOM,INTL,POSTAL,PARCEL,HOME,WORK,PREF")
00052 #define TEL21_TYPES             TEXT("PREF,WORK,HOME,VOICE,FAX,MSG,CELL,PAGER,BBS,MODEM,CAR,ISDN,VIDEO")
00053 #define TEL30_TYPES             TEXT("PREF,WORK,HOME,VOICE,FAX,MSG,CELL,PAGER,BBS,MODEM,CAR,ISDN,VIDEO,PCS")
00054 #define EMAIL21_TYPES           TEXT("AOL,AppleLink,ATTMail,CIS,eWorld,INTERNET,IBMMail,MCIMail,POWERSHARE,PRODIGY,TLX,X400,PREF,WORK,HOME")
00055 #define EMAIL30_TYPES           TEXT("INTERNET,X400,PREF,WORK,HOME")
00056 #define SOUND21_TYPES           TEXT("WAVE,PCM,AIFF")
00057 #define KEY_TYPES               TEXT("X509,PGP")
00058 
00059 #define MAX_ERROR_DESCRIPTION        100
00060 #define ERROR_SUCCESS                0L
00061 #define ERROR_KEY_PROPERTY_MISSING   100L
00062 #define ERROR_ILLEGAL_VERSION_NUMBER 101L
00063 #define ERROR_ILLEGAL_PROPERTY_NAME  102L
00064 #define ERROR_UNSUPPORTED_ENCODING   103L
00065 #define ERROR_ILLEGAL_TYPE_PARAMETER 104L
00066 #define ERROR_ILLEGAL_PARAMETER      105L
00067 #define ERROR_INVALID_PROPERTY_VALUE 106L
00068 #include "base/globalsdef.h"
00069 
00070 BEGIN_NAMESPACE
00071 
00072 class WString;
00073 
00074 
00075 class vCardConverter {
00076 
00077 private:
00078     WCHAR* vCard;
00079     Contact* contact;
00080     bool validateTZ(WCHAR* timeZone);
00081     bool validateGeo(WCHAR* geo);
00082     bool checkType(WCHAR* types, WCHAR* typesList);
00083     bool validateProperty21(VProperty* prop, WString& errorDescription, long* errorCode);
00084     bool validateProperty30(VProperty* prop, WString& errorDescription, long* errorCode);
00085 
00086 public:
00087     vCardConverter();
00088     ~vCardConverter();
00089     void setSource(WCHAR* inputCard);
00090     void setSource(Contact& inputContact);
00091     void getvCard(WCHAR* vCard);
00092     void getContact(Contact** outputContact);
00093     bool convert(WString& error, long* errorCode);
00094     bool validate(VObject*, WString& error, long* errorCode);
00095 
00096 };
00097 
00098 END_NAMESPACE
00099 
00101 #endif

Generated on Wed Jan 14 17:15:37 2009 for Funambol C++ Client Library by  doxygen 1.5.2