blob: 51a697771575b6159a6b9b7a49f1105c2e66f8df [file] [log] [blame]
Benny Prijono9033e312005-11-21 02:08:39 +00001/* $Id$ */
2/*
3 * Copyright (C)2003-2006 Benny Prijono <benny@prijono.org>
4 *
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 Prijono97b87172006-08-24 14:25:14 +000058 * This document corresponds to PJLIB version 0.5.7.6.
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 *
460 * @subsection build_sys_install_win32_sec Visual Studio
461 *
462 * The PJLIB Visual Studio workspace supports the building of PJLIB
463 * for Win32 target. Although currently only the Visual Studio 6 Workspace is
464 * actively maintained, developers with later version of Visual Studio
465 * can easily imports VS6 workspace into their IDE.
466 *
467 * To start building PJLIB projects with Visual Studio 6 or later, open
468 * the \a workspace file in the corresponding \b \c build directory. You have
469 * several choices on which \a dsw file to open:
470 \verbatim
Benny Prijono294c2532006-06-16 16:52:51 +0000471 $PJPROJECT/pjlib/build/pjlib.dsw
472 $PJPROJECT/pjsip/build/pjsip.dsw
Benny Prijono9033e312005-11-21 02:08:39 +0000473 ..etc
474 \endverbatim
475 *
Benny Prijono294c2532006-06-16 16:52:51 +0000476 * The easiest way is to open <tt>pjsip_apps.dsw</tt> file in \b \c $PJPROJECT/pjsip-apps/build
477 * directory, and build pjsua project or the samples project.
478 * However this will not build the complete projects.
479 * For example, the PJLIB test is not included in this workspace.
480 * To build the complete projects, you must
Benny Prijono9033e312005-11-21 02:08:39 +0000481 * open and build each \a dsw file in \c build directory in each
482 * subprojects. For example, to open the complete PJLIB workspace, open
483 * <tt>pjlib.dsw</tt> in <tt>$PJPROJECT/pjlib/build</tt> directory.
484 *
485 *
486 * @subsubsection config_site_create_vc_sec Create config_site.h
487 *
488 * The file <tt><b>$PJPROJECT/pjlib/include/pj/config_site.h</b></tt>
489 * is supposed to contain configuration that is specific to your site/target.
490 * This file is not part of PJLIB, so you must create it yourself. Normally
491 * you just need to create a blank file.
492 *
493 * The reason why it's not included in PJLIB is so that you would not accidently
494 * overwrite your site configuration.
495 *
496 * If you fail to do this, Visual C will complain with error like:
497 *
498 * <b>"fatal error C1083: Cannot open include file: 'pj/config_site.h': No such file
499 * or directory"</b>.
500 *
501 * @subsubsection build_vc_subsubsec Build the Projects
502 *
503 * Just hit the build button!
504 *
505 *
506 * @subsection build_sys_install_unix_sec Make System
507 *
508 * For other targets, PJLIB provides a rather comprehensive build system
509 * that uses GNU \a make (and only GNU \a make will work).
510 * Currently, the build system supports building * PJLIB for these targets:
511 * - i386/Win32/mingw
512 * - i386/Linux
513 * - i386/Linux (kernel)
514 * - alpha/linux
515 * - sparc/SunOS
516 * - etc..
517 *
518 *
519 * @subsubsection build_req_sec Requirements
520 *
521 * In order to use the \c make based build system, you MUST have:
522 *
523 * - <b>GNU make</b>
524 *\n
525 * The Makefiles heavily utilize GNU make commands which most likely
526 * are not available in other \c make system.
527 * - <b>bash</b> shell is recommended.
528 *\n
529 * Specificly, there is a command <tt>"echo -n"</tt> which may not work
530 * in other shells. This command is used when generating dependencies
531 * (<tt>make dep</tt>) and it's located in
532 * <tt>$PJPROJECT/build/rules.mak</tt>.
533 * - <b>ar</b>, <b>ranlib</b> from GNU binutils
534 *\n
535 * In your system has different <tt>ar</tt> or <tt>ranlib</tt> (e.g. they
536 * may have been installed as <tt>gar</tt> and <tt>granlib</tt>), then
537 * either you create the relevant symbolic links, <b>or</b> modify
538 * <tt>$PJPROJECT/build/cc-gcc.mak</tt> and rename <tt>ar</tt> and
539 * <tt>ranlib</tt> to the appropriate names.
540 * - <b>gcc</b> to generate dependency.
541 *\n
542 * Currently the build system uses <tt>"gcc -MM"</tt> to generate build
543 * dependencies. If <tt>gcc</tt> is not desired to generate dependency,
544 * then either you don't run <tt>make dep</tt>, <b>or</b> edit
545 * <tt>$PJPROJECT/build/rules.mak</tt> to calculate dependency using
546 * your prefered method. (And let me know when you do so so that I can
547 * update the file. :) )
548 *
549 * @subsubsection build_overview_sec Building the Project
550 *
551 * Generally, steps required to build the PJLIB are:
552 *
553 \verbatim
Benny Prijono294c2532006-06-16 16:52:51 +0000554 $ cd /home/user/pjproject
555 $ ./configure
Benny Prijono9033e312005-11-21 02:08:39 +0000556 $ touch pjlib/include/pj/config_site.h
Benny Prijono294c2532006-06-16 16:52:51 +0000557 $ make dep
558 $ make
Benny Prijono9033e312005-11-21 02:08:39 +0000559 \endverbatim
560 *
Benny Prijono294c2532006-06-16 16:52:51 +0000561 * The above process will build all static libraries and all applications.
562 *
563 * \note the <tt>configure</tt> script is not a proper autoconf script,
564 * but rather a simple shell script to detect current host. This script
565 * currently does not support cross-compilation.
Benny Prijono9033e312005-11-21 02:08:39 +0000566 *
567 * \note For Linux kernel target, there are additional steps required, which
568 * will be explained in section \ref linux_kern_target_subsec.
569 *
Benny Prijono294c2532006-06-16 16:52:51 +0000570 * @subsubsection build_mak_sec Cross Compilation
Benny Prijono9033e312005-11-21 02:08:39 +0000571 *
Benny Prijono294c2532006-06-16 16:52:51 +0000572 * For cross compilation, you will need to edit the \c build.mak file in
573 * \c $PJPROJECT root directory manually. Please see <b>README-configure</b> file
574 * in the root directory for more information.
Benny Prijono9033e312005-11-21 02:08:39 +0000575 *
576 * For Linux kernel target, you are also required to declare the following
577 * variables in this file:
578 * - \c KERNEL_DIR: full path of kernel source tree.
579 * - \c KERNEL_ARCH: kernel ARCH options (e.g. "ARCH=um"), or leave blank
580 * for default.
581 * - \c PJPROJECT_DIR: full path of PJPROJECT source tree.
582 *
583 * Apart from these, there are also additional steps required to build
584 * Linux kernel target, which will be explained in \ref linux_kern_target_subsec.
585 *
586 * @subsubsection build_dir_sec Files in "build" Directory
587 *
588 * The <tt>*.mak</tt> files in \c $PJPROJECT/build directory are used to specify
589 * the configuration for the specified compiler, target machine target
590 * operating system, and host options. These files will be executed
591 * (included) by \a make during building process, depending on the values
592 * specified in <b>$PJPROJECT/build.mak</b> file.
593 *
594 * Normally you don't need to edit these files, except when you're porting
595 * PJLIB to new target.
596 *
597 * Below are the description of some files in this directory:
598 *
599 * - <tt>rules.mak</tt>: contains generic rules always included during make.
600 * - <tt>cc-gcc.mak</tt>: rules when gcc is used for compiler.
601 * - <tt>cc-vc.mak</tt>: rules when MSVC compiler is used.
602 * - <tt>host-mingw.mak</tt>: rules for building in mingw host.
603 * - <tt>host-unix.mak</tt>: rules for building in Unix/Posix host.
604 * - <tt>host-win32.mak</tt>: rules for building in Win32 command console
605 * (only valid when VC is used).
606 * - <tt>m-i386.mak</tt>: rules when target machine is an i386 processor.
607 * - <tt>m-m68k.mak</tt>: rules when target machine is an m68k processor.
608 * - <tt>os-linux.mak</tt>: rules when target OS is Linux.
609 * - <tt>os-linux-kernel.mak</tt>: rules when PJLIB is to be build as
610 * part of Linux kernel.
611 * - <tt>os-win32.mak</tt>: rules when target OS is Win32.
612 *
613 *
614 * @subsubsection config_site_create_sec Create config_site.h
615 *
616 * The file <tt><b>$PJPROJECT/pjlib/include/pj/config_site.h</b></tt>
617 * is supposed to contain configuration that is specific to your site/target.
618 * This file is not part of PJLIB, so you must create it yourself.
619 *
620 * The reason why it's not included in PJLIB is so that you would not accidently
621 * overwrite your site configuration.
622 *
623 *
624 * @subsubsection invoking_make_sec Invoking make
625 *
626 * Normally, \a make is invoked in \c build directory under each project.
627 * For example, to build PJLIB, you would invoke \a make in
628 * \c $PJPROJECT/pjlib/build directory like below:
629 *
630 \verbatim
631 $ cd pjlib/build
632 $ make
633 \endverbatim
634 *
635 * Alternatively you may invoke <tt>make</tt> in <tt>$PJPROJECT</tt>
636 * directory, to build all projects under that directory (e.g.
637 * PJLIB, PJSIP, etc.).
638 *
639 *
640 * @subsubsection linux_kern_target_subsec Linux Kernel Target
641 *
642 * \note
643 * <b>BUILDING APPLICATIONS IN LINUX KERNEL MODE IS A VERY DANGEROUS BUSINESS.
644 * YOU MAY CRASH THE WHOLE OF YOUR SYSTEM, CORRUPT YOUR HARDISK, ETC. PJLIB
645 * KERNEL MODULES ARE STILL IN EXPERIMENTAL PHASE. DO NOT RUN IT IN PRODUCTION
646 * SYSTEMS OR OTHER SYSTEMS WHERE RISK OF LOSS OF DATA IS NOT ACCEPTABLE.
647 * YOU HAVE BEEN WARNED.</b>
648 *
649 * \note
650 * <b>User Mode Linux (UML)</b> provides excellent way to experiment with Linux
651 * kernel without risking the stability of the host system. See
652 * http://user-mode-linux.sourceforge.net for details.
653 *
654 * \note
655 * I only use <b>UML</b> to experiment with PJLIB kernel modules.
656 * <b>I wouldn't be so foolish to use my host Linux machine to experiment
657 * with this.</b>
658 *
659 * \note
660 * You have been warned.
661 *
662 * For building PJLIB for Linux kernel target, there are additional steps required.
663 * In general, the additional tasks are:
664 * - Declare some more variables in <b><tt>build.mak</tt></b> file (this
665 * has been explained in \ref build_mak_sec above).
666 * - Perform these two small modifications in kernel source tree.
667 *
668 * There are two small modification need to be applied to the kernel tree.
669 *
670 * <b>1. Edit <tt>Makefile</tt> in kernel root source tree.</b>
671 *
672 * Add the following lines at the end of the <tt>Makefile</tt> in your
673 * <tt>$KERNEL_SRC</tt> dir:
674 \verbatim
675script:
676 $(SCRIPT)
677 \endverbatim
678 *
679 * \note Remember to replace spaces with <b>tab</b> in the Makefile.
680 *
681 * The modification above is needed to capture kernel's \c $CFLAGS and
682 * \c $CFLAGS_MODULE which will be used for PJLIB's compilation.
683 *
684 * <b>2. Add Additional Exports.</b>
685 *
686 * We need the kernel to export some more symbols for our use. So we declare
687 * the additional symbols to be exported in <tt>extra-exports.c</tt> file, and add
688 * a this file to be compiled into the kernel:
689 *
690 * - Copy the file <tt>extra-exports.c</tt> from <tt>pjlib/src/pj</tt>
691 * directory to <tt>$KERNEL_SRC/kernel/</tt> directory.
692 * - Edit <tt>Makefile</tt> in that directory, and add this line
693 * somewhere after the declaration of that variable:
694 \verbatim
695obj-y += extra-exports.o
696 \endverbatim
697 *
698 * To illustrate what have been done in your kernel source tree, below
699 * is screenshot of my kernel source tree _after_ the modification.
700 *
701 \verbatim
702[root@vpc-linux linux-2.6.7]# pwd
703/usr/src/linux-2.6.7
704[root@vpc-linux linux-2.6.7]#
705[root@vpc-linux linux-2.6.7]#
706[root@vpc-linux linux-2.6.7]# tail Makefile
707
708endif # skip-makefile
709
710FORCE:
711
712.PHONY: script
713
714script:
715 $(SCRIPT)
716
717[root@vpc-linux linux-2.6.7]#
718[root@vpc-linux linux-2.6.7]#
719[root@vpc-linux linux-2.6.7]# head kernel/extra-exports.c
720#include <linux/module.h>
721#include <linux/syscalls.h>
722
723EXPORT_SYMBOL(sys_select);
724
725EXPORT_SYMBOL(sys_epoll_create);
726EXPORT_SYMBOL(sys_epoll_ctl);
727EXPORT_SYMBOL(sys_epoll_wait);
728
729EXPORT_SYMBOL(sys_socket);
730[root@vpc-linux linux-2.6.7]#
731[root@vpc-linux linux-2.6.7]#
732[root@vpc-linux linux-2.6.7]# head -15 kernel/Makefile
733#
734# Makefile for the linux kernel.
735#
736
737obj-y = sched.o fork.o exec_domain.o panic.o printk.o profile.o \
738 exit.o itimer.o time.o softirq.o resource.o \
739 sysctl.o capability.o ptrace.o timer.o user.o \
740 signal.o sys.o kmod.o workqueue.o pid.o \
741 rcupdate.o intermodule.o extable.o params.o posix-timers.o \
742 kthread.o
743
744obj-y += extra-exports.o
745
746obj-$(CONFIG_FUTEX) += futex.o
747obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
748[root@vpc-linux linux-2.6.7]#
749
750 \endverbatim
751 *
752 * Then you must rebuild the kernel.
753 * If you fail to do this, you won't be able to <b>insmod</b> pjlib.
754 *
755 * \note You will see a lots of warning messages during pjlib-test compilation.
756 * The warning messages complain about unresolved symbols which are defined
757 * in pjlib module. You can safely ignore these warnings. However, you can not
758 * ignore warnings about non-pjlib unresolved symbols.
759 *
760 *
761 * @subsection makefile_explained_sec Makefile Explained
762 *
763 * The \a Makefile for each project (e.g. PJLIB, PJSIP, etc) should be
764 * very similar in the contents. The Makefile is located under \c build
765 * directory in each project subdir.
766 *
767 * @subsubsection pjlib_makefile_subsec PJLIB Makefile.
768 *
769 * Below is PJLIB's Makefile:
770 *
771 * \include build/Makefile
772 *
773 * @subsubsection pjlib_os_makefile_subsec PJLIB os-linux.mak.
774 *
775 * Below is file <tt><b>os-linux.mak</b></tt> file in
776 * <tt>$PJPROJECT/pjlib/build</tt> directory,
777 * which is OS specific configuration file for Linux target that is specific
778 * for PJLIB project. For \b global OS specific configuration, please see
779 * <tt>$PJPROJECT/build/os-*.mak</tt>.
780 *
781 * \include build/os-linux.mak
782 *
783 */
784
785
786/*////////////////////////////////////////////////////////////////////////// */
787/*
788 PORTING PJLIB
789 */
790
791
792
793/**
794 * @page porting_pjlib_pg Porting PJLIB
795 *
796 *
797 * @section new_arch_sec Porting to New CPU Architecture
798 *
799 * Below is step-by-step guide to add support for new CPU architecture.
800 * This sample is based on porting to Alpha architecture; however steps for
801 * porting to other CPU architectures should be pretty similar.
802 *
803 * Also note that in this example, the operating system used is <b>Linux</b>.
804 * Should you wish to add support for new operating system, then follow
805 * the next section \ref porting_os_sec.
806 *
807 * Step-by-step guide to port to new CPU architecture:
808 * - decide the name for the new architecture. In this case, we choose
809 * <tt><b>alpha</b></tt>.
810 * - edit file <tt>$PJPROJECT/build.mak</tt>, and add new section for
811 * the new target:
812 * <pre>
813 * #
814 * # Linux alpha, gcc
815 * #
816 * export MACHINE_NAME := <b>alpha</b>
817 * export OS_NAME := linux
818 * export CC_NAME := gcc
819 * export HOST_NAME := unix
820 * </pre>
821 *
822 * - create a new file <tt>$PJPROJECT/build/<b>m-alpha</b>.mak</tt>.
823 * Alternatively create a copy from other file in this directory.
824 * The contents of this file will look something like:
825 * <pre>
826 * export M_CFLAGS := $(CC_DEF)<b>PJ_M_ALPHA=1</b>
827 * export M_CXXFLAGS :=
828 * export M_LDFLAGS :=
829 * export M_SOURCES :=
830 * </pre>
831 * - create a new file <tt>$PJPROJECT/pjlib/include/pj/compat/<b>m_alpha.h</b></tt>.
832 * Alternatively create a copy from other header file in this directory.
833 * The contents of this file will look something like:
834 * <pre>
835 * #define PJ_HAS_PENTIUM 0
836 * #define PJ_IS_LITTLE_ENDIAN 1
837 * #define PJ_IS_BIG_ENDIAN 0
838 * </pre>
839 * - edit <tt>pjlib/include/pj/<b>config.h</b></tt>. Add new processor
840 * configuration in this header file, like follows:
841 * <pre>
842 * ...
843 * #elif defined (PJ_M_ALPHA) && PJ_M_ALPHA != 0
844 * # include <pj/compat/m_alpha.h>
845 * ...
846 * </pre>
847 * - done. Build PJLIB with:
848 * <pre>
849 * $ cd $PJPROJECT/pjlib/build
850 * $ make dep
851 * $ make clean
852 * $ make
853 * </pre>
854 *
855 * @section porting_os_sec Porting to New Operating System Target
856 *
857 * This section will try to give you rough guideline on how to
858 * port PJLIB to a new target. As a sample, we give the target a name tag,
859 * for example <tt><b>xos</b></tt> (for X OS).
860 *
861 * @subsection new_compat_os_h_file_sec Create New Compat Header File
862 *
863 * You'll need to create a new header file
864 * <b><tt>include/pj/compat/os_xos.h</tt></b>. You can copy as a
865 * template other header file and edit it accordingly.
866 *
867 * @subsection modify_config_h_file_sec Modify config.h
868 *
869 * Then modify file <b><tt>include/pj/config.h</tt></b> to include
870 * this file accordingly (e.g. when macro <tt><b>PJ_XOS</b></tt> is
871 * defined):
872 *
873 \verbatim
874 ...
875 #elif defined(PJ_XOS)
876 # include <pj/compat/os_xos.h>
877 #else
878 #...
879 \endverbatim
880 *
881 * @subsection new_target_mak_file_sec Create New Global Make Config File
882 *
883 * Then you'll need to create global configuration file that
884 * is specific for this OS, i.e. <tt><b>os-xos.mak</b></tt> in
885 * <tt><b>$PJPROJECT/build</b></tt> directory.
886 *
887 * At very minimum, the file will normally need to define
888 * <tt><b>PJ_XOS=1</b></tt> in the \c CFLAGS section:
889 *
890 \verbatim
891#
892# $PJPROJECT/build/os-xos.mak:
893#
894export OS_CFLAGS := $(CC_DEF)PJ_XOS=1
895export OS_CXXFLAGS :=
896export OS_LDFLAGS :=
897export OS_SOURCES :=
898 \endverbatim
899 *
900 *
901 * @subsection new_target_prj_mak_file_sec Create New Project's Make Config File
902 *
903 * Then you'll need to create xos-specific configuration file
904 * for PJLIB. This file is also named <tt><b>os-xos.mak</b></tt>,
905 * but its located in <tt><b>pjlib/build</b></tt> directory.
906 * This file will specify source files that are specific to
907 * this OS to be included in the build process.
908 *
909 * Below is a sample:
910 \verbatim
911#
912# pjlib/build/os-xos.mak:
913# XOS specific configuration for PJLIB.
914#
915export PJLIB_OBJS += os_core_xos.o \
916 os_error_unix.o \
917 os_time_ansi.o
918export TEST_OBJS += main.o
919export TARGETS = pjlib pjlib-test
920 \endverbatim
921 *
922 * @subsection new_target_src_sec Create and Edit Source Files
923 *
924 * You'll normally need to create at least these files:
925 * - <tt><b>os_core_xos.c</b></tt>: core OS specific
926 * functionality.
927 * - <tt><b>os_timestamp_xos.c</b></tt>: how to get timestamp
928 * in this OS.
929 *
930 * Depending on how things are done in your OS, you may need
931 * to create these files:
932 * - <tt><b>os_error_*.c</b></tt>: how to manipulate
933 * OS error codes. Alternatively you may use existing
934 * <tt>os_error_unix.c</tt> if the OS has \c errno and
935 * \c strerror() function.
936 * - <tt><b>ioqueue_*.c</b></tt>: if the OS has specific method
937 * to perform asynchronous I/O. Alternatively you may
938 * use existing <tt>ioqueue_select.c</tt> if the OS supports
939 * \c select() function call.
940 * - <tt><b>sock_*.c</b></tt>: if the OS has specific method
941 * to perform socket communication. Alternatively you may
942 * use existing <tt>sock_bsd.c</tt> if the OS supports
943 * BSD socket API, and edit <tt>include/pj/compat/socket.h</tt>
944 * file accordingly.
945 *
946 * You will also need to check various files in
947 * <tt><b>include/pj/compat/*.h</b></tt>, to see if they're
948 * compatible with your OS.
949 *
950 * @subsection new_target_build_file_sec Build The Project
951 *
952 * After basic building blocks have been created for the OS, then
953 * the easiest way to see which parts need to be fixed is by building
954 * the project and see the error messages.
955 *
956 * @subsection new_target_edit_vs_new_file_sec Editing Existing Files vs Creating New File
957 *
958 * When you encounter compatibility errors in PJLIB during porting,
959 * you have three options on how to fix the error:
960 * - edit the existing <tt>*.c</tt> file, and give it <tt>#ifdef</tt>
961 * switch for the new OS, or
962 * - edit <tt>include/pj/compat/*.h</tt> instead, or
963 * - create a totally new file.
964 *
965 * Basicly there is no strict rule on which approach is the best
966 * to use, however the following guidelines may be used:
967 * - if the file is expected to be completely different than
968 * any existing file, then perhaps you should create a completely
969 * new file. For example, file <tt>os_core_xxx.c</tt> will
970 * normally be different for each OS flavour.
971 * - if the difference can be localized in <tt>include/compat</tt>
972 * header file, and existing <tt>#ifdef</tt> switch is there,
973 * then preferably you should edit this <tt>include/compat</tt>
974 * header file.
975 * - if the existing <tt>*.c</tt> file has <tt>#ifdef</tt> switch,
976 * then you may add another <tt>#elif</tt> switch there. This
977 * normally is used for behaviors that are not totally
978 * different on each platform.
979 * - other than that above, use your own judgement on whether
980 * to edit the file or create new file etc.
981 */
982
983#endif /* __PJ_DOXYGEN_H__ */
984