QLibrary函数在第一次调用时运行缓慢

问题描述 投票:1回答:1

我正在使用QLibrary从一个.dll文件加载函数。我成功加载它,成功解决功能。但是当我第一次使用该.dll中的某个函数时,这个函数的运行速度非常慢(即使它非常简单)。下次我再次使用它 - 速度很好(立即,应该是)。

这种行为的原因是什么?我怀疑某处有些事情发生了。

编辑1:代码:

typedef int(*my_type)(char *t_id);
QLibrary my_lib("Path_to_lib.dll");
my_lib.load();
if(my_lib.isLoaded){
  my_type func = (my_type)my_lib.resolve("_func_from_dll");
  if(func){
    char buf[50] = {0};
    char buf2[50] = {0};
    //Next line works slow
    qint32 resultSlow = func(buf);
    //Next line works fast
    qint32 resultFast = func(buf2);
  }
}
c++ performance qt dllimport qlibrary
1个回答
0
投票

我不会责怪QLibraryfunc在第一次被调用时只需要很长时间。我敢打赌,如果您使用特定于平台的代码解析其地址,您将获得相同的结果,例如Linux上的dlopendlsym。除了包装平台API之外,QLibrary并没有做太多的事情。没有任何特定的东西可以使第一次通话变慢。

在可能是泛型类的构造函数中,有一些代码味道可以执行文件I / O:类的用户是否知道构造函数可能阻塞磁盘I / O,因此理想情况下不应该从GUI线程调用? Qt使异步执行此任务相当容易,所以我至少尝试这样做:

class MyClass {
  QLibrary m_lib;
  enum { my_func = 0, other_func = 1 };
  QFuture<QVector<FunctionPointer>> m_functions;
  my_type my_func() {
    static my_type value;
    if (Q_UNLIKELY(!value) && m_functions.size() > my_func)
      value = reinterpret_cast<my_type>(m_functions.result().at(my_func));
    return value;
  }
public:
  MyClass() {
    m_lib.setFileName("Path_to_lib.dll");
    m_functions = QtConcurrent::run{
      m_lib.load();
      if (m_lib.isLoaded()) {
        QVector<QFunctionPointer> funs;
        funs.push_back(m_lib.resolve("_func_from_dll"));
        funs.push_back(m_lib.resolve("_func2_from_dll"));
        return funs;
      }
      return QVector<QFunctionPointer>();
    }
  }
  void use() {
    if (my_func()) {
      char buf1[50] = {0}, buf2[50] = {0};
      QElapsedTimer timer;
      timer.start();
      auto result1 = my_func()(buf1);
      qDebug() << "first call took" << timer.restart() << "ms";
      auto result2 = my_func()(buf2);
      qDebug() << "second call took" << timer.elapsed() << "ms";
    }
  }
};
© www.soinside.com 2019 - 2024. All rights reserved.