Last update March 7, 2012

Best Practices /
DLL



Difference (last change) (no other diffs, normal page display)

Changed: 67,178c67
- EricAnderton
jam tangan
jam tangan murah
jam tangan kw
hostgator coupon
kata mutiara
Jasa SEO
EZido
RDAnet
pioneer deh-1300mp
asus a53e-xa2
asus tf101-b1
asus tf101-a1
asus n53sv-eh72
asus republic of gamers g74sx
asus acer a5250
acer chromebook ac700
asus asus 53u
lg infinia 55lw5600
Sonicview 360 premier
asus 7 cu ft freezer
asus 30 single wall oven
brother cs6000i sewing machine
brother 1034d serger
brother sewing machines
Yokohama Geolandar H/T-S
crib tent tots in mind
kidco peapod plus
foscam fi8910w
samsung pl120 review
gopro helmet cam
Canon SX130IS
powershot s100
ContourHD 1080p
canon vixia hf r21
digital picture frame
canon ef 50mm f1.4
canon ef 70-300mm review
wide angle lenses
moving comfort sports bra
moving comfort bra
womens argyle sweater
bebe dresses
ViewSonic VX2250WM
Le Pan TC 970
Apple MacBook Air MC965LL
Sennheiser CX 880
plantronics cs540
ultrasonic jewelry cleaner
Sennheiser RS120
bose quietcomfort 15 acoustic noise cancelling headphones
logitech harmony one remote
logitech harmony 900
sony mhc-ec69i
sony mhcec909ip
bose wave music system
sony htss380
logitech squeezebox touch
sony dvp-fx970
onkyo tx-nr509
onkyo tx - nr609
onkyo ht-s3400
energy 5.1 take classic home theater system
polk audio psw505
onkyo ht-s5400
onkyo tx-nr709
belkin pf60
onkyo ht-rc360
denon avr-1912
Yamaha YHT-S400BL
fujitsu scansnap s1500
brother hl-2270dw
epson workforce 545
hp laserjet p2055dn
bushnell 8mp trophy cam
toshiba 32c110u
panasonic viera tc-p60s30
VIZIO E220VA
hauppauge wintv dcr-2650
Acer AM3970-U5022
Acer AspireRevo AR3700-U3002
Dell Inspiron i570
Dell GX620
Gateway FX6860-UR20P
Western Digital My Passport Essential SE 1 TB USB 3.0
Fujitsu ScanSnap S1300
Epson Perfection V300
Fujitsu SCANSNAP S1100
NeatDesk Desktop Scanner and Digital Filing System
Epson WorkForce Pro GT-S50
Kodak P811BK
Epson Perfection V330
Viewsonic VX2453MH
Asus VE228H
ViewSonic VA2431WM
Samsung B2230
HP 2711x
ASUS ML228H
Epson PowerLite Home Cinema 8350
Optoma PK301
Epson EX7210
Epson EX5210
ViewSonic PJD5133
Acer X1161P
FAVI RioHD-LED-2
Epson EX3210
ViewSonic PJD6531w
Trinity 360 Breville 800JEXL
Skil 3320-02
Delta 46-460
Grizzly G0555
Delta 18-900L
- EricAnderton

  • See Also: example in \dmd\samples\d\mydll
NOTE:
The following applies to at least DMD 0.127 and earlier. Later revisions may have changed the behavior documented here.

D has a lot of drawbacks when it comes to writing dll's. Thankfully, most of these issues are known and can be worked around.

Exporting functions and variables from a D-based dll requires knowledge of what the various extern() types do for the exported symbols. Stick to extern(Windows) or extern(C) as these create readable export names. The default, extern(D) is difficult to use due to how D mangles exports. [An alpha version of a reflection API called dflect that knows about D name mangling can help if you want to stick to extern(D) - BenHinkle]

Any top-level functions exported cannot, under any circumstances, throw an exception. This is becuase the top-level exception handler, as compiled into the dll by DMD, has no way to bind to an external client. The default behavior, is to terminate your program when one of your exports throws. Simply catch everything at the top level, and set a flag to be gathered elsewhere if you must give exception information back to the dll's client.

The GC will not be aware of anything happening outside the dll. If you are passing data from the dll back to the client, make sure that it has a reference held inside the dll so that data isn't prematurely collected. To help with this problem, D also provides a means for sharing a common garbage collector between a D exe and any DLL files it loads; this is documented in the DMD/Phobos specification and manual.

D doesn't provide a way to export an entire class, so you'll have to work around this by exporting static methods and global functions instead.

Keep in mind that the dll's runtime type information is a completely separate set of structures in memory than the client's runtime type information. If you are returning objects via exported functions, expect the client's attempt to cast those objects to fail miserably.

// in the dll
class Foobar{}
export extern(C) Object foobar(){ return new Foobar(); }

// in the client
extern(C) Object function() FoobarExport;
FoobarExport myFoobar = cast(FoobarExport)dll.getSymbol("foobar"); // gets the
export "foobar" from the dll
Foobar foo = cast(Foobar) myFoobar(); //** this cast will fail **

This limitation applies for objects and types passed to the dll as well.

In light of this, stick to scalar data when defining your exports (this also helps with GC issues). If you absolutely must pass a class, define your exports in terms of solitary interfaces (that don't inherit from other interfaces) to avoid casting; at least this way, you can reasonably expect an interface cast to fail. Also, make sure that both the client and the dll are using the same version of that interface.

There is one additional concern when passing classes between the dll and client.

Make sure you dispose of any classes that originate from the dll before the dll is unloaded if at all possible. In the case of a shared GC between the dll and client, this is critical, as it is possible for the GC to attempt to 'finalize' objects that no longer have a valid vtable (resulting a GPF or segfault), long after the dll hosting that vtable is gone.

- EricAnderton

FrontPage | News | TestPage | MessageBoard | Search | Contributors | Folders | Index | Help | Preferences | Edit

Edit text of this page (date of last change: March 7, 2012 19:06 (diff))