summaryrefslogtreecommitdiff
path: root/mobile_src/Filesystem/JSFile.h
blob: d8d42889f86e910260ef601437ff9e87fe89407b (plain)
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
//
// Tizen Web Device API
// Copyright (c) 2012 Samsung Electronics Co., Ltd.
//
// Licensed under the Apache License, Version 2.0 (the License);
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

 
#ifndef TIZENAPIS_TIZEN_JSFILE_H_
#define TIZENAPIS_TIZEN_JSFILE_H_

#include <JavaScriptCore/JavaScript.h>
#include <Commons/IEvent.h>
#include <CommonsJavaScript/PrivateObject.h>
#include <CommonsJavaScript/JSCallbackManager.h>
#include <Security.h>
#include "INode.h"

namespace DeviceAPI {
namespace Filesystem {
class JSFile
{
public:

    class PrivateObjectDef
    {
    public:

        typedef std::vector<int> PermissionList;

        PrivateObjectDef(const INodePtr &node,
                         const PermissionList &parentPermissions) :
            m_node(node),
            m_parentPerms(parentPermissions)
        {
        }

        virtual ~PrivateObjectDef()
        {
        }

        INodePtr getNode() const
        {
            return m_node;
        }

        PermissionList getParentPermissions() const
        {
            return m_parentPerms;
        }

        void setParentPermissions(const PermissionList &permissions)
        {
            m_parentPerms = permissions;
        }

        void pushParentPermissions(int permissions)
        {
            m_parentPerms.push_back(permissions);
        }

    private:
        INodePtr m_node;
        PermissionList m_parentPerms;
    };

    class ListFilesPrivateData : public WrtDeviceApis::Commons::IEventPrivateData
    {
    public:
        ListFilesPrivateData(
                const WrtDeviceApis::CommonsJavaScript::JSCallbackManagerPtr &callbackManager,
                const PrivateObjectDef::PermissionList parentPermissions) :
            m_callbackManager(callbackManager),
            m_parentPermissions(parentPermissions)
        {
        }

        virtual ~ListFilesPrivateData()
        {
        }

        WrtDeviceApis::CommonsJavaScript::JSCallbackManagerPtr getCallbackManager() const
        {
            return m_callbackManager;
        }

        PrivateObjectDef::PermissionList getParentPermissions() const
        {
            return m_parentPermissions;
        }

    private:
        WrtDeviceApis::CommonsJavaScript::JSCallbackManagerPtr m_callbackManager;
        PrivateObjectDef::PermissionList m_parentPermissions;
    };

    typedef DPL::SharedPtr<ListFilesPrivateData> ListFilesPrivateDataPtr;
    typedef DPL::SharedPtr<PrivateObjectDef> PrivateObjectDefPtr;	
    typedef WrtDeviceApis::CommonsJavaScript::PrivateObjectT<PrivateObjectDefPtr>::Type PrivateObjectSecurity;

	class PrivateObject :
		public DeviceAPI::Common::SecurityAccessor,
		public PrivateObjectSecurity
	{
	public :
		PrivateObject (JSContextRef context, PrivateObjectDefPtr privDef) :
			DeviceAPI::Common::SecurityAccessor(), 
			PrivateObjectSecurity(context, privDef)
		{
		}
			
		virtual ~PrivateObject()
		{
		}
	};

public:
	static const JSClassDefinition* getClassInfo();

	static const JSClassRef getClassRef();

private:

	/**
	* The callback invoked when an object is first created.
	*/
	static void initialize(JSContextRef context,
		JSObjectRef object);

	/**
	* The callback invoked when an object is finalized.
	*/
	static void finalize(JSObjectRef object);

	/**
	* The callback invoked when getting a property's value.
	*/
	static JSValueRef getProperty(JSContextRef context,
		JSObjectRef object,
		JSStringRef propertyName,
		JSValueRef* exception);

	/**
	* The callback invoked when collecting the names of an object's properties.
	*/
	static void getPropertyNames(JSContextRef context,
		JSObjectRef object,
		JSPropertyNameAccumulatorRef propertyNames);

	/**
	* The callback invoked when an object is used as the target of an 'instanceof' expression.
	*/
	static bool hasInstance(JSContextRef context,
		JSObjectRef constructor,
		JSValueRef possibleInstance,
		JSValueRef* exception);

	/**
	* Returns a URI for the file.
	*/
	static JSValueRef toUri(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* Returns list of all files of this directory.
	*/
	static JSValueRef listFiles(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* WRT_GeneralError exception
	*/
	static JSValueRef openStream(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* WRT_GeneralError exception
	*/
	static JSValueRef readAsText(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* The operation is only for file except for directory.
	* Make sure the dest directory already exists.
	*/
	static JSValueRef copyTo(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* This operation is only for file not directory
	* The dest directory should exists in local file system, or the operation fails.
	*/
	static JSValueRef moveTo(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* create directory even through the parent directories do not  exist in local file system.
	*/
	static JSValueRef createDirectory(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* Creates a new empty file in a specified location.
	*/
	static JSValueRef createFile(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* Resolves an existing file or directory relative to
	* the current directory this operation is performed on; and
	* returns a file handle for it.
	*/
	static JSValueRef resolve(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	 * Removes all files from specified directory if recursive is true, 
	 * or just remove the directory itself when there is no files or directories underneath it
	 */
	static JSValueRef deleteDirectory(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* Deletes a specified file.
	*/
	static JSValueRef deleteFile(JSContextRef context,
		JSObjectRef object,
		JSObjectRef thisObject,
		size_t argumentCount,
		const JSValueRef arguments[],
		JSValueRef* exception);

	/**
	* This structure describes a statically declared function property.
	*/
	static JSStaticFunction m_functions[];

	/**
	* This structure describes a statically declared value property.
	*/
	static JSStaticValue m_properties[];

	/**
	* This structure contains properties and callbacks that define a type of object.
	*/
	static JSClassDefinition m_classInfo;

	static JSClassRef m_classRef;
};
}
}

#endif