User Roger Pate - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T02:28:51Zhttp://stackoverflow.com/feeds/user/54262http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1898920/how-might-i-overload-the-new-operator-to-allocate-memory-from-a-secondary-memor/1898960#18989605Answer by Roger Pate for How might I overload the "new" operator to allocate memory from a secondary memory device?Roger Pate2009-12-14T04:39:11Z2009-12-14T04:54:49Z<pre><code>#include <new>
void* operator new(std::size_t size) throw(std::bad_alloc) {
for (;;) {
void* result = allocate_from_some_other_source(size);
if (result) return result;
std::new_handler nh = std::set_new_handler(0);
std::set_new_handler(nh); // put it back
// this is clumsy, I know, but there's no portable way to query the current
// new handler without replacing it
// you don't have to use new handlers if you don't want to
if (!nh) throw std::bad_alloc();
nh();
}
}
void operator delete(void* ptr) throw() {
if (ptr) { // if your deallocation function must not receive null pointers
// then you must check first
// checking first regardless always works correctly, if you're unsure
deallocate_from_some_other_source(ptr);
}
}
void* operator new[](std::size_t size) throw(std::bad_alloc) {
return operator new(size); // defer to non-array version
}
void operator delete[](void* ptr) throw() {
operator delete(ptr); // defer to non-array version
}
</code></pre>
http://stackoverflow.com/questions/1894269/convert-string-list-to-list-in-python/1894296#189429610Answer by Roger Pate for convert string list to list in pythonRoger Pate2009-12-12T18:30:49Z2009-12-12T18:38:11Z<pre><code>>>> import ast
>>> x = u'[ "A","B","C" , " D"]'
>>> x = ast.literal_eval(x)
>>> x
['A', 'B', 'C', ' D']
>>> x = [n.strip() for n in x]
>>> x
['A', 'B', 'C', 'D']
</code></pre>
<p><a href="http://docs.python.org/library/ast.html#ast.literal%5Feval" rel="nofollow">ast.literal_eval</a>:</p>
<blockquote>
<p>Safely evaluate an expression node or a string containing a Python expression. The string or node provided may only consist of the following Python literal structures: strings, numbers, tuples, lists, dicts, booleans, and None.</p>
</blockquote>
http://stackoverflow.com/questions/1886002/python-control-structure-utilisation/1886035#18860353Answer by Roger Pate for Python control structure utilisationRoger Pate2009-12-11T05:44:45Z2009-12-11T07:12:19Z<pre><code>L = list # 'list' is a poor variable name, use something else
result = min((n.foo(args) for n in L),
key=lambda x: ClassFred.objects.get(arg1=x))
# if you don't have to use arg1 as a named parameter:
result = min((n.foo(args) for n in L), key=ClassFred.objects.get)
</code></pre>
<p>The min function compares the given items and returns the minimum one (of course :P). What isn't obvious at first is you can control what value is used to compare them, this is the 'key' parameter.</p>
<pre><code>>>> L = [-2, -1, 3]
>>> min(L)
-2
>>> min(L, key=abs)
-1
</code></pre>
<p>The key function computes the "comparison key", and that is what is used to compare. The default key function is identity, where the comparison key for an item is the item itself.</p>
<pre><code>>>> def identity(x):
... return x
>>> min(L, key=identity)
-2
</code></pre>
<p>Another example:</p>
<pre><code>>>> min("0000", "11", "222", "3")
"0000" # lexicographical minimum
>>> min("0000", "11", "222", "3", key=len)
"3"
</code></pre>
<p>Your code above is using <code>item.foo(args)</code> as values, where item comes from your list; but the result of passing that through <code>ClassFred.objects.get(arg1=..)</code> is used to compare. This means that construct is your key function:</p>
<pre><code>values = (n.foo(args) for n in L) # this is a generator expression
# it is similar to a list comprehension, but doesn't compute or store
# everything immediately
def keyfunc(x):
return ClassFred.objects.get(arg1=x)
result = min(values, key=keyfunc)
</code></pre>
<p>My code at the top just puts this together in one statement.</p>
http://stackoverflow.com/questions/1885868/pythonic-way-to-read-a-set-number-of-lines-from-a-file/1885909#18859098Answer by Roger Pate for Pythonic way to read a set number of lines from a fileRoger Pate2009-12-11T05:12:20Z2009-12-11T05:26:27Z<pre><code>import itertools
header_lines = list(itertools.islice(file_handle, header_len))
# or
header = "".join(itertools.islice(file_handle, header_len))
</code></pre>
<p>Note that with the first, the newline chars will still be present, to strip them:</p>
<pre><code>header_lines = list(n.rstrip("\n")
for n in itertools.islice(file_handle, header_len))
</code></pre>
http://stackoverflow.com/questions/1876371/c-typedef-meaning/1876400#18764002Answer by Roger Pate for C++ typedef meaning Roger Pate2009-12-09T19:55:42Z2009-12-09T19:55:42Z<p>This aliases RComplex to the type "array (of length 100) of PComplex", also known as <code>PComplex[100]</code>. The following two variable declarations give each the same type: (after the above typedef)</p>
<pre><code>PComplex a[100];
RComplex b;
</code></pre>
http://stackoverflow.com/questions/1873625/i-need-a-clean-approach-for-range-checking-floats-in-python/1873913#18739133Answer by Roger Pate for I need a clean approach for range-checking floats in PythonRoger Pate2009-12-09T13:30:39Z2009-12-09T13:30:39Z<p>Using INF from <a href="#1873750" rel="nofollow">atzz's answer</a> (in a way that won't fail when <code>0.0</code> is used):</p>
<pre><code>def coalesce(*values):
for v in values:
if v is not None:
return v
if coalesce(tmin, -INF) <= tval <= coalesce(tmax, INF):
return tval
</code></pre>
<p>However, what you have is clear enough for me:</p>
<pre><code>if ((tmin is None or tmin <= tval) and
(tmax is None or tval <= tmax)):
return tval
</code></pre>
http://stackoverflow.com/questions/1863568/xargs-command-on-cygwin-is-mangling-file-paths/1863673#18636730Answer by Roger Pate for XArgs command on cygwin is mangling file pathsRoger Pate2009-12-07T23:42:00Z2009-12-07T23:42:00Z<p>Use sed to change the <code>\</code> into <code>/</code>. (Forward slashes work with the Windows API and almost all Windows programs, they have to be specifically rejected to not work.) You want to keep using the same version of svn (as you might be using elsewhere, say with a GUI) so you don't have to worry about corrupting your data.</p>
<p>Or change everything over to using cygwin's version of svn.</p>
<p>The root problem is xargs is re-interpreting the data, whether because that's how it works on cygwin or it has to pass everything through a shell (which then does it), I'm not sure (and can't test until tomorrow).</p>
http://stackoverflow.com/questions/1863326/regex-negation-question/1863343#18633435Answer by Roger Pate for regex negation question Roger Pate2009-12-07T22:25:54Z2009-12-07T22:25:54Z<pre><code>/\bVAT\b/
/\b(0\.)?15%?\b/
</code></pre>
<p>The last allows things like "0.15%", but those should be few enough to filter out later. Regex isn't the best tool for this, and what about expressions like "10 + 5"? But if it meets your needs, it's at least easy to use!</p>
http://stackoverflow.com/questions/1857287/send-selected-text-to-a-command-line-argument/1857330#18573303Answer by Roger Pate for Send selected text to a command line argumentRoger Pate2009-12-07T01:43:12Z2009-12-07T01:43:12Z<pre><code>#!/bin/bash
pytranslate "$(xsel -p)"
</code></pre>
<p>Now just put this in <code>~/bin</code> (make sure that's included in your PATH), and run it. (You may need to install the xsel package.) It will take the current contents of the primary selection buffer and pass it to pytranslate.</p>
<p>If you want it as a button, create a launcher which runs this in a terminal, and use bash's read command to do "Press ENTER to continue".</p>
http://stackoverflow.com/questions/1753486/copy-constructor-for-a-binary-tree-c/1753494#17534947Answer by Roger Pate for Copy constructor for a binary tree C++Roger Pate2009-11-18T03:43:49Z2009-12-06T06:00:42Z<p>Pseudo-code:</p>
<pre><code>struct Tree {
Tree(Tree const& other) {
for (each in other) {
insert(each);
}
}
void insert(T item);
};
</code></pre>
<p>Concrete example (changing how you walk the tree is important to know, but detracts from showing how the copy ctor works, and might be doing too much of someone's homework here):</p>
<pre><code>#include <algorithm>
#include <iostream>
#include <vector>
template<class Type>
struct TreeNode {
Type data;
TreeNode* left;
TreeNode* right;
explicit
TreeNode(Type const& value=Type()) : data(value), left(0), right(0) {}
};
template<class Type>
struct Tree {
typedef TreeNode<Type> Node;
Tree() : root(0) {}
Tree(Tree const& other) : root(0) {
std::vector<Node const*> remaining;
Node const* cur = other.root;
while (cur) {
insert(cur->data);
if (cur->right) {
remaining.push_back(cur->right);
}
if (cur->left) {
cur = cur->left;
}
else if (remaining.empty()) {
break;
}
else {
cur = remaining.back();
remaining.pop_back();
}
}
}
~Tree() {
std::vector<Node*> remaining;
Node* cur = root;
while (cur) {
Node* left = cur->left;
if (cur->right) {
remaining.push_back(cur->right);
}
delete cur;
if (left) {
cur = left;
}
else if (remaining.empty()) {
break;
}
else {
cur = remaining.back();
remaining.pop_back();
}
}
}
void insert(Type const& value) {
// sub-optimal insert
Node* new_root = new Node(value);
new_root->left = root;
root = new_root;
}
// easier to include simple op= than either disallow it
// or be wrong by using the compiler-supplied one
void swap(Tree& other) { std::swap(root, other.root); }
Tree& operator=(Tree copy) { swap(copy); return *this; }
friend
ostream& operator<<(ostream& s, Tree const& t) {
std::vector<Node const*> remaining;
Node const* cur = t.root;
while (cur) {
s << cur->data << ' ';
if (cur->right) {
remaining.push_back(cur->right);
}
if (cur->left) {
cur = cur->left;
}
else if (remaining.empty()) {
break;
}
else {
cur = remaining.back();
remaining.pop_back();
}
}
return s;
}
private:
Node* root;
};
int main() {
using namespace std;
Tree<int> a;
a.insert(5);
a.insert(28);
a.insert(3);
a.insert(42);
cout << a << '\n';
Tree<int> b (a);
cout << b << '\n';
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1842681/regular-expression-to-remove-one-parameter-from-query-string/1842760#18427602Answer by Roger Pate for Regular expression to remove one parameter from query stringRoger Pate2009-12-03T20:38:28Z2009-12-03T22:12:07Z<pre><code>/(?<=&|\?)foo(=[^&]*)?(&|$)/
</code></pre>
<p>Uses lookbehind and the last group to "anchor" the match, and allows a missing value. Change the <code>\?</code> to <code>^</code> if you've already stripped off the question mark from the query string.</p>
<p>Regex is still not a substitute for a real parser of the query string, however.</p>
<p><em>Update:</em> Test script: (run it at <a href="http://codepad.org/" rel="nofollow">codepad.org</a>)</p>
<pre><code>import re
regex = r"(^|(?<=&))foo(=[^&]*)?(&|$)"
cases = {
"foo=123": "",
"foo=123&bar=456": "bar=456",
"bar=456&foo=123": "bar=456",
"abc=789&foo=123&bar=456": "abc=789&bar=456",
"oopsfoo=123": "oopsfoo=123",
"oopsfoo=123&bar=456": "oopsfoo=123&bar=456",
"bar=456&oopsfoo=123": "bar=456&oopsfoo=123",
"abc=789&oopsfoo=123&bar=456": "abc=789&oopsfoo=123&bar=456",
"foo": "",
"foo&bar=456": "bar=456",
"bar=456&foo": "bar=456",
"abc=789&foo&bar=456": "abc=789&bar=456",
"foo=": "",
"foo=&bar=456": "bar=456",
"bar=456&foo=": "bar=456",
"abc=789&foo=&bar=456": "abc=789&bar=456",
}
failures = 0
for input, expected in cases.items():
got = re.sub(regex, "", input)
if got != expected:
print "failed: input=%r expected=%r got=%r" % (input, expected, got)
failures += 1
if not failures:
print "Success"
</code></pre>
<p>It shows where my approach failed, <a href="#1842787" rel="nofollow">Mark</a> has the right of it—which should show why you shouldn't do this with regex.. :P</p>
<p><hr></p>
<p>The problem is associating the query parameter with exactly one ampersand, and—if you must use regex (if you haven't picked up on it :P, I'd use a separate parser, which might use regex inside it, but still actually understand the format)—one solution would be to make sure there's exactly one ampersand per parameter: replace the leading <code>?</code> with a <code>&</code>.</p>
<p>This gives <code>/&foo(=[^&]*)?(?=&|$)/</code>, which is very straight forward and the best you're going to get. Remove the leading <code>&</code> in the final result (or change it back into a <code>?</code>, etc.). Modifying the test case to do this uses the same cases as above, and changes the loop to:</p>
<pre><code>failures = 0
for input, expected in cases.items():
input = "&" + input
got = re.sub(regex, "", input)
if got[:1] == "&":
got = got[1:]
if got != expected:
print "failed: input=%r expected=%r got=%r" % (input, expected, got)
failures += 1
if not failures:
print "Success"
</code></pre>
http://stackoverflow.com/questions/1842909/fopen-two-processes/1842988#18429881Answer by Roger Pate for fopen two processesRoger Pate2009-12-03T21:20:01Z2009-12-03T21:20:01Z<p>If you're not on Windows, the easiest way among cooperating processes is to use <a href="http://google.com/search?q=man+flock" rel="nofollow">flock</a>. (Use <a href="http://google.com/search?q=man+fdopen" rel="nofollow">fdopen</a> to get a FILE from a fd.)</p>
http://stackoverflow.com/questions/1837656/jump-table-switch-case-question/1837986#18379861Answer by Roger Pate for Jump Table Switch Case questionRoger Pate2009-12-03T06:10:59Z2009-12-03T06:10:59Z<p>A <strong>jump table</strong> is an abstract structure used to <strong>transfer control</strong> to another location. Goto, continue, and break are similar, except they always transfer to a specific location instead of one possibility from many. In particular, this control flow is not the same as a function call. (Wikipedia's article on <a href="http://en.wikipedia.org/wiki/Branch%5Ftable" rel="nofollow">branch tables</a> is related.)</p>
<p>A <strong>switch statement</strong> is how to write jump tables in C/C++. Only a limited form is provided (can only switch on integral types) to make implementations easier and faster in this common case. (How to implement jump tables efficiently has been studied much more for integral types than for the general case.) A classic example is <a href="http://en.wikipedia.org/wiki/Duffs%5Fdevice" rel="nofollow">Duff's Device</a>.</p>
<p>However, <strong>the full capability of a jump table is often not required</strong>, such as when every case would have a break statement. These "limited jump tables" are a <strong>different pattern</strong>, which is only taking advantage of a jump table's well-studied efficiency, and are common when each "action" is independent of the others.</p>
<p><hr></p>
<p>Actual implementations of jump tables take different forms, mostly differing in how the key to index mapping is done. That mapping is where terms like "dictionary" and "hash table" come in, and those techniques can be used independently of a jump table. Saying that some code "uses a jump table" doesn't imply by itself that you have O(1) lookup.</p>
<p>The compiler is free to choose the lookup method for each switch statement, and there is no guarantee you'll get one particular implementation; however, compiler options such as optimize-for-speed and optimize-for-size should be taken into account.</p>
<p>You should <strong>look into studying data structures</strong> to get a handle on the different complexity requirements imposed by them. Briefly, if by "dictionary" you mean a balanced binary tree, then it is O(log n); and a hash table depends on its hash function and collision strategy. In the particular case of switch statements, since the compiler has full information, it can generate a <a href="http://en.wikipedia.org/wiki/Perfect%5Fhash%5Ffunction" rel="nofollow">perfect hash function</a> which means O(1) lookup. However, don't get lost by just looking at overall algorithmic complexity: it hides important factors.</p>
http://stackoverflow.com/questions/1832003/instantiating-classes-by-name-with-factory-pattern/1837665#18376651Answer by Roger Pate for Instantiating classes by name with factory patternRoger Pate2009-12-03T04:35:09Z2009-12-03T04:35:09Z<p>Here is a generic <a href="http://bitbucket.org/kniht/scraps/src/tip/cpp/simple%5Ffactory.hpp" rel="nofollow">factory example</a> implementation:</p>
<pre><code>template<class Interface, class KeyT=std::string>
struct Factory {
typedef KeyT Key;
typedef std::auto_ptr<Interface> Type;
typedef Type (*Creator)();
bool define(Key const& key, Creator v) {
// Define key -> v relationship, return whether this is a new key.
return _registry.insert(typename Registry::value_type(key, v)).second;
}
Type create(Key const& key) {
typename Registry::const_iterator i = _registry.find(key);
if (i == _registry.end()) {
throw std::invalid_argument(std::string(__PRETTY_FUNCTION__) +
": key not registered");
}
else return i->second();
}
template<class Base, class Actual>
static
std::auto_ptr<Base> create_func() {
return std::auto_ptr<Base>(new Actual());
}
private:
typedef std::map<Key, Creator> Registry;
Registry _registry;
};
</code></pre>
<p>This is not meant to be the best in every circumstance, but it is intended to be a first approximation and a more useful default than manually implementing the type of function <a href="#1832027" rel="nofollow">stijn mentioned</a>. How each hierarchy should register itself isn't mandated by Factory, but you may like the <a href="http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list/1691506#1691506">method</a> gf mentioned (it's simple, clear, and very useful, and yes, this overcomes the inherent problems with macros in this case).</p>
<p>Here's a <a href="http://bitbucket.org/kniht/scraps/src/tip/cpp/test%5Fsimple%5Ffactory.cpp" rel="nofollow">simple example</a> of the factory:</p>
<pre><code>struct Base {
typedef ::Factory<Base> Factory;
virtual ~Base() {}
virtual int answer() const = 0;
static Factory::Type create(Factory::Key const& name) {
return _factory.create(name);
}
template<class Derived>
static void define(Factory::Key const& name) {
bool new_key = _factory.define(name,
&Factory::template create_func<Base, Derived>);
if (not new_key) {
throw std::logic_error(std::string(__PRETTY_FUNCTION__) +
": name already registered");
}
}
private:
static Factory _factory;
};
Base::Factory Base::_factory;
struct A : Base {
virtual int answer() const { return 42; }
};
int main() {
Base::define<A>("A");
assert(Base::create("A")->answer() == 42);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1837092/c-destruction-of-temporary-object-in-an-expression/1837140#18371406Answer by Roger Pate for C++ destruction of temporary object in an expressionRoger Pate2009-12-03T01:41:08Z2009-12-03T03:48:44Z<blockquote>
<p>Temporary objects are destroyed as the last step in evaluating the full-expression (1.9) that (lexically) contains the point where they were created. [12.2/3]</p>
</blockquote>
http://stackoverflow.com/questions/1837159/encapsulating-a-private-enum/1837198#18371980Answer by Roger Pate for Encapsulating a private enumRoger Pate2009-12-03T01:59:26Z2009-12-03T01:59:26Z<p>No, <code>enum ClassA::foo { a, b, c };</code> is not correct syntax.</p>
<p>If you want to move the enum out of the header and into the implementation (.cpp) file, then just do that. If you want to use the enum for parameter types of methods of the class, then you cannot move it, so just leave it private.</p>
http://stackoverflow.com/questions/1837024/problem-with-returning-arguments-that-are-const-references/1837059#18370590Answer by Roger Pate for Problem with returning arguments that are const referencesRoger Pate2009-12-03T01:18:56Z2009-12-03T01:28:00Z<blockquote>
<p>Is it not possible to imagine a situation where a method implementor wants to return an argument that is a const reference and is unavoidable?</p>
</blockquote>
<p>Wrong question to ask, really. All you have to do is include whether the returned reference might be to a parameter (passed by reference), and <strong>document that as part of the interface</strong>. (This is often obvious already, too.) Let the caller decide what to do, including making the temporary into an explicit object and then passing that.</p>
<p>It is common and <em>required</em> to document the lifetimes of returned pointers and references, such as for std::string::data.</p>
<blockquote>
<p>What would you do in C++ in this situation?</p>
</blockquote>
<p>Often you can pass and return <strong>by value instead</strong>. This is commonly done with things like std::copy (for the destination iterator in this case).</p>
http://stackoverflow.com/questions/1832160/can-i-use-c-templates-to-generate-unicode-ansi-variants-of-a-function-rather-t/1832187#18321874Answer by Roger Pate for Can I use C++ templates to generate Unicode/ANSI variants of a function, rather than using the preprocessor?Roger Pate2009-12-02T10:57:48Z2009-12-02T23:35:51Z<p><em>Update:</em> I misread the question, thinking you already had A and W functions written which you wanted to call through the same name. What you have is indeed a situation for which templates are designed, but I won't repeat the <a href="#1832206" rel="nofollow">correct answer</a>.</p>
<p>Simple overloading works, no need for templates or additional complexity. The Win32 API uses macros because C doesn't have overloading.</p>
<pre><code>inline
void MyFunctionName(std::wstring const& value) { MyFunctionNameW(value); }
inline
void MyFunctionName(std::string const& value) { MyFUnctionNameA(value); }
</code></pre>
http://stackoverflow.com/questions/1831498/logical-value-of-an-assignment-in-c/1831573#18315731Answer by Roger Pate for Logical value of an assignment in CRoger Pate2009-12-02T08:52:39Z2009-12-02T08:58:22Z<p>Assignments are expressions in C, so what you have works. Changing the <code>;</code> to <code>{}</code> means the exact same thing and is much clearer, do that change at the very least. Assignments in conditions should be avoided when you have a clearer alternative (which is usually true), but if this is clearest in this place, then use it.</p>
<p>The result of an assignment is the assigned-to object. <code>a = value</code> will do the assignment and then evaluate to <code>a</code>. This is used to do things like <code>a = b = 0</code>.</p>
<p>To further clean up the code, there's no need for the void cast, and if this is chars, use '\0' (the null character) instead of NULL (which is supposed to be used with pointers only).</p>
http://stackoverflow.com/questions/1831410/python-time-comparison/1831453#18314534Answer by Roger Pate for Python time comparisonRoger Pate2009-12-02T08:32:21Z2009-12-02T08:32:21Z<p>You <em>can't</em> compare a specific point in time (such as "right now") against an unfixed, recurring event (8am happens every day).</p>
<p>You can check if now is before or after <em>today's</em> 8am:</p>
<pre><code>>>> import datetime
>>> now = datetime.datetime.now()
>>> today8am = now.replace(hour=8, minute=0, second=0, microsecond=0)
>>> now < today8am
True
>>> now == today8am
False
>>> now > today8am
False
</code></pre>
http://stackoverflow.com/questions/1830902/boost-python-init-accepting-none-argument/1830989#18309892Answer by Roger Pate for Boost.Python: __init__ accepting None argument.Roger Pate2009-12-02T06:21:09Z2009-12-02T07:03:15Z<p>Adding an <code>init<void*></code> overload will pass NULL if None is used, but I'm not sure how this could affect other ctors in corner cases. I also don't get the same None to string const& conversion that you mention, if I leave <code>init<void*></code> out. Using Boost.Python 1.37 and Python 2.6.2.</p>
<p>Example:</p>
<pre><code>#include <iostream>
#include <string>
#include <boost/python.hpp>
struct A {
#define BODY { std::cout << __PRETTY_FUNCTION__ << '\n'; }
A() BODY
A(long) BODY
A(std::string const&) BODY
A(void* p) BODY
#undef BODY
};
BOOST_PYTHON_MODULE(ex) {
using namespace boost::python;
class_<A>("A")
.def(init<long>())
.def(init<std::string const&>())
.def(init<void*>())
;
}
</code></pre>
<pre>
>>> import ex
>>> ex.A()
A::A()
<ex.A object at 0x839bf7c>
>>> ex.A(42)
A::A(long int)
<ex.A object at 0x839bfcc>
>>> ex.A("abc")
A::A(const std::string&)
<ex.A object at 0x839bf7c>
>>> ex.A(None)
A::A(void*)
<ex.A object at 0x839bfcc>
</pre>
<p>If <code>init<void*></code> is left out:</p>
<pre>
>>> ex.A(None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
Boost.Python.ArgumentError: Python argument types in
A.__init__(A, NoneType)
did not match C++ signature:
__init__(_object*, std::string)
__init__(_object*, long)
__init__(_object*)
</pre>
http://stackoverflow.com/questions/1830927/how-do-i-make-a-link-that-goes-no-where/1830940#18309401Answer by Roger Pate for How do I make a link that goes no whereRoger Pate2009-12-02T06:04:25Z2009-12-02T06:04:25Z<p>If you just want style, set the the CSS <a href="http://www.w3.org/TR/CSS2/ui.html#propdef-cursor" rel="nofollow">cursor property</a> to pointer.</p>
<p>But it sounds like you want <code><a href="javascript:void(do_something())"></code>.</p>
http://stackoverflow.com/questions/1829470/ranking-elements-of-multiple-lists-by-their-count-in-python/1829527#18295273Answer by Roger Pate for Ranking Elements of multiple Lists by their count in PythonRoger Pate2009-12-01T22:54:43Z2009-12-02T05:21:52Z<pre><code>import collections
data = [
[1, 2, 3, 4, 5],
[1, 9, 3, 4, 5],
[1, 10, 8, 4, 5],
[1, 12, 13, 7, 5],
[1, 14, 13, 13, 6],
]
def sorted_by_count(lists):
counts = collections.defaultdict(int)
for L in lists:
for n in L:
counts[n] += 1
return [num for num, count in
sorted(counts.items(),
key=lambda k_v: (k_v[1], k_v[0]),
reverse=True)]
print sorted_by_count(data)
</code></pre>
<p>Now let's generalize it (to take any iterable, loosen hashable requirement), allow key and reverse parameters (to match sorted), and rename to <a href="http://bitbucket.org/kniht/scraps/src/tip/python/iter%5Futil.py" rel="nofollow">freq_sorted</a>:</p>
<pre><code>def freq_sorted(iterable, key=None, reverse=False, include_freq=False):
"""Return a list of items from iterable sorted by frequency.
If include_freq, (item, freq) is returned instead of item.
key(item) must be hashable, but items need not be.
*Higher* frequencies are returned first. Within the same frequency group,
items are ordered according to key(item).
"""
if key is None:
key = lambda x: x
key_counts = collections.defaultdict(int)
items = {}
for n in iterable:
k = key(n)
key_counts[k] += 1
items.setdefault(k, n)
if include_freq:
def get_item(k, c):
return items[k], c
else:
def get_item(k, c):
return items[k]
return [get_item(k, c) for k, c in
sorted(key_counts.items(),
key=lambda kc: (-kc[1], kc[0]),
reverse=reverse)]
</code></pre>
<p>Example:</p>
<pre><code>>>> import itertools
>>> print freq_sorted(itertools.chain.from_iterable(data))
[1, 5, 4, 13, 3, 2, 6, 7, 8, 9, 10, 12, 14]
>>> print freq_sorted(itertools.chain.from_iterable(data), include_freq=True)
# (slightly reformatted)
[(1, 5),
(5, 4),
(4, 3), (13, 3),
(3, 2),
(2, 1), (6, 1), (7, 1), (8, 1), (9, 1), (10, 1), (12, 1), (14, 1)]
</code></pre>
http://stackoverflow.com/questions/1829499/how-does-phps-main-c-start-execution/1829592#18295922Answer by Roger Pate for How Does PHP's main.c Start Execution Roger Pate2009-12-01T23:07:37Z2009-12-01T23:07:37Z<p>It's common for 'main' to be the entry point in C/C++, and the standards treat it specially because of that, but it's not the only possibility (it is the only one required by the standard, however). How it's actually handled is implementation-specific, since the runtime library needs to set things up before your application gets control. Look at the linker settings for the final answer.</p>
<p><code>php_module_startup</code> looks like it might be what you want, it could be what's eventually called from the real entry point.</p>
http://stackoverflow.com/questions/1829266/proper-layout-of-a-c-header-file/1829466#18294660Answer by Roger Pate for Proper layout of a C++ header fileRoger Pate2009-12-01T22:43:26Z2009-12-01T22:43:26Z<p><strong>It sounds like you're running into assumptions made based on the previous implementation</strong> (Codewarrior). For example:</p>
<pre><code>#include <iostream>
int main() {
std::cout << "string literal\n";
return 0;
}
</code></pre>
<p>This relies on iostream including something it's not required to declare: the <code>operator<<(ostream&, char const*)</code> overload (it's a free function, not a method of ostream like the others). And to be completely unambiguous, <code>#include <ostream></code> is also required above. In C++, library headers are allowed to include any other library header, in general, so this problem crops up whenever someone inadvertently depends on this.</p>
<p>(That the extra header is required in this particular circumstance is considered a flaw by many, including me, and almost all implementations do provide the declaration of this function in iostream. It is still the shortest, common example I know of to illustrate this.)</p>
<p>It's often more subtle and complicated than this simple example, but the core issue is the same. <strong>The solution is to check every header to make sure it includes any libraries it requires</strong>, starting with the ones giving you the errors. E.g. <code>#include <vector></code> and make sure you use <code>std::vector</code> (to avoid relying on it being in the global namespace, which is done in some, mostly old and obsolete now, implementations) when you get "vector does not name a type".</p>
<p>You might also be running into <a href="http://google.com/search?q=dependent+types+in+C%2B%2B" rel="nofollow">dependent types</a>, in which case you'd add typename.</p>
http://stackoverflow.com/questions/1828021/storing-variable-sized-strings-in-structures/1828183#18281832Answer by Roger Pate for Storing variable sized strings in structuresRoger Pate2009-12-01T19:04:37Z2009-12-01T22:21:15Z<p>(My <a href="http://bitbucket.org/kniht/scraps/src/tip/cpp/stlcontutil.hpp" rel="nofollow"><code>push_back</code></a> utility described at the bottom.)</p>
<pre><code>typedef std::vector<std::string> Block;
int main() {
using namespace std;
vector<Block> blocks;
string const end = "end";
// no real difference from using ifstream, btw
for (fstream file ("filename", file.in); file;) {
Block& block = push_back(blocks);
for (string line; getline(file, line);) {
if (line == end) {
break;
}
push_back(block).swap(line);
}
if (!file && block.empty()) {
// no lines read, block is a dummy not represented in the file
blocks.pop_back();
}
}
return 0;
}
</code></pre>
<p><hr></p>
<p>Example serialization:</p>
<pre><code>template<class OutIter>
void bencode_block(Block const& block, OutIter dest) {
int len = 0;
for (Block::const_iterator i = block.begin(); i != block.end(); ++i) {
len += i->size() + 1; // include newline
}
*dest++ = len;
*dest++ = ':';
for (Block::const_iterator i = block.begin(); i != block.end(); ++i) {
*dest++ = *i;
*dest++ = '\n';
}
}
</code></pre>
<p>I've used a simple <a href="http://en.wikipedia.org/wiki/Bencode" rel="nofollow">bencoding</a> serialization format. Example suitable output iterator, which just writes to a stream:</p>
<pre><code>struct WriteStream {
std::ostream& out;
WriteStream(std::ostream& out) : out(out) {}
WriteStream& operator++() { return *this; }
WriteStream& operator++(int) { return *this; }
WriteStream& operator*() { return *this; }
template<class T>
void operator=(T const& value) {
out << value;
}
};
</code></pre>
<p>Example use:</p>
<pre><code>bencode_block(block, WriteStream(std::cout));
</code></pre>
<p>Another possible output iterator, which writes to a <a href="http://en.wikipedia.org/wiki/File%5Fdescriptor" rel="nofollow">file descriptor</a> (such as a network socket):</p>
<pre><code>struct WriteFD {
int out;
WriteFD(int out) : out(out) {}
WriteFD& operator++() { return *this; }
WriteFD& operator++(int) { return *this; }
WriteFD& operator*() { return *this; }
template<class T>
void operator=(T const& value) {
if (write(value) == -1) {
throw std::runtime_error(strerror(errno));
}
}
//NOTE: write methods don't currently handle writing less bytes than provided
int write(char value) {
return write(out, &value, 1);
}
int write(std::string const& value) {
return write(out, value.data(), value.size());
}
int write(int value) {
char buf[20];
// handles INT_MAX up to 9999999999999999999
// handles INT_MIN down to -999999999999999999
// that's 19 and 18 nines, respectively (you did count, right? :P)
int len = sprintf(buf, "%d", value);
return write(out, buf, len);
}
};
</code></pre>
<p><hr></p>
<p><em>Poor man's move semantics:</em> </p>
<pre><code>template<class C>
typename C::value_type& push_back(C& container) {
container.push_back(typename C::value_type());
return container.back();
}
</code></pre>
<p>This allows easy use of move semantics to avoid unnecessary copies:</p>
<pre><code>container.push_back(value); // copies
// becomes:
// (C is the type of container)
container.push_back(C::value_type()); // add empty
container.back().swap(value); // swap contents
</code></pre>
http://stackoverflow.com/questions/1829119/c-pointers-to-arrays-arrays-of-pointers/1829315#18293153Answer by Roger Pate for C++ -- Pointers to Arrays -- Arrays of PointersRoger Pate2009-12-01T22:13:10Z2009-12-01T22:13:10Z<p>(Attempting to answer the first part of the question as succinctly as possible without introducing other issues.)</p>
<p>C++ (and C) uses pointers to a single item in an array as a handle for the full array. However, some pointers don't point to items in an array! You have to make the distinction between points-to-single-item and points-to-item-in-array yourself.</p>
<pre><code>int length = 8;
D3DXVECTOR3* line = new D3DXVECTOR3[length];
</code></pre>
<p>The new[] operator returns a pointer to the first item in the array it allocates, and this assigns that value to line. Notice that because pointers don't make the distinction of single-item vs. item-in-array:</p>
<ul>
<li>you have to store the length separately</li>
<li>you have to be careful you use correct indices with pointers ("line" above)</li>
<li>you are better off using a "real" container type, such as:
<ul>
<li>std::deque, std::vector, etc.</li>
<li>std::tr1::array (aka boost::array)</li>
</ul></li>
</ul>
<p>(The last bullet point doesn't mean you <em>never</em> use pointers, you just don't use them when these containers are more appropriate.)</p>
http://stackoverflow.com/questions/1828968/converting-c-bit-pattern-to-java/1829005#18290051Answer by Roger Pate for Converting C++ Bit Pattern to JavaRoger Pate2009-12-01T21:20:34Z2009-12-01T21:20:34Z<p>It's taking a byte string (i.e. not text) and converting to it a long. It relies on many implementation specific things, and appears broken: it's extracting the sign bit from two different places. Another issue is the needless non-reentrancy (caused by the static variable).</p>
http://stackoverflow.com/questions/1824336/mysql-sort-by-calculated-value-of-2-rows/1824407#18244070Answer by Roger Pate for MySQL sort by calculated value of 2 rowsRoger Pate2009-12-01T06:45:12Z2009-12-01T18:40:35Z<p><em>Edit:</em> I misinterpreted your sample output of .5 as meaning 50 cents, likewise for .3 = 30 = 90 - 60, instead of the percentage you'd get from (100 - 50) / 100 and (90 - 60) / 90. Maybe you will still find this helpful, but it doesn't answer the question asked.</p>
<pre><code>SELECT wposts.ID,
SUM(wpostmeta.meta_value * (CASE
WHEN wpostmeta.meta_key = 'price' THEN -1
ELSE 1)
) AS savings
FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
WHERE wposts.ID = wpostmeta.post_id
AND wposts.post_type = 'post'
GROUP BY wposts.ID;
</code></pre>
<p>The key is summing the meta_values but flipping the sign of price so you actually get retail minus price, grouped on each ID so the aggregate function SUM deals with each group independently. Whether it's smart to do all this logic here is a different question, however. :)</p>
<p>(You may have to tweak this syntax for MySQL.)</p>
http://stackoverflow.com/questions/1824363/dynamic-allocation-deallocation-of-2d-3d-arrays/1824470#18244702Answer by Roger Pate for dynamic allocation/deallocation of 2D & 3D arraysRoger Pate2009-12-01T07:03:54Z2009-12-01T07:10:23Z<p>You can also allocate one array and compute individual indices. This requires fewer allocator calls and results in both less fragmentation and better cache use.</p>
<pre><code>typedef struct {
int a;
int b;
int* data;
} Int2d;
Int2d arr2d = { 2, 3 };
arr2d.data = malloc(arr2d.a * arr2d.b * sizeof *arr2d.data);
</code></pre>
<p>Now <code>arr2d[r][c]</code> becomes <code>arr2d.data[r * arr2d.b + c]</code>. Deallocation is a single free() away. As a bonus you're sure to always keep your dynamic array sizes with you.</p>
<p>Extrapolating to 3d:</p>
<pre><code>typedef struct {
int a;
int b;
int c;
int* data;
} Int3d;
Int3d arr3d = { 2, 3, 4 };
arr3d.data = malloc(arr3d.a * arr3d.b * arr3d.c * sizeof *arr3d.data);
//arr3d[r][c][d]
// becomes:
arr3d.data[r * (arr3d.b * arr3d.c) + c * arr3d.c + d];
</code></pre>
<p>You should encapsulate these index operations (and the (de-)allocations for that matter) in a separate function or macro.</p>
<p>(The names for r, c, and d could be better—I was going for row, column, and depth. While a, b, and c are the limits of their corresponding dimensions, you might prefer something like n1, n2, n3 there, or even use an array for them.)</p>
http://stackoverflow.com/questions/1903813/using-a-set-iterator-in-c/1903863#1903863Comment by Roger Pate on Using a Set Iterator in C++Roger Pate2009-12-14T22:32:01Z2009-12-14T22:32:01ZPlatinum: The actual code in the question isn't what he's running, it's just his impression ("looks like").http://stackoverflow.com/questions/1903813/using-a-set-iterator-in-c/1903862#1903862Comment by Roger Pate on Using a Set Iterator in C++Roger Pate2009-12-14T22:30:43Z2009-12-14T22:30:43ZOnly slightly true: a <code>std::set</code> iterator is invalidated only if the item to which it refers is removed from the set: you can insert any item, and remove any item but one. See 23.1.2/8.http://stackoverflow.com/questions/1903462/how-can-i-zip-sort-parallel-numpy-arrays/1903523#1903523Comment by Roger Pate on How can I "zip sort" parallel numpy arrays?Roger Pate2009-12-14T21:13:49Z2009-12-14T21:13:49ZWhy <code>import *</code> and then clarify what you wanted to import instead of <code>from numpy import sort, c_</code>?http://stackoverflow.com/questions/1901407/get-the-executing-files-path-from-an-installed-packageComment by Roger Pate on Get the executing file's path from an installed package?Roger Pate2009-12-14T16:03:44Z2009-12-14T16:03:44ZThis sounds like a bad idea. Do you just want <code>sys.argv[0]</code> instead?http://stackoverflow.com/questions/1901483/min-and-max-values-for-integer-variable-at-compile-time-in-c/1901503#1901503Comment by Roger Pate on Min and Max values for integer variable at compile time in C++Roger Pate2009-12-14T15:41:59Z2009-12-14T15:41:59ZRaphaelSP: if compile-time is actually required, such as for a template parameter or enumerator, then it doesn't matter what optimizations are enabled---either the expression is or it isn't. Compare to constexprs in C++0x.http://stackoverflow.com/questions/1898905/php-recursive-regular-expressions/1898936#1898936Comment by Roger Pate on PHP - recursive regular expressionsRoger Pate2009-12-14T04:57:39Z2009-12-14T04:57:39ZYou should edit your question to include this information, and delete this answer.http://stackoverflow.com/questions/1898920/how-might-i-overload-the-new-operator-to-allocate-memory-from-a-secondary-memor/1898960#1898960Comment by Roger Pate on How might I overload the "new" operator to allocate memory from a secondary memory device?Roger Pate2009-12-14T04:48:16Z2009-12-14T04:48:16ZThose allocate and deallocate functions are where you communicate with your "secondary memory device". Exactly what they will be will depend on what you're doing.http://stackoverflow.com/questions/1886002/python-control-structure-utilisation/1886035#1886035Comment by Roger Pate on Python control structure utilisationRoger Pate2009-12-14T04:28:00Z2009-12-14T04:28:00ZNo need for the generator in that case: <code>min(L, key=...)</code>. (My answer does give the same result as the code in your question would, as long as the list isn't empty.)http://stackoverflow.com/questions/1896656/simple-wildcard-match-with-stdstringComment by Roger Pate on simple wildcard match with std::stringRoger Pate2009-12-13T15:22:31Z2009-12-13T15:22:31ZYou're not allowed to use a new library but you're allowed to write your own new library?http://stackoverflow.com/questions/1896752/exploration-problem-dfsComment by Roger Pate on Exploration problem - DFSRoger Pate2009-12-13T15:19:54Z2009-12-13T15:19:54ZNobugz: it's never okay to "do" someone else's homework, and it should always be okay to help someone understand a given piece of logic. His teacher's permission isn't required, and you'll have to draw the line yourself on a case-by-case basis.http://stackoverflow.com/questions/1896752/exploration-problem-dfsComment by Roger Pate on Exploration problem - DFSRoger Pate2009-12-13T15:10:19Z2009-12-13T15:10:19ZWhat question are you asking? (I couldn't find one.) You should retag to include 'homework'.http://stackoverflow.com/questions/1885849/difference-between-new-operator-and-operator-new/1885882#1885882Comment by Roger Pate on Difference between 'new operator' and 'operator new'?Roger Pate2009-12-12T17:29:02Z2009-12-12T17:29:02ZAndreyT: I was pointing out how your statement that "new and delete are never referred to as operators" is incorrect. The standard is great for many things, but not everything.http://stackoverflow.com/questions/1888652/how-can-i-use-iteration-instead-of-recursion-to-input-values-into-a-linked-list/1888665#1888665Comment by Roger Pate on How can I use iteration instead of recursion to input values into a linked list?Roger Pate2009-12-11T15:45:27Z2009-12-11T15:45:27Z<code>for (node* n = head; n; n = n->next)</code> improves this pattern considerably.http://stackoverflow.com/questions/1885868/pythonic-way-to-read-a-set-number-of-lines-from-a-file/1886435#1886435Comment by Roger Pate on Pythonic way to read a set number of lines from a fileRoger Pate2009-12-11T14:28:34Z2009-12-11T14:28:34ZI'm not sure why you're addressing me in that comment. There's nothing wrong with for loops in general, of course, but trying to force the rest of the logic to fit into it doesn't always work the cleanest. Without more information than he gave, I can't say which approach would be better for him here, but I do know disregarding common, useful libraries out of hand rarely helps me.http://stackoverflow.com/questions/1856307/to-iterate-or-to-use-a-counter-that-is-the-questionComment by Roger Pate on To iterate or to use a counter, that is the questionRoger Pate2009-12-11T08:52:10Z2009-12-11T08:52:10ZC++0x also provides <code>auto</code>-matically-typed declarations: <code>for (auto i = v.begin(); i != v.end(); ++i)</code> (but there's also new ways to loop being discussed). And if you use gcc 4.4+ or msvc 2010+, you can use this now.