托管 C++具有静态变量的非托管静态库的包装器挂起

发布于 2024-09-29 09:15:31 字数 2338 浏览 3 评论 0原文

问题的解释有点啰嗦,请耐心看完。

我有一个用于金融应用程序的非托管 C++ 静态库。它有工作日约定、掉期约定、债券约定等。大多数约定依赖于静态全局变量,这些变量在第一次使用时初始化。该库还在启动时通过使用 ODBC 对 SQL Server 数据库运行一些查询来初始化假日日历。

我必须使用网络服务与第三方软件进行交互。实际上实现这一点的唯一方法是通过 C#。这不是问题,而且我已经取得了很大的进步。然而,当需要在 C# 中进行一些日期计算时,我遇到了障碍。由于我不想将所有 C++ 代码移植到 C#,因此我认为实现此目的的最有效方法是编写一个托管 C++ 类库 DLL,它是我的非托管静态库的包装器。一切似乎都工作正常,我没有遇到编译时或链接时错误,并且我可以添加对包装器的引用并查看所有正确的对象定义。但是,当我尝试运行我的应用程序时,它只是挂起。我尝试过对包装器 DLL 进行一系列编译器设置,但无济于事。如果我删除对非托管库的项目依赖,则一切正常。我强烈怀疑我对全局静态变量的随意使用导致了问题。有没有办法解决这个问题,至少弄清楚问题出在哪里?示例代码如下。

谢谢, 马克.

// FSAManaged.h

#pragma once

using namespace System;

//class XLDate;

namespace FSAManaged {
 public ref class Futures
 {
 public:
  static DateTime Expiry(String ^ code, DateTime date);
 };
}

该实现甚至不依赖于对非托管静态库的依赖:

// This is the main DLL file.
#include "stdafx.h"
#include "FSAManaged.h"


namespace FSAManaged
{
 DateTime Futures::Expiry(String ^ code, DateTime date) {
  return DateTime::Today;
 }
}

为了完整起见,这里是 AssemblyInfo.cpp:

#include "stdafx.h"

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;

//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute("FSAManaged")];
[assembly:AssemblyDescriptionAttribute("")];
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("?????")];
[assembly:AssemblyProductAttribute("FSAManaged")];
[assembly:AssemblyCopyrightAttribute("??????")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];

//
// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version
//      Build Number
//      Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly:AssemblyVersionAttribute("1.0.*")];

[assembly:ComVisible(false)];

[assembly:CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];

The explanation of the problem is a little long-winded, please bear with me.

I have an unmanaged C++ static library that is used for financial application. It has business day conventions, swap conventions, bond conventions, etc. Most of the conventions rely on static global variables, which are initialized on first use. The library also initializes the holiday calendars on startup by running some queries against a SQL Server database using ODBC.

I have to interact with third-party software using web services. The only way to do this realistically is through C#. That isn't an issue, and I was making good progress. However, I hit a stumbling block when it became necessary to do some date calculations in C#. Since I didn't want to port all my C++ code to C#, I figured the most efficient way to achieve this would be by writing a Managed C++ Class Library DLL that is a wrapper around my unmanaged static library. Everything seems to work fine, I get no compile-time or link-time errors, and I can add the reference to the wrapper and see all the proper object definitions. However, when I try to run my application, it just hangs. I have tried playing around with a bunch of compiler setting for the wrapper DLL, to no avail. If I remove the project dependency on my unmanaged library, everything works fine. I have a strong suspicion that my liberal use of global static variables is causing issues. Is there are way to solve this problem, are at least figure out where the issue is? Example code is below.

Thanks,
Marc.

// FSAManaged.h

#pragma once

using namespace System;

//class XLDate;

namespace FSAManaged {
 public ref class Futures
 {
 public:
  static DateTime Expiry(String ^ code, DateTime date);
 };
}

The implementation does not even rely on a dependency to the unmanaged static library:

// This is the main DLL file.
#include "stdafx.h"
#include "FSAManaged.h"


namespace FSAManaged
{
 DateTime Futures::Expiry(String ^ code, DateTime date) {
  return DateTime::Today;
 }
}

For completeness' sake, here is AssemblyInfo.cpp:

#include "stdafx.h"

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::CompilerServices;
using namespace System::Runtime::InteropServices;
using namespace System::Security::Permissions;

//
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
//
[assembly:AssemblyTitleAttribute("FSAManaged")];
[assembly:AssemblyDescriptionAttribute("")];
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("?????")];
[assembly:AssemblyProductAttribute("FSAManaged")];
[assembly:AssemblyCopyrightAttribute("??????")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];

//
// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version
//      Build Number
//      Revision
//
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:

[assembly:AssemblyVersionAttribute("1.0.*")];

[assembly:ComVisible(false)];

[assembly:CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

鱼忆七猫命九 2024-10-06 09:15:31

使用调试器。如果您从 C# 进行测试,则“项目 + 属性”、“调试”,勾选“启用非托管代码调试”。强烈建议在“工具+选项”、“调试”、“符号”中设置符号服务器。跑步。

当它挂起时,使用“调试”+“全部中断”。调试 + Windows + 线程,然后双击应该执行该工作的线程。调试 + Windows + 调用堆栈以查看发生了什么。如果您无法弄清楚,请在您的问题中发布堆栈跟踪。您在“输出”窗口和 Visual Studio 状态栏中看到的任何内容也都是相关的。

Use the debugger. If you test this from C# then Project + Properties, Debug, tick "Enabled unmanaged code debugging". Setting up the symbol server in Tools + Options, Debugging, Symbols is strongly recommended. Run.

When it hangs use Debug + Break All. Debug + Windows + Threads and double-click the thread that is supposed to be doing the job. Debug + Windows + Call stack to see what is going on. Post the stack trace in your question if you can't figure it out. Anything you see in the Output window and the Visual Studio status bar is relevant too.

青芜 2024-10-06 09:15:31

静态 C++ 变量从 DllMain 初始化。有很多事情你不应该在 DllMain 中做;触发另一个 Dll 的加载是最重要的。如果您从 DllMain 调用其他人的库,这很容易被破坏。

我建议您在 Dll 上创建一个 Init 函数,在 dll 启动并运行后调用该函数。

Static C++ variables are initialized from DllMain. There are lot's of things you should not do in DllMain; triggering the load of yet another Dll being the most important one. This is easy to break if you call into other peoples libraries in from DllMain.

I suggest you make an Init function on your Dll, which you call after the dll is up and running.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文