How use bit/bit-operator to control object state? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T19:33:27Zhttp://stackoverflow.com/feeds/question/516646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/516646/how-use-bit-bit-operator-to-control-object-state4How use bit/bit-operator to control object state?Cesar Romero2009-02-05T16:25:45Z2009-02-05T19:24:04Z
<p>I want to create light object data-package to pass between client and server applications.</p>
<p>It is a so simple task, that I can control with only 1 byte, so
each bit in a byte will have a different meaning, </p>
<p>Using only the bit</p>
<pre><code>0 = False
1 = True
</code></pre>
<p>Itens I need now:</p>
<pre><code>1 - Loaded from database
2 - Persisted
3 - Changed
4 - Marked to Delete
5 -
6 -
7 - Null Value
8 - Read Only
1) How do I use bit operators in Delphi to check each bit value?
2) How do I set the bit Values?
</code></pre>
<p><strong>Solution</strong></p>
<p>After all help, Ill use the next Set</p>
<pre><code> TStateType = (
stLoaded = 0, // loaded from persistance
stNative = 2, // value loaded and converted to native type
stPersisted = 3, // saved
stChanged = 4, // object or member changed
stToDelete = 5, // marked to delete
stReadOnly = 6, // read only object, will not allow changes
stNull = 7 // value is null
);
TState = Set of TStateType;
</code></pre>
<p>And for stream -> persistance, this will be the record to be used:</p>
<pre><code> TDataPackage = record
Data: TBytes;
TypeInfo: TMetaInfo;
State: Byte;
Instance: TBuffer;
end;
</code></pre>
<p><strong>Thank you</strong> guys, for all the answers and comments.</p>
http://stackoverflow.com/questions/516646/how-use-bit-bit-operator-to-control-object-state/516693#5166931Answer by Scott W for How use bit/bit-operator to control object state?Scott W2009-02-05T16:36:08Z2009-02-05T16:36:08Z<p><a href="http://library.thinkquest.org/C006657/delphi/operators_in_delphi.htm" rel="nofollow">This page</a> describes Delphi operators, including bitwise operators.</p>
<p>It sounds like you need to use the and operator. For example:</p>
<pre><code>const
LOADED_FROM_DATABASE = 1;
PERSISTED = 2;
CHANGED = 4;
// etc...
//...
if (bitFlags and LOADED_FROM_DATABASE) <> 0 then
begin
// handle LOADED FROM DATABASE
end;
if (bitFlags and PERSISTED) <> 0 then
begin
// handle PERSISTED
end;
// etc...
</code></pre>
<p>In order to set the flags, you can use OR:</p>
<pre><code>bitFlags := LOADED_FROM_DATABASE or PERSISTED or CHANGED;
</code></pre>
http://stackoverflow.com/questions/516646/how-use-bit-bit-operator-to-control-object-state/516737#5167376Answer by Craig Stuntz for How use bit/bit-operator to control object state?Craig Stuntz2009-02-05T16:46:01Z2009-02-05T16:58:19Z<p>I would use a set for this:</p>
<pre><code>type
TMyDatum = (mdLoaded, mdPersisted, mdChanged, mdMarkedToDelete, ...);
TMyData = set of TMyDatum;
var
Foo: TMyData;
begin
Foo := [mdLoaded, mdChanged];
if (mdPersisted in Foo) then ...
</code></pre>
<p>These are implemented as integers, so you can pass them easily. And I find the code much, much more readable than bitwise operators.</p>
http://stackoverflow.com/questions/516646/how-use-bit-bit-operator-to-control-object-state/516847#5168477Answer by PetriW for How use bit/bit-operator to control object state?PetriW2009-02-05T17:08:15Z2009-02-05T17:08:15Z<p>I'd really use a set for this. However, I see you really want a byte. Use sets everywhere then typecast to a byte in the end.</p>
<p>This solution will require much less typing, has support for standard delphi operators and really carries no performance penalty as Barry Kelly has pointed out.</p>
<pre><code>procedure Test;
type
TSetValues = (
TSetValue1 = 0,
TSetValue2 = 1,
TSetValue4 = 2,
TSetValue8 = 3,
TSetValue16 = 4,
TSetValue32 = 5,
TSetValue64 = 6,
TSetValue128 = 7
);
TMySet = set of TSetValues;
var
myValue: byte;
mySet: TMySet;
begin
mySet := [TSetValue2, TSetValue16, TSetValue128];
myValue := byte(mySet);
ShowMessage(IntToStr(myValue)); // <-- shows 146
end;
</code></pre>
http://stackoverflow.com/questions/516646/how-use-bit-bit-operator-to-control-object-state/517220#5172200Answer by Tom A for How use bit/bit-operator to control object state?Tom A2009-02-05T18:25:02Z2009-02-05T18:25:02Z<p>I asked a related question here: "<a href="http://stackoverflow.com/questions/517138/is-it-faster-to-use-an-array-or-bit-access-for-multiple-boolean-values/517184#517184">Is it faster to use an array or bit access for multiple boolean values?</a> "</p>