User cwick - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:02:17Zhttp://stackoverflow.com/feeds/user/4828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api1Accessing a Python traceback from the C APIcwick2009-11-25T12:05:44Z2009-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(&excType, &excValue, &excTraceback);
PyErr_NormalizeException(&excType, &excValue, &excTraceback);
PyTracebackObject* traceback = (PyTracebackObject*)traceback;
// Advance to the last frame (python puts the most-recent call at the end)
while (traceback->tb_next != NULL)
traceback = traceback->tb_next;
// At this point I have access to the line number via traceback->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#17965690Answer by cwick for Accessing a Python traceback from the C APIcwick2009-11-25T12:21:48Z2009-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 <Python.h>
#include <frameobject.h>
PyTracebackObject* traceback = get_the_traceback();
int line = traceback->tb_lineno;
const char* filename = PyString_AsString(traceback->tb_frame->f_code->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#17963740Answer by cwick for Embedding one cmake project inside of another?cwick2009-11-25T11:32:33Z2009-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#17962130Answer by cwick for Any real world CMake project example ?cwick2009-11-25T11:06:08Z2009-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-host2Using multiple SSL client certificates in Java with the same hostcwick2009-05-20T18:12:00Z2009-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#3180928Answer by cwick for What are the best programming articles?cwick2008-11-25T16:54:39Z2009-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-interface5Proper use of the IDisposable interfacecwick2009-02-11T18:12:41Z2009-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<String> _theList = new List<String>();
private Dictionary<String, Point> _theDict = new Dictionary<String, Point>();
// 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-pattern0The "Self-Factory" Patterncwick2009-06-24T21:55:27Z2009-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<FooInterface> foo = FooFactory::create();
shared_ptr<BarInterface> happyBar = BarFactory::create("Happy");
shared_ptr<BarInterface> sadBar = BarFactory::create("Sad");
</code></pre>
<p>Another way is to use what I call "self-factories":</p>
<pre><code>shared_ptr<FooInterface> foo = FooInterface::create();
shared_ptr<BarInterface> happyBar = BarInterface::create("Happy");
shared_ptr<BarInterface> 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-modified5Best way to list files in Java, sorted by Date Modified?cwick2008-10-14T22:04:56Z2009-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<File>(){
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-safe6signed to unsigned conversion in C - is it always safe?cwick2008-09-08T20:36:45Z2009-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-c8What is the point of saying "#define FOO FOO" in C?cwick2009-03-11T22:13:37Z2009-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#2311921Answer by cwick for What are some resources for learning to write specifcations?cwick2008-10-23T19:48:34Z2008-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-linux9What are some ways of accessing Microsoft SQL Server from Linux?cwick2008-09-29T16:09:25Z2008-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-c9How do I call a .NET assembly from C/C++?cwick2008-09-19T22:06:37Z2008-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#1062410Answer by cwick for How do I call a .NET assembly from C/C++?cwick2008-09-19T22:49:28Z2008-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#506110Answer by cwick for C: Implicit casting and interger overflowing in the evaluation of expressionscwick2008-09-08T20:39:19Z2008-09-08T20:39:19Z<p>See section 2.7, <em>Type Conversions</em> in the K&R book</p>
http://stackoverflow.com/questions/1796510/accessing-a-python-traceback-from-the-c-api/1796538#1796538Comment by cwick on Accessing a Python traceback from the C APIcwick2009-11-26T08:10:47Z2009-11-26T08:10:47ZNot 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#889475Comment by cwick on Using multiple SSL client certificates in Java with the same hostcwick2009-05-20T18:43:50Z2009-05-20T18:43:50ZYes, 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#499330Comment by cwick on How to correctly use the extern keword in c.cwick2009-02-02T16:52:59Z2009-02-02T16:52:59ZThe 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 "errno". When the linker sees this, it doesn't know which "errno" 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-modifiedComment by cwick on Best way to list files in Java, sorted by Date Modified?cwick2008-10-15T15:46:21Z2008-10-15T15:46:21ZI 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#106097Comment by cwick on How do I call a .NET assembly from C/C++?cwick2008-09-19T23:06:18Z2008-09-19T23:06:18ZMason 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/…</a>