mtc_fs.h
7.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/************************************************************************
Copyright (c) 2005-2011 by Juphoon System Software, Inc.
All rights reserved.
This software is confidential and proprietary to Juphoon System,
Inc. No part of this software may be reproduced, stored, transmitted,
disclosed or used in any form or by any means other than as expressly
provided by the written license agreement between Juphoon and its
licensee.
THIS SOFTWARE IS PROVIDED BY JUPHOON "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL JUPHOON BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Juphoon System Software, Inc.
Email: support@juphoon.com
Web: http://www.juphoon.com
************************************************************************/
/*************************************************
File name : mtc_fs.h
Module : rich session enabler
Author : bob.liu
Created on : 2015-06-17
Description :
Data structure and function declare required by mtc conference
Modify History:
1. Date: Author: Modification:
*************************************************/
#ifndef _MTC_FS_H__
#define _MTC_FS_H__
/**
* @file
* @brief MTC File Storage Interfaces
*
* This file includes file storage interface function.
*/
#ifdef __cplusplus
extern "C" {
#endif
/** @brief File storage status code. */
typedef enum EN_MTC_FS_STATUS_CODE
{
EN_MTC_FS_STATUS_UNKNOWN,
EN_MTC_FS_STATUS_INVALID_STATE,
EN_MTC_FS_STATUS_NO_AGENT,
EN_MTC_FS_STATUS_INVALID_PARAMETER,
EN_MTC_FS_STATUS_OPEN_FILE,
EN_MTC_FS_STATUS_CONNECT_FAIL,
EN_MTC_FS_STATUS_CANCELED,
EN_MTC_FS_STATUS_DISCONNECTED,
EN_MTC_FS_STATUS_RENAME,
} EN_MTC_FS_STATUS_CODE;
/**
* @defgroup MtcFsKey MTC notification key of file storage event.
* @{
*/
/**
* @brief A key whose value is a number object in JSON format reflecting
* ID of uploading or downloading session.
*/
#define MtcFsSessIdKey "MtcFsSessIdKey"
/**
* @brief A key whose value is a number object in JSON format reflecting
* the status code @ref EN_MTC_FS_STATUS_CODE.
*/
#define MtcFsStatusCodeKey "MtcFsStatusCodeKey"
/**
* @brief A key whose value is a string object in JSON format reflecting
* fail description.
*/
#define MtcFsFailDescriptionKey "MtcFsFailDescriptionKey"
/**
* @brief A key whose value is a number object in JSON format reflecting
* the progress of uploading or downloading in percentage.
*/
#define MtcFsProgressKey "MtcFsProgressKey"
/**
* @brief A key whose value is a string object in JSON format reflecting
* the link URI for others downloading.
*/
#define MtcFsLinkUriKey "MtcFsLinkUriKey"
/**
* @}
*/
/**
* @defgroup MtcFsNotification MTC notification of file storage event.
* @{
*/
/**
* @brief Posted during the transmission.
*
* The pcInfo of this notification contains @ref MtcFsProgressKey.
*/
#define MtcFsTransmitingNotification "MtcFsTransmitingNotification"
/**
* @brief Posted when file uploading is done successfully.
*
* The pcInfo of this notification contains @ref MtcFsSessIdKey.
*/
#define MtcFsUploadOkNotification "MtcFsUploadOkNotification"
/**
* @brief Posted when file uploading is failed.
*
* The pcInfo of this notification contains @ref MtcFsSessIdKey,
* @ref MtcFsStatusCodeKey
*/
#define MtcFsUploadDidFailNotification "MtcFsUploadDidFailNotification"
/**
* @brief Posted when file downloading is done successfully.
*
* The pcInfo of this notification contains @ref MtcFsSessIdKey.
*/
#define MtcFsDownloadOkNotification "MtcFsDownloadOkNotification"
/**
* @brief Posted when file downloading is failed.
*
* The pcInfo of this notification contains @ref MtcFsSessIdKey,
* @ref MtcFsStatusCodeKey
*/
#define MtcFsDownloadDidFailNotification "MtcFsDownloadDidFailNotification"
/**
* @brief Posted when share link created successfully.
*
* The pcInfo of this notification contains @ref MtcFsLinkUriKey.
*/
#define MtcFsShareOkNotification "MtcFsShareOkNotification"
/**
* @brief Posted when failed to craete link.
*
* The pcInfo of this notification is ZNULL.
*/
#define MtcFsShareDidFailNotification "MtcFsShareDidFailNotification"
/**
* @}
*/
/**
* @brief Upload file to specific path on server.
*
* The transmiting progress will be notified by @ref MtcFsTransmitingNotification.
* When the file has been uploaded successfully, @ref MtcFsUploadOkNotification will
* be reported.
* When fail to upload the file, @ref MtcFsUploadDidFailNotification will be reported.
*
* @param zCookie User defined value.
* @param pcStoragePath Path on server, only one level directory.
* @param pcFilePath The path of file to upload.
* @return The session ID value. ZINVALIDID when failed.
*/
MTCFUNC ZUINT Mtc_FsUpload(ZCOOKIE zCookie, ZCONST ZCHAR *pcStoragePath,
ZCONST ZCHAR *pcFilePath);
/**
* @brief Upload file to specific path on server.
*
* The transmiting progress will be notified by @ref MtcFsTransmitingNotification.
* When the file has been uploaded successfully, @ref MtcFsUploadOkNotification will
* be reported.
* When fail to upload the file, @ref MtcFsUploadDidFailNotification will be reported.
*
* @param zCookie User defined value.
* @param pcStoragePath Path on server, only one level directory.
* @param pcFilePath The path of file to upload.
* @param iExpireSecond Expiration second of the file.
* @return The session ID value. ZINVALIDID when failed.
*/
MTCFUNC ZUINT Mtc_FsUpload2(ZCOOKIE zCookie, ZCONST ZCHAR *pcStoragePath,
ZCONST ZCHAR *pcFilePath, ZINT iExpireSecond);
/**
* @brief Download file from server.
*
* The transmiting progress will be notified by @ref MtcFsTransmitingNotification.
* When the file has been downloaded successfully, @ref MtcFsDownloadOkNotification will
* be reported.
* When failed to download the file, @ref MtcFsDownloadDidFailNotification will be reported.
*
* @param zCookie User defined value.
* @param pcUri File URI, which can be path on server or link shared.
* @param pcFilePath The path of file to store the content.
* @return The session ID value. ZINVALIDID when failed.
*/
MTCFUNC ZUINT Mtc_FsDownload(ZCOOKIE zCookie, ZCONST ZCHAR *pcUri,
ZCONST ZCHAR *pcFilePath);
/**
* @brief Cancel upload or download session.
* @param iSessId The session ID.
* @return ZOK when succeed, ZFAILED when failed.
*/
MTCFUNC ZINT Mtc_FsCancel(ZUINT iSessId);
/**
* @brief Create a share link for other user to download.
*
* When the link has been created successfully, @ref MtcFsShareOkNotification will
* be reported.
* When failed to create the link, @ref MtcFsShareDidFailNotification will be reported.
*
* @param zCookie User defined value.
* @param pcStoragePath Path of file on server.
* @retval ZOK The request has been sent successfully.
* @retval ZFAILED Failed to send the request.
*/
MTCFUNC ZINT Mtc_FsShare(ZCOOKIE zCookie, ZCONST ZCHAR *pcStoragePath);
#ifdef __cplusplus
}
#endif
#endif /* _MTC_FS_H__ */