Skip to content

Commit

Permalink
breaking: file: refactor
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <[email protected]>
  • Loading branch information
zhaojh329 committed Feb 7, 2021
1 parent 4409c65 commit 2d3f9cf
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 15 deletions.
47 changes: 33 additions & 14 deletions frontend/src/views/Rtty.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,41 @@
const LoginErrorOffline = 0x01;
const LoginErrorBusy = 0x02;
const MsgTypeFileStartDownload = 0x00;
const MsgTypeFileInfo = 0x01;
const MsgTypeFileData = 0x02;
const MsgTypeFileCanceled = 0x03;
const MsgTypeFileDataAck = 0x03;
const MsgTypeFileCanceled = 0x04;
const ReadFileBlkSize = 16 * 1024;
interface FileContext {
name: string;
list: Array<File>;
modal: boolean;
recving: boolean;
accepted: boolean;
file: File | null;
offset: number;
readonly fr: FileReader;
buffer: Array<Uint8Array>;
}
@Component
export default class Rtty extends Vue {
@Prop(String) devid!: string;
disposables: IDisposable[] = [];
file = {
file: FileContext = {
name: '',
list: [] as File[],
list: [],
modal: false,
recving: false,
accepted: false,
buffer: [] as Uint8Array[]
file: null,
offset: 0,
fr: new FileReader(),
buffer: []
};
socket: WebSocket | undefined;
term: Terminal | undefined;
Expand Down Expand Up @@ -146,23 +163,19 @@
return;
}
const fr = new FileReader();
let offset = 0;
this.file.file = options.file;
this.file.offset = 0;
const fr = this.file.fr;
fr.onload = e => {
if (!this.file.recving)
return;
offset += e.loaded;
this.file.offset += e.loaded;
this.sendFileData(MsgTypeFileData, Buffer.from(fr.result as ArrayBuffer));
if (offset < options.file.size) {
this.readFileBlob(fr, options.file, offset, ReadFileBlkSize);
return;
}
this.sendFileData(MsgTypeFileData, null);
};
this.readFileBlob(fr, options.file, offset, ReadFileBlkSize);
this.readFileBlob(fr, options.file, this.file.offset, ReadFileBlkSize);
}
sendTermData(data: string): void {
Expand Down Expand Up @@ -201,6 +214,7 @@
case MsgTypeFileInfo:
this.file.name = msg.toString();
this.file.buffer = [];
this.sendFileData(MsgTypeFileDataAck, null);
break;
case MsgTypeFileData:
if (msg.length === 0) {
Expand All @@ -216,8 +230,13 @@
this.file.buffer = [];
} else {
this.file.buffer.push(msg);
this.sendFileData(MsgTypeFileDataAck, null);
}
break;
case MsgTypeFileDataAck:
if (this.file.file && this.file.offset < this.file.file.size)
this.readFileBlob(this.file.fr, this.file.file, this.file.offset, ReadFileBlkSize);
break;
case MsgTypeFileCanceled:
this.file.buffer = [];
this.file.recving = false;
Expand Down
2 changes: 1 addition & 1 deletion statik/statik.go

Large diffs are not rendered by default.

0 comments on commit 2d3f9cf

Please sign in to comment.