User freitass - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T14:44:35Zhttp://stackoverflow.com/feeds/user/89112http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros0How to generate random variable names in C++ using macros?freitass2009-07-04T13:16:54Z2009-11-04T17:00:06Z
<p>I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variable. For instance:</p>
<pre><code>#define MY_MACRO int my_variable_[random-number-here] = getCurrentTime();
</code></pre>
<p>The other motivation to use that is to avoid selecting certain name to the variable so that it be the same as a name eventually chosen by the developer using the macro.</p>
<p>Is there a way to generate random variable names inside a macro in C++?</p>
<p>-- Edit --</p>
<p>I mean unique but also random once I can use my macro twice in a block and in this case it will generate something like:</p>
<pre><code>int unique_variable_name;
...
int unique_variable_name;
</code></pre>
<p>In this case, to be unique both variable names have to be random generated.</p>
http://stackoverflow.com/questions/1279592/serial-programming-hardware-handshake1Serial programming (hardware handshake)freitass2009-08-14T19:01:19Z2009-08-15T02:13:03Z
<p>I'm trying to to program a serial communication using hardware handshake in linux using C/C++. The signals that implement the handshake are CTS (Clear to send) and RTS (Request to send). Currently my function for setting the CTS signal looks as follows:</p>
<pre><code>int setCTS(int fd, int value) {
int status;
ioctl(fd, TIOCMGET, &status); // get the current port status
if (value)
status |= TIOCM_CTS; // rise the CTS bit
else
status &= ~TIOCM_CTS; // drop the CTS bit
ioctl(fd, TIOCMSET, $status); // set the modified status
return 0;
}
</code></pre>
<p>where <em>fd</em> is the file descriptor for the port and <em>value</em> is the value to be set for the signal. To code this function I based on <a href="http://www.easysw.com/~mike/serial/serial.html#5%5F1" rel="nofollow">http://www.easysw.com/~mike/serial/serial.html#5_1</a>.</p>
<p>The problem is that <em>gcc</em> does not recognize any of the constants used in the example. Any suggestions?</p>
<p>-- Update --</p>
<p>I've found an answer. Looking to another example, <code>sys/ioctl.h</code> declares the constants.</p>
http://stackoverflow.com/questions/1097632/where-do-i-download-a-java-6-jdk-for-linux/1097648#10976480Answer by freitass for Where do I download a Java 6 JDK for Linux?freitass2009-07-08T12:05:45Z2009-07-08T12:05:45Z<p>It is never so easy to find what you want at that site, but luckily today I have found it ;).</p>
<p><a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS%5FDeveloper-Site/en%5FUS/-/USD/ViewProductDetail-Start?ProductRef=jdk-6u14-oth-JPR@CDS-CDS%5FDeveloper" rel="nofollow">https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=jdk-6u14-oth-JPR@CDS-CDS_Developer</a></p>
http://stackoverflow.com/questions/1096072/convert-struct-to-unsigned-char0Convert struct to unsigned char *freitass2009-07-08T04:02:53Z2009-07-08T10:34:53Z
<p>How can I convert the following <code>struct</code> to <code>unsigned char*</code>?</p>
<pre><code>typedef struct {
unsigned char uc1;
unsigned char uc2;
unsigned char uc3;
unsigned char uc5;
unsigned char uc6;
} uchar_t;
uchar_t *uc_ptr = new uchar;
unsigned char * uc_ptr2 = static_cast<unsigned char*>(*uc_ptr);
// invalid static cast at the previous line
</code></pre>
http://stackoverflow.com/questions/1092981/hamcrests-hasitems/1093019#10930192Answer by freitass for Hamcrest's hasItemsfreitass2009-07-07T15:29:07Z2009-07-07T21:38:05Z<p>You are comparing <code>ArrayList<Integer></code> with <code>int</code>. The correct comparison is:</p>
<pre><code>...
assertThat(actual, hasItem(2));
</code></pre>
<p>-- Edit --</p>
<p>I'm sorry, I've read it wrong. Anyway, the signature of <code>hasItems</code> you want is:</p>
<pre><code>public static <T> org.hamcrest.Matcher<java.lang.Iterable<T>> hasItems(T... elements)
</code></pre>
<p>i.e., it accepts a variable number of arguments. I'm not sure if an <code>ArrayList<T></code> is compatible, just guessing here. Try sending each item from the expected list interspersed by comma.</p>
<pre><code>assertThat(actual, hasItems(2,4,1,5,6));
</code></pre>
<p>-- Edit 2 --</p>
<p>Just pasting here my comment, there is an equivalent expression for what you want, without using Hamcrest:</p>
<pre><code>assertTrue(actual.containsAll(expected));
</code></pre>
http://stackoverflow.com/questions/1094023/why-is-javas-classt-generic/1094082#10940820Answer by freitass for Why is Java's Class<T> generic?freitass2009-07-07T18:45:58Z2009-07-07T18:45:58Z<p>It permits you to create classes that handle objects from different. Think about the hell it would be if you have to write a list for each class present in your project. Instead of writing things like:</p>
<pre><code>public class IntegerList {
...
public insert(int element);
...
}
</code></pre>
<p>and</p>
<pre><code>public class StringList {
...
public insert(String element);
...
}
</code></pre>
<p>You can create:</p>
<pre><code>public class<T> List {
...
public insert(T element);
...
}
</code></pre>
<p>and use it like:</p>
<pre><code>List<int> intList = new List<int>();
intList.insert(1);
List<String> stringList = new List<String>();
stringList.insert("a");
</code></pre>
http://stackoverflow.com/questions/1090098/newline-in-jlabel/1090112#10901128Answer by freitass for Newline in JLabelfreitass2009-07-07T02:33:20Z2009-07-07T02:33:20Z<p>Surround the string with <code><html></html></code> and break the lines with <code><br></code>.</p>
<pre><code>JLabel l = new JLabel("<html>Hello World!<br>blahblahblah</html>", SwingConstants.CENTER);
</code></pre>
http://stackoverflow.com/questions/1090075/how-do-you-farm-out-variables-to-persistent-data/1090089#10900890Answer by freitass for How do you farm out variables to persistent data?freitass2009-07-07T02:23:12Z2009-07-07T02:23:12Z<p>You decide the format of the .ini file of your application. I usually work with XML because then you can organize your information by scope and there is already a bunch of libs to handle storing and retrieving information from XML trees.</p>
<p>Edit: for C++ - <a href="http://xerces.apache.org/xerces-c/" rel="nofollow">http://xerces.apache.org/xerces-c/</a></p>
http://stackoverflow.com/questions/1088541/ubuntu-fonts/1088559#10885591Answer by freitass for Ubuntu fontsfreitass2009-07-06T18:33:59Z2009-07-06T18:33:59Z<pre><code>sudo apt-get install ubuntu-restricted-extras
</code></pre>
http://stackoverflow.com/questions/1088226/how-do-i-not-delete-a-member-in-a-destructor/1088276#10882760Answer by freitass for How do I *not* delete a member in a destructor?freitass2009-07-06T17:37:35Z2009-07-06T17:37:35Z<p>If you have dynamically allocated memory for this member it is possible once you have shared the reference to this member before destroying the object and if you ensure the member is not destroyed in the object's destructor. However I think this practice isn't so reasonable.</p>
http://stackoverflow.com/questions/1088098/how-do-i-divide-in-the-linux-console/1088108#10881085Answer by freitass for How do I divide in the Linux console?freitass2009-07-06T17:08:21Z2009-07-06T17:08:21Z<p>Check this article: <a href="http://www.basicallytech.com/blog/index.php?/archives/23-command-line-calculations-using-bc.html" rel="nofollow">http://www.basicallytech.com/blog/index.php?/archives/23-command-line-calculations-using-bc.html</a></p>
http://stackoverflow.com/questions/1086595/why-wont-it-remove-from-the-set/1086616#10866161Answer by freitass for Why won't it remove from the set?freitass2009-07-06T12:01:28Z2009-07-06T12:01:28Z<p>Beyond the missing ';' after <code>set.remove(obj)</code>, It can happen in three situations (quoted from javadoc).</p>
<blockquote>
<pre><code>ClassCastException - if the type of the specified element is incompatible with this set (optional).
NullPointerException - if the specified element is null and this set does not support null elements (optional).
UnsupportedOperationException - if the remove method is not supported by this set.
</code></pre>
</blockquote>
<p>You can also try:</p>
<pre><code>public void foo(Set<Object> set)
{
Object obj=set.iterator().next();
iterator.remove();
}
</code></pre>
http://stackoverflow.com/questions/1085170/how-to-achieve-code-folding-effects-in-emacs/1085195#10851954Answer by freitass for How to achieve code folding effects in emacsfreitass2009-07-06T02:37:37Z2009-07-06T02:37:37Z<p>Apparently there is no perfect solution, but I think the best one is this:</p>
<p><a href="http://www.emacswiki.org/emacs/FoldingMode" rel="nofollow">http://www.emacswiki.org/emacs/FoldingMode</a></p>
http://stackoverflow.com/questions/1081843/most-beautiful-open-source-software-written-in-c/1085177#10851770Answer by freitass for Most beautiful open source software written in c++freitass2009-07-06T02:32:10Z2009-07-06T02:32:10Z<p>Tou should take a look at the source code of <a href="http://www.netbsd.org/" rel="nofollow">NetBSD</a>. It's really clear and well documented.</p>
http://stackoverflow.com/questions/1084960/is-it-possible-to-treat-macros-arguments-as-regular-expressions0Is it possible to treat macro's arguments as regular expressions?freitass2009-07-05T22:30:49Z2009-07-05T23:12:45Z
<p>Suppose I have a C++ macro CATCH to replace the catch statement and that macro receive as parameter a variable-declaration regular expression, like <code><type_name> [*] <var_name></code> or something like that. Is there a way to recognize those "fields" and use them in the macro definition?</p>
<p>For instance:</p>
<pre><code>#define CATCH(var_declaration) <var_type> <var_name> = (<var_type>) exception_object;
</code></pre>
<p>Would work just like:</p>
<pre><code>#define CATCH(var_type, var_name) var_type var_name = (var_type) exception_object;
</code></pre>
<p><hr /></p>
<p>As questioned, I'm using g++.</p>
http://stackoverflow.com/questions/1084365/finding-the-nth-largest-value-in-a-group-of-numbers-as-they-are-generated/1084387#10843870Answer by freitass for Finding the Nth largest value in a group of numbers as they are generated.freitass2009-07-05T16:36:09Z2009-07-05T16:36:09Z<p>If I understood well, the upper bound memory usage for your program is O(N) (possibly N+1). You can maintain a list of the generated values that are greater than the current X (the Nth largest value so far) ordered by lowest first. As soon as a new greater value is generated, you can replace the current X by the first element of the list and insert the just generated value to its corresponding position in the list.</p>
http://stackoverflow.com/questions/1080953/what-is-the-simplest-rtti-implementation-for-c0What is the simplest RTTI implementation for C++?freitass2009-07-03T21:48:05Z2009-07-04T18:54:10Z
<p>I'm trying to implement exception handling for an embedded OS and I'm stuck at how to detect the type of the thrown "exception" (to select the appropriate handler).</p>
<p>The saving and restoring context parts of the exception handling are already done, but I can't have specific handles since I can't detect the type of the thrown 'exception'. The standard RTTI implementation of c++ is too dependent of other libraries and for that reason I'm currently considering it unavailable.</p>
<p>Considering that my target is an embedded system and for that reason I can't create much code, what is the smallest implementation of "Runtime Type Information" I can get (or make)?</p>
<p>-- Edit --</p>
<p>I'm not working on the compiler, It's an ia32-g++.</p>
http://stackoverflow.com/questions/1279592/serial-programming-hardware-handshake/1279614#1279614Comment by freitass on Serial programming (hardware handshake)freitass2009-08-14T19:05:34Z2009-08-14T19:05:34ZYes, it is included.http://stackoverflow.com/questions/1110913/java-event-handlingComment by freitass on Java event handling freitass2009-07-10T17:47:32Z2009-07-10T17:47:32ZThe times does not know about the logic of your application, you have to implement some logic <i>using</i> those periods.http://stackoverflow.com/questions/1110913/java-event-handlingComment by freitass on Java event handling freitass2009-07-10T17:35:51Z2009-07-10T17:35:51ZIt would be nice if you could organize the posted code, use the code environment available at the questions editor.http://stackoverflow.com/questions/1105452/catching-tabs-in-textareaComment by freitass on Catching Tabs in TextAreafreitass2009-07-09T17:55:22Z2009-07-09T17:55:22ZPossibly duplicated <a href="http://stackoverflow.com/questions/3362/capturing-tab-key-in-text-box" rel="nofollow" title="capturing tab key in text box">stackoverflow.com/questions/3362/…</a>http://stackoverflow.com/questions/1084960/is-it-possible-to-treat-macros-arguments-as-regular-expressions/1084988#1084988Comment by freitass on Is it possible to treat macro's arguments as regular expressions?freitass2009-07-08T17:10:06Z2009-07-08T17:10:06ZI'm writing macros for that because I can't use the default construct.http://stackoverflow.com/questions/1096072/convert-struct-to-unsigned-char/1096099#1096099Comment by freitass on Convert struct to unsigned char *freitass2009-07-08T11:46:29Z2009-07-08T11:46:29ZI've just noticed the missing uc4. The example I posted is illustrative, the struct I have has some meaning. Thanks anyway.http://stackoverflow.com/questions/1092981/hamcrests-hasitems/1093019#1093019Comment by freitass on Hamcrest's hasItemsfreitass2009-07-07T19:57:28Z2009-07-07T19:57:28ZI cannot answer that for you, I'm telling this based on the documentation. But there is a simpler way to do what you want... use assertTrue(actual.containsAll(expected)).http://stackoverflow.com/questions/1092981/hamcrests-hasitemsComment by freitass on Hamcrest's hasItemsfreitass2009-07-07T15:29:52Z2009-07-07T15:29:52ZYou should paste the error message.http://stackoverflow.com/questions/1090098/newline-in-jlabel/1090112#1090112Comment by freitass on Newline in JLabelfreitass2009-07-07T12:25:49Z2009-07-07T12:25:49ZThanks, I agree about the oddness.http://stackoverflow.com/questions/1084960/is-it-possible-to-treat-macros-arguments-as-regular-expressions/1084973#1084973Comment by freitass on Is it possible to treat macro's arguments as regular expressions?freitass2009-07-05T22:42:25Z2009-07-05T22:42:25ZThe compiler I'm using is g++. I don't mind using another preprocessor.http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082211#1082211Comment by freitass on How to generate random variable names in C++ using macros?freitass2009-07-05T19:47:25Z2009-07-05T19:47:25ZThis won't work for me since I may use the macro more than once inside the same file and reference it later in another macro. The "__ COUNTER __" (I know it is all together) may work but I would need to know the current value of the counter without incrementing it.http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros/1082198#1082198Comment by freitass on How to generate random variable names in C++ using macros?freitass2009-07-05T19:42:08Z2009-07-05T19:42:08ZActually I don't "want" it a macro, but the problem to be solved is into a macro. Your answer gave me an idea, I have created a class to hold the values (managing a list instead of declaring a variable each time).http://stackoverflow.com/questions/1080953/what-is-the-simplest-rtti-implementation-for-c/1080971#1080971Comment by freitass on What is the simplest RTTI implementation for C++?freitass2009-07-04T17:31:59Z2009-07-04T17:31:59ZWell, I think it is a little bit out of reach. There are too many objects in the system. But for smaller and kind of "static" development it is a good alternative.http://stackoverflow.com/questions/1080953/what-is-the-simplest-rtti-implementation-for-c/1080995#1080995Comment by freitass on What is the simplest RTTI implementation for C++?freitass2009-07-04T17:29:03Z2009-07-04T17:29:03ZCan you show a way to get the 'ptr' in the first code? And I didn't understand the 'obj' role too.