summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/NetAccess.java
blob: 11dd41883f293e27ddd7946e9213bdd710ac1a06 (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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.Qt;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import java.util.ArrayList;
import org.kde.qt.TQWidget;
import org.kde.qt.TQObject;

/**

 Net Transparency.
 NetAccess allows you to do simple file operation (load, save,
 copy, delete...) without working with TDEIO.Job directly.
 Whereas a TDEIO.Job is asynchronous, meaning that the
 developer has to connect slots for it, TDEIO.NetAccess provides
 synchronous downloads and uploads, as well as temporary file
 creation and removal. The functions appear to be blocking,
 but the Qt event loop continues running while the operations
 are handled. This means that the GUI will not freeze.
 This class isn't meant to be used as a class but only as a simple
 namespace for static functions, though an instance of the class
 is built for internal purposes.
 Port to tdeio done by David Faure, faure@kde.org
		@short Provides an easy, synchronous interface to KIO file operations.

*/
public class NetAccess extends TQObject  {
	protected NetAccess(Class dummy){super((Class) null);}
	public native TQMetaObject metaObject();
	public native String className();
	/**	
		 Downloads a file from an arbitrary URL (<code>src</code>) to a
		 temporary file on the local filesystem (<code>target</code>).
			 If the argument
		 for <code>target</code> is an empty string, download will generate a
		 unique temporary filename in /tmp. Since <code>target</code> is a reference
		 to String you can access this filename easily. Download will
		 return true if the download was successful, otherwise false.
			 Special case:
		 If the URL is of kind file:, then no downloading is
		 processed but the full filename is returned in <code>target.</code>
		 That means you <b>have</b> to take care about the <code>target</code> argument.
		 (This is very easy to do, please see the example below.)
			 Download is synchronous. That means you can use it like
		 this, (assuming <code>u</code> is a string which represents a URL and your
		 application has a loadFile() function):
			 <pre>
		 String tmpFile;
		 if( TDEIO.NetAccess.download( u, tmpFile, window ) )
		 {
		   loadFile( tmpFile );
		   TDEIO.NetAccess.removeTempFile( tmpFile );
		 } else {
		   KMessageBox.error(this, TDEIO.NetAccess.lastErrorString() );
		 }
		 </pre>
			 Of course, your user interface will still process exposure/repaint
		 events during the download.
			 If the download fails, lastError() and lastErrorString() will be set.
			@param src URL Reference to the file to download.
			@param target String containing the final local location of the
		               file.  If you insert an empty string, it will
		               return a location in a temporary spot. <B>Note:</B>
		               you are responsible for the removal of this file when
		               you are finished reading it using removeTempFile.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return true if successful, false for failure.  Use lastErrorString() to
         get the reason it failed.

		@short    Downloads a file from an arbitrary URL (<code>src</code>) to a  temporary file on the local filesystem (<code>target</code>).
		@see #lastErrorString
	*/
	public static native boolean download(KURL src, StringBuffer target, TQWidget window);
	/**	
		 Removes the specified file if and only if it was created
		 by TDEIO.NetAccess as a temporary file for a former download.
			 Note: This means that if you created your temporary with KTempFile,
		 use KTempFile.unlink() or KTempFile.setAutoDelete() to have
		 it removed.
			@param name Path to temporary file to remove.  May not be
		             empty.
		     		@short    Removes the specified file if and only if it was created  by TDEIO.NetAccess as a temporary file for a former download.
	*/
	public static native void removeTempFile(String name);
	/**	
		 Uploads file <code>src</code> to URL <code>target.</code>
			 Both must be specified, unlike download.
		 Note that this is assumed to be used for saving a file over
		 the network, so overwriting is set to true. This is not the
		 case with copy.
			@param src URL Referencing the file to upload.
			@param target URL containing the final location of the file.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be cached
		               only for a short duration after which the user will again be
		               prompted for passwords as needed.
				@return true if successful, false for failure
     
		@short    Uploads file <code>src</code> to URL <code>target.</code>
	*/
	public static native boolean upload(String src, KURL target, TQWidget window);
	/**	
		 Alternative to upload for copying over the network.
		 Overwrite is false, so this will fail if <code>target</code> exists.
			 This one takes two URLs and is a direct equivalent
		 of TDEIO.file_copy (not TDEIO.copy!).
		 It will be renamed file_copy in KDE4, so better use file_copy.
			@param src URL Referencing the file to upload.
			@param target URL containing the final location of the file.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be cached
		               only for a short duration after which the user will again be
		               prompted for passwords as needed.
				@return true if successful, false for failure
     
		@short    Alternative to upload for copying over the network.
	*/
	public static native boolean copy(KURL src, KURL target, TQWidget window);
	/**	
		 Full-fledged equivalent of TDEIO.file_copy
		     		@short    Full-fledged equivalent of TDEIO.file_copy
	*/
	public static native boolean file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume, TQWidget window);
	public static native boolean file_copy(KURL src, KURL dest, int permissions, boolean overwrite, boolean resume);
	public static native boolean file_copy(KURL src, KURL dest, int permissions, boolean overwrite);
	public static native boolean file_copy(KURL src, KURL dest, int permissions);
	public static native boolean file_copy(KURL src, KURL dest);
	/**	
		 Full-fledged equivalent of TDEIO.file_move.
		 Moves or renames one file.
				@short    Full-fledged equivalent of TDEIO.file_move.
	*/
	public static native boolean file_move(KURL src, KURL target, int permissions, boolean overwrite, boolean resume, TQWidget window);
	public static native boolean file_move(KURL src, KURL target, int permissions, boolean overwrite, boolean resume);
	public static native boolean file_move(KURL src, KURL target, int permissions, boolean overwrite);
	public static native boolean file_move(KURL src, KURL target, int permissions);
	public static native boolean file_move(KURL src, KURL target);
	/**	
		 Alternative method for copying over the network.
		 Overwrite is false, so this will fail if <code>target</code> exists.
			 This one takes two URLs and is a direct equivalent
		 of TDEIO.copy!.
		 This means that it can copy files and directories alike
		 (it should have been named copy()).
			@param src URL Referencing the file to upload.
			@param target URL containing the final location of the
		               file.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be cached
		               only for a short duration after which the user will again be
		               prompted for passwords as needed.
				@return true if successful, false for failure
     
		@short    Alternative method for copying over the network.
	*/
	public static native boolean dircopy(KURL src, KURL target, TQWidget window);
	/**	
		 Overloaded method, which takes a list of source URLs
		     		@short    Overloaded method, which takes a list of source URLs
	*/
	public static native boolean dircopy(ArrayList src, KURL target, TQWidget window);
	public static native boolean dircopy(ArrayList src, KURL target);
	/**	
		 Full-fledged equivalent of TDEIO.move.
		 Moves or renames one file or directory.
				@short    Full-fledged equivalent of TDEIO.move.
	*/
	public static native boolean move(KURL src, KURL target, TQWidget window);
	public static native boolean move(KURL src, KURL target);
	/**	
		 Full-fledged equivalent of TDEIO.move.
		 Moves or renames a list of files or directories.
				@short    Full-fledged equivalent of TDEIO.move.
	*/
	public static native boolean move(ArrayList src, KURL target, TQWidget window);
	public static native boolean move(ArrayList src, KURL target);
	/**	
		 Tests whether a URL exists.
			@param url the URL we are testing
			@param source if true, we want to read from that URL.
		               If false, we want to write to it.
		 IMPORTANT: see documentation for TDEIO.stat for more details about this.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return true if the URL exists and we can do the operation specified by
              <code>source</code>, false otherwise

		@short    Tests whether a URL exists.
	*/
	public static native boolean exists(KURL url, boolean source, TQWidget window);
	/**	
		 Tests whether a URL exists and return information on it.
			 This is a convenience function for TDEIO.stat
		 (it saves creating a slot and testing for the job result).
			@param url The URL we are testing.
			@param entry The result of the stat. Iterate over the list
		 of atoms to get hold of name, type, size, etc., or use KFileItem.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return true if successful, false for failure
     
		@short    Tests whether a URL exists and return information on it.
	*/
	// bool stat(const KURL& arg1,TDEIO::UDSEntry& arg2,TQWidget* arg3); >>>> NOT CONVERTED
	/**	
		 Tries to map a local URL for the given URL.
			 This is a convenience function for TDEIO.stat + parsing the
		 resulting UDSEntry.
			@param url The URL we are testing.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return a local URL corresponding to the same ressource than the
         original URL, or the original URL if no local URL can be mapped

		@short    Tries to map a local URL for the given URL.
	*/
	public static native KURL mostLocalURL(KURL url, TQWidget window);
	/**	
		 Deletes a file or a directory in a synchronous way.
			 This is a convenience function for TDEIO.del
		 (it saves creating a slot and testing for the job result).
			@param url The file or directory to delete.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return true on success, false on failure.
     
		@short    Deletes a file or a directory in a synchronous way.
	*/
	public static native boolean del(KURL url, TQWidget window);
	/**	
		 Creates a directory in a synchronous way.
			 This is a convenience function for <code>KIO</code>.mkdir
		 (it saves creating a slot and testing for the job result).
			@param url The directory to create.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
			@param permissions directory permissions.
				@return true on success, false on failure.
     
		@short    Creates a directory in a synchronous way.
	*/
	public static native boolean mkdir(KURL url, TQWidget window, int permissions);
	public static native boolean mkdir(KURL url, TQWidget window);
	/**	
		 Executes a remote process via the fish ioslave in a synchronous way.
			@param url The remote machine where the command should be executed.
		            e.g. fish://someuser\@somehost:sshport/
		            some special cases exist.
		            fish://someuser\@localhost/
		            will use su instead of ssh to connect and execute the command.
		            fish://someuser\@localhost:port/
		            will use ssh to connect and execute the command.
			@param command The command to be executed.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return The resulting output of the <code>command</code> that is executed.
     
		@short    Executes a remote process via the fish ioslave in a synchronous way.
	*/
	public static native String fish_execute(KURL url, String command, TQWidget window);
	/**	
		 This function executes a job in a synchronous way.
		 If a job fetches some data, pass a byte[] pointer as data parameter to this function
		 and after the function returns it will contain all the data fetched by this job.
			 <code>
		 TDEIO.Job job = TDEIO.get( url, false, false );
		 TQMap<String, String> metaData;
		 metaData.insert( "PropagateHttpHeader", "true" );
		 if ( NetAccess.synchronousRun( job, 0, &data, &url, &metaData ) ) {
		   String responseHeaders = metaData[ "HTTP-Headers" ];
		   kdDebug()<<"Response header = "<< responseHeaders << endl;
		 }
		 </code>
			@param job job which the function will run. Note that after this function
		            finishes running, job is deleted and you can't access it anymore!
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
			@param data if passed and relevant to this job then it will contain the data
		               that was fetched by the job
			@param finalURL if passed will contain the final url of this job (it might differ
		                 from the one it was created with if there was a redirection)
			@param metaData you can pass a pointer to the map with meta data you wish to
		                 set on the job. After the job finishes this map will hold all the
		                 meta data from the job.
				@return true on success, false on failure.

		@short    This function executes a job in a synchronous way.
	*/
	// bool synchronousRun(TDEIO::Job* arg1,TQWidget* arg2,TQByteArray* arg3,KURL* arg4,TQMap<TQString, TQString>* arg5); >>>> NOT CONVERTED
	public static native boolean synchronousRun(Job job, TQWidget window, byte[] data, KURL finalURL);
	public static native boolean synchronousRun(Job job, TQWidget window, byte[] data);
	public static native boolean synchronousRun(Job job, TQWidget window);
	/**	
			 This function is not implemented!?
		 (only mimetypeInternal)
			 Determines the mimetype of a given URL.
			 This is a convenience function for TDEIO.mimetype.  You
		 should call this only when really necessary.
		 KMimeType.findByURL can determine extension a lot faster, but
		 less reliably for remote files. Only when findByURL() returns
		 unknown (application/octet-stream) then this one should be
		 used.
			@param url The URL whose mimetype we are interested in.
			@param window main window associated with this job. This is used to
		               automatically cache and discard authentication information
		               as needed. If NULL, authentication information will be
		               cached only for a short duration after which the user will
		               again be prompted for passwords as needed.
				@return The mimetype name.
     
		@short
	*/
	public static native String mimetype(KURL url, TQWidget window);
	/**	
		 Returns the error string for the last job, in case it failed.
		 Note that this is already translated.
				@return the last error string, or null
     
		@short    Returns the error string for the last job, in case it failed.
	*/
	public static native String lastErrorString();
	/**	
		 Returns the error code for the last job, in case it failed.
				@return the last error code

		@short    Returns the error code for the last job, in case it failed.
	*/
	public static native int lastError();
}