gecko-dev/xpcom/doc/xpcom-standalone.html

180 строки
4.6 KiB
HTML
Исходник Обычный вид История

2000-05-14 22:22:11 +04:00
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta name="Author" content="Suresh Duddi">
<meta name="GENERATOR" content="Mozilla/4.71 [en] (X11; U; Linux 2.2.12-20 i686) [Netscape]">
</head>
<body>
<center>
<h2>
Standalone XPCOM v 0.5</h2></center>
<center>Version 0.5
<br>15 May 2000
<br>Suresh Duddi &lt;dp@netscape.com>
<hr WIDTH="100%"></center>
<h3>
1.0&nbsp; Requirements</h3>
Standalone XPCOM is a tree configuration, that when built, provides a minimal
set of libraries (shared mostly) that can be used to get all features of
XPCOM. The contents of this standalone XPCOM in general are:
<ul>
<li>
2000-05-15 11:21:12 +04:00
NSPR : mozilla/nsprpub</li>
2000-05-14 22:22:11 +04:00
<li>
2000-05-15 11:21:12 +04:00
Registry : mozilla/modules/libreg</li>
2000-05-14 22:22:11 +04:00
<li>
2000-05-15 11:21:12 +04:00
XPCOM : mozilla/xpcom</li>
2000-05-14 22:22:11 +04:00
</ul>
<h3>
2.0&nbsp; Building Standalone XPCOM</h3>
Here are the instructions for building the Standalone XPCOM on unix:
2000-05-15 11:21:12 +04:00
<br>&nbsp;
<ol><b>Step 1 : Pull the sources</b>
<li>
<tt>cvs -z 3 co -P -r NSPRPUB_CLIENT_BRANCH mozilla/nsprpub</tt></li>
2000-05-14 22:22:11 +04:00
<li>
2000-05-15 11:21:12 +04:00
<tt>cvs -z 3 co -P mozilla/modules/libreg</tt></li>
2000-05-14 22:22:11 +04:00
<li>
2000-05-15 11:21:12 +04:00
<tt>cvs -z 3 co -P mozilla/xpcom</tt></li>
<li>
<tt>cvs -z 3 co -P mozilla/allmakefiles.sh mozilla/client.mk mozilla/aclocal.m4
mozilla/configure mozilla/configure.in mozilla/Makefile.in mozilla/config
mozilla/build</tt></li>
2000-05-14 22:22:11 +04:00
</ol>
<ol>&nbsp;
2000-05-15 11:21:12 +04:00
<br><b>Step 2 : Building XPCOM Standalone (unix)</b>
2000-05-14 22:22:11 +04:00
<li>
<tt>cd mozilla; configure --enable-xpcom-standalone</tt></li>
2000-05-15 11:21:12 +04:00
<li>
<tt>cd config; gmake; cd ..</tt></li>
2000-05-14 22:22:11 +04:00
<li>
<tt>cd nsprpub; gmake; cd ..</tt></li>
<li>
<tt>cd modules/libreg; gmake; cd ../..</tt></li>
<li>
<tt>cd xpcom; gmake; cd ..</tt></li>
</ol>
<h3>
3.0&nbsp; Testing Standalone XPCOM</h3>
<tt>xpcom/sample</tt> contains a sample application and a component. This
should get built by default.
<ul>
<li>
<tt>nsTestSample</tt> is the sample application. This should have been
installed in your <tt>bin/</tt> directory.</li>
<li>
<tt>libsample.so (unix) </tt>is the sample component implementation that
the sample application will try to instantiate. This should have been installed
in your <tt>bin/components</tt> directory</li>
</ul>
To run the test,
<ol>
<li>
cd to your <tt>bin/</tt> directory</li>
<li>
setenv LD_LIBRARY_PATH .</li>
<li>
2000-05-15 11:21:12 +04:00
<tt>./nsTestSample</tt></li>
2000-05-14 22:22:11 +04:00
2000-05-15 11:21:12 +04:00
<br><tt>Warning: MOZILLA_FIVE_HOME not set.</tt>
2000-05-14 22:22:11 +04:00
<br><tt>nsNativeComponentLoader: autoregistering begins.</tt>
<br><tt>nsNativeComponentLoader: autoregistering succeeded</tt>
2000-05-15 11:21:12 +04:00
<br><tt>Inital print: initial value</tt>
<br><tt>Set value to: XPCOM defies gravity</tt>
<br><tt>Final print : XPCOM defies gravity</tt>
2000-05-14 22:22:11 +04:00
<br><b><tt>Test passed.</tt></b></ol>
<h3>
2000-05-15 11:21:12 +04:00
4.0&nbsp; Test FAILED: What went wrong ?</h3>
2000-05-14 22:22:11 +04:00
The most common case of why the sample would have failed if you didn't
2000-05-15 11:21:12 +04:00
run it from the bin directory. Here are some error messsages and possible
2000-05-14 22:22:11 +04:00
ways of fixing them.
<ol>
<li>
<b><tt>./nsTestSample: error in loading shared libraries: libxpcom.so:
cannot open shared object file: No such file or directory</tt></b></li>
2000-05-15 11:21:12 +04:00
<ol>LD_LIBRARY_PATH not set. To fix "<tt>setenv LD_LIBRARY_PATH ."</tt></ol>
2000-05-14 22:22:11 +04:00
<li>
<b>Link errors when building xpcom standalone</b></li>
<ol>This is mostly due to the fact that probably xpcom is not being built
standalone. Make sure you did "<tt>configure --enable-xpcom-standalone"</tt></ol>
</ol>
<h3>
5.0&nbsp; Whats the difference between Standalone and non-Standalone XPCOM</h3>
Here is what we had to do to get a working standalone XPCOM
<ol>
<li>
Disabled all forms of unicode conversion. nsString, nsCRT were using this
2000-05-15 11:21:12 +04:00
in various forms. Only ASCII is expected to work. Other charsets including
2000-05-14 22:22:11 +04:00
unicode are not guaranteed to work.</li>
<li>
2000-05-15 11:21:12 +04:00
Disabled nsUnicharInputStream. This causes nsPersistentProperties to always
fail.</li>
2000-05-14 22:22:11 +04:00
<li>
Disabled control of XPT from preferences.</li>
<li>
2000-05-15 11:21:12 +04:00
Disabled use of ZIP format of XPT files.</li>
2000-05-14 22:22:11 +04:00
</ol>
<h3>
2000-05-15 11:21:12 +04:00
6.0&nbsp; TODO for v 1.0</h3>
2000-05-14 22:22:11 +04:00
<ol>
<li>
2000-05-15 11:21:12 +04:00
Enable XPCOM to work with unicode. Unicode, ASCII and ISO8859-1 will be
the charset that will be self supported by XPCOM.</li>
2000-05-14 22:22:11 +04:00
<li>
Optional exclusion of specific features into standalone XPCOM like unicode
support, registry, xpconnect. Tweeking these options will cause reduction
in memory requirements and size.</li>
<li>
Get <tt>xpcom/tests</tt> directory upto date and documented.</li>
<li>
2000-05-15 11:21:12 +04:00
Make standalone XPCOM the only deliverable from xpcom. No more <tt>#ifndef
2000-05-14 22:22:11 +04:00
XPCOM_STANDALONE</tt></li>
<li>
Update this document for both Windows and Mac.</li>
<li>
2000-05-15 11:21:12 +04:00
API freeze and documentation</li>
2000-05-14 22:22:11 +04:00
</ol>
<h3>
7.0&nbsp; Future (post v 1.0)</h3>
2000-05-15 11:21:12 +04:00
mmh! let me think...
2000-05-14 22:22:11 +04:00
<p>
<hr WIDTH="100%">
<br>Suresh Duddi &lt;dp@netscape.com>
</body>
</html>