active questions tagged flags - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:53:14Zhttp://stackoverflow.com/feeds/tag/flagshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1792437/c-enums-with-flags-attribute5C# Enums with Flags Attribute SKG2009-11-24T19:39:41Z2009-11-24T20:38:44Z
<p>I was wondering if Enums with Flag attribute are mostly used for Bitwise operations why not the compilers autogenerate the values if the enum values as not defined.</p>
<p>For eg.</p>
<pre>
[Flags]
public enum MyColor
{
Yellow = 1,
Green = 2,
Red = 4,
Blue = 8
}
</pre>
<p>It would be helpful if the values 1,2,4,8 are autogenerated if they are not assigned. Would like to know your thoughts on this.</p>
http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c8How to Compare Flags in C#?David Basarab2008-09-02T18:28:16Z2009-11-20T11:12:51Z
<p>I have a flag enum below.</p>
<pre><code>[Flags]
public enum FlagTest
{
None = 0x0,
Flag1 = 0x1,
Flag2 = 0x2,
Flag3 = 0x4
}
</code></pre>
<p>I cannot make the if statement evaluate to true.</p>
<pre><code>FlagTest testItem = FlagTest.Flag1 | FlagTest.Flag2;
if (testItem == FlagTest.Flag1)
{
// Do something,
// however This is never true.
}
</code></pre>
<p>How can I make this true?</p>
http://stackoverflow.com/questions/7244/anyone-know-a-good-workaround-for-the-lack-of-an-enum-generic-constraint11Anyone know a good workaround for the lack of an enum generic constraint?Keith2008-08-10T17:14:10Z2009-11-20T11:08:24Z
<p>What I want to do is something like this: I have enums with combined flagged values.</p>
<pre><code>public static class EnumExtension
{
public static bool IsSet<T>( this T input, T matchTo )
where T:enum //the constraint I want that doesn't exist in C#3
{
return (input & matchTo) != 0;
}
}
</code></pre>
<p>So then I could do:</p>
<pre><code>MyEnum tester = MyEnum.FlagA | MyEnum.FlagB
if( tester.IsSet( MyEnum.FlagA ) )
//act on flag a
</code></pre>
<p>Unfortunately C#'s generic where constraints have no enum restriction, only class and struct. C# doesn't see enums as structs (even though they are value types) so I can't add extension types like this.</p>
<p>Anyone know a workaround?</p>
http://stackoverflow.com/questions/1732780/simulate-a-128-bit-unsigned-integer-in-sql-and-c-using-a-64-bit-signed-value0Simulate a 128-bit unsigned integer in SQL and C# using a 64-bit signed value?Paul Smith2009-11-14T00:37:05Z2009-11-14T19:23:42Z
<p>Take this scenario: You have a few flag enumerations in C# tied to (and in fact generated from) Enum-ish tables in SQL Server. Say you are a distributor, and you allow your resellers to specify what US states they ship to. Being a brilliant and elegant software engineer, you implemented these as a bitwise-combinable flag value to save storage: </p>
<pre><code>create table USState (
StateID bigint, StateAbbr char(2), StateName varchar(50))
/* insert all US States + DC into USState, StateIDs must be in powers of two */
/* StateID 0 reserved for 'None': */
create procedure GetStatesByFlag (@StateFlags bigint) as
declare @StateIDs table
(
StateID bigint,
primary key (StateID)
)
insert into @StateIDs
select StateID
from USState
where @StateFlags & StateID != 0
or (@StateFlags = 0 and StateID = 0)
select s.StateID, s.StateAbbr, s.StateName
from
USState s join
@StateIDs si
on si.StateID = s.StateID
</code></pre>
<p>Sweet. You can include/exclude dynamically in both SQL and C# using bitwise logic, which lets you instantly hydrate checkbox lists and select lists in Asp.NET while still only storing a single 64-bit number to hold any combination of selections. And you don't need a non-indexable comparison operator in your procedures' WHERE clauses, except against the enum table itself which has a maximum of 64 rows. Searching your distributors for everyone who ships to Indiana and California can still use an equality comparison and an index.</p>
<p>Now you have a request to add support for US territories, armed forces mailing codes and Canadian provinces, and do so in a backwards-compatible fashion. There's no cutting the list down to < 64 entries, and the business <em>really</em> wants to avoid having to segregate old-school states from the rest of the territories and divisions.</p>
<p>What do you do?</p>
<p>Creative answers are appreciated, but the real challenge here is this: Is there a way to force the same bitwise math that works on unsigned 64-bit values to work on signed ones while using the negative space to exceed 64 possible bits, in both C# and SQL (2008)? If it matters, the flag is simulated, not a "real" flag, so it's technically not necessary for this to work against a CLR enum with [Flags] attribute. </p>
http://stackoverflow.com/questions/1734568/why-doesnt-this-outlook-2007-vba-work-im-trying-to-remove-a-flag-programatical1Why doesn't this Outlook 2007 VBA work (I'm trying to remove a flag programatically)?oo2009-11-14T15:31:42Z2009-11-14T15:58:00Z
<p>I have some code that adds a flag to an email but when I try this code below to remove it, it doesn't seem to have any effect in Outlook 2007.</p>
<pre><code> Public Sub Clear()
Dim objOutlook As Outlook.Application
Dim objInspector As Outlook.Inspector
Dim strDateTime As String
' Instantiate an Outlook Application object.
Set objOutlook = CreateObject("Outlook.Application")
' The ActiveInspector is the currently open item.
Set objExplorer = objOutlook.ActiveExplorer
' Check and see if anything is open.
If Not objExplorer Is Nothing Then
' Get the current item.
Dim arySelection As Object
Set arySelection = objExplorer.Selection
For x = 1 To arySelection.Count
Dim m As MailItem
Set m = arySelection.Item(x)
m.Categories = ""
m.FlagStatus = olNoFlag
m.FlagIcon = 0
m.Save
Next x
Else
' Show error message with only the OK button.
MsgBox "No explorer is open", vbOKOnly
End If
End Sub
</code></pre>
http://stackoverflow.com/questions/1726891/explanation-of-flags-in-go2Explanation of Flags in GoCasebash2009-11-13T03:09:40Z2009-11-13T03:54:33Z
<p>Can anyone explain flags in Go?</p>
<pre><code>flag.Parse()
var omitNewline = flag.Bool("n", false, "don't print final newline")
</code></pre>
http://stackoverflow.com/questions/1673588/elegent-web-permission-schemes1Elegent Web Permission SchemesOnion-Knight2009-11-04T12:51:42Z2009-11-04T12:59:36Z
<p>Hello Everyone,</p>
<p>I'm currently writing a web application that have about 6-12 pages. On each one of these pages, I want the user to be able to do some (or all) of the following actions: View, Add, Update, and Delete.</p>
<p>The current permission scheme I thought of is having an integer in a database. This integer will correspond to a binary number (e.g.: 26 -> 11010). The resulting binary number acts as a "toggle" and determines what permissions the user has. The definition of what bit represents what permission is stored in another table.</p>
<p>My problem is, if each page has 4 options (view, Add, Edit, Delete), then this way of determining permissions can get out of hand.</p>
<p>Does anyone have any other ideas for a permission scheme that would be as flexible (with respect to configurability) as this, but not as overwhelming (with respect to integer limits)?</p>
<p>Thanks,
Onion-Knight</p>
http://stackoverflow.com/questions/1599755/process-explorer-security-flags0Process Explorer security flags [closed]unknown (google)2009-10-21T09:43:16Z2009-11-03T15:28:55Z
<p>Hi,</p>
<p>What is the difference between "Default Enabled" and simply "Enabled"? My guess would be that "Default Enabled" can be changed at some point, but "Enabled" cannot. Is this correct?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1650851/outlook-2007-email-flag-status1Outlook 2007 - Email Flag StatusNoahD2009-10-30T16:21:31Z2009-11-02T17:45:02Z
<p>This might be a duplicate of <a href="http://stackoverflow.com/questions/1538390/outlook-2007-clear-categories-when-i-clear-flag">this question</a>?</p>
<p>Is there a way in Outlook 2007 using VBA to set a follow-up flag on an email object? It looks like it was supported in Outlook 2003 with .FlagStatus property, but I can't find it in 2007.</p>
<p>In advance, thanks!</p>
<p>I got a vote for this to be moved to SuperUser and considering this is VBA, it seems that Stackoverflow is the right place. But I am welcome to suggestions.</p>
http://stackoverflow.com/questions/1662144/testing-a-flags-enum-value-for-a-single-value2Testing a [Flags] enum value for a single valueJon Seigel2009-11-02T16:00:18Z2009-11-02T16:06:34Z
<p>If I have an <code>enum</code> that's marked with <code>[Flags]</code>, is there a way in .NET to test a value of this type to see if it only contains a single value? I can get the result I want using bit-counting, but I'd rather use built-in functions if possible.</p>
<p>When looping through the <code>enum</code> values dynamically, <code>Enum.GetValues()</code> returns the combination flags as well. Calling that function on the <code>enum</code> in the following example returns 4 values. However, I don't want the value <em>combinations</em> included in the inner algorithm. Testing individual <code>enum</code> values for equality is out, since the <code>enum</code> could potentially contain many values, and it also requires extra maintenance when the values in the <code>enum</code> change.</p>
<pre><code>[Flags]
enum MyEnum
{
One = 1,
Two = 2,
Four = 4,
Seven = One | Two | Four,
}
void MyFunction()
{
foreach (MyEnum enumValue in Enum.GetValues(typeof(MyEnum)))
{
if (!_HasSingleValue(enumValue)) continue;
// Guaranteed that enumValue is either One, Two, or Four
}
}
private bool _HasSingleValue(MyEnum value)
{
// ???
}</code></pre>
<p><br /><br />
Related: <a href="http://stackoverflow.com/questions/527486/c-enum-isdefined-on-combined-flags">StackOverflow: Enum.IsDefined on combined flags</a></p>
http://stackoverflow.com/questions/1660441/java-flag-to-enable-extended-serialization-debugging-info0Java flag to enable extended Serialization debugging infoAndreas Petersson2009-11-02T10:19:42Z2009-11-02T11:32:32Z
<p>i am currently struggling with HTTP Session replication on tomcat with complex objects.</p>
<p>some objects implement Serializable but hold non-serializable members.</p>
<p>unfortunately, the stacktraces do not provide much useful info here by default.</p>
<p><strong>there is a flag -XX:???? to enable verbose class names</strong> in the stacktrace when a NotSerializableException occurrs. this flag would help me a lot finding the source of the error. but i forgot its name</p>
<p>what is the name of the flag?</p>
http://stackoverflow.com/questions/1648374/freezing-ruby-version-is-it-possible-linker-flags-question0Freezing Ruby version - is it possible? (Linker flags question)Nava Carmon2009-10-30T06:50:43Z2009-10-30T06:50:43Z
<p>Hi,</p>
<p>I have a problem with RubyCocoa, which has a weak link to a libruby.dylib and not always can find this dylib on user's computer, which resulting a crash on the launch of my application (RubyCocoa based). I wonder whether it's possible to copy Ruby.framework to the bundle of my application and tell somehow to RubyCocoa to look for ruby dylib in the bundle of application. Or link RubyCocoa against the Ruby.framework and copy it to the RubyCocoa.framework? Currently RubyCocoa links against local version of ruby and has probably local fallback framework path. Anyway, these are other linker flags in the project :</p>
<pre><code>-undefined suppress -flat_namespace -Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk -lxml2 -lffi /usr/local/lib/libruby.1.8.6.dylib
</code></pre>
<p>Any suggestions?
Thanks</p>
<p>Nava</p>
http://stackoverflow.com/questions/1631266/flags-enum-c2Flags, enum (C)quano2009-10-27T14:40:11Z2009-10-29T11:30:02Z
<p>I'm not very used to programming with flags, but I think I just found a situation where they'd be useful:</p>
<p>I've got a couple of objects that register themselves as listeners to certain events. What events they register for is dependent on a variable that is sent to them when they are constructed. I think a nice way to do this would be to send bitwise OR connected variables, like such: TAKES_DAMAGE | GRABBABLE | LIQUID, etc. Then, in the constructor, the object can check what flags are set and register it self as listener for the ones that are.</p>
<p>But this is where I get confused. Preferably, the flags would be in an enum. But that is also a problem. If we have got these flags:</p>
<pre><code>enum
{
TAKES_DAMAGE,/* (0) */
GRABBABLE, /* (1) */
LIQUID, /* (2) */
SOME_OTHER /* (3) */
};
</code></pre>
<p>Then sending the flag SOME_OTHER (3) will be the same as sending GRABBABLE | LIQUID, will it not?</p>
<p>How exactly do you deal with this stuff?</p>
http://stackoverflow.com/questions/1573853/how-to-compare-flags-in-c-part-23How to Compare Flags in C#? (part 2)balexandre2009-10-15T17:22:44Z2009-10-28T19:34:41Z
<p>Bit flags are a little difficult to understand :)</p>
<p>I know about <a href="http://stackoverflow.com/questions/40211/how-to-compare-flags-in-c">this</a> and <a href="http://stackoverflow.com/questions/1086618/comparing-enum-flags-in-c">this</a> questions and I do understand the answers and I even followed this <a href="http://weblogs.asp.net/alessandro/archive/2007/10/02/bitwise-operators-in-c-or-xor-and-amp-amp-not.aspx" rel="nofollow">article</a> from a good friend of mine.</p>
<p>But I still cant figure it out when I need to "evolute" more than the standard...</p>
<p>What I'm trying to do is this:</p>
<pre><code> if (HttpContext.Current.Session["DebugSessionText"] != null)
{
showType = parDebug.Write2LogType.WARN |
parDebug.Write2LogType.ERROR |
parDebug.Write2LogType.INFO;
if (!chkInfo.Checked)
showType &= ~parDebug.Write2LogType.INFO; // remove INFOs
if (!chkError.Checked)
showType &= ~parDebug.Write2LogType.ERROR; // remove ERRORs
List<myDebugRow> list =
(List<myDebugRow>)HttpContext.Current.Session["DebugSessionText"];
gv.DataSource = list.FindAll(x => x.Type == showType));
}
gv.DataBind();
</code></pre>
<p>I do need to filter a List object, so I can get just what the user wants (show only INFO errors, exception ERRORs but WARNing errrors will always be showed) ... </p>
<p>Is there a direct way to do this or I need to filter it manually without using the LAMBDA expression?</p>
<p>Thank you for all the help.</p>
http://stackoverflow.com/questions/1626263/enum-flags-in-javascript0Enum flags in JavaScriptAndrey2009-10-26T17:50:43Z2009-10-26T18:26:22Z
<p>I need to emulate enum type in Javascript and approach seems pretty straight forward:</p>
<pre><code>var MyEnum = {Left = 1; Right = 2; Top = 4; Bottom = 8}
</code></pre>
<p>Now, in C# I could combine those values like this:</p>
<pre><code>MyEnum left_right = MyEnum.Left | MyEnum.Right
</code></pre>
<p>and then I can test if enum has certain value:</p>
<pre><code>if (left_right && MyEnum.Left == MyEnum.Left) {...}
</code></pre>
<p>Can I do something like that in Javascript?</p>
http://stackoverflow.com/questions/1611165/how-to-use-different-ifstream-modes-in-c1How to use different ifstream modes in c++?derrdji2009-10-23T02:47:34Z2009-10-23T04:35:48Z
<ol>
<li>According to the reference, if I use <code>ifstream infile ( "test.txt" , ifstream::in );</code> it will <code>Allow input operations on the stream.</code> But what are some of the examples of the "input operations"?</li>
<li>Is <code>ifstream infile ( "test.txt" , ifstream::in | ifstream::binary );</code> the right syntax to use multiple flags?</li>
<li>Will it make a difference if I change <code>ifstream::</code> to <code>iso::</code> ?</li>
</ol>
<p>Thank you</p>
http://stackoverflow.com/questions/1480548/tcp-flags-present-in-the-header0TCP flags present in the headerDeepak Konidena2009-09-26T06:08:04Z2009-10-20T05:33:45Z
<p>Hi,</p>
<p>on my ubuntu 9.04 the /usr/include/netinet/tcp.h defines the tcp header as follows</p>
<pre><code>struct tcphdr
{
u_int16_t source;
u_int16_t dest;
u_int32_t seq;
u_int32_t ack_seq;
# if __BYTE_ORDER == __LITTLE_ENDIAN
u_int16_t res1:4;
u_int16_t doff:4;
u_int16_t fin:1;
u_int16_t syn:1;
u_int16_t rst:1;
u_int16_t psh:1;
u_int16_t ack:1;
u_int16_t urg:1;
u_int16_t res2:2;
# elif __BYTE_ORDER == __BIG_ENDIAN
u_int16_t doff:4;
u_int16_t res1:4;
u_int16_t res2:2;
u_int16_t urg:1;
u_int16_t ack:1;
u_int16_t psh:1;
u_int16_t rst:1;
u_int16_t syn:1;
u_int16_t fin:1;
# else
# error "Adjust your <bits/endian.h> defines"
# endif
u_int16_t window;
u_int16_t check;
u_int16_t urg_ptr;
};
</code></pre>
<p>In the flags section, FIN,SYN,RST,PSH,ACK,URG values are defined whereas i can't find the ECE and CWR flags. What do the res1,res2 and doff values defined in the struct tcphdr mean?
Is there anyway to access the ECE and CWR flag values too?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1589235/how-to-make-functions-with-flag-parameters-c2How to make functions with flag parameters? (C++)Keand642009-10-19T15:07:49Z2009-10-19T15:43:20Z
<p>How could I make a function with flags like how Windows' CreateWindow(...style | style,...), for example, a createnum function:</p>
<pre><code>int CreateNum(flag flags) //???
{
int num = 0;
if(flags == GREATER_THAN_TEN)
num = 11;
if(flags == EVEN && ((num % 2) == 1)
num++;
else if(flags == ODD && ((num % 2) == 0)
num++;
return num;
}
//called like this
int Number = CreateNum(GREATER_THAN_TEN | EVEN);
</code></pre>
<p>Is this possible, and if so, how?</p>
http://stackoverflow.com/questions/1553275/how-to-strip-a-list-of-tuple-with-python0How to strip a list of tuple with python ?Natim2009-10-12T07:53:20Z2009-10-12T08:44:55Z
<p>I have an array with some flag for each case.
In order to use print the array in HTML and use colspan, I need to convert this :</p>
<pre><code>[{'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': True, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': True}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}, {'serve': False, 'open': False}]
</code></pre>
<p>In this for the open flag:</p>
<pre><code>[{'colspan': 12, 'open': False}, {'colspan': 60, 'open': True}, {'colspan': 24, 'open': False}]
</code></pre>
<p>And another to generate the serve one.</p>
<p>How can I do this the smartest way using Python ?</p>
<p>I could count the case one by one, but it doesn't seams to be a good idea.</p>
http://stackoverflow.com/questions/1547124/wpf-combobox-listbox-with-multiselect-based-on-enum-with-flags0WPF ComboBox/ListBox with MultiSelect based on Enum with Flagssohum2009-10-10T05:14:31Z2009-10-10T07:59:02Z
<p>So I may be pushing the boundaries just a bit...</p>
<p>Basically I have the following enum, declared in C# code:</p>
<pre><code>[Flags]
public enum FlaggedEnum : int
{
Option1 = 1,
Option2 = 2,
Option3 = 4,
Option4 = 8,
...
Option16 = 32768,
None = 0
}
</code></pre>
<p>This enum is a member of an object which I have successfully bound to a DataGrid object. Successfully meaning that I have bound all the other fields successfully. :)</p>
<p>What I want to achieve here is a control where all the appropriate options above are checked, that behaves and acts like a ComboBox/ListBox. So you click on the field and a drop-down menu pops up with the ability to "check" whichever options are required.</p>
<p>The control will also have to be able to read from the enum and write an enum.</p>
<p>I'm a WPF novice so I have no idea where to go apart from creating a ComboBox and binding to the column... Any help would be appreciated!</p>
http://stackoverflow.com/questions/255423/how-do-i-figure-out-what-onum-options-do-in-gcc1How do I figure out what -O<num> options do in gcc?SetJmp2008-11-01T02:16:23Z2009-10-03T12:18:18Z
<p>I seem to remember being able to print out (or locate) the specific switches that each -O<num> option turns on. Can you remind?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1426577/how-to-use-flags-enums-in-linq-to-entities-queries0How to use flags enums in Linq to Entities queries?Vasi2009-09-15T11:21:26Z2009-09-30T12:38:25Z
<p>Hi,</p>
<p>I have a [Flags] enum like this:</p>
<pre><code>[Flags]
public enum Status
{
None = 0,
Active = 1,
Inactive = 2,
Unknown = 4
}
</code></pre>
<p>A Status enum may contain two values such as: </p>
<pre><code>Status s = Status.Active | Status.Unknown;
</code></pre>
<p>Now I need to create a linq query (LINQ to ADO.NET Entities) and ask for records whose status is s above, that is Active or Unknown;</p>
<pre><code>var result = from r in db.Records
select r
where (r.Status & (byte)s) == r.Status
</code></pre>
<p>Of course I get an error, because LINQ to Entities only knows to handle primitive types in the Where clause.</p>
<p>The error is: </p>
<blockquote>
<p>Unable to create a constant value of
type 'Closure type'. Only primitive
types ('such as Int32, String, and
Guid') are supported in this context.</p>
</blockquote>
<p>Is there a workable way? I may have a status Enum with 10 possible values and to query for 5 of the statuses. How do I construct the query using Flags enum in an elegant way?</p>
<p>Thanks.</p>
<p><strong>Update</strong></p>
<p>This seems to be a Linq to Entities problem. I think in LINQ to SQL it works (not sure, didn't tested).</p>
http://stackoverflow.com/questions/1471922/cmap-enum-to-flags-enum0C#:Map Enum to [Flags] Enumunknown (google)2009-09-24T14:07:10Z2009-09-24T15:47:03Z
<p>I have an Enum, suppose:</p>
<pre><code>public enum ItemStatus {
Available, Unavailable
}
</code></pre>
<p>I have a method that returns a list of those TVs, based on a filter. And a filter is represented by an Enum:</p>
<pre><code>[Flags]
public enum ItemStatusFilter {
Available = 1, Unavailable = 2
}
</code></pre>
<p>Question: what is a slick way to check if given instance of ItemStatus matches given instance of ItemStatusFilter? </p>
<p>I dislike the idea of assigning values to ItemStatus members (1,2) since it is not required by that enum. Right now my code looks as follows: </p>
<pre><code>public static bool Matches(this TagStatusFilter statusFilter, TagStatus status) {
if (status == TagStatus.Available && ((statusFilter & TagStatusFilter.Available) != 0)) return true;
if (status == TagStatus.Unavailable && ((statusFilter & TagStatusFilter.Unavailable) != 0)) return true;
return false;
}
</code></pre>
<p>What about something along these lines?</p>
<pre><code>[Flags]
public enum TagStatusFilter {
Available = 1 << TagStatus.Available,
Unavailable = 1 << TagStatus.Unavailable
}
</code></pre>
<p>The goal is to reduce amount of code, and reduce coupling between types.</p>
<p>Does it feel like <code>enum TagStatusFilter</code> is misused here?</p>
http://stackoverflow.com/questions/1439498/how-do-i-make-a-rails-activerecord-dependent-on-an-attribute0How do I make a Rails ActiveRecord dependent on an attribute?Andrew Ferk2009-09-17T15:12:47Z2009-09-17T15:25:14Z
<p>I have created an ActiveRecord for a customer, and now they would like it so when it's destroyed, it is actually kept around for a manual rollback.</p>
<p>What I would like to do is create a boolean attribute called 'active', and it defaults to 1. When a record is destroyed, the attribute is toggled to 0.</p>
<p>I know I could change all my queries to have an extra condition of active=1, or use scoping, or even use the type column and inheritance (which is what I'm doing to complete it ASAP).</p>
<p>Is there any way to tell an ActiveRecord that a record in the table is actually a record ONLY if an attribute is a certain value (in this case active=1), and if it's anything else, completely ignore it?</p>
<p>Thanks,
Andrew</p>
http://stackoverflow.com/questions/1086618/comparing-enum-flags-in-c2Comparing enum flags in C#Enyra2009-07-06T12:03:23Z2009-09-15T12:26:09Z
<p>Hello folk,</p>
<p>I need to detect if a flag is set within an enum value, which type is marked with the Flag attribute.</p>
<p>Usually it is made like that:</p>
<pre><code>(value & flag) == flag
</code></pre>
<p>But since I need to do this by generic (sometimes at runtime I event have only an "Enum" reference. I can not find an easy way to use the & operator. At the moment I make it like this:</p>
<pre><code> public static bool IsSet<T>(this T value, T flags) where T : Enum
{
Type numberType = Enum.GetUnderlyingType(typeof(T));
if (numberType.Equals(typeof(int)))
{
return BoxUnbox<int>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(sbyte)))
{
return BoxUnbox<sbyte>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(byte)))
{
return BoxUnbox<byte>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(short)))
{
return BoxUnbox<short>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(ushort)))
{
return BoxUnbox<ushort>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(uint)))
{
return BoxUnbox<uint>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(long)))
{
return BoxUnbox<long>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(ulong)))
{
return BoxUnbox<ulong>(value, flags, (a, b) => (a & b) == b);
}
else if (numberType.Equals(typeof(char)))
{
return BoxUnbox<char>(value, flags, (a, b) => (a & b) == b);
}
else
{
throw new ArgumentException("Unknown enum underlying type " + numberType.Name + ".");
}
}
private static bool BoxUnbox<T>(object value, object flags, Func<T, T, bool> op)
{
return op((T)value, (T)flags);
}
</code></pre>
<p>But I don't like the never ending if - else blocks, so is there a way to cast these values that I can use the & operator or any other solution to check this?</p>
http://stackoverflow.com/questions/1425224/flagsattribute-negative-values0flagsattribute - negative values?unknown (yahoo)2009-09-15T05:13:03Z2009-09-15T08:59:31Z
<p>Hi,
I have a enum with a flagsattribute, which i use to represent permissions. I use it to compare <code>if (CurrentPermissions & Permission1 == Permission1)</code> etc...</p>
<pre><code>[FlagsAttribute]
enum MyPermission
{
None = 0,
Permission1 = 1,
Permission2 = 2,
Permission3 = 4,
Permission4 = 8,...
..................
and so on
}
</code></pre>
<p>However, we reach a max limit. Can i use negative values like -1, -2, -4 etc. once i run out of enum values ?</p>
http://stackoverflow.com/questions/1406554/why-use-flagsbitmasks-rather-than-a-series-of-booleans5Why use flags+bitmasks rather than a series of booleans?Winston Fassett2009-09-10T17:12:13Z2009-09-11T00:52:10Z
<p>Given a case where I have an object that may be in one or more true/false states, I've always been a little fuzzy on why programmers frequently use flags+bitmasks instead of just using several boolean values. </p>
<p>It's all over the .NET framework. Not sure if this is the best example, but the .NET framework has the following:</p>
<pre><code>public enum AnchorStyles
{
None = 0,
Top = 1,
Bottom = 2,
Left = 4,
Right = 8
}
</code></pre>
<p>So given an anchor style, we can use bitmasks to figure out which of the states are selected. However, it seems like you could accomplish the same thing with an AnchorStyle class/struct with bool properties defined for each possible value, or an array of individual enum values.</p>
<p>Of course the main reason for my question is that I'm wondering if I should follow a similar practice with my own code. </p>
<p>So, why use this approach?</p>
<ul>
<li>Less memory consumption? (it doesn't <em>seem</em> like it would consume less than an array/struct of bools)</li>
<li>Better stack/heap performance than a struct or array?</li>
<li>Faster compare operations? Faster value addition/removal?</li>
<li>More convenient for the developer who wrote it?</li>
</ul>
http://stackoverflow.com/questions/1407197/using-binary-flags-to-represent-states-options-etc0Using binary flags to represent states, options, etcAustin Hyde2009-09-10T19:20:45Z2009-09-10T21:27:32Z
<p>If I wanted to represent states or options or something similar using binary "flags" so that I could pass them and store them to an object like <code>OPTION1 | OPTION2</code> where <code>OPTION1</code> is 0001 and <code>OPTION2</code> is 0010, so that what gets passed is 0011, representing a mix of the options.</p>
<p>How would I do this in C++? I was thinking something like</p>
<pre><code>enum Option {
Option_1 = 0x01,
Option_2 = 0x02,
Option_3 = 0x04,
//...
}
void doSomething(Option options) {
//...
}
int main() {
doSomething(Option_1|Option_2);
}
</code></pre>
<p>But then ideally, <code>doSomething</code> knows how to interpret the given Option.</p>
<p>Am I on the right track? Is there a better way? </p>
<p><strong>Update</strong></p>
<p>And wouldn't I have to define an <code>Option</code> for every possible combination, also?</p>
http://stackoverflow.com/questions/1315055/mutually-exclusive-flags-on-fileputcontents2Mutually exclusive flags on file_put_contents?eyze2009-08-22T03:37:41Z2009-09-07T06:53:44Z
<p>On the <a href="http://php.net/file-put-contents" rel="nofollow">file_put_contents</a>() documentation, it says the following:</p>
<p><strong>FILE_APPEND</strong>:</p>
<blockquote>
<p>Mutually exclusive with LOCK_EX since
appends are atomic and thus there is
no reason to lock.</p>
</blockquote>
<p><strong>LOCK_EX</strong>:</p>
<blockquote>
<p>Mutually exclusive with FILE_APPEND.</p>
</blockquote>
<p>Yet, a couple of lines bellow I see the following code:</p>
<pre><code><?php
$file = 'people.txt';
// The new person to add to the file
$person = "John Smith\n";
// Write the contents to the file,
// using the FILE_APPEND flag to append the content to the end of the file
// and the LOCK_EX flag to prevent anyone else writing to the file at the same time
file_put_contents($file, $person, FILE_APPEND | LOCK_EX);
?>
</code></pre>
<p>So, are the FILE_APPEND and LOCK_EX flags mutually exclusive or not? If yes, why do they use it in the example? Is this a case of bad documentation?</p>
<p>Thanks for your input!</p>
http://stackoverflow.com/questions/1332938/efficient-way-to-find-the-flags-enum-length2Efficient way to find the flags enum length?Valentin Vasilyev2009-08-26T07:29:52Z2009-08-28T01:11:15Z
<p>Consider this:</p>
<pre><code>[Flags]
enum Colors
{
Red=1,
Green=2,
Blue=4
}
Colors myColor=Colors.Red|Colors.Blue;
</code></pre>
<p>Currently, I'm doing it as follows:</p>
<pre><code>int length=myColors.ToString().Split(new char[]{','}).Length;
</code></pre>
<p>But I hope there is a more efficient way of finding the length, maybe based on bitset operations.</p>
<p>Please, if possible, provide explanation why and how your solution works.</p>
<p>Also, if this a duplicate, please point to it and I'll delete this question. The only similar questions on SO I've been able to find were concerned about finding the length of all possible combinations of <code>Colors</code> enum, but not of the <code>myColors</code> variable.</p>
<p>UPDATE: I carefully benchmarked every solution (1 000 000 iterations each) and here is the results:</p>
<ol>
<li>Stevo3000 - 8ms</li>
<li>MattEvans - 10ms</li>
<li>Silky - 34ms</li>
<li>Luke - 1757ms</li>
<li>Guffa - 4226ms</li>
<li>Tomas Levesque - 32810ms</li>
</ol>
<p>The Stevo3000 is a clear winner (with Matt Evans holding silver medal).</p>
<p>Thank you very much for your help.</p>
<p>UPDATE 2:
This solution runs even faster: 41 ms for 100 000 000 iterations (roughly 40 times faster (32bit OS) than Stevo3000)</p>
<pre><code>UInt32 v = (UInt32)co;
v = v - ((v >> 1) & 0x55555555);
v = (v & 0x33333333) + ((v >> 2) & 0x33333333);
UInt32 count = ((v + (v >> 4) & 0xF0F0F0F) * 0x1010101) >> 24;
</code></pre>