package scotch.compiler.syntax.value;
import static java.util.Collections.reverse;
import static java.util.stream.Collectors.toList;
import static scotch.compiler.intermediate.Intermediates.function;
import static scotch.compiler.syntax.builder.BuilderUtil.require;
import static scotch.compiler.syntax.definition.Definitions.scopeDef;
import static scotch.compiler.syntax.reference.DefinitionReference.scopeRef;
import static scotch.compiler.syntax.value.Values.fn;
import static scotch.compiler.syntax.type.Types.fn;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
import com.google.common.collect.ImmutableList;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import scotch.compiler.analyzer.DependencyAccumulator;
import scotch.compiler.analyzer.NameAccumulator;
import scotch.compiler.analyzer.OperatorAccumulator;
import scotch.compiler.analyzer.PrecedenceParser;
import scotch.compiler.analyzer.NameQualifier;
import scotch.compiler.analyzer.TypeChecker;
import scotch.compiler.intermediate.IntermediateGenerator;
import scotch.compiler.intermediate.IntermediateValue;
import scotch.compiler.syntax.Scoped;
import scotch.compiler.syntax.builder.SyntaxBuilder;
import scotch.compiler.syntax.definition.Definition;
import scotch.compiler.syntax.pattern.PatternReducer;
import scotch.compiler.syntax.reference.ScopeReference;
import scotch.compiler.text.SourceLocation;
import scotch.symbol.Symbol;
import scotch.compiler.syntax.type.Type;
@EqualsAndHashCode(callSuper = false)
@ToString(exclude = "sourceLocation", doNotUseGetters = true)
public class FunctionValue extends Value implements Scoped {
public static Builder builder() {
return new Builder();
}
private final SourceLocation sourceLocation;
private final Symbol symbol;
private final List<Argument> arguments;
private final Value body;
private final Optional<Type> type;
FunctionValue(SourceLocation sourceLocation, Symbol symbol, List<Argument> arguments, Value body, Optional<Type> type) {
this.sourceLocation = sourceLocation;
this.symbol = symbol;
this.arguments = ImmutableList.copyOf(arguments);
this.body = body;
this.type = type;
}
@Override
public Value accumulateDependencies(DependencyAccumulator state) {
return state.keep(withBody(body.accumulateDependencies(state)));
}
@Override
public Value accumulateNames(NameAccumulator state) {
return state.scoped(this, () -> withArguments(arguments.stream()
.map(argument -> argument.accumulateNames(state))
.collect(toList()))
.withBody(body.accumulateNames(state)));
}
@Override
public IntermediateValue generateIntermediateCode(IntermediateGenerator state) {
IntermediateValue result = body.generateIntermediateCode(state);
for (int i = arguments.size() - 1; i >= 0; i--) {
if (i > 0) {
arguments.subList(0, i).stream().map(Argument::getName).forEach(state::reference);
}
state.addArgument(arguments.get(i).getName());
result = function(state.capture(), arguments.get(i).getName(), result);
}
return result;
}
@Override
public Value bindMethods(TypeChecker typeChecker) {
return typeChecker.scoped(this, () -> withBody(body.bindMethods(typeChecker)));
}
@Override
public Value bindTypes(TypeChecker typeChecker) {
return withArguments(typeChecker.bindTypes(arguments))
.withBody(body.bindTypes(typeChecker))
.withType(typeChecker.generate(getType()));
}
@Override
public Value checkTypes(TypeChecker typeChecker) {
return typeChecker.enclose(this, () -> {
arguments.stream()
.map(Argument::getType)
.forEach(typeChecker::specialize);
arguments.stream()
.map(Argument::getSymbol)
.forEach(typeChecker::addLocal);
try {
return withBody(body.checkTypes(typeChecker));
} finally {
arguments.stream()
.map(Argument::getType)
.forEach(typeChecker::generalize);
}
});
}
@Override
public Value defineOperators(OperatorAccumulator state) {
return state.scoped(this, () -> withBody(body.defineOperators(state)));
}
public List<Argument> getArguments() {
return arguments;
}
public Value getBody() {
return body;
}
@Override
public Definition getDefinition() {
return scopeDef(sourceLocation, symbol);
}
public ScopeReference getReference() {
return scopeRef(symbol);
}
@Override
public SourceLocation getSourceLocation() {
return sourceLocation;
}
public Symbol getSymbol() {
return symbol;
}
@Override
public Type getType() {
return type.orElseGet(() -> {
List<Argument> args = new ArrayList<>(arguments);
reverse(args);
return args.stream()
.map(Argument::getType)
.reduce(body.getType(), (result, arg) -> fn(arg, result));
});
}
@Override
public Value parsePrecedence(PrecedenceParser state) {
Symbol s = symbol.getMemberNames().size() == 1 ? state.reserveSymbol() : symbol;
return state.named(s, () -> state.scoped(this, () -> withSymbol(s).withBody(body.parsePrecedence(state))));
}
@Override
public Value qualifyNames(NameQualifier state) {
return state.named(symbol, () -> state.scoped(this, () -> new FunctionValue(
sourceLocation,
symbol,
arguments.stream()
.map(argument -> argument.qualifyNames(state))
.collect(toList()),
body.qualifyNames(state),
type
)));
}
@Override
public Value reducePatterns(PatternReducer reducer) {
reducer.markFunction(this);
return withBody(body.reducePatterns(reducer));
}
@Override
public WithArguments withArguments() {
return WithArguments.withArguments(this);
}
public FunctionValue withArguments(List<Argument> arguments) {
return fn(sourceLocation, symbol, arguments, body);
}
public FunctionValue withBody(Value body) {
return fn(sourceLocation, symbol, arguments, body);
}
@Override
public FunctionValue withType(Type type) {
return new FunctionValue(sourceLocation, symbol, arguments, body, Optional.of(type));
}
private FunctionValue withSymbol(Symbol symbol) {
return fn(sourceLocation, symbol, arguments, body);
}
public static class Builder implements SyntaxBuilder<FunctionValue> {
private Optional<Symbol> symbol;
private Optional<List<Argument>> arguments;
private Optional<Value> body;
private Optional<SourceLocation> sourceLocation;
private Builder() {
symbol = Optional.empty();
arguments = Optional.empty();
body = Optional.empty();
sourceLocation = Optional.empty();
}
@Override
public FunctionValue build() {
return fn(
require(sourceLocation, "Source location"),
require(symbol, "Function symbol"),
require(arguments, "Function arguments"),
require(body, "Function body").collapse()
);
}
public Builder withArguments(List<Argument> arguments) {
this.arguments = Optional.of(arguments);
return this;
}
public Builder withBody(Value body) {
this.body = Optional.of(body);
return this;
}
@Override
public Builder withSourceLocation(SourceLocation sourceLocation) {
this.sourceLocation = Optional.of(sourceLocation);
return this;
}
public Builder withSymbol(Symbol symbol) {
this.symbol = Optional.of(symbol);
return this;
}
}
}