2019-07-20 03:10:43 +07:00
|
|
|
import { DesktopDragAndDropData } from "vs/base/browser/ui/list/listView";
|
2019-08-10 06:50:05 +07:00
|
|
|
import { VSBuffer, VSBufferReadableStream } from "vs/base/common/buffer";
|
2019-07-20 03:10:43 +07:00
|
|
|
import { Disposable } from "vs/base/common/lifecycle";
|
|
|
|
import * as path from "vs/base/common/path";
|
|
|
|
import { URI } from "vs/base/common/uri";
|
2019-08-10 06:50:05 +07:00
|
|
|
import { generateUuid } from "vs/base/common/uuid";
|
2019-07-20 03:10:43 +07:00
|
|
|
import { IFileService } from "vs/platform/files/common/files";
|
2019-09-04 05:24:14 +07:00
|
|
|
import { createDecorator, IInstantiationService } from 'vs/platform/instantiation/common/instantiation';
|
2019-07-20 03:10:43 +07:00
|
|
|
import { INotificationService, Severity } from "vs/platform/notification/common/notification";
|
2019-08-10 06:50:05 +07:00
|
|
|
import { IProgress, IProgressService, IProgressStep, ProgressLocation } from "vs/platform/progress/common/progress";
|
|
|
|
import { IWorkspaceContextService } from "vs/platform/workspace/common/workspace";
|
2019-10-19 06:20:02 +07:00
|
|
|
import { IWorkspacesService } from 'vs/platform/workspaces/common/workspaces';
|
2019-07-20 03:10:43 +07:00
|
|
|
import { ExplorerItem } from "vs/workbench/contrib/files/common/explorerModel";
|
|
|
|
import { IEditorGroup } from "vs/workbench/services/editor/common/editorGroupsService";
|
|
|
|
import { IEditorService } from "vs/workbench/services/editor/common/editorService";
|
|
|
|
|
|
|
|
export const IUploadService = createDecorator<IUploadService>("uploadService");
|
|
|
|
|
|
|
|
export interface IUploadService {
|
2019-09-04 05:24:14 +07:00
|
|
|
_serviceBrand: undefined;
|
2019-07-20 03:10:43 +07:00
|
|
|
handleDrop(event: DragEvent, resolveTargetGroup: () => IEditorGroup | undefined, afterDrop: (targetGroup: IEditorGroup | undefined) => void, targetIndex?: number): Promise<void>;
|
|
|
|
handleExternalDrop(data: DesktopDragAndDropData, target: ExplorerItem, originalEvent: DragEvent): Promise<void>;
|
2019-02-06 23:38:58 +07:00
|
|
|
}
|
|
|
|
|
2019-07-20 03:10:43 +07:00
|
|
|
export class UploadService extends Disposable implements IUploadService {
|
2019-09-04 05:24:14 +07:00
|
|
|
public _serviceBrand: undefined;
|
2019-07-20 03:10:43 +07:00
|
|
|
public upload: Upload;
|
|
|
|
|
|
|
|
public constructor(
|
|
|
|
@IInstantiationService instantiationService: IInstantiationService,
|
|
|
|
@IWorkspaceContextService private readonly contextService: IWorkspaceContextService,
|
2019-10-19 06:20:02 +07:00
|
|
|
@IWorkspacesService private readonly workspacesService: IWorkspacesService,
|
2019-07-20 03:10:43 +07:00
|
|
|
@IEditorService private readonly editorService: IEditorService,
|
|
|
|
) {
|
|
|
|
super();
|
|
|
|
this.upload = instantiationService.createInstance(Upload);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async handleDrop(event: DragEvent, resolveTargetGroup: () => IEditorGroup | undefined, afterDrop: (targetGroup: IEditorGroup | undefined) => void, targetIndex?: number): Promise<void> {
|
|
|
|
// TODO: should use the workspace for the editor it was dropped on?
|
2019-10-19 06:20:02 +07:00
|
|
|
const target = this.contextService.getWorkspace().folders[0].uri;
|
2019-07-20 03:10:43 +07:00
|
|
|
const uris = (await this.upload.uploadDropped(event, target)).map((u) => URI.file(u));
|
|
|
|
if (uris.length > 0) {
|
2019-10-19 06:20:02 +07:00
|
|
|
await this.workspacesService.addRecentlyOpened(uris.map((u) => ({ fileUri: u })));
|
2019-07-20 03:10:43 +07:00
|
|
|
}
|
|
|
|
const editors = uris.map((uri) => ({
|
|
|
|
resource: uri,
|
|
|
|
options: {
|
|
|
|
pinned: true,
|
|
|
|
index: targetIndex,
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
const targetGroup = resolveTargetGroup();
|
|
|
|
this.editorService.openEditors(editors, targetGroup);
|
|
|
|
afterDrop(targetGroup);
|
|
|
|
}
|
|
|
|
|
|
|
|
public async handleExternalDrop(_data: DesktopDragAndDropData, target: ExplorerItem, originalEvent: DragEvent): Promise<void> {
|
|
|
|
await this.upload.uploadDropped(originalEvent, target.resource);
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* There doesn't seem to be a provided type for entries, so here is an
|
|
|
|
* incomplete version.
|
|
|
|
*/
|
|
|
|
interface IEntry {
|
|
|
|
name: string;
|
|
|
|
isFile: boolean;
|
|
|
|
file: (cb: (file: File) => void) => void;
|
|
|
|
createReader: () => ({
|
|
|
|
readEntries: (cb: (entries: Array<IEntry>) => void) => void;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles file uploads.
|
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
class Upload {
|
2019-01-08 07:46:19 +07:00
|
|
|
private readonly maxParallelUploads = 100;
|
2019-07-20 03:10:43 +07:00
|
|
|
private readonly uploadingFiles = new Map<string, Reader | undefined>();
|
|
|
|
private readonly fileQueue = new Map<string, File>();
|
|
|
|
private progress: IProgress<IProgressStep> | undefined;
|
2019-01-08 07:46:19 +07:00
|
|
|
private uploadPromise: Promise<string[]> | undefined;
|
|
|
|
private resolveUploadPromise: (() => void) | undefined;
|
2019-02-07 00:53:23 +07:00
|
|
|
private uploadedFilePaths = <string[]>[];
|
2019-07-20 03:10:43 +07:00
|
|
|
private _total = 0;
|
|
|
|
private _uploaded = 0;
|
|
|
|
private lastPercent = 0;
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2019-01-31 04:40:01 +07:00
|
|
|
public constructor(
|
2019-07-20 03:10:43 +07:00
|
|
|
@INotificationService private notificationService: INotificationService,
|
|
|
|
@IProgressService private progressService: IProgressService,
|
|
|
|
@IFileService private fileService: IFileService,
|
2019-02-07 00:53:23 +07:00
|
|
|
) {}
|
2019-01-08 07:46:19 +07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Upload dropped files. This will try to upload everything it can. Errors
|
|
|
|
* will show via notifications. If an upload operation is ongoing, the files
|
|
|
|
* will be added to that operation.
|
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
public async uploadDropped(event: DragEvent, uploadDir: URI): Promise<string[]> {
|
2019-01-08 07:46:19 +07:00
|
|
|
await this.queueFiles(event, uploadDir);
|
|
|
|
if (!this.uploadPromise) {
|
2019-07-20 03:10:43 +07:00
|
|
|
this.uploadPromise = this.progressService.withProgress({
|
|
|
|
cancellable: true,
|
|
|
|
location: ProgressLocation.Notification,
|
|
|
|
title: "Uploading files...",
|
|
|
|
}, (progress) => {
|
2019-01-08 07:46:19 +07:00
|
|
|
return new Promise((resolve): void => {
|
|
|
|
this.progress = progress;
|
|
|
|
this.resolveUploadPromise = (): void => {
|
|
|
|
const uploaded = this.uploadedFilePaths;
|
|
|
|
this.uploadPromise = undefined;
|
|
|
|
this.resolveUploadPromise = undefined;
|
|
|
|
this.uploadedFilePaths = [];
|
2019-07-20 03:10:43 +07:00
|
|
|
this.lastPercent = 0;
|
|
|
|
this._uploaded = 0;
|
|
|
|
this._total = 0;
|
2019-01-08 07:46:19 +07:00
|
|
|
resolve(uploaded);
|
|
|
|
};
|
|
|
|
});
|
2019-07-20 03:10:43 +07:00
|
|
|
}, () => this.cancel());
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
this.uploadFiles();
|
|
|
|
return this.uploadPromise;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cancel all file uploads.
|
|
|
|
*/
|
|
|
|
public async cancel(): Promise<void> {
|
2019-07-20 03:10:43 +07:00
|
|
|
this.fileQueue.clear();
|
|
|
|
this.uploadingFiles.forEach((r) => r && r.abort());
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
|
2019-07-20 03:10:43 +07:00
|
|
|
private get total(): number { return this._total; }
|
|
|
|
private set total(total: number) {
|
|
|
|
this._total = total;
|
|
|
|
this.updateProgress();
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2019-07-20 03:10:43 +07:00
|
|
|
private get uploaded(): number { return this._uploaded; }
|
|
|
|
private set uploaded(uploaded: number) {
|
|
|
|
this._uploaded = uploaded;
|
|
|
|
this.updateProgress();
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
|
2019-07-20 03:10:43 +07:00
|
|
|
private updateProgress(): void {
|
|
|
|
if (this.progress && this.total > 0) {
|
|
|
|
const percent = Math.floor((this.uploaded / this.total) * 100);
|
|
|
|
this.progress.report({ increment: percent - this.lastPercent });
|
|
|
|
this.lastPercent = percent;
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-20 03:10:43 +07:00
|
|
|
* Upload as many files as possible. When finished, resolve the upload
|
|
|
|
* promise.
|
2019-01-08 07:46:19 +07:00
|
|
|
*/
|
|
|
|
private uploadFiles(): void {
|
2019-07-20 03:10:43 +07:00
|
|
|
while (this.fileQueue.size > 0 && this.uploadingFiles.size < this.maxParallelUploads) {
|
|
|
|
const [path, file] = this.fileQueue.entries().next().value;
|
|
|
|
this.fileQueue.delete(path);
|
|
|
|
if (this.uploadingFiles.has(path)) {
|
|
|
|
this.notificationService.error(new Error(`Already uploading ${path}`));
|
|
|
|
} else {
|
|
|
|
this.uploadingFiles.set(path, undefined);
|
|
|
|
this.uploadFile(path, file).catch((error) => {
|
|
|
|
this.notificationService.error(error);
|
|
|
|
}).finally(() => {
|
|
|
|
this.uploadingFiles.delete(path);
|
|
|
|
this.uploadFiles();
|
|
|
|
});
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
}
|
2019-07-20 03:10:43 +07:00
|
|
|
if (this.fileQueue.size === 0 && this.uploadingFiles.size === 0) {
|
2019-01-08 07:46:19 +07:00
|
|
|
this.resolveUploadPromise!();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-07-20 03:10:43 +07:00
|
|
|
* Upload a file, asking to override if necessary.
|
2019-01-08 07:46:19 +07:00
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
private async uploadFile(filePath: string, file: File): Promise<void> {
|
|
|
|
const uri = URI.file(filePath);
|
|
|
|
if (await this.fileService.exists(uri)) {
|
|
|
|
const overwrite = await new Promise<boolean>((resolve): void => {
|
2019-01-31 04:40:01 +07:00
|
|
|
this.notificationService.prompt(
|
|
|
|
Severity.Error,
|
2019-07-20 03:10:43 +07:00
|
|
|
`${filePath} already exists. Overwrite?`,
|
|
|
|
[
|
|
|
|
{ label: "Yes", run: (): void => resolve(true) },
|
|
|
|
{ label: "No", run: (): void => resolve(false) },
|
|
|
|
],
|
|
|
|
{ onCancel: () => resolve(false) },
|
2019-01-31 04:40:01 +07:00
|
|
|
);
|
|
|
|
});
|
2019-07-20 03:10:43 +07:00
|
|
|
if (!overwrite) {
|
2019-01-08 07:46:19 +07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2019-07-20 03:10:43 +07:00
|
|
|
const tempUri = uri.with({
|
|
|
|
path: path.join(
|
|
|
|
path.dirname(uri.path),
|
|
|
|
`.code-server-partial-upload-${path.basename(uri.path)}-${generateUuid()}`,
|
|
|
|
),
|
|
|
|
});
|
|
|
|
const reader = new Reader(file);
|
2019-08-10 06:50:05 +07:00
|
|
|
reader.on("data", (data) => {
|
|
|
|
if (data && data.byteLength > 0) {
|
2019-07-20 03:10:43 +07:00
|
|
|
this.uploaded += data.byteLength;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
this.uploadingFiles.set(filePath, reader);
|
|
|
|
await this.fileService.writeFile(tempUri, reader);
|
|
|
|
if (reader.aborted) {
|
2019-08-10 06:50:05 +07:00
|
|
|
this.uploaded += (file.size - reader.offset);
|
2019-07-20 03:10:43 +07:00
|
|
|
await this.fileService.del(tempUri);
|
|
|
|
} else {
|
|
|
|
await this.fileService.move(tempUri, uri, true);
|
|
|
|
this.uploadedFilePaths.push(filePath);
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Queue files from a drop event. We have to get the files first; we can't do
|
|
|
|
* it in tandem with uploading or the entries will disappear.
|
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
private async queueFiles(event: DragEvent, uploadDir: URI): Promise<void> {
|
2019-01-08 07:46:19 +07:00
|
|
|
const promises: Array<Promise<void>> = [];
|
2019-07-20 03:10:43 +07:00
|
|
|
for (let i = 0; event.dataTransfer && event.dataTransfer.items && i < event.dataTransfer.items.length; ++i) {
|
2019-01-08 07:46:19 +07:00
|
|
|
const item = event.dataTransfer.items[i];
|
|
|
|
if (typeof item.webkitGetAsEntry === "function") {
|
2019-07-20 03:10:43 +07:00
|
|
|
promises.push(this.traverseItem(item.webkitGetAsEntry(), uploadDir.fsPath));
|
2019-01-08 07:46:19 +07:00
|
|
|
} else {
|
|
|
|
const file = item.getAsFile();
|
|
|
|
if (file) {
|
2019-07-20 03:10:43 +07:00
|
|
|
this.addFile(uploadDir.fsPath + "/" + file.name, file);
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Traverses an entry and add files to the queue.
|
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
private async traverseItem(entry: IEntry, path: string): Promise<void> {
|
2019-01-08 07:46:19 +07:00
|
|
|
if (entry.isFile) {
|
|
|
|
return new Promise<void>((resolve): void => {
|
|
|
|
entry.file((file) => {
|
2019-07-20 03:10:43 +07:00
|
|
|
resolve(this.addFile(path + "/" + file.name, file));
|
2019-01-08 07:46:19 +07:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2019-07-20 03:10:43 +07:00
|
|
|
path += "/" + entry.name;
|
2019-01-08 07:46:19 +07:00
|
|
|
await new Promise((resolve): void => {
|
|
|
|
const promises: Array<Promise<void>> = [];
|
|
|
|
const dirReader = entry.createReader();
|
|
|
|
// According to the spec, readEntries() must be called until it calls
|
|
|
|
// the callback with an empty array.
|
|
|
|
const readEntries = (): void => {
|
|
|
|
dirReader.readEntries((entries) => {
|
|
|
|
if (entries.length === 0) {
|
|
|
|
Promise.all(promises).then(resolve).catch((error) => {
|
|
|
|
this.notificationService.error(error);
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
} else {
|
2019-07-20 03:10:43 +07:00
|
|
|
promises.push(...entries.map((c) => this.traverseItem(c, path)));
|
2019-01-08 07:46:19 +07:00
|
|
|
readEntries();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
readEntries();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a file to the queue.
|
|
|
|
*/
|
2019-07-20 03:10:43 +07:00
|
|
|
private addFile(path: string, file: File): void {
|
|
|
|
this.total += file.size;
|
|
|
|
this.fileQueue.set(path, file);
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
2019-07-20 03:10:43 +07:00
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
|
2019-08-10 06:50:05 +07:00
|
|
|
class Reader implements VSBufferReadableStream {
|
2019-07-20 03:10:43 +07:00
|
|
|
private _offset = 0;
|
|
|
|
private readonly size = 32000; // ~32kb max while reading in the file.
|
|
|
|
private _aborted = false;
|
|
|
|
private readonly reader = new FileReader();
|
2019-08-10 06:50:05 +07:00
|
|
|
private paused = true;
|
|
|
|
private buffer?: VSBuffer;
|
|
|
|
private callbacks = new Map<string, Array<(...args: any[]) => void>>();
|
2019-07-20 03:10:43 +07:00
|
|
|
|
|
|
|
public constructor(private readonly file: File) {
|
|
|
|
this.reader.addEventListener("load", this.onLoad);
|
|
|
|
}
|
|
|
|
|
|
|
|
public get offset(): number { return this._offset; }
|
|
|
|
public get aborted(): boolean { return this._aborted; }
|
|
|
|
|
2019-08-10 06:50:05 +07:00
|
|
|
public on(event: "data" | "error" | "end", callback: (...args:any[]) => void): void {
|
|
|
|
if (!this.callbacks.has(event)) {
|
|
|
|
this.callbacks.set(event, []);
|
|
|
|
}
|
|
|
|
this.callbacks.get(event)!.push(callback);
|
|
|
|
if (this.aborted) {
|
|
|
|
return this.emit("error", new Error("stream has been aborted"));
|
|
|
|
} else if (this.done) {
|
|
|
|
return this.emit("error", new Error("stream has ended"));
|
|
|
|
} else if (event === "end") { // Once this is being listened to we can safely start outputting data.
|
|
|
|
this.resume();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-20 03:10:43 +07:00
|
|
|
public abort = (): void => {
|
|
|
|
this._aborted = true;
|
|
|
|
this.reader.abort();
|
|
|
|
this.reader.removeEventListener("load", this.onLoad);
|
2019-08-10 06:50:05 +07:00
|
|
|
this.emit("end");
|
|
|
|
}
|
|
|
|
|
|
|
|
public pause(): void {
|
|
|
|
this.paused = true;
|
2019-07-20 03:10:43 +07:00
|
|
|
}
|
|
|
|
|
2019-08-10 06:50:05 +07:00
|
|
|
public resume(): void {
|
|
|
|
if (this.paused) {
|
|
|
|
this.paused = false;
|
|
|
|
this.readNextChunk();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public destroy(): void {
|
|
|
|
this.abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
private onLoad = (): void => {
|
|
|
|
this.buffer = VSBuffer.wrap(new Uint8Array(this.reader.result as ArrayBuffer));
|
|
|
|
if (!this.paused) {
|
|
|
|
this.readNextChunk();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private readNextChunk(): void {
|
|
|
|
if (this.buffer) {
|
|
|
|
this._offset += this.buffer.byteLength;
|
|
|
|
this.emit("data", this.buffer);
|
|
|
|
this.buffer = undefined;
|
|
|
|
}
|
|
|
|
if (!this.paused) { // Could be paused during the data event.
|
|
|
|
if (this.done) {
|
|
|
|
this.emit("end");
|
|
|
|
} else {
|
|
|
|
this.reader.readAsArrayBuffer(this.file.slice(this.offset, this.offset + this.size));
|
2019-07-20 03:10:43 +07:00
|
|
|
}
|
2019-08-10 06:50:05 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private emit(event: "data" | "error" | "end", ...args: any[]): void {
|
|
|
|
if (this.callbacks.has(event)) {
|
|
|
|
this.callbacks.get(event)!.forEach((cb) => cb(...args));
|
|
|
|
}
|
2019-01-08 07:46:19 +07:00
|
|
|
}
|
2019-01-31 06:46:17 +07:00
|
|
|
|
2019-08-10 06:50:05 +07:00
|
|
|
private get done(): boolean {
|
|
|
|
return this.offset >= this.file.size;
|
2019-07-20 03:10:43 +07:00
|
|
|
}
|
|
|
|
}
|