繁体   English   中英

堆栈跟踪中的递归调用,但代码C#中没有

[英]recursive call in stack trace but nothing in code C#

我最近在C#.Net应用程序中遇到了一个问题。 未修改的堆栈跟踪如下所示:

2018-09-12 21:08:31,596 [] [112] ERROR PLoggerFactory::RunLogic - Exception : System.Exception: Serialisation errorSystem.ArgumentException: An item with the same key has already been added.
   at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
   at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
   at Block`2.GetConfigFromDB()
   at Block`2.GetConfigFromDB()
   at Block`2.Begin(IParcelGettable`1 P, Action`1 f)
   at Run.<>c__DisplayClass45_0.<RunInNewThread>b__1()

在上面,在堆栈中调用GetConfigFromDB 但是我已经验证了代码,其中没有递归的GetConfigFromDB。 这可能吗?

请让我知道是否需要GetConfigFromDB的代码,我将对其进行修改并共享。

-----编辑-------添加了代码

private Dictionary<string, object> GetConfigFromDB()
        {

            blockConfigJson = controller.BlockConfig.GetConfig(this.BlockInstanceId);
            if (String.IsNullOrEmpty(blockConfigJson))
            {
                return new Dictionary<string, object>();
            }
            Dictionary<string, object> configDictionary = new Dictionary<string, object>();
            try
            {
                configDictionary = JsonConvert.DeserializeObject<Dictionary<string, object>>(blockConfigJson);
                foreach (var v in configDictionary)
                {
                    var key = "__" + this.BlockInstanceId + "." + v.Key;
                    if (SharedConfig.ContainsKey(key))
                    {
                        SharedConfig[key] = v.Value;
                    }
                    else
                    {
                        SharedConfig.Add(key, v.Value);
                    }

                    if (v.Key.Trim() == "_extraInfo_")
                    {
                        dynamic extraInfo = JsonConvert.DeserializeObject(configDictionary["_extraInfo_"].ToString());
                        JsonConvert.DeserializeObject<List<Variable>>(extraInfo["Variables"].ToString());
                        Dictionary<string, string> _variablesTemp = new Dictionary<string, string>();
                        try
                        {
                            _variablesTemp = JsonConvert.DeserializeObject<Dictionary<string, string>>(extraInfo["Variables"].ToString());
                        }
                        catch (Exception ex)
                        {
                            mLogger.Debug("Variable parsing error " + ex);
                        }


                        List<Variable> _variables = new List<Variable>();
                        foreach (KeyValuePair<string, string> kyp in _variablesTemp)
                        {
                            _variables.Add(new Variable()
                            {
                                variableName = kyp.Key,
                                variableValue = kyp.Value
                            });
                        }

                        foreach (Variable _variable in _variables)
                        {
                            if (!SharedVariables.ContainsKey(_variable.variableName))
                            {
                                SharedVariables.Add(_variable.variableName, _variable.variableValue);
                                new Caching().Send(_variable.variableName, _EvaluateConfigValue(_variable.variableValue, this.blockConfig, this.SharedConfig, this.SharedVariables, this.propagatedConfig, this.propagatedVariables, this.ControlId));
                            }
                        }
                    }

                }
            }
            catch (Exception ex)
            {

                configDictionary = new Dictionary<string, object>();
                throw;
            }
            return configDictionary;
        }

该堆栈跟踪显示了调用Dictionary<,>.Insert(TKey, TValue, bool) ,但是您当然从不这样做。 您不能,因为那是由Dictionary<,>.Add调用的私有方法,您确实要调用它。

启用优化后,堆栈跟踪不一定总是100%准确。 尤其是在调用琐碎的方法时,几乎肯定会内联。 Dictionary<,>.Add是一个简单的方法:从字面上看,除了调用Dictionary<,>.Insert别无其他。 似乎已恢复了足够的信息,以确定在Dictionary<,>.InsertGetConfigFromDB之间是否存在某些东西 ,但可能不是什么。 因为没有更好的选择,所以第二次使用名称GetConfigFromDB

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM