<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<div class="moz-text-flowed"
 style="font-family: -moz-fixed; font-size: 13px;" lang="x-western">I
have spent the weekend restructuring some of the SwordReader code.
<br>
<br>
I removed the UString stuff and implemented a more elegant replacement
called WCString. WCString can convert (typically implicitly) from const
char*, const wchar_t *, and std::string. This will make string
manipulations between the sword api and the wince api much easier to
deal with as well as read.
<br>
<br>
I ran "Code Snitch" (a memory and resource leak detection software)
against the current source code and eliminated all known memory and
resource leaks in the gui. I did spot a couple of minor memory leaks in
the sword api. I cannot verify for sure that they are in fact memory
leaks but I can say thus far when code snitch detects a memory leak it
has yet to be wrong, even when I was sure it was wrong. I will try to
take a stab at fixing these later this week but if anyone recognizes
these and has an "oh yeah, I forgot about that..." moment feel free to
take these on. Of course these might be memory leaks in the context of
my gui source code, but I will point them out anyway.
<br>
<br>
<tt>&lt;utilstr.cpp&gt;
<br>
char *stdstr(char **ipstr, const char *istr, unsigned int memPadFactor)
{
<br>
&nbsp;&nbsp; if (istr) {
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (*ipstr)
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delete [] *ipstr;
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int len = strlen(istr) + 1;
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // the following line has been tagged as a memory leak
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; *ipstr = new char [ len * memPadFactor ];
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; memcpy(*ipstr, istr, len);
<br>
&nbsp;&nbsp; }
<br>
&nbsp;&nbsp; return *ipstr;
<br>
}
<br>
&lt;/utilstr.cpp&gt;
<br>
<br>
&lt;versekey.cpp&gt;
<br>
SWKey *VerseKey::clone() const
<br>
{
<br>
&nbsp;&nbsp; // the following line has been tagged as a memory leak
<br>
&nbsp;&nbsp; // probably someone forgot clone creates a new object
<br>
&nbsp;&nbsp; // on the heap
<br>
&nbsp;&nbsp; return new VerseKey(*this);
<br>
}
<br>
&lt;/versekey.cpp&gt;
</tt><br>
<br>
After spending the time I have in the SwordReader internals, I am
making plans to restructure more of the source code to make it a bit
more intuitive and approachable. Once this is done I will introduce my
new html renderer.
<br>
<br>
Thanks everyone for your prayers and encouragement. They have paid off.
<br>
In Christ,
<br>
David Trotz
<br>
<br>
<br>
</div>
</body>
</html>