User Charlie - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T08:49:23Zhttp://stackoverflow.com/feeds/user/18529http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691046/what-happened-to-the-detach-all-option-in-visual-studio/1691112#16911120Answer by Charlie for What happened to the "Detach All" option in Visual Studio?Charlie2009-11-06T23:00:54Z2009-11-06T23:00:54Z<p>One thing that can prevent detaching from the process is mixed-mode debugging. I don't have much experience with web debugging, but if the debugger is attaching to the IIS process or something, it seems like the debugging mode could be related.</p>
<p>Anyway, is it possible that you're doing mixed-mode debugging (rather than native-only or managed-only) by accident?</p>
http://stackoverflow.com/questions/1669026/how-to-access-an-indexed-property-on-a-com-object-from-powershell2How to access an indexed property on a COM object from PowershellCharlie2009-11-03T17:49:05Z2009-11-04T23:31:23Z
<p>I'm using Powershell to talk to the Windows 7 task scheduler service via COM through the <a href="http://msdn.microsoft.com/en-us/library/aa383600%28VS.85%29.aspx" rel="nofollow">Task Scheduler 2.0 interfaces</a> (e.g. ITaskDefinition). I want to pull out a particular trigger from the <a href="http://msdn.microsoft.com/en-us/library/aa381325%28VS.85%29.aspx" rel="nofollow">Triggers</a> collection on ITaskDefinition. It appears that the proper way to extract a particular trigger is through the <a href="http://msdn.microsoft.com/en-us/library/aa381894%28VS.85%29.aspx" rel="nofollow">Item</a> property, which is an indexed property.</p>
<p>My first try looks something like this:</p>
<pre><code>$sched = New-Object -Com "Schedule.Service"
$sched.Connect()
$folder = $sched.GetFolder('\')
$task = $folder.GetTask("some task")
$triggers = $task.Definition.Triggers
$trigger = $triggers[0]
</code></pre>
<p>However, the last line fails with this message:</p>
<pre><code>Unable to index into an object of type System.__ComObject.
</code></pre>
<p>I've tried some other variations on this theme, e.g. <code>$triggers.Item(0)</code>, all with no luck. I'm guessing this has to do with <code>$trigger</code> being a COM object, because I think indexed properties work fine on other types.</p>
<p>Does anyone know the correct way to do this?</p>
http://stackoverflow.com/questions/946826/how-to-detect-use-of-perforces-reopen-for-edit-from-a-script0how to detect use of Perforce's "reopen for edit" from a scriptCharlie2009-06-03T19:54:36Z2009-10-23T19:05:21Z
<p>I'm working on a script to interact with Perforce, which among other things needs to be able to understand pending changelists. For this I use '<code>p4 describe</code>' and '<code>p4 opened</code>', which are pretty straightforward. For instance, a file opened for edit shows up like this (from p4 opened):</p>
<pre><code>//source/stuff/things.h#1 add default change (text)
</code></pre>
<p>What I <em>can't</em> seem to figure out is how to detect cases where a user has branched a file and then used the 'Reopen for edit' command on that file (which amounts to using '<code>p4 edit</code>' on the file to be branched) prior to submitting it. Same thing goes for integrating a file and then using 'Reopen for edit' before submitting the integration. In the branch case, the file shows up as an 'add' with no indication that there's also a branch going on (so the above example could be either a true add or a reopened branch). In the integrate case it, shows up as an 'edit'. In both cases, after I submit the change I can see that the file was branched/integrated, but I need to be able to do this for pending changes. In theory I would hope to see something like this, where things.h is being branched and edited from thangs.h:</p>
<pre><code>//source/stuff/things.h#1 add default change (text)
branch from //source/other/thangs.h#42
</code></pre>
<p>Does anybody know of a way to accomplish this? I'll also mention that I'm running an old-ish version of Perforce (from 2004), so perhaps it's doable in newer versions and I just need to update my software.</p>
http://stackoverflow.com/questions/623353/catching-exit1/1451154#14511540Answer by Charlie for Catching exit(1);Charlie2009-09-20T14:34:57Z2009-09-20T14:34:57Z<p>I haven't yet found a solution for this, but here's one possible reason why your <code>atexit</code> handler isn't helping: the dll may be statically linking to the CRT. This would mean that the code for exit() is built directly in to the dll, which would give it its own private list of exit handlers, so the atexit handler registered from within your host process would never be seen. If you were able to call <code>atexit()</code> from within the dll (which would be pretty tricky to arrange), it would likely work.</p>
<p>Just a guess - hope that helps.</p>
http://stackoverflow.com/questions/745652/does-sql-server-consider-culture-locale-when-converting-values-to-from-strings1does SQL Server consider culture/locale when converting values to/from strings?Charlie2009-04-13T22:39:50Z2009-09-09T05:03:10Z
<p>I'm attempting to update a large codebase to properly specify the <code>CultureInfo</code> and/or <code>IFormatProvider</code> when formatting/parsing values. For instance, when parsing a value I get from the user, I pass <code>CultureInfo.CurrentCulture</code> when calling <code>TryParse</code>, and when converting a float to a string for persistence, I pass <code>CultureInfo.InvariantCulture</code> when calling <code>ToString</code>.</p>
<p>My question is this: when generating SQL queries, should I format numbers and the like using the invariant culture, or the SQL server's culture, or what? Which is to say, if my computer is set to German (Germany), which of these queries is right?</p>
<pre><code>select foo from bar where baz = 123.45
</code></pre>
<p>or </p>
<pre><code>select foo from bar where baz = 123,45
</code></pre>
<p>Likewise, if I use SQL's <code>CAST</code> to convert a floating-point value to a string, what locale is SQL going to use for the conversion?</p>
<p>I did search the SQL docs, but so far I can't find any good answers. I did find some info about date formatting (SET DATEFORMAT and the like), but that's it.</p>
<p><strong>NOTE</strong>: I realize that the preferred way to pass inputs to a SQL query is via parameters, so let's assume for argument's sake that I have a good reason to format them into the query string. Also, handing query inputs is only part of the broader question.</p>
http://stackoverflow.com/questions/1214876/guidelines-on-usage-of-sizet-and-offsett1guidelines on usage of size_t and offset_t ?Charlie2009-07-31T21:01:15Z2009-08-19T21:16:25Z
<p>This is probably a C++ 101 question: I'm curious what the guidelines are for using <code>size_t</code> and <code>offset_t</code>, e.g. what situations they are intended for, what situations they are not intended for, etc. I haven't done a lot of portable programming, so I have typically just used something like <code>int</code> or <code>unsigned int</code> for array sizes, indexes, and the like. However, I gather it's preferable to use some of these more standard typedefs when possible, so I'd like to know how to do that properly.</p>
<p>As a follow-up question, for development on Windows using Visual Studio 2008, where should I look to find the actual typedefs? I've found <code>size_t</code> defined in a number of headers within the VS installation directory, so I'm not sure which of those I should use, and I can't find <code>offset_t</code> anywhere.</p>
http://stackoverflow.com/questions/1206514/a-simple-way-to-generate-sql-servers-standard-form-of-an-expression2a simple way to generate SQL Server's "standard" form of an expression?Charlie2009-07-30T13:14:13Z2009-08-04T09:18:40Z
<p>This relates to computed columns and default constraints (and possibly other expressions) in SQL Server 2005 (or above). Both of these use an arbitrary expression to generate a value, e.g. <code>(year+1)</code> for a computed column representing "next year" (this is obviously a simple and stupid example).</p>
<p><strong>What I'm trying to do:</strong> I want to be able to determine whether an existing computed column (or default constraint) in some table matches the intended definition, where the latter is defined in a software-generated schema that was used to create the table. I can get the definition of a computed column using <code>sp_helptext</code>, and the definition of a default constraint from the <code>sys.default_constraints</code> catalog view.</p>
<p><strong>What I'm having trouble with:</strong> The expressions I get back from the above sources are in a normalized/standard form that doesn't match the form used to create the column/constraint. In the example above, SQL normalizes the expression to <code>([year]+(1))</code>. Therefore, a simple string comparison between this form and the original form will not reliably determine whether they are the same.</p>
<p><strong>Solutions I've thought of already:</strong></p>
<ul>
<li>Generate the original expressions so that they match SQL's form. This requires knowing the rules SQL uses to generate its form, which are not documented, so it's not a great solution.</li>
<li>Parse both forms into ASTs and compare those. I already an AST for the original form, but I don't have a parser, and would rather not write one.</li>
<li>Create a temporary table and add a computed column using the original expression, and then read back the normalized expression. This would be pretty reliable, but it feels dirty, since in theory this comparison should be a read-only operation.</li>
</ul>
<p>Can anyone think of another good option for handling this? My hope is that maybe someone knows of some debugging/diagnostic tool that will spit back the input expression in normalized/standard form.</p>
http://stackoverflow.com/questions/1217796/does-a-pure-idispatch-interface-require-a-proxy-stub-dll/1218056#12180561Answer by Charlie for Does a "pure" IDispatch interface require a proxy/stub DLL?Charlie2009-08-02T03:05:05Z2009-08-02T03:05:05Z<p>I'm pretty sure you don't need to provide a custom proxy/stub dll if you limit your interface(s) to automation-compatible types. In that case, the system can use the automation marshaler and doesn't need any additional help. I believe the automation-compatible types are the types that can fit into a <code>VARIANT</code>, e.g. simple POD types, <code>BSTR</code>s, and the like.</p>
<p>I found <a href="http://support.microsoft.com/kb/139072" rel="nofollow">this KB article</a> which has some discussion of the automation marshaler, although it's not specifically targeted at your question. It does list the compatible types, at the very least. It also mentions that you need to specifically identify the automation marshaler in the registration for your component, but in my experience this isn't necessary - your mileage may vary.</p>
<p>Lastly, you may need to implement IProvideClassInfo as well; I usually use the implementation provided by ATL.</p>
http://stackoverflow.com/questions/1162619/fastest-quote-escaping-implementation/1162767#11627671Answer by Charlie for Fastest quote-escaping implementation?Charlie2009-07-22T02:31:35Z2009-07-22T17:18:33Z<p>I'm not surprised that the regex is really slow here - you're using a big, general-purpose hammer to pound in a tiny little nail. Of course, if you ended up needing to do something more interesting, the regex might quickly gain the advantage in terms of simplicity.</p>
<p>As for a simpler/faster approach, you could try writing the escaped string into a separate buffer one character at a time. Then it becomes trivial to add the escapes, and you don't waste any time reallocating the string or shifting characters. The biggest difficulty will be managing the size of your buffer, but you could just use a vector for that, and reuse the same vector for each string to avoid repeated allocations. The efficiency gain would depend a lot on the details of how vector works, but you can always boil it down to raw arrays and manual memory management if you need to.</p>
<p>The routine might look something like this, if you used vector:</p>
<pre><code>vector<char> buf;
for( some_iterator it = all_the_strings.begin();
it != all_the_strings.end(); ++it )
{
buf.clear();
const string & str = *it;
for( size_t i = 0; i < str.size(); ++i )
{
if( str[i] == '"' || str[i] == '\\' )
buf.push_back( '\\' );
buf.push_back( str[i] );
}
buf.push_back( '\0' );
// note: this is not guaranteed to be safe, see answer comments
const char * escaped = &buf[0];
// print escaped string to file here...
}
</code></pre>
http://stackoverflow.com/questions/441420/why-does-c-limit-the-set-of-types-that-can-be-declared-as-const2Why does C# limit the set of types that can be declared as const?Charlie2009-01-14T00:13:00Z2009-07-21T19:46:29Z
<p>Compiler error <a href="http://msdn.microsoft.com/en-us/library/ms228656(VS.80).aspx" rel="nofollow">CS0283</a> indicates that only the basic POD types (as well as strings, enums, and null references) can be declared as <code>const</code>. Does anyone have a theory on the rationale for this limitation? For instance, it would be nice to be able to declare const values of other types, such as IntPtr.</p>
<p>I believe that the concept of <code>const</code> is actually syntactic sugar in C#, and that it just replaces any uses of the name with the literal value. For instance, given the following declaration, any reference to Foo would be replaced with "foo" at compile time.</p>
<pre><code>const string Foo = "foo";
</code></pre>
<p>This would rule out any mutable types, so maybe they chose this limitation rather than having to determine at compile time whether a given type is mutable?</p>
http://stackoverflow.com/questions/1154879/c-fastest-way-to-randomly-index-into-an-array/1154897#11548970Answer by Charlie for c# Fastest way to randomly index into an arrayCharlie2009-07-20T17:43:21Z2009-07-20T17:43:21Z<p>I would use <a href="http://msdn.microsoft.com/en-us/library/zd1bc8e5.aspx" rel="nofollow">Random.Next(Int32)</a>, which returns a value less than the input and >= zero. Pass your array length as the input, and you've got a random valid index.</p>
http://stackoverflow.com/questions/1151678/how-did-female-pronouns-become-so-common-as-gender-neutral-in-programming-books1how did female pronouns become so common as gender-neutral in programming books? [closed]Charlie2009-07-20T04:16:07Z2009-07-20T05:16:09Z
<p><strong>NOTE: I think this is a good thing.</strong></p>
<p>I've read a lot of computer books, as I'm sure many of you have, and I've noticed that many (far more than half) of these books use "she" and "her" to refer to unnamed programmers/users/etc, rather than "he" or "him". I don't read a lot of other nonfiction, so I can't comment on other subject areas, but I've been surprised at how consistent this seems to be in programming literature, given that "he" and "him" are much more common in general. Really I think it's a pretty cool thing, especially given that programming is such a male-dominated field; I wouldn't be at all surprised if the literature reinforced this, but instead it seems to be pushing the other way.</p>
<p>Anyway, assuming I'm not imagining this, does anybody know how it came to pass? Was there a group of publishers and authors that got together one day and decided to make it happen? Did some publisher start doing it and become a trend-setter? Has it been this way since day one? I haven't been able to locate any discussion of this on the web, but I've been wondering about it for years.</p>
<p>By the way, this clearly doesn't relate to getting Java code to compile or diagnosing obscure C++ linker errors, but I still think it's programming-related, as much so as any other question about programming books.</p>
http://stackoverflow.com/questions/1150846/private-public-class-in-namespace-problem/1150890#11508900Answer by Charlie for private/public class in namespace problemCharlie2009-07-19T20:58:21Z2009-07-19T20:58:21Z<p>Unfortunately, the access modifiers on a class only affect visibility outside the assembly you're building. C++ doesn't support any sort of access modifiers that apply to namespaces in the way you're describing.</p>
<p>A common idiom for simulating this is to put the "private" code into a <code>detail</code> namespace (e.g. put it in <code>MyNamespace::detail</code>). This is used a lot in e.g. the boost libraries. By convention, code in a detail namespace should only be used by code in the enclosing namespace (so <code>MyNamespace::detail</code> should only be used by code in <code>MyNamespace</code>), although the compiler won't enforce this for you.</p>
http://stackoverflow.com/questions/1024484/optimizing-recursive-calls-over-data-structures/1024510#10245101Answer by Charlie for Optimizing recursive calls over data structuresCharlie2009-06-21T18:49:08Z2009-06-21T18:49:08Z<p>Technically the answer to this is "yes": any algorithm which can be expressed recursively (i.e. with an implicit stack) can also be reformulated to use iteration (i.e. with an explicit stack or other tracking structure).</p>
<p>However, I suspect that most compilers can't or won't attempt to do this for you. Coming up with a general-purpose automatic algorithm for performing the transformation is likely to be pretty difficult, although I've never tried it, so I shouldn't say that it's intractable.</p>
http://stackoverflow.com/questions/1002052/how-to-specify-which-control-should-be-focused-when-a-form-opens2how to specify which control should be focused when a form opensCharlie2009-06-16T14:59:38Z2009-06-16T20:27:56Z
<p>Whenever a Form is opened, the system automatically focuses one of the controls for you. As far as I can tell, the control that gets focus is the first enabled control in the tab order, as per Windows standard behavior.</p>
<p>The question is how to change this at runtime without having to dynamically reshuffle the tab order. For instance, some forms might want to vary the initially-focused control based on program logic, to put focus in the most appropriate control. If you just focus some other control inside your OnLoad handler, the default logic executes anyway and re-focuses the default control.</p>
<p>If you're writing in C/C++ and using a raw window proc or MFC, you can return 0 (<code>FALSE</code>) from your <code>WM_INITDIALOG</code> handler, and the default focusing logic gets skipped. However, I can't find any way to do this in WinForms. The best I've come up with is to use <code>BeginInvoke</code> to set the focus after the OnLoad finishes, like so:</p>
<pre><code>protected override void OnLoad( System.EventArgs e )
{
base.OnLoad( e );
// ... code ...
BeginInvoke( new MethodInvoker( () => this.someControl.Focus() ) );
}
</code></pre>
<p>There must be some proper way to do this - does anybody have an idea?</p>
http://stackoverflow.com/questions/1002052/how-to-specify-which-control-should-be-focused-when-a-form-opens/1003782#10037822Answer by Charlie for how to specify which control should be focused when a form opensCharlie2009-06-16T20:27:56Z2009-06-16T20:27:56Z<p>After digging around through Reflector, I found what appears to be the "correct" way to do this: using <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.containercontrol.activecontrol.aspx" rel="nofollow">ContainerControl.ActiveControl</a>. This can be done from OnLoad (or elsewhere; see the docs for limitations) and directly tells the framework which control you want to be focused.</p>
<p>Example usage:</p>
<pre><code>protected override void OnLoad( System.EventArgs e )
{
base.OnLoad( e );
// ... code ...
this.ActiveControl = this.someControl;
}
</code></pre>
<p>This seems like the cleanest and simplest solution so far.</p>
http://stackoverflow.com/questions/977583/is-there-a-type-that-stores-data-indexed-by-a-string-key-or-integer-index/977617#9776170Answer by Charlie for Is there a type that stores data indexed by a string key, or integer index?Charlie2009-06-10T19:19:29Z2009-06-10T19:20:00Z<p>It sounds like you need a multimap, but unfortunately there is no general-purpose implementation of this in the BCL. As mentioned in another answer, System.Collections.Specialized.OrderedDictionary is a specific implementation that might cover your needs, although it doesn't use generics.</p>
http://stackoverflow.com/questions/976951/comexception-breakdown/977002#9770020Answer by Charlie for COMException BreakdownCharlie2009-06-10T17:21:30Z2009-06-10T17:21:30Z<p>If you break down the HRESULT value, the facility code is <code>FACILITY_CONTROL</code>, and the error code is 1004. From some online searching, it appears that this code is generated for a variety of different errors, some of which seem related to copying worksheets programmatically (see for example <a href="http://support.microsoft.com/kb/210684" rel="nofollow">this KB article</a>).</p>
<p>It might help to post more details about what you're doing, or <a href="http://www.google.com/search?q=0x800A03EC%2Bexcel" rel="nofollow">search online for this HRESULT</a> and see what problems others may have had which look similar to what you're doing.</p>
http://stackoverflow.com/questions/504167/is-an-spn-required-when-using-kerberos-with-dcom1Is an SPN required when using Kerberos with DCOM?Charlie2009-02-02T17:57:30Z2009-06-08T15:27:47Z
<p>I'm using DCOM to provide various application services on a Windows network, using Kerberos to handle authentication. The system normally works fine, but I'm running into issues accessing the service from a separate (trusted) domain. Particularly, the service is unable to make callbacks to the client application, receiving the error "A security package specific error occurred". Also, if I tweak the service to specifically require Kerberos authentication (rather than using SNEGO/negotiate), the client can't even call into the server (again receiving "A security package specific error occurred").</p>
<p>The confusing thing is that things have been working for years without issue. However, a few things are different here, as compared to what we've done before. For one, the servers involved are running Windows 2008, which I have not previously used. Also, as noted above, the errors are only occurring when the service is accessed from an account from a separate domain, and previous usage has never attempted this.</p>
<p>Now to the question: I'm not using an SPN (service principal name) for this DCOM service, but some of the errors and event logs makes me think that might be the problem. However, all the docs I've found are unclear on whether this is correct, or how I would set up the SPN if I do need it. <strong>Does anybody know for sure whether an SPN is what I'm missing here?</strong> If so, can you point me to how this should be done?</p>
<p><em>Additional details:</em></p>
<p>For the scenario where the server is set to force Kerberos authentication, turning on <a href="http://msdn.microsoft.com/en-us/library/aa373838(VS.85).aspx" rel="nofollow">Extended RPC Debugging</a> gives some additional clues. The client can successfully connect using CoCreateInstanceEx, but calls on the service interface fail as noted above. The RPC error records show an error at location 140, and the error code is 0x80090303 ("The specified target is unknown or unreachable"), and the third parameter for that record is an empty string. This points to a missing SPN as the culprit.</p>
http://stackoverflow.com/questions/504167/is-an-spn-required-when-using-kerberos-with-dcom/517018#5170180Answer by Charlie for Is an SPN required when using Kerberos with DCOM?Charlie2009-02-05T17:52:21Z2009-06-08T15:27:47Z<p><strong>Edit</strong>: It looks like I may be somewhat mistaken about this. At least one website I found states that <a href="http://alt.pluralsight.com/wiki/default.aspx/Keith.GuideBook/HowToUseServicePrincipalNames.html" rel="nofollow">DCOM handles SPNs automatically for you</a> (see the bottom of the page), and I confirmed that clients can successfully connect if they demand Kerberos authentication and use "host/[computername]" as the SPN.</p>
<p><hr /></p>
<p>It does look like an SPN is required for the service, if you explicitly require Kerberos authentication when calling CoInitializeSecurity in the DCOM server process. For me, the call looked like this:</p>
<p><strong>Warning: Please do not copy this code directly without ensuring that the values are proper for your security needs.</strong></p>
<pre><code>SOLE_AUTHENTICATION_SERVICE sas;
sas.dwAuthnSvc = RPC_C_AUTHN_GSS_KERBEROS;
sas.dwAuthzSvc = RPC_C_AUTHZ_NONE;
sas.pPrincipalName = L"myservice/mymachine";
sas.hr = S_OK;
CoInitializeSecurity( 0, 1, &sas, 0, RPC_C_AUTHN_LEVEL_DEFAULT,
RPC_C_IMP_LEVEL_DEFAULT, 0, EOAC_NONE, 0 );
</code></pre>
<p>The SPN can be configured using <a href="http://technet.microsoft.com/en-us/library/cc773257.aspx" rel="nofollow"><code>setspn</code></a>, as demonstrated below:</p>
<pre><code>setspn -A myservice/mymachine serviceusername
</code></pre>
<p>(see the setspn docs for details).</p>
<p>Unfortunately this still didn't solve my problem, but I think the remaining issue is related to some specific problem with the test machines.</p>
http://stackoverflow.com/questions/919080/when-how-do-you-do-your-best-sloshing/919121#9191211Answer by Charlie for When/How do you do your best "sloshing"?Charlie2009-05-28T04:00:09Z2009-05-28T04:00:09Z<p>Generally the answers come to me as soon as I've gotten too far from the keyboard to attempt implementing them. Common examples are: two minutes after leaving work, five minutes after heading out to lunch.</p>
http://stackoverflow.com/questions/900623/do-messages-sent-to-hwndbroadcast-go-to-other-desktops0do messages sent to HWND_BROADCAST go to other desktops?Charlie2009-05-23T01:25:59Z2009-05-23T01:49:50Z
<p>I'm trying to determine some of the details of how <code>HWND_BROADCAST</code> works. Unfortunately, MSDN doesn't have a specific page for this value; it's only mentioned in passing in several other articles, such as the ones for <a href="http://msdn.microsoft.com/en-us/library/ms644950%28VS.85%29.aspx" rel="nofollow"><code>SendMessage</code></a> and <a href="http://msdn.microsoft.com/en-us/library/ms644944%28VS.85%29.aspx" rel="nofollow"><code>PostMessage</code></a>.</p>
<p>What I specifically want to know is whether messages sent to <code>HWND_BROADCAST</code> are received by windows associated with other desktops in the same window station. The docs say the message will go to "all top-level windows in the system", but clearly that can't be strictly true. For instance, I'm sure they wouldn't go to windows in other logon sessions (e.g. on a terminal server). My guess is that they are at least limited to the window station of the calling process, but I don't know if they are also limited to the desktop of the calling thread (each thread is associated with a single desktop).</p>
<p>Worst case I can go write some code to test this empirically, but does anybody happen to know the answer already?</p>
http://stackoverflow.com/questions/885908/while-1-vs-for-is-there-a-speed-difference/885921#8859212Answer by Charlie for while (1) Vs. for (;;) Is there a speed difference?Charlie2009-05-20T02:39:42Z2009-05-20T02:39:42Z<p>In an optimized build of a compiled language, there should be no appreciable difference between the two. Neither should end up performing any comparisons at runtime, they will just execute the loop code until you manually exit the loop (e.g. with a <code>break</code>).</p>
http://stackoverflow.com/questions/880882/optimizing-boost-unordered-map-and-sets-c/880924#8809241Answer by Charlie for optimizing boost unordered map and sets, C++Charlie2009-05-19T04:06:12Z2009-05-19T04:06:12Z<p>I would try it both ways, which will let you generate hard data showing whether one method works better than the other. We can speculate all day about which method will be optimal, but as with most performance questions, the best thing to do is try it out and see what happens (and then fix the parts that actually need fixing).</p>
<p>That being said, the Boost authors seem to be very smart, so it quite possibly will work fine as-is. You'll just have to test and see.</p>
http://stackoverflow.com/questions/854783/should-i-avoid-the-dir-alias-in-powershell-scripts1should I avoid the 'dir' alias in Powershell scripts?Charlie2009-05-12T20:46:14Z2009-05-14T23:32:03Z
<p>The powershell guidelines suggest avoiding the use of aliases in scripts, e.g. spelling out <code>Get-Content</code> instead of using <code>gc</code>, and using <code>Foreach-Object</code> instead of <code>%</code>.</p>
<p>For the most part I think this is good advice, but I'm having a hard time following it with the <code>dir</code> alias, at least when used with the filesystem (vs. the registry or such). It seems to me that <code>dir</code> is as good as or better than <code>Get-ChildItem</code>, in terms of readability. It's also not nearly as cryptic as something like <code>gc</code> (<code>Get-Content</code>) or <code>lp</code> (<code>Out-Printer</code>), although maybe someone with no background in cmd.exe scripting might disagree.</p>
<p>Anybody have an opinion on this? Should I keep using <code>dir</code>, or try to be more 'correct'?</p>
http://stackoverflow.com/questions/823138/understanding-empty-mains-translation-into-assembly/823223#8232238Answer by Charlie for Understanding empty main()'s translation into assemblyCharlie2009-05-05T03:42:04Z2009-05-05T03:42:04Z<p>Here's a good step-by step breakdown of a simple <code>main()</code> function as compiled by GCC, with lots of detailed info: <a href="http://en.wikibooks.org/wiki/X86%5FAssembly/GAS%5FSyntax" rel="nofollow">GAS Syntax (Wikipedia)</a></p>
<p>For the code you pasted, the instructions break down as follows:</p>
<ul>
<li>First four instructions (pushl through andl): set up a new stack frame</li>
<li>Next five instructions (movl through sall): generating a weird value for eax, which will become the return value (I have no idea how it decided to do this)</li>
<li>Next two instructions (both movl): store the computed return value in a temporary variable on the stack</li>
<li>Next two instructions (both call): invoke the C library init functions</li>
<li><code>leave</code> instruction: tears down the stack frame</li>
<li><code>ret</code> instruction: returns to caller (the outer runtime function, or perhaps the kernel function that invoked your program)</li>
</ul>
http://stackoverflow.com/questions/799190/using-a-transaction-to-avoid-a-race1using a transaction to avoid a raceCharlie2009-04-28T18:10:02Z2009-04-29T06:36:31Z
<p>I'm writing a daemon to monitor creation of new objects, which adds rows to a database table when it detects new things. We'll call the objects widgets. The code flow is approximately this:</p>
<pre><code>1: every so often:
2: find newest N widgets (from external source)
3: foreach widget
4: if( widget not yet in database )
5: add rows for widget
</code></pre>
<p>The last two lines present a race condition, since if two instances of this daemon are running at the same time, they may both create a row for widget X if the timing lines up.</p>
<p>The most obvious solution would be to use a <code>unique</code> constraint on the widget identifier column, but that isn't possible due to the database layout (it's actually allowed to have more than one row for a widget, but the daemon shouldn't ever do this automatically).</p>
<p>My next thought would be to use a transaction, since this is what they're intended for. In the ADO.NET world, I believe I would want an isolation level of <a href="http://msdn.microsoft.com/en-us/library/system.enterpriseservices.transactionisolationlevel.aspx" rel="nofollow"><code>Serializable</code></a>, but I'm not positive. Can someone point me in the right direction?</p>
<p><strong>Update</strong>: I did some experimentation, and the Serialized transaction doesn't appear to resolve the issue, or at least not very well. The interesting case is described below, and assumes that only one table is involved. Note that I'm not positive about the lock details, but I think I have it right:</p>
<pre><code>Thread A: Executes line 4, acquiring a read lock on the table
Thread B: Executes line 4, acquiring a read lock on the table
Thread A: Tries to execute line 5, which requires upgrading to a write lock
(this requires waiting until Thread B unlocks the table)
Thread B: Tries to execute line 5, again requiring a lock upgrade
(this requires waiting until Thread A unlocks)
</code></pre>
<p>This leaves us in a classic deadlock condition. Other code paths are possible, but if threads A and B don't interleave, there's no synchronization issue anyway. The end result is that a SqlException is thrown on one of the threads, after SQL detects the deadlock and terminates one of the statements. I can catch this exception and detect the particular error code, but that doesn't feel very clean.</p>
<p>Another route I may take is to create a second table that tracks widgets seen by the daemon, where I can use a <code>unique</code> constraint. This still requires catching and detecting certain error codes (in this case, integrity constraint violations), so I'm still interested in a better solution, if somebody can think of one.</p>
http://stackoverflow.com/questions/798655/embedding-an-external-executable-inside-a-c-program/799015#7990151Answer by Charlie for Embedding an external executable inside a c# programCharlie2009-04-28T17:23:42Z2009-04-28T17:23:42Z<p>Here is some sample code that would roughly accomplish this, minus error checking of any sort. Also, please make sure that the license of the program to be embedded allows this sort of use.</p>
<pre><code>// extracts [resource] into the the file specified by [path]
void ExtractResource( string resource, string path )
{
Stream stream = GetType().Assembly.GetManifestResourceStream( resource );
byte[] bytes = new byte[(int)stream.Length];
stream.Read( bytes, 0, bytes.Length );
File.WriteAllBytes( path, bytes );
}
string exePath = "c:\temp\embedded.exe";
ExtractResource( "myProj.embedded.exe", exePath );
// run the exe...
File.Delete( exePath );
</code></pre>
<p>The only tricky part is getting the right value for the first argument to <code>ExtractResource</code>. It should have the form "namespace.name", where namespace is the default namespace for your project (find this under Project | Properties | Application | Default namespace). The second part is the name of the file, which you'll need to include in your project (make sure to set the build option to "Embedded Resource"). If you put the file under a directory, e.g. Resources, then that name becomes part of the resource name (e.g. "myProj.Resources.Embedded.exe"). If you're having trouble, try opening your compiled binary in Reflector and look in the Resources folder. The names listed here are the names that you would pass to <code>GetManifestResourceStream</code>.</p>
http://stackoverflow.com/questions/780022/raise-base-class-events-in-derived-classes-c/780115#7801151Answer by Charlie for Raise Base Class Events in Derived Classes C#Charlie2009-04-23T02:39:35Z2009-04-23T02:39:35Z<p>From the C# language spec, section 10.7 (emphasis added):</p>
<blockquote>
<p><strong>Within the program text of the class or struct that contains the declaration of an event, certain events can be used like fields</strong>. To be used in this way, an event must not be abstract or extern, and must not explicitly include event-accessor-declarations. Such an event can be used in any context that permits a field. The field contains a delegate (§15) which refers to the list of event handlers that have been added to the event. If no event handlers have been added, the field contains null.</p>
</blockquote>
<p>Thus, the reason you can't treat the Move event like a field is that it is defined in a different type (in this case, your superclass). I agree with @womp's speculation that the designers made this choice to prevent unintended monkeying with the event. It seems obviously bad to allow unrelated types (types not derived from the type declaring the event) to do this, but even for derived types, it might not be desirable. They probably would have had to include syntax to allow the event declaration to be made <code>private</code> or <code>protected</code> with respect to field-style usage, so my guess is that they opted to just disallow it entirely.</p>
http://stackoverflow.com/questions/771013/how-to-improve-this-piece-of-code/771024#7710242Answer by Charlie for How to improve this piece of code?Charlie2009-04-21T04:22:34Z2009-04-21T04:22:34Z<p>I'm not sure how best to code it in Scheme, but a common technique to improve speed on something like this would be to use <a href="http://en.wikipedia.org/wiki/Memoization" rel="nofollow">memoization</a>. In a nutshell, the idea is to cache the result of f(p) (possibly for every p seen, or possibly the last n values) so that next time you call f(p), the saved result is returned, rather than being recalculated. In general, the cache would be a map from a tuple (representing the input arguments) to the return type.</p>
http://stackoverflow.com/questions/1686443/using-powershell-to-recursively-rename-directories-using-a-lookup-file/1689434#1689434Comment by Charlie on Using Powershell to recursively rename directories using a lookup fileCharlie2009-11-06T23:11:18Z2009-11-06T23:11:18ZVery interesting - I didn't know about Import-Csv.http://stackoverflow.com/questions/1669026/how-to-access-an-indexed-property-on-a-com-object-from-powershell/1669241#1669241Comment by Charlie on How to access an indexed property on a COM object from PowershellCharlie2009-11-05T23:49:30Z2009-11-05T23:49:30ZVery nice; that's what I get for not reading the docs closely enough. Thanks for the effort in tracking this down.http://stackoverflow.com/questions/1669026/how-to-access-an-indexed-property-on-a-com-object-from-powershell/1669241#1669241Comment by Charlie on How to access an indexed property on a COM object from PowershellCharlie2009-11-03T21:54:24Z2009-11-03T21:54:24ZRight, the enumeration is clearly working fine.http://stackoverflow.com/questions/1669026/how-to-access-an-indexed-property-on-a-com-object-from-powershell/1669241#1669241Comment by Charlie on How to access an indexed property on a COM object from PowershellCharlie2009-11-03T19:00:26Z2009-11-03T19:00:26ZThanks, this seems to work also. Still hoping someone knows of a more direct way, though.http://stackoverflow.com/questions/1669026/how-to-access-an-indexed-property-on-a-com-object-from-powershell/1669059#1669059Comment by Charlie on How to access an indexed property on a COM object from PowershellCharlie2009-11-03T18:26:47Z2009-11-03T18:26:47ZCool, this seems like a good workaround. I'm hoping someone will know how to do it "properly", but this will get me going for now.http://stackoverflow.com/questions/946826/how-to-detect-use-of-perforces-reopen-for-edit-from-a-script/1615336#1615336Comment by Charlie on how to detect use of Perforce's "reopen for edit" from a scriptCharlie2009-10-24T14:27:27Z2009-10-24T14:27:27ZVery interesting - thanks for the info. Even if it doesn't work with my older version, hopefully it may help someone else.http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using/217562#217562Comment by Charlie on Which Typesafe Enum in C++ Are You Using?Charlie2009-10-17T02:40:16Z2009-10-17T02:40:16ZFollow-up on the namespace thing: for enums that live inside a class or struct, you can't use a namespace. If the enum <i>doesn't</i> live in a class or struct, I think you're right that using a namespace is cleaner.http://stackoverflow.com/questions/1320756/firewall-start-stop-using-win32-api-for-windows-xp-os/1320779#1320779Comment by Charlie on Firewall start/stop using win32 api for windows XP osCharlie2009-10-14T23:43:12Z2009-10-14T23:43:12ZThanks for the pointer to netsh.exe, it looks very helpful for working with the firewall.http://stackoverflow.com/questions/668078/can-i-insert-nodes-into-a-treeview-during-afterlabeledit-without-beginning-to-ediComment by Charlie on Can I insert nodes into a TreeView during AfterLabelEdit without beginning to edit them?Charlie2009-10-09T21:19:35Z2009-10-09T21:19:35ZI think your option #3 seems perfectly fine, and isn't an abuse of BeginInvoke as far as I know. You're basically asking the system to run these operations once it finishes handling this message, which is perfectly legitimate.http://stackoverflow.com/questions/1214876/guidelines-on-usage-of-sizet-and-offsett/1302662#1302662Comment by Charlie on guidelines on usage of size_t and offset_t ?Charlie2009-08-31T02:06:19Z2009-08-31T02:06:19ZInteresting addition to the discussion - I wasn't aware of ptrdiff_t, but it sounds useful.http://stackoverflow.com/questions/1206514/a-simple-way-to-generate-sql-servers-standard-form-of-an-expression/1221325#1221325Comment by Charlie on a simple way to generate SQL Server's "standard" form of an expression?Charlie2009-08-05T01:44:00Z2009-08-05T01:44:00ZI like the idea of reusing one table for this, if I end up needing to do the normalization via a temporary table. Thanks for all the good ideas.http://stackoverflow.com/questions/1206514/a-simple-way-to-generate-sql-servers-standard-form-of-an-expression/1221325#1221325Comment by Charlie on a simple way to generate SQL Server's "standard" form of an expression?Charlie2009-08-03T14:39:55Z2009-08-03T14:39:55ZThanks for the ideas, I agree that I probably will have to do something like this. Hopefully an easier solution will come up, though.http://stackoverflow.com/questions/1214876/guidelines-on-usage-of-sizet-and-offsett/1214910#1214910Comment by Charlie on guidelines on usage of size_t and offset_t ?Charlie2009-08-01T14:34:13Z2009-08-01T14:34:13ZSounds like I should be using size_t for the purposes you describe, and not messing with offset_t. Thanks for the info.http://stackoverflow.com/questions/1214876/guidelines-on-usage-of-sizet-and-offsettComment by Charlie on guidelines on usage of size_t and offset_t ?Charlie2009-07-31T21:08:45Z2009-07-31T21:08:45ZInteresting answers - maybe I'm wrong about <code>offset_t</code> being "standard"?http://stackoverflow.com/questions/1162619/fastest-quote-escaping-implementation/1162767#1162767Comment by Charlie on Fastest quote-escaping implementation?Charlie2009-07-22T17:16:12Z2009-07-22T17:16:12ZI figured that might be the issue. Good call then, your implementation is probably better (they're nearly the same conceptually).