FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour What's the best way to set individual bits, in a bit string
Posts: 103
Joined: Fri Aug 09, 2013 12:43 AM
What's the best way to set individual bits, in a bit string
Posted: Fri Feb 26, 2021 08:00 PM

Hi,

Looking at Harbour SetBit(), it looks like it requires either a number of a hex string.

Is there an existing function that can take a binary string like "001110110", and set one of the 0 bits to 1?

Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sat Feb 27, 2021 10:11 AM
Code (fw): Select all Collapse
cBits := "001110110"
? Chr(AscPos( 3 ) ) // --> "1" : Character at 3rd position
// Now set character at 2nd position to "1"
cBits := PosChar( cBits, "1", 2 )
? cBits // "011110110"
Regards



G. N. Rao.

Hyderabad, India
Posts: 103
Joined: Fri Aug 09, 2013 12:43 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sat Feb 27, 2021 03:11 PM
Nages,

Thanks, of course we can do it that way. Sorry, I left out that I was looking for a C alternative. I guess my real question is how to convert Joe Booth's Bit.c to Harbour:


Code (fw): Select all Collapse
/*******************************************************************************
* Program Id: bit.c
*    Version: 1.00
********************************************************************************
*
* Purpose: Sets the given bit in a passed bit string.  Returns the previous
*          value.  Be sure to pass the string by reference.  NOTE.  In order
*          to stay as fast as possible, minimal parameter checking is
*          performed.  It is up to the user to not be too stupid.
*
* Syntax:  bit( <OptC String>, <OptN (1...n) Offset> [, <OptL Set/Clear>] )
*
********************************************************************************
#include <extend.h>

CLIPPER bit( void )
{
   unsigned char   mask,
                  *ptr;
   unsigned int    loc,
                   offset = _parni( 2 ) - 1,
                   res    = 0;

   loc = offset / 8;
   if ( loc < _parclen( 1 ) )
   {
      ptr = _parc( 1 ) + loc;
      loc = offset % 8;
      res = *ptr << loc & 0x80;

      if ( PCOUNT > 2 )
      {
         mask = (unsigned char ) 0x80 >> loc;
         if ( _parl( 3 ) )
            *ptr = *ptr | mask;
         else
            *ptr = *ptr & ~mask;
      }
   }
   _retl( res );
}




nageswaragunupudi wrote:
Code (fw): Select all Collapse
cBits := "001110110"
? Chr(AscPos( 3 ) ) // --> "1" : Character at 3rd position
// Now set character at 2nd position to "1"
cBits := PosChar( cBits, "1", 2 )
? cBits // "011110110"
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 04:31 AM
Code (fw): Select all Collapse
#include <hbapi.h>

HB_FUNC( BIT )
{
   unsigned char   mask,
                  *ptr;
   unsigned int    loc,
                   offset = hb_parni( 2 ) - 1,
                   res    = 0;

   loc = offset / 8;
   if ( loc < hb_parclen( 1 ) )
   {
      ptr = hb_parc( 1 ) + loc;
      loc = offset % 8;
      res = *ptr << loc & 0x80;

      if ( hb_pcount() > 2 )
      {
         mask = (unsigned char ) 0x80 >> loc;
         if ( hb_parl( 3 ) )
            *ptr = *ptr | mask;
         else
            *ptr = *ptr & ~mask;
      }
   }
   hb_retl( res );
}
Regards



G. N. Rao.

Hyderabad, India
Posts: 103
Joined: Fri Aug 09, 2013 12:43 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 03:46 PM

Thanks, nages

I badly want to understand the Harbour C api. There's certainly plenty of documentation in terms of reference material, and a few examples from the Clipper days and the Harbour implementation.

But I'm so far from understanding it, and there's no clear path to being an expert. Months back, Antonio put together a full-working sample, within a couple of days, that interfaced to a Prolog dll library. I could NEVER have figured out how to construct Antonio's interface.

There doesn't seem to be any step-by-step tutorial and exercise guide for coding in the Harbour C api, along with any Fivewin extensions.

Anyway, thanks for taking the time to code this, it'll be useful.

Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 04:04 PM

Please study "c" programs in fwh\samples\function folder.

Regards



G. N. Rao.

Hyderabad, India
Posts: 103
Joined: Fri Aug 09, 2013 12:43 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 06:01 PM

Thanks nage,

There's no function folder in samples.

if you mean the .c code in the ..\samples and subfolders, yes that's helpful.

But nobody - as far as I know - has put together any kind structured tutorial document with short samples and maybe exercises. All we have is reference documentation and samples, which leaves it up a random process, and there's always a chance that the developer might miss something fundamental.

Let me think about this a bit. Maybe I can start the docs, from the vantage point of someone who used the api and experimented a little, but needs to develop a foundation.

Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 06:21 PM

Very sorry:
fwh\source\function

Regards



G. N. Rao.

Hyderabad, India
Posts: 10733
Joined: Sun Nov 19, 2006 05:22 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 06:33 PM
If you are interested, you can make a beginning with this sample:
Code (fw): Select all Collapse
#include "fivewin.ch"

//----------------------------------------------------------------------------//

function Main()

   local num1 := 100
   local num2 := 50
   local result

   result := MY_ADD( num1, num2 )

   ? num1, num2, result

return nil

//----------------------------------------------------------------------------//

#pragma BEGINDUMP

#include <hbapi.h>

HB_FUNC( MY_ADD ) // ( num1, num2 ) --> result
{
   int n1 = hb_parni( 1 );
   int n2 = hb_parni( 2 );

   hb_retni( n1 + n2 );
}


#pragma ENDDUMP

//----------------------------------------------------------------------------//


Save this to fwh\samples folder and build with buildh.bat.

After this, you can try adding functions like MY_MULT(), MY_DIVIDE(), etc.
Then you can make more complex functions.
Regards



G. N. Rao.

Hyderabad, India
Posts: 103
Joined: Fri Aug 09, 2013 12:43 AM
Re: What's the best way to set individual bits, in a bit string
Posted: Sun Feb 28, 2021 07:30 PM

Yes, that's a nice sample to start with, thanks.

Continue the discussion