User ZebZiggle - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:26:33Zhttp://stackoverflow.com/feeds/user/3011http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1722254/finding-the-mac-address-of-the-sender-of-a-multicast-udp-message-in-python0Finding the MAC address of the sender of a multicast UDP message in Python?ZebZiggle2009-11-12T13:42:02Z2009-11-12T14:31:31Z
<p>I have some code that listens for "announcements" via UDP multicast. I can get the IP address of the sender, but what I really need is the MAC address of the sender (since the IP address can and will change).</p>
<p>Is there an easy way to do this in Python?</p>
<p>A code snippet is included for reference, but likely unnecessary.</p>
<pre><code>sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP)
# Allow multiple sockets to use the same PORT number
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
# Bind to the port that we know will receive multicast data
sock.bind((self.interface, MCAST_PORT))
# Tell API we are a multicast socket
sock.setsockopt(socket.IPPROTO_IP, socket.IP_MULTICAST_TTL, 255)
# Tell API we want to add ourselves to a multicast group
# The address for the multicast group is the third param
status = sock.setsockopt(socket.IPPROTO_IP,
socket.IP_ADD_MEMBERSHIP,
socket.inet_aton(MCAST_ADDR) + socket.inet_aton(self.interface));
data, addr = sock.recvfrom(1024)
</code></pre>
<p>...</p>
http://stackoverflow.com/questions/39663/what-is-the-best-way-to-do-bit-field-manipulation-in-python8What is the best way to do Bit Field manipulation in Python?ZebZiggle2008-09-02T14:28:40Z2009-10-11T10:01:04Z
<p>I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple way to say "Grab the next 13 bits" rather than have to hand-tweak the bit manipulation? I'd like something like the way C does bit fields (without having to revert to C).</p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/27832/how-can-i-reverse-engineer-a-directshow-graph3How can I reverse engineer a DirectShow graph?ZebZiggle2008-08-26T12:02:08Z2009-07-01T17:21:42Z
<p>I have a DirectShow graph to render MPEG2/4 movies from a network stream. When I assemble the graph by connecting the pins manually it doesn't render. But when I call Render on the GraphBuilder it renders fine. </p>
<p>Obviously there is some setup step that I'm not performing on some filter in the graph that GraphBuilder is performing. </p>
<p>Is there any way to see debug output from GraphBuilder when it assembles a graph?</p>
<p>Is there a way to dump a working graph to see how it was put together?</p>
<p>Any other ideas for unraveling the mystery that lives in the DirectShow box?</p>
<p>Thanks!
-Z</p>
http://stackoverflow.com/questions/378057/not-getting-all-windows-messages-in-mfc-activex-composite-control0Not getting all windows messages in MFC ActiveX Composite ControlZebZiggle2008-12-18T14:46:01Z2009-02-21T06:26:15Z
<p>Hi, </p>
<p>I have a composite control with a declaration like this:</p>
<pre><code> class ATL_NO_VTABLE CFooCtrl :
public CComObjectRootEx<CComSingleThreadModel>,
public IDispatchImpl<CFooCtrl, &IID_IFooCtrl, &LIBID_FooLib>,
public CComCompositeControl<CFooCtrl>,
public IPersistStreamInitImpl<CFooCtrl>,
public IOleControlImpl<CFooCtrl>,
public IOleObjectImpl<CFooCtrl>,
public IOleInPlaceActiveObjectImpl<CFooCtrl>,
public IViewObjectExImpl<CFooCtrl>,
public IOleInPlaceObjectWindowlessImpl<CFooCtrl>,
public IConnectionPointContainerImpl<CFooCtrl>,
public IPersistStorageImpl<CFooCtrl>,
public ISpecifyPropertyPagesImpl<CFooCtrl>,
public IQuickActivateImpl<CFooCtrl>,
public IDataObjectImpl<CFooCtrl>,
public IProvideClassInfo2Impl<&CLSID_FooCtrl, &DIID__IFooCtrlEvents, &LIBID_FooCtrlLib>,
public IPropertyNotifySinkCP<CFooCtrl>,
public CComCoClass<CFooCtrl, &CLSID_FooCtrl>,
public CProxy_IFooCtrlEvents<CFooCtrl>,
{
...
BEGIN_MSG_MAP(CFooCtrl)
CHAIN_MSG_MAP(CComCompositeControl< CFooCtrl >)
DEFAULT_REFLECTION_HANDLER()
MESSAGE_HANDLER(WM_TIMER, OnTimer)
MESSAGE_HANDLER(WM_ERASEBKGND, OnEraseBkgnd)
MESSAGE_HANDLER(WM_KEYDOWN, OnKeyDown)
MESSAGE_HANDLER(WM_KEYUP, OnKeyUp)
MESSAGE_HANDLER(WM_LBUTTONDBLCLK, OnLButtonDblClk)
MESSAGE_HANDLER(WM_LBUTTONDOWN, OnLButtonDown)
MESSAGE_HANDLER(WM_LBUTTONUP, OnLButtonUP)
MESSAGE_HANDLER(WM_PAINT, OnPaint)
MESSAGE_HANDLER(WM_RBUTTONDBLCLK, OnRButtonDblClk)
MESSAGE_HANDLER(WM_RBUTTONDOWN, OnRButtonDown)
MESSAGE_HANDLER(WM_RBUTTONUP, OnRButtonUp)
MESSAGE_HANDLER(WM_MOUSEMOVE, OnMouseMove)
MESSAGE_HANDLER(WM_MOUSEWHEEL, OnMouseWheel)
MESSAGE_HANDLER(WM_SIZE, OnSize)
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
MESSAGE_HANDLER(WM_DESTROY, OnDestroy)
END_MSG_MAP()
LRESULT OnTimer(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnEraseBkgnd(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnKeyDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnKeyUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnLButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnLButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnLButtonUP(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnRButtonDblClk(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnRButtonDown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnRButtonUp(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnMouseMove(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnMouseWheel(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnSize(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnInitDialog(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
LRESULT OnDestroy(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled);
</code></pre>
<p>I get events like OnMouseMove, OnLButtonDown/Up/DblClk, but I don't get events like KeyUp, KeyDown or MouseWheel.</p>
<p>Everything seems to be defined correctly. I've moved </p>
<pre><code> CHAIN_MSG_MAP(CComCompositeControl< CFooCtrl >)
DEFAULT_REFLECTION_HANDLER()
</code></pre>
<p>To the end of the Message Map and no difference. I find that when I remove the Reflection_handler() I don't get crashes on KeyDown, but I suspect those are from my Python program that's driving the control. </p>
<p>The only thing I can assume is that the chained msg map is eating these events, but there is no parent control that should be interested in them. </p>
<p>Anyone have any ideas why I get some messages but not others? Any ideas for regaining those messages?</p>
http://stackoverflow.com/questions/279094/how-do-i-script-an-ole-component-using-python/363885#3638851Answer by ZebZiggle for How do I script an OLE component using Python?ZebZiggle2008-12-12T19:33:01Z2008-12-12T19:33:01Z<p>win32com is a good package to use if you want to use the IDispatch interface to control your objects (slow). comtypes is a better, native python, package that uses the raw COM approach to talking to your controls. WxPython uses comtypes to give you an ActiveX container window from Python ... sweet.</p>
http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/86741#867410Answer by ZebZiggle for Singleton: How should it be usedZebZiggle2008-09-17T19:33:19Z2008-09-17T19:33:19Z<p>The real downfall of Singletons is that they break inheritance. You can't derive a new class to give you extended functionality unless you have access to the code where the Singleton is referenced. So, beyond the fact the the Singleton will make your code tightly coupled (fixable by a Strategy Pattern ... aka Dependency Injection) it will also prevent you from closing off sections of the code from revision (shared libraries).</p>
<p>So even the examples of loggers or thread pools are invalid and should be replaced by Strategies. </p>
http://stackoverflow.com/questions/20510/executing-javascript-from-flex-is-this-javascript-function-dangerous/63603#636030Answer by ZebZiggle for Executing JavaScript from Flex: Is this javascript function dangerous?ZebZiggle2008-09-15T14:52:25Z2008-09-15T14:52:25Z<p>Remember also that the script actions are controlled by the "AllowScriptAccess" tag in the statement. If the web page doesn't want these actions, they should not permit scripts to call out. </p>
<p><a href="http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16494" rel="nofollow">http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_16494</a></p>
http://stackoverflow.com/questions/3150/how-to-set-up-unit-testing-for-visual-studio-c/30776#307760Answer by ZebZiggle for How to set up unit testing for Visual Studio C++ZebZiggle2008-08-27T18:15:50Z2008-08-27T18:15:50Z<p>I like the CxxTest as well for the same reasons. It's a header file only so no linking required. You aren't stuck with Perl as there is a Python runner as well. I will be reviewing the google library soon. The Boost stuff pulls in too much other baggage. </p>
http://stackoverflow.com/questions/30504/programmatically-retrieve-visual-studio-install-directory/30512#305122Answer by ZebZiggle for programmatically retrieve Visual Studio install directoryZebZiggle2008-08-27T15:51:08Z2008-08-27T15:51:08Z<p>I'm sure there's a registry entry as well but I couldn't easily locate it. There is the VS90COMNTOOLS environment variable that you could use as well.</p>
http://stackoverflow.com/questions/2729/what-hosting-service-is-best-for-django-applications/27851#278510Answer by ZebZiggle for What Hosting Service is best for Django applications?ZebZiggle2008-08-26T12:11:06Z2008-08-26T12:11:06Z<p>I used highspeedrails.com but found their support to be terrible. It's fast support, but tramples on your install and is very surly (one over-taxed support person). Webfaction sounds good.</p>