-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: merge compatible definitions in union types #722
Draft
dmchurch
wants to merge
7
commits into
vega:next
Choose a base branch
from
dmchurch:merge-definitions
base: next
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
246b65c
fix: Merge compatible definitions in union types
dmchurch 6b0e19b
Update src/Utils/mergeDefinitions.ts
dmchurch 109b78e
Updating test snapshots; fixing reachability tests
dmchurch 291ebf9
Simplifying logic in addReachable, adding tests
dmchurch 30c22f7
Adding functional tests, mergeDefinitions tests
dmchurch 58f0dc9
Adding enum-merging to mergeDefinitions, unit test
dmchurch 79d1855
mergeDefinitions works on trivially-mergable types
dmchurch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,230 @@ | ||
import { AliasType } from "../Type/AliasType"; | ||
import { AnnotatedType } from "../Type/AnnotatedType"; | ||
import { ArrayType } from "../Type/ArrayType"; | ||
import { BaseType } from "../Type/BaseType"; | ||
import { BooleanType } from "../Type/BooleanType"; | ||
import { DefinitionType } from "../Type/DefinitionType"; | ||
import { EnumType } from "../Type/EnumType"; | ||
import { IntersectionType } from "../Type/IntersectionType"; | ||
import { LiteralType } from "../Type/LiteralType"; | ||
import { NullType } from "../Type/NullType"; | ||
import { NumberType } from "../Type/NumberType"; | ||
import { ObjectType } from "../Type/ObjectType"; | ||
import { OptionalType } from "../Type/OptionalType"; | ||
import { ReferenceType } from "../Type/ReferenceType"; | ||
import { RestType } from "../Type/RestType"; | ||
import { StringType } from "../Type/StringType"; | ||
import { SymbolType } from "../Type/SymbolType"; | ||
import { TupleType } from "../Type/TupleType"; | ||
import { UndefinedType } from "../Type/UndefinedType"; | ||
import { UnionType } from "../Type/UnionType"; | ||
|
||
export function makeExemplar(type: BaseType | undefined): unknown { | ||
return makeExemplars(type)[0]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is a lot of untested code in this file. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I definitely need to refactor this into something cleaner. On my to-do list, certainly. |
||
} | ||
|
||
export function makeExemplars(type: BaseType | undefined): readonly unknown[] { | ||
while (type) { | ||
if ( | ||
type instanceof AliasType || | ||
type instanceof AnnotatedType || | ||
type instanceof DefinitionType || | ||
type instanceof ReferenceType | ||
) { | ||
type = type.getType(); | ||
} else if (type instanceof ArrayType) { | ||
const itemExemplars = makeExemplars(type.getItem()); | ||
return [[], itemExemplars].concat(itemExemplars.map((e) => [e, e])); | ||
} else if (type instanceof BooleanType) { | ||
return [true, false]; | ||
} else if (type instanceof EnumType) { | ||
return type.getValues(); | ||
} else if (type instanceof IntersectionType) { | ||
return makeIntersectionExemplars(type); | ||
} else if (type instanceof LiteralType) { | ||
return [type.getValue()]; | ||
} else if (type instanceof NullType) { | ||
return [null]; | ||
} else if (type instanceof NumberType) { | ||
return [0, 1, -1]; | ||
} else if (type instanceof ObjectType) { | ||
return makeObjectExemplars(type); | ||
} else if (type instanceof OptionalType) { | ||
return makeExemplars(type.getType()).concat([undefined]); | ||
} else if (type instanceof RestType) { | ||
const exemplar = makeExemplars(type.getType()); | ||
return [[], [exemplar], [exemplar, exemplar]]; | ||
} else if (type instanceof StringType) { | ||
return ["", "lorem ipsum"]; | ||
} else if (type instanceof SymbolType) { | ||
return [Symbol(), Symbol()]; | ||
} else if (type instanceof TupleType) { | ||
return makeTupleExemplars(type); | ||
} else if (type instanceof UndefinedType) { | ||
return [undefined]; | ||
} else if (type instanceof UnionType) { | ||
return type | ||
.getTypes() | ||
.map((t) => makeExemplars(t)) | ||
.reduce((list, choice) => list.concat(choice), []); | ||
} else { | ||
throw new Error(`Can't make exemplar from type ${type.constructor.name}: ${type}`); | ||
} | ||
} | ||
return [undefined]; | ||
} | ||
|
||
type UnknownObject = Record<string, unknown>; | ||
|
||
function makeIntersectionExemplars(type: IntersectionType): unknown[] { | ||
const warnings: string[] = []; | ||
function intersectExemplars( | ||
exemplars: (readonly unknown[])[], | ||
currentResult: unknown, | ||
members: UnknownObject[] | ||
): unknown[] { | ||
for (let i = 0; i < exemplars.length; i++) { | ||
const choices = exemplars[i]; | ||
if (choices.length > 1) { | ||
return choices | ||
.map((choice) => { | ||
const subExemplars = exemplars.slice(i); // including the one with the multiple-choice element | ||
subExemplars[0] = [choice]; // ...and overwriting it with a single choice | ||
const subMembers = members.slice(); | ||
return intersectExemplars(subExemplars, currentResult, subMembers); | ||
}) | ||
.reduce((list, choice) => list.concat(choice), []); | ||
} else if (choices.length === 0) { | ||
return []; | ||
} | ||
const exemplar = choices[0]; | ||
if (exemplar == null) { | ||
warnings.push(`Can't make exemplar from intersection with null/undefined`); | ||
return []; | ||
} else if (exemplar && typeof exemplar === "object" && !Array.isArray(exemplar)) { | ||
members.push(exemplar as UnknownObject); | ||
} else { | ||
// We can only have one non-object member. It will become the base we add all the others to. | ||
if (currentResult !== undefined && exemplar !== currentResult) { | ||
warnings.push(`Can't make exemplar from complex intersection`); | ||
return []; | ||
} else { | ||
currentResult = exemplar; | ||
} | ||
} | ||
} | ||
|
||
// We've gotten here, which means we have exactly one choice at this level of recursion. | ||
// Now we just need to merge the intersection members. | ||
|
||
if (members.length === 0) { | ||
// no properties to add, just return the base value | ||
return [currentResult]; | ||
} | ||
let result: UnknownObject; | ||
if (currentResult === undefined) { | ||
result = {}; | ||
} else if (typeof currentResult !== "object") { | ||
// for primitive values, box them to allow adding properties | ||
result = new (currentResult as any).constructor(currentResult); | ||
} else if (Array.isArray(currentResult)) { | ||
result = currentResult.slice() as any; | ||
} else { | ||
result = Object.assign({}, currentResult); | ||
} | ||
|
||
const collisions: Record<string, unknown[]> = {}; | ||
|
||
for (const member of members) { | ||
for (const [key, value] of Object.entries(member)) { | ||
if (Object.getOwnPropertyDescriptor(result, key)) { | ||
if (!(key in collisions)) { | ||
collisions[key] = [result[key]]; | ||
} | ||
collisions[key].push(value); | ||
} else { | ||
result[key] = value; | ||
} | ||
} | ||
} | ||
|
||
return resolveObjectChoices(result, Object.entries(collisions)); | ||
} | ||
|
||
const choices = intersectExemplars( | ||
type.getTypes().map((t) => makeExemplars(t)), | ||
undefined, | ||
[] | ||
); | ||
if (choices.length === 0) { | ||
throw new Error(`Could not make intersection; warnings=${JSON.stringify(warnings)}`); | ||
} | ||
return choices; | ||
} | ||
|
||
function resolveObjectChoices(exemplar: UnknownObject, choiceEntries: [string, readonly unknown[]][]): UnknownObject[] { | ||
if (choiceEntries.length === 0) { | ||
return [exemplar]; | ||
} | ||
const [prop, choices] = choiceEntries[0]; | ||
const results: UnknownObject[] = []; | ||
for (const choice of choices) { | ||
const newExemplar = new (exemplar.constructor as new (val: UnknownObject) => UnknownObject)(exemplar); | ||
newExemplar[prop] = choice; | ||
results.push(...resolveObjectChoices(exemplar, choiceEntries.slice(1))); | ||
} | ||
return results; | ||
} | ||
|
||
function makeObjectExemplars(type: ObjectType): readonly unknown[] { | ||
const fullObject: UnknownObject = {}; | ||
const emptyObject: UnknownObject = {}; | ||
const choices: [string, readonly unknown[]][] = []; | ||
let hasOptional = false; | ||
for (const prop of type.getProperties()) { | ||
const name = prop.getName(); | ||
const values = makeExemplars(prop.getType()); | ||
if (values.length === 0) { | ||
throw new Error(`Cannot make object exemplar with invalid property for type ${type}`); | ||
} else if (values.length > 1) { | ||
choices.push([name, values]); | ||
} | ||
const value = values[0]; | ||
fullObject[name] = value; | ||
if (prop.isRequired()) { | ||
emptyObject[name] = value; | ||
} else { | ||
hasOptional = true; | ||
} | ||
} | ||
const additional = type.getAdditionalProperties(); | ||
if (additional === true) { | ||
hasOptional = true; | ||
fullObject["<UNLIKELY PROPERTY>"] = "UNLIKELY VALUE"; | ||
} else if (additional) { | ||
hasOptional = true; | ||
choices.push(["<UNLIKELY PROPERTY>", makeExemplars(additional)]); | ||
} | ||
const allChoices = resolveObjectChoices(fullObject, choices); | ||
if (hasOptional) { | ||
allChoices.push(emptyObject); | ||
} | ||
return allChoices; | ||
} | ||
|
||
function makeTupleExemplars(type: TupleType): readonly unknown[] { | ||
const exemplars = type.getTypes().map((t) => makeExemplars(t)); | ||
function makeTuples(prefix: readonly unknown[], items: (readonly unknown[])[]): (readonly unknown[])[] { | ||
if (items.length === 0) { | ||
return [prefix]; | ||
} | ||
const [head, ...tail] = items; | ||
const results: (readonly unknown[])[] = []; | ||
for (const choice of head) { | ||
results.push(...makeTuples(prefix.concat([choice]), tail)); | ||
} | ||
return results; | ||
} | ||
|
||
return makeTuples([], exemplars); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is only used in tests, right? Then it shouldn't be in lib utils.