示例#1
0
        private static bool ParseCore(string condition, List <DataRow> dataRowList, List <Dictionary <string, object> > dataList)
        {
            bool   result = false;
            Memory memory = new Memory();
            //匹配类似表达式"[A.QTY]>=10 && ([A.MaterialId]=='13212321' || ([A.RANGEID]=='AAA' && [A.SSID]=='9999')) && (([A.DD]=='xxx' || [A.DD]=='xxx1' || [A.DD]=='xxx2') || [A.ZZ]>=0)";
            string           pattern   = @"[[][A-Z]\.\w+[]]";
            MatchCollection  matchList = Regex.Matches(condition, pattern);
            HashSet <string> temp      = new HashSet <string>();

            foreach (var item in matchList)
            {
                string field = item.ToString();
                if (temp.Contains(field))
                {
                    continue;
                }
                temp.Add(field);
                string copyField = field;
                field = field.Remove(0, 1);
                field = field.Remove(field.Length - 1, 1);
                int    tableIndex = (int)field[0] - (int)'A';
                string fieldName  = field.Substring(2, field.Length - 2);
                object value      = null;
                if (dataRowList != null)
                {
                    if (dataRowList.Count < tableIndex + 1)
                    {
                        return(result);
                    }
                    if (!dataRowList[tableIndex].Table.Columns.Contains(fieldName))
                    {
                        return(result);
                    }
                    value = dataRowList[tableIndex][fieldName];
                }
                else if (dataList != null)
                {
                    if (dataList.Count < tableIndex + 1)
                    {
                        return(result);
                    }
                    if (!dataList[tableIndex].ContainsKey(fieldName))
                    {
                        return(result);
                    }
                    value = dataList[tableIndex][fieldName];
                }
                memory.AddObject(fieldName, value);
                condition = condition.Replace(copyField, fieldName);
            }
            Script.Execute("if(" + condition + "){ret=true;}else{ret=false;}", memory);
            result = LibSysUtils.ToBoolean(memory["ret"].value);
            return(result);
        }
示例#2
0
 public void SetValue(string variable, object value)
 {
     DS.AddObject(variable, value);
 }
示例#3
0
文件: Context.cs 项目: fjiang2/sqlcon
 public static void SetValue(VAR variable, object value)
 {
     DS.AddObject(variable, value);
 }
示例#4
0
        private static bool ParseCore(string condition, DataRow masterRow, DataRow bodyRow, Dictionary <string, object> masterDic, Dictionary <string, object> bodyDic)
        {
            bool result = false;

            try
            {
                //先使用QueryFields尝试
                if ((masterDic == null || masterDic.Count == 0) && masterRow != null)
                {
                    masterDic = new Dictionary <string, object>();
                    if (masterRow.Table != null)
                    {
                        foreach (DataColumn column in masterRow.Table.Columns)
                        {
                            masterDic.Add(column.ColumnName, masterRow[column.ColumnName]);
                        }
                    }
                }
                if (masterDic != null && masterDic.Count > 0)
                {
                    LibQueryCondition queryCondition = JsonUtiler.Deserialize <LibQueryCondition>(condition);
                    if (queryCondition != null)
                    {
                        if (queryCondition.AccordOfThis(masterDic))
                        {
                            return(true);
                        }
                    }
                }
            }
            catch (Exception)
            {
                //to do log
            }


            Memory memory = new Memory();
            //匹配类似表达式"[A.QTY]>=10 && ([A.MaterialId]=='13212321' || ([A.RANGEID]=='AAA' && [A.SSID]=='9999')) && (([A.DD]=='xxx' || [A.DD]=='xxx1' || [A.DD]=='xxx2') || [A.ZZ]>=0)";
            string           pattern   = @"[[][A-Z]\.\w+[]]";
            MatchCollection  matchList = Regex.Matches(condition, pattern);
            HashSet <string> temp      = new HashSet <string>();

            foreach (var item in matchList)
            {
                string field = item.ToString();
                if (temp.Contains(field))
                {
                    continue;
                }
                temp.Add(field);
                string copyField = field;
                field = field.Remove(0, 1);
                field = field.Remove(field.Length - 1, 1);
                int    tableIndex = (int)field[0] - (int)'A';
                string fieldName  = field.Substring(2, field.Length - 2);
                object value      = tableIndex == 0 ? (masterRow == null ? masterDic[fieldName] : masterRow[fieldName]) : (bodyRow == null ? bodyDic[fieldName] : bodyRow[fieldName]);
                memory.AddObject(fieldName, value);
                condition = condition.Replace(copyField, fieldName);
            }
            Script.Execute("if(" + condition + "){ret=true;}else{ret=false;}", memory);
            result = LibSysUtils.ToBoolean(memory["ret"].value);
            return(result);
        }