User Evan Teran - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:44:13Zhttp://stackoverflow.com/feeds/user/13430http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1871375/python-ctypes-initializing-ccharp/1871382#18713822Answer by Evan Teran for Python ctypes: initializing c_char_p()Evan Teran2009-12-09T03:17:30Z2009-12-09T03:17:30Z<p>I am guessing python is reusing the same buffer for all 5 passes. once you set it to "hi", you never set it back to "bye" You can do something like this:</p>
<pre><code>extern "C"{
int test(int, char*);
}
int test(int i, char* var){
if (i == 1){
strcpy(var,"hi");
} else {
strcpy(var, "bye");
}
return 1;
}
</code></pre>
<p>but be careful, <code>strcpy</code> is just asking for a buffer overflow</p>
http://stackoverflow.com/questions/1868719/sigsegv-seemingly-caused-by-printf/1868753#18687531Answer by Evan Teran for SIGSEGV, (seemingly) caused by printfEvan Teran2009-12-08T18:02:04Z2009-12-08T18:07:23Z<p>it is possible that you have a pointer arithmetic error or a buffer overflow which has the side effect of breaking the <code>printf</code>.</p>
<p>Try commenting out the majority of the code (except the <code>printf</code>) and see if it crashes. If it doesn't, then little by little un-\comment parts until you get the crash back. The you'll know where the problem is.</p>
<p>Also, if you are using linux or any unix variant, look into using <a href="http://valgrind.org/" rel="nofollow">valgrind</a> as well.</p>
<p><strong>EDIT:</strong></p>
<p>I see this in your error report:</p>
<pre><code>0 libSystem.B.dylib 0x00007fff828d489e __Balloc_D2A + 164
</code></pre>
<p>That's where the actual crash is, which appears to be a low level allocation routine. I would guess that you have a buffer overflow which is corrupting the free list, making certain future allocations break (such as in this printf).</p>
http://stackoverflow.com/questions/1010520/can-you-use-multiple-threads-to-ptrace-an-application2can you use multiple threads to ptrace an application?Evan Teran2009-06-18T02:46:00Z2009-12-08T17:48:20Z
<p>I am writing a GUI oriented debugger which targets Linux primarily, but I plan ports to other OSes in the future. Because the GUI must stay interactive at all times, I have a few threads handling different things.</p>
<p>Primarily I have a "debug event" thread which simply loops waiting for waitpid to return and delivers the received events to the other threads. I do this because waitpid does not have a timeout, which makes it very hard to integrate it with other event loops and keep things responsive (waitpid can hang indefinitely!).</p>
<p>This strategy has worked wonderfully for the Linux builds so far. Lately I've been trying to make my debugger thread aware (as in the threads in the debugged application, not the debugger itself).</p>
<p>So I set the ptrace options to follow clone events and look for a status which has the upper 16-bit set to <code>PTRACE_EVENT_CLONE</code>. Then I use <code>PTRACE_GETEVENTMSG</code> to get the TID of the new thread. This all works nicely in my small test harness applications. But for some reason, it is failing when i put that code in my actual debugger. (I get a "No such process" error code)</p>
<p>The one thing that occurred to me is that Windows has a rule that only the thread which attached to an application can listen for debug events. Does Linux's ptrace have a similar limitation? If so, why does my code work for other debug events?</p>
<p><strong>EDIT:</strong></p>
<p>It seems that at the very least waitpid supports waiting from a different thread, the man page says:</p>
<blockquote>
<p>Before Linux 2.4, a thread was just a
special case of a process, and as a
consequence one thread could not wait on the
children of another thread, even when
the latter belongs to the same thread
group. However, POSIX prescribes
such functionality, and since Linux 2.4 a
thread can, and by default
will, wait on children of other
threads in the same thread group.</p>
</blockquote>
<p>So at most this is a ptrace limitation.</p>
http://stackoverflow.com/questions/1848097/summary-malloc-c3074-why-does-this-code-causes-the-error/1848116#18481164Answer by Evan Teran for summary: malloc.c:3074 - Why does this code causes the errorEvan Teran2009-12-04T16:33:35Z2009-12-04T16:47:59Z<p><strong>EDIT:</strong> woah, I just realized that you have a pretty bad logic error in your code. This isn't just leaking, you have a buffer overflow too!</p>
<pre><code>int *results = (int*) malloc(strlen(input));
</code></pre>
<p>That will allocate <strong>18 bytes</strong> (the lengh of input) and treat that like an array of <code>int</code>'s, which means you can fit <code>18 / sizeof(int)</code> <code>int</code>s in it. assuming usual x86 size, that means you can only fit (18 / 4) == 4.5 integers! Later your code will write several more than that into the array. Big error.</p>
<p>To fix the issue, you should be using <code>realloc</code>. Something like this:</p>
<pre><code>int *results = malloc(sizeof(int));
int result_size = 1;
int result_count = 0;
while(/*whatever*/) {
/* ok, i want to add an element to results */
if(result_count == result_size - 1) {
int *p = realloc(results, (result_size + 1) * sizeof(int));
if(!p) {
free(results);
return NULL; /* no more memory! */
}
results = p;
result_size++;
}
results[result_count++] = /*value*/
}
return results;
</code></pre>
<p><hr></p>
<p>It leaks because you have 2 <code>malloc</code>s which you don't store the result of anywhere. This makes it impossible to <code>free</code> the pointer those calls return.</p>
<p>In fact, I'm not sure what <code>aggregatedArray</code> is supposed to be actually doing, at the moment, it does nothing <strong>but</strong> leak.</p>
<p>Also, you have <code>results = parseInput(str, &resultsSize);</code> where <code>parseInput</code> returns a <code>malloc</code>ed pointer. You should have a <code>free(results);</code> later on when you no longer need this (probably right after the <code>aggregatedArray</code> call).</p>
<p>Finally, as a side note. I would guess that <code>aggregatedArray((int*)NULL, (int)NULL);</code> should in fact be <code>aggregatedArray(results, resultsSize);</code> :-P.</p>
http://stackoverflow.com/questions/1845281/reproducing-static-initialization-order-fiasco-in-c/1845361#18453611Answer by Evan Teran for Reproducing static initialization order fiasco in C++Evan Teran2009-12-04T07:18:36Z2009-12-04T07:42:21Z<p><strong>EDIT:</strong> adjusted to make it more accurate in light of comments.</p>
<p>A good example would look like this:</p>
<pre><code>// A.cpp
#include "A.h"
std::map<int, int> my_map;
// A.h
#include <map>
extern std::map<int, int> my_map;
// B.cpp
#include "A.h"
class T {
public:
T() { my_map.insert(std::make_pair(0, 0)); }
};
T t;
int main() {
}
</code></pre>
<p>The problem is that the instance <code>t</code> may be constructed before the <code>my_map</code> object. So the insert may occur on a yet-to-be constructed object. Causing a crash.</p>
<p>A simple solution is to do something like this instead:</p>
<pre><code>// A.h
#include <map>
std::map<int, int> &my_map()
// A.cpp
#include "A.h"
std::map<int, int> &my_map() {
// initialized on first use
static std::map<int, int> x;
return x;
}
// B.cpp
#include "A.h"
class T {
public:
T() { my_map().insert(std::make_pair(0, 0)); }
};
T t;
int main() {
}
</code></pre>
<p>By accessing a static object via a function, we can guarantee order of initialization since function scope statics are initialized upon first use. Thus the <code>t</code> object is constructed first, it calls <code>my_map()</code> which creates a static map object on its first run and then returns a reference to it.</p>
http://stackoverflow.com/questions/1810308/how-to-get-value-from-15th-pin-of-32bit-port-in-arm/1810318#18103185Answer by Evan Teran for How to get value from 15th pin of 32bit port in ARM?Evan Teran2009-11-27T19:25:43Z2009-11-27T19:25:43Z<p>there are no 1 bit variables, but you could isolate a particular bit for example:</p>
<pre><code>uint32_t original_value = whatever();
uint32_t bit15 = (original_value >> 15) & 1; /*bit15 now contains either a 1 or a 0 representing the 15th bit */
</code></pre>
<p>Note: I don't know if you were counting bit numbers starting at 0 or 1, so the <code>>> 15</code> may be off by one, but you get the idea.</p>
<p>The other option is to use bit fields, but that gets messy and IMO is not worth it unless every bit in the value is useful in some way. If you just want one or two bits, shifting and masking is the way to go.</p>
<p>Overall, this <a href="http://en.wikipedia.org/wiki/Bit%5Ffield" rel="nofollow">article</a> may be of use to you.</p>
http://stackoverflow.com/questions/1800053/help-with-template-mergesort-function/1800076#18000762Answer by Evan Teran for help with template mergesort functionEvan Teran2009-11-25T21:27:04Z2009-11-26T03:33:32Z<p>temp is supposed to be an array of temporary items right? Well that sounds like you need to do something like:</p>
<pre><code>typedef typename T::value_type U;
U *temp = new U[count];
</code></pre>
<p>don't forget to <code>delete[]</code> it when you are done!</p>
<p>Also, as a side note, the more c++-ish thing to do would be to use pointers/iterators. This way your algorithm will work with more types of containers, not just things that model an array.</p>
<p>Also, as <a href="http://stackoverflow.com/users/135138/tim-sylvester">Tim Sylvester</a> suggested, you could use <code>std::vector<U> temp(count)</code> which will manage the memory for you.</p>
http://stackoverflow.com/questions/1787361/ideal-data-structure-for-mapping-integers-to-integers/1788171#17881710Answer by Evan Teran for Ideal data structure for mapping integers to integers?Evan Teran2009-11-24T06:18:42Z2009-11-24T06:18:42Z<p>You could create a sparse array of sorts which has "pages" like this (this example uses 256 "pages", so the upper most byte is the page number):</p>
<pre><code>int *pages[256];
/* call this first to make sure all of the pages start out NULL! */
void init_pages(void) {
for(i = 0; i < 256; ++i) {
pages[i] = NULL;
}
}
int get_value(int index) {
if(pages[index / 0x10000] == NULL) {
pages[index / 0x10000] = calloc(0x10000, 1); /* calloc so it will zero it out */
}
return pages[index / 0x10000][index % 0x10000];
}
void set_value(int index, int value) {
if(pages[index / 0x10000] == NULL) {
pages[index / 0x10000] = calloc(0x10000, 1); /* calloc so it will zero it out */
}
pages[index / 0x10000][index % 0x10000] = value;
}
</code></pre>
<p>this will allocate a page the first time it is touched, read or write.</p>
http://stackoverflow.com/questions/1731355/iterating-over-string-strlen-with-umlauted-characters/1731424#17314240Answer by Evan Teran for Iterating over string/strlen with umlauted charactersEvan Teran2009-11-13T19:40:16Z2009-11-13T20:34:40Z<p><strong>EDIT</strong>: What locale are you using?</p>
<p>If you are going to <strong>iterating</strong> over a string, don't bother with getting its length with <code>strlen</code>. Just iterate until you see a <code>NUL</code> character:</p>
<pre><code>char *p = str;
while(*p != '\0') {
printf("%c\n", *p);
++p;
}
</code></pre>
<p>As for the umlauted characters and such, are they UTF-8? If the string is multi-byte, you could do something like this:</p>
<pre><code>size_t n = strlen(str);
char *p = str;
char *e = p + n;
while(*p != '\0') {
wchar_t wc;
int l = mbtowc(&wc, p, e - p);
if(l <= 0) break;
p += l;
/* do whatever with wc which is now in wchar_t form */
}
</code></pre>
<p>I honestly don't know if <code>mbtowc</code> will simply return <code>-1</code> if it encounters a <code>NUL</code> in the middle of a MB character. If it does, you could just pass <code>MB_CUR_MAX</code> instead of <code>e - p</code> and do away with the <code>strlen</code> call. But I have a feeling this is <strong>not</strong> the case.</p>
http://stackoverflow.com/questions/1709478/overloading-iterator-n-and-n-iterator-in-a-c-iterator-class/1709541#17095414Answer by Evan Teran for Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class?Evan Teran2009-11-10T17:05:07Z2009-11-10T17:44:05Z<p>To have it work with the numeric constant on the left you will need a non-member function. Something like this (untested code):</p>
<pre><code>exscape::string::iterator operator+(exscape::string::iterator it, size_t n) {
return it += n;
}
exscape::string::iterator operator+(size_t n, exscape::string::iterator it) {
return it += n;
}
</code></pre>
http://stackoverflow.com/questions/1699259/give-me-assignments-on-pointers/1699279#16992792Answer by Evan Teran for Give me assignments on pointers.Evan Teran2009-11-09T05:46:02Z2009-11-09T05:46:02Z<p>Read this <a href="http://www.efnetcpp.org/wiki/PointersReferencesAndArrays" rel="nofollow">http://www.efnetcpp.org/wiki/PointersReferencesAndArrays</a>. And when you are done, read it again.</p>
http://stackoverflow.com/questions/1683857/code-golf-hourglass/1685506#16855063Answer by Evan Teran for Code Golf: HourglassEvan Teran2009-11-06T05:01:47Z2009-11-07T05:58:48Z<p>A c++ answer, is <strong>592</strong> chars so far, still having reasonable formatting.</p>
<pre><code>#include<iostream>
#include<string>
#include<cstdlib>
#include<cmath>
using namespace std;
typedef string S;
typedef int I;
typedef char C;
I main(I,C**v){
I z=atoi(v[1]),c=z*z,f=ceil(c*atoi(v[2])/100.);
cout<<S(z*2+1,'_')<<'\n';
for(I i=z,n=c;i;--i){
I y=i*2-1;
S s(y,' ');
C*l=&s[0];
C*r=&s[y];
for(I j=0;j<y;++j)
if(n--<=f)*((j&1)?l++:--r)='x';
cout<<S(z-i,' ')<<'\\'<<s<<"/\n";
}
for(I i=1,n=c-f;i<=z;++i){
I y=i*2-1;
S s(y,'x');
C*l=&s[0];
C*r=&s[y];
for(I j=0;j<y;++j)
if(n++<c)*(!(j&1)?l++:--r)=(i==z)?'_':' ';
cout<<S(z-i,' ')<<'/'<<s<<"\\\n";
}
}
</code></pre>
<p>If i decide to just forget formatting it reasonably, i can get it as low as <strong>531</strong>:</p>
<pre><code>#include<iostream>
#include<string>
#include<cstdlib>
#include<cmath>
using namespace std;typedef string S;typedef int I;typedef char C;I main(I,C**v){I z=atoi(v[1]),c=z*z,f=ceil(c*atoi(v[2])/100.);cout<<S(z*2+1,'_')<<'\n';for(I i=z,n=c;i;--i){I y=i*2-1;S s(y,' ');C*l=&s[0];C*r=&s[y];for(I j=0;j<y;++j)if(n--<=f)*((j&1)?l++:--r)='x';cout<<S(z-i,' ')<<'\\'<<s<<"/\n";}for(I i=1,n=c-f;i<=z;++i){I y=i*2-1;S s(y,'x');C*l=&s[0];C*r=&s[y];for(I j=0;j<y;++j)if(n++<c)*(!(j&1)?l++:--r)=(i==z)?'_':' ';cout<<S(z-i,' ')<<'/'<<s<<"\\\n";}}
</code></pre>
http://stackoverflow.com/questions/599365/what-is-your-favorite-c-programming-trick/607485#60748515Answer by Evan Teran for What is your favorite C programming trick?Evan Teran2009-03-03T18:06:44Z2009-11-02T16:01:48Z<p>C99 offers some really cool stuff using anonymous arrays:</p>
<p><strong>Removing pointless variables</strong></p>
<pre><code>{
int yes=1;
setsockopt(yourSocket, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(int));
}
</code></pre>
<p>becomes</p>
<pre><code>setsockopt(yourSocket, SOL_SOCKET, SO_REUSEADDR, (int[]){1}, sizeof(int));
</code></pre>
<p><strong>Passing a Variable Amount of Arguments</strong></p>
<pre><code>void func(type* values) {
while(*values) {
x = *values++;
/* do whatever with x */
}
}
func((type[]){val1,val2,val3,val4,0});
</code></pre>
<p><strong>Static linked lists</strong></p>
<pre><code>int main() {
struct llist { int a; struct llist* next;};
#define cons(x,y) (struct llist[]){{x,y}}
struct llist *list=cons(1, cons(2, cons(3, cons(4, NULL))));
struct llist *p = list;
while(p != 0) {
printf("%d\n", p->a);
p = p->next;
}
}
</code></pre>
<p>Any I'm sure many other cool techniques I haven't thought of.</p>
http://stackoverflow.com/questions/1655650/linux-optimistic-malloc-will-new-always-throw-when-out-of-memory/1655665#16556652Answer by Evan Teran for Linux optimistic malloc: will new always throw when out of memory?Evan Teran2009-10-31T21:20:08Z2009-10-31T21:20:08Z<p>I think the malloc can still return NULL. The reason why is that there is a difference between the system memory available (RAM + swap) and the amount in your process's address space.</p>
<p>For example, if you ask for 3GB of memory from malloc on a standard x86 linux, it will surely return NULL since this is impossible given the amount of memory given to user space apps.</p>
http://stackoverflow.com/questions/1623010/cleaner-pointer-arithmetic-syntax-for-manipulation-with-byte-offsets/1623084#16230845Answer by Evan Teran for Cleaner pointer arithmetic syntax for manipulation with byte offsetsEvan Teran2009-10-26T04:32:31Z2009-10-26T04:32:31Z<p>I often use these templates for this:</p>
<pre><code> template<typename T>
T *add_pointer(T *p, unsigned int n) {
return reinterpret_cast<T *>(reinterpret_cast<char *>(p) + n);
}
template<typename T>
const T *add_pointer(const T *p, unsigned int n) {
return reinterpret_cast<const T *>(reinterpret_cast<const char *>(p) + n);
}
</code></pre>
<p>They maintain the type, but add single bytes to them, for example:</p>
<pre><code>T *x = add_pointer(x, 1); // increments x by one byte, regardless of the type of x
</code></pre>
http://stackoverflow.com/questions/469696/what-is-your-most-useful-c-c-snippet/469712#46971220Answer by Evan Teran for What is your most useful C/C++ snippet?Evan Teran2009-01-22T16:00:07Z2009-10-23T21:25:08Z<p>I use these pretty often, they are string trim functions.</p>
<pre><code>inline std::string &rtrim(std::string &s) {
s.erase(std::find_if(s.rbegin(), s.rend(), std::not1(std::ptr_fun<int, int>(std::isspace))).base(), s.end());
return s;
}
inline std::string &ltrim(std::string &s) {
s.erase(s.begin(), std::find_if(s.begin(), s.end(), std::not1(std::ptr_fun<int, int>(std::isspace))));
return s;
}
inline std::string &trim(std::string &s) {
return ltrim(rtrim(s));
}
</code></pre>
http://stackoverflow.com/questions/1515195/how-to-remove-n-or-t-from-a-given-string-in-c/1515208#15152084Answer by Evan Teran for How to remove \n or \t from a given string in C?Evan Teran2009-10-04T00:00:03Z2009-10-20T15:53:13Z<p>This works in my quick and dirty tests. Does it in place:</p>
<pre><code>#include <stdio.h>
void strip(char *s) {
char *p2 = s;
while(*s != '\0') {
if(*s != '\t' && *s != '\n') {
*p2++ = *s++;
} else {
++s;
}
}
*p2 = '\0';
}
int main() {
char buf[] = "this\t is\n a\t test\n test";
strip(buf);
printf("%s\n", buf);
}
</code></pre>
<p>And to appease Chris, here is a version which will make a copy first and return it (thus it'll work on literals). You will need to <code>free</code> the result.</p>
<pre><code>char *strip_copy(const char *s) {
char *p = malloc(strlen(s) + 1);
if(p) {
char *p2 = p;
while(*s != '\0') {
if(*s != '\t' && *s != '\n') {
*p2++ = *s++;
} else {
++s;
}
}
*p2 = '\0';
}
return p;
}
</code></pre>
http://stackoverflow.com/questions/1592476/why-isnt-stdstringmaxsize-stdstringallocatormaxsize4Why isn't std::string::max_size() == std::string::allocator::max_size()Evan Teran2009-10-20T04:38:29Z2009-10-20T11:18:20Z
<p>Recently I've noticed that the following statement is not true given <code>std::string s</code>.</p>
<pre><code>s.max_size() == s.get_allocator().max_size();
</code></pre>
<p>I find this interesting, by default <code>std::string</code> will use <code>std::allocator<char></code> which has a theoretical limit of <code>size_type(-1)</code> (yes i know I'm assuming 2's complement, but that's unrelated to the actual question). I know that the practical limitations will be significantly less than this. On a typical 32-bit, x86 system, the kernel will occupy 2GB (perhaps 1GB) of the address space leaving a much smaller practical upper limit.</p>
<p>Anyway, GNU libstdc++'s <code>std::basic_string<>::max_size()</code> appears to return the same value regardless of what the allocator it is using says (something like <code>1073741820</code>).</p>
<p>So the question remains, why doesn't <code>std::basic_string<>::max_size()</code> just return <code>get_allocator().max_size()</code>? It seems to me that this is the hypothetical upper limit. And if the allocation comes up short, it'll just throw a <code>std::bad_alloc</code>, so why not try?</p>
<p>This is more of a curiosity than anything else, I was just wondering why the two are defined separately in at least this one implementation.</p>
http://stackoverflow.com/questions/1591591/can-one-leverage-stdbasicstring-to-implement-a-string-having-a-length-limitati/1591713#15917134Answer by Evan Teran for Can one leverage std::basic_string to implement a string having a length limitation?Evan Teran2009-10-19T23:33:29Z2009-10-19T23:49:51Z<p>you can pass a custom allocator to <code>std::basic_string</code> which has a max size of whatever you want. This should be sufficient. Perhaps something like this:</p>
<pre><code>template <class T>
class my_allocator {
public:
typedef T value_type;
typedef std::size_t size_type;
typedef std::ptrdiff_t difference_type;
typedef T* pointer;
typedef const T* const_pointer;
typedef T& reference;
typedef const T& const_reference;
pointer address(reference r) const { return &r; }
const_pointer address(const_reference r) const { return &r; }
my_allocator() throw() {}
template <class U>
my_allocator(const my_allocator<U>&) throw() {}
~my_allocator() throw() {}
pointer allocate(size_type n, void * = 0) {
// fail if we try to allocate too much
if((n * sizeof(T))> max_size()) { throw std::bad_alloc(); }
return static_cast<T *>(::operator new(n * sizeof(T)));
}
void deallocate(pointer p, size_type) {
return ::operator delete(p);
}
void construct(pointer p, const T& val) { new(p) T(val); }
void destroy(pointer p) { p->~T(); }
// max out at about 64k
size_type max_size() const throw() { return 0xffff; }
template <class U>
struct rebind { typedef my_allocator<U> other; };
template <class U>
my_allocator& operator=(const my_allocator<U> &rhs) {
(void)rhs;
return *this;
}
};
</code></pre>
<p>Then you can probably do this:</p>
<pre><code>typedef std::basic_string<char, std::char_traits<char>, my_allocator<char> > limited_string;
</code></pre>
<p><strong>EDIT:</strong> I've just done a test to make sure this works as expected. The following code tests it.</p>
<pre><code>int main() {
limited_string s;
s = "AAAA";
s += s;
s += s;
s += s;
s += s;
s += s;
s += s;
s += s; // 512 chars...
s += s;
s += s;
s += s;
s += s;
s += s;
s += s; // 32768 chars...
s += s; // this will throw std::bad_alloc
std::cout << s.max_size() << std::endl;
std::cout << s.size() << std::endl;
}
</code></pre>
<p>That last <code>s += s</code> will put it over the top and cause a <code>std::bad_alloc</code> exception, (since my limit is just short of 64k). Unfortunately gcc's <code>std::basic_string::max_size()</code> implementation does not base its result on the allocator you use, so it will still claim to be able to allocate more. (I'm not sure if this is a bug or not...).</p>
<p>But this will definitely allow you impose hard limits on the sizes of strings in a simple way. You could even make the max size a template parameter so you only have to write the code for the allocator once.</p>
http://stackoverflow.com/questions/1589630/assigning-vectoriterator-to-char-array-post-vs-2003/1589954#15899541Answer by Evan Teran for Assigning vector::iterator to char array post VS 2003Evan Teran2009-10-19T17:16:01Z2009-10-19T17:16:01Z<p>The proper solution would be to template <code>FindNumMsgs</code> such that it can work with either iterators or pointers (since pointers can be used as iterators just fine). Something like this:</p>
<pre><code>template <class T>
int FindNumMsgs(T it, int count) {
while(count--) {
// do whatever
it++;
}
return n;
}
</code></pre>
http://stackoverflow.com/questions/1564190/how-can-get-exact-total-space-of-a-drive-via-c-in-linux/1564199#15641996Answer by Evan Teran for How can get exact total space of a drive via c in linux?Evan Teran2009-10-14T04:14:59Z2009-10-14T04:14:59Z<p><code>statfs/statfs64</code></p>
<pre><code>#include <sys/vfs.h> /* or <sys/statfs.h> */
int statfs(const char *path, struct statfs *buf);
int fstatfs(int fd, struct statfs *buf);
</code></pre>
<p>From the man page:</p>
<blockquote>
<pre><code> The function statfs() returns information about a mounted file system.
path is the pathname of any file within the mounted file system.
buf is a pointer to a statfs structure defined approximately as follows:
struct statfs {
long f_type; /* type of file system (see below) */
long f_bsize; /* optimal transfer block size */
long f_blocks; /* total data blocks in file system */
long f_bfree; /* free blocks in fs */
long f_bavail; /* free blocks avail to non-superuser */
long f_files; /* total file nodes in file system */
long f_ffree; /* free file nodes in fs */
fsid_t f_fsid; /* file system id */
long f_namelen; /* maximum length of filenames */
};
</code></pre>
</blockquote>
<p>You can use it like this:</p>
<pre><code>struct statfs buf;
statfs("/", &buf);
</code></pre>
http://stackoverflow.com/questions/1561191/how-to-structure-your-c-program/1561268#15612681Answer by Evan Teran for How to structure your c program?Evan Teran2009-10-13T16:12:04Z2009-10-13T16:12:04Z<p>structure it generally the same way. Separate things into several files, each containing code which do related work.</p>
<p>Often with C, you can still think about objects. But instead of classes with methods, they are structures and functions which operate on a struct.</p>
http://stackoverflow.com/questions/1527108/generating-a-random-number-within-range-0-to-n-where-n-can-be-randmax/1527151#15271513Answer by Evan Teran for generating a random number within range 0 to n where n can be > RAND_MAXEvan Teran2009-10-06T18:02:46Z2009-10-06T18:02:46Z<p>suppose you want to generate a 64-bit random number, you could do this:</p>
<pre><code>uint64_t n = 0;
for(int i = 0; i < 8; ++i) {
uint64_t x = generate_8bit_random_num();
n = (n << (8 * i)) | x;
}
</code></pre>
<p>Of course you could do it 16/32 bits at a time too, but this illustrates the concept.</p>
<p>How you generate that 8/16/32-bit random numbers is up to you. It could be as simple as <code>rand() & 0xff</code> or something better depending on how much you care about the randomness.</p>
http://stackoverflow.com/questions/1522149/c-vectors-using-findbegin-end-term/1522173#15221732Answer by Evan Teran for c++ vectors - Using find(begin, end, term)Evan Teran2009-10-05T20:21:00Z2009-10-05T20:32:45Z<p>use a predicate and <code>std::find_if</code> like this:</p>
<pre><code>struct has_char {
has_char(const char *s) : str(s) {}
bool operator() (const char ch) const {
return str.find(ch) != std::string::npos;
}
private:
std::string str;
};
end = std::find_if(arToken.begin() + nStart, arToken.end(), has_char(".!?"));
</code></pre>
http://stackoverflow.com/questions/1515151/where-does-stack-for-each-program-begin-in-memory/1515168#15151682Answer by Evan Teran for Where does stack for each program begin in memory?Evan Teran2009-10-03T23:41:55Z2009-10-04T04:43:53Z<p>The answer really depends on the OS and arch you are using. It <strong>appears</strong> you are using a *nix variant, and odds are that means Linux.</p>
<p>For Linux, before randomization became standard, the default was just short of where kernel space began. On my x86 system, the region used for stack is (with ASLR disabled) by default: <code>bffea000 - c0000000</code></p>
<p><strong>NOTE:</strong> the value I provided is not necessarily accurate for all systems, but that's what it is for my system.</p>
<p>On modern Linux systems the stack will be at a fairly random address. You can verify this by running this several times in a row:</p>
<pre><code>cat /proc/self/maps | grep "\[stack\]"
</code></pre>
<p>If the option is disabled, I would expect all programs stacks to default to the same location (the end of user space). </p>
<p>Running a program with <code>exec</code> <strong>replaces</strong> your address space with the new program's; this will include the stack, so it'll end up in the same location as any other program run. Think about it: your shell program has to do a <code>fork/exec</code> to run the program just the same as your program will does...</p>
http://stackoverflow.com/questions/1514949/quick-java-optimization-question/1514952#15149521Answer by Evan Teran for Quick Java Optimization QuestionEvan Teran2009-10-03T21:56:05Z2009-10-03T21:56:05Z<p>I think it is safe to say that any decent java compiler will do such trivial optimizations if they are proven to be beneficial. As usual, the advise is to write things clearly and effectively. If the program proves to be too slow, then profile to find where you spend the most time and <strong>then</strong> look for optimizations you can do. I think the best way to put this is:</p>
<blockquote>
<p>"Before you make it fast, make it
work"</p>
</blockquote>
<p>This is a clear cut case of premature optimization.</p>
http://stackoverflow.com/questions/1309921/storing-a-list-of-objects/1309937#13099372Answer by Evan Teran for Storing a List of ObjectsEvan Teran2009-08-21T03:15:45Z2009-10-03T19:35:03Z<p><strong>EDIT:</strong>
Sorry, I forgot that the constructor to shared pointers are explicit (meaning that you need to do a little more work:</p>
<pre><code>object_list.push_back(QSharedPointer<Object>(new Object));
</code></pre>
<p>or</p>
<pre><code>object_list.push_back(boost::shared_ptr<Object>(new Object));
</code></pre>
<p>Also, as mentioned in a comment <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/ptr%5Fcontainer/doc/ptr%5Flist.html" rel="nofollow">boost::ptr_list</a> is even better since it is more efficient and has the same net effect as a <code>std::list<boost::shared_ptr<T> ></code>.</p>
<p><hr /></p>
<p><strong>EDIT:</strong>
You mention that you are using Qt in your comment. If you are using >= 4.5 you can use Qt's <code>QList</code> and <code>QSharedPointer</code> classes like this:</p>
<pre><code>QList<QSharedPointer<Object> > object_list;
object_list.push_back(new Object);
</code></pre>
<p><hr /></p>
<p>I would recommend you use <code>std::list<></code>. You also likely just want to store pointers to the objects so they aren't being copied all of the time.</p>
<p>So bottom line is:</p>
<p>Let's say you have a class named <code>Object</code>. You should do this:</p>
<pre><code>std::list<boost::shared_ptr<Object> > object_list;
object_list.push_back(new Object);
</code></pre>
<p>By using shared pointers, the objects will get cleaned up automatically when they are removed from the list (if there are no other <code>shared_ptr</code>S also pointing to it).</p>
<p>You could have a <code>list<Object *></code>. But given your experience level, I feel that a reference counted pointer would be much easier for you to work with.</p>
<blockquote>
<p>In that case, I should probably use
List and delete them from the
list when I'm done with them, no?</p>
</blockquote>
<p>Yes, this is a viable option, but I highly recommend <strong>smart pointers</strong> to avoid the "...and delete them from the list..." step entirely.</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>also the example code you gave:</p>
<pre><code>Object *obj = new Object;
myObjectList.append(*obj);
</code></pre>
<p>is probably not what you wanted, this makes a new object on the heap, they puts a <strong>copy</strong> of that in the list. If there is no <code>delete obj</code> after that, then you have a memory leak since raw pointers are not automatically <code>delete</code>d.</p>
http://stackoverflow.com/questions/1514480/c-overload-operator/1514537#15145375Answer by Evan Teran for c++ overload operator==Evan Teran2009-10-03T18:53:55Z2009-10-03T19:32:21Z<p><strong>EDIT:</strong></p>
<p>OK, I've figured out your problem. It is the non-reference version of the <code>operator==</code>. It makes the <code>operator==</code> ambiguous. Simply remove it (as I originally suggested) and it'll work fine.</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>In response to your edit, you should still remove the first version of the <code>operator==</code> There is no need to make a copy of the object in question and then compare it. The second <code>operator==</code> looks reasonable and should work. Is there anything else you are leaving out?</p>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>The following compiles just fine for me using g++ 4.4.1:</p>
<pre><code>#include <iostream>
struct DistinctWord {
DistinctWord(const std::string &s) : strWord(s){}
bool operator==(const DistinctWord& W) const {
return strWord == W.strWord;
}
std::string strWord;
};
int main() {
DistinctWord* wordOne = new DistinctWord("Test");
DistinctWord* wordTwo = new DistinctWord("Test");
if(*wordOne == *wordTwo)
std::cout << "true";
else
std::cout << "false";
}
</code></pre>
<p>If you are still having problems, then you are not showing all relevant code...</p>
<p><hr /></p>
<p>First of all, where is the definition for <code>DistinctWord</code> and how does it relate to <code>Word</code>?</p>
<p>Beyond that, you should do this:</p>
<pre><code>bool Word::operator==(const Word& W) const {
return strWord == W.strWord;
}
</code></pre>
<p>and just remove the two <code>operator==</code>'s you currently have. The first is making a copy then comparing which is silly, and your second is comparing a modifiable reference and always returning true which doesn't really serve any purpose.</p>
<p>This one should work fine.</p>
http://stackoverflow.com/questions/1508658/accessing-to-qtabbar-instance/1510395#15103953Answer by Evan Teran for Accessing to QTabBar instanceEvan Teran2009-10-02T15:53:15Z2009-10-02T15:53:15Z<p>As you mentioned, subclassing is the proper solution since it is protected. Something like this:</p>
<pre><code>class TabWidget : public QTabWidget {
public:
TabWidget(QWidget *p = 0) : QTabWidget(p){}
public:
QTabBar *tabBar() const { return QTabWidget::tabBar(); }
};
</code></pre>
<p>You can tell designer to "promote" your QTabWiget to a TabWidget then you will have an accessible <code>tabBar()</code> function.</p>
http://stackoverflow.com/questions/1493000/what-happens-if-i-releasemutex-twice/1493181#14931814Answer by Evan Teran for What happens if I ReleaseMutex() twice?Evan Teran2009-09-29T15:09:32Z2009-09-29T15:09:32Z<p><a href="http://stackoverflow.com/users/116853/peejaybee">peejay</a> provided a good link in his comment to the <a href="http://msdn.microsoft.com/en-us/library/ms685066%28VS.85%29.aspx" rel="nofollow">ReleaseMutex documentation</a>. I believe that this line from the documentation answers your question:</p>
<blockquote>
<p>The ReleaseMutex function fails if the
calling thread does not own the mutex
object.</p>
</blockquote>
<p>While it is not explicitly said, I think that releasing a mutex (the first time) causes the calling thread to no longer own the mutex object. Thus the second call will simply fail. Such an implementation would make sense too since it would allow easily detecting this type of error (Just check the return value).</p>
http://stackoverflow.com/questions/1010520/can-you-use-multiple-threads-to-ptrace-an-application/1868661#1868661Comment by Evan Teran on can you use multiple threads to ptrace an application?Evan Teran2009-12-08T18:11:16Z2009-12-08T18:11:16Zthanks, I'll check it out.http://stackoverflow.com/questions/1864948/why-hasnt-a-faster-better-language-than-c-come-outComment by Evan Teran on Why hasn't a faster, "better" language than C come out?Evan Teran2009-12-08T06:16:19Z2009-12-08T06:16:19Zum, aren't you forgetting about c++?http://stackoverflow.com/questions/1848097/summary-malloc-c3074-why-does-this-code-causes-the-error/1848116#1848116Comment by Evan Teran on summary: malloc.c:3074 - Why does this code causes the errorEvan Teran2009-12-04T16:59:42Z2009-12-04T16:59:42Zno problem, everyone is a beginner at sometime.http://stackoverflow.com/questions/1848097/summary-malloc-c3074-why-does-this-code-causes-the-error/1848116#1848116Comment by Evan Teran on summary: malloc.c:3074 - Why does this code causes the errorEvan Teran2009-12-04T16:38:13Z2009-12-04T16:38:13Zyou asked why <b>that</b> code leaks, you have 3 <code>malloc</code> calls and zero <code>free</code> calls. That is why...http://stackoverflow.com/questions/1845281/reproducing-static-initialization-order-fiasco-in-c/1845361#1845361Comment by Evan Teran on Reproducing static initialization order fiasco in C++Evan Teran2009-12-04T07:42:56Z2009-12-04T07:42:56ZGood point, I've added comments to illustrate that things belong in separate files.http://stackoverflow.com/questions/1835986/how-to-use-eof-to-run-through-a-text-file-in-c/1836094#1836094Comment by Evan Teran on How to use EOF to run through a text file in C?Evan Teran2009-12-02T22:43:34Z2009-12-02T22:43:34Z@streetparade: you are incorrect. It can be defined in your libc as <b>any</b> negative integer, not necessarily -1. By redefining it as you've suggested, you are introducing a portability bug unnecessarily. including <stdio.h> is the correct answer. For example, what if <code>getchar()</code> returns -2 for EOF (which would be perfectly legal of the library to do so. If this happens, then your code is <b>broken</b>.http://stackoverflow.com/questions/1810308/how-to-get-value-from-15th-pin-of-32bit-port-in-arm/1810318#1810318Comment by Evan Teran on How to get value from 15th pin of 32bit port in ARM?Evan Teran2009-11-30T16:23:10Z2009-11-30T16:23:10Z@Ron: good point, if the goal is to just do a boolean test then your suggestion could potentially compiler to slightly better code.http://stackoverflow.com/questions/1810308/how-to-get-value-from-15th-pin-of-32bit-port-in-arm/1810318#1810318Comment by Evan Teran on How to get value from 15th pin of 32bit port in ARM?Evan Teran2009-11-28T05:14:00Z2009-11-28T05:14:00Zwell that is something that is processor specific. One x86 you would use some assembly or compiler intrinsic to perform an <code>in</code> or <code>out</code> instruction to read and write I/O ports.http://stackoverflow.com/questions/1731355/iterating-over-string-strlen-with-umlauted-characters/1731424#1731424Comment by Evan Teran on Iterating over string/strlen with umlauted charactersEvan Teran2009-11-13T20:07:48Z2009-11-13T20:07:48Zwell that code assumes that the string is multibyte (like utf-8). But also, look at the comment.. it says "do whatever with wc..." THAT is the multibyte character converted to a wchar_t.http://stackoverflow.com/questions/1731355/iterating-over-string-strlen-with-umlauted-characters/1731424#1731424Comment by Evan Teran on Iterating over string/strlen with umlauted charactersEvan Teran2009-11-13T19:50:14Z2009-11-13T19:50:14Zwhoops, fixed that for ya. That's what I get for posting without compiling.http://stackoverflow.com/questions/1727237/c-array-sort-meComment by Evan Teran on C++ Array Sort MeEvan Teran2009-11-13T05:10:30Z2009-11-13T05:10:30Zcan we assume that <code>howmany</code> is set to <code>14</code>?http://stackoverflow.com/questions/1726425/adding-elements-to-a-vector-inside-a-c-class-not-being-storedComment by Evan Teran on Adding elements to a vector inside a c++ class not being storedEvan Teran2009-11-13T00:51:33Z2009-11-13T00:51:33Zwhat exactly do you mean by "ClusterManager, it is no where to be seen". Are you seeing an issue at runtime, or is the debugger just having problems seeing that variable?http://stackoverflow.com/questions/1726425/adding-elements-to-a-vector-inside-a-c-class-not-being-storedComment by Evan Teran on Adding elements to a vector inside a c++ class not being storedEvan Teran2009-11-13T00:46:40Z2009-11-13T00:46:40Zyou should know that <code>this->x</code> can just be written <code>x</code> the vast majority of the time.http://stackoverflow.com/questions/1385468/is-lock-free-multithreaded-programming-making-anything-easier/1398330#1398330Comment by Evan Teran on Is lock free multithreaded programming making anything easier?Evan Teran2009-11-09T18:51:09Z2009-11-09T18:51:09Zdo you have a link to this library you mentioned? I think some people here would be interested to see it.http://stackoverflow.com/questions/1699259/give-me-assignments-on-pointersComment by Evan Teran on Give me assignments on pointers.Evan Teran2009-11-09T05:51:47Z2009-11-09T05:51:47Z@Ravi: you should try to be a little less vague. You should describe which aspects of pointers you find confusing.