mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
80 lines
1.8 KiB
TypeScript
80 lines
1.8 KiB
TypeScript
/**
|
|
* Module: Schema of Synthesis Operations.
|
|
*/
|
|
|
|
import { type Graph } from '@/models/graph';
|
|
|
|
import {
|
|
type IBlockDTO,
|
|
type ICstSubstituteInfo,
|
|
type IOperationDTO,
|
|
type IOperationSchemaDTO
|
|
} from '../backend/types';
|
|
|
|
/** Represents Operation. */
|
|
export interface IOperation extends IOperationDTO {
|
|
x: number;
|
|
y: number;
|
|
is_owned: boolean;
|
|
is_consolidation: boolean; // aka 'diamond synthesis'
|
|
substitutions: ICstSubstituteInfo[];
|
|
arguments: number[];
|
|
}
|
|
|
|
/** Represents Block. */
|
|
export interface IBlock extends IBlockDTO {
|
|
x: number;
|
|
y: number;
|
|
width: number;
|
|
height: number;
|
|
}
|
|
|
|
/** Represents {@link IOperationSchema} statistics. */
|
|
export interface IOperationSchemaStats {
|
|
count_all: number;
|
|
count_inputs: number;
|
|
count_synthesis: number;
|
|
count_schemas: number;
|
|
count_owned: number;
|
|
count_block: number;
|
|
}
|
|
|
|
/** Represents OperationSchema. */
|
|
export interface IOperationSchema extends IOperationSchemaDTO {
|
|
operations: IOperation[];
|
|
blocks: IBlock[];
|
|
|
|
graph: Graph;
|
|
hierarchy: Graph;
|
|
schemas: number[];
|
|
stats: IOperationSchemaStats;
|
|
operationByID: Map<number, IOperation>;
|
|
blockByID: Map<number, IBlock>;
|
|
}
|
|
|
|
/** Represents item of OperationSchema. */
|
|
export type IOssItem = IOperation | IBlock;
|
|
|
|
/** Represents substitution error description. */
|
|
export interface ISubstitutionErrorDescription {
|
|
errorType: SubstitutionErrorType;
|
|
params: string[];
|
|
}
|
|
|
|
/** Represents Substitution table error types. */
|
|
export const SubstitutionErrorType = {
|
|
invalidIDs: 0,
|
|
incorrectCst: 1,
|
|
invalidClasses: 2,
|
|
invalidBasic: 3,
|
|
invalidConstant: 4,
|
|
typificationCycle: 5,
|
|
baseSubstitutionNotSet: 6,
|
|
unequalTypification: 7,
|
|
unequalExpressions: 8,
|
|
unequalArgsCount: 9,
|
|
unequalArgs: 10
|
|
} as const;
|
|
|
|
export type SubstitutionErrorType = (typeof SubstitutionErrorType)[keyof typeof SubstitutionErrorType];
|