* INSTALL
+ config/vxworks
+ config/vxworks/libs.mk
+ config/vxworks/gcc.mk
+ config/vxworks/diab.mk
+ config/vxworks/global.mk
+ Started experimental VxWorks port.
; NOTE: VxWorks port was made possible by Wind River Systems Inc.,
who were so kind to mail me a full VxWorks development
environment, for the purpose of porting Harbour to this
platform. Thank you very much guys.
[ The free license is valid for one month, so if anyone
is interested in helping in this project, I can help with
real tests, builds and information. BTW, the devenv is
Eclipse based plus cmdline, running on Windows (available
for Linux and Solaris, too) and the target VxWorks exes
run in a virtual environment. ]
* config/global.mk
+ Added autodetection of VxWorks platform.
* utils/hbmk2/hbmk2.prg
+ Added VxWorks support. It's incomplete yet.
! Fixed to quote *nix/gcc compiler family in
Windows-host cross-platform situations.
* src/vm/thread.c
* src/common/hbgete.c
* src/common/hbffind.c
* src/common/hbtrace.c
* src/common/hbdate.c
* src/rtl/gtstd/gtstd.c
* src/rtl/gttrm/Makefile
* src/rtl/hbsocket.c
* src/rtl/filesys.c
* src/rtl/diskspac.c
* src/rtl/cputime.c
* src/rtl/disksphb.c
* src/rtl/gtpca/gtpca.c
* src/rtl/net.c
* src/rtl/hbproces.c
* src/rtl/gtsys.c
* src/rtl/hbcom.c
* external/zlib/inflate.c
* external/jpeg/jmorecfg.h
* external/pcre/Makefile
* include/hbapifs.h
* include/hbthread.h
* include/hbdefs.h
* include/hbsetup.h
* contrib/xhb/hboutdbg.c
* contrib/xhb/hbsyslog.c
* contrib/xhb/hbserv.c
+ vxworks/gcc port. First phase.
; Please review.
; NOTE: - vxworks has no termios, for serial comm
support it has sioLib.h.
- vxworks supports another C compiler, which
was not tested yet.
- vxworks supports lots of CPUs, only x86 was
tested yet.
- There are still mutex related warnings to sort out.
- Some parts had to disabled, like HB_LIB*() functionality.
; TODO: Regenarate .difs in external/.
* src/vm/hashfunc.c
* Silenced warnings shown by vxworks/gcc.
799 lines
22 KiB
C
799 lines
22 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* The Hash tables API (PRG level)
|
|
*
|
|
* Copyright 2007 Przemyslaw Czerpak <druzus / at / priv.onet.pl>
|
|
* www - http://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.
|
|
*
|
|
*/
|
|
|
|
#include "hbvmint.h"
|
|
#include "hbapi.h"
|
|
#include "hbapiitm.h"
|
|
#include "hbapierr.h"
|
|
#include "hbapilng.h"
|
|
#include "hbvm.h"
|
|
#include "hbstack.h"
|
|
|
|
HB_FUNC( HB_HASH )
|
|
{
|
|
int iPCount = hb_pcount(), iParam;
|
|
|
|
if( iPCount & 1 )
|
|
hb_errRT_BASE( EG_BOUND, 1131, NULL, hb_langDGetErrorDesc( EG_ARRDIMENSION ), HB_ERR_ARGS_BASEPARAMS );
|
|
else
|
|
{
|
|
PHB_ITEM pHash = hb_hashNew( NULL );
|
|
for( iParam = 1; iParam <= iPCount; iParam += 2 )
|
|
{
|
|
PHB_ITEM pKey = hb_param( iParam, HB_IT_HASHKEY );
|
|
PHB_ITEM pValue = hb_param( iParam + 1, HB_IT_ANY );
|
|
if( pKey )
|
|
hb_hashAdd( pHash, pKey, pValue );
|
|
else
|
|
{
|
|
hb_errRT_BASE( EG_BOUND, 1133, NULL, hb_langDGetErrorDesc( EG_ARRASSIGN ), 3, pHash, hb_param( iParam, HB_IT_ANY ), pValue );
|
|
break;
|
|
}
|
|
}
|
|
hb_itemReturnRelease( pHash );
|
|
}
|
|
}
|
|
|
|
HB_FUNC( HB_HHASKEY )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
|
|
if( pHash && pKey )
|
|
hb_retl( hb_hashScan( pHash, pKey, NULL ) );
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HPOS )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
|
|
if( pHash && pKey )
|
|
{
|
|
HB_SIZE nPos;
|
|
hb_hashScan( pHash, pKey, &nPos );
|
|
hb_retns( nPos );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HGET )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
|
|
if( pHash && pKey )
|
|
{
|
|
PHB_ITEM pDest = hb_hashGetItemPtr( pHash, pKey, HB_HASH_AUTOADD_ACCESS );
|
|
if( pDest )
|
|
hb_itemReturn( pDest );
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1132, NULL, hb_langDGetErrorDesc( EG_ARRACCESS ), 2, pHash, pKey );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HGETDEF )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
|
|
if( pHash && pKey )
|
|
{
|
|
PHB_ITEM pDest = hb_hashGetItemPtr( pHash, pKey, HB_HASH_AUTOADD_ACCESS );
|
|
if( pDest )
|
|
hb_itemReturn( pDest );
|
|
else
|
|
{
|
|
PHB_ITEM pDefault = hb_param( 3, HB_IT_ANY );
|
|
if( pDefault )
|
|
hb_itemReturn( pDefault );
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HSET )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
PHB_ITEM pValue = hb_param( 3, HB_IT_ANY );
|
|
|
|
if( pHash && pKey && pValue )
|
|
{
|
|
hb_hashAdd( pHash, pKey, pValue );
|
|
hb_itemReturn( pHash );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HDEL )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pKey = hb_param( 2, HB_IT_HASHKEY );
|
|
|
|
if( pHash && pKey )
|
|
{
|
|
if( hb_hashDel( pHash, pKey ) )
|
|
hb_itemReturn( pHash );
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1133, NULL, hb_langDGetErrorDesc( EG_ARRASSIGN ), 2, pHash, pKey );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HKEYAT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pPos = hb_param( 2, HB_IT_NUMERIC );
|
|
|
|
if( pHash && pPos )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pHash, hb_itemGetNS( pPos ) );
|
|
if( pKey )
|
|
hb_itemReturn( pKey );
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1187, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HVALUEAT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pPos = hb_param( 2, HB_IT_NUMERIC );
|
|
PHB_ITEM pValue = hb_param( 3, HB_IT_ANY );
|
|
|
|
if( pHash && pPos )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, hb_itemGetNS( pPos ) );
|
|
if( pItem )
|
|
{
|
|
if( pValue )
|
|
hb_itemCopy( pItem, pValue );
|
|
else
|
|
pValue = pItem;
|
|
hb_itemReturn( pValue );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1187, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HPAIRAT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pPos = hb_param( 2, HB_IT_NUMERIC );
|
|
|
|
if( pHash && pPos )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pHash, hb_itemGetNS( pPos ) );
|
|
PHB_ITEM pValue = hb_hashGetValueAt( pHash, hb_itemGetNS( pPos ) );
|
|
if( pKey && pValue )
|
|
{
|
|
PHB_ITEM pDstKey = hb_param( 3, HB_IT_BYREF );
|
|
PHB_ITEM pDstVal = hb_param( 4, HB_IT_BYREF );
|
|
if( pDstKey && pDstVal )
|
|
{
|
|
hb_itemCopy( pDstKey, pKey );
|
|
hb_itemCopy( pDstVal, pValue );
|
|
}
|
|
else
|
|
{
|
|
PHB_ITEM pResult = hb_itemArrayNew( 2 );
|
|
hb_arraySet( pResult, 1, pKey );
|
|
hb_arraySet( pResult, 2, pValue );
|
|
hb_itemReturnRelease( pResult );
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1187, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HDELAT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pPos = hb_param( 2, HB_IT_NUMERIC );
|
|
|
|
if( pHash && pPos )
|
|
{
|
|
if( hb_hashDelAt( pHash, hb_itemGetNS( pPos ) ) )
|
|
hb_itemReturn( pHash );
|
|
else
|
|
hb_errRT_BASE( EG_BOUND, 1133, NULL, hb_langDGetErrorDesc( EG_ARRASSIGN ), 2, pHash, pPos );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
|
|
HB_FUNC( HB_HKEYS )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
|
|
if( pHash )
|
|
hb_itemReturnRelease( hb_hashGetKeys( pHash ) );
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HVALUES )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
|
|
if( pHash )
|
|
hb_itemReturnRelease( hb_hashGetValues( pHash ) );
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HFILL )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_ANY );
|
|
|
|
if( pHash && pValue )
|
|
{
|
|
PHB_ITEM pDest;
|
|
HB_SIZE nPos = 0;
|
|
|
|
while( ( pDest = hb_hashGetValueAt( pHash, ++nPos ) ) != NULL )
|
|
hb_itemCopy( pDest, pValue );
|
|
|
|
hb_itemReturn( pHash );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HCLONE )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
|
|
if( pHash )
|
|
hb_hashCloneTo( hb_stackReturnItem(), pHash );
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HCOPY )
|
|
{
|
|
PHB_ITEM pSource = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pDest = hb_param( 2, HB_IT_HASH );
|
|
|
|
if( pSource && pDest )
|
|
{
|
|
HB_SIZE nLen = hb_hashLen( pSource ), nStart, nCount;
|
|
|
|
nStart = hb_parns( 3 );
|
|
if( ! nStart )
|
|
++nStart;
|
|
nCount = HB_ISNUM( 4 ) ? ( HB_SIZE ) hb_parns( 4 ) : nLen - nStart + 1;
|
|
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pSource, nStart );
|
|
PHB_ITEM pValue = hb_hashGetValueAt( pSource, nStart );
|
|
if( pKey && pValue )
|
|
hb_hashAdd( pDest, pKey, pValue );
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
|
|
hb_itemReturn( pDest );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HMERGE )
|
|
{
|
|
PHB_ITEM pDest = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pSource = hb_param( 2, HB_IT_HASH );
|
|
PHB_ITEM pAction = hb_param( 3, HB_IT_BLOCK | HB_IT_NUMERIC );
|
|
|
|
if( pDest && pSource )
|
|
{
|
|
if( pAction && HB_IS_BLOCK( pAction ) )
|
|
{
|
|
HB_SIZE nLen = hb_hashLen( pSource ), nPos = 0;
|
|
while( ++nPos <= nLen )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pSource, nPos );
|
|
PHB_ITEM pValue = hb_hashGetValueAt( pSource, nPos );
|
|
if( pKey && pValue )
|
|
{
|
|
hb_vmPushEvalSym();
|
|
hb_vmPush( pAction );
|
|
hb_vmPush( pKey );
|
|
hb_vmPush( pValue );
|
|
hb_vmPushSize( nPos );
|
|
hb_vmSend( 3 );
|
|
{
|
|
PHB_ITEM pReturn = hb_stackReturnItem();
|
|
if( HB_IS_LOGICAL( pReturn ) && hb_itemGetL( pReturn ) )
|
|
hb_hashAdd( pDest, pKey, pValue );
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
hb_hashJoin( pDest, pSource, pAction ? hb_itemGetNI( pAction ) : HB_HASH_UNION );
|
|
|
|
hb_itemReturn( pDest );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HEVAL )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pBlock = hb_param( 2, HB_IT_BLOCK );
|
|
|
|
if( pHash && pBlock )
|
|
{
|
|
HB_SIZE nLen = hb_hashLen( pHash ), nStart, nCount;
|
|
|
|
nStart = hb_parns( 3 );
|
|
if( ! nStart )
|
|
++nStart;
|
|
nCount = HB_ISNUM( 4 ) ? ( HB_SIZE ) hb_parns( 4 ) : nLen - nStart + 1;
|
|
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pHash, nStart );
|
|
PHB_ITEM pValue = hb_hashGetValueAt( pHash, nStart );
|
|
if( pKey && pValue )
|
|
{
|
|
hb_vmPushEvalSym();
|
|
hb_vmPush( pBlock );
|
|
hb_vmPush( pKey );
|
|
hb_vmPush( pValue );
|
|
hb_vmPushSize( nStart );
|
|
hb_vmSend( 3 );
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
|
|
hb_itemReturn( pHash );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HSCAN )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_ANY );
|
|
|
|
if( pHash && pValue )
|
|
{
|
|
HB_BOOL fExact = hb_parl( 5 ), fFound = HB_FALSE;
|
|
HB_SIZE nLen = hb_hashLen( pHash ), nStart, nCount;
|
|
|
|
nStart = hb_parns( 3 );
|
|
if( ! nStart )
|
|
++nStart;
|
|
nCount = HB_ISNUM( 4 ) ? ( HB_SIZE ) hb_parns( 4 ) : nLen - nStart + 1;
|
|
|
|
if( HB_IS_BLOCK( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pKey = hb_hashGetKeyAt( pHash, nStart );
|
|
PHB_ITEM pVal = hb_hashGetValueAt( pHash, nStart );
|
|
if( pKey && pValue )
|
|
{
|
|
hb_vmPushEvalSym();
|
|
hb_vmPush( pValue );
|
|
hb_vmPush( pKey );
|
|
hb_vmPush( pVal );
|
|
hb_vmPushSize( nStart );
|
|
hb_vmSend( 3 );
|
|
{
|
|
PHB_ITEM pReturn = hb_stackReturnItem();
|
|
if( HB_IS_LOGICAL( pReturn ) && hb_itemGetL( pReturn ) )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_STRING( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_STRING( pItem ) && hb_itemStrCmp( pItem, pValue, fExact ) == 0 )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_NUMERIC( pValue ) )
|
|
{
|
|
double dValue = hb_itemGetND( pValue );
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_NUMERIC( pItem ) && hb_itemGetND( pItem ) == dValue )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_DATETIME( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_DATETIME( pItem ) &&
|
|
pItem->item.asDateTime.julian == pValue->item.asDateTime.julian &&
|
|
( !fExact || pItem->item.asDateTime.time == pValue->item.asDateTime.time ) )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_LOGICAL( pValue ) )
|
|
{
|
|
HB_BOOL fValue = hb_itemGetDL( pValue );
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_LOGICAL( pItem ) && hb_itemGetL( pItem ) == fValue )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_NIL( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_NIL( pItem ) )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( HB_IS_POINTER( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_POINTER( pItem ) &&
|
|
pItem->item.asPointer.value == pValue->item.asPointer.value )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( fExact && HB_IS_ARRAY( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_ARRAY( pItem ) &&
|
|
pItem->item.asArray.value == pValue->item.asArray.value )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
else if( fExact && HB_IS_HASH( pValue ) )
|
|
{
|
|
while( nCount-- )
|
|
{
|
|
PHB_ITEM pItem = hb_hashGetValueAt( pHash, nStart );
|
|
if( pItem )
|
|
{
|
|
if( HB_IS_HASH( pItem ) &&
|
|
pItem->item.asHash.value == pValue->item.asHash.value )
|
|
{
|
|
fFound = HB_TRUE;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
break;
|
|
++nStart;
|
|
}
|
|
}
|
|
|
|
hb_retns( fFound ? nStart : 0 );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 1123, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HSORT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
|
|
if( pHash )
|
|
{
|
|
hb_hashSort( pHash );
|
|
hb_itemReturn( pHash );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HCASEMATCH )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_LOGICAL );
|
|
|
|
if( pHash )
|
|
{
|
|
int iFlags = hb_hashGetFlags( pHash );
|
|
hb_retl( ( iFlags & HB_HASH_IGNORECASE ) == 0 );
|
|
if( pValue )
|
|
{
|
|
if( hb_itemGetL( pValue ) )
|
|
{
|
|
if( ( iFlags & HB_HASH_IGNORECASE ) != 0 )
|
|
{
|
|
hb_hashClearFlags( pHash, HB_HASH_IGNORECASE );
|
|
hb_hashSetFlags( pHash, HB_HASH_RESORT );
|
|
}
|
|
}
|
|
else if( ( iFlags & HB_HASH_IGNORECASE ) == 0 )
|
|
{
|
|
hb_hashClearFlags( pHash, HB_HASH_BINARY );
|
|
hb_hashSetFlags( pHash, HB_HASH_IGNORECASE | HB_HASH_RESORT );
|
|
}
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HBINARY )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_LOGICAL );
|
|
|
|
if( pHash )
|
|
{
|
|
int iFlags = hb_hashGetFlags( pHash );
|
|
hb_retl( ( iFlags & HB_HASH_BINARY ) != 0 );
|
|
if( pValue )
|
|
{
|
|
if( hb_itemGetL( pValue ) )
|
|
{
|
|
if( ( iFlags & HB_HASH_BINARY ) == 0 )
|
|
{
|
|
hb_hashClearFlags( pHash, HB_HASH_IGNORECASE );
|
|
hb_hashSetFlags( pHash, HB_HASH_BINARY | HB_HASH_RESORT );
|
|
}
|
|
}
|
|
else if( ( iFlags & HB_HASH_BINARY ) != 0 )
|
|
{
|
|
hb_hashClearFlags( pHash, HB_HASH_BINARY );
|
|
hb_hashSetFlags( pHash, HB_HASH_RESORT );
|
|
}
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HAUTOADD )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_LOGICAL | HB_IT_NUMERIC );
|
|
|
|
if( pHash )
|
|
{
|
|
int iOldFlags = hb_hashGetFlags( pHash ) & HB_HASH_AUTOADD_MASK;
|
|
hb_retni( iOldFlags );
|
|
if( pValue )
|
|
{
|
|
if( HB_IS_LOGICAL( pValue ) )
|
|
{
|
|
if( hb_itemGetL( pValue ) )
|
|
hb_hashSetFlags( pHash, hb_hashGetDefault( pHash ) ?
|
|
HB_HASH_AUTOADD_ALWAYS : HB_HASH_AUTOADD_ASSIGN );
|
|
else if( iOldFlags )
|
|
hb_hashClearFlags( pHash, iOldFlags );
|
|
}
|
|
else
|
|
{
|
|
int iNewFlags = hb_itemGetNI( pValue );
|
|
if( ( iNewFlags | iOldFlags ) != iNewFlags )
|
|
hb_hashClearFlags( pHash, iOldFlags );
|
|
if( iNewFlags )
|
|
hb_hashSetFlags( pHash, iNewFlags );
|
|
}
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HKEEPORDER )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_LOGICAL );
|
|
|
|
if( pHash )
|
|
{
|
|
int iFlags = hb_hashGetFlags( pHash );
|
|
hb_retl( ( iFlags & HB_HASH_KEEPORDER ) != 0 );
|
|
if( pValue )
|
|
{
|
|
if( hb_itemGetL( pValue ) )
|
|
{
|
|
if( ( iFlags & HB_HASH_KEEPORDER ) == 0 )
|
|
hb_hashSetFlags( pHash, HB_HASH_KEEPORDER );
|
|
}
|
|
else if( ( iFlags & HB_HASH_KEEPORDER ) != 0 )
|
|
{
|
|
hb_hashClearFlags( pHash, HB_HASH_KEEPORDER );
|
|
hb_hashSetFlags( pHash, HB_HASH_RESORT );
|
|
}
|
|
}
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HALLOCATE )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
PHB_ITEM pValue = hb_param( 2, HB_IT_NUMERIC );
|
|
|
|
if( pHash && pValue )
|
|
{
|
|
HB_ISIZ nMem = hb_itemGetNS( pValue );
|
|
if( nMem >= 0 )
|
|
hb_hashPreallocate( pHash, nMem );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HDEFAULT )
|
|
{
|
|
PHB_ITEM pHash = hb_param( 1, HB_IT_HASH );
|
|
|
|
if( pHash )
|
|
{
|
|
hb_itemReturn( hb_hashGetDefault( pHash ) );
|
|
if( hb_pcount() > 1 )
|
|
hb_hashSetDefault( pHash, hb_param( 2, HB_IT_ANY ) );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2017, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
HB_FUNC( HB_HSETAUTOADD ) { HB_FUNC_EXEC( HB_HAUTOADD ); hb_itemReturn( hb_param( 1, HB_IT_HASH ) ); }
|
|
HB_FUNC( HB_HSETCASEMATCH ) { HB_FUNC_EXEC( HB_HCASEMATCH ); hb_itemReturn( hb_param( 1, HB_IT_HASH ) ); }
|
|
HB_FUNC( HB_HSETBINARY ) { HB_FUNC_EXEC( HB_HBINARY ); hb_itemReturn( hb_param( 1, HB_IT_HASH ) ); }
|
|
HB_FUNC( HB_HSETORDER ) { HB_FUNC_EXEC( HB_HKEEPORDER ); hb_itemReturn( hb_param( 1, HB_IT_HASH ) ); }
|