Skip to content
Snippets Groups Projects
Select Git revision
  • b71123b5d475c41df52a40342fcf94b97bfafd1e
  • master default protected
  • e-infra2
  • ci-megalinter-speedup
  • e-infra
  • envri-hub-new-aai
  • egi-b2drop-no-collapse
  • lfs
  • gpu_staging
  • resurrect-testing-ownloud
  • experiments/collab
  • update_claim_group_keys
  • envri-hub
  • enable_rtc
  • eosc-ui
  • future/jupyterhub-5.x
  • versioning
  • eosc-templating
  • staging1-raw-image
  • token-exchange
  • del-users
21 results

hub-production.yaml

Blame
  • data-model.ts 2.47 KiB
    /**
     * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
     *
     * Taken/adapted from DensityServer (https://github.com/dsehnal/DensityServer)
     *
     * @author David Sehnal <david.sehnal@gmail.com>
     */
    
    import * as DataFormat from '../../common/data-format'
    import * as Coords from '../algebra/coordinate'
    import * as Box from '../algebra/box'
    import Writer from 'mol-io/writer/writer'
    import { SpacegroupCell } from 'mol-math/geometry';
    import { FileHandle } from 'mol-io/common/file-handle';
    import { TypedArrayValueArray } from 'mol-io/common/typed-array';
    
    //////////////////////////////////////
    // DATA
    //////////////////////////////////////
    
    export interface Sampling {
        index: number,
        rate: number,
        byteOffset: number,
        dataDomain: Coords.GridDomain<'Data'>,
        blockDomain: Coords.GridDomain<'Block'>
    }
    
    export interface DataContext {
        file: FileHandle,
        header: DataFormat.Header,
        spacegroup: SpacegroupCell,
        dataBox: Box.Fractional,
        sampling: Sampling[]
    }
    
    export interface BlockData {
        sampleCount: number[],
        values: TypedArrayValueArray
    }
    
    //////////////////////////////////////
    // QUERY
    //////////////////////////////////////
    
    export type QueryOutputStream = Writer & { end: () => void }
    
    export namespace QueryParamsBox {
        export type Cartesian = { kind: 'Cartesian', a: Coords.Cartesian, b: Coords.Cartesian }
        export type Fractional = { kind: 'Fractional', a: Coords.Fractional, b: Coords.Fractional }
        export type Cell = { kind: 'Cell' }
    }
    export type QueryParamsBox = QueryParamsBox.Cartesian | QueryParamsBox.Fractional | QueryParamsBox.Cell
    
    export interface QueryParams {
        sourceFilename: string,
        sourceId: string,
        asBinary: boolean,
        box: QueryParamsBox,
        detail: number,
        forcedSamplingLevel?: number
    }
    
    export type QueryBlock = { coord: Coords.Grid<'Block'>, offsets: Coords.Fractional[] }
    
    export interface QuerySamplingInfo {
        sampling: Sampling,
        fractionalBox: Box.Fractional,
        gridDomain: Coords.GridDomain<'Query'>,
        blocks: QueryBlock[]
    }
    
    export type QueryContext = QueryContext.Error | QueryContext.Empty | QueryContext.Data
    
    export namespace QueryContext {
        type Base = { guid: string, params: QueryParams }
        export type Error = { kind: 'Error', message: string } & Base
        export type Empty = { kind: 'Empty', data: DataContext } & Base
        export type Data = { kind: 'Data', data: DataContext, samplingInfo: QuerySamplingInfo, values: TypedArrayValueArray[] } & Base
    }