internal void Check() { Function f = funcs[info]; if (this.info < 0) { throw ExprException.UndefinedFunction(this.name); } if (funcs[info].IsVariantArgumentList) { // for finctions with variabls argument list argumentCount is a minimal number of arguments if (argumentCount < funcs[info].argumentCount) { // Special case for the IN operator if (funcs[this.info].id == FunctionId.In) { throw ExprException.InWithoutList(); } throw ExprException.FunctionArgumentCount(this.name); } } else { if (argumentCount != funcs[info].argumentCount) { throw ExprException.FunctionArgumentCount(this.name); } } }
internal void Check() { Function f = s_funcs[_info]; if (_info < 0) { throw ExprException.UndefinedFunction(_name); } if (s_funcs[_info]._isVariantArgumentList) { // for finctions with variabls argument list argumentCount is a minimal number of arguments if (_argumentCount < s_funcs[_info]._argumentCount) { // Special case for the IN operator if (s_funcs[_info]._id == FunctionId.In) { throw ExprException.InWithoutList(); } throw ExprException.FunctionArgumentCount(_name); } } else { if (_argumentCount != s_funcs[_info]._argumentCount) { throw ExprException.FunctionArgumentCount(_name); } } }
internal FunctionNode(string name) { this.name = name; #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("Create function node " + name); } #endif for (int i = 0; i < funcs.Length; i++) { if (String.Compare(funcs[i].name, name, true, CultureInfo.InvariantCulture) == 0) { // we found the reserved word.. #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("Reserved word " + name); } #endif this.info = i; break; } } if (this.info < 0) { throw ExprException.UndefinedFunction(this.name); } }
internal AggregateNode(FunctionId aggregateType, string columnName, bool local, string relationName) { Debug.Assert(columnName != null, "Invalid parameter columnName (null)."); #if DEBUG if (CompModSwitches.AggregateNode.TraceVerbose) { Debug.WriteLine("Creating the aggregate node"); } #endif this.aggregate = (Aggregate)(int)aggregateType; if (aggregateType == FunctionId.Sum) { this.type = AggregateType.Sum; } else if (aggregateType == FunctionId.Avg) { this.type = AggregateType.Mean; } else if (aggregateType == FunctionId.Min) { this.type = AggregateType.Min; } else if (aggregateType == FunctionId.Max) { this.type = AggregateType.Max; } else if (aggregateType == FunctionId.Count) { this.type = AggregateType.Count; } else if (aggregateType == FunctionId.Var) { this.type = AggregateType.Var; } else if (aggregateType == FunctionId.StDev) { this.type = AggregateType.StDev; } else { throw ExprException.UndefinedFunction(Function.FunctionName[(Int32)aggregateType]); } this.local = local; this.relationName = relationName; this.columnName = columnName; }
internal virtual void Check() { #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("Check function: " + this.name); } #endif Function f = funcs[info]; #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("id = " + ((int)f.id).ToString()); } if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine(", arguments = " + this.argumentCount.ToString()); } #endif if (this.info < 0) { throw ExprException.UndefinedFunction(this.name); } if (funcs[info].IsVariantArgumentList) { // for finctions with variabls argument list argumentCount is a minimal number of arguments if (argumentCount < funcs[info].argumentCount) { // Special case for the IN operator if (funcs[this.info].id == FunctionId.In) { throw ExprException.InWithoutList(); } throw ExprException.FunctionArgumentCount(this.name); } } else { if (argumentCount != funcs[info].argumentCount) { throw ExprException.FunctionArgumentCount(this.name); } } }
internal FunctionNode(DataTable table, string name) : base(table) { _name = name; for (int i = 0; i < s_funcs.Length; i++) { if (string.Equals(s_funcs[i]._name, name, StringComparison.OrdinalIgnoreCase)) { // we found the reserved word.. _info = i; break; } } if (_info < 0) { throw ExprException.UndefinedFunction(_name); } }
internal FunctionNode(DataTable table, string name) : base(table) { this.name = name; for (int i = 0; i < funcs.Length; i++) { if (String.Compare(funcs[i].name, name, StringComparison.OrdinalIgnoreCase) == 0) { // we found the reserved word.. this.info = i; break; } } if (this.info < 0) { throw ExprException.UndefinedFunction(this.name); } }
internal AggregateNode(DataTable?table, FunctionId aggregateType, string columnName, bool local, string?relationName) : base(table) { Debug.Assert(columnName != null, "Invalid parameter column name (null)."); _aggregate = (Aggregate)(int)aggregateType; if (aggregateType == FunctionId.Sum) { _type = AggregateType.Sum; } else if (aggregateType == FunctionId.Avg) { _type = AggregateType.Mean; } else if (aggregateType == FunctionId.Min) { _type = AggregateType.Min; } else if (aggregateType == FunctionId.Max) { _type = AggregateType.Max; } else if (aggregateType == FunctionId.Count) { _type = AggregateType.Count; } else if (aggregateType == FunctionId.Var) { _type = AggregateType.Var; } else if (aggregateType == FunctionId.StDev) { _type = AggregateType.StDev; } else { throw ExprException.UndefinedFunction(Function.s_functionName[(int)aggregateType]); } _local = local; _relationName = relationName; _columnName = columnName; }
internal AggregateNode(DataTable table, FunctionId aggregateType, string columnName, bool local, string relationName) : base(table) { this.aggregate = (Aggregate)aggregateType; if (aggregateType == FunctionId.Sum) { this.type = AggregateType.Sum; } else if (aggregateType == FunctionId.Avg) { this.type = AggregateType.Mean; } else if (aggregateType == FunctionId.Min) { this.type = AggregateType.Min; } else if (aggregateType == FunctionId.Max) { this.type = AggregateType.Max; } else if (aggregateType == FunctionId.Count) { this.type = AggregateType.Count; } else if (aggregateType == FunctionId.Var) { this.type = AggregateType.Var; } else { if (aggregateType != FunctionId.StDev) { throw ExprException.UndefinedFunction(Function.FunctionName[(int)aggregateType]); } this.type = AggregateType.StDev; } this.local = local; this.relationName = relationName; this.columnName = columnName; }
internal FunctionNode(DataTable?table, string name) : base(table) { // Because FunctionNode instances are created eagerly but evaluated lazily, // we need to capture the deserialization scope here. The scope could be // null if no deserialization is in progress. _capturedLimiter = TypeLimiter.Capture(); _name = name; for (int i = 0; i < s_funcs.Length; i++) { if (string.Equals(s_funcs[i]._name, name, StringComparison.OrdinalIgnoreCase)) { // we found the reserved word.. _info = i; break; } } if (_info < 0) { throw ExprException.UndefinedFunction(_name); } }
internal void Check() { Function function1 = funcs[this.info]; if (this.info < 0) { throw ExprException.UndefinedFunction(this.name); } if (funcs[this.info].IsVariantArgumentList) { if (this.argumentCount < funcs[this.info].argumentCount) { if (funcs[this.info].id == FunctionId.In) { throw ExprException.InWithoutList(); } throw ExprException.FunctionArgumentCount(this.name); } } else if (this.argumentCount != funcs[this.info].argumentCount) { throw ExprException.FunctionArgumentCount(this.name); } }
private object EvalFunction(FunctionId id, object[] argumentValues, DataRow row, DataRowVersion version) { StorageType storageType; switch (id) { case FunctionId.Abs: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); storageType = DataStorage.GetStorageType(argumentValues[0].GetType()); if (ExpressionNode.IsInteger(storageType)) { return(Math.Abs((long)argumentValues[0])); } if (ExpressionNode.IsNumeric(storageType)) { return(Math.Abs((double)argumentValues[0])); } throw ExprException.ArgumentTypeInteger(s_funcs[_info]._name, 1); case FunctionId.cBool: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); storageType = DataStorage.GetStorageType(argumentValues[0].GetType()); switch (storageType) { case StorageType.Boolean: return((bool)argumentValues[0]); case StorageType.Int32: return((int)argumentValues[0] != 0); case StorageType.Double: return((double)argumentValues[0] != 0.0); case StorageType.String: return(bool.Parse((string)argumentValues[0])); default: throw ExprException.DatatypeConvertion(argumentValues[0].GetType(), typeof(bool)); } case FunctionId.cInt: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); return(Convert.ToInt32(argumentValues[0], FormatProvider)); case FunctionId.cDate: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); return(Convert.ToDateTime(argumentValues[0], FormatProvider)); case FunctionId.cDbl: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); return(Convert.ToDouble(argumentValues[0], FormatProvider)); case FunctionId.cStr: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); return(Convert.ToString(argumentValues[0], FormatProvider)); case FunctionId.Charindex: Debug.Assert(_argumentCount == 2, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); Debug.Assert(argumentValues[0] is string, "Invalid argument type for " + s_funcs[_info]._name); Debug.Assert(argumentValues[1] is string, "Invalid argument type for " + s_funcs[_info]._name); if (DataStorage.IsObjectNull(argumentValues[0]) || DataStorage.IsObjectNull(argumentValues[1])) { return(DBNull.Value); } if (argumentValues[0] is SqlString) { argumentValues[0] = ((SqlString)argumentValues[0]).Value; } if (argumentValues[1] is SqlString) { argumentValues[1] = ((SqlString)argumentValues[1]).Value; } return(((string)argumentValues[1]).IndexOf((string)argumentValues[0], StringComparison.Ordinal)); case FunctionId.Iif: Debug.Assert(_argumentCount == 3, "Invalid argument argumentCount: " + _argumentCount.ToString(FormatProvider)); object first = _arguments[0].Eval(row, version); if (DataExpression.ToBoolean(first) != false) { return(_arguments[1].Eval(row, version)); } else { return(_arguments[2].Eval(row, version)); } case FunctionId.In: // we never evaluate IN directly: IN as a binary operator, so evaluation of this should be in // BinaryNode class throw ExprException.NYI(s_funcs[_info]._name); case FunctionId.IsNull: Debug.Assert(_argumentCount == 2, "Invalid argument argumentCount: "); if (DataStorage.IsObjectNull(argumentValues[0])) { return(argumentValues[1]); } else { return(argumentValues[0]); } case FunctionId.Len: Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); Debug.Assert((argumentValues[0] is string) || (argumentValues[0] is SqlString), "Invalid argument type for " + s_funcs[_info]._name); if (argumentValues[0] is SqlString) { if (((SqlString)argumentValues[0]).IsNull) { return(DBNull.Value); } else { argumentValues[0] = ((SqlString)argumentValues[0]).Value; } } return(((string)argumentValues[0]).Length); case FunctionId.Substring: Debug.Assert(_argumentCount == 3, "Invalid argument argumentCount: " + _argumentCount.ToString(FormatProvider)); Debug.Assert((argumentValues[0] is string) || (argumentValues[0] is SqlString), "Invalid first argument " + argumentValues[0].GetType().FullName + " in " + s_funcs[_info]._name); Debug.Assert(argumentValues[1] is int, "Invalid second argument " + argumentValues[1].GetType().FullName + " in " + s_funcs[_info]._name); Debug.Assert(argumentValues[2] is int, "Invalid third argument " + argumentValues[2].GetType().FullName + " in " + s_funcs[_info]._name); // work around the differences in .NET and VBA implementation of the Substring function // 1. The <index> Argument is 0-based in .NET, and 1-based in VBA // 2. If the <Length> argument is longer then the string length .NET throws an ArgumentException // but our users still want to get a result. int start = (int)argumentValues[1] - 1; int length = (int)argumentValues[2]; if (start < 0) { throw ExprException.FunctionArgumentOutOfRange("index", "Substring"); } if (length < 0) { throw ExprException.FunctionArgumentOutOfRange("length", "Substring"); } if (length == 0) { return(string.Empty); } if (argumentValues[0] is SqlString) { argumentValues[0] = ((SqlString)argumentValues[0]).Value; } int src_length = ((string)argumentValues[0]).Length; if (start > src_length) { return(DBNull.Value); } if (start + length > src_length) { length = src_length - start; } return(((string)argumentValues[0]).Substring(start, length)); case FunctionId.Trim: { Debug.Assert(_argumentCount == 1, "Invalid argument argumentCount for " + s_funcs[_info]._name + " : " + _argumentCount.ToString(FormatProvider)); Debug.Assert((argumentValues[0] is string) || (argumentValues[0] is SqlString), "Invalid argument type for " + s_funcs[_info]._name); if (DataStorage.IsObjectNull(argumentValues[0])) { return(DBNull.Value); } if (argumentValues[0] is SqlString) { argumentValues[0] = ((SqlString)argumentValues[0]).Value; } return(((string)argumentValues[0]).Trim()); } case FunctionId.Convert: if (_argumentCount != 2) { throw ExprException.FunctionArgumentCount(_name); } if (argumentValues[0] == DBNull.Value) { return(DBNull.Value); } Type type = (Type)argumentValues[1]; StorageType mytype = DataStorage.GetStorageType(type); storageType = DataStorage.GetStorageType(argumentValues[0].GetType()); if (mytype == StorageType.DateTimeOffset) { if (storageType == StorageType.String) { return(SqlConvert.ConvertStringToDateTimeOffset((string)argumentValues[0], FormatProvider)); } } if (StorageType.Object != mytype) { if ((mytype == StorageType.Guid) && (storageType == StorageType.String)) { return(new Guid((string)argumentValues[0])); } if (ExpressionNode.IsFloatSql(storageType) && ExpressionNode.IsIntegerSql(mytype)) { if (StorageType.Single == storageType) { return(SqlConvert.ChangeType2((float)SqlConvert.ChangeType2(argumentValues[0], StorageType.Single, typeof(float), FormatProvider), mytype, type, FormatProvider)); } else if (StorageType.Double == storageType) { return(SqlConvert.ChangeType2((double)SqlConvert.ChangeType2(argumentValues[0], StorageType.Double, typeof(double), FormatProvider), mytype, type, FormatProvider)); } else if (StorageType.Decimal == storageType) { return(SqlConvert.ChangeType2((decimal)SqlConvert.ChangeType2(argumentValues[0], StorageType.Decimal, typeof(decimal), FormatProvider), mytype, type, FormatProvider)); } } // The Convert function can be called lazily, outside of a previous Serialization Guard scope. // If there was a type limiter scope on the stack at the time this Convert function was created, // we must manually re-enter the Serialization Guard scope. DeserializationToken deserializationToken = (_capturedLimiter != null) ? SerializationInfo.StartDeserialization() : default; using (deserializationToken) { return(SqlConvert.ChangeType2(argumentValues[0], mytype, type, FormatProvider)); } } return(argumentValues[0]); case FunctionId.DateTimeOffset: if (argumentValues[0] == DBNull.Value || argumentValues[1] == DBNull.Value || argumentValues[2] == DBNull.Value) { return(DBNull.Value); } switch (((DateTime)argumentValues[0]).Kind) { case DateTimeKind.Utc: if ((int)argumentValues[1] != 0 && (int)argumentValues[2] != 0) { throw ExprException.MismatchKindandTimeSpan(); } break; case DateTimeKind.Local: if (DateTimeOffset.Now.Offset.Hours != (int)argumentValues[1] && DateTimeOffset.Now.Offset.Minutes != (int)argumentValues[2]) { throw ExprException.MismatchKindandTimeSpan(); } break; case DateTimeKind.Unspecified: break; } if ((int)argumentValues[1] < -14 || (int)argumentValues[1] > 14) { throw ExprException.InvalidHoursArgument(); } if ((int)argumentValues[2] < -59 || (int)argumentValues[2] > 59) { throw ExprException.InvalidMinutesArgument(); } // range should be within -14 hours and +14 hours if ((int)argumentValues[1] == 14 && (int)argumentValues[2] > 0) { throw ExprException.InvalidTimeZoneRange(); } if ((int)argumentValues[1] == -14 && (int)argumentValues[2] < 0) { throw ExprException.InvalidTimeZoneRange(); } return(new DateTimeOffset((DateTime)argumentValues[0], new TimeSpan((int)argumentValues[1], (int)argumentValues[2], 0))); default: throw ExprException.UndefinedFunction(s_funcs[_info]._name); } }
private object EvalFunction(FunctionId id, object[] argumentValues, DataRow row, DataRowVersion version) { #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("calculate " + this.ToString()); } #endif switch (id) { case FunctionId.Abs: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); if (ExpressionNode.IsInteger(argumentValues[0].GetType())) { return(Math.Abs((Int64)argumentValues[0])); } if (ExpressionNode.IsNumeric(argumentValues[0].GetType())) { return(Math.Abs((double)argumentValues[0])); } throw ExprException.ArgumentTypeInteger(funcs[info].name, 1); case FunctionId.cBool: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); if (argumentValues[0] is bool) { return((bool)argumentValues[0]); } if (argumentValues[0] is int) { return((int)argumentValues[0] != 0); } if (argumentValues[0] is double) { return((double)argumentValues[0] != 0.0); } if (argumentValues[0] is string) { return(Boolean.Parse((string)argumentValues[0])); } throw ExprException.DatatypeConvertion(argumentValues[0].GetType(), typeof(bool)); case FunctionId.cInt: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); return(Convert.ToInt32(argumentValues[0])); case FunctionId.cDate: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); #if DEBUG if (CompModSwitches.FunctionNode.TraceVerbose) { Debug.WriteLine("Convert " + Convert.ToString(argumentValues[0]) + " of " + argumentValues[0].GetType().Name + " to datetime"); } #endif return(Convert.ToDateTime(argumentValues[0])); case FunctionId.cDbl: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); return(Convert.ToDouble(argumentValues[0])); case FunctionId.cStr: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); return(Convert.ToString(argumentValues[0])); case FunctionId.Charindex: Debug.Assert(argumentCount == 2, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); Debug.Assert(argumentValues[0] is string, "Invalid argument type for " + funcs[info].name); Debug.Assert(argumentValues[1] is string, "Invalid argument type for " + funcs[info].name); if ((argumentValues[0] == DBNull.Value) || (argumentValues[1] == DBNull.Value)) { return(DBNull.Value); } return(((string)argumentValues[1]).IndexOf((string)argumentValues[0])); case FunctionId.Iif: Debug.Assert(argumentCount == 3, "Invalid argument argumentCount: " + argumentCount.ToString()); object first = this.arguments[0].Eval(row, version); if (DataExpression.ToBoolean(first) != false) { return(this.arguments[1].Eval(row, version)); } else { return(this.arguments[2].Eval(row, version)); } case FunctionId.In: // we never evaluate IN directly: IN as a binary operator, so evaluation of this should be in // BinaryNode class throw ExprException.NYI(funcs[info].name); case FunctionId.IsNull: Debug.Assert(argumentCount == 2, "Invalid argument argumentCount: "); if ((argumentValues[0]) == DBNull.Value) { return(argumentValues[1]); } else { return(argumentValues[0]); } case FunctionId.Len: Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); Debug.Assert(argumentValues[0] is string, "Invalid argument type for " + funcs[info].name); return(((string)argumentValues[0]).Length); case FunctionId.Substring: Debug.Assert(argumentCount == 3, "Invalid argument argumentCount: " + argumentCount.ToString()); Debug.Assert(argumentValues[0] is string, "Invalid first argument " + argumentValues[0].GetType().FullName + " in " + funcs[info].name); Debug.Assert(argumentValues[1] is int, "Invalid second argument " + argumentValues[1].GetType().FullName + " in " + funcs[info].name); Debug.Assert(argumentValues[2] is int, "Invalid third argument " + argumentValues[2].GetType().FullName + " in " + funcs[info].name); // work around the differences in COM+ and VBA implementation of the Substring function // 1. The <index> Argument is 0-based in COM+, and 1-based in VBA // 2. If the <Length> argument is longer then the string length COM+ throws an ArgumentException // but our users still want to get a result. int start = (int)argumentValues[1] - 1; int length = (int)argumentValues[2]; if (start < 0) { throw ExprException.FunctionArgumentOutOfRange("index", "Substring"); } if (length < 0) { throw ExprException.FunctionArgumentOutOfRange("length", "Substring"); } if (length == 0) { return(""); } int src_length = ((string)argumentValues[0]).Length; if (start > src_length) { return(DBNull.Value); } if (start + length > src_length) { length = src_length - start; } return(((string)argumentValues[0]).Substring(start, length)); case FunctionId.Trim: { Debug.Assert(argumentCount == 1, "Invalid argument argumentCount for " + funcs[info].name + " : " + argumentCount.ToString()); Debug.Assert(argumentValues[0] is string, "Invalid argument type for " + funcs[info].name); if (argumentValues[0] == DBNull.Value) { return(DBNull.Value); } return(((string)argumentValues[0]).Trim()); } case FunctionId.Convert: if (argumentCount != 2) { throw ExprException.FunctionArgumentCount(this.name); } if (argumentValues[0] == DBNull.Value) { return(DBNull.Value); } Type type = (Type)argumentValues[1]; Type _oType = argumentValues[0].GetType(); if (type != typeof(object)) { if ((type == typeof(Guid)) && (_oType == typeof(String))) { return(new Guid((string)argumentValues[0])); } if (ExpressionNode.IsFloat(_oType) && ExpressionNode.IsInteger(type)) { if (_oType == typeof(Single)) { return(Convert.ChangeType((Single)Convert.ChangeType(argumentValues[0], typeof(Single)), type)); } else if (_oType == typeof(double)) { return(Convert.ChangeType((double)Convert.ChangeType(argumentValues[0], typeof(double)), type)); } else { return(Convert.ChangeType((decimal)Convert.ChangeType(argumentValues[0], typeof(decimal)), type)); } } return(Convert.ChangeType(argumentValues[0], type)); } return(argumentValues[0]); default: throw ExprException.UndefinedFunction(funcs[info].name); } }
private object EvalFunction(FunctionId id, object[] argumentValues, DataRow row, DataRowVersion version) { StorageType type; switch (id) { case FunctionId.Charindex: if (!DataStorage.IsObjectNull(argumentValues[0]) && !DataStorage.IsObjectNull(argumentValues[1])) { if (argumentValues[0] is SqlString) { SqlString str6 = (SqlString)argumentValues[0]; argumentValues[0] = str6.Value; } if (argumentValues[1] is SqlString) { SqlString str5 = (SqlString)argumentValues[1]; argumentValues[1] = str5.Value; } return(((string)argumentValues[1]).IndexOf((string)argumentValues[0], StringComparison.Ordinal)); } return(DBNull.Value); case FunctionId.Len: { if (!(argumentValues[0] is SqlString)) { goto Label_02D4; } SqlString str4 = (SqlString)argumentValues[0]; if (!str4.IsNull) { SqlString str3 = (SqlString)argumentValues[0]; argumentValues[0] = str3.Value; goto Label_02D4; } return(DBNull.Value); } case FunctionId.Substring: { int startIndex = ((int)argumentValues[1]) - 1; int length = (int)argumentValues[2]; if (startIndex < 0) { throw ExprException.FunctionArgumentOutOfRange("index", "Substring"); } if (length < 0) { throw ExprException.FunctionArgumentOutOfRange("length", "Substring"); } if (length == 0) { return(""); } if (argumentValues[0] is SqlString) { SqlString str2 = (SqlString)argumentValues[0]; argumentValues[0] = str2.Value; } int num3 = ((string)argumentValues[0]).Length; if (startIndex > num3) { return(DBNull.Value); } if ((startIndex + length) > num3) { length = num3 - startIndex; } return(((string)argumentValues[0]).Substring(startIndex, length)); } case FunctionId.IsNull: if (!DataStorage.IsObjectNull(argumentValues[0])) { return(argumentValues[0]); } return(argumentValues[1]); case FunctionId.Iif: if (!DataExpression.ToBoolean(this.arguments[0].Eval(row, version))) { return(this.arguments[2].Eval(row, version)); } return(this.arguments[1].Eval(row, version)); case FunctionId.Convert: { if (this.argumentCount != 2) { throw ExprException.FunctionArgumentCount(this.name); } if (argumentValues[0] == DBNull.Value) { return(DBNull.Value); } Type dataType = (Type)argumentValues[1]; StorageType storageType = DataStorage.GetStorageType(dataType); type = DataStorage.GetStorageType(argumentValues[0].GetType()); if ((storageType == StorageType.DateTimeOffset) && (type == StorageType.String)) { return(SqlConvert.ConvertStringToDateTimeOffset((string)argumentValues[0], base.FormatProvider)); } if (StorageType.Object == storageType) { return(argumentValues[0]); } if ((storageType == StorageType.Guid) && (type == StorageType.String)) { return(new Guid((string)argumentValues[0])); } if (ExpressionNode.IsFloatSql(type) && ExpressionNode.IsIntegerSql(storageType)) { if (StorageType.Single == type) { return(SqlConvert.ChangeType2((float)SqlConvert.ChangeType2(argumentValues[0], StorageType.Single, typeof(float), base.FormatProvider), storageType, dataType, base.FormatProvider)); } if (StorageType.Double == type) { return(SqlConvert.ChangeType2((double)SqlConvert.ChangeType2(argumentValues[0], StorageType.Double, typeof(double), base.FormatProvider), storageType, dataType, base.FormatProvider)); } if (StorageType.Decimal == type) { return(SqlConvert.ChangeType2((decimal)SqlConvert.ChangeType2(argumentValues[0], StorageType.Decimal, typeof(decimal), base.FormatProvider), storageType, dataType, base.FormatProvider)); } } return(SqlConvert.ChangeType2(argumentValues[0], storageType, dataType, base.FormatProvider)); } case FunctionId.cInt: return(Convert.ToInt32(argumentValues[0], base.FormatProvider)); case FunctionId.cBool: { StorageType type4 = DataStorage.GetStorageType(argumentValues[0].GetType()); if (type4 > StorageType.Int32) { switch (type4) { case StorageType.Double: return(!(((double)argumentValues[0]) == 0.0)); case StorageType.String: return(bool.Parse((string)argumentValues[0])); } break; } switch (type4) { case StorageType.Boolean: return((bool)argumentValues[0]); case StorageType.Int32: return(((int)argumentValues[0]) != 0); } break; } case FunctionId.cDate: return(Convert.ToDateTime(argumentValues[0], base.FormatProvider)); case FunctionId.cDbl: return(Convert.ToDouble(argumentValues[0], base.FormatProvider)); case FunctionId.cStr: return(Convert.ToString(argumentValues[0], base.FormatProvider)); case FunctionId.Abs: type = DataStorage.GetStorageType(argumentValues[0].GetType()); if (!ExpressionNode.IsInteger(type)) { if (!ExpressionNode.IsNumeric(type)) { throw ExprException.ArgumentTypeInteger(funcs[this.info].name, 1); } return(Math.Abs((double)argumentValues[0])); } return(Math.Abs((long)argumentValues[0])); case FunctionId.In: throw ExprException.NYI(funcs[this.info].name); case FunctionId.Trim: if (!DataStorage.IsObjectNull(argumentValues[0])) { if (argumentValues[0] is SqlString) { SqlString str = (SqlString)argumentValues[0]; argumentValues[0] = str.Value; } return(((string)argumentValues[0]).Trim()); } return(DBNull.Value); case FunctionId.DateTimeOffset: if (((argumentValues[0] != DBNull.Value) && (argumentValues[1] != DBNull.Value)) && (argumentValues[2] != DBNull.Value)) { DateTime time = (DateTime)argumentValues[0]; switch (time.Kind) { case DateTimeKind.Utc: if ((((int)argumentValues[1]) != 0) && (((int)argumentValues[2]) != 0)) { throw ExprException.MismatchKindandTimeSpan(); } break; case DateTimeKind.Local: if ((DateTimeOffset.Now.Offset.Hours != ((int)argumentValues[1])) && (DateTimeOffset.Now.Offset.Minutes != ((int)argumentValues[2]))) { throw ExprException.MismatchKindandTimeSpan(); } break; } if ((((int)argumentValues[1]) < -14) || (((int)argumentValues[1]) > 14)) { throw ExprException.InvalidHoursArgument(); } if ((((int)argumentValues[2]) < -59) || (((int)argumentValues[2]) > 0x3b)) { throw ExprException.InvalidMinutesArgument(); } if ((((int)argumentValues[1]) == 14) && (((int)argumentValues[2]) > 0)) { throw ExprException.InvalidTimeZoneRange(); } if ((((int)argumentValues[1]) == -14) && (((int)argumentValues[2]) < 0)) { throw ExprException.InvalidTimeZoneRange(); } return(new DateTimeOffset((DateTime)argumentValues[0], new TimeSpan((int)argumentValues[1], (int)argumentValues[2], 0))); } return(DBNull.Value); default: throw ExprException.UndefinedFunction(funcs[this.info].name); } throw ExprException.DatatypeConvertion(argumentValues[0].GetType(), typeof(bool)); Label_02D4: return(((string)argumentValues[0]).Length); }