RSA sync with private
[platform/core/messaging/msg-service.git] / vobject-engine / include / vobject.h
1 /*
2 * Copyright 2012  Samsung Electronics Co., Ltd
3 *
4 * Licensed under the Flora License, Version 1.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *    http://www.tizenopensource.org/license
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #ifndef _VOBJECT_H
18 #define _VOBJECT_H
19
20 #include "stdio.h"
21 #include "stdbool.h"
22 #include "stdlib.h"
23 #include "string.h"
24 #include "ctype.h"
25
26 #include <dlog.h>
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32 //#define ORG_ENABLE_TRACE
33 #define FEATURE_SHIFT_JIS
34
35 #ifdef ORG_ENABLE_TRACE
36 #define USER_TAG "MSG_FW"
37 #define VDATA_TRACE(fmt, arg...) \
38         do\
39         {\
40                 SLOG(LOG_DEBUG, USER_TAG, "\n[calendarui] %s:%d: " fmt "\n", __FUNCTION__, __LINE__, ##arg); \
41         } while (0)
42
43
44 #define VDATA_TRACE_LINE() fprintf(stderr, "\n[calendarui] %s:%d\n", __FUNCTION__, __LINE__ )
45
46 #define SysRequireEx(expr, retValue) \
47         if (!(expr)) { \
48                 fprintf(stderr,"INVALID_PARAM (%d lines in %s)\n", __LINE__,__FILE__); \
49                 return retValue; }\
50         else {;}
51 #else
52 #define VDATA_TRACE(fmt, arg...)
53 #define VDATA_TRACE_LINE()
54 #define SysRequireEx(expr, retValue)
55 #endif
56
57 #define VDATA_TRACE_BEGINE //VDATA_TRACE(">>>>>> start. >>>>>>"); //usleep(1000);
58 #define VDATA_TRACE_END //VDATA_TRACE(">>>>>> end. >>>>>>");
59
60 /****************************************************************************************************/
61 /*                                                                               FUNCTION DECLARATION                                                                           */
62 /****************************************************************************************************/
63 int             _VIsSpace( char );
64 int             _VRLSpace( char * );
65 int             _VRTSpace( char * );
66 int             _VUnescape( char* );
67 int             _VEscape(char*);
68 int             _VManySpace2Space( char * );
69 int             _VB64Decode( char *, char * );
70 int             _VB64Encode( char *, char *, int );
71 int             _VUnfolding( char * );
72 void    _VFolding( char *, char * );
73 int             _VQPDecode( char * );
74 int             _VQPEncode( char *, char * );
75
76 void _VFoldingQP( char *result, char *contentline );
77 void _VFoldingNoSpace( char *result, char *contentline );
78 int _VManyCRLF2CRLF(char *pIn);
79 int _VUnfoldingNoSpec( char *string, int vType );
80
81 #ifdef __cplusplus
82 }
83 #endif /* __cplusplus */
84
85 #endif