User bgee - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T10:31:34Zhttp://stackoverflow.com/feeds/user/7003http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1706694/server-application-have-to-make-pings-to-n-clients-is-there-way-to-make-it-multi0Server application have to make pings to N clients. Is there way to make it multithreaded?bgee2009-11-10T09:40:42Z2009-11-10T09:51:06Z
<p>I write server application (Windows Server 2003) making upto 1000 ping calls to clients and waiting for receive responses. As ping uses ICMP connection, I've found no way to define from which IP the server receives the responses. Currently I use blocking by Mutex but it practically removes all bonus of multhithreading. Is there another way to make it in multithreaded way? May be I should use another way to connect to clients (the target is to check in fastest way if there is connection to clients)?</p>
http://stackoverflow.com/questions/340122/findwindow-fails-from-service-application2::FindWindow fails from Service applicationbgee2008-12-04T10:17:21Z2009-10-07T05:30:28Z
<p>Windows API ::FindWindow function fails when called from Service application. GetLastError() also returns 0 (success?). Is this some privilege\access right problem? Do you think it's design problem and I should use another IPC method? </p>
http://stackoverflow.com/questions/903253/is-there-any-possibility-to-get-vmware-host-computer-name-from-guest-workstation1Is there any possibility to get VMWARE HOST computer name from GUEST workstation without changing things on HOST?bgee2009-05-24T07:00:08Z2009-09-19T08:00:09Z
<p>Let's suppose I have VMWARE workstation (guesting Windows and hosted by Windows).
Is there any possible way to receive host name of hosting machine?
And without changing things on host machine like in <a href="http://communities.vmware.com/thread/131180" rel="nofollow">this link</a>.</p>
http://stackoverflow.com/questions/1226044/do-you-know-tool-building-tree-of-include-files-in-project-file1Do you know tool building tree of include files in project\file?bgee2009-08-04T07:10:03Z2009-08-05T14:50:36Z
<p>Say, I'd like to have a tool (or script?) taking project (or .h file) and building searchable tree of "includes" included into it (of included into of included into and so so on). Is there exist something like this? Should I write this by myself [of course I am :), but may be somebody had it already written or may be has an idea how to get it]?</p>
http://stackoverflow.com/questions/268069/problem-when-including-a-file-with-an-included-file/1226093#12260930Answer by bgee for Problem when including a file with an included filebgee2009-08-04T07:26:32Z2009-08-04T07:26:32Z<p>Well, of course it doesn't working because namespace defined works only in included.cpp. Simple solution here is to to write "using" once more in main.
Many things in C\C++ defined at a "file scope" and when you are inserting one in another, it's not exactly clear how to define such scope.</p>
<p>Besides, it's indeed not good practice to include cpps. You should include h\hpp files (headers), because it makes troubles in growing projects (cohesion) and makes problems like discussed here. </p>
<pre><code>#include <includedfile.h>
#include <iostream>
int main()
{
std::cout << name << endl;
}
//includedfile.cpp
void DoSomething()
{
std::string name;
name = "jim";
}
//includedfile.h
void DoSomething();
</code></pre>
http://stackoverflow.com/questions/393241/read-write-boostbinaryoarchive-to-pipe0Read\write boost::binary_oarchive to pipe.bgee2008-12-25T22:26:07Z2009-03-16T21:39:41Z
<p>Hello. I am continue to build two simple processes throwing class objects one to another (see my previous post) through simple (anonymous) pipes. Now I revealed for myself boost::serialization (thanks answered people) and have tried to make some class be serialized through ::WriteFile\::ReadFile. So - what I am doing wrong?</p>
<p><hr /></p>
<p>1) I created some class</p>
<pre><code> #pragma once
#include "wtypes.h"
#include <boost\archive\binary_oarchive.hpp>
#include <boost\archive\binary_iarchive.hpp>
#include <boost\serialization\binary_object.hpp>
class CTextContainer
{
friend class boost::serialization::access;
template<class Archive>
void serialize(Archive & ar, const unsigned int version)
{
ar & m_sText;
ar & m_dwCRC;
ar & m_dwSize;
}
public:
CTextContainer() : m_dwCRC(0), m_dwSize(0)
{
ZeroMemory(m_sText, sizeof(m_sText));
m_dwSize = sizeof(*this);
}
CTextContainer(LPCTSTR sText) : m_dwCRC(0), m_dwSize(0)
{
ZeroMemory(m_sText, sizeof(m_sText));
wcsncpy_s(m_sText, 1024, sText, wcslen(sText));
m_dwSize = sizeof(*this);
}
virtual ~CTextContainer(){}
LPTSTR GetText() const{return (LPTSTR) m_sText;}
protected:
DWORD m_dwCRC;
DWORD m_dwSize;
TCHAR m_sText[1024];
}; //end of class
</code></pre>
<p>2) And now I am trying to read from this class into binary archive and to write its content to one end of pipe... </p>
<pre><code>boost::archive::binary_oarchive oa(ofs);
oa << tc;
::WriteFile(hPipe, &oa, dwRead, &dwWritten, NULL) == FALSE
</code></pre>
<p>It won't work in that way, right? So, how it will?</p>
<p>3) Same operation on other side?</p>
http://stackoverflow.com/questions/419559/is-this-possible-use-ellipsis-in-macro-can-it-be-converted-to-template2Is this possible use ellipsis in macro? Can it be converted to template?bgee2009-01-07T08:23:32Z2009-01-07T12:18:58Z
<p>Having implemented CLogClass to make decent logging I also defined macro, but it works only with one parameter...</p>
<pre><code>class CLogClass
{
public:
static void DoLog(LPCTSTR sMessage, ...);
};
#define DebugLog(sMessage, x) ClogClass::DoLog(__FILE__, __LINE__, sMessage, x)
</code></pre>
<p>Well, it fails when called with more than 2 parameters :( ... Is it possible at all to avoid it? Can it be translated to templates somehow?</p>
<p>EDIT: Variadic macros were introduced in VS 2005 (But i'm currently in VS 2003...). Any advices?</p>
http://stackoverflow.com/questions/350811/mfc-equivalent-to-java-fileisdirectory/351200#3512001Answer by bgee for MFC Equivalent to Java File#isDirectory()bgee2008-12-08T22:35:48Z2008-12-08T22:35:48Z<p>Sorry for possibly "inconsistency" of answer to question but may be you'll see it useful because anytime I need something like this in Windows I am NOT using MFC but regular Windows API: </p>
<pre><code>//not completely tested but after some debug I'm sure it'll work
bool IsDirectory(LPCTSTR sDirName)
{
//First define special structure defined in windows
WIN32_FIND_DATA findFileData; ZeroMemory(&findFileData, sizeof(WIN32_FIND_DATA));
//after that call WinAPI function finding file\directory
//(don't forget to close handle after all!)
HANDLE hf = ::FindFirstFile(sDirName, &findFileData);
if (hf == INVALID_HANDLE_VALUE) //also predefined value - 0xFFFFFFFF
return false;
//closing handle!
::FindClose(hf);
// true if directory flag in on
return (findFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) != 0;
}
</code></pre>
http://stackoverflow.com/questions/347951/simple-anonymous-pipes-what-wrapper-model-you-use-winapi-c1Simple anonymous pipes - what wrapper model you use? (WinAPI, C++)bgee2008-12-07T19:31:07Z2008-12-07T22:01:14Z
<p>I have two running processes in Windows, and each process has a pipe to the other.</p>
<p>I want to serialize a complicated class and transmit it from one process to the other. I already have the serialization procedure worked out, and I understand that the pipes are sending binary streams. How should I go about sending my serialized data? I'm using WinAPI and C++.</p>
<p>Should I develop a custom protocol? If so, should it be generic or unique to this particular class? Can I preserve virtual tables when sending the serialized class?</p>
<p>Are there any models or design patterns that are commonly used in this case? A little bit of sample code would be greatly appreciated. Thank you!</p>
http://stackoverflow.com/questions/340122/findwindow-fails-from-service-application/340155#3401550Answer by bgee for ::FindWindow fails from Service applicationbgee2008-12-04T10:30:09Z2008-12-04T10:30:09Z<p>No. How can I do it?</p>
http://stackoverflow.com/questions/295027/array-of-zero-length7Array of zero lengthbgee2008-11-17T06:54:23Z2008-11-17T18:23:06Z
<p>I am working on refactoring some old code and have found few structs containing zero length arrays (below). Warnings depressed by pragma, of course, but I've failed to create by "new" structures containing such structures (error 2233). Array 'byData' used as pointer, but why not to use pointer instead? or array of length 1? And of course, no comments were added to make me enjoy the process...
Any causes to use such thing? Any advice in refactoring those?</p>
<pre><code>struct someData
{
int nData;
BYTE byData[0];
}
</code></pre>
<p>NB It's C++, Windows XP, VS 2003</p>
http://stackoverflow.com/questions/138361/how-much-faster-is-c-than-c/140705#1407051Answer by bgee for How much faster is C++ than C#?bgee2008-09-26T17:06:31Z2008-09-26T17:06:31Z<p>I suppose there are applications written in C# running fast, as well as there are more C++ written apps running fast (well C++ just older... and take UNIX too...)<br />
- the question indeed is - what is that thing, users and developers are complaining about ...<br />
Well, IMHO, in case of C# we have very comfort UI, very nice hierarchy of libraries, and whole interface system of CLI. In case of C++ we have templates, ATL, COM, MFC and whole shebang of alreadyc written and running code like OpenGL, DirectX and so on... Developers complains of indeterminably risen GC calls in case of C# (means program runs fast, and in one second - bang! it's stuck).<br />
To write code in C# very simple and fast (not to forget that also increase chance of errors.
In case of C++, developers complains of memory leaks, - means crushes, calls between DLLs, as well as of "DLL hell" - problem with support and replacement libraries by newer ones...<br />
I think more skill you'll have in the programming language, the more quality (and speed) will characterize your software.</p>
http://stackoverflow.com/questions/33643/diagramming-software-for-a-developer-designer/81976#819762Answer by bgee for Diagramming Software for a Developer/Designerbgee2008-09-17T10:54:27Z2008-09-17T10:54:27Z<p>I've tried <a href="http://www.sparxsystems.com.au/products/ea/index.html" rel="nofollow">Sparx Enterprise Architecht</a>. It's good combination of price and quality. By the way, in wikipedia I find table of comparison of commercial and non commercial tools, that I recommend to review too.</p>
http://stackoverflow.com/questions/70159/what-is-the-best-source-to-learn-c/71206#712060Answer by bgee for What is the best source to learn C++?bgee2008-09-16T10:58:38Z2008-09-16T11:05:19Z<p>Well, I'd advise to self-learner to open <a href="http://en.wikipedia.org/wiki/C%2B%2B_structures_and_classes" rel="nofollow">wikipedia</a> (great starter!). Next, find or steal good environment (For linux its KDE, for windows - Visual Studio 6 or 2003 or 2005) and build alone your first "Hello, world" program.
As a book I'd recommend S. Lippman' <a href="http://rads.stackoverflow.com/amzn/click/0201721481" rel="nofollow">C++ Primer</a></p>
http://stackoverflow.com/questions/62188/stack-overflow-code-golf/63025#630250Answer by bgee for Stack overflow code golfbgee2008-09-15T13:48:02Z2008-09-15T14:03:39Z<pre><code>//lang = C++... it's joke, of course
//Pay attention how
void StackOverflow(){printf("StackOverflow!");}
int main()
{
StackOverflow(); //called StackOverflow, right?
}
</code></pre>
http://stackoverflow.com/questions/716762/c-stl-which-method-of-iteration-over-a-stl-container-is-better/716775#716775Comment by bgee on C++ STL: Which method of iteration over a STL container is better?bgee2009-08-30T08:17:54Z2009-08-30T08:17:54ZI'm personally against using macros in C++... IMHO very dangerous practice...http://stackoverflow.com/questions/1226044/do-you-know-tool-building-tree-of-include-files-in-project-file/1226639#1226639Comment by bgee on Do you know tool building tree of include files in project\file?bgee2009-08-05T14:34:44Z2009-08-05T14:34:44ZThanks. In common, "I'm after" .h file (consequence of includes) in big and old project causing failures. I am interested in MSVC, but if I not receive better answer - this will do.
http://stackoverflow.com/questions/419559/is-this-possible-use-ellipsis-in-macro-can-it-be-converted-to-template/419805#419805Comment by bgee on Is this possible use ellipsis in macro? Can it be converted to template?bgee2009-01-07T13:53:12Z2009-01-07T13:53:12ZIt's seems almost right... but chaining attributes into one stream is not a problem... The real problem is to serialize class containing all arguments through process boundary... and deserialize them after... So it's good solution but still not an answer...http://stackoverflow.com/questions/419559/is-this-possible-use-ellipsis-in-macro-can-it-be-converted-to-template/419636#419636Comment by bgee on Is this possible use ellipsis in macro? Can it be converted to template?bgee2009-01-07T09:19:05Z2009-01-07T09:19:05ZAll this works... besides of the macro - as I said ellipsis is not working in macro in VS2003. See - <a href="http://msdn.microsoft.com/en-us/library/ms177415(VS.80).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a> ...http://stackoverflow.com/questions/347951/simple-anonymous-pipes-what-wrapper-model-you-use-winapi-c/348180#348180Comment by bgee on Simple anonymous pipes - what wrapper model you use? (WinAPI, C++)bgee2008-12-08T22:18:30Z2008-12-08T22:18:30ZSo there is not some 'common' model\protocol... For a say, few different classes?