User freitass - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:44:35Z http://stackoverflow.com/feeds/user/89112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1082192/how-to-generate-random-variable-names-in-c-using-macros 0 How to generate random variable names in C++ using macros? freitass 2009-07-04T13:16:54Z 2009-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-handshake 1 Serial programming (hardware handshake) freitass 2009-08-14T19:01:19Z 2009-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, &amp;status); // get the current port status if (value) status |= TIOCM_CTS; // rise the CTS bit else status &amp;= ~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#1097648 0 Answer by freitass for Where do I download a Java 6 JDK for Linux? freitass 2009-07-08T12:05:45Z 2009-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-char 0 Convert struct to unsigned char * freitass 2009-07-08T04:02:53Z 2009-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&lt;unsigned char*&gt;(*uc_ptr); // invalid static cast at the previous line </code></pre> http://stackoverflow.com/questions/1092981/hamcrests-hasitems/1093019#1093019 2 Answer by freitass for Hamcrest's hasItems freitass 2009-07-07T15:29:07Z 2009-07-07T21:38:05Z <p>You are comparing <code>ArrayList&lt;Integer&gt;</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 &lt;T&gt; org.hamcrest.Matcher&lt;java.lang.Iterable&lt;T&gt;&gt; hasItems(T... elements) </code></pre> <p>i.e., it accepts a variable number of arguments. I'm not sure if an <code>ArrayList&lt;T&gt;</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#1094082 0 Answer by freitass for Why is Java's Class<T> generic? freitass 2009-07-07T18:45:58Z 2009-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&lt;T&gt; List { ... public insert(T element); ... } </code></pre> <p>and use it like:</p> <pre><code>List&lt;int&gt; intList = new List&lt;int&gt;(); intList.insert(1); List&lt;String&gt; stringList = new List&lt;String&gt;(); stringList.insert("a"); </code></pre> http://stackoverflow.com/questions/1090098/newline-in-jlabel/1090112#1090112 8 Answer by freitass for Newline in JLabel freitass 2009-07-07T02:33:20Z 2009-07-07T02:33:20Z <p>Surround the string with <code>&lt;html&gt;&lt;/html&gt;</code> and break the lines with <code>&lt;br&gt;</code>.</p> <pre><code>JLabel l = new JLabel("&lt;html&gt;Hello World!&lt;br&gt;blahblahblah&lt;/html&gt;", SwingConstants.CENTER); </code></pre> http://stackoverflow.com/questions/1090075/how-do-you-farm-out-variables-to-persistent-data/1090089#1090089 0 Answer by freitass for How do you farm out variables to persistent data? freitass 2009-07-07T02:23:12Z 2009-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#1088559 1 Answer by freitass for Ubuntu fonts freitass 2009-07-06T18:33:59Z 2009-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#1088276 0 Answer by freitass for How do I *not* delete a member in a destructor? freitass 2009-07-06T17:37:35Z 2009-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#1088108 5 Answer by freitass for How do I divide in the Linux console? freitass 2009-07-06T17:08:21Z 2009-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#1086616 1 Answer by freitass for Why won't it remove from the set? freitass 2009-07-06T12:01:28Z 2009-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&lt;Object&gt; set) { Object obj=set.iterator().next(); iterator.remove(); } </code></pre> http://stackoverflow.com/questions/1085170/how-to-achieve-code-folding-effects-in-emacs/1085195#1085195 4 Answer by freitass for How to achieve code folding effects in emacs freitass 2009-07-06T02:37:37Z 2009-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#1085177 0 Answer by freitass for Most beautiful open source software written in c++ freitass 2009-07-06T02:32:10Z 2009-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-expressions 0 Is it possible to treat macro's arguments as regular expressions? freitass 2009-07-05T22:30:49Z 2009-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>&lt;type_name&gt; [*] &lt;var_name&gt;</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) &lt;var_type&gt; &lt;var_name&gt; = (&lt;var_type&gt;) 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#1084387 0 Answer by freitass for Finding the Nth largest value in a group of numbers as they are generated. freitass 2009-07-05T16:36:09Z 2009-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-c 0 What is the simplest RTTI implementation for C++? freitass 2009-07-03T21:48:05Z 2009-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#1279614 Comment by freitass on Serial programming (hardware handshake) freitass 2009-08-14T19:05:34Z 2009-08-14T19:05:34Z Yes, it is included. http://stackoverflow.com/questions/1110913/java-event-handling Comment by freitass on Java event handling freitass 2009-07-10T17:47:32Z 2009-07-10T17:47:32Z The 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-handling Comment by freitass on Java event handling freitass 2009-07-10T17:35:51Z 2009-07-10T17:35:51Z It 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-textarea Comment by freitass on Catching Tabs in TextArea freitass 2009-07-09T17:55:22Z 2009-07-09T17:55:22Z Possibly 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/&hellip;</a> http://stackoverflow.com/questions/1084960/is-it-possible-to-treat-macros-arguments-as-regular-expressions/1084988#1084988 Comment by freitass on Is it possible to treat macro's arguments as regular expressions? freitass 2009-07-08T17:10:06Z 2009-07-08T17:10:06Z I'm writing macros for that because I can't use the default construct. http://stackoverflow.com/questions/1096072/convert-struct-to-unsigned-char/1096099#1096099 Comment by freitass on Convert struct to unsigned char * freitass 2009-07-08T11:46:29Z 2009-07-08T11:46:29Z I'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#1093019 Comment by freitass on Hamcrest's hasItems freitass 2009-07-07T19:57:28Z 2009-07-07T19:57:28Z I 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-hasitems Comment by freitass on Hamcrest's hasItems freitass 2009-07-07T15:29:52Z 2009-07-07T15:29:52Z You should paste the error message. http://stackoverflow.com/questions/1090098/newline-in-jlabel/1090112#1090112 Comment by freitass on Newline in JLabel freitass 2009-07-07T12:25:49Z 2009-07-07T12:25:49Z Thanks, I agree about the oddness. http://stackoverflow.com/questions/1084960/is-it-possible-to-treat-macros-arguments-as-regular-expressions/1084973#1084973 Comment by freitass on Is it possible to treat macro's arguments as regular expressions? freitass 2009-07-05T22:42:25Z 2009-07-05T22:42:25Z The 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#1082211 Comment by freitass on How to generate random variable names in C++ using macros? freitass 2009-07-05T19:47:25Z 2009-07-05T19:47:25Z This 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 &quot;__ COUNTER __&quot; (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#1082198 Comment by freitass on How to generate random variable names in C++ using macros? freitass 2009-07-05T19:42:08Z 2009-07-05T19:42:08Z Actually I don't &quot;want&quot; 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#1080971 Comment by freitass on What is the simplest RTTI implementation for C++? freitass 2009-07-04T17:31:59Z 2009-07-04T17:31:59Z Well, I think it is a little bit out of reach. There are too many objects in the system. But for smaller and kind of &quot;static&quot; development it is a good alternative. http://stackoverflow.com/questions/1080953/what-is-the-simplest-rtti-implementation-for-c/1080995#1080995 Comment by freitass on What is the simplest RTTI implementation for C++? freitass 2009-07-04T17:29:03Z 2009-07-04T17:29:03Z Can you show a way to get the 'ptr' in the first code? And I didn't understand the 'obj' role too.