blob: fa09c40fbcdbad247d4019674579484f0467e1e7 [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
Benny Prijonoa771a512007-02-19 01:13:53 +00003 * Copyright (C)2003-2007 Benny Prijono <benny@prijono.org>
Benny Prijono9033e312005-11-21 02:08:39 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19#ifndef __PJ_DOXYGEN_H__
20#define __PJ_DOXYGEN_H__
21
22/**
23 * @file doxygen.h
24 * @brief Doxygen's mainpage.
25 */
26
27/*////////////////////////////////////////////////////////////////////////// */
28/*
29 INTRODUCTION PAGE
30 */
31
32/**
33 * @mainpage Welcome to PJLIB!
34 *
35 * @section intro_sec What is PJLIB
36 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +000037 * PJLIB is an Open Source, small footprint framework library written in C for
38 * making scalable applications. Because of its small footprint, it can be used
39 * in embedded applications (we hope so!), but yet the library is also aimed for
40 * facilitating the creation of high performance protocol stacks.
Benny Prijono9033e312005-11-21 02:08:39 +000041 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +000042 * PJLIB is released under GPL terms.
Benny Prijono9033e312005-11-21 02:08:39 +000043 *
44 * @section download_sec Download
45 *
46 * PJLIB and all documentation can be downloaded from
Benny Prijono97b87172006-08-24 14:25:14 +000047 * http://www.pjsip.org.
Benny Prijono9033e312005-11-21 02:08:39 +000048 *
49 *
50 * @section how_to_use_sec About This Documentation
51 *
52 * This document is generated directly from PJLIB source file using
53 * \a doxygen (http://www.doxygen.org). Doxygen is a great (and free!)
54 * tools for generating such documentation.
55 *
56 * @subsection doc_ver_subsec Version
57 *
Benny Prijonoe80cdf02007-01-25 01:38:03 +000058 * This document corresponds to PJLIB version 0.5.10.
Benny Prijono9033e312005-11-21 02:08:39 +000059 *
60 *
61 * @subsection find_samples_subsec How to Read This Document
62 *
63 * This documentation is laid out more to be a reference guide instead
64 * of tutorial, therefore first time users may find it difficult to
65 * grasp PJLIB by reading this document alone.
66 *
67 * However, we've tried our best to make this document easy to follow.
68 * For first time users, we would suggest that you follow these steps
69 * when reading this documentation:
70 *
71 * - continue reading this introduction chapter. At the end of this
72 * chapter, you'll find section called \ref pjlib_fundamentals_sec
73 * which should guide you to understand basic things about PJLIB.
74 *
75 * - find information about specific features that you want to use
76 * in PJLIB. Use the <b>Module Index</b> to find out about all
77 * features in PJLIB (if you're browsing the HTML documentation,
78 * click on the \a Module link on top of the page, or if you're
79 * reading the PDF documentation, click on \a Module \a Documentation
80 * on the navigation pane on the left).
81 *
82 * @subsection doc_organize_sec How To's
83 *
84 * Please find below links to specific tasks that you probably
85 * want to do:
86 *
87 * - <b>How to Build PJLIB</b>
88 *\n
89 * Please refer to \ref pjlib_build_sys_pg page for more information.
90 *
91 * - <b>How to Use PJLIB in My Application</b>
92 *\n
93 * Please refer to \ref configure_app_sec for more information.
94 *
95 * - <b>How to Port PJLIB</b>
96 *\n
97 * Please refer to \ref porting_pjlib_pg page.
98 *
99 * - <b>Where to Read Samples Documentation</b>
100 *\n
101 * Most of the modules provide link to the corresponding sample file.
102 * Alternatively, to get the list of all examples, you can click on
103 * <b>Related Pages</b> on the top of HTML document or on
104 * <b>PJLIB Page Documentation</b> on navigation pane of your PDF reader.
105 *
106 * - <b>How to Submit Code to PJLIB Project</b>
107 *\n
108 * Please read \ref pjlib_coding_convention_page before submitting
109 * your code. Send your code as patch against current Subversion tree
110 * to the appropriate mailing list.
111 *
112 *
113 * @section features_sec Features
114 *
115 * @subsection open_source_feat It's Open Source!
116 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000117 * PJLIB is currently released on GPL license, but other arrangements
118 * can be made with the author.
Benny Prijono9033e312005-11-21 02:08:39 +0000119 *
120 * @subsection extreme_portable_feat Extreme Portability
121 *
122 * PJLIB is designed to be extremely portable. It can run on any kind
123 * of processors (16-bit, 32-bit, or 64-bit, big or little endian, single
124 * or multi-processors) and operating systems. Floating point or no
125 * floating point. Multi-threading or not.
126 * It can even run in environment where no ANSI LIBC is available.
127 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000128 * Currently PJLIB is known to run on these platforms:
129 * - Win32/x86 (Win95/98/ME, NT/2000/XP/2003, mingw).
130 * - arm, WinCE and Windows Mobile.
131 * - Linux/x86, (user mode and as <b>kernel module</b>(!)).
132 * - Linux/alpha
133 * - Solaris/ultra.
134 * - MacOS X/powerpc
135 * - RTEMS (x86 and powerpc).
Benny Prijono9033e312005-11-21 02:08:39 +0000136 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000137 * And efforts is under way to port PJLIB on:
138 * - Symbian OS
139 *
Benny Prijono9033e312005-11-21 02:08:39 +0000140 *
141 * @subsection small_size_feat Small in Size
142 *
143 * One of the primary objectives is to have library that is small in size for
144 * typical embedded applications. As a rough guidance, we aim to keep the
145 * library size below 100KB for it to be considered as small.
146 * As the result, most of the functionalities in the library can be tailored
147 * to meet the requirements; user can enable/disable specific functionalities
148 * to get the desired size/performance/functionality balance.
149 *
150 * For more info, please see @ref pj_config.
151 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000152 *
153 * @subsection big_perform_feat Big in Performance
154 *
155 * Almost everything in PJLIB is designed to achieve the highest possible
156 * performance out of the target platform.
157 *
158 *
Benny Prijono9033e312005-11-21 02:08:39 +0000159 * @subsection no_dyn_mem No Dynamic Memory Allocations
160 *
161 * The central idea of PJLIB is that for applications to run as fast as it can,
162 * it should not use \a malloc() at all, but instead should get the memory
163 * from a preallocated storage pool. There are few things that can be
164 * optimized with this approach:
165 *
166 * - \a alloc() is a O(1) operation.
167 * - no mutex is used inside alloc(). It is assumed that synchronization
168 * will be used in higher abstraction by application anyway.
169 * - no \a free() is required. All chunks will be deleted when the pool is
170 * destroyed.
171 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000172 * The performance gained on some systems can be as high as 30x speed up
173 * against \a malloc() and \a free() on certain configurations, but of
174 * course your mileage may vary.
Benny Prijono9033e312005-11-21 02:08:39 +0000175 *
176 * For more information, see \ref PJ_POOL_GROUP
177 *
178 *
179 * @subsection os_abstract_feat Operating System Abstraction
180 *
181 * PJLIB has abstractions for features that are normally not portable
182 * across operating systems:
183 * - @ref PJ_THREAD
184 *\n
185 * Portable thread manipulation.
186 * - @ref PJ_TLS
187 *\n
188 * Storing data in thread's private data.
189 * - @ref PJ_MUTEX
190 *\n
191 * Mutual exclusion protection.
192 * - @ref PJ_SEM
193 *\n
194 * Semaphores.
195 * - @ref PJ_ATOMIC
196 *\n
197 * Atomic variables and their operations.
198 * - @ref PJ_CRIT_SEC
199 *\n
200 * Fast locking of critical sections.
201 * - @ref PJ_LOCK
202 *\n
203 * High level abstraction for lock objects.
204 * - @ref PJ_EVENT
205 *\n
206 * Event object.
207 * - @ref PJ_TIME
208 *\n
209 * Portable time manipulation.
210 * - @ref PJ_TIMESTAMP
211 *\n
212 * High resolution time value.
213 * - etc.
214 *
215 *
216 * @subsection ll_network_io_sec Low-Level Network I/O
217 *
218 * PJLIB has very portable abstraction and fairly complete set of API for
219 * doing network I/O communications. At the lowest level, PJLIB provides:
220 *
221 * - @ref PJ_SOCK
222 *\n
223 * A highly portable socket abstraction, runs on all kind of
224 * network APIs such as standard BSD socket, Windows socket, Linux
225 * \b kernel socket, PalmOS networking API, etc.
226 *
227 * - @ref pj_addr_resolve
228 *\n
229 * Portable address resolution, which implements #pj_gethostbyname().
230 *
231 * - @ref PJ_SOCK_SELECT
232 *\n
233 * A portable \a select() like API (#pj_sock_select()) which can be
234 * implemented with various back-end.
235 *
236 *
Benny Prijono9033e312005-11-21 02:08:39 +0000237 *
238 * @subsection timer_mgmt_sec Timer Management
239 *
240 * A passive framework for managing timer, see @ref PJ_TIMER for more info.
241 * There is also function to retrieve high resolution timestamp
242 * from the system (see @ref PJ_TIMESTAMP).
243 *
244 *
245 * @subsection data_struct_sec Various Data Structures
246 *
247 * Various data structures are provided in the library:
248 *
249 * - @ref PJ_PSTR
250 * - @ref PJ_ARRAY
251 * - @ref PJ_HASH
252 * - @ref PJ_LIST
253 * - @ref PJ_RBTREE
254 *
255 *
256 * @subsection exception_sec Exception Construct
257 *
258 * A convenient TRY/CATCH like construct to propagate errors, which by
259 * default are used by the @ref PJ_POOL_GROUP "memory pool" and
260 * the lexical scanner in pjlib-util. The exception
261 * construct can be used to write programs like below:
262 *
263 * <pre>
264 * #define SYNTAX_ERROR 1
265 *
266 * PJ_TRY {
267 * msg = NULL;
268 * msg = parse_msg(buf, len);
269 * }
270 * PJ_CATCH ( SYNTAX_ERROR ) {
271 * .. handle error ..
272 * }
273 * PJ_END;
274 * </pre>
275 *
276 * Please see @ref PJ_EXCEPT for more information.
277 *
278 *
279 * @subsection logging_sec Logging Facility
280 *
281 * PJLIB @ref PJ_LOG consists of macros to write logging information to
282 * some output device. Some of the features of the logging facility:
283 *
284 * - the verbosity can be fine-tuned both at compile time (to control
285 * the library size) or run-time (to control the verbosity of the
286 * information).
287 * - output device is configurable (e.g. stdout, printk, file, etc.)
288 * - log decoration is configurable.
289 *
290 * See @ref PJ_LOG for more information.
291 *
292 *
293 * @subsection guid_gen_sec Random and GUID Generation
294 *
295 * PJLIB provides facility to create random string
296 * (#pj_create_random_string()) or globally unique identifier
297 * (see @ref PJ_GUID).
298 *
299 *
300 *
301 * @section configure_app_sec Configuring Application to use PJLIB
302 *
303 * @subsection pjlib_compil_sec Building PJLIB
304 *
305 * Follow the instructions in \ref pjlib_build_sys_pg to build
306 * PJLIB.
307 *
308 * @subsection pjlib_compil_app_sec Building Applications with PJLIB
309 *
310 * Use the following settings when building applications with PJLIB.
311 *
312 * @subsubsection compil_inc_dir_sec Include Search Path
313 *
314 * Add this to your include search path ($PJLIB is PJLIB root directory):
315 * <pre>
316 * $PJLIB/include
317 * </pre>
318 *
319 * @subsubsection compil_inc_file_sec Include PJLIB Header
320 *
321 * To include all PJLIB headers:
322 * \verbatim
323 #include <pjlib.h>
324 \endverbatim
325 *
326 * Alternatively, you can include individual PJLIB headers like this:
327 * \verbatim
328 #include <pj/log.h>
329 #include <pj/os.h>
330 \endverbatim
331 *
332 *
333 * @subsubsection compil_lib_dir_sec Library Path
334 *
335 * Add this to your library search path:
336 * <pre>
337 * $PJLIB/lib
338 * </pre>
339 *
340 * Then add the appropriate PJLIB library to your link specification. For
341 * example, you would add \c libpj-i386-linux-gcc.a when you're building
342 * applications in Linux.
343 *
344 *
345 * @subsection pjlib_fundamentals_sec Principles in Using PJLIB
346 *
347 * Few things that you \b MUST do when using PJLIB, to make sure that
348 * you create trully portable applications.
349 *
350 * @subsubsection call_pjlib_init_sec Call pj_init()
351 *
352 * Before you do anything else, call \c pj_init(). This would make sure that
353 * PJLIB system is properly set up.
354 *
355 * @subsubsection no_ansi_subsec Do NOT Use ANSI C
356 *
357 * Contrary to popular teaching, ANSI C (and LIBC) is not the most portable
358 * library in the world, nor it's the most ubiquitous. For example, LIBC
359 * is not available in Linux kernel. Also normally LIBC will be excluded
360 * from compilation of RTOSes to reduce size.
361 *
362 * So for maximum portability, do NOT use ANSI C. Do not even try to include
363 * any other header files outside <include/pj>. Stick with the functionalities
364 * provided by PJLIB.
365 *
366 *
367 * @subsubsection string_rep_subsubsec Use pj_str_t instead of C Strings
368 *
369 * PJLIB uses pj_str_t instead of normal C strings. You SHOULD follow this
370 * convention too. Remember, ANSI string-h is not always available. And
371 * PJLIB string is faster!
372 *
373 * @subsubsection mem_alloc_subsubsec Use Pool for Memory Allocations
374 *
375 * You MUST NOT use \a malloc() or any other memory allocation functions.
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000376 * Use PJLIB @ref PJ_POOL_GROUP instead! It's faster and most portable.
Benny Prijono9033e312005-11-21 02:08:39 +0000377 *
378 * @subsection logging_subsubsec Use Logging for Text Display
379 *
Benny Prijonoc78c3a32006-06-16 15:54:43 +0000380 * DO NOT use <stdio.h> for text output. Use PJLIB @ref PJ_LOG instead.
Benny Prijono9033e312005-11-21 02:08:39 +0000381 *
382 *
383 * @section porting_pjlib_sec0 Porting PJLIB
384 *
385 * Please see \ref porting_pjlib_pg page on more information to port
386 * PJLIB to new target.
387 *
388 * @section enjoy_sec Enjoy Using PJLIB!
389 *
390 * We hope that you find PJLIB usefull for your application. If you
391 * have any questions, suggestions, critics, bug fixes, or anything
392 * else, we would be happy to hear it.
393 *
394 * Enjoy using PJLIB!
395 *
Benny Prijonoa3cbb1c2006-08-25 12:41:05 +0000396 * Benny Prijono < bennylp at pjsip dot org >
Benny Prijono9033e312005-11-21 02:08:39 +0000397 */
398
399
400
401/*////////////////////////////////////////////////////////////////////////// */
402/*
403 CODING CONVENTION
404 */
405
406/**
407 * @page pjlib_coding_convention_page Coding Convention
408 *
409 * Before you submit your code/patches to be included with PJLIB, you must
410 * make sure that your code is compliant with PJLIB coding convention.
411 * <b>This is very important!</b> Otherwise we would not accept your code.
412 *
413 * @section coding_conv_editor_sec Editor Settings
414 *
415 * The single most important thing in the whole coding convention is editor
416 * settings. It's more important than the correctness of your code (bugs will
417 * only crash the system, but incorrect tab size is mental!).
418 *
419 * Kindly set your editor as follows:
420 * - tab size to \b 8.
421 * - indentation to \b 4.
422 *
423 * With \c vi, you can do it with:
424 * <pre>
425 * :se ts=8
426 * :se sts=4
427 * </pre>
428 *
429 * You should replace tab with eight spaces.
430 *
431 * @section coding_conv_detail_sec Coding Style
432 *
433 * Coding style MUST strictly follow K&R style. The rest of coding style
434 * must follow current style. You SHOULD be able to observe the style
435 * currently used by PJLIB from PJLIB sources, and apply the style to your
436 * code. If you're not able to do simple thing like to observe PJLIB
437 * coding style from the sources, then logic dictates that your ability to
438 * observe more difficult area in PJLIB such as memory allocation strategy,
439 * concurrency, etc is questionable.
440 *
441 * @section coding_conv_comment_sec Commenting Your Code
442 *
443 * Public API (e.g. in header files) MUST have doxygen compliant comments.
444 *
445 */
446
447
448/*////////////////////////////////////////////////////////////////////////// */
449/*
450 BUILDING AND INSTALLING PJLIB
451 */
452
453
454
455/**
456 * @page pjlib_build_sys_pg Building, and Installing PJLIB
457 *
458 * @section build_sys_install_sec Build and Installation
459 *
Benny Prijono5ee1f2e2006-09-22 20:43:00 +0000460 * \note
461 * <b>The most up-to-date information on building and installing PJLIB
462 * should be found in the website, under "Getting Started" document.
463 * More over, the new PJLIB build system is now based on autoconf,
464 * so some of the information here might not be relevant anymore
465 * (although most still are, since the autoconf script still use
466 * the old Makefile system as the backend).</b>
467 *
Benny Prijono9033e312005-11-21 02:08:39 +0000468 * @subsection build_sys_install_win32_sec Visual Studio
469 *
470 * The PJLIB Visual Studio workspace supports the building of PJLIB
471 * for Win32 target. Although currently only the Visual Studio 6 Workspace is
472 * actively maintained, developers with later version of Visual Studio
473 * can easily imports VS6 workspace into their IDE.
474 *
475 * To start building PJLIB projects with Visual Studio 6 or later, open
476 * the \a workspace file in the corresponding \b \c build directory. You have
477 * several choices on which \a dsw file to open:
478 \verbatim
Benny Prijono294c2532006-06-16 16:52:51 +0000479 $PJPROJECT/pjlib/build/pjlib.dsw
480 $PJPROJECT/pjsip/build/pjsip.dsw
Benny Prijono9033e312005-11-21 02:08:39 +0000481 ..etc
482 \endverbatim
483 *
Benny Prijono294c2532006-06-16 16:52:51 +0000484 * The easiest way is to open <tt>pjsip_apps.dsw</tt> file in \b \c $PJPROJECT/pjsip-apps/build
485 * directory, and build pjsua project or the samples project.
486 * However this will not build the complete projects.
487 * For example, the PJLIB test is not included in this workspace.
488 * To build the complete projects, you must
Benny Prijono9033e312005-11-21 02:08:39 +0000489 * open and build each \a dsw file in \c build directory in each
490 * subprojects. For example, to open the complete PJLIB workspace, open
491 * <tt>pjlib.dsw</tt> in <tt>$PJPROJECT/pjlib/build</tt> directory.
492 *
493 *
494 * @subsubsection config_site_create_vc_sec Create config_site.h
495 *
496 * The file <tt><b>$PJPROJECT/pjlib/include/pj/config_site.h</b></tt>
497 * is supposed to contain configuration that is specific to your site/target.
498 * This file is not part of PJLIB, so you must create it yourself. Normally
499 * you just need to create a blank file.
500 *
501 * The reason why it's not included in PJLIB is so that you would not accidently
502 * overwrite your site configuration.
503 *
504 * If you fail to do this, Visual C will complain with error like:
505 *
506 * <b>"fatal error C1083: Cannot open include file: 'pj/config_site.h': No such file
507 * or directory"</b>.
508 *
509 * @subsubsection build_vc_subsubsec Build the Projects
510 *
511 * Just hit the build button!
512 *
513 *
514 * @subsection build_sys_install_unix_sec Make System
515 *
516 * For other targets, PJLIB provides a rather comprehensive build system
517 * that uses GNU \a make (and only GNU \a make will work).
518 * Currently, the build system supports building * PJLIB for these targets:
519 * - i386/Win32/mingw
520 * - i386/Linux
521 * - i386/Linux (kernel)
522 * - alpha/linux
523 * - sparc/SunOS
524 * - etc..
525 *
526 *
527 * @subsubsection build_req_sec Requirements
528 *
529 * In order to use the \c make based build system, you MUST have:
530 *
531 * - <b>GNU make</b>
532 *\n
533 * The Makefiles heavily utilize GNU make commands which most likely
534 * are not available in other \c make system.
535 * - <b>bash</b> shell is recommended.
536 *\n
537 * Specificly, there is a command <tt>"echo -n"</tt> which may not work
538 * in other shells. This command is used when generating dependencies
539 * (<tt>make dep</tt>) and it's located in
540 * <tt>$PJPROJECT/build/rules.mak</tt>.
541 * - <b>ar</b>, <b>ranlib</b> from GNU binutils
542 *\n
543 * In your system has different <tt>ar</tt> or <tt>ranlib</tt> (e.g. they
544 * may have been installed as <tt>gar</tt> and <tt>granlib</tt>), then
545 * either you create the relevant symbolic links, <b>or</b> modify
546 * <tt>$PJPROJECT/build/cc-gcc.mak</tt> and rename <tt>ar</tt> and
547 * <tt>ranlib</tt> to the appropriate names.
548 * - <b>gcc</b> to generate dependency.
549 *\n
550 * Currently the build system uses <tt>"gcc -MM"</tt> to generate build
551 * dependencies. If <tt>gcc</tt> is not desired to generate dependency,
552 * then either you don't run <tt>make dep</tt>, <b>or</b> edit
553 * <tt>$PJPROJECT/build/rules.mak</tt> to calculate dependency using
554 * your prefered method. (And let me know when you do so so that I can
555 * update the file. :) )
556 *
557 * @subsubsection build_overview_sec Building the Project
558 *
559 * Generally, steps required to build the PJLIB are:
560 *
561 \verbatim
Benny Prijono294c2532006-06-16 16:52:51 +0000562 $ cd /home/user/pjproject
563 $ ./configure
Benny Prijono9033e312005-11-21 02:08:39 +0000564 $ touch pjlib/include/pj/config_site.h
Benny Prijono294c2532006-06-16 16:52:51 +0000565 $ make dep
566 $ make
Benny Prijono9033e312005-11-21 02:08:39 +0000567 \endverbatim
568 *
Benny Prijono294c2532006-06-16 16:52:51 +0000569 * The above process will build all static libraries and all applications.
570 *
571 * \note the <tt>configure</tt> script is not a proper autoconf script,
572 * but rather a simple shell script to detect current host. This script
573 * currently does not support cross-compilation.
Benny Prijono9033e312005-11-21 02:08:39 +0000574 *
575 * \note For Linux kernel target, there are additional steps required, which
576 * will be explained in section \ref linux_kern_target_subsec.
577 *
Benny Prijono294c2532006-06-16 16:52:51 +0000578 * @subsubsection build_mak_sec Cross Compilation
Benny Prijono9033e312005-11-21 02:08:39 +0000579 *
Benny Prijono294c2532006-06-16 16:52:51 +0000580 * For cross compilation, you will need to edit the \c build.mak file in
581 * \c $PJPROJECT root directory manually. Please see <b>README-configure</b> file
582 * in the root directory for more information.
Benny Prijono9033e312005-11-21 02:08:39 +0000583 *
584 * For Linux kernel target, you are also required to declare the following
585 * variables in this file:
586 * - \c KERNEL_DIR: full path of kernel source tree.
587 * - \c KERNEL_ARCH: kernel ARCH options (e.g. "ARCH=um"), or leave blank
588 * for default.
589 * - \c PJPROJECT_DIR: full path of PJPROJECT source tree.
590 *
591 * Apart from these, there are also additional steps required to build
592 * Linux kernel target, which will be explained in \ref linux_kern_target_subsec.
593 *
594 * @subsubsection build_dir_sec Files in "build" Directory
595 *
596 * The <tt>*.mak</tt> files in \c $PJPROJECT/build directory are used to specify
597 * the configuration for the specified compiler, target machine target
598 * operating system, and host options. These files will be executed
599 * (included) by \a make during building process, depending on the values
600 * specified in <b>$PJPROJECT/build.mak</b> file.
601 *
602 * Normally you don't need to edit these files, except when you're porting
603 * PJLIB to new target.
604 *
605 * Below are the description of some files in this directory:
606 *
607 * - <tt>rules.mak</tt>: contains generic rules always included during make.
608 * - <tt>cc-gcc.mak</tt>: rules when gcc is used for compiler.
609 * - <tt>cc-vc.mak</tt>: rules when MSVC compiler is used.
610 * - <tt>host-mingw.mak</tt>: rules for building in mingw host.
611 * - <tt>host-unix.mak</tt>: rules for building in Unix/Posix host.
612 * - <tt>host-win32.mak</tt>: rules for building in Win32 command console
613 * (only valid when VC is used).
614 * - <tt>m-i386.mak</tt>: rules when target machine is an i386 processor.
615 * - <tt>m-m68k.mak</tt>: rules when target machine is an m68k processor.
616 * - <tt>os-linux.mak</tt>: rules when target OS is Linux.
617 * - <tt>os-linux-kernel.mak</tt>: rules when PJLIB is to be build as
618 * part of Linux kernel.
619 * - <tt>os-win32.mak</tt>: rules when target OS is Win32.
620 *
621 *
622 * @subsubsection config_site_create_sec Create config_site.h
623 *
624 * The file <tt><b>$PJPROJECT/pjlib/include/pj/config_site.h</b></tt>
625 * is supposed to contain configuration that is specific to your site/target.
626 * This file is not part of PJLIB, so you must create it yourself.
627 *
628 * The reason why it's not included in PJLIB is so that you would not accidently
629 * overwrite your site configuration.
630 *
631 *
632 * @subsubsection invoking_make_sec Invoking make
633 *
634 * Normally, \a make is invoked in \c build directory under each project.
635 * For example, to build PJLIB, you would invoke \a make in
636 * \c $PJPROJECT/pjlib/build directory like below:
637 *
638 \verbatim
639 $ cd pjlib/build
640 $ make
641 \endverbatim
642 *
643 * Alternatively you may invoke <tt>make</tt> in <tt>$PJPROJECT</tt>
644 * directory, to build all projects under that directory (e.g.
645 * PJLIB, PJSIP, etc.).
646 *
647 *
648 * @subsubsection linux_kern_target_subsec Linux Kernel Target
649 *
650 * \note
651 * <b>BUILDING APPLICATIONS IN LINUX KERNEL MODE IS A VERY DANGEROUS BUSINESS.
652 * YOU MAY CRASH THE WHOLE OF YOUR SYSTEM, CORRUPT YOUR HARDISK, ETC. PJLIB
653 * KERNEL MODULES ARE STILL IN EXPERIMENTAL PHASE. DO NOT RUN IT IN PRODUCTION
654 * SYSTEMS OR OTHER SYSTEMS WHERE RISK OF LOSS OF DATA IS NOT ACCEPTABLE.
655 * YOU HAVE BEEN WARNED.</b>
656 *
657 * \note
658 * <b>User Mode Linux (UML)</b> provides excellent way to experiment with Linux
659 * kernel without risking the stability of the host system. See
660 * http://user-mode-linux.sourceforge.net for details.
661 *
662 * \note
663 * I only use <b>UML</b> to experiment with PJLIB kernel modules.
664 * <b>I wouldn't be so foolish to use my host Linux machine to experiment
665 * with this.</b>
666 *
667 * \note
668 * You have been warned.
669 *
670 * For building PJLIB for Linux kernel target, there are additional steps required.
671 * In general, the additional tasks are:
672 * - Declare some more variables in <b><tt>build.mak</tt></b> file (this
673 * has been explained in \ref build_mak_sec above).
674 * - Perform these two small modifications in kernel source tree.
675 *
676 * There are two small modification need to be applied to the kernel tree.
677 *
678 * <b>1. Edit <tt>Makefile</tt> in kernel root source tree.</b>
679 *
680 * Add the following lines at the end of the <tt>Makefile</tt> in your
681 * <tt>$KERNEL_SRC</tt> dir:
682 \verbatim
683script:
684 $(SCRIPT)
685 \endverbatim
686 *
687 * \note Remember to replace spaces with <b>tab</b> in the Makefile.
688 *
689 * The modification above is needed to capture kernel's \c $CFLAGS and
690 * \c $CFLAGS_MODULE which will be used for PJLIB's compilation.
691 *
692 * <b>2. Add Additional Exports.</b>
693 *
694 * We need the kernel to export some more symbols for our use. So we declare
695 * the additional symbols to be exported in <tt>extra-exports.c</tt> file, and add
696 * a this file to be compiled into the kernel:
697 *
698 * - Copy the file <tt>extra-exports.c</tt> from <tt>pjlib/src/pj</tt>
699 * directory to <tt>$KERNEL_SRC/kernel/</tt> directory.
700 * - Edit <tt>Makefile</tt> in that directory, and add this line
701 * somewhere after the declaration of that variable:
702 \verbatim
703obj-y += extra-exports.o
704 \endverbatim
705 *
706 * To illustrate what have been done in your kernel source tree, below
707 * is screenshot of my kernel source tree _after_ the modification.
708 *
709 \verbatim
710[root@vpc-linux linux-2.6.7]# pwd
711/usr/src/linux-2.6.7
712[root@vpc-linux linux-2.6.7]#
713[root@vpc-linux linux-2.6.7]#
714[root@vpc-linux linux-2.6.7]# tail Makefile
715
716endif # skip-makefile
717
718FORCE:
719
720.PHONY: script
721
722script:
723 $(SCRIPT)
724
725[root@vpc-linux linux-2.6.7]#
726[root@vpc-linux linux-2.6.7]#
727[root@vpc-linux linux-2.6.7]# head kernel/extra-exports.c
728#include <linux/module.h>
729#include <linux/syscalls.h>
730
731EXPORT_SYMBOL(sys_select);
732
733EXPORT_SYMBOL(sys_epoll_create);
734EXPORT_SYMBOL(sys_epoll_ctl);
735EXPORT_SYMBOL(sys_epoll_wait);
736
737EXPORT_SYMBOL(sys_socket);
738[root@vpc-linux linux-2.6.7]#
739[root@vpc-linux linux-2.6.7]#
740[root@vpc-linux linux-2.6.7]# head -15 kernel/Makefile
741#
742# Makefile for the linux kernel.
743#
744
745obj-y = sched.o fork.o exec_domain.o panic.o printk.o profile.o \
746 exit.o itimer.o time.o softirq.o resource.o \
747 sysctl.o capability.o ptrace.o timer.o user.o \
748 signal.o sys.o kmod.o workqueue.o pid.o \
749 rcupdate.o intermodule.o extable.o params.o posix-timers.o \
750 kthread.o
751
752obj-y += extra-exports.o
753
754obj-$(CONFIG_FUTEX) += futex.o
755obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
756[root@vpc-linux linux-2.6.7]#
757
758 \endverbatim
759 *
760 * Then you must rebuild the kernel.
761 * If you fail to do this, you won't be able to <b>insmod</b> pjlib.
762 *
763 * \note You will see a lots of warning messages during pjlib-test compilation.
764 * The warning messages complain about unresolved symbols which are defined
765 * in pjlib module. You can safely ignore these warnings. However, you can not
766 * ignore warnings about non-pjlib unresolved symbols.
767 *
768 *
769 * @subsection makefile_explained_sec Makefile Explained
770 *
771 * The \a Makefile for each project (e.g. PJLIB, PJSIP, etc) should be
772 * very similar in the contents. The Makefile is located under \c build
773 * directory in each project subdir.
774 *
775 * @subsubsection pjlib_makefile_subsec PJLIB Makefile.
776 *
777 * Below is PJLIB's Makefile:
778 *
779 * \include build/Makefile
780 *
781 * @subsubsection pjlib_os_makefile_subsec PJLIB os-linux.mak.
782 *
783 * Below is file <tt><b>os-linux.mak</b></tt> file in
784 * <tt>$PJPROJECT/pjlib/build</tt> directory,
785 * which is OS specific configuration file for Linux target that is specific
786 * for PJLIB project. For \b global OS specific configuration, please see
787 * <tt>$PJPROJECT/build/os-*.mak</tt>.
788 *
789 * \include build/os-linux.mak
790 *
791 */
792
793
794/*////////////////////////////////////////////////////////////////////////// */
795/*
796 PORTING PJLIB
797 */
798
799
800
801/**
802 * @page porting_pjlib_pg Porting PJLIB
803 *
Benny Prijono5ee1f2e2006-09-22 20:43:00 +0000804 * \note
805 * <b>Since version 0.5.8, PJLIB build system is now based on autoconf, so
806 * most of the time we shouldn't need to apply the tweakings below to get
807 * PJLIB working on a new platform. However, since the autoconf build system
808 * still uses the old Makefile build system, the information below may still
809 * be useful for reference.
810 * </b>
Benny Prijono9033e312005-11-21 02:08:39 +0000811 *
812 * @section new_arch_sec Porting to New CPU Architecture
813 *
814 * Below is step-by-step guide to add support for new CPU architecture.
815 * This sample is based on porting to Alpha architecture; however steps for
816 * porting to other CPU architectures should be pretty similar.
817 *
818 * Also note that in this example, the operating system used is <b>Linux</b>.
819 * Should you wish to add support for new operating system, then follow
820 * the next section \ref porting_os_sec.
821 *
822 * Step-by-step guide to port to new CPU architecture:
823 * - decide the name for the new architecture. In this case, we choose
824 * <tt><b>alpha</b></tt>.
825 * - edit file <tt>$PJPROJECT/build.mak</tt>, and add new section for
826 * the new target:
827 * <pre>
828 * #
829 * # Linux alpha, gcc
830 * #
831 * export MACHINE_NAME := <b>alpha</b>
832 * export OS_NAME := linux
833 * export CC_NAME := gcc
834 * export HOST_NAME := unix
835 * </pre>
836 *
837 * - create a new file <tt>$PJPROJECT/build/<b>m-alpha</b>.mak</tt>.
838 * Alternatively create a copy from other file in this directory.
839 * The contents of this file will look something like:
840 * <pre>
841 * export M_CFLAGS := $(CC_DEF)<b>PJ_M_ALPHA=1</b>
842 * export M_CXXFLAGS :=
843 * export M_LDFLAGS :=
844 * export M_SOURCES :=
845 * </pre>
846 * - create a new file <tt>$PJPROJECT/pjlib/include/pj/compat/<b>m_alpha.h</b></tt>.
847 * Alternatively create a copy from other header file in this directory.
848 * The contents of this file will look something like:
849 * <pre>
850 * #define PJ_HAS_PENTIUM 0
851 * #define PJ_IS_LITTLE_ENDIAN 1
852 * #define PJ_IS_BIG_ENDIAN 0
853 * </pre>
854 * - edit <tt>pjlib/include/pj/<b>config.h</b></tt>. Add new processor
855 * configuration in this header file, like follows:
856 * <pre>
857 * ...
858 * #elif defined (PJ_M_ALPHA) && PJ_M_ALPHA != 0
859 * # include <pj/compat/m_alpha.h>
860 * ...
861 * </pre>
862 * - done. Build PJLIB with:
863 * <pre>
864 * $ cd $PJPROJECT/pjlib/build
865 * $ make dep
866 * $ make clean
867 * $ make
868 * </pre>
869 *
870 * @section porting_os_sec Porting to New Operating System Target
871 *
872 * This section will try to give you rough guideline on how to
873 * port PJLIB to a new target. As a sample, we give the target a name tag,
874 * for example <tt><b>xos</b></tt> (for X OS).
875 *
876 * @subsection new_compat_os_h_file_sec Create New Compat Header File
877 *
878 * You'll need to create a new header file
879 * <b><tt>include/pj/compat/os_xos.h</tt></b>. You can copy as a
880 * template other header file and edit it accordingly.
881 *
882 * @subsection modify_config_h_file_sec Modify config.h
883 *
884 * Then modify file <b><tt>include/pj/config.h</tt></b> to include
885 * this file accordingly (e.g. when macro <tt><b>PJ_XOS</b></tt> is
886 * defined):
887 *
888 \verbatim
889 ...
890 #elif defined(PJ_XOS)
891 # include <pj/compat/os_xos.h>
892 #else
893 #...
894 \endverbatim
895 *
896 * @subsection new_target_mak_file_sec Create New Global Make Config File
897 *
898 * Then you'll need to create global configuration file that
899 * is specific for this OS, i.e. <tt><b>os-xos.mak</b></tt> in
900 * <tt><b>$PJPROJECT/build</b></tt> directory.
901 *
902 * At very minimum, the file will normally need to define
903 * <tt><b>PJ_XOS=1</b></tt> in the \c CFLAGS section:
904 *
905 \verbatim
906#
907# $PJPROJECT/build/os-xos.mak:
908#
909export OS_CFLAGS := $(CC_DEF)PJ_XOS=1
910export OS_CXXFLAGS :=
911export OS_LDFLAGS :=
912export OS_SOURCES :=
913 \endverbatim
914 *
915 *
916 * @subsection new_target_prj_mak_file_sec Create New Project's Make Config File
917 *
918 * Then you'll need to create xos-specific configuration file
919 * for PJLIB. This file is also named <tt><b>os-xos.mak</b></tt>,
920 * but its located in <tt><b>pjlib/build</b></tt> directory.
921 * This file will specify source files that are specific to
922 * this OS to be included in the build process.
923 *
924 * Below is a sample:
925 \verbatim
926#
927# pjlib/build/os-xos.mak:
928# XOS specific configuration for PJLIB.
929#
930export PJLIB_OBJS += os_core_xos.o \
931 os_error_unix.o \
932 os_time_ansi.o
933export TEST_OBJS += main.o
934export TARGETS = pjlib pjlib-test
935 \endverbatim
936 *
937 * @subsection new_target_src_sec Create and Edit Source Files
938 *
939 * You'll normally need to create at least these files:
940 * - <tt><b>os_core_xos.c</b></tt>: core OS specific
941 * functionality.
942 * - <tt><b>os_timestamp_xos.c</b></tt>: how to get timestamp
943 * in this OS.
944 *
945 * Depending on how things are done in your OS, you may need
946 * to create these files:
947 * - <tt><b>os_error_*.c</b></tt>: how to manipulate
948 * OS error codes. Alternatively you may use existing
949 * <tt>os_error_unix.c</tt> if the OS has \c errno and
950 * \c strerror() function.
951 * - <tt><b>ioqueue_*.c</b></tt>: if the OS has specific method
952 * to perform asynchronous I/O. Alternatively you may
953 * use existing <tt>ioqueue_select.c</tt> if the OS supports
954 * \c select() function call.
955 * - <tt><b>sock_*.c</b></tt>: if the OS has specific method
956 * to perform socket communication. Alternatively you may
957 * use existing <tt>sock_bsd.c</tt> if the OS supports
958 * BSD socket API, and edit <tt>include/pj/compat/socket.h</tt>
959 * file accordingly.
960 *
961 * You will also need to check various files in
962 * <tt><b>include/pj/compat/*.h</b></tt>, to see if they're
963 * compatible with your OS.
964 *
965 * @subsection new_target_build_file_sec Build The Project
966 *
967 * After basic building blocks have been created for the OS, then
968 * the easiest way to see which parts need to be fixed is by building
969 * the project and see the error messages.
970 *
971 * @subsection new_target_edit_vs_new_file_sec Editing Existing Files vs Creating New File
972 *
973 * When you encounter compatibility errors in PJLIB during porting,
974 * you have three options on how to fix the error:
975 * - edit the existing <tt>*.c</tt> file, and give it <tt>#ifdef</tt>
976 * switch for the new OS, or
977 * - edit <tt>include/pj/compat/*.h</tt> instead, or
978 * - create a totally new file.
979 *
980 * Basicly there is no strict rule on which approach is the best
981 * to use, however the following guidelines may be used:
982 * - if the file is expected to be completely different than
983 * any existing file, then perhaps you should create a completely
984 * new file. For example, file <tt>os_core_xxx.c</tt> will
985 * normally be different for each OS flavour.
986 * - if the difference can be localized in <tt>include/compat</tt>
987 * header file, and existing <tt>#ifdef</tt> switch is there,
988 * then preferably you should edit this <tt>include/compat</tt>
989 * header file.
990 * - if the existing <tt>*.c</tt> file has <tt>#ifdef</tt> switch,
991 * then you may add another <tt>#elif</tt> switch there. This
992 * normally is used for behaviors that are not totally
993 * different on each platform.
994 * - other than that above, use your own judgement on whether
995 * to edit the file or create new file etc.
996 */
997
998#endif /* __PJ_DOXYGEN_H__ */
999