bpl和dll文件的区别[翻译]

2016-02-19 19:31 3 1 收藏

今天图老师小编要跟大家分享bpl和dll文件的区别[翻译],精心挑选的过程简单易学,喜欢的朋友一起来学习吧!

【 tulaoshi.com - 编程语言 】

 

  [原文]
  
  That is correct. A BPL is a DLL. (But not all DLLs are BPLs.)
  
   But I still found some different, such as that I can create a
   object from the Host exe and that pass to a BPL and modify it safely, but
   if I do same to a dll, I can not modify any referenced property of the object.

  
  When you use packages, there is only ever one copy of any unit in
  memory. One copy of Forms, one copy of SysUtils, one copy of System
  (well, most of it), one copy of StdCtrls, etc.
  
  All class-related operations, such as the "is" and "as" operators, rely
  on class references. Class references are actually just addresses. They
  point to definitions for the layouts of the classes' internals. (They
  point to what's called the virtual-method table, the VMT.) Two classes
  are the same if they point to the same VMT -- if the addresses are equal.
  
  When you have a class defined in the EXE's copy of StdCtrls and the same
  class defined in a DLL's copy of StdCtrls, those classes will really
  have different addresses. The "is" and "as" operators won't work with
  cross-module clases. But when you use packages, there is only one copy
  of the class, kept in vcl70.bpl, so all modules that reference that
  package will share a single class definition.
  
  Another factor is the memory manager in System. All string allocations
  ultimately call GetMem and FreeMem. If the EXE allocates a string, it
  uses its own GetMem. It then passes the string to a DLL, and the DLL
  might try to free it. The DLL will call its own copy of FreeMem, which
  won't have access to the EXE's memory-manager structures, and you'll get
  errors. With packages, everything will use the same memory manager from
  rtl70.bpl. (This can also be solved by using a shared memory manager
  between the EXE and the DLL; ShareMem is one example. That won't solve
  the class-comparison problem, though.)
  
  Above, I said the major difference between BPLs and DLLs is the number
  of exported functions. With a DLL, the only things exported are what
  appear in the "exports" clause that you write yourself. With a BPL,
  everything from all the units' "interface" sections gets exported,
  including global variables and class definitions. Also exported are the
  addresses of the "initialization" and "finalization" sections. And,
  internally, that is indeed the major difference. A BPL exports the
  functions necessary for the RTL to recognize the file as being a BPL and
  not just a generic DLL. If you call LoadPackage, i will call LoadLibrary
  to load it like a normal DLL, and then it will call all the package's
  units' initialization sections and do a fe other housekeeping
  operations. Calling a package's functions generates the same kind of
  assembler code as is generated when you call a DLL function.
  
  [译文]
  
        是的, bpl是dll,  但不是所有dll都是bpl。
  
   但是我还是发现了一些不同,比如,
  我可以在主应用程序中创建一个对象,把它传递给bpl,然后
  我可以安全得修改它。但是如果我用dll的话,我就不能修改和
  引用这个对象的属性。

  

        使用packages时 ,每个单元, 每个窗体, 每个sysutils, 每个system等等在内存中都只有一份拷贝,

  所有作用于类的操作符 ,比如is和as ,都依赖于类的引用, 类的引用其实就是一个(受限的)指针,指向类的定义(就是虚函数表 vmt) 如果两个引用指向相同的vmt,那么它们就是同一个类的引用。
  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

        如果你在exe和dll里使用同一个在stdctrls中定义的类,这两个类的vmt有不同的地址,is 和 as运算符在不同模块中不能正确地工作。 但是如果你使用包,那么内存中就只有一个类的拷贝,保存在vcl70.bpl中,那么所有引用那个包的模块会共享同一个类的定义。
        另一个因素就是system单元中内存管理器。所有的串分配最后都是调用getmem和freemem。如果exe分配了一个串,它使用它自己的getmem函数的拷贝,如果它把串传给dll,在dll中去free。那么这个dll会调用它自己的freemem函数的拷贝,而这个freemem函数不能访问exe中的内存管理器,这样就会产生错误。而如果用packages,它们都会使用rtl70.bpl中的内存管理器。(这个问题也可以通过在exe和dll间共享一个内存管理器来解决,共享内存只是个例子。但还是不能解决类之间的问题。)
  

         综上述,我认为bpls和dlls之间的主要区别就是输出函数的数量。用dll输出的唯一的东西就是用exports关键字指定的那些。而用bpl,所有单元的interfaces里定义的都输出,包括全局变量和类定义,initialization和finalization部分的地址也输出。另外,在dll和bpl的内部,确实有很大的不同。bpl输出所有供RTI识别一个文件是bpl而不是dll文件所需的所有函数。如果你调用loadpackage,我也可以调用loadlibrary把它当作普通的dll来load,然后它会调用packages中所有单元的initializatin部分并做一些其他的housekeeping?的操作。调用包里的函数时产生的汇编代码和调用dll中函数产生的汇编代码是相同的。
  
  第一次翻译文章,很多地方翻译得不好。 
  我觉得这篇文章很不错,希望有时间的高手能够重新翻译一次,谢谢。
  

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

  

(本文来源于图老师网站,更多请访问https://www.tulaoshi.com/bianchengyuyan/)

来源:https://www.tulaoshi.com/n/20160219/1621195.html

延伸阅读
标签: 电脑入门
有时候用电脑的时候遇到由于 DLL 文件丢失或损坏而造成的种种故障,大家都只知道只要重新注册一下DLL文件就可以了,但是对于新手来说即使知道是DLL文件损外,但是不知道是哪个DLL文件也束手无策,所以用这个 批处理 可以循环注册DLL文件,达到解决由于DLL丢失的种种故障! 代码如下: for%%iin(%windir%system32*.dll)doregsvr32.exe/s%%i 下...
SQL Server Compact是一种In-Process数据库引擎,它由多个DLL文件构成,下面就以SQL Server Compact 3.5为例子简单介绍一下每个DLL文件的作用。 sqlceca35.dll SQL Server Compact的客户端代理,客户端代理与服务端代理进行通信,实现RDA和Merge Replication数据同步。 sqlcecompact35.dll SQL Server Compact数据库修...
标签: ASP
       在ASP文件中调用DLL   作者:陈敏杰    动态联接库(DLL)是加快应用程序关键部分的执行速度的重要方法,但有一点恐怕大部分人都不知道,那就是在ASP文件也能通过调用DLL来加快服务器的执行速度,下面我简单的介绍一下在ASP文件调用DLL的步骤。    首先,必须...
作为软件设计和开发人员大都有过使用DLL(动态连接库)的经历,DLL的产生使得我们的应用程序在可维护性、代码的重复使用等方面都有了很大的提高。以前用的DLL一般都是用Visual C++、Delphi或者VB等编程语言来编写的,这种DLL的编写和使用,我们大都已经比较习惯了。作为新一代的程序开发语言--Visual C#,到底是如何编写和使用DLL的呢!本...
标签: 电脑入门
如何在windows中注册dll文件 在运行中输入regsvr32dllname.dll命令,其中dllname是你的dll文件名。 此命令自动在widnowssystem,windowssystem32文件夹下搜索并注册你指定的dll文件名称。 如果dll不在这两个文件夹下,则应该指定ddl文件的全路径。 如何查看应用程序使用的dll文件? 右键单击此应用程序并选择快捷菜单中的快速查看命令,在随...

经验教程

722

收藏

51
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部