User rocknroll - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T20:33:19Z http://stackoverflow.com/feeds/user/126691 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt 1 Hex to String Conversion C++/C/Qt? rocknroll 2009-08-11T06:30:16Z 2009-11-03T20:33:26Z <p>Hi all,</p> <p>I am interfacing with an external device which is sending data in hex format. It is of form</p> <pre><code>&gt; %abcdefg,+xxx.x,T,+yy.yy,T,+zz.zz,T,A*hhCRLF </code></pre> <ul> <li>CR LF is carriage return line feed</li> <li>hh->checksum</li> <li>%abcdefg -> header </li> </ul> <p>Each character in above packet is sent as a hex representation (the xx,yy,abcd etc are replaced with actual numbers). The problem is at my end I store it in a const char* and during the implicit conversion the checksum say 0x05 is converted to \0x05. Here \0 being null character terminates my string. This is perceived as incorrect frames when it is not. Though I can change the implementation to processing raw bytes (in hex form) but I was just wondering whether there is another way out, because it greatly simplifies processing of bytes. And this is what programmers are meant to do.</p> <p>Also in cutecom (on LINUX RHEL 4) I checked the data on serial port and there also we noticed <code>\0x05</code> instead of 5 for checksum. Note that for storing incoming data I am using</p> <pre><code>//store data from serial here unsigned char Buffer[SIZE]; //convert to a QString, here is where problem arises QString str((const char*)Buffer); of \0 </code></pre> <p>QString is "string" clone of Qt. Library is not an issue here I could use STL also, but C++ string library is also doing the same thing. Has somebody tried this type of experiment before? Do share your views.</p> <p>EDIT</p> <p>This is the sample code you can check for yourself also:</p> <pre><code>#include &lt;iostream&gt; #include &lt;string&gt; #include &lt;QString&gt; #include &lt;QApplication&gt; #include &lt;QByteArray&gt; using std::cout; using std::string; using std::endl; int main(int argc,char* argv[]) { QApplication app(argc,argv); int x = 0x05; const char mydata[] = { 0x00, 0x00, 0x03, 0x84, 0x78, 0x9c, 0x3b, 0x76, 0xec, 0x18, 0xc3, 0x31, 0x0a, 0xf1, 0xcc, 0x99}; QByteArray data = QByteArray::fromRawData(mydata, sizeof(mydata)); printf("Hello %s\n",data.data()); string str("Hello "); unsigned char ch[]={22,5,6,7,4}; QString s((const char*)ch); qDebug("Hello %s",qPrintable(s)); cout &lt;&lt; str &lt;&lt; x ; cout &lt;&lt; "\nHello I am \0x05"; cout &lt;&lt; "\nHello I am " &lt;&lt; "0x05"; return app.exec(); } </code></pre> http://stackoverflow.com/questions/1042252/issues-serial-port-watch-using-threads-with-an-event-loop-and-qsocketnotifiers 0 Issues Serial Port Watch using threads with an event loop and QSocketNotifiers rocknroll 2009-06-25T04:58:38Z 2009-10-16T02:00:03Z <p>Hi all,</p> <p>I asked this question yesterday since I wasn't receiving any data but strangely when I used wait in the destructor I started receveing notification from QSocketNotifier. The rest of the question is same. Can someone suggest something? I have created a sample application from where separate thread is started to read and process data from serial port. QSocketNotifier is used for detecting whether data has arrived on the serial ports or not. I start an event loop using exec() statement in run function of thread. But while running the application only once the socket notifier has worked, the signal for serial port activation is never generated. And once when it was generated it was generated very fast and wasn't equivalent to the frame rate of sending device.</p> <p>Here is a brief code sample for serial communicator thread:</p> <p>SerialPortWatchOne.cpp</p> <pre><code>//constructor klass::klass() { //setport configuration //miscellaneous initialization QSocketNotifier* notifier = new QSocketNotifier(mPort-&gt;GetFileDescriptor, QSocketNotifier::Read,this); connect(notifier,SIGNAL(activated(int)),this,SLOT(ReadAndProcessData())); } void klass::run() { exec(); //this starts an event loop where by Qt signal handling is enabled } void klass::ReadAndProcessData() { FlushBuf(); int bytes_read=mPort-&gt;ReadPort(mBuf,1000); if(bytes_read&gt;0) //Process data } ~klass::klass() { //desctruction code; wait(); //so that thread cleanly releases all resources before exit } </code></pre> <p>Note: klass is a thread and a member of GUI thread and is instantiated in the GUI thread c'tor. periodically GUI updates its widgets with data from klass thread.</p> <p>Can anyone suggest as what the issue is? Has someone done this before.</p> http://stackoverflow.com/questions/1404518/problem-in-line-editor-in-qt 0 Problem in Line Editor in Qt? rocknroll 2009-09-10T10:34:54Z 2009-09-10T10:34:54Z <p>Hi all,</p> <p>I am trying to set the text of line editor in Qt on linux. It works for all but 2 line editors which for some strange reason don't display the text even when we set the text using</p> <pre><code>mValueLineEdit-&gt;setText("Hello") </code></pre> <p>I have debugged each and every line of code in my application but nothing fishy was found.I checked after setting the text using text() and displayText() properties also but no luck.</p> http://stackoverflow.com/questions/1338921/passing-array-of-objects-composed-of-other-objects-as-reference-to-functions-in-c 0 Passing Array of objects Composed of other objects as reference to Functions In C++? rocknroll 2009-08-27T04:57:34Z 2009-08-27T06:31:17Z <p>Hi all,</p> <p>I have a function which calls itself 10 times a second. I am using QTimer for repeat calls. </p> <pre><code>void DisplayClass::UpdateGuiWithData() { //miscellaneous code which is validated SingletonObjectAsThread::instance()-&gt;UpdateFromGuiToExternalHardware(ClassOjbectArray,var1,var2); QTimer::singleShot(100,this,SLOT(UpdateGuiWithData())); } Class A_ComposingClass_B_Object { //boolean and enum variables B ArrayOf_B_Objects[16]; } Class B { //boolean and enum vairables } class DisplayClass { //variables that are not a concern here UpdateGuiWithData(); A ArrayOfObject_A[4]; }; Class SingletonAsThread { //vairables that are not a concern here UpdateFromGui(A_ComposingClass_B_Object*,const bool&amp;,const bool&amp;); }; </code></pre> <p>Here is the deal when I run the code as is, there is a steady increase in memory size but when I comment out the Call to UpdateFromGui call in UpdateGuiWithData class, the memory stays at a constant level of around 51 MB. The UpdateFromGui function has no dynamic memory allocation or GUI functions. It is just a plane jane function that constructs the packet to write to serial port and is called 10 times a second since this is the refresh rate of the hardware.</p> <p><strong>The only reason I could think of the increase in memory is passing the array of objects with each call to UpdateFromGui function. I think with each call we are creating a copy of class objects and hence the increase in memory.</strong> Then I tried to use passing array of objects as reference to the function but couldn't find a suitable declaration for such a function, though I found the definition and usage of such a function. Here is what I found on the net.</p> <p>// Receive Array by reference.</p> <pre><code>void GetArray( int (&amp;Array) [10] ) { } // Test array by reference. void CRabbitDlgDlg::TestArray() { // Pass array by reference. int Array[10] = { 0 }; GetArray( Array ); } </code></pre> <p>My question are </p> <p>--->Am I thinking on the right line or is it something to do with repeated call to singleton</p> <p>class object? </p> <p>--->Also do I need a copy constructor here for Class A, though there is no dynamic </p> <p>allocation or pointer variables in this class? </p> <p>--->What else can be the source of this memory leak (if not its not about copy constructor or singleton calls) which constantly increases the memory usage </p> <p>of the application?</p> http://stackoverflow.com/questions/1332840/running-the-executable-does-nothing -1 Running the executable does nothing rocknroll 2009-08-26T07:06:23Z 2009-08-26T07:13:50Z <p>Hi all,</p> <p>I was writing a sample example involving multiple files. The detailed code is as follows. </p> <p>main.cpp</p> <pre><code>#include &lt;algorithm&gt; #include &lt;iomanip&gt; #include &lt;ios&gt; #include &lt;iostream&gt; #include &lt;stdexcept&gt; #include &lt;string&gt; #include &lt;vector&gt; #include "grade.h" #include "Student_Info.h" using std::cin; using std::cout; using std::domain_error; using std::endl; using std::max; using std::setprecision; using std::sort; using std::streamsize; using std::string; using std::vector; int main() { vector&lt;Student_Info&gt; students; Student_Info record; string::size_type maxlen = 0; //the length of the longest name //read and store all the student's data //Invariant: students contains all the student records read so far //maxlen contains the length of the longest name in students while(read(cin,record)) { //find length of the longest name maxlen=max(maxlen,record.name.size()); students.push_back(record); } //alphabetize the student records sort(students.begin(),students.end(),compare); //write the names and grades for(vector&lt;Student_Info&gt;::size_type i=0; i!=students.size();++i) { //write the name, padded to the right to maxlen + 1 characters cout &lt;&lt; students[i].name &lt;&lt; string(maxlen+1-students[i].name.size(),' '); //compute and write the grade try { double final_grade=grade(students[i]); streamsize prec = cout.precision(); cout &lt;&lt; setprecision(3) &lt;&lt; final_grade &lt;&lt; setprecision(prec); } catch(domain_error e) { cout &lt;&lt; e.what(); } cout &lt;&lt; endl; } return 0; } </code></pre> <p>Student_info.{h,cpp}</p> <pre><code>#ifndef GUARD_Student_Info #define GUARD_Student_Info #include &lt;iostream&gt; #include &lt;string&gt; #include &lt;vector&gt; using std::iostream; using std::string; using std::vector; struct Student_Info { std::string name; double midterm,final; std::vector&lt;double&gt; homework; }; bool compare(const Student_Info&amp;, const Student_Info&amp;); std::istream&amp; read(std::istream&amp;, Student_Info&amp;); std::istream&amp; read_hw(std::istream&amp;, std::vector&lt;double&gt;&amp;); #endif #include "Student_Info.h" using std::istream; using std::vector; bool compare(const Student_Info&amp; x, const Student_Info&amp; y) { return x.name &lt; y.name; } istream&amp; read(istream&amp; is, Student_Info&amp; s) { is &gt;&gt; s.name &gt;&gt; s.midterm &gt;&gt; s.final; read_hw(is,s.homework); //read and store all the students' homework grades return is; } istream&amp; read_hw(istream&amp; in, vector&lt;double&gt;&amp; hw) { if(in) { //get rid of previous contents hw.clear(); //read homework grades double x; while(in&gt;&gt;x) hw.push_back(x); //clear the stream so that the input would work for the next student in.clear(); } return in; } </code></pre> <p>grade.{h,cpp}</p> <pre><code>#ifndef GRADE_H #define GRADE_H //grade.h #include &lt;vector&gt; #include "Student_Info.h" double grade(double,double,double); double grade(double,double,const std::vector&lt;double&gt;&amp;); double grade(const Student_Info&amp;); #endif #include &lt;stdexcept&gt; #include &lt;vector&gt; #include "median.h" #include "grade.h" double grade(const Student_Info&amp; s) { return grade(s.midterm,s.final,s.homework); } double grade(double midterm, double final, const vector&lt;double&gt;&amp; hw) { if(hw.size()==0) throw domain_error("student has done no homework"); return grade(midterm, final, median(hw)); } double grade(double midterm,double final,double homework) { return 0.2*midterm + 0.4*final + 0.4*homework; } </code></pre> <p>median.{h,cpp}</p> <pre><code>#ifndef MEDIAN_H #define MEDIAN_H #include &lt;vector&gt; #include &lt;stdexcept&gt; //to get the declaration of domain_error #include &lt;algorithm&gt; //to get the declaration of sortt using std::domain_error; using std::sort; using std::vector; double median(std::vector&lt;double&gt;); #endif #include "median.h" double median(vector&lt;double&gt; vec) { typedef vector&lt;double&gt;::size_type vec_sz; vec_sz size=vec.size(); if(size==0) throw domain_error("median of an empty vector"); sort(vec.begin(),vec.end()); vec_sz mid=size/2; return size%2==0 ? (vec[mid]+vec[mid-1])/2:vec[mid]; } </code></pre> <p>The problem is when I compile it using g++ on linux and run ./a.out nothing happens. This is strange. I have gone over the code but couldn't find anything untoward. Hopefully someone can find the glitch. </p> http://stackoverflow.com/questions/1321407/programming-resources-for-c-in-linux/1321818#1321818 3 Answer by rocknroll for Programming resources for C++ in Linux rocknroll 2009-08-24T11:22:11Z 2009-08-25T05:31:49Z <p>It is good that you are going in for a linux platform.It will help you to program as per the c/c++ standards. </p> <p>I would recommend </p> <p>vi/vim ----> text editor</p> <p>gcc -------> C compiler </p> <p>g++ -------> C++ compiler</p> <p>gdb ------> command line debugger </p> <p>ddd ------> graphical version of gdb</p> <p>I use the abovementioned tools. If you are hellbent on ide's you can use the ones mentioned by Chen Levy.</p> http://stackoverflow.com/questions/1320912/how-to-terminate-a-qthread/1321778#1321778 1 Answer by rocknroll for How to terminate a QThread? rocknroll 2009-08-24T11:13:06Z 2009-08-24T11:13:06Z <p>Using flags is an obvious and the most common way to do the trick, but if you are working on a linux/unix platform I would advise you to use pipes instead. I had the same issue where I used a flag (this makes the code threadunsafe, and bugs arising out of such a flag are hard to trace), then I changed the implementation to use pipes which were an efficient way to do the needful. </p> <p>If you want, for a linux platform I can show you how to use pipes to terminate a QThread.</p> <p>You may also have windows equivalent of pipes, which I don't know much about as I haven't done much of programming on Windows platform. </p> <p>Hope this helps</p> http://stackoverflow.com/questions/1320781/processevents-and-memory-leak 0 processEvents And Memory Leak? rocknroll 2009-08-24T06:39:28Z 2009-08-24T07:56:29Z <p>Hi all,</p> <p>NOTE: THE CODE PROVIDED JUST GIVES THE IDEA OF THE STRUCTURE OF THE APPLICATION</p> <p>I have a Qt application, interfacing with external hardware. The structure is such that the class for interfacing with the hardware inherits from QObject and is composed with the main GUI thread class. Let's say the class is test.h, here is its sample code:</p> <pre><code>#ifndef TEST_H #define TEST_H #include &lt;QLineEdit&gt; #include &lt;QString&gt; #include &lt;QTimer&gt; #include "ui_test.h" #define TIMEOUT 100 class TestObj; class TestApp:public QWidget, public Ui::mTestForm { Q_OBJECT public: TestApp(QWidget* parent=0); QTimer* mTimer; bool mWindowClosed; TestObj* mObj; public slots: void UpdateText(); void Exit(); }; class TestObj:public QObject { Q_OBJECT public: TestObj(); void RandomTest(); }; #endif </code></pre> <p>Code for test.cpp is </p> <pre><code>#include "test.h" TestApp::TestApp(QWidget* parent):QWidget(parent) { setupUi(this); mObj = new TestObj(); mWindowClosed=false; mLineEdit-&gt;setText("Hello"); mTimer=new QTimer(); mTimer-&gt;singleShot(1000,this,SLOT(UpdateText())); connect(mExitButton,SIGNAL(clicked()),this, SLOT(Exit())); } void TestApp::UpdateText() { if(mWindowClosed) { //QApplication::processEvents(); return; } else { //QApplication::processEvents(); mObj-&gt;RandomTest(); mLineEdit-&gt;setText("Hi"); mTimer-&gt;singleShot(100,this,SLOT(UpdateText())); } } void TestApp::Exit() { mWindowClosed=true; } </code></pre> <p>Now consider that TestObj class is the one used to interface with the hardware. This class sends three possible commands (in actual code, the above is just a sample structure) with different timeouts to the hardware, thus we have a timer which is used when sending commands (implemented as functions) to the hardware. Each of these has a processEvents entry to identify any changes to variables in the meanwhile.</p> <p>The problem is this module is responsible for a steady rise in memory during program execution. </p> <p>When I comment out the UpdateText() function in the TestApp constructor, the app works fine. </p> <p>My guess is that most likely there is queuing of signal slots due to which the memory increase, because there are lots of GUI events taking place. And since the class isn't implemented as a separate thread and clubbed with the main GUI thread. There is continuous update of the main thread.</p> <p>Can someone suggest a way out? I don't have the authority to change the design otherwise I would have implemented the interface class as a thread. So if a solution can be suggested with the current design as is, it would be beneficial.</p> http://stackoverflow.com/questions/1265169/c-qt-memory-leak 0 C++/Qt memory Leak? rocknroll 2009-08-12T09:30:15Z 2009-08-12T11:01:22Z <p>Hi all,</p> <p>I noticed a very interesting finding. I was testing my application involving a custom made GUI element which was being updated by data coming from an external source. The update of GUI was done using a <strong>slot(Qt specific detail)</strong> function whenever data arrived on serial port. Now the data was coming a rate of 10 packets a second i.e the update GUI function was being called 10 packets a second. This had the effect of slowing down the application in addition to constantly increasing its memory footprint. It started at 60 MB and increased to 65 MB in a couple of hours.</p> <p>My conclusion was that updating the GUI is slow and when a slot for updating is called 10 times a second, the slot calls are queued in the long run thus degrading application response time.</p> <p>I solved this problem by caching the incoming value and updating the GUI on when there is change in the incoming value. </p> <p>I have tried various free tools like valgrind-memcheck, leak checker but there results aren't helpful, in fact leak checker doesn't find the leak but my programs memory size is increasing constantly. Does that mean it is because of queuing of signal slot connection as GUI update is inherently slow?</p> <p>Now here lies the issue. Tracking down memory leaks is hard enough and if Qt is involved how can a hapless programmer be sure of the problem i.e if its actually a memory leak or queuing of signal slot connections? </p> http://stackoverflow.com/questions/1192070/good-readings-on-unix-linux-socket-programming 6 Good Readings on Unix/Linux Socket Programming? rocknroll 2009-07-28T05:28:08Z 2009-08-01T22:17:11Z <p>Hi all,</p> <p>though I haven't worked with sockets professionally, I find them interesting. I read some part of Unix Network Programming by Richard Stevens (considered to be the Bible I suppose as it is referred by everyone I ask) but the problem is the examples require a universal header unp.h which is a PIA to use.</p> <p>Can some of you suggest a good reading for socket programming in Unix/Linux? Considering I am relatively experienced C/C++ coder.</p> http://stackoverflow.com/questions/1186379/detecting-memory-leaks-in-c-qt-combine 1 Detecting memory leaks in C++ Qt combine? rocknroll 2009-07-27T04:07:09Z 2009-07-27T11:42:30Z <p>Hi all,</p> <p>I have an application that interacts with external devices using serial communication. There are two versions of the device differing in their implementations. -->One is developed and tested by my team -->The other version by a different team. Since the other team has left, our team is looking after it's maintenance. The other day while testing the application I noticed that the application takes up 60 Mb memory at startup and to my horror it's memory usage starts increasing with 200Kb chunks, in 60 hrs it shoots up to 295 Mb though there is no slow down in the responsiveness and usage of application. I tested it again and again and the same memory usage pattern is repeated. </p> <p><strong>The application is made in C++,Qt 4.2.1 on RHEL4.</strong> </p> <p>I used mtrace to check for any memory leaks and it shows no such leaks. I then used valgrind memcheck tool, but the messages it gives are cryptic and not very conclusive, it shows leaks in graphical elements of Qt, which on scrutiny can be straightaway rejected.</p> <p>I am in a fix as to what other tools/methodologies can be adopted to pinpoint the source of these memory leaks if any. -->Also, in a larger context, how can we detect and debug presence of memory leaks in a C++ Qt application? -->How can we check, how much memory a process uses in Linux? </p> <p>I had used gnome-system-monitor and top command to check for memory used by the application, but I have heard that results given by above mentioned tools are not absolute.</p> <p><strong>EDIT:</strong></p> <p>I used ccmalloc for detecting memory leaks and this is the error report I got after I closed the application. During application execution, there were no error messages.</p> <p>|ccmalloc report|</p> <p>=======================================================</p> <p>| total # of| allocated | deallocated | garbage |</p> <p>+-----------+-------------+-------------+-------------+</p> <p>| bytes| 387325257 | 386229435 | 1095822 |</p> <p>+-----------+-------------+-------------+-------------+</p> <p>|allocations| 1232496 | 1201351 | 31145 |</p> <p>+-----------------------------------------------------+</p> <p>| number of checks: 1 |</p> <p>| number of counts: 2434332 |</p> <p>| retrieving function names for addresses ... done. |</p> <p>| reading file info from gdb ... done. |</p> <p>| sorting by number of not reclaimed bytes ... done. |</p> <p>| number of call chains: 3 |</p> <p>| number of ignored call chains: 0 |</p> <p>| number of reported call chains: 3 |</p> <p>| number of internal call chains: 3 |</p> <p>| number of library call chains: 1 |</p> <p>=======================================================</p> <p>|</p> <p>| 3.1% = 33.6 KB of garbage allocated in 47 allocations</p> <p>| |</p> <p>| | 0x???????? in</p> <p>| |</p> <p>| | 0x081ef2b6 in</p> <p>| | at src/wrapper.c:489</p> <p>| |</p> <p>| | 0x081ef169 in &lt;_realloc></p> <p>| | at src/wrapper.c:435</p> <p>| |</p> <p>| `-----> 0x081ef05c in</p> <p>| at src/wrapper.c:318</p> <p>|</p> <p>| 0.8% = 8722 Bytes of garbage allocated in 35 allocations</p> <p>| |</p> <p>| | 0x???????? in</p> <p>| |</p> <p>| | 0x081ef134 in</p> <p>| | at src/wrapper.c:422</p> <p>| |</p> <p>| `-----> 0x081ef05c in</p> <p>| at src/wrapper.c:318</p> <p>|</p> <p>| 0.1% = 1144 Bytes of garbage allocated in 5 allocations</p> <p>| |</p> <p>| | 0x???????? in</p> <p>| |</p> <p>| | 0x081ef1cb in</p> <p>| | at src/wrapper.c:455</p> <p>| |</p> <p>| `-----> 0x081ef05c in</p> <p>| at src/wrapper.c:318</p> <p>|</p> <p>`------------------------------------------------------</p> <p>free(0x09cb650c) after reporting</p> <p>(This can happen with static destructors.</p> <p>When linking put `ccmalloc.o' at the end (for gcc) or</p> <p>in front of the list of object files.)</p> <p>free(0x09cb68f4) after reporting</p> <p>free(0x09cb68a4) after reporting</p> <p>free(0x09cb6834) after reporting</p> <p>free(0x09cb6814) after reporting</p> <p>free(0x09cb67a4) after reporting</p> <p>free(0x09cb6784) after reporting</p> <p>free(0x09cb66cc) after reporting</p> <p>free(0x09cb66ac) after reporting</p> <p>free(0x09cb65e4) after reporting</p> <p>free(0x09cb65c4) after reporting</p> <p>free(0x09cb653c) after reporting</p> <p>ccmalloc_report() called in non valid state</p> <p>I have no clue, what this means, it doesn't seem to indicate any memory leaks to me? I may be wrong. Does anyone of you have come across such a scenario? link|edit|delete</p> http://stackoverflow.com/questions/1025511/thread-implemented-as-a-singleton 0 Thread implemented as a Singleton rocknroll 2009-06-22T04:57:28Z 2009-07-20T09:03:44Z <p>Hi all,</p> <p>I have a commercial application made with C,C++/Qt on Linux platform. The app collects data from different sensors and displays them on GUI. Each of the protocol for interfacing with sensors is implemented using singleton pattern and threads from Qt QThreads class. All the protocols except one work fine. Each protocol's run function for thread has following structure:</p> <pre><code>void &lt;ProtocolClassName&gt;::run() { while(!mStop) //check whether screen is closed or not { mutex.lock() while(!waitcondition.wait(&amp;mutex,5)) { if(mStop) return; } //Code for receiving and processing incoming data mutex.unlock(); } //end while } </code></pre> <p>Hierarchy of GUI.</p> <p>1.Login screen. 2. Screen of action. </p> <p>When a user logs in from login screen, we enter the action screen where all data is displayed and all the thread's for different sensors start. They wait on mStop variable in idle time and when data arrives they jump to receiving and processing data. Incoming data for the problem protocol is 117 bytes. In the main GUI threads there are timers which when timeout, grab the running instance of protocol using </p> <pre><code> &lt;ProtocolName&gt;::instance() function </code></pre> <p>Check the update variable of singleton class if its true and display the data. When the data display is done they reset the update variable in singleton class to false. The problematic protocol has the update time of 1 sec, which is also the frame rate of protocol. When I comment out the display function it runs fine. But when display is activated the application hangs consistently after 6-7 hours. I have asked this question on many forums but haven't received any worthwhile suggestions. I Hope that here I will get some help. Also, I have read a lot of literature on Singleton, multithreading, and found that people always discourage the use of singletons especially in C++. But in my application I can think of no other design for implementation. </p> <p>Thanks in advance</p> <p>A Hapless programmer</p> http://stackoverflow.com/questions/1141570/is-comeau-compiler-worth-it-compared-to-gcc 6 Is comeau compiler worth it compared to gcc? rocknroll 2009-07-17T05:49:25Z 2009-07-17T13:17:06Z <p>Hi all,</p> <p>I have been using gcc,g++ for my C,C++ application development till now and have found it to be amazing. But browsing through stackoverflow I found many members stating that error reporting in Comeau compiler is much more than any other compiler. Is this true? I haven't invested in any commercial release of a compiler. Is it really worth spending money on a commercial release of a C/C++ compiler when gcc,g++ are doing the trick?</p> http://stackoverflow.com/questions/1135392/serial-communication-anomaly-in-linux/1141445#1141445 0 Answer by rocknroll for serial communication anomaly in Linux? rocknroll 2009-07-17T04:38:07Z 2009-07-17T04:38:07Z <p>Hi all,</p> <p>I have solved the problem. My apologies if I couldn't get across my point. Earlier we were using signal handling for serial interfacing with each system connected to a dedicated serial port, this design was flawed from start as signal handler in our case was way too complex. Ideally a signal handler should just set some flags, it shouldn't involve function calls as there can be synchronisation issues to be handled, then it snowballs into a synchronisation nightmare which is hard to debug as I found out in my application. This design leads to loss in packets coming from the serial ports. To deal with this situation we were using reset port function which was a crude way to rectify the packet loss problem. I dropped the signal handler and used select call for individual systems. But didn't drop reset port which was a part of earlier design. On debugging, I found resetport a spurious function and dropped it. Voila!! everything works perfect now. On record, my advice to anyone who is using serial communication on a linux paltform to use select system call. You are absolved of handling the details of serial communication and just concentrate on processing the incoming packets. </p> <p>I hope this solution will help all those who are working on serial communication on linux/unix platforms. There isn't much literature on the subject and all search on the net will lead you to some documents by mike and sweet which though good aren't much help in practical applications. I acknowledge the help offered by all members of stackoverlow which gave me unthinkable perspectives to look at the problem at hand. Thanks guys, cheers!!!!!!</p> http://stackoverflow.com/questions/1135392/serial-communication-anomaly-in-linux 1 serial communication anomaly in Linux? rocknroll 2009-07-16T04:33:49Z 2009-07-17T04:38:07Z <p>Hi all,</p> <p>I am using select call to communicate with an external subsystem (protocol for the same has been provided and implemented as a Qt thread) using serial port RS232. We do not have the hardware for the external systems and thus we have developed in house simulators using .Net 2.0 and C# to mimic the behavior of the underlying subsystem hardware. There are 5 different subsystem that communicate with our application. Every interface for the subsystem is implemented as a Qt thread. Since this isn't a real time application, and we do not have the actual hardware when we communicate using simulators, all systems do find for 24 hrs or so and after that the communication goes up and down and ultimately all communication breaks down, but when I restart the simulator machine without closing my application, things become alright. Why does this happen?</p> <p>My guess is, since .Net/C# isn't a real time framework and also after the simulators have run for 24 hrs, the data sending rates start to slow down, that there is clogging of serial ports; the restart flushes everything and thus everything returns to normal. This is just a guess. If someone has a better opinion, do share it. Note, the simulators have been made by a different team of .Net guys.</p> <p>Note: Each protocol has different data rates, 1 Hz, 5 Hz, 10 Hz. </p> <p>There is one system which just doesn't resume communication even after simulator for the same is restarted after reboot. The port configuration for this system is</p> <pre><code>SetPortConfiguration() { tcgetattr(Fd,&amp;mOldtio); mNewtio.c_cflag = B4800 | CS8 | CLOCAL | CREAD | CRTSCTS; mNewtio.c_iflag = 0; //setting the input flag to icrnl causes a blank frame to be displayed after every frame. mNewtio.c_oflag = 0; mNewtio.c_lflag =ICANON; mNewtio.c_cflag &amp;=~PARENB; mNewtio.c_cflag &amp;= ~CSTOPB; //mNewtio.c_cflag &amp;= ~HUPCL; //added on 24/3/09 mNewtio.c_cc[VEOL]=0; //setting VEOL to '\r' or '\n' causes a blank frame to be displayed after every frame. mNewtio.c_cc[VKILL] = 0; /* @ */ mNewtio.c_cc[VSTART] = 0; /* Ctrl-q */ mNewtio.c_cc[VSTOP] = 0; /* Ctrl-s */ mNewtio.c_cc[VMIN]=0; mNewtio.c_cc[VTIME]=0; tcflush(Fd, TCIFLUSH); tcflow(Fd,TCION); tcsetattr(Fd,TCSANOW,&amp;mNewtio); } </code></pre> <p>Also there is a reset port function :</p> <pre><code>ResetPort() { tcflush(Fd, TCIFLUSH); //flush all data received but not read tcflow(Fd,TCIOFF); //transmits a STOP character, which stops the terminal device from transmitting data to the system tcsetattr(Fd, TCSANOW, &amp;mOldtio);//set the old terminal settings ClosePort(); //close port OpenPort(mStrPortNo); //open the port specified by port number and in read mode SetPortConfiguration(); } </code></pre> <p>If there is any break in communication, I call the ResetPort function which closes and reopens the port. This solves the problem in all cases except one system say XYZ. XYZ system sends data in NMEA format with each packet as a string of data terminated with a Carriage Return, LineFeed combination. </p> <p>Any idea fellows as to what may be the problem?</p> http://stackoverflow.com/questions/1129519/fixed-length-float-in-c-c 0 Fixed Length Float in C/C++? rocknroll 2009-07-15T05:17:32Z 2009-07-15T10:13:26Z <p>Hi all,</p> <p>I was wondering whether it is possible to limit the number of characters we enter in a float. I couldn't seem to find any method. I have to read in data from an external interface which sends float data of the form xx.xx. As of now I am using conversion to char and vice-versa, which is a messy work-around. Can someone suggest inputs to improve the solution?</p> http://stackoverflow.com/questions/1125025/what-is-the-role-of-magic-number-in-boot-loading-in-linux 1 What is the role of Magic Number in boot loading in Linux? [closed] rocknroll 2009-07-14T12:21:46Z 2009-07-14T12:31:53Z <p>Hi all,</p> <p>I was going through the details of the linux boot process. It was understood that the primary boot loader resides in 512 byte image (program code + partition table). The 510 bytes comprise of executable code, error messages and partition table information. And the last 2 bytes contain a magic number 0xAA55. It was mentioned that <strong>"The magic number serves as a validation check of the MBR"</strong>. Now what is the validation check? My guess is some sort of check like CRC to make sure that MBR is not corrupt. </p> <p>I searched on the net and there is no explanation for magic numbers and its working. But interesting thing is even Microsoft OS' also have magic numbers in their boot loaders. Can somebody enlighten us in this regard??????????????</p> http://stackoverflow.com/questions/1085450/good-study-material-for-c-javascript-php 0 Good study material for C#,JavaScript,PHP? rocknroll 2009-07-06T04:42:46Z 2009-07-06T07:03:35Z <p>Hi all,</p> <p>I am a proficient C++/Qt coder, having worked only on desktop projects till now. I wanted to extend my knowledge base into the web realm. In this regard, can some of you suggest good reading material for C#,JavaScript and php? And are there any standards for these languages as there are for C,C++ like ANSI C,C99,C++0x etc.</p> http://stackoverflow.com/questions/1053006/qt-activate-window/1081835#1081835 0 Answer by rocknroll for Qt - activate window rocknroll 2009-07-04T09:00:14Z 2009-07-04T09:08:27Z <p>Regarding Qt::Tool WindowFlags To quote Qt documentation </p> <blockquote> <p>Indicates that the widget is a tool window. A tool window is often a small window with a smaller than usual title bar and decoration, typically used for collections of tool buttons. It there is a parent, the tool window will always be kept on top of it. If there isn't a parent, you may consider using Qt::WindowStaysOnTopHint as well. If the window system supports it, a tool window can be decorated with a somewhat lighter frame. It can also be combined with Qt::FramelessWindowHint</p> </blockquote> <p>It seems the flags is a problem and using Qt::WindowStaysOnTopHint should solve your problem.</p> http://stackoverflow.com/questions/1081716/real-time-video-capture 0 Real time video capture?? rocknroll 2009-07-04T07:09:09Z 2009-07-04T07:20:14Z <p>Hi all,</p> <p>Just as a hobby, I want to capture realtime video. The source of video for a start would be a web camera. I have one from logitech. What I am trying to do is make a custom window with Real time video display as one part and other miscellaneous widgets. As a starting point I looked in Qt and phonon did sound promising. But installing it on linux is a PIA. Googled it and found no alternative, just theortical stuff is given and no practical example or direction. In VLC player I just selected some options and voila, web camera started giving line feed. How can I start for something of this sort. Also the jargon of video capture like codecs etc has always been confusing for me. Can someone with expertise in this area guide me and other members regarding the basics of video capture programming (real time/stream/reading from a file). And why there are hundreds of codecs, why can't we have a single standard one?????????.</p> <p>The whole business of video display is very very confusing to me, variety of backends, variety of codecs etc. Ohh!! the most important thing I want to do it on LINUX machine. I am using C++/Qt/RHEL 4. Language(C,C++,Java) is no barrier, but I want to develop only on a linux platform.</p> <p>Thanks </p> http://stackoverflow.com/questions/1067607/closing-a-thread-with-select-system-call-statement 0 Closing a thread with select() system call statement? rocknroll 2009-07-01T06:44:16Z 2009-07-01T07:10:05Z <p>Hi all,</p> <p>I have a thread to monitor serial port using select system call, the run function of the thread is as follows:</p> <pre><code>void &lt;ProtocolClass&gt;::run() { int fd = mPort-&gt;GetFileDescriptor(); fd_set readfs; int maxfd=fd+1; int res; struct timeval Timeout; Timeout.tv_usec=0; Timeout.tv_sec=3; //BYTE ack_message_frame[ACKNOWLEDGE_FRAME_SIZE]; while(true) { usleep(10); FD_ZERO(&amp;readfs); FD_SET(fd,&amp;readfs); res=select(maxfd,&amp;readfs,NULL,NULL,NULL); if(res&lt;0) perror("\nselect failed"); else if( res==0) puts("TIMEOUT"); else if(FD_ISSET(fd,&amp;readfs)) {//IF INPUT RECEIVED qDebug("************RECEIVED DATA****************"); FlushBuf(); qDebug("\nReading data into a read buffer"); int bytes_read=mPort-&gt;ReadPort(mBuf,1000); mFrameReceived=false; for(int i=0;i&lt;bytes_read;i++) { qDebug("%x",mBuf[i]); } //if complete frame has been received, write the acknowledge message frame to the port. if(bytes_read&gt;0) { qDebug("\nAbout to Process Received bytes"); ProcessReceivedBytes(mBuf,bytes_read); qDebug("\n Processed Received bytes"); if(mFrameReceived) { int no_bytes=mPort-&gt;WritePort(mAcknowledgeMessage,ACKNOWLEDGE_FRAME_SIZE); }//if frame received }//if bytes read &gt; 0 } //if input received }//end while } </code></pre> <p>The problem is when I exit from this thread, using</p> <pre><code>delete &lt;protocolclass&gt;::instance(); </code></pre> <p>the program crashes with a glibc error of malloc memory corruption. On checking the core with gdb it was found the when exiting the thread it was processing the data and thus the error. The destructor of the protocol class looks as follows:</p> <pre><code>&lt;ProtocolClass&gt;::~&lt;ProtocolClass&gt;() { delete [] mpTrackInfo; //delete data wait(); mPort-&gt;ClosePort(); s_instance = NULL; //static instance of singleton delete mPort; } </code></pre> <p>Is this due to select? Do the semantics for destroying objects change when select is involved? Can someone suggest a clean way to destroy threads involving select call.</p> <p>Thanks</p> http://stackoverflow.com/questions/1063147/select-not-working-in-thread 0 Select() not Working in thread rocknroll 2009-06-30T11:22:54Z 2009-06-30T11:42:10Z <p>Hi all,</p> <p>I have to monitor a serial port and process its data. As a test program I was using select for just one port. The run function is as follows:</p> <pre><code>void &lt;ProtocolClass&gt;::run() { int fd = mPort-&gt;GetFileDescriptor(); fd_set readfs; int maxfd=1; int res; FD_ZERO(&amp;readfs); FD_SET(fd,&amp;readfs); struct timeval Timeout; Timeout.tv_usec=0; Timeout.tv_sec=3; //BYTE ack_message_frame[ACKNOWLEDGE_FRAME_SIZE]; while(true) { usleep(10); res=select(maxfd,&amp;readfs,NULL,NULL,NULL); if(res&lt;0) perror("\nselect failed"); else if( res==0) puts("TIMEOUT"); else if(FD_ISSET(fd,&amp;readfs)) {//IF INPUT RECEIVED qDebug("************RECEIVED DATA****************"); FlushBuf(); qDebug("\nReading data into a read buffer"); int bytes_read=mPort-&gt;ReadPort(mBuf,1000); mFrameReceived=false; for(int i=0;i&lt;bytes_read;i++) { qDebug("%x",mBuf[i]); } //if complete frame has been received, write the acknowledge message frame to the port. if(bytes_read&gt;0) { qDebug("\nAbout to Process Received bytes"); ProcessReceivedBytes(mBuf,bytes_read); qDebug("\n Processed Received bytes"); if(mFrameReceived) { int no_bytes=mPort-&gt;WritePort(mAcknowledgeMessage,ACKNOWLEDGE_FRAME_SIZE); }//if frame received }//if bytes read &gt; 0 } //if input received }//end while } </code></pre> <p>But the problem is it doesn't seemed to work as nothing happens. Can somebody suggest the correct way to do it. I want to use select per thread. Is this feasible. Can you give me a sample code to do it. I have searched the net but the examples are very basic involving just the main function. There are no C++ specific examples. I am using Qt threads by the way.</p> <p>Thanks</p> http://stackoverflow.com/questions/1048218/select-system-call-in-threads 2 Select() system call in threads? rocknroll 2009-06-26T09:31:33Z 2009-06-26T10:19:14Z <p>Hi all,</p> <p>I am reading data from multiple serial ports. At present I am using Custom signal handler (by setting sa_handler) to compare and wake threads based on file descriptor information. I was searching for a way out to have individual threads with unique signal handlers, in this regard I found that select system call is to be used. Now I have following questions:</p> <ol> <li>If I am using a thread (Qt) then where do I put the select system call to monitor the serial port?</li> <li>Is the select system call thread safe?</li> <li>Is it CPU intensive because there are many things happening in my app including GUI update?</li> </ol> <p>Please do not mind, if you find these questions ridiculous. I have never used such a mechanism for serial communication. Also </p> http://stackoverflow.com/questions/1037421/multiple-event-loops-and-serial-communication-issues 0 Multiple Event Loops and Serial Communication Issues ? rocknroll 2009-06-24T09:55:59Z 2009-06-24T09:55:59Z <p>Hi all,</p> <p>I have created a sample application from where separate thread is started to read and process data from serial port. QSocketNotifier is used for detecting whether data has arrived on the serial ports or not. I start an event loop using exec() statement in run function of thread. But while running the application only once the socket notifier has worked, the signal for serial port activation is never generated. And once when it was generated it was generated very fast and wasn't equivalent to the frame rate of sending device. </p> <p>Here is a brief code sample for serial communicator thread:</p> <p>SerialPortWatchOne.cpp</p> <pre><code>//constructor klass::klass() { //setport configuration //miscellaneous initialization QSocketNotifier* notifier = new QSocketNotifier(mPort-&gt;GetFileDescriptor, QSocketNotifier::Read,this); connect(notifier,SIGNAL(activated(int)),this,SLOT(ReadAndProcessData())); } void klass::run() { exec(); //this starts an event loop where by Qt signal handling is enabled } void klass::ReadAndProcessData() { FlushBuf(); int bytes_read=mPort-&gt;ReadPort(mBuf,1000); if(bytes_read&gt;0) //Process data } </code></pre> <p>Note: klass is a thread and a member of GUI thread and is instantiated in the GUI thread c'tor. periodically GUI updates its widgets with data from klass thread.</p> <p>Can anyone suggest as what the issue is? Has someone done this before.</p> http://stackoverflow.com/questions/1036361/has-someone-used-qsockenotifier-qt-library-to-read-write-serial-ports-in-linux 1 Has someone used QSockeNotifier (Qt library) to read/write serial ports in Linux? rocknroll 2009-06-24T04:15:01Z 2009-06-24T04:36:40Z <p>Hi all, </p> <p>I am currently linux API like sigio,sigaction etc to interface with serial ports in Linux. And for GUI I am using Qt 4.2. I know about 3rd party QextSerial but I would stay away from it. I also was tinkering with QSocketNotifier as an alternative. Can someone give a rough example to r/w from serial port using QSockeNotifier.</p> <p>Regards</p> http://stackoverflow.com/questions/1030567/threading-issues-in-c 2 Threading issues in C++ rocknroll 2009-06-23T03:56:59Z 2009-06-23T18:29:12Z <p>I have asked this problem on many popular forums but no concrete response. My applciation uses serial communication to interface with external systems each having its own interface protocol. The data that is received from the systems is displayed on a GUI made in Qt 4.2.1.</p> <p>Structure of application is such that</p> <ol> <li><p>When app begins we have a login page with a choice of four modules. This is implemented as a maindisplay class. Each of the four modules is a separate class in itself. The concerned module here is of action class which is responsible of gathering and displaying data from various systems.</p></li> <li><p>User authentication gets him/her into the action screen. The constructor of the action screen class executes and apart from mundane initialisation it starts the individual systems threads which are implemented as singleton.</p></li> </ol> <p>Each system protocol is implemented as a singleton thread of the form:</p> <pre><code>class SensorProtocol:public QThread { static SensorProtocol* s_instance; SensorProtocol(){} SensorProtocol(const SensorProtocol&amp;); operator=(const SensorProtocol&amp;); public: static SensorProtocol* getInstance(); //miscellaneous system related data to be used for // data acquisition and processing }; </code></pre> <p>In implementation file *.cpp:</p> <pre><code>SensorProtocol* SensorProtocol::s_instance=0; SensorProtocol* SensorProtocol::getInstance() { //DOUBLE CHECKED LOCKING PATTERN I have used singletons // without this overrated pattern also but just fyi if(!s_instance) { mutex.lock(); if(!s_instance) s_instance=new SensorProtocol(); mutex.unlock(); } } </code></pre> <p>Structure of run function</p> <pre><code>while(!mStop) { mutex.lock() while(!WaitCondition.wait(&amp;mutex,5) { if(mStop) return; } //code to read from port when data becomes available // and process it and store in variables mutex.unlock(); } </code></pre> <p>In the action screen class I have define an InputSignalHandler using sigaction and saio. This is a function pointer which is activated as soon as data arrives on any of the serial ports.</p> <p>It is a global function (we cannot change it as it is specific to Linux) which is just used to compare the file descriptors of the serial port where data has arrived and the fd's of the sensor systems, if a match is found WaitCondition.wakeOne is invoked on that thread and it comes out the wait and reads and processes the data. </p> <p>In the action screen class the individual threads are started as <code>SensorProtocol::getInstance()-&gt;start()</code>. </p> <p>Each system's protocol has a frame rate at which it sends data. Based on this fact, in actions screen we set up update timers to time out at refresh rate of protocols. When these timers time out the UpdateSensorProtocol() function of operation screen is called </p> <pre><code>connect(&amp;timer, SIGNAL(timeout), this,SLOT(UpdateSensorProtocol())); </code></pre> <p>This grabs an instance of sensor singleton as </p> <pre><code>SensorProtocol* pSingleton=SensorProtocol::getInstance(); if(pSingleton-&gt;mUpdate) { //update data on action screen GUI pSingleton-&gt;mUpdate=false; //NOTE : this variable is set to // true in the singleton thread // while one frame is processed completely } </code></pre> <p>For all uses of singleton instance <code>SensorProtocol::getInstance()</code> is used. Given the above scenario, One of my protocols is hanging no matter what changes I do.</p> <p>The hang occurs in the while displaying data using UpdateSensorProtocol() If I comment <code>ShowSensorData()</code> function in the <code>UpdateSensorProtocol()</code> it works fine. But otherwise it hangs and the GUI freezes. Any suggestions!</p> <p>Also, Since the main thread grabs the running instance of singleton, is it really multithreading because we are essentially changing mUpdate in singleton itself albeit from action screen.</p> <p>I am confused in this.</p> <p>Also, Can somebody suggest an alternate design as to what I am doing now. </p> <p>Thanks In Advance</p> http://stackoverflow.com/questions/1030567/threading-issues-in-c/1030945#1030945 0 Answer by rocknroll for Threading issues in C++ rocknroll 2009-06-23T06:38:15Z 2009-06-23T06:38:15Z <p>Thank You all for your prompt responses. Wow this is a great place to share your views. I haven't seen so many responses to this problem. Keep the discussion going guys. I have implemented some of your suggestions. Awaiting results. Also, the current design of application was done by my senior. He left and I am being made the scapegoat. But One thing I learned from working on this problem is "Think mighty hard when using the singleton" this should be the last thing in your bag of tricks. Every literature I read on singletons has split verdict. But mostly for C++ singletons I read negative reviews.</p> <p>And yes. Can anyone give me a brief alternative for the sensor protocol and its interaction with GUI thread. </p> http://stackoverflow.com/questions/1320912/how-to-terminate-a-qthread/1321778#1321778 Comment by rocknroll on How to terminate a QThread? rocknroll 2009-09-01T05:11:47Z 2009-09-01T05:11:47Z @Donotalo, Pipes are a form of Interprocess communication (IPC), as the names suggests, it is used to communicate between threads. I used pipes to eliminate certain synchronisation issues that cropped up with the use of singleton pattern(or antipattern I should say :-) ). http://stackoverflow.com/questions/1345115/c-class-design-problem/1345136#1345136 Comment by rocknroll on C++ class design problem rocknroll 2009-08-28T07:22:07Z 2009-08-28T07:22:07Z Singleton, are you crazy? IT will bring with it, its own share of issues. Believe me guys I have used it and it is a pia if threading is also involved. I would never suggest you to use singleton because whatever can be done with singleton can be done without it. Also, it will bring with it problems which will manifest when you expect the least. So if u go ahead with it good luck to u mate! http://stackoverflow.com/questions/1338921/passing-array-of-objects-composed-of-other-objects-as-reference-to-functions-in-c/1339138#1339138 Comment by rocknroll on Passing Array of objects Composed of other objects as reference to Functions In C++? rocknroll 2009-08-27T08:13:02Z 2009-08-27T08:13:02Z @pavel: sorry mate i meant &quot;array of objects&quot; not array of objects to functions. http://stackoverflow.com/questions/1338921/passing-array-of-objects-composed-of-other-objects-as-reference-to-functions-in-c/1339138#1339138 Comment by rocknroll on Passing Array of objects Composed of other objects as reference to Functions In C++? rocknroll 2009-08-27T06:27:36Z 2009-08-27T06:27:36Z @Pavel: I couldn't find declaration of a function which accepts an array of objects to functions, that is one of the questions I have asked? http://stackoverflow.com/questions/1320781/processevents-and-memory-leak/1321003#1321003 Comment by rocknroll on processEvents And Memory Leak? rocknroll 2009-08-25T04:08:01Z 2009-08-25T04:08:01Z thanks for considering my question but it is not about the QTimer object. http://stackoverflow.com/questions/1321407/programming-resources-for-c-in-linux/1321818#1321818 Comment by rocknroll on Programming resources for C++ in Linux rocknroll 2009-08-25T04:04:10Z 2009-08-25T04:04:10Z Why are u surprised AT? The first thing I learned on a Linux machine was vi and I don't think much of myself, so if I can do it, others can surely do much better. http://stackoverflow.com/questions/1320781/processevents-and-memory-leak/1320856#1320856 Comment by rocknroll on processEvents And Memory Leak? rocknroll 2009-08-24T07:14:16Z 2009-08-24T07:14:16Z this cannot be done as I have to continuously send commands to the h/w http://stackoverflow.com/questions/1265169/c-qt-memory-leak/1265201#1265201 Comment by rocknroll on C++/Qt memory Leak? rocknroll 2009-08-12T10:32:39Z 2009-08-12T10:32:39Z I haven't changed default signal slot settings till now, so it is the default setting (which I don't know about, may be it is queued connections). http://stackoverflow.com/questions/1265169/c-qt-memory-leak/1265201#1265201 Comment by rocknroll on C++/Qt memory Leak? rocknroll 2009-08-12T09:56:16Z 2009-08-12T09:56:16Z @Tim In Qt we have only one GUI thread per application. Now if we club the handling of data acquisition with this thread for an external device interface, would this lead to steady increase in memory size or not? Because I am facing such a scenario in an application not developed by my team. An external device interface is clubbed with the main GUI thread. The main GUI also updates when other external devices send data in addition to the device interface which is piggybacking on it. I suspect this design to be the culprit but haven't find a reliable source to corroborate my point http://stackoverflow.com/questions/1265169/c-qt-memory-leak Comment by rocknroll on C++/Qt memory Leak? rocknroll 2009-08-12T09:44:12Z 2009-08-12T09:44:12Z It is different Neil, the earlier question was actually a de-facto memory leak whereas this post was meant to highlight this issue as many people like me won't know that increase in memory size can be due to queuing of signal slot connections. http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt/1258868#1258868 Comment by rocknroll on Hex to String Conversion C++/C/Qt? rocknroll 2009-08-12T06:19:24Z 2009-08-12T06:19:24Z I expect it to print character 1 http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt/1258868#1258868 Comment by rocknroll on Hex to String Conversion C++/C/Qt? rocknroll 2009-08-12T04:59:31Z 2009-08-12T04:59:31Z there in lies the problem jlaep. I wanted 5 after A* and it got printed &quot;.&quot;. Do you understand the issue now. 5 is the checksum which is given as 0x05 but isn't printed http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt Comment by rocknroll on Hex to String Conversion C++/C/Qt? rocknroll 2009-08-11T10:33:21Z 2009-08-11T10:33:21Z @Jla3ep. Ok here is the sample data individual character in hex as the device is sending 49,46,50,4a,4b,51,52,43,2c,31,32,33,2e,34,2c,54,2c,41,2c,2b,33,30,2e,30,30,2c,41,2c,2d,33,30,2e,30,30,2c,41,2a,05,0d,0a The third last byte 05 is checksum which is giving the problem. I collect it in unsigned char buffer and convert this buffer to a QString by casting it to const char*. http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt Comment by rocknroll on Hex to String Conversion C++/C/Qt? rocknroll 2009-08-11T10:11:40Z 2009-08-11T10:11:40Z @Jla3ep I get data on a serial port from where I read it in a unsigned char[FIXED SIZE] buffer. This I convert to a string as mentioned in my post. What I am looking at is a way to eliminate \0 character in my received data or a conversion that doesn't implicitly convert to prepending a \0 before a hex value. http://stackoverflow.com/questions/1258718/hex-to-string-conversion-c-c-qt/1258857#1258857 Comment by rocknroll on Hex to String Conversion C++/C/Qt? rocknroll 2009-08-11T08:39:53Z 2009-08-11T08:39:53Z I checked and text.data() as suggested by you give same issues because it returns a char* or const char*: