123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /**
- * Copyright (c) 2019-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
- *
- * @author Alexander Rose <alexander.rose@weirdbyte.de>
- */
- import { PluginContext } from '../../mol-plugin/context';
- import { StateAction } from '../../mol-state';
- import { Task } from '../../mol-task';
- import { Asset } from '../../mol-util/assets';
- import { getFileInfo } from '../../mol-util/file-info';
- import { ParamDefinition as PD } from '../../mol-util/param-definition';
- import { unzip } from '../../mol-util/zip/zip';
- import { PluginStateObject } from '../objects';
- async function processFile(file: Asset.File, plugin: PluginContext, format: string, visuals: boolean) {
- const info = getFileInfo(file.file!);
- const isBinary = plugin.dataFormats.binaryExtensions.has(info.ext);
- const { data } = await plugin.builders.data.readFile({ file, isBinary });
- const provider = format === 'auto'
- ? plugin.dataFormats.auto(info, data.cell?.obj!)
- : plugin.dataFormats.get(format);
- if (!provider) {
- plugin.log.warn(`OpenFiles: could not find data provider for '${info.ext}'`);
- await plugin.state.data.build().delete(data).commit();
- return;
- }
- // need to await so that the enclosing Task finishes after the update is done.
- const parsed = await provider.parse(plugin, data);
- if (visuals) {
- await provider.visuals?.(plugin, parsed);
- }
- };
- export const OpenFiles = StateAction.build({
- display: { name: 'Open Files', description: 'Load one or more files and optionally create default visuals' },
- from: PluginStateObject.Root,
- params: (a, ctx: PluginContext) => {
- const { extensions, options } = ctx.dataFormats;
- return {
- files: PD.FileList({ accept: Array.from(extensions.values()).map(e => `.${e}`).join(',') + ',.gz,.zip', multiple: true }),
- format: PD.MappedStatic('auto', {
- auto: PD.EmptyGroup(),
- specific: PD.Select(options[0][0], options)
- }),
- visuals: PD.Boolean(true, { description: 'Add default visuals' }),
- };
- }
- })(({ params, state }, plugin: PluginContext) => Task.create('Open Files', async taskCtx => {
- plugin.behaviors.layout.leftPanelTabName.next('data');
- await state.transaction(async () => {
- if (params.files === null) {
- plugin.log.error('No file(s) selected');
- return;
- }
- for (const file of params.files) {
- try {
- if (file.file && file.name.toLowerCase().endsWith('.zip')) {
- const zippedFiles = await unzip(taskCtx, await file.file.arrayBuffer());
- for (const [fn, filedata] of Object.entries(zippedFiles)) {
- if (!(filedata instanceof Uint8Array) || filedata.length === 0) continue;
- const asset = Asset.File(new File([filedata], fn));
- await processFile(asset, plugin, 'auto', params.visuals);
- }
- } else {
- const format = params.format.name === 'auto' ? 'auto' : params.format.params;
- await processFile(file, plugin, format, params.visuals);
- }
- } catch (e) {
- console.error(e);
- plugin.log.error(`Error opening file '${file.name}'`);
- }
- }
- }).runInContext(taskCtx);
- }));
- export const DownloadFile = StateAction.build({
- display: { name: 'Download File', description: 'Load one or more file from an URL' },
- from: PluginStateObject.Root,
- params: (a, ctx: PluginContext) => {
- const options = [...ctx.dataFormats.options, ['zip', 'Zip'] as const, ['gzip', 'Gzip'] as const];
- return {
- url: PD.Url(''),
- format: PD.Select(options[0][0], options),
- isBinary: PD.Boolean(false),
- visuals: PD.Boolean(true, { description: 'Add default visuals' }),
- };
- }
- })(({ params, state }, plugin: PluginContext) => Task.create('Open Files', async taskCtx => {
- plugin.behaviors.layout.leftPanelTabName.next('data');
- await state.transaction(async () => {
- try {
- if (params.format === 'zip' || params.format === 'gzip') {
- // TODO: add ReadZipFile transformer so this can be saved as a simple state snaphot,
- // would need support for extracting individual files from zip
- const data = await plugin.builders.data.download({ url: params.url, isBinary: true });
- if (params.format === 'zip') {
- const zippedFiles = await unzip(taskCtx, (data.obj?.data as Uint8Array).buffer);
- for (const [fn, filedata] of Object.entries(zippedFiles)) {
- if (!(filedata instanceof Uint8Array) || filedata.length === 0) continue;
- const asset = Asset.File(new File([filedata], fn));
- await processFile(asset, plugin, 'auto', params.visuals);
- }
- } else {
- const url = Asset.getUrl(params.url);
- const info = getFileInfo(url);
- await processFile(Asset.File(new File([data.obj?.data as Uint8Array], info.name)), plugin, 'auto', params.visuals);
- }
- } else {
- const provider = plugin.dataFormats.get(params.format);
- if (!provider) {
- plugin.log.warn(`DownloadFile: could not find data provider for '${params.format}'`);
- return;
- }
- const data = await plugin.builders.data.download({ url: params.url, isBinary: params.isBinary });
- const parsed = await provider.parse(plugin, data);
- if (params.visuals) {
- await provider.visuals?.(plugin, parsed);
- }
- }
- } catch (e) {
- console.error(e);
- plugin.log.error(`Error downloading '${typeof params.url === 'string' ? params.url : params.url.url}'`);
- }
- }).runInContext(taskCtx);
- }));
|