FileDescriptorUtil.uts 10.4 KB
Newer Older
DCloud-yyl's avatar
DCloud-yyl 已提交
1 2 3
import File from 'java.io.File'
import ParcelFileDescriptor from 'android.os.ParcelFileDescriptor'
import { OpenFileOptions, OpenFileSuccessResult, OpenFileSyncOptions } from '../interface';
DCloud-yyl's avatar
DCloud-yyl 已提交
4
import { UniErrorSubject, UniErrors } from '../unierror';
DCloud-yyl's avatar
DCloud-yyl 已提交
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

export class FileDescriptorUtil {
	public openMap : Map<string, File> = new Map()

	public open(options : OpenFileOptions, file : File) {
		let currentDispatcher = UTSAndroid.getDispatcher("main")
		UTSAndroid.getDispatcher('io').async(function (_) {

			try {
				switch (options.flag) {
					case 'a': //	打开文件用于追加。 如果文件不存在,则创建该文件
						{
							let ret = {
								fd: this.open_a(file)
							} as OpenFileSuccessResult
							currentDispatcher.async(function (_) {
								options.success?.(ret)
								options.complete?.(ret)
							}, null)

							this.openMap.set(ret.fd, file)
							return
						}
					case 'ax': //类似于 'a',但如果路径存在,则失败
						{
							if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
31
								let err = new UniError(UniErrorSubject, 1301005, UniErrors.get(1301005)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
32 33 34 35
								options.fail?.(err)
								options.complete?.(err)
							} else {
								if (file.parentFile?.exists() == false) {
DCloud-yyl's avatar
DCloud-yyl 已提交
36
									let err = new UniError(UniErrorSubject, 1300002, UniErrors.get(1300002)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
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
									options.fail?.(err)
									options.complete?.(err)
									return
								}
								file.createNewFile()
								let ret = {
									fd: this.open_a(file)
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
					case 'a+': //打开文件用于读取和追加。 如果文件不存在,则创建该文件
						{
							let ret = {
								fd: this.open_ax(file)
							} as OpenFileSuccessResult
							currentDispatcher.async(function (_) {
								options.success?.(ret)
								options.complete?.(ret)
							}, null)
							this.openMap.set(ret.fd, file)

							return
						}
					case 'ax+': //类似于 'a+',但如果路径存在,则失败
						{
							if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
69
								let err = new UniError(UniErrorSubject, 1301005, UniErrors.get(1301005)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
								options.fail?.(err)
								options.complete?.(err)
							} else {
								let ret = {
									fd: this.open_ax(file)
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
					case 'r': //打开文件用于读取。 如果文件不存在,则会发生异常
						{
							if (!file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
87
								let err = new UniError(UniErrorSubject, 1300002, UniErrors.get(1300002)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
								options.fail?.(err)
								options.complete?.(err)
							} else {
								let mode = ParcelFileDescriptor.MODE_READ_ONLY
								let pfd = ParcelFileDescriptor.open(file, mode);
								let ret = {
									fd: pfd.getFd().toString()
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
					case 'r+': //打开文件用于读取和写入。 如果文件不存在,则会发生异常
						{
							if (!file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
107
								let err = new UniError(UniErrorSubject, 1300002, UniErrors.get(1300002)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
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
								options.fail?.(err)
								options.complete?.(err)
							} else {
								let mode = ParcelFileDescriptor.MODE_READ_WRITE
								let pfd = ParcelFileDescriptor.open(file, mode);
								let ret = {
									fd: pfd.getFd().toString()
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
					case 'w'://打开文件用于写入。 如果文件不存在则创建文件,如果文件存在则截断文件
						{
							let ret = {
								fd: this.open_w(file)
							} as OpenFileSuccessResult
							currentDispatcher.async(function (_) {
								options.success?.(ret)
								options.complete?.(ret)
							}, null)
							this.openMap.set(ret.fd, file)
							return
						}
					case 'wx'://类似于 'w',但如果路径存在,则失败
						{
							if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
139
								let err = new UniError(UniErrorSubject, 1301005, UniErrors.get(1301005)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
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
								options.fail?.(err)
								options.complete?.(err)
							} else {
								let ret = {
									fd: this.open_w(file)
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
					case 'w+': //打开文件用于读取和写入。 如果文件不存在则创建文件,如果文件存在则截断文件
						{
							let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_READ_WRITE | ParcelFileDescriptor.MODE_TRUNCATE
							let pfd = ParcelFileDescriptor.open(file, mode);
							let ret = {
								fd: pfd.getFd().toString()
							} as OpenFileSuccessResult
							currentDispatcher.async(function (_) {
								options.success?.(ret)
								options.complete?.(ret)
							}, null)
							this.openMap.set(ret.fd, file)
							return
						}
					case 'wx+': //	类似于 'w+',但如果路径存在,则失败
						{
							if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
171
								let err = new UniError(UniErrorSubject, 1301005, UniErrors.get(1301005)!);
DCloud-yyl's avatar
DCloud-yyl 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
								options.fail?.(err)
								options.complete?.(err)
							} else {
								let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_READ_WRITE | ParcelFileDescriptor.MODE_TRUNCATE
								let pfd = ParcelFileDescriptor.open(file, mode);
								let ret = {
									fd: pfd.getFd().toString()
								} as OpenFileSuccessResult
								currentDispatcher.async(function (_) {
									options.success?.(ret)
									options.complete?.(ret)
								}, null)
								this.openMap.set(ret.fd, file)
							}
							return
						}
				}
			} catch (e) {
DCloud-yyl's avatar
DCloud-yyl 已提交
190
				let err = new UniError(UniErrorSubject, 1300201, UniErrors.get(1300201)! + ":" + e + "  " + options.filePath);
DCloud-yyl's avatar
DCloud-yyl 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
				options.fail?.(err)
				options.complete?.(err)
			}
		})
	}

	public openSync(options : OpenFileSyncOptions, file : File) : string {
		let msgPrefix = "openSync:fail "
		switch (options.flag) {
			case 'a': //	打开文件用于追加。 如果文件不存在,则创建该文件
				{
					let fd = this.open_a(file)
					this.openMap.set(fd, file)
					return fd
				}
			case 'ax': //类似于 'a',但如果路径存在,则失败
				{
					if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
209
						throw new Error(`${msgPrefix}${UniErrors[1301005]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
210 211
					} else {
						if (file.parentFile?.exists() == false) {
DCloud-yyl's avatar
DCloud-yyl 已提交
212
							throw new Error(`${msgPrefix}${UniErrors[1300002]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
						} else {
							file.createNewFile()
							let fd = this.open_a(file)
							this.openMap.set(fd, file)
							return fd
						}
					}

				}
			case 'a+': //打开文件用于读取和追加。 如果文件不存在,则创建该文件
				{
					let fd = this.open_ax(file)
					this.openMap.set(fd, file)
					return fd
				}
			case 'ax+': //类似于 'a+',但如果路径存在,则失败
				{
					if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
231
						throw new Error(`${msgPrefix}${UniErrors[1301005]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
232 233 234 235 236 237 238 239 240
					} else {
						let fd = this.open_ax(file)
						this.openMap.set(fd, file)
						return fd
					}
				}
			case 'r': //打开文件用于读取。 如果文件不存在,则会发生异常
				{
					if (!file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
241
						throw new Error(`${msgPrefix}${UniErrors[1300002]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
242 243 244 245 246 247 248 249 250 251 252 253
					} else {
						let mode = ParcelFileDescriptor.MODE_READ_ONLY
						let pfd = ParcelFileDescriptor.open(file, mode);
						let fd = pfd.getFd().toString()
						this.openMap.set(fd, file)
						return fd
					}

				}
			case 'r+': //打开文件用于读取和写入。 如果文件不存在,则会发生异常
				{
					if (!file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
254
						throw new Error(`${msgPrefix}${UniErrors[1300002]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
					} else {
						let mode = ParcelFileDescriptor.MODE_READ_WRITE
						let pfd = ParcelFileDescriptor.open(file, mode);
						let fd = pfd.getFd().toString()
						this.openMap.set(fd, file)
						return fd
					}

				}
			case 'w'://打开文件用于写入。 如果文件不存在则创建文件,如果文件存在则截断文件
				{
					let fd = this.open_w(file)
					this.openMap.set(fd, file)
					return fd
				}
			case 'wx'://类似于 'w',但如果路径存在,则失败
				{
					if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
273
						throw new Error(`${msgPrefix}${UniErrors[1301005]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
					} else {
						let fd = this.open_w(file)
						this.openMap.set(fd, file)
						return fd
					}

				}
			case 'w+': //打开文件用于读取和写入。 如果文件不存在则创建文件,如果文件存在则截断文件
				{
					let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_READ_WRITE | ParcelFileDescriptor.MODE_TRUNCATE
					let pfd = ParcelFileDescriptor.open(file, mode);
					let fd = pfd.getFd().toString()
					this.openMap.set(fd, file)
					return fd
				}
			case 'wx+': //	类似于 'w+',但如果路径存在,则失败
				{
					if (file.exists()) {
DCloud-yyl's avatar
DCloud-yyl 已提交
292
						throw new Error(`${msgPrefix}${UniErrors[1301005]}`)
DCloud-yyl's avatar
DCloud-yyl 已提交
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
					} else {
						let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_READ_WRITE | ParcelFileDescriptor.MODE_TRUNCATE
						let pfd = ParcelFileDescriptor.open(file, mode);
						let fd = pfd.getFd().toString()
						this.openMap.set(fd, file)
						return fd
					}
				}
		}
		return ""
	}
	open_a(file : File) : string {
		try {
			console.log(file.getPath())
			let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_WRITE_ONLY | ParcelFileDescriptor.MODE_APPEND
			let pfd = ParcelFileDescriptor.open(file, mode);
			return pfd.getFd().toString()
		} catch (e : Exception) {
			console.log(e)
		}
		return ""
	}
	open_ax(file : File) : string {
		let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_APPEND | ParcelFileDescriptor.MODE_READ_ONLY
		let pfd = ParcelFileDescriptor.open(file, mode);
		return pfd.getFd().toString()
	}
	open_w(file : File) : string {
		let mode = ParcelFileDescriptor.MODE_CREATE | ParcelFileDescriptor.MODE_WRITE_ONLY | ParcelFileDescriptor.MODE_TRUNCATE
		let pfd = ParcelFileDescriptor.open(file, mode);
		return pfd.getFd().toString()
	}
}