User cwick - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:02:17Z http://stackoverflow.com/feeds/user/4828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api 1 Accessing a Python traceback from the C API cwick 2009-11-25T12:05:44Z 2009-11-25T12:21:48Z <p>I'm having some trouble figuring out the proper way to walk a Python traceback using the C API. I'm writing an application that embeds the Python interpreter. I want to be able to execute arbitrary Python code, and if it raises an exception, to translate it to my own application-specific C++ exception. For now, it is sufficient to extract just the file name and line number where the Python exception was raised. This is what I have so far:</p> <pre><code>PyObject* pyresult = PyObject_CallObject(someCallablePythonObject, someArgs); if (!pyresult) { PyObject* excType, *excValue, *excTraceback; PyErr_Fetch(&amp;excType, &amp;excValue, &amp;excTraceback); PyErr_NormalizeException(&amp;excType, &amp;excValue, &amp;excTraceback); PyTracebackObject* traceback = (PyTracebackObject*)traceback; // Advance to the last frame (python puts the most-recent call at the end) while (traceback-&gt;tb_next != NULL) traceback = traceback-&gt;tb_next; // At this point I have access to the line number via traceback-&gt;tb_lineno, // but where do I get the file name from? // ... } </code></pre> <p>Digging around in the Python source code, I see they access both the filename and module name of the current frame via the <code>_frame</code> structure, which looks like it is a privately-defined struct. My next idea was to programmatically load the Python 'traceback' module and call its functions with the C API. Is this sane? Is there a better way to access a Python traceback from C?</p> http://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api/1796569#1796569 0 Answer by cwick for Accessing a Python traceback from the C API cwick 2009-11-25T12:21:48Z 2009-11-25T12:21:48Z <p>I've discovered that <code>_frame</code> is actually defined in the <code>frameobject.h</code> header included with Python. Armed with this plus looking at <code>traceback.c</code> in the Python C implementation, we have:</p> <pre><code>#include &lt;Python.h&gt; #include &lt;frameobject.h&gt; PyTracebackObject* traceback = get_the_traceback(); int line = traceback-&gt;tb_lineno; const char* filename = PyString_AsString(traceback-&gt;tb_frame-&gt;f_code-&gt;co_filename); </code></pre> <p>But this still seems really dirty to me.</p> http://stackoverflow.com/questions/1457920/embedding-one-cmake-project-inside-of-another/1796374#1796374 0 Answer by cwick for Embedding one cmake project inside of another? cwick 2009-11-25T11:32:33Z 2009-11-25T11:32:33Z <p>CMake 2.8 added a new <a href="http://www.cmake.org/cmake/help/cmake-2-8-docs.html#module%3AExternalProject" rel="nofollow">External Project</a> module, which lets you create a custom target to drive the build of another CMake project. The documentation on this is kind of weak, but it looks like it might do what you want. </p> <p>I think the idea would be to call ExternalProject_Add from your parent project, pointing it to the source directory of the child project (you can even have it check the child project out of SVN or CVS for you, nice!).</p> http://stackoverflow.com/questions/1795742/any-real-world-cmake-project-example/1796213#1796213 0 Answer by cwick for Any real world CMake project example ? cwick 2009-11-25T11:06:08Z 2009-11-25T11:06:08Z <p>I use <a href="http://www.openscenegraph.org/projects/osg" rel="nofollow" title="OpenSceneGraph">OpenSceneGraph</a> as my general CMake how-to guide quite a bit.</p> http://stackoverflow.com/questions/889406/using-multiple-ssl-client-certificates-in-java-with-the-same-host 2 Using multiple SSL client certificates in Java with the same host cwick 2009-05-20T18:12:00Z 2009-11-02T22:50:47Z <p>In my Java application, I need to connect to the same host using SSL, but using a different certificate each time. The reason I need to use different certificates is that the remote site uses a user ID property embedded in the certificate to identify the client.</p> <p>This is a server application that runs on 3 different operating systems, and I need to be able to switch certificates without restarting the process.</p> <p><a href="http://stackoverflow.com/questions/759603/how-do-i-use-multiple-ssl-certificates-in-java">Another user</a> suggested importing multiple certificates into the same keystore. I'm not sure that helps me, though, unless there is a way to tell Java which certificate in the keystore to use.</p> http://stackoverflow.com/questions/316461/what-are-the-best-programming-articles/318092#318092 8 Answer by cwick for What are the best programming articles? cwick 2008-11-25T16:54:39Z 2009-07-15T18:24:20Z <p><a href="http://www.paulgraham.com/gh.html" rel="nofollow">Great Hackers</a> by Paul Graham</p> http://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface 5 Proper use of the IDisposable interface cwick 2009-02-11T18:12:41Z 2009-06-29T21:20:15Z <p>I know from reading the MSDN documentation that the "primary" use of the IDisposable interface is to clean up unmanaged resources <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.idisposable.aspx</a>.</p> <p>To me, "unmanaged" means things like database connections, sockets, window handles, etc. But, I've seen code where the Dispose method is implemented to free <em>managed</em> resources, which seems redundant to me, since the garbage collector should take care of that for you.</p> <p>For example:</p> <pre><code>public class MyCollection : IDisposable { private List&lt;String&gt; _theList = new List&lt;String&gt;(); private Dictionary&lt;String, Point&gt; _theDict = new Dictionary&lt;String, Point&gt;(); // Die, you gravy sucking pig dog! public void Dispose() { _theList.clear(); _theDict.clear(); _theList = null; _theDict = null; } </code></pre> <p>My question is, does this make the garbage collector free memory used by MyCollection any faster than it normally would?</p> <p><strong>edit</strong>: So far people have posted some good examples of using IDisposable to clean up unmanaged resources such as database connections and bitmaps. But suppose that _theList in the above code contained a million strings, and you wanted to free that memory <em>now</em>, rather than waiting for the garbage collector. Would the above code accomplish that?</p> http://stackoverflow.com/questions/1041218/the-self-factory-pattern 0 The "Self-Factory" Pattern cwick 2009-06-24T21:55:27Z 2009-06-24T22:12:42Z <p>I don't know if there is an official name for this, but I have been playing with what I like to call the "self-factory" pattern. Basically, it's when an abstract base class acts as a factory for itself. Let me explain:</p> <p>I have Foo objects and Bar objects in my system, which are used via interfaces FooInterface and BarInterface. I need to give my clients the right type of Foo and Bar. The decision of which concrete Foo object to create is made at compile time. For example, if you compile on win32, you want to only create Win32Foo objects, and if you compile on OSX you want to only create OSXFoo objects and so on. But, the decision of which concrete Bar object to create is made at runtime, based on a key string.</p> <p>Now, my question is about the best way to implement this scheme. One way I come up with uses regular factories:</p> <pre><code>shared_ptr&lt;FooInterface&gt; foo = FooFactory::create(); shared_ptr&lt;BarInterface&gt; happyBar = BarFactory::create("Happy"); shared_ptr&lt;BarInterface&gt; sadBar = BarFactory::create("Sad"); </code></pre> <p>Another way is to use what I call "self-factories":</p> <pre><code>shared_ptr&lt;FooInterface&gt; foo = FooInterface::create(); shared_ptr&lt;BarInterface&gt; happyBar = BarInterface::create("Happy"); shared_ptr&lt;BarInterface&gt; sadBar = BarInterface::create("Sad"); </code></pre> <p>What are the pros and cons of each approach, both from a usability standpoint and from an architectural standpoint?</p> http://stackoverflow.com/questions/203030/best-way-to-list-files-in-java-sorted-by-date-modified 5 Best way to list files in Java, sorted by Date Modified? cwick 2008-10-14T22:04:56Z 2009-06-21T13:22:04Z <p>I want to get a list of files in a directory, but I want to sort it such that the oldest files are first. My solution was to call File.listFiles and just resort the list based on File.lastModified, but I was wondering if there was a better way.</p> <p>Edit: My current solution, as suggested, is to use an anonymous Comparator:</p> <pre><code>File[] files = directory.listFiles(); Arrays.sort(files, new Comparator&lt;File&gt;(){ public int compare(File f1, File f2) { return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified()); } }); </code></pre> http://stackoverflow.com/questions/50605/signed-to-unsigned-conversion-in-c-is-it-always-safe 6 signed to unsigned conversion in C - is it always safe? cwick 2008-09-08T20:36:45Z 2009-05-07T03:29:24Z <p>Suppose I have the following C code:</p> <pre><code>unsigned int u = 1234; int i = -5678; unsigned int result = u + i; </code></pre> <p>What implicit conversions are going on here, and is this code safe for all values of u and i? (safe, in the sense that even though <em>result</em> in this example will overflow to some huge positive number, I could cast it back to an <em>int</em> and get the real result)</p> http://stackoverflow.com/questions/636595/what-is-the-point-of-saying-define-foo-foo-in-c 8 What is the point of saying "#define FOO FOO" in C? cwick 2009-03-11T22:13:37Z 2009-03-12T14:39:31Z <p>I came across some C code where the author uses the following idiom all over the place:</p> <pre><code>typedef __int32 FOO_INT32; #define FOO_INT32 FOO_INT32 </code></pre> <p>What is the point of doing this? Shouldn't the typedef be enough? It is a workaround for some wonky C compilers out there?</p> http://stackoverflow.com/questions/112969/what-are-some-resources-for-learning-to-write-specifcations/231192#231192 1 Answer by cwick for What are some resources for learning to write specifcations? cwick 2008-10-23T19:48:34Z 2008-10-23T19:48:34Z <p>See <a href="http://www.joelonsoftware.com/articles/fog0000000036.html" rel="nofollow">Painless Functional Specs</a> by Joel Spolsky.</p> <p>Some of the things he says every spec should have:</p> <ul> <li>A disclaimer</li> <li>An author. One author</li> <li>Scenarios</li> <li>Nongoals</li> <li>An Overview</li> <li>Details, details, details</li> <li>Open Issues</li> <li>Side notes</li> </ul> http://stackoverflow.com/questions/149395/what-are-some-ways-of-accessing-microsoft-sql-server-from-linux 9 What are some ways of accessing Microsoft SQL Server from Linux? cwick 2008-09-29T16:09:25Z 2008-09-29T22:02:09Z <p>We have a Windows machine running SQL Server 2005, and we need to be able to run some database queries on it from a Linux box. What are some of the recommended ways of doing this? Ideally, we would want a command-line utility similar to sqlcmd on Windows.</p> http://stackoverflow.com/questions/106033/how-do-i-call-a-net-assembly-from-c-c 9 How do I call a .NET assembly from C/C++? cwick 2008-09-19T22:06:37Z 2008-09-20T01:50:48Z <p>Suppose I am writing an application in C++ and C#. I want to write the low level parts in C++ and write the high level logic in C#. How can I load a .NET assembly from my C++ program and start calling methods and accessing the properties of my C# classes?</p> http://stackoverflow.com/questions/106033/how-do-i-call-a-net-assembly-from-c-c/106241#106241 0 Answer by cwick for How do I call a .NET assembly from C/C++? cwick 2008-09-19T22:49:28Z 2008-09-19T22:49:28Z <p>I found this link to embedding Mono: <a href="http://www.mono-project.com/Embedding_Mono" rel="nofollow">http://www.mono-project.com/Embedding_Mono</a></p> <p>It provides what seems to be a pretty straightforward interface for interacting with assemblies. This could be an attractive option, especially if you want to be cross-platform</p> http://stackoverflow.com/questions/50525/c-implicit-casting-and-interger-overflowing-in-the-evaluation-of-expressions/50611#50611 0 Answer by cwick for C: Implicit casting and interger overflowing in the evaluation of expressions cwick 2008-09-08T20:39:19Z 2008-09-08T20:39:19Z <p>See section 2.7, <em>Type Conversions</em> in the K&amp;R book</p> http://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api/1796538#1796538 Comment by cwick on Accessing a Python traceback from the C API cwick 2009-11-26T08:10:47Z 2009-11-26T08:10:47Z Not sure I understand how this helps. I am not writing an extension module, but rather embedding the interpreter. So to implement your solution (if I'm understand you right) I would have to write a blob of Python code and store it in my C++ code as a string. Then at some point I would have to compile the code, create a function out of it, then call the function via PyObject_CallObject. This seems like a ton of work compared to just examining the native stack frame structures in C. http://stackoverflow.com/questions/889406/using-multiple-ssl-client-certificates-in-java-with-the-same-host/889475#889475 Comment by cwick on Using multiple SSL client certificates in Java with the same host cwick 2009-05-20T18:43:50Z 2009-05-20T18:43:50Z Yes, unfortunately, it didn't work. Java seems to only read the javax.net.ssl.keyStore once, when you first make an SSL connection. http://stackoverflow.com/questions/496448/how-to-correctly-use-the-extern-keword-in-c/499330#499330 Comment by cwick on How to correctly use the extern keword in c. cwick 2009-02-02T16:52:59Z 2009-02-02T16:52:59Z The problem isn't that the myCFile1 and myCFile2 modules have a separate copy of errno, it's that they are both exposing a symbol called &quot;errno&quot;. When the linker sees this, it doesn't know which &quot;errno&quot; to pick, so it will bail out with an error message. http://stackoverflow.com/questions/203030/best-way-to-list-files-in-java-sorted-by-date-modified Comment by cwick on Best way to list files in Java, sorted by Date Modified? cwick 2008-10-15T15:46:21Z 2008-10-15T15:46:21Z I chose this form because it is less verbose ; it's a choice between a one-liner and a 6-liner. You're right that new'ing up all these Longs could be an issue. What about using Long.valueOf, so Java at least has a chance to cache frequent values? http://stackoverflow.com/questions/106033/how-do-i-call-a-net-assembly-from-c-c/106097#106097 Comment by cwick on How do I call a .NET assembly from C/C++? cwick 2008-09-19T23:06:18Z 2008-09-19T23:06:18Z Mason Bendixen warns against using ClassInterfaceType.AutoDual <a href="http://blogs.msdn.com/mbend/archive/2007/04/17/classinterfacetype-none-is-my-recommended-option-over-autodispatch-autodual.aspx" rel="nofollow">blogs.msdn.com/mbend/archive/&hellip;</a>