1998Q1/
<!-- MHonArc v2.4.4 -->
<!--X-Subject: Dynamic Loading of Modules (was: Back on the list) -->
<!--X-From-R13: @vxynf Syzdivfg <q97ryzNqgrx.punyzref.fr> -->
<!--X-Date: Tue, 24 Feb 1998 08:19:06 +0000 -->
<!--X-Message-Id: Pine.SOL.3.96.980224080855.19470A&#45;100000#licia,dtek.chalmers.se -->
<!--X-Content-Type: text/plain -->
<!--X-Reference: 199802231913.TAA127296#out4,ibm.net -->
<!--X-Head-End-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title>MUD-Dev message, Dynamic Loading of Modules (was: Back on the list)</title>
<!-- meta name="robots" content="noindex,nofollow" -->
<link rev="made" href="mailto:d97elm#dtek,chalmers.se">
</head>
<body background="/backgrounds/paperback.gif" bgcolor="#ffffff"
      text="#000000" link="#0000FF" alink="#FF0000" vlink="#006000">

  <font size="+4" color="#804040">
    <strong><em>MUD-Dev<br>mailing list archive</em></strong>
  </font>
      
<br>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
<br clear=all><hr>
<!--X-Body-Begin-->
<!--X-User-Header-->
<!--X-User-Header-End-->
<!--X-TopPNI-->

Date:&nbsp;
[&nbsp;<a href="msg00573.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00575.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Thread:&nbsp;
[&nbsp;<a href="msg00564.html">Previous</a>
&nbsp;|&nbsp;<a href="msg00575.html">Next</a>
&nbsp;]
&nbsp;&nbsp;&nbsp;&nbsp;
Index:&nbsp;
[&nbsp;<A HREF="author.html#00574">Author</A>
&nbsp;|&nbsp;<A HREF="#00574">Date</A>
&nbsp;|&nbsp;<A HREF="thread.html#00574">Thread</A>
&nbsp;]

<!--X-TopPNI-End-->
<!--X-MsgBody-->
<!--X-Subject-Header-Begin-->
<H1>Dynamic Loading of Modules (was: Back on the list)</H1>
<HR>
<!--X-Subject-Header-End-->
<!--X-Head-of-Message-->
<UL>
<LI><em>To</em>: <A HREF="mailto:mud-dev#null,net">mud-dev#null,net</A></LI>
<LI><em>Subject</em>: Dynamic Loading of Modules (was: Back on the list)</LI>
<LI><em>From</em>: Niklas Elmqvist &lt;<A HREF="mailto:d97elm#dtek,chalmers.se">d97elm#dtek,chalmers.se</A>&gt;</LI>
<LI><em>Date</em>: Tue, 24 Feb 1998 09:18:59 +0100 (MET)</LI>
<LI><em>Reply-To</em>: Niklas Elmqvist &lt;<A HREF="mailto:d97elm#dtek,chalmers.se">d97elm#dtek,chalmers.se</A>&gt;</LI>
</UL>
<!--X-Head-of-Message-End-->
<!--X-Head-Body-Sep-Begin-->
<HR>
<!--X-Head-Body-Sep-End-->
<!--X-Body-of-Message-->
<PRE>

On Mon, 23 Feb 1998 coder#ibm,net wrote:
&gt; On 20/02/98 at 12:43 AM, Niklas Elmqvist &lt;d97elm#dtek,chalmers.se&gt; said:
&gt; &gt;Nothing sensational,
&gt; &gt;it's all been done before, but I could outline my little scheme here if
&gt; &gt;there is interest.
&gt; 
&gt; Please do.

Okay, here goes...

As I said earlier, I am aiming to decouple the actual core server from
the world processing routines. Ideally, the main server would not even
*know* it is running a MUD, it would be sort of a general-purpose core,
and all the functionality such as DB management, socket I/O and AI would
be implemented in free-standing modules separate from the main executable
(at least, I envisioned this in the beginning). I mentioned this to a RL
friend of mine, and he pointed out that it all sounded very much like
conventional OS architecture, especially like the module system of Linux
kernels. I studied these a bit and learned some good stuff about dynamic
loading (or linking), and then started experimenting with using DL
together with C++. The results can be found at  
&lt;URL:<A  HREF="http://artoo.hemmet.s-hem.chalmers.se/~crozius/resources.html">http://artoo.hemmet.s-hem.chalmers.se/~crozius/resources.html</A>&gt;, but I
will outline it briefly here as well.

In essence, what I discovered (to myself, that is, this is no doubt old
news to some people) was that I could compile the core server with a base
class with very little functionality, call it aClass, which called a
factory function in a shared library, returning a pointer to an aClass
object. Then, in the actual shared library (which is linked in with the
main binary at run-time) I instead return an instance of a class
called bClass, which inherits from aClass but which is totally unknown to
the core server. Best of all, it works! That is, when I call the Execute()
member function on the aClass handle in the core (which, unbeknowst to the
core, points to a bClass object with redefined Execute() function), the
correct Execute() function is called, that is bClass::Execute().

Now, if aClass and bClass had been part of the same binary, I would not
have been surprised. In fact, as you probably all know, this is called
late binding in the O-O community and is an important feature of all
serious O-O languages. However, what surprised and delighted me is that
late binding *still* works even though the core and shared lib described
above are separately compiled, and the bClass is totally unknown to the
core! In my eyes, this is the ultimate test of late binding, and G++
pulled it off nicely! Incidentally, a friend (the one mentioned above)
later reported that this is impossible in Windows-style DLLs.

If you are wondering what the fuss is all about (or why this posting is
getting so long), let me just say this: One application of this could be
an Event class (in an event-driven system), whose base class is known to
the core server (allowing for it to check the priority and expiration of
the event, among other things), while the modules can inherit from the
base class and redefine it to suit their particular needs. I also plan on
using this technique for Handler objects which take care of things such as
socket I/O, parsing, DB managment, etc, and the good thing about it is
that I thus will be able to attach and detach the modules at run-time (to
remedy a bug, for example). If the base classes are correctly implemented,
the core will never even have to be recompiled and thus never rebooted
(not accounting for fatal bugs, that is &lt;g&gt;)!

Whew. Sorry if I babbled on a mite too much, but I hope this will be of
some use to someone. If you need more information, I will be glad to
provide it.

-- Niklas Elmqvist (d97elm#dtek,chalmers.se) ----------------------
"You can't trample infidels when you're a tortoise. I mean, all you 
 could do is give them a meaningful look."	 
	- Terry Pratchett, Small Gods



</PRE>

<!--X-Body-of-Message-End-->
<!--X-MsgBody-End-->
<!--X-Follow-Ups-->
<HR>
<ul compact><li><strong>Follow-Ups</strong>:
<ul>
<li><strong><A NAME="00800" HREF="msg00800.html">Re: [MUD-Dev]  Dynamic Loading of Modules (was: Back on the list</A></strong>
<ul compact><li><em>From:</em> "Jon A. Lambert" &lt;jlsysinc#ix,netcom.com&gt;</li></ul>
<li><strong><A NAME="00764" HREF="msg00764.html">Re: [MUD-Dev] Dynamic Loading of Modules (was: Back on the list)</A></strong>
<ul compact><li><em>From:</em> J C Lawrence &lt;claw#under,engr.sgi.com&gt;</li></ul>
<li><strong><A NAME="00575" HREF="msg00575.html">Re: [MUD-Dev]  Dynamic Loading of Modules (was: Back on the list)</A></strong>
<ul compact><li><em>From:</em> Vadim Tkachenko &lt;vadimt#4cs,com&gt;</li></ul>
</UL></LI></UL>
<!--X-Follow-Ups-End-->
<!--X-References-->
<UL><LI><STRONG>References</STRONG>:
<UL>
<LI><STRONG><A NAME="00564" HREF="msg00564.html">Re: [MUD-Dev]  Back on the list</A></STRONG>
<UL><LI><EM>From:</EM> coder#ibm,net</LI></UL></LI>
</UL></LI></UL>
<!--X-References-End-->
<!--X-BotPNI-->
<UL>
<LI>Prev by Date:
<STRONG><A HREF="msg00573.html">Re: [MUD-Dev] The MLI Project</A></STRONG>
</LI>
<LI>Next by Date:
<STRONG><A HREF="msg00575.html">Re: [MUD-Dev]  Dynamic Loading of Modules (was: Back on the list)</A></STRONG>
</LI>
<LI>Prev by thread:
<STRONG><A HREF="msg00564.html">Re: [MUD-Dev]  Back on the list</A></STRONG>
</LI>
<LI>Next by thread:
<STRONG><A HREF="msg00575.html">Re: [MUD-Dev]  Dynamic Loading of Modules (was: Back on the list)</A></STRONG>
</LI>
<LI>Index(es):
<UL>
<LI><A HREF="index.html#00574"><STRONG>Date</STRONG></A></LI>
<LI><A HREF="thread.html#00574"><STRONG>Thread</STRONG></A></LI>
</UL>
</LI>
</UL>

<!--X-BotPNI-End-->
<!--X-User-Footer-->
<!--X-User-Footer-End-->
<ul><li>Thread context:
<BLOCKQUOTE><UL>
<LI><strong><A NAME="00548" HREF="msg00548.html">Re: [MUD-Dev] byte-code anyone?</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Sat 21 Feb 1998, 07:01 GMT
<LI><strong><A NAME="00540" HREF="msg00540.html">Re: [MUD-Dev]	Back on the list</A></strong>, 
Chris Gray <a href="mailto:cg#ami-cg,GraySage.Edmonton.AB.CA">cg#ami-cg,GraySage.Edmonton.AB.CA</a>, Fri 20 Feb 1998, 16:16 GMT
<LI><strong><A NAME="00533" HREF="msg00533.html">Back on the list</A></strong>, 
Niklas Elmqvist <a href="mailto:d97elm#dtek,chalmers.se">d97elm#dtek,chalmers.se</a>, Fri 20 Feb 1998, 08:38 GMT
<UL>
<LI><strong><A NAME="00564" HREF="msg00564.html">Re: [MUD-Dev]  Back on the list</A></strong>, 
coder <a href="mailto:coder#ibm,net">coder#ibm,net</a>, Mon 23 Feb 1998, 19:13 GMT
<UL>
<LI><strong><A NAME="00574" HREF="msg00574.html">Dynamic Loading of Modules (was: Back on the list)</A></strong>, 
Niklas Elmqvist <a href="mailto:d97elm#dtek,chalmers.se">d97elm#dtek,chalmers.se</a>, Tue 24 Feb 1998, 08:19 GMT
<UL>
<LI><strong><A NAME="00575" HREF="msg00575.html">Re: [MUD-Dev]  Dynamic Loading of Modules (was: Back on the list)</A></strong>, 
Vadim Tkachenko <a href="mailto:vadimt#4cs,com">vadimt#4cs,com</a>, Tue 24 Feb 1998, 08:42 GMT
</LI>
<LI><strong><A NAME="00764" HREF="msg00764.html">Re: [MUD-Dev] Dynamic Loading of Modules (was: Back on the list)</A></strong>, 
J C Lawrence <a href="mailto:claw#under,engr.sgi.com">claw#under,engr.sgi.com</a>, Thu 19 Mar 1998, 19:42 GMT
<UL>
<LI><strong><A NAME="00787" HREF="msg00787.html">Dynamic Loading of Modules</A></strong>, 
Niklas Elmqvist <a href="mailto:d97elm#dtek,chalmers.se">d97elm#dtek,chalmers.se</a>, Fri 20 Mar 1998, 11:39 GMT
<UL>
<LI><strong><A NAME="00797" HREF="msg00797.html">Re: [MUD-Dev] Dynamic Loading of Modules</A></strong>, 
Greg Munt <a href="mailto:greg#uni-corn,demon.co.uk">greg#uni-corn,demon.co.uk</a>, Fri 20 Mar 1998, 21:53 GMT
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL>
</LI>
</UL></BLOCKQUOTE>

</ul>
<hr>
<center>
[&nbsp;<a href="../">Other Periods</a>
&nbsp;|&nbsp;<a href="../../">Other mailing lists</a>
&nbsp;|&nbsp;<a href="/search.php3">Search</a>
&nbsp;]
</center>
<hr>
</body>
</html>