mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
We check the context: if an identifier is already a function, we interpret it as such, otherwise it is a symbol. This way, in the Equation app, x(x+1) is interpreted as x*(x+1)
135 lines
6.3 KiB
C++
135 lines
6.3 KiB
C++
#include "global_context.h"
|
|
#include "continuous_function.h"
|
|
#include "poincare_helpers.h"
|
|
#include <poincare/undefined.h>
|
|
#include <assert.h>
|
|
|
|
using namespace Poincare;
|
|
|
|
namespace Shared {
|
|
|
|
constexpr const char * GlobalContext::k_extensions[];
|
|
|
|
bool GlobalContext::SymbolAbstractNameIsFree(const char * baseName) {
|
|
return SymbolAbstractRecordWithBaseName(baseName).isNull();
|
|
}
|
|
|
|
const Layout GlobalContext::LayoutForRecord(Ion::Storage::Record record) {
|
|
assert(!record.isNull());
|
|
if (Ion::Storage::FullNameHasExtension(record.fullName(), Ion::Storage::expExtension, strlen(Ion::Storage::expExtension))) {
|
|
return PoincareHelpers::CreateLayout(ExpressionForActualSymbol(record));
|
|
} else {
|
|
assert(Ion::Storage::FullNameHasExtension(record.fullName(), Ion::Storage::funcExtension, strlen(Ion::Storage::funcExtension)));
|
|
return ContinuousFunction(record).layout();
|
|
}
|
|
}
|
|
|
|
void GlobalContext::DestroyRecordsBaseNamedWithoutExtension(const char * baseName, const char * extension) {
|
|
for (int i = 0; i < k_numberOfExtensions; i++) {
|
|
if (strcmp(k_extensions[i], extension) != 0) {
|
|
Ion::Storage::sharedStorage()->destroyRecordWithBaseNameAndExtension(baseName, k_extensions[i]);
|
|
}
|
|
}
|
|
}
|
|
|
|
Context::SymbolAbstractType GlobalContext::expressionTypeForIdentifier(const char * identifier, int length) {
|
|
const char * extension = Ion::Storage::sharedStorage()->extensionOfRecordBaseNamedWithExtensions(identifier, length, k_extensions, k_numberOfExtensions);
|
|
if (extension == nullptr) {
|
|
return Context::SymbolAbstractType::None;
|
|
}
|
|
assert(k_numberOfExtensions == 2);
|
|
assert(extension == Ion::Storage::expExtension || extension == Ion::Storage::funcExtension);
|
|
return extension == Ion::Storage::expExtension ? Context::SymbolAbstractType::Symbol : Context::SymbolAbstractType::Function;
|
|
}
|
|
|
|
const Expression GlobalContext::expressionForSymbolAbstract(const SymbolAbstract & symbol, bool clone) {
|
|
Ion::Storage::Record r = SymbolAbstractRecordWithBaseName(symbol.name());
|
|
return ExpressionForSymbolAndRecord(symbol, r);
|
|
}
|
|
|
|
void GlobalContext::setExpressionForSymbolAbstract(const Expression & expression, const SymbolAbstract & symbol) {
|
|
/* If the new expression contains the symbol, replace it because it will be
|
|
* destroyed afterwards (to be able to do A+2->A) */
|
|
Ion::Storage::Record record = SymbolAbstractRecordWithBaseName(symbol.name());
|
|
Expression e = ExpressionForSymbolAndRecord(symbol, record);
|
|
if (e.isUninitialized()) {
|
|
e = Undefined::Builder();
|
|
}
|
|
Expression finalExpression = expression.clone().replaceSymbolWithExpression(symbol, e);
|
|
|
|
// Set the expression in the storage depending on the symbol type
|
|
if (symbol.type() == ExpressionNode::Type::Symbol) {
|
|
SetExpressionForActualSymbol(finalExpression, symbol, record);
|
|
} else {
|
|
assert(symbol.type() == ExpressionNode::Type::Function);
|
|
Expression child = symbol.childAtIndex(0);
|
|
assert(child.type() == ExpressionNode::Type::Symbol);
|
|
finalExpression = finalExpression.replaceSymbolWithExpression(static_cast<Symbol&>(child), Symbol::Builder(UCodePointUnknown));
|
|
SetExpressionForFunction(finalExpression, symbol, record);
|
|
}
|
|
}
|
|
|
|
const Expression GlobalContext::ExpressionForSymbolAndRecord(const SymbolAbstract & symbol, Ion::Storage::Record r) {
|
|
if (symbol.type() == ExpressionNode::Type::Symbol) {
|
|
return ExpressionForActualSymbol(r);
|
|
}
|
|
assert(symbol.type() == ExpressionNode::Type::Function);
|
|
return ExpressionForFunction(symbol, r);
|
|
}
|
|
|
|
const Expression GlobalContext::ExpressionForActualSymbol(Ion::Storage::Record r) {
|
|
if (!Ion::Storage::FullNameHasExtension(r.fullName(), Ion::Storage::expExtension, strlen(Ion::Storage::expExtension))) {
|
|
return Expression();
|
|
}
|
|
// An expression record value is the expression itself
|
|
Ion::Storage::Record::Data d = r.value();
|
|
return Expression::ExpressionFromAddress(d.buffer, d.size);
|
|
}
|
|
|
|
const Expression GlobalContext::ExpressionForFunction(const SymbolAbstract & symbol, Ion::Storage::Record r) {
|
|
if (!Ion::Storage::FullNameHasExtension(r.fullName(), Ion::Storage::funcExtension, strlen(Ion::Storage::funcExtension))) {
|
|
return Expression();
|
|
}
|
|
/* An function record value has metadata before the expression. To get the
|
|
* expression, use the function record handle. */
|
|
Expression e = ContinuousFunction(r).expressionClone();
|
|
if (!e.isUninitialized()) {
|
|
e = e.replaceSymbolWithExpression(Symbol::Builder(UCodePointUnknown), symbol.childAtIndex(0));
|
|
}
|
|
return e;
|
|
}
|
|
|
|
Ion::Storage::Record::ErrorStatus GlobalContext::SetExpressionForActualSymbol(const Expression & expression, const SymbolAbstract & symbol, Ion::Storage::Record previousRecord) {
|
|
if (!previousRecord.isNull() && Ion::Storage::FullNameHasExtension(previousRecord.fullName(), Ion::Storage::funcExtension, strlen(Ion::Storage::funcExtension))) {
|
|
/* A function can overwrite a variable, but a variable cannot be created if
|
|
* it has the same name as an existing function. */
|
|
// TODO Pop up "Name taken for a function"
|
|
return Ion::Storage::Record::ErrorStatus::NameTaken;
|
|
}
|
|
// Delete any record with same name (as it is going to be overriden)
|
|
previousRecord.destroy();
|
|
return Ion::Storage::sharedStorage()->createRecordWithExtension(symbol.name(), Ion::Storage::expExtension, expression.addressInPool(), expression.size());
|
|
}
|
|
|
|
Ion::Storage::Record::ErrorStatus GlobalContext::SetExpressionForFunction(const Expression & expressionToStore, const SymbolAbstract & symbol, Ion::Storage::Record previousRecord) {
|
|
Ion::Storage::Record recordToSet = previousRecord;
|
|
Ion::Storage::Record::ErrorStatus error = Ion::Storage::Record::ErrorStatus::None;
|
|
if (!Ion::Storage::FullNameHasExtension(previousRecord.fullName(), Ion::Storage::funcExtension, strlen(Ion::Storage::funcExtension))) {
|
|
// The previous record was not a function. Destroy it and create the new record.
|
|
previousRecord.destroy();
|
|
ContinuousFunction newModel = ContinuousFunction::NewModel(&error, symbol.name());
|
|
if (error != Ion::Storage::Record::ErrorStatus::None) {
|
|
return error;
|
|
}
|
|
recordToSet = newModel;
|
|
}
|
|
error = ContinuousFunction(recordToSet).setExpressionContent(expressionToStore);
|
|
return error;
|
|
}
|
|
|
|
Ion::Storage::Record GlobalContext::SymbolAbstractRecordWithBaseName(const char * name) {
|
|
return Ion::Storage::sharedStorage()->recordBaseNamedWithExtensions(name, k_extensions, k_numberOfExtensions);
|
|
}
|
|
|
|
}
|