User DougN - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T08:16:55Zhttp://stackoverflow.com/feeds/user/7442http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202302/rounding-to-an-arbitrary-number-of-significant-digits4rounding to an arbitrary number of significant digitsDougN2008-10-14T18:37:17Z2009-12-16T03:59:04Z
<p>How can you round <em>any</em> number (not just integers > 0) to N significant digits?</p>
<p>For example, if I want to round to 3 significant digits, I'm looking for a formula that could take:</p>
<p>1,239,451 and return 1,240,000</p>
<p>12.1257 and return 12.1</p>
<p>.0681 and return .0681</p>
<p>5 and return 5</p>
<p>Naturally the algorithm should not be hard-coded to only handle N of 3, although that would be a start.</p>
http://stackoverflow.com/questions/1850420/asp-net-membership-providers-in-non-web-apps0ASP.NET membership providers in non-web apps?DougN2009-12-04T23:46:44Z2009-12-05T00:12:53Z
<p>Does anyone know if it's possible to use an ASP.NET membership (and role) provider in a non-web app (ie in a desktop C# app)?</p>
<p>Related question -- is there an LDAP membership provider (it looks like SharePoint has one, but I don't think it's the same as the ASP.NET provider). I'm sure the Active Directory one is probably close, but I'm not sure if it would work against Novell or Sun's LDAP servers.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c1Shutdown exception handling for Win32/C++DougN2009-11-25T16:43:50Z2009-11-26T15:20:19Z
<p>I have a process that handles exceptions great. It calls:</p>
<pre><code>_set_se_translator(exception_trans_func);
SetUnhandledExceptionFilter(UnhandledExceptionFilterHandler);
_set_purecall_handler(purecallHandler);
set_terminate(terminateHandler);
set_unexpected(unexpectedHandler);
_set_invalid_parameter_handler(InvalidParameterHandler);
atexit(exitHandler); //ignored during an expected exit
_onexit(onexitHandler); //ignored during an expected exit
</code></pre>
<p>Anytime an exception happens, one of the handlers is called which creates a crash dump for me. Life is good.</p>
<p>Except at one customer site. When they shutdown the process, there is an exception that isn't routed through these calls for some reason and they get the error:</p>
<p>The instruction at "0x101ba9df" referenced memory at "0x00000004". The memory could not be "read". Click OK to terminate...."</p>
<p>The memory reference of x000000004 looks like it's probably a null pointer. And looking at that address <em>appears</em> to be a global STL object's destructor (probably in the CRT's initterm call where globals are cleaned up).</p>
<p>Right now I'm kind of stuck though since I can't get a diagnostic dump and call stack and see exactly what is going on. So....</p>
<p>Why isn't the exception being routed through the above handlers, and instead being shown to the user? </p>
<p>Is there any way to hide that dialog (since no harm is being done at that point)?</p>
<p>And is there a way to track down the root error?</p>
<p>Thanks for any ideas.</p>
http://stackoverflow.com/questions/1758908/win32-drawtext-line-height2Win32 DrawText line heightDougN2009-11-18T20:38:44Z2009-11-24T16:53:58Z
<p>I'm calling the Win32 <code>DrawText</code> function to output some text into a device context. The text is long and wraps nicely onto a second line. The problem is I need to decrease the space between lines a bit (I guess decrease the line height?). Any ideas on how to do this? </p>
<p>I would just call <code>DrawText</code> twice (one for each line) but then I have to do my own word wrap.</p>
<p>Is there any other way?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1730133/programmatically-detect-windows-cluster-configuration0Programmatically detect Windows cluster configuration?DougN2009-11-13T15:59:15Z2009-11-23T16:34:06Z
<p>Does anyone know how to programatically detect that a Windows server is part of a cluster?</p>
<p>Further, is it possible to detect that the server is the active or passive node?</p>
<p>[Edit] And detect it from Win32? A registry setting maybe?</p>
<p>Thanks for any insight.</p>
<p>Doug</p>
http://stackoverflow.com/questions/1594599/what-is-securesdsdata-on-windows0What is $Secure:$SDS:$DATA on Windows?DougN2009-10-20T13:26:25Z2009-11-20T19:00:02Z
<p>One of my customers has seen $Secure:$SDS:$DATA show up on their drive and it keeps growing while my app is running. I don't (knowingly) write to this file, and don't use any type of Windows secure storage (which might be related). Kind of stumped...</p>
<p>Any thoughts on what this might be?</p>
http://stackoverflow.com/questions/1760784/encapsulating-wndproc-problem/1760882#17608821Answer by DougN for Encapsulating WndProc Problem.DougN2009-11-19T04:31:00Z2009-11-19T04:31:00Z<p><em>What</em> inherits from EngineBase?</p>
<p>How do you get the initial messages flowing into EngineBase's WndProc?</p>
<p>Did you call SetWindowLong with GWL_WNDPROC to point the window at your WndProc? (You probably missed some initial messages if you did). Or does the window's WNDCLASS point to your EngineBase::WndProc?</p>
http://stackoverflow.com/questions/927624/errorbadinheritanceacl-from-setnamedsecurityinfo0ERROR_BAD_INHERITANCE_ACL from SetNamedSecurityInfo?DougN2009-05-29T19:07:30Z2009-11-18T20:45:58Z
<p>What does <code>ERROR_BAD_INHERITANCE_ACL</code> returned from SetNamedSecurityInfo imply? In this case I'm adding a user to a directory's ACL. I've looked at the directory in question and its rights seem reasonable before the call. But the calls fails. </p>
<p>Any thoughts?</p>
<p>Here is the code snippet doing the work (and as I paste it here, I'm wondering about the <code>NO_MULTIPLE_TRUSTEE</code> value):</p>
<pre><code>pAAP is a pointer to a structure with the following members:
CString objName; // name of object
SE_OBJECT_TYPE ObjectType; // type of object
CString trustee; // trustee for new ACE (explicit user name)
CString targetComputer;
bool bNeedWrite;
DWORD dwRes = 0;
PACL pOldDACL = NULL, pNewDACL = NULL;
PSECURITY_DESCRIPTOR pSD = NULL;
EXPLICIT_ACCESS ea = {0};
CSID trusteeSID;
bool bGotSID = false;
if(0 == wcsncmp(pAAP->trustee, L"SID:", 4)) //4 = len of SID: //GLOK
bGotSID = CSID::FromString((LPWSTR)((LPCWSTR)pAAP->trustee + 4), trusteeSID);
else
bGotSID = CSID::FromAccount(pAAP->targetComputer, pAAP->trustee, trusteeSID);
if(false == bGotSID)
{
Log(logDEBUG, L"CSID::FromAccount failed for [%s] on [%s]. GLE=%s", pAAP->trustee, pAAP->targetComputer, GetSystemErrorMessage(GetLastError()));
_ASSERT(0);
goto Cleanup;
}
// Get a pointer to the existing DACL.
dwRes = GetNamedSecurityInfo(pAAP->objName.LockBuffer(), pAAP->ObjectType, DACL_SECURITY_INFORMATION,
NULL, NULL, &pOldDACL, NULL, &pSD);
pAAP->objName.UnlockBuffer();
if (ERROR_SUCCESS != dwRes)
{
Log(logDEBUG, L"GetNamedSecurityInfo failed on [%s] for [%s] on [%s]. GLE=%s", pAAP->objName, pAAP->trustee, pAAP->targetComputer, GetSystemErrorMessage(dwRes));
//_ASSERT(ERROR_FILE_NOT_FOUND == dwRes);
goto Cleanup;
}
// Initialize an EXPLICIT_ACCESS structure for the new ACE.
ea.grfAccessPermissions = pAAP->bNeedWrite ? GENERIC_ALL : GENERIC_READ;
ea.grfAccessMode = GRANT_ACCESS;
ea.grfInheritance= CONTAINER_INHERIT_ACE | OBJECT_INHERIT_ACE;
ea.Trustee.TrusteeForm = TRUSTEE_IS_SID;
ea.Trustee.TrusteeType = TRUSTEE_IS_USER;
ea.Trustee.ptstrName = (LPWSTR)(PSID)trusteeSID;
ea.Trustee.MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
// Create a new ACL that merges the new ACE into the existing DACL.
dwRes = SetEntriesInAcl(1, &ea, pOldDACL, &pNewDACL);
if (ERROR_SUCCESS != dwRes)
{
Log(logDEBUG, L"SetEntriesInAcl failed on [%s] for [%s] on [%s]. GLE=%s", pAAP->objName, pAAP->trustee, pAAP->targetComputer, GetSystemErrorMessage(dwRes));
//_ASSERT(0);
goto Cleanup;
}
// Attach the new ACL as the object's DACL.
dwRes = SetNamedSecurityInfo(pAAP->objName.LockBuffer(), pAAP->ObjectType, DACL_SECURITY_INFORMATION,
NULL, NULL, pNewDACL, NULL);
if (ERROR_SUCCESS != dwRes)
{
Log(logDEBUG, L"SetNamedSecurityInfo failed on [%s] for [%s] on [%s]. GLE=%s", pAAP->objName, pAAP->trustee, pAAP->targetComputer, GetSystemErrorMessage(dwRes));
//_ASSERT(dwRes == ERROR_BAD_INHERITANCE_ACL);
goto Cleanup;
}
Cleanup:
if(pSD != NULL)
LocalFree((HLOCAL) pSD);
if(pNewDACL != NULL)
LocalFree((HLOCAL) pNewDACL);
</code></pre>
http://stackoverflow.com/questions/1736433/can-realloc-move-pointer-if-new-size-smaller/1736441#1736441-1Answer by DougN for can realloc move pointer if new size smaller?DougN2009-11-15T03:15:08Z2009-11-15T03:15:08Z<p>On Windows, the C-Runtime grabs a heap, and then allocates memory from that heap. So the OS won't know about individual memory allocations, and thus won't move things around.</p>
http://stackoverflow.com/questions/462580/string-format-for-c10String.Format for C++DougN2009-01-20T18:52:18Z2009-11-10T10:58:02Z
<p>Looking for an implementation for C++ of a function like .NET's String.Format. Obviously there is printf and it's varieties, but I'm looking for something that is positional as in:</p>
<blockquote>
<p>String.Format("Hi there {0}. You are
{1} years old. How does it feel to be
{1}?", name, age);</p>
</blockquote>
<p>This is needed because we're going to try and make it easier to localize our app, and giving the translators {0} and {1} to position anywhere in the sentence is much easier than giving them a %s, %d, %d which must be positioned in that order in their translation.</p>
<p>I suppose search and replace with variable inputs (va_start, va_end, etc) is what I'll end up building, but if there is already a solid solution, that would be preferrable.</p>
<p>Thanks :)</p>
http://stackoverflow.com/questions/1038707/cant-display-pdf-from-https-in-ie-8-on-64-bit-vista4Can't display PDF from HTTPS in IE 8 (on 64-bit Vista)DougN2009-06-24T14:26:00Z2009-11-02T12:35:59Z
<p>I have a home-grown HTTPS server that serves up simple files (it's embedded within my app). It works great -- been using it forever.</p>
<p>Recently added SSL support -- Chrome, FireFox and IE all like it and load pages just fine.</p>
<p>The problem I find is when I try to load a PDF file over the HTTPS connection. For some reason, the PDF never displays in IE 8 (64-bit on 64-bit Vista). It works fine in Chrome.
And it works fine in IE 8 when using plain HTTP -- only fails when using HTTPS.</p>
<p>NOTE: When IE 8 is mentioned, it's 32-bit IE 8 on 64-bit Vista, although the 64-bit IE 8 has the same behavior.</p>
<p>That makes me think it's some sort of IE 8/HTTPS/PDF/64-bit OS issue, but I'm not sure.</p>
<p>DebugBar for IE 8 shows the request and response went exactly as expected -- no errors at all. IE 8 doesn't show any errors or anything -- pure white screen (or the page that was displayed before I tried to load the PDF). Cleared cache/cookies/etc.</p>
<p>Are there any known issues with IE/PDF/HTTPS?</p>
http://stackoverflow.com/questions/1038707/cant-display-pdf-from-https-in-ie-8-on-64-bit-vista/1645863#16458630Answer by DougN for Can't display PDF from HTTPS in IE 8 (on 64-bit Vista)DougN2009-10-29T19:02:13Z2009-10-29T19:02:13Z<p>Thought I'd come back and give the final answer.</p>
<p>Thank you to everyone that suggested "Do not save encrypted pages to disk".</p>
<p>I followed EricLaw's advice and set:
Cache-Control: private </p>
<p>I also found that I had Pragma: no-cache, which I removed.</p>
<p>Works like a charm now :)</p>
http://stackoverflow.com/questions/1644622/wget-self-signed-certs-and-a-custom-https-server0wget, self-signed certs and a custom HTTPS serverDougN2009-10-29T15:40:31Z2009-10-29T16:09:49Z
<p>For various reasons I have created a simple HTTP server, and added SSL support via OpenSSL. I'm using self-signed certificates. IE, FireFox and Chrome happily load content as long as I add the CA to the trusted root CA's.</p>
<p>However, wget (even when using the --no-check-certificate flag) reports:</p>
<pre><code>OpenSSL: error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure
</code></pre>
<p>If I run the OpenSSL client against my server using:</p>
<pre><code>openssl s_client -connect dnvista:82 -debug
</code></pre>
<p>I get back:
verify error:num=19:self signed certificate in certificate chain
verify return:0
and then</p>
<pre><code>5852:error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure:.\ssl\s3_pkt.c:1060:SSL alert number 40
5852:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:.\ssl\s23_lib.c:188:
</code></pre>
<p>Do wget and the OpenSSL client simply not work with self-signed certificates?</p>
http://stackoverflow.com/questions/1616098/calculating-memory-used-on-linux2Calculating % memory used on LinuxDougN2009-10-23T21:48:46Z2009-10-26T20:00:18Z
<p>Linux noob question:</p>
<p>If I have 500MB of RAM, and 500MB of swap space, can the OS and processes then use 1GB of memory? </p>
<p>In other words, is the total amount of memory available to programs and the OS the total of the physical memory size and swap size?</p>
<p>I'm trying to figure out which SNMP counters to query, but need to understand how Linux uses virtual memory a little better first.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1445084/pattern-for-synching-object-lists-among-computers-in-c0Pattern for synching object lists among computers (in C++)?DougN2009-09-18T14:57:00Z2009-10-16T14:37:19Z
<p>I've got an app that has about 10 types of objects. There will be potentially a few thousand object instances of each type. These lists of objects need to stay synchronized between apps running on different machines. If an object is added, changed or deleted, that needs to propagate to the other machines.</p>
<p>This will be a star topology -- there is a central master, and the rest are clients.</p>
<p>I DO have the concept of a session, so can store data about each client.</p>
<p>Is there a good design pattern to follow for this? Even better, is there a (template based?) library that would handle asking the container what has changed since client X came by and getting that delta to send out?</p>
<p>Right now I'm thinking every object-type container has an update counter. When something is added/changed/removed, the update counter is incremented, and the changed object(s) are tagged with that value. Each client will save the value of the update counter when it gets an update. Later it will come back and ask for any changes since it's update counter value. Finally, deletes are kept as tombstone records (although I'm not exactly sure when to clear them out).</p>
<p>One thing that makes this harder is clients can come and go without the central server necessarily knowing, although I guess there could be a timeout concept (if the server haven't heard from a client in 5 minutes, it assumes the client is gone)</p>
<p>Is this a well-known pattern? Any additional suggestions?</p>
http://stackoverflow.com/questions/1468774/recursive-directory-deletion-with-win32/1468817#14688175Answer by DougN for Recursive directory deletion with WIN32DougN2009-09-23T22:14:18Z2009-09-23T22:14:18Z<p>You're not closing dhandle from all those FindFirstFile calls, so each directory has a reference to it when you try to delete it.</p>
<p>And, why do you need to create DirectoryHandle? It's not needed, and will probably also block the directory deletion.</p>
<p>When you app closes, those handles are forced close, and (I guess) the last attempted delete then succeeds.</p>
http://stackoverflow.com/questions/936397/finding-the-recycle-bin-on-a-local-ntfs-drive2Finding the Recycle Bin on a local NTFS driveDougN2009-06-01T19:40:52Z2009-09-09T21:59:57Z
<p>I'm trying to write some simple code that will return the directory for the recycle bin on a local drive. Seems like it would be simple -- should be a thousand answers on Google. Haven't found one yet :(</p>
<p>I HAVE found that FAT and NTFS drives have different base names (RECYCLED and RECYCLER). I've found that 'the' recycle bin is a virtual folder that combines the recycle bins of all drives on the machine.</p>
<p>What I haven't found is a way to find C: drive's recycle bin directory -- even on a Vietnamese (or any other non-English) machine. (No posts I can find indicate whether "RECYCLER" gets internationalized or not)</p>
<p>Can anyone point me to a definitive answer?</p>
<p>Thanks</p>
<p>UPDATE: Aware of <code>CSIDL_BITBUCKET</code> and the functions that use it. From everything I've read though, it points to a <em>virtual</em> directory which is the union of all deleted files by that user on all drives. Looking for the physical recycle bin directory (on my Vista it appears to be C:\$Recycle.Bin as far as I can tell)</p>
http://stackoverflow.com/questions/1387103/best-way-to-decouple-for-parallel-processing-a-web-applications-non-immediate/1390357#13903570Answer by DougN for Best way to decouple (for parallel processing) a web application's non-immediate processes?DougN2009-09-07T17:44:56Z2009-09-07T17:44:56Z<p>MSMQ is an awesome way to do this. A web farm can feed requests into one or more queues. The queues can be serviced by one or more processes on one or more servers giving you scale and dedundancy. (Run MSMQ on a cluster if you want to remove the single point of failure). We did this about 8-9 years back and it was awesome watching it all run :) And even back then MSMQ was dead simple to use (from COM) -- I have to imagine things have only gotten better with .NET.</p>
http://stackoverflow.com/questions/1179378/mysterious-oneliner-template-code-any-one/1179422#11794220Answer by DougN for Mysterious oneliner template code, any one ?DougN2009-07-24T18:41:42Z2009-07-24T18:41:42Z<p>Wow, that's tricky. I don't know either, but if you keep reading down into the comments on that page:</p>
<blockquote>
<p>is essentially</p>
<p>int arr[17]; int arrSize =
GetArrLength(arr);</p>
<p>which creates this function:</p>
<p>int GetArrLength(int(&)[17]){return
17;}</p>
</blockquote>
<p>So & must mean reference like it always does, so it's taking a reference of the array type and the size (second item in the template) is then the size of the incoming array.</p>
<p>Think I'll stick with old </p>
<pre><code>sizeof(x)/sizeof(x[0])
</code></pre>
http://stackoverflow.com/questions/1041220/log-managementanalysis-open-source-product/1070763#10707632Answer by DougN for Log management&analysis Open Source productDougN2009-07-01T19:00:25Z2009-07-01T19:00:25Z<p>Try looking at Splunk. That's what they did initially before they became the IT Search thingy.</p>
<p><a href="http://www.splunk.com/" rel="nofollow">http://www.splunk.com/</a></p>
http://stackoverflow.com/questions/1056411/how-to-pass-variable-number-of-arguments-to-printf-sprintf/1056430#10564301Answer by DougN for How to pass variable number of arguments to printf/sprintfDougN2009-06-29T03:17:12Z2009-06-29T03:17:12Z<p>Simple example below. Note you should pass in a larger buffer, and test to see if the buffer was large enough or not</p>
<pre><code>void Log(LPCWSTR pFormat, ...)
{
va_list pArg;
va_start(pArg, pFormat);
char buf[1000];
int len = _vsntprintf(buf, 1000, pFormat, pArg);
va_end(pArg);
//do something with buf
}
</code></pre>
http://stackoverflow.com/questions/1015826/open-a-new-browser-window-from-embeded-internet-explorer/1022878#10228780Answer by DougN for Open a new browser window from embeded Internet ExplorerDougN2009-06-21T00:32:32Z2009-06-21T00:32:32Z<p>Look for the BeforeNavigate2 event that the browser will fire. You can use that to grab the URL that they're headed to, and the cancel the navigation (so your browser won't actually leave the page it's on).</p>
<p>Then, once you have the URL, just execute:</p>
<pre><code>ShellExecute(GetSafeHwnd(), _T("open"), m_url, _T(""), _T(""), SW_SHOW);
</code></pre>
http://stackoverflow.com/questions/966905/stuck-on-c-template-deriving-from-stdmap0Stuck on C++ template - deriving from std::mapDougN2009-06-08T20:41:16Z2009-06-08T21:54:42Z
<p>I'm going to extend the existing std::map class and add a new function to it:</p>
<pre><code>template<typename key_type, typename value_type>
class CleanableMap : public Cleanable, public std::map<key_type, value_type>
{
CleanableMap(const CleanableMap& in); //not implemented
CleanableMap& operator=(const CleanableMap& in); //not implemented
public:
CleanableMap() {}
CleanableMap(const std::map<key_type, value_type>& in) { *this = in; }
virtual ~CleanableMap() {}
std::map<key_type, value_type>& operator=(const std::map<key_type, value_type>& in)
{
*((std::map<key_type, value_type>*)this) = in;
return *this;
}
};
</code></pre>
<p>I've got a copy constructor and assignment operator such that I can simply assign an existing std::map of the same type to my new map:</p>
<pre><code>CleanableMap<DWORD, DWORD> cm;
std::map<DWORD, DWORD> stdm;
cm = stdm;
</code></pre>
<p>The problem is, the compiler is complaining with an error that doesn't make sense -- I've explicitly coded for what it's complaining about:</p>
<pre><code>1>c:\dev\proj\commonfunc.cpp(399) : error C2679: binary '=' : no operator found which takes a right-hand operand of type 'std::map<_Kty,_Ty>' (or there is no acceptable conversion)
1> with
1> [
1> _Kty=DWORD,
1> _Ty=DWORD
1> ]
1> c:\dev\proj\templates.h(245): could be 'CleanableMap<key_type,value_type> &CleanableMap<key_type,value_type>::operator =(const CleanableMap<key_type,value_type> &)'
1> with
1> [
1> key_type=DWORD,
1> value_type=DWORD
1> ]
1> c:\dev\proj\templates.h(250): or 'std::map<_Kty,_Ty> &CleanableMap<key_type,value_type>::operator =(const std::map<_Kty,_Ty> &)'
1> with
1> [
1> _Kty=unsigned long, <--- where did it come up with that?
1> _Ty=std::pair<const DWORD,DWORD>, <--- where did it come up with that?
1> key_type=DWORD,
1> value_type=DWORD
1> ]
1> while trying to match the argument list '(CleanableMap<key_type,value_type>, std::map<_Kty,_Ty>)'
1> with
1> [
1> key_type=DWORD,
1> value_type=DWORD
1> ]
1> and
1> [
1> _Kty=DWORD,
1> _Ty=DWORD
1> ]
</code></pre>
<p>There 'could be' it mentions on line 245 doesn't make sense -- there is no assignment operator like that (well, it's private. Removing it completely doesn't change anything).</p>
<p>The 'could be' it mentions on line 250 is the assignment operator that I defined, but it was somehow deduced some other non-matching template types. Where did it get those??</p>
<p>Help!!! :)</p>
http://stackoverflow.com/questions/936397/finding-the-recycle-bin-on-a-local-ntfs-drive/945561#9455611Answer by DougN for Finding the Recycle Bin on a local NTFS driveDougN2009-06-03T15:58:59Z2009-06-03T15:58:59Z<p>Using Raymond Chen's advice, and someone else's technique (can't remember where I found it) I present a function that will find the Recycle Bin directory on a drive. The function cycles through the directories in the root directory looking at hidden and/or system directories. When it finds one, it checks the child subdirectories looking for one that has CLSID_Recycle Bin.</p>
<p>Note that I've included two GetFolderCLSID functions below. Raymond Chen's is the simpler one, but it doesn't work on Windows 2000. The other implementation is longer, but appears to work everywhere.</p>
<p>Call like: CString recycleDir = FindRecycleBinOnDrive(L"C:\");</p>
<pre><code>CString FindRecycleBinOnDrive(LPCWSTR path)
{
CString search;
search.Format(L"%c:\\*", path[0]);
WIN32_FIND_DATA fd = {0};
HANDLE fHandle = FindFirstFile(search, &fd);
while(INVALID_HANDLE_VALUE != fHandle)
{
if(FILE_ATTRIBUTE_DIRECTORY == (fd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) //only check directories
{
if(0 != (fd.dwFileAttributes & (FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN))) //only check hidden and/or system directories
{
//the recycle bin directory itself won't be marked, but a SID-specific child directory will, so now look at them
CString childSearch;
childSearch.Format(L"%c:\\%s\\*", path[0], fd.cFileName);
WIN32_FIND_DATA childFD = {0};
HANDLE childHandle = FindFirstFile(childSearch, &childFD);
while(INVALID_HANDLE_VALUE != childHandle)
{
if((FILE_ATTRIBUTE_DIRECTORY == (childFD.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) && //only check directories
(childFD.cFileName[0] != L'.')) //don't check . and .. dirs
{
CString fullPath;
fullPath.Format(L"%c:\\%s\\%s", path[0], fd.cFileName, childFD.cFileName);
CLSID id = {0};
HRESULT hr = GetFolderCLSID(fullPath, id);
if(SUCCEEDED(hr))
{
if(IsEqualGUID(CLSID_RecycleBin, id))
{
FindClose(childHandle);
FindClose(fHandle);
//return the parent (recycle bin) directory
fullPath.Format(L"%c:\\%s", path[0], fd.cFileName);
return fullPath;
}
}
else
{
Log(logERROR, L"GetFolderCLSID returned %08X for %s", hr, fullPath);
}
}
if(FALSE == FindNextFile(childHandle, &childFD))
{
FindClose(childHandle);
childHandle = INVALID_HANDLE_VALUE;
}
}
}
}
if(FALSE == FindNextFile(fHandle, &fd))
{
FindClose(fHandle);
fHandle = INVALID_HANDLE_VALUE;
}
}
_ASSERT(0);
return L"";
}
//Works on Windows 2000, and even as Local System account
HRESULT GetFolderCLSID(LPCWSTR path, CLSID& pathCLSID)
{
LPMALLOC pMalloc = NULL;
HRESULT hr = 0;
if (SUCCEEDED(hr = SHGetMalloc(&pMalloc)))
{
LPSHELLFOLDER pshfDesktop = NULL;
if (SUCCEEDED(hr = SHGetDesktopFolder(&pshfDesktop)))
{
LPITEMIDLIST pidl = NULL;
DWORD dwAttributes = SFGAO_FOLDER;
if (SUCCEEDED(hr = pshfDesktop->ParseDisplayName(NULL, NULL, (LPWSTR)path, NULL, &pidl, &dwAttributes)))
{
LPPERSIST pPersist = NULL;
if (SUCCEEDED(hr = pshfDesktop->BindToObject(pidl, NULL, IID_IPersist, (LPVOID *) &pPersist)))
{
hr = pPersist->GetClassID(&pathCLSID);
pPersist->Release();
}
pMalloc->Free(pidl);
}
pshfDesktop->Release();
}
pMalloc->Release();
}
return hr;
}
//Not supported on Windows 2000 since SHParseDisplayName wasn't implemented then
//HRESULT GetFolderCLSID(LPCWSTR pszPath, CLSID& pathCLSID)
//{
// SHDESCRIPTIONID did = {0};
// HRESULT hr = 0;
// LPITEMIDLIST pidl = NULL;
// if (SUCCEEDED(hr = SHParseDisplayName(pszPath, NULL, &pidl, 0, NULL))) //not supported by Windows 2000
// {
// IShellFolder *psf = NULL;
// LPCITEMIDLIST pidlChild = NULL;
// if (SUCCEEDED(hr = SHBindToParent(pidl, IID_IShellFolder, (void**)&psf, &pidlChild)))
// {
// hr = SHGetDataFromIDList(psf, pidlChild, SHGDFIL_DESCRIPTIONID, &did, sizeof(did));
// psf->Release();
// pathCLSID = did.clsid;
// }
// CoTaskMemFree(pidl);
// }
// return hr;
//}
</code></pre>
http://stackoverflow.com/questions/913505/casting-void-pointers-depending-on-data-c/913521#9135210Answer by DougN for Casting void pointers, depending on data (C++)DougN2009-05-27T01:05:26Z2009-05-27T01:05:26Z<p>It sounds like maybe you're after a union, or if you're using Visual Studio a _variant_t. Or maybe typeinfo() would be helpful? (To be honest, I'm not quite sure exactly what you're trying to do).</p>
<p>As far as the casts, you can cast just about anything to anything -- that's what makes C++ dangerous (and powerful if you're really careful).</p>
<p>Also, note that pointer values are 32-bit or 64-bit in most platforms, so you couldn't store a uint64 in a void* on a 32-bit platform.</p>
<p>Finally, maybe this is what you want:</p>
<pre><code>void* p = whatever;
uint32 x = (uint32)p;
</code></pre>
<p>or maybe </p>
<pre><code>uint32 source = 6;
void* p = &source;
uint32 dest = *((uint32*)p);
void* p =
</code></pre>
http://stackoverflow.com/questions/877916/self-signed-certs-helping-users-know-they-need-to-add-root-ca-to-trusted-cert3Self-signed certs -- helping users know they need to add root CA to trusted cert storeDougN2009-05-18T14:05:21Z2009-05-25T14:28:45Z
<p>I have a desktop product which uses an embedded webserver which will use self-signed certs.</p>
<p>Is there something that I can put in a web page that would detect that they haven't added the root CA to their trusted list, and display a link or DIV or something directing them how to do it? </p>
<p>I'm thinking maybe a DIV that has instructions on install the CA, and a Javascript that runs some test (tries to access something without internal warnings??), and hides the DIV if the test succeeds. Or something like that...</p>
<p>Any ideas from the brilliant SO community ? :)</p>
http://stackoverflow.com/questions/893070/critically-efficient-server/893095#8930953Answer by DougN for Critically efficient serverDougN2009-05-21T14:04:51Z2009-05-21T14:04:51Z<p>I've worked on servers like this before. They were all written in C (or fairly simple C++). But they were even higher performance -- handling 20K updates per second (all updates from most major stock exchanges).</p>
<p>We would focus on not copying memory around. We were <em>very</em> careful in what STL classes we used. As far as updates, each financial instrument would be an object, and any clients that wanted to hear about that instrument would subscribe to it (ie get added to a list).</p>
<p>The server was multi-threaded, but not heavily so -- maybe a thread handing incoming updates, one handling outgoing client updates, one handling client subscribe/release notifications (don't remember that part -- just remember it had fewer threads than I would have expected, but not just one).</p>
<p>EDIT: Oh, and before I forget, the number of financial transactions happening is growing at an exponential rate. That 20K/sec server was just barely keeping up and the architects were getting stressed about what to do next year. I hear all major financial firms are facing similar problems.</p>
http://stackoverflow.com/questions/865546/generating-symbols-in-release-binaries-with-visual-studio/865570#8655702Answer by DougN for Generating Symbols in release binaries with Visual StudioDougN2009-05-14T20:30:11Z2009-05-14T20:30:11Z<p>Generating debug symbols (ie PDB files) is just creating an external file that a debugger can reference when looking at your code in memory. It doesn't affect the code that the compiler or linker generate (sort of like generating a .MAP file). </p>
<p>Now if you're talking about defining _DEBUG in a release build, that's a whole different question.</p>
http://stackoverflow.com/questions/864246/getting-null-terminated-string-from-system-text-encoding-unicode-getstring0Getting null terminated string from System.Text.Encoding.Unicode.GetStringDougN2009-05-14T16:07:45Z2009-05-14T16:17:09Z
<p>I have an array of bytes that I receive from an external entity. It is a fixed size. The bytes contain a unicode string, with 0 values to pad out the rest of the buffer:</p>
<p>So the bytes might be:</p>
<pre><code>H \0 E \0 L \0 L \0 \0 \0 \0 \0 \0 ... etc
</code></pre>
<p>I'm getting that buffer and converting it to a string like so:</p>
<pre><code>byte[] buffer = new byte[buffSize];
m_dataStream.Read(buffer, 0, buffSize);
String cmd = System.Text.Encoding.Unicode.GetString(buffer);
</code></pre>
<p>What I get back is a string that looks like this:</p>
<pre><code>"HELLO\0\0\0\0\0\0\0\0..."
</code></pre>
<p>How can I tell GetString to terminate the string at the first Unicode null (ie so I just get back "HELLO")?</p>
<p>Thanks for any input.</p>
http://stackoverflow.com/questions/853316/is-critical-section-always-faster/853367#8533671Answer by DougN for Is Critical Section always faster ?DougN2009-05-12T15:28:52Z2009-05-12T15:28:52Z<p>The CriticalSections will spin a short while (few hundred ms) and keep checking if the lock is free. After the spin count 'times out', it will then fall back to the kernel event. So in the case where the holder of the lock gets out quickly, you never have to make the expensive transition to kernel code.</p>
<p>EDIT: Went and found some comments in my code: apparently the MS Heap Manager uses a spin count of 4000 ms</p>
http://stackoverflow.com/questions/1368456/authenticating-users-from-a-certain-group-ldap-active-directory/1368800#1368800Comment by DougN on Authenticating users from a certain group ldap active directoryDougN2009-12-08T17:05:21Z2009-12-08T17:05:21Z@geoffc - are you sure? I'm looking at my AD schema and I see that my user has some memberOf attributes the are the groups I'm a member of. I'm not sure if that's a Microsoft-ism, or if that's standard LDAP practice (trying to figure that out at the moment).http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c/1799928#1799928Comment by DougN on Shutdown exception handling for Win32/C++DougN2009-11-27T14:04:53Z2009-11-27T14:04:53ZInteresting idea. I've had some issues with STL objects at startup so shutdown makes sense...http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c/1804272#1804272Comment by DougN on Shutdown exception handling for Win32/C++DougN2009-11-27T14:04:18Z2009-11-27T14:04:18ZThat's exactly what I'm after :)http://stackoverflow.com/questions/607345/how-to-read-the-windows-event-log-without-an-eventmessagefile/694350#694350Comment by DougN on How to read the Windows Event Log without an EventMessageFile?DougN2009-11-18T20:48:11Z2009-11-18T20:48:11ZDoes that mean an app (the Windows Event Log Viewer for instance) running on a Win2003 machine can't read the events from a Vista machine that uses a new provider?http://stackoverflow.com/questions/1736433/can-realloc-move-pointer-if-new-size-smaller/1736441#1736441Comment by DougN on can realloc move pointer if new size smaller?DougN2009-11-16T14:54:51Z2009-11-16T14:54:51ZYou need to double check your docs. See:
<a href="http://msdn.microsoft.com/en-us/library/csd157zx.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
The CRT grabs a single OS heap to use internally. It then sub-allocates that heap (meaning it doesn't use the Win32 heap calls to do allocations within that heap)http://stackoverflow.com/questions/1730133/programmatically-detect-windows-cluster-configuration/1730189#1730189Comment by DougN on Programmatically detect Windows cluster configuration?DougN2009-11-14T15:26:52Z2009-11-14T15:26:52ZThanks. I need it for Win32, but that is a starting point for me to at least look at.http://stackoverflow.com/questions/1594599/what-is-securesdsdata-on-windows/1618427#1618427Comment by DougN on What is $Secure:$SDS:$DATA on Windows?DougN2009-10-24T19:16:09Z2009-10-24T19:16:09ZMy app does change permissions on some files that it creates (it's a service, so it adds permissions so other users can access them -- mostly log files, and only a limited number of them). I don't find that file on my machines, but one customer has one that is continually growing, and is now 1GB.http://stackoverflow.com/questions/1445084/pattern-for-synching-object-lists-among-computers-in-c/1445178#1445178Comment by DougN on Pattern for synching object lists among computers (in C++)?DougN2009-09-18T20:32:28Z2009-09-18T20:32:28ZLatency will likely be an issue, so I don't think the proxy pattern works. And because there will be so many objects (10K maybe?) and possibly even 100 clients, the Publish/Subscribe seems like it would add a ton of overhead with so many individual updates being fired out.
I'm more looking for something where a client can show up and say, 'what's changed since I was last here' and get a bulk list of data returned.http://stackoverflow.com/questions/1445084/pattern-for-synching-object-lists-among-computers-in-cComment by DougN on Pattern for synching object lists among computers (in C++)?DougN2009-09-18T15:08:17Z2009-09-18T15:08:17ZIt would only grab a single copy of the object if the object's update counter was newer than the client's stored update counter.http://stackoverflow.com/questions/1145780/alternative-to-backgroundworker-that-accepts-more-than-one-argument/1145817#1145817Comment by DougN on Alternative to BackgroundWorker that accepts more than one argument?DougN2009-07-17T21:45:46Z2009-07-17T21:45:46Z+McAden If the library designers handled two arguments, why not three, four, etc? The solution was to handle one, and that one can be an object of arbitrary complexity.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/905738#905738Comment by DougN on Worst UI You've Ever UsedDougN2009-07-15T21:55:48Z2009-07-15T21:55:48ZI doubt it's made up. If you installed Kazaa a few years back (maybe now too?) you'd end up with something pretty close.http://stackoverflow.com/questions/1038707/cant-display-pdf-from-https-in-ie-8-on-64-bit-vista/1038732#1038732Comment by DougN on Can't display PDF from HTTPS in IE 8 (on 64-bit Vista)DougN2009-06-24T15:22:20Z2009-06-24T15:22:20ZHmmm. In IE I unchecked "Do not save encrypted pages to disk". It looks like .jpg, .gif, .js and .css files are getting saved, but no .PDF or .html. Very odd... (although it's right in THIS case, it seems hard to believe IE could guess an image wouldn't contain private info)
http://stackoverflow.com/questions/1038707/cant-display-pdf-from-https-in-ie-8-on-64-bit-vista/1038732#1038732Comment by DougN on Can't display PDF from HTTPS in IE 8 (on 64-bit Vista)DougN2009-06-24T15:00:07Z2009-06-24T15:00:07ZGood call Jeff. It's actually the 32-bit IE on 64-bit Vista (some of the pages contain flash, and there isn't a 64-bit flash player yet). Will edit the question...
http://stackoverflow.com/questions/966905/stuck-on-c-template-deriving-from-stdmap/966924#966924Comment by DougN on Stuck on C++ template - deriving from std::mapDougN2009-06-08T20:54:55Z2009-06-08T20:54:55Zaaaahhh, that's a deadly bug. thanks for pointing it out!http://stackoverflow.com/questions/966905/stuck-on-c-template-deriving-from-stdmap/966913#966913Comment by DougN on Stuck on C++ template - deriving from std::mapDougN2009-06-08T20:49:24Z2009-06-08T20:49:24ZI'm really just doing this so I can call a method when the map is constructed and destructed. If I can do this, I can go through and replace std::map with my new CleanableMap and not have to change anything else. So no new data members.
And even though it wasn't meant to be derived from, what if I was deriving from some other templated class and got this same error? :)