User James Hopkin - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T22:04:00Zhttp://stackoverflow.com/feeds/user/11828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/102459/why-does-stdstack-use-stddeque-by-default/102859#1028595Answer by James Hopkin for Why does std::stack use std::deque by default?James Hopkin2008-09-19T15:28:25Z2009-09-14T15:20:48Z<p>See Herb Sutter's <a href="http://www.gotw.ca/gotw/054.htm" rel="nofollow">Guru of the Week 54</a> for the relative merits of vector and deque where either would do.</p>
<p>I imagine the inconsistency between priority_queue and queue is simply that different people implemented them.</p>
http://stackoverflow.com/questions/892133/should-i-prefer-pointers-or-references-in-member-data/892303#8923033Answer by James Hopkin for Should I prefer pointers or references in member data?James Hopkin2009-05-21T10:41:37Z2009-07-14T10:52:56Z<p>Avoid reference members, because they restrict what the implementation of a class can do (including, as you mention, preventing the implementation of an assignment operator) and provide no benefits to what the class can provide.</p>
<p>Example problems:</p>
<ul>
<li>you are forced to initialise the reference in each constructor's initialiser list: there's no way to factor out this initialisation into another function (until C++0x, anyway)</li>
<li>the reference cannot be rebound or be null. This can be an advantage, but if the code ever needs changing to allow rebinding or for the member to be null, all uses of the member need to change</li>
<li>unlike pointer members, references can't easliy be replaced by smart pointers or iterators as refactoring might require</li>
</ul>
http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1097558#10975583Answer by James Hopkin for Name resolution in templatesJames Hopkin2009-07-08T11:45:47Z2009-07-14T09:28:29Z<p>The article is correct about whether <code>d++</code> should compile.</p>
<p>Visual C++ does not do two-phase template instantiation - it does pretty much all its parsing at instatiation time.</p>
<p>Gcc and <a href="http://www.comeaucomputing.com/tryitout/" rel="nofollow">Comeau</a> will give the correct error and will call the correct <code>f</code>.</p>
http://stackoverflow.com/questions/1016928/is-there-any-direct-way-to-do-what-pinptr-does1Is there any direct way to do what pin_ptr does?James Hopkin2009-06-19T08:36:27Z2009-07-10T15:31:24Z
<p>Can the behaviour of pin_ptr be achieved directly in C++/CLI? For example, is it possible to write CLR code directly, something like <code>asm</code> for native apps?</p>
<p>An example of what I would like to do is a wrapper for a <code>pin_ptr</code> (impossible because of the restrictions on <code>pin_ptr</code>s).</p>
<pre><code>class WrappedPtr
{
public:
explicit WrappedPtr(String^ s)
{
pin = PtrToStringChars(s);
// I want to pin s for the lifetime of this object (only used on the stack)
}
};
</code></pre>
http://stackoverflow.com/questions/1092561/is-returning-a-stdlist-costly/1092605#10926050Answer by James Hopkin for Is returning a std::list costly?James Hopkin2009-07-07T14:17:24Z2009-07-07T14:17:24Z<p>It may be costly, in that it will copy every element in the list. More importantly, it has different behaviour: do you want a copy of the list or do you want a pointer to the original list?</p>
http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python1Preventing invoking C types from PythonJames Hopkin2009-07-03T14:49:31Z2009-07-06T10:38:44Z
<p>What's the correct way to prevent invoking (creating an instance of) a C type from Python?</p>
<p>I've considered providing a <code>tp_init</code> that raises an exception, but as I understand it that would still allow <code>__new__</code> to be called directly on the type.</p>
<p>A C function returns instances of this type -- that's the only way instances of this type are intended to be created.</p>
<p><strong>Edit:</strong> My intention is that users of my type will get an exception if they accidentally use it wrongly. The C code is such that calling a function on an object incorrectly created from Python would crash. I realise this is unusual: all of my C extension types so far have worked nicely when instantiated from Python. My question is whether there is a usual way to provide this restriction.</p>
http://stackoverflow.com/questions/39746/hgtortoise-in-vista-64-bit-not-showing-the-context-menu/1074373#10743730Answer by James Hopkin for HgTortoise in Vista 64-bit not showing the context menuJames Hopkin2009-07-02T13:35:15Z2009-07-02T13:35:15Z<p>I've just noticed that the context menu and icons work from a file open dialog from some apps (on Vista). I now just use Notepad++'s file open dialog, since I use Notepad++ all the time.</p>
<p>It seems to have to be the simple open dialog, not the new one Notepad has, for example.</p>
<p>Maybe someone can check if this trick works in Windows 7.</p>
http://stackoverflow.com/questions/1063037/how-can-i-make-a-list-of-files-modification-dates-and-paths/1063120#10631202Answer by James Hopkin for How can I make a list of files, modification dates and paths?James Hopkin2009-06-30T11:15:01Z2009-06-30T11:15:01Z<pre><code>import os
import time
for root, dirs, files in os.walk('your_root_directory'):
for f in files:
modification_time_seconds = os.stat(os.path.join(root, f)).st_mtime
local_mod_time = time.localtime(modification_time_seconds)
print '%s %s.%s.%s %s' % (f, local_mod_time.tm_mon, local_mod_time.tm_mday, local_mod_time.tm_year, root)
</code></pre>
http://stackoverflow.com/questions/1032602/template-ing-a-for-loop-in-c/1033294#10332945Answer by James Hopkin for template-ing a for loop in C++?James Hopkin2009-06-23T15:25:52Z2009-06-23T15:25:52Z<p>This is the way to do it directly:</p>
<pre><code>template <int i, int j>
struct inner
{
static void value()
{
A(row<i,j>::value, column<i,j>::value) = f<i,j>::value;
inner<i, j+1>::value();
}
};
template <int i> struct inner<i, J> { static void value() {} };
template <int i>
struct outer
{
static void value()
{
inner<i, 0>::value();
outer<i+1>::value();
}
};
template <> struct outer<I> { static void value() {} };
void test()
{
outer<0>::value();
}
</code></pre>
<p>You can pass <code>A</code> through as a parameter to each of the <code>value</code>s if necessary.</p>
http://stackoverflow.com/questions/1032602/template-ing-a-for-loop-in-c/1032915#10329151Answer by James Hopkin for template-ing a for loop in C++?James Hopkin2009-06-23T14:29:42Z2009-06-23T14:29:42Z<p><code>f</code> would need to return a <code>double</code> - that can't be done at compile time.</p>
http://stackoverflow.com/questions/1018189/problems-implementing-the-observer-pattern/1018850#10188500Answer by James Hopkin for Problems implementing the "Observer" patternJames Hopkin2009-06-19T16:22:55Z2009-06-19T16:22:55Z<p>How about having a member iterator called <code>current</code> (initialised to be the <code>end</code> iterator). Then</p>
<pre><code>void remObserver(Observer* obs)
{
list<Observer*>::iterator i = observers.find(obs);
if (i == current) { ++current; }
observers.erase(i);
}
void notifyAll()
{
current = observers.begin();
while (current != observers.end())
{
// it's important that current is incremented before notify is called
Observer* obs = *current++;
obs->notify();
}
}
</code></pre>
http://stackoverflow.com/questions/1013449/combining-c-and-python-functions-in-a-module0Combining C and Python functions in a moduleJames Hopkin2009-06-18T15:41:00Z2009-06-19T00:59:43Z
<p>I have a C extension module, to which I would like to add some Python utility functions. Is there a recommended way of doing this?</p>
<p>For example:</p>
<pre><code>import my_module
my_module.super_fast_written_in_C()
my_module.written_in_Python__easy_to_maintain()
</code></pre>
<p>I'm primarily interested in Python 2.x.</p>
http://stackoverflow.com/questions/1011790/why-does-stdstring-findtext-stdstringnpos-not-return-npos/1011858#10118583Answer by James Hopkin for Why does std::string.find(text,std::string:npos) not return npos?James Hopkin2009-06-18T09:56:07Z2009-06-18T09:56:07Z<p><code>std::string::npos</code> is not a valid argument for <code>std::string::find</code>.</p>
<p>The definition of <code>find</code> in the Standard only mentions <code>npos</code> as a possible return value, not a start position.</p>
http://stackoverflow.com/questions/1008019/c-singleton-design-pattern/1008112#10081120Answer by James Hopkin for C++ Singleton design pattern.James Hopkin2009-06-17T16:15:51Z2009-06-17T16:15:51Z<p>Another non-allocating alternative: create a singleton, say of class <code>C</code>, as you need it:</p>
<pre><code>singleton<C>()
</code></pre>
<p>using</p>
<pre><code>template <class X>
X& singleton()
{
static X x;
return x;
}
</code></pre>
<p>Neither this nor Cătălin's answer is automatically thread-safe in current C++, but will be in C++0x.</p>
http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006087#10060871Answer by James Hopkin for How to detect whether there is a specific member variable in class?James Hopkin2009-06-17T09:49:48Z2009-06-17T10:06:00Z<p>Try this:</p>
<pre><code>template<class X, bool=&X::x> struct Check_x_t;
template<class P> bool Check_x(P p, Check_x_t<P>* = 0) { return true; }
template<class P> bool Check_x(P p, ...) { return false; }
struct P1 {int x; };
struct P2 {int X; };
void test()
{
P1 p1; P2 p2;
Check_x(p1); // returns true
Check_x(p2); // returns false
}
</code></pre>
<p>The following link explains why your first solution is failing on certain compilers:</p>
<p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2634.html</a></p>
<p>(it fails on Comeau as well as VC).</p>
http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1005589#10055891Answer by James Hopkin for How to detect whether there is a specific member variable in class?James Hopkin2009-06-17T07:28:18Z2009-06-17T07:28:18Z<p>The second answer (litb's) to this shows how to detect a member:</p>
<p><a href="http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence">http://stackoverflow.com/questions/257288/possible-for-c-template-to-check-for-a-functions-existence</a></p>
http://stackoverflow.com/questions/1002550/improvements-to-c-cli-in-net-framework-releases1Improvements to C++/CLI in .NET framework releasesJames Hopkin2009-06-16T16:22:25Z2009-06-16T17:10:46Z
<p>There have been substantial features and improvements in C# with each new release of the .NET framework, and in the upgrade from .NET1.0 to .NET2.0, Managed C++ was replaced with C++/CLI, which was a great improvement.</p>
<p>Have there been any improvements in C++/CLI since .NET2.0?</p>
http://stackoverflow.com/questions/1001420/how-to-define-a-function-with-same-name-which-is-present-in-different-file/1001640#10016400Answer by James Hopkin for How to define a function with same name which is present in different fileJames Hopkin2009-06-16T13:55:04Z2009-06-16T13:55:04Z<p>One way is to document that <em>if</em> Winbase.h is included, it must be included before this header. Normally that would be a horrible requirement, but with Windows headers, it's pretty much a given that you're in for a world of pain unless you include them first (normally in a precompiled header, as @sharptooth says).</p>
<p>That done, put this in your header:</p>
<pre><code>#ifdef UpdateResource
#pragma push_macro("UpdateResource")
#undef UpdateResource
#endif
</code></pre>
<p>Anyone simultaneously needing the original definition of <code>UpdateResource</code> and your class just needs to put</p>
<pre><code>#pragma pop_macro("UpdateResource")
</code></pre>
http://stackoverflow.com/questions/999727/cannot-convert-from-const-wchart-to-tchar/1000386#10003860Answer by James Hopkin for Cannot convert from 'const wchar_t *' to '_TCHAR *'James Hopkin2009-06-16T09:18:49Z2009-06-16T09:18:49Z<p><code>strGroupName</code> should also be a pointer to <code>const</code>.</p>
<pre><code>const _TCHAR* strGroupName = _tcschr(strTempName, 92);
</code></pre>
<p>No need to declare it until the call to initialise it.</p>
http://stackoverflow.com/questions/1000303/is-there-a-faster-way-to-detect-object-type-at-runtime-than-using-dynamiccast/1000318#10003180Answer by James Hopkin for Is there a faster way to detect object type at runtime than using dynamic_cast?James Hopkin2009-06-16T09:00:18Z2009-06-16T09:00:18Z<p>Would comparing <code>type_info</code>s be any faster? (call <code>typeid</code> on parameter <code>param</code>)</p>
http://stackoverflow.com/questions/994593/how-to-do-an-integer-log2-in-c/996177#9961770Answer by James Hopkin for How to do an integer log2() in C++?James Hopkin2009-06-15T13:42:13Z2009-06-15T13:42:13Z<p>Compile-time solution, anyone?</p>
<pre><code>template <int N> struct log2
{
static const int value = log2<(N>>1)>::value + 1;
};
template <> struct log2<0>
{
static const int value = -1;
};
int n = log2<128>::value; // n is 7
</code></pre>
http://stackoverflow.com/questions/995281/bus-error-segmentation-fault-for-stdvectorint-declaration/995736#9957360Answer by James Hopkin for bus error/segmentation fault for std::vector<int> declarationJames Hopkin2009-06-15T12:01:24Z2009-06-15T12:01:24Z<p>Does QSweep's 2-parameter constructor call functions in its initialiser list, e.g.</p>
<pre><code>QSweep(const MxDouble2d& myPoints, const MxInt2d& myEdges)
: sweepEvents(MemberFunctionCall())
...
</code></pre>
<p>That's something that is dependent on the declaration order of the class members, and so might cause your problem. The member function might call the member vector before it has been constructed.</p>
http://stackoverflow.com/questions/984394/why-not-infer-template-parameter-from-constructor/986197#9861971Answer by James Hopkin for Why not infer template parameter from constructor?James Hopkin2009-06-12T11:36:09Z2009-06-12T11:36:09Z<p>Deduction of types is limited to template functions in current C++, but it's long been realised that type deduction in other contexts would be very useful. Hence C++0x's <code>auto</code>.</p>
<p>While <em>exactly</em> what you suggest won't be possible in C++0x, the following shows you can get pretty close:</p>
<pre><code>template <class X>
Variable<typename std::remove_reference<X>::type> MakeVariable(X&& x)
{
// remove reference required for the case that x is an lvalue
return Variable<typename std::remove_reference<X>::type>(std::forward(x));
}
void test()
{
auto v = MakeVariable(2); // v is of type Variable<int>
}
</code></pre>
http://stackoverflow.com/questions/981400/what-happens-if-a-throw-statement-is-executed-outside-of-catch-block/981435#98143513Answer by James Hopkin for What happens if a throw; statement is executed outside of catch block?James Hopkin2009-06-11T14:28:00Z2009-06-11T14:28:00Z<p>From the Standard, 15.1/8</p>
<blockquote>
<p>If no exception is presently being handled, executing a <em>throw-expression</em> with no operand calls <code>std::terminate</code>().</p>
</blockquote>
http://stackoverflow.com/questions/981186/chain-iterator-for-c/981296#9812961Answer by James Hopkin for chain iterator for C++James Hopkin2009-06-11T14:04:21Z2009-06-11T14:17:21Z<p>I've written one before (actually, just to chain two pairs of iterators together). It's not that hard, especially if you use boost's <code>iterator_facade</code>.</p>
<p>Making an input iterator (which is effectively what Python's <code>chain</code> does) is an easy first step. Finding the correct category for an iterator chaining a combination of different iterator categories is left as an exercise for the reader ;-).</p>
http://stackoverflow.com/questions/980015/variable-initialising-and-constructors/980108#9801081Answer by James Hopkin for Variable initialising and constructors James Hopkin2009-06-11T09:11:27Z2009-06-11T09:11:27Z<p>No, the variable is only left uninitialised in the first case.</p>
<p>For a member that is a class with a user-defined constructor, the situation is simple: a constructor is always called.</p>
<p>Built-in types (and 'plain old data' structs) may be left uninitialised, as in your first example. Although they don't have user-supplied constructors, using the construction syntax (your other two examples) initialises them to zero.</p>
<p>The reason for this slightly tricky rule is to avoid undue overhead; for example if you defined:</p>
<p>struct S
{
int array[1024*1024];
};</p>
<p>with the intention of only assigning values as you needed them, you wouldn't want the compiler to whitewash 4Mb of memory with zeroes whenever you construct one.</p>
http://stackoverflow.com/questions/974512/ignoring-source-code-in-the-debugger3Ignoring source code in the debuggerJames Hopkin2009-06-10T09:16:34Z2009-06-10T09:47:51Z
<p>How can I get the Visual Studio debugger to ignore certain source files? In other words, I would like it to behave as if the functions defined in those files had no debugging info, so that:</p>
<ul>
<li>When stepping into code, it will ignore functions defined in those files (a smart pointer <code>operator-></code> is an example where this is useful)</li>
<li>If the debugger stops due to an exception or <code>_asm int 3</code> in one of these files, it shows a function further up the callstack instead (handy for assert code)</li>
</ul>
<p>VC6 had a (undocumented?) feature along these lines, if my long term memory isn't playing tricks on me.</p>
<p>I'm using Visual Studio 2005, but the answer for each version of Visual Studio, if different, would be useful.</p>
http://stackoverflow.com/questions/974219/concurrently-iterating-through-even-and-odd-items-of-list/974577#9745771Answer by James Hopkin for concurrently iterating through even and odd items of listJames Hopkin2009-06-10T09:33:42Z2009-06-10T09:33:42Z<p>Try:</p>
<pre><code>def alternate(i):
i = iter(i)
while True:
yield(i.next(), i.next())
>>> list(alternate(range(10)))
[(0, 1), (2, 3), (4, 5), (6, 7), (8, 9)]
</code></pre>
<p>This solution works on any sequence, not just lists, and doesn't copy the sequence (it will be far more efficient if you only want the first few elements of a long sequence).</p>
http://stackoverflow.com/questions/956310/eliminating-the-inter-compiler-incompatibility-issue-with-c-dynamic-libraries/956647#9566473Answer by James Hopkin for eliminating the inter-compiler incompatibility issue with C++ dynamic librariesJames Hopkin2009-06-05T15:52:29Z2009-06-07T17:25:13Z<p>I think your approach is right. I'd put it this way:</p>
<ul>
<li>For a dll to be usable by different compilers, it must contain only C functions (they can be compiled using a C++ compiler using <code>extern C</code>)</li>
<li>As usual with dlls, a static import library can be used so that functions in the dll can be called directly, rather than needing to be loaded by name</li>
<li>Instead of a regular import library, you could have a wrapper library that wraps the dll's C functions in C++ classes and functions</li>
</ul>
http://stackoverflow.com/questions/920355/how-do-i-clone-a-sub-folder-of-a-repository-in-mercurial4How do I clone a sub-folder of a repository in Mercurial?James Hopkin2009-05-28T11:18:47Z2009-06-06T03:51:33Z
<p>I have a Mercurial repository containing a handful of related projects. I want to branch just one of these projects to work on it elsewhere.</p>
<p>Is cloning just part of a repository possible, and is that the right way to achieve this?</p>
http://stackoverflow.com/questions/102459/why-does-stdstack-use-stddeque-by-default/102859#102859Comment by James Hopkin on Why does std::stack use std::deque by default?James Hopkin2009-09-14T15:21:36Z2009-09-14T15:21:36ZThanks - missed this comment originally
http://stackoverflow.com/questions/1005476/how-to-detect-whether-there-is-a-specific-member-variable-in-class/1006087#1006087Comment by James Hopkin on How to detect whether there is a specific member variable in class?James Hopkin2009-09-14T11:49:25Z2009-09-14T11:49:25ZThanks - got it now. Trying to compile 'void f(int n=0); void f(...); void test() { f(); }' proves your point pretty quickly!
IIUC, the code in my answer should fail to compile due to the first call being ambiguous (and indeed it does on Comeau).http://stackoverflow.com/questions/1016928/is-there-any-direct-way-to-do-what-pinptr-does/1110263#1110263Comment by James Hopkin on Is there any direct way to do what pin_ptr does?James Hopkin2009-07-15T09:00:58Z2009-07-15T09:00:58ZThanks, I'll give that a go when I get a chance.http://stackoverflow.com/questions/1124634/c-call-destructor-and-then-constructor-resetting-an-object/1124651#1124651Comment by James Hopkin on C++: Call destructor and then constructor (resetting an object)James Hopkin2009-07-14T11:02:45Z2009-07-14T11:02:45Z+1: Good point about exception safetyhttp://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357Comment by James Hopkin on Name resolution in templatesJames Hopkin2009-07-14T10:59:26Z2009-07-14T10:59:26ZBy 'hard to implement' btw, I'm thinking that the compiler has to keep track of all the fs that were defined until g's definition point so that it can pick the right one when it's instantiated with a built-in type.http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357Comment by James Hopkin on Name resolution in templatesJames Hopkin2009-07-14T10:57:35Z2009-07-14T10:57:35ZThat's true, but I think it's an inconsistency that doesn't buy very much. I can't think of any sane examples where you'd overload an existing template function for a built-in type.http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357Comment by James Hopkin on Name resolution in templatesJames Hopkin2009-07-14T09:50:09Z2009-07-14T09:50:09ZIf I've read the DR correctly, it seems they've gone for a 'quick fix' - make the example fit the wording - but actually the behaviour is inconsistent, and I'd guess hard to implement.http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1098357#1098357Comment by James Hopkin on Name resolution in templatesJames Hopkin2009-07-14T09:36:53Z2009-07-14T09:36:53ZExcellent - I hadn't read that defect report. It's a little more subtle than I thought.http://stackoverflow.com/questions/1097479/name-resolution-in-templates/1097558#1097558Comment by James Hopkin on Name resolution in templatesJames Hopkin2009-07-14T09:29:44Z2009-07-14T09:29:44Z@litb: I should have been more specific about which bit of the article I was talking about (I didn't read it all in detail). Amended my answer now.http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1080514#1080514Comment by James Hopkin on Preventing invoking C types from PythonJames Hopkin2009-07-06T10:35:49Z2009-07-06T10:35:49ZI'm going to give this a try. +1 for now - I'll acccept the answer when I've given it a test.http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1079981#1079981Comment by James Hopkin on Preventing invoking C types from PythonJames Hopkin2009-07-06T10:34:25Z2009-07-06T10:34:25ZJust to slightly explain further: really it's just a case of an type that doesn't make sense to be invoked from Python, since it needs resources only the C library can provide. Currently my code will crash if an uninitialised instance's method is called. One option I have is to keep an 'initialised' member, and raise an exception in every method if it's false. I'm looking for alternatives, partly to get the earliest warning to the user.http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1080330#1080330Comment by James Hopkin on Preventing invoking C types from PythonJames Hopkin2009-07-06T09:29:21Z2009-07-06T09:29:21ZI wouldn't call having my library crash the interpreter 'bulletproof' :-)http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-pythonComment by James Hopkin on Preventing invoking C types from PythonJames Hopkin2009-07-03T16:24:14Z2009-07-03T16:24:14Z@Lennart: Agreed. Perhaps my tp_init exception is enough. I'm curious if there's a more bulletproof way. I fully expected to receive the answer: 'don't do it' ;-).http://stackoverflow.com/questions/1079690/preventing-invoking-c-types-from-python/1079981#1079981Comment by James Hopkin on Preventing invoking C types from PythonJames Hopkin2009-07-03T16:14:29Z2009-07-03T16:14:29ZI'm not sure what you mean by not exporting the type. I want the type to be usable, just only created from C.http://stackoverflow.com/questions/1063037/how-can-i-make-a-list-of-files-modification-dates-and-pathsComment by James Hopkin on How can I make a list of files, modification dates and paths?James Hopkin2009-06-30T11:02:31Z2009-06-30T11:02:31ZNone of those links answer the modification time part of the question.