Files
harbour-core/harbour/utils/hbextern/hbextern.prg
Viktor Szakats 8e01405ad7 2008-08-09 11:43 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* doc/whatsnew.txt
   * bin/hb-mkslib.sh
     ! Changed the way harbour.dylib is created on Darwin systems 
       to support universal builds. Please review and test.
     ! Fixed generating links for .dylibs on Darwin.
     ! Removed one excessive 'cd "${OTMPDIR}"' command.
       (I hope this is right)
     ! Removed previously added $(L_USR) from Darwin dynamic 
       lib creation command line, as the L_USR "-arch" flags 
       (and probably others) cannot work here.
     ; TOFIX: 'ld: library not found for -lharbour' is still 
              present.

   * include/hbsetup.h
     + Added autodetection for HB_OS_DARWIN (based on __APPLE__).

   * config/darwin/gcc.cf
     ! Not forcing HB_OS_DARWIN from the command-line, 
       we're relying on the autodetection.

   * source/rtl/hbzlib.c
   * include/hbextern.ch
   * doc/whatsnew.txt
     * Harbour level functions renamed:
       HB_COMPRESS      -> HB_ZCOMPRESS     
       HB_COMPRESSBOUND -> HB_ZCOMPRESSBOUND
       HB_UNCOMPRESS    -> HB_ZUNCOMPRESS   
       HB_UNCOMPRESSLEN -> HB_ZUNCOMPRESSLEN
       This is to avoid collision with xhb functions 
       with similar name but different parameter list.
       Please modify your programs to use the new interface.
       INCOMPATIBLE.

   * utils/hbextern/hbextern.prg
     * Disabled scanning C HB_FUNC functions in .prg files.
     * Minor formatting.

   * include/hbapigt.h
     ! Minor cosmetic.

   * source/vm/runner.c
   * include/hbextern.ch
   * doc/whatsnew.txt
   * contrib/examples/hscript/hscript.prg
   * utils/hbrun/hbrun.prg
     * Harbour level functions renamed:
       __HRBRUN    -> HB_HRBRUN
       __HRBLOAD   -> HB_HRBLOAD
       __HRBDO     -> HB_HRBDO
       __HRBUNLOAD -> HB_HRBUNLOAD
       __HRBGETFU  -> HB_HRBGETSYMBOL
       __HRBDOFU   -> HB_HRBDOSYMBOL
       .hrb API functions moved to the documented namespace.
       Old function names still function, but are deprecated.
       Please modify your programs to use the new interface.
     ; NOTE: HB_DBG_*() function should I believe correctly 
             named as __DBG*(), as they are indeed internal 
             functions, not meant to guaranteed for final apps.
             We should do this cleanup in the future.

   * tests/Makefile
   - tests/spawn.prg
   - tests/spawn2.prg
     ! Removed two obsolete tests.
2008-08-09 09:59:09 +00:00

231 lines
7.3 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Project source code:
* hbextern.ch generator
*
* Copyright 1999 Ryszard Glab <rglab@imid.med.pl>
* www - http://www.harbour-project.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/* NOTE: The process is not completely automatical, the generated output should
be edited by hand after extraction. */
#include "directry.ch"
#include "fileio.ch"
// Remark this line when BEGINDUMP/ENDDUMP #pragma's
// are not used anymore in Harbour core and RTL .prg files:
// #define PRG_CAN_HAVE_HB_FUNC
#ifdef __HARBOUR__
#define EOL hb_OSNewLine()
#else
#define EOL ( Chr( 13 ) + Chr( 10 ) )
#endif
#ifdef __PLATFORM__UNIX
#define PATH_SEPARATOR "/"
#define BASE_DIR "../../source/"
#else
#define PATH_SEPARATOR "\"
#define BASE_DIR "..\..\source\"
#endif
// List of known files which does not contain any real public function.
// (always write the LOWERCASE file name)
STATIC s_aSkipList := { "profiler.prg" }
PROCEDURE MAIN()
LOCAL aDirs :={ BASE_DIR + "debug", ;
BASE_DIR + "pp" , ;
BASE_DIR + "rdd" , ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "dbfcdx", ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "dbfdbt", ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "dbffpt", ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "dbfntx", ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "hbsix" , ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "hsx" , ;
BASE_DIR + "rdd" + PATH_SEPARATOR + "nulsys", ;
BASE_DIR + "rtl" , ;
BASE_DIR + "vm" }
LOCAL i, nOutput
SET DATE FORMAT TO "yyyy-mm-dd"
? "Processing files:"
nOutput := FCREATE( "hbextern.ch_" )
IF nOutput > 0
FWRITE( nOutput, "// NOTE: Machine generated on: " + DTOC( DATE() ) + EOL + ;
"// This output should be edited by hand after extraction." + EOL + EOL )
FOR i := 1 TO LEN( aDirs )
FWRITE( nOutput, EOL + "// " + REPLICATE( "-", 60 ) + EOL )
FWRITE( nOutput, "// Files from: " + aDirs[ i ] + EOL + EOL )
ProcessDir( nOutput, aDirs[i] + PATH_SEPARATOR + "*.c" , aDirs[ i ], .F. )
ProcessDir( nOutput, aDirs[i] + PATH_SEPARATOR + "*.prg", aDirs[ i ], .T. )
NEXT
FWRITE( nOutput, EOL + "// " + REPLICATE( "-", 60 ) + EOL + EOL )
FCLOSE( nOutput )
ENDIF
? "Done."
RETURN
STATIC PROCEDURE ProcessDir( nOutput, cFiles, cDir, lPRG )
LOCAL i, nLen, aFiles
aFiles := DIRECTORY( cFiles )
IF ( nLen := LEN( aFiles ) ) > 0
ASORT( aFiles,,, {|x,y| x[ F_NAME ] < y[ F_NAME ] } )
FOR i := 1 TO nLen
ProcessFile( nOutput, cDir + PATH_SEPARATOR + aFiles[ i ][ 1 ], lPRG )
NEXT
ENDIF
RETURN
STATIC PROCEDURE ProcessFile( nOutput, cFile, lPRG )
LOCAL nH
// Skip known files which does not contain any real public function
IF ASCAN( s_aSkipList, {|c| c $ lower( cFile ) } ) > 0
RETURN
ENDIF
? cFile
FWRITE( nOutput, "//" + EOL + "// symbols from file: " + cFile + EOL + "//" + EOL )
nH := FOPEN( cFile )
IF nH > 0
FILEEVAL( nH, 255, EOL, {|c| Processline( nOutput, c, lPRG ) } )
FCLOSE( nH )
ENDIF
RETURN
STATIC PROCEDURE ProcessLine( nOutput, cLine, lPRG )
LOCAL nPos, nLen
cLine := AllTrim( cLine )
IF empty( cLine )
RETURN
ENDIF
IF lPRG // PRG source file (FUNC, PROC)
IF upper( SubStr( cLine, 1, 4 ) ) == "FUNC" .or. upper( SubStr( cLine, 1, 4 ) ) == "PROC"
IF ( nPos := AT( " ", cLine ) ) > 4
cLine := LTrim( SubStr( cLine, nPos ) )
nLen := len( cLine )
FOR nPos := 1 TO nLen
IF SubStr( cLine, nPos, 1 ) $ " (;/&" + Chr( 9 )
--nPos
EXIT
ENDIF
NEXT
WriteSymbol( nOutput, SubStr( cLine, 1, nPos ) )
ENDIF
ENDIF
#ifdef PRG_CAN_HAVE_HB_FUNC
ENDIF
#else
ELSE // C source file (HB_FUNC)
#endif
IF SubStr( cLine, 1, 8 ) == "HB_FUNC("
cLine := SubStr( cLine, 9 )
IF ( nPos := AT( ")", cLine ) ) > 0
WriteSymbol( nOutput, AllTrim( SubStr( cLine, 1, nPos - 1 ) ) )
ENDIF
ENDIF
#ifndef PRG_CAN_HAVE_HB_FUNC
ENDIF
#endif
RETURN
STATIC PROCEDURE FileEval( nHandle, nMaxLine, cDelim, bBlock )
LOCAL cBuffer := ""
FSEEK( nHandle, 0 )
DO WHILE FReadLn( nHandle, @cBuffer, nMaxLine, cDelim )
EVAL( bBlock, cBuffer )
ENDDO
RETURN
STATIC FUNCTION FReadLn( nHandle, cBuffer, nMaxLine, cDelim )
LOCAL cLine, nSavePos, nEol, nNumRead
cLine := space( nMaxLine )
cBuffer := ""
nSavePos := FSEEK( nHandle, 0, FS_RELATIVE )
nNumRead := FREAD( nHandle, @cLine, nMaxLine )
IF ( nEol := AT( cDelim, substr( cLine, 1, nNumRead ) ) ) == 0
cBuffer := cLine
ELSE
cBuffer := SubStr( cLine, 1, nEol - 1 )
FSEEK( nHandle, nSavePos + nEol + 1, FS_SET )
ENDIF
RETURN nNumRead != 0
STATIC PROCEDURE WriteSymbol( nOutput, cLine )
STATIC s_aNames := { "MAIN" } // Init with names you want to skip
IF len( cLine ) > 0
cLine := upper( cLine )
IF ASCAN( s_aNames, {|c| c == cLine } ) == 0
AADD( s_aNames, cLine )
FWRITE( nOutput, "EXTERNAL " + cLine + EOL )
ENDIF
ENDIF
RETURN