User TomiJ - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:10:33Z http://stackoverflow.com/feeds/user/20957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795257/high-speed-tracing/1796440#1796440 2 Answer by TomiJ for high speed tracing TomiJ 2009-11-25T11:46:57Z 2009-11-25T11:46:57Z <p>Somewhat more light-weight than the ARM ETM highlighted by Johan, the <a href="http://www.mipi.org/specs/index.shtml" rel="nofollow">MIPI System Trace Protocol</a> has been designed for just this sort of trace activity. It is designed for instrumentation trace, and typical implementations offer around 500 Mbit/s of trace bandwidth over a four-bit port.</p> <p>However, it is unlikely your board has support for it. :-( Also, you need a trace receiver, which again can cost the price of a small car (Lauterbach have one).</p> http://stackoverflow.com/questions/1783839/wpf-datagrid-empty-row-at-bottom/1785131#1785131 1 Answer by TomiJ for WPF datagrid empty row at bottom TomiJ 2009-11-23T18:44:45Z 2009-11-23T18:44:45Z <p>Sounds like you probably have <code>CanUserAddRows</code> set to true for the DataGrid. Just add</p> <pre><code>CanUserAddRows="false" </code></pre> <p>to the XAML.</p> http://stackoverflow.com/questions/1750390/looping-through-an-image-folder-in-a-wpf-application/1752178#1752178 0 Answer by TomiJ for looping through an image folder in a wpf application TomiJ 2009-11-17T22:04:40Z 2009-11-17T22:04:40Z <p>[Nothing in your question (as it is currently stated) is really directly related to WPF as opposed to C# (and Windows development) in general, as far as I can tell. You might get a better reply if the question was tagged to C# as opposed to just WPF.]</p> <p>I don't think there is a way to reference your solution's folder as such (nor does it really make much sense, as the users of your application won't in general have the solution, only the distributables).</p> <p>If you need the directory to be within your solution folder somehow, maybe you should refer to the directory your executable resides in (<code>...\SolutionDir\bin\Debug</code>), which you can get using</p> <pre><code>System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly() .GetModules()[0].FullyQualifiedName); </code></pre> <p>(Of course, you could tack <code>\..\..</code> to that to refer to the <code>SolutionDir</code> instead, but that'd be a bit ugly.)</p> <p>Depending on the usage of the images, though, it'd probably be better to put them under one of the defined special directories -- <code>Environment.SpecialFolder.CommonApplicationData</code> sounds like the best candidate, if the images are to be shared by all users.</p> http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization 9 Any workarounds for non-static member array initialization? TomiJ 2008-09-23T09:23:51Z 2009-10-13T07:50:06Z <p>In C++, it's not possible to initialize array members in the initialization list, thus member objects should have default constructors and they should be properly initialized in the constructor. Is there any (reasonable) workaround for this apart from not using arrays?</p> <p>[Anything that can be initialized using only the initialization list is in our application far preferable to using the constructor, as that data can be allocated and initialized by the compiler and linker, and every CPU clock cycle counts, even before <code>main</code>. However, it is not always possible to have a default constructor for every class, and besides, reinitializing the data again in the constructor rather defeats the purpose anyway.]</p> <p>E.g. I'd like to have something like this (but this one doesn't work):</p> <pre><code>class OtherClass { private: int data; public: OtherClass(int i) : data(i) {}; // No default constructor! }; class Foo { private: OtherClass inst[3]; // Array size fixed and known ahead of time. public: Foo(...) : inst[0](0), inst[1](1), inst[2](2) {}; }; </code></pre> <p>The only workaround I'm aware of is the non-array one:</p> <pre><code>class Foo { private: OtherClass inst0; OtherClass inst1; OtherClass inst2; OtherClass *inst[3]; public: Foo(...) : inst0(0), inst1(1), inst2(2) { inst[0]=&amp;inst0; inst[1]=&amp;inst1; inst[2]=&amp;inst2; }; }; </code></pre> <p><b>Edit</b>: It should be stressed that <code>OtherClass</code> has no default constructor, and that it is very desirable to have the linker be able to allocate any memory needed (one or more static instances of <code>Foo</code> will be created), using the heap is essentially <i>verboten</i>. I've updated the examples above to highlight the first point.</p> http://stackoverflow.com/questions/910814/loading-xaml-at-runtime/911229#911229 1 Answer by TomiJ for Loading XAML at runtime? TomiJ 2009-05-26T15:15:36Z 2009-05-26T15:15:36Z <p>As Jakob Christensen noted, you can load any XAML you want using <code>XamlReader.Load</code>. This doesn't apply only for styles, but <code>UIElement</code>s as well. You just load the XAML like:</p> <pre><code>UIElement rootElement; FileStream s = new FileStream(fileName, FileMode.Open); rootElement = (UIElement)XamlReader.Load(s); s.Close(); </code></pre> <p>Then you can set it as the contents of the suitable element, e.g. for</p> <pre><code>&lt;Window x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Foo Bar"&gt; &lt;Grid x:Name="layoutGrid"&gt; &lt;!-- any static elements you might have --&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>you could add the <code>rootElement</code> in the <code>grid</code> with:</p> <pre><code>layoutGrid.Children.Add(rootElement); layoutGrid.SetColumn(rootElement, COLUMN); layoutGrid.SetRow(rootElement, ROW); </code></pre> <p>You'll naturally also have to connect any events for elements inside the <code>rootElement</code> manually in the code-behind. As an example, assuming your <code>rootElement</code> contains a <code>Canvas</code> with a bunch of <code>Path</code>s, you can assign the <code>Path</code>s' <code>MouseLeftButtonDown</code> event like this:</p> <pre><code>Canvas canvas = (Canvas)LogicalTreeHelper.FindLogicalNode(rootElement, "canvas1"); foreach (UIElement ui in LogicalTreeHelper.GetChildren(canvas)) { System.Windows.Shapes.Path path = ui as System.Windows.Shapes.Path; if (path != null) { path.MouseLeftButtonDown += this.LeftButtonDown; } } </code></pre> <p>I've not tried switching XAML files on the fly, so I cannot say if that'll really work or not.</p> http://stackoverflow.com/questions/907951/in-xaml-how-can-i-keep-an-ellipse-being-a-circle/908062#908062 1 Answer by TomiJ for In XAML, how can I keep an ellipse being a circle? TomiJ 2009-05-25T21:11:28Z 2009-05-26T14:15:06Z <p>Would a simple <code>Viewbox</code> do the trick? E.g.</p> <pre><code>&lt;Viewbox xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" HorizontalAlignment="Center" VerticalAlignment="Center"&gt; &lt;Canvas Width="100" Height="100"&gt; &lt;Ellipse Fill="Red" Width="100" Height="100" /&gt; &lt;/Canvas&gt; &lt;/Viewbox&gt; </code></pre> <p>The <code>Viewbox</code> will scale its contents to fill the area of the <code>Viewbox</code>, and by default does the scaling proportionally. The specified horizontal and vertical alignments keep the <code>Ellipse</code> centered when it cannot be stretched to the full size (because of the proportional scaling).</p> http://stackoverflow.com/questions/841616/type-of-object-created-by-listcollectionview-addnew 1 Type of object created by ListCollectionView.AddNew TomiJ 2009-05-08T20:20:38Z 2009-05-11T21:34:00Z <p>How does <code>ListCollectionView.AddNew</code> determine the type of object it creates, and how could one affect it?</p> <p>I have a hierarchy of a few types (<code>Base</code>, <code>DerivedA</code>, and <code>DerivedB</code>), and currently my WPF Toolkit <code>DataGrid</code> creates <code>DerivedA</code> objects (why, I don't know -- probably because almost all the data in the grid is of that type), but I'd like it to create <code>DerivedB</code> objects instead.</p> <p><strong>Update</strong>: I've tried deriving a new class from <code>ListCollectionView</code> and implementing a new <code>AddNew</code> method for it, and now I'm almost there: the only remaining problem is that after adding a new item, a new new item placeholder isn't added, so I can only add one item. My current approach looks somewhat like this:</p> <pre><code>public class CustomView : ListCollectionView, IEditableCollectionView { public CustomView(System.Collections.IList list) : base(list) { } object IEditableCollectionView.AddNew() { DerivedB obj = new DerivedB(); InternalList.Add(obj); return obj; } } </code></pre> http://stackoverflow.com/questions/682697/fixed-address-variable-in-c/682956#682956 0 Answer by TomiJ for Fixed address variable in C TomiJ 2009-03-25T18:50:25Z 2009-03-25T18:50:25Z <p>To expand on litb's answer, you can also use the <code>--just-symbols=</code>{symbolfile} option to define several symbols, in case you have more than a couple of memory-mapped devices. The symbol file needs to be in the format</p> <pre><code>symbolname1 = address; symbolname2 = address; ... </code></pre> <p>(The spaces around the equals sign seem to be required.)</p> http://stackoverflow.com/questions/495262/linking-symbols-to-fixed-addresses-on-linux 1 Linking symbols to fixed addresses on Linux TomiJ 2009-01-30T11:47:58Z 2009-01-30T14:19:08Z <p>How would one go about linking (some) symbols to specific fixed addresses using GNU ld so that the binary could still be executed as normal in Linux (x86)? There will not be any accesses to those symbols, but their addresses are important.</p> <p>For example, I'd have the following structure:</p> <pre><code>struct FooBar { Register32 field_1; Register32 field_2; //... }; struct FooBar foobar; </code></pre> <p>I'd like to link <code>foobar</code> to address 0x76543210, but link the standard libraries and the rest of the application normally. The application will then make use of the address of foobar, but will not reference the (possibly non-existent) memory behind it.</p> <p>The rationale for this request is that this same source can be used on two platforms: On the native platform, <code>Register32</code> can simply be a <code>volatile uint32_t</code>, but on Linux <code>Register32</code> is a C++ object with the same size as a <code>uint32_t</code> that defines e.g. <code>operator=</code>, which will then use the address of the object and sends a request to a communication framework with that address (and the data) to perform the actual access on remote hardware. The linker would thus ensure the <code>Register32</code> fields of the struct refer to the correct "addresses".</p> http://stackoverflow.com/questions/495262/linking-symbols-to-fixed-addresses-on-linux/495631#495631 1 Answer by TomiJ for Linking symbols to fixed addresses on Linux TomiJ 2009-01-30T14:19:08Z 2009-01-30T14:19:08Z <p>The suggestion by litb to use <code>--defsym symbol=address</code> does work, but is a bit cumbersome when you have a few dozen such instances to map. However, <code>--just-symbols=symbolfile</code> does just the trick. It took me a while to find out the syntax of the <code>symbolfile</code>, which is</p> <pre><code>symbolname1 = address; symbolname2 = address; ... </code></pre> <p>The spaces seem to be required, as otherwise <code>ld</code> reports <code>file format not recognized; treating as linker script</code>.</p> http://stackoverflow.com/questions/440163/textboxemployeename-vs-employeenametextbox/441419#441419 1 Answer by TomiJ for textBoxEmployeeName vs employeeNameTextBox TomiJ 2009-01-14T00:11:52Z 2009-01-14T00:11:52Z <p>As I read it, an article linked to in the article mentioned in the question (namely, <a href="http://msdn.microsoft.com/en-us/library/ms229037.aspx" rel="nofollow">Names of Resources</a>) does use the control type at the end, in <code>FileMenu</code> (and <code>ArgumentException</code> though it's not a control).</p> <p>My personal opinion is that this is also more readable, as it's the employee name text box and hence should be named the <code>employeeNameTextBox</code>, just like the words "File menu" are read in that order. (Though I substitute "Edit" for "TextBox" for brevity &mdash; I should probably kick that habit to use control names consistently with the environment name for them.)</p> http://stackoverflow.com/questions/145570/what-existing-style-and-coding-standard-documents-should-be-used-on-a-c-project/146549#146549 1 Answer by TomiJ for What existing style and coding standard documents should be used on a C++ project? TomiJ 2008-09-28T19:34:50Z 2008-09-28T19:34:50Z <p>I agree with Harald Scheirich, it is most important to have the team agree on what the rules should be rather than just picking a set that has been recommended by outsiders.</p> <p>My personal recommendation would be to read <a href="http://cc2e.com/" rel="nofollow">Code Complete, 2nd Edition</a> by Steve McConnell which describes (among a whole lot of other useful stuff) several common coding standards and offers commentary on each. This might help your team in setting up your own standards.</p> http://stackoverflow.com/questions/120957/c-usage-in-embedded-systems/126077#126077 0 Answer by TomiJ for C++ usage in embedded systems TomiJ 2008-09-24T08:47:17Z 2008-09-24T08:47:17Z <p>Note that the cost of exceptions depends on your code. In one application I profiled (a relatively small one on ARM968), exception support added 2 % to execution time, and code size was increased by 9.5 KB. In this application, exceptions were thrown only in case something seriously bad happened -- i.e. never in practice -- which kept the execution time overhead very low.</p> http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/1547362#1547362 Comment by TomiJ on Any workarounds for non-static member array initialization? TomiJ 2009-10-12T19:43:27Z 2009-10-12T19:43:27Z Operator new (when used as above) will allocate the new objects on the heap, which was not allowed. http://stackoverflow.com/questions/910814/loading-xaml-at-runtime/911229#911229 Comment by TomiJ on Loading XAML at runtime? TomiJ 2009-05-26T15:36:39Z 2009-05-26T15:36:39Z In the application I'm working on, I just keep the XAML files in the solution and set their Build Action to &quot;none&quot;, and have Visual Studio copy the files to the output directory if newer. The first code snippet above will then be used to load them. http://stackoverflow.com/questions/841616/type-of-object-created-by-listcollectionview-addnew/841652#841652 Comment by TomiJ on Type of object created by ListCollectionView.AddNew TomiJ 2009-05-14T12:27:39Z 2009-05-14T12:27:39Z Where do you mean I should apply the strategy pattern at? Basically add a new Context class which would contain the Base/DerivedA/DerivedB instances and the collection would then contain these? This is a bit awkward. http://stackoverflow.com/questions/841616/type-of-object-created-by-listcollectionview-addnew/841652#841652 Comment by TomiJ on Type of object created by ListCollectionView.AddNew TomiJ 2009-05-11T21:25:18Z 2009-05-11T21:25:18Z I'm not quite there yet, as I can only add <i>one</i> new item, but at least the correct AddNew method gets called. I'll have to figure out what else I need to implement to get proper functionality. http://stackoverflow.com/questions/841616/type-of-object-created-by-listcollectionview-addnew/841652#841652 Comment by TomiJ on Type of object created by ListCollectionView.AddNew TomiJ 2009-05-10T13:25:42Z 2009-05-10T13:25:42Z The article (the original one is at &lt;<a href="http://blogs.msdn.com/vinsibal/archive/2008/05/20/wpf-3-5-sp1-feature-ieditablecollectionview.aspx&gt" rel="nofollow">blogs.msdn.com/vinsibal/archive/&hellip;</a>;) was of some help, as it did set me off looking at <code>ListCollectionView</code>. http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/686574#686574 Comment by TomiJ on Any workarounds for non-static member array initialization? TomiJ 2009-03-29T21:53:22Z 2009-03-29T21:53:22Z I might have read the reply too quickly, but I don't think that'll work since each OtherClass instance needs different parameters to the constructor. http://stackoverflow.com/questions/495262/linking-symbols-to-fixed-addresses-on-linux/495308#495308 Comment by TomiJ on Linking symbols to fixed addresses on Linux TomiJ 2009-01-30T13:17:44Z 2009-01-30T13:17:44Z The ld documentation wasn't very useful, at least with only a few hours' study. I tried adapting the compiler's default linker script, but gave up when I noticed it won't link even with the (unedited) extracted default script (while it of course links ok without a linker script). http://stackoverflow.com/questions/440163/textboxemployeename-vs-employeenametextbox/440505#440505 Comment by TomiJ on textBoxEmployeeName vs employeeNameTextBox TomiJ 2009-01-13T23:46:50Z 2009-01-13T23:46:50Z But won't the suffix work just as well as the prefix for this (particular) purpose? http://stackoverflow.com/questions/120957/c-usage-in-embedded-systems/121830#121830 Comment by TomiJ on C++ usage in embedded systems TomiJ 2008-09-25T09:09:28Z 2008-09-25T09:09:28Z Also, dynamic memory allocation happens at runtime, whereas static memory is allocated by the linker. If it is possible to use mostly static data, this will be much faster (in one application I've been working on, I switched from dynamic to static and got a 50 % reduction in execution time). http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120084#120084 Comment by TomiJ on Any workarounds for non-static member array initialization? TomiJ 2008-09-24T11:50:53Z 2008-09-24T11:50:53Z I made a quick trial changing one class to use placement new, and it did have a negative performance impact: the Foo constructor (which had 10 OtherClass instances in 4 arrays) is roughly 50 % slower now (up from 800 clock cycles to 1200, using <code>armcc -O3 -Otime</code>). This is mostly due to calling new. http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120084#120084 Comment by TomiJ on Any workarounds for non-static member array initialization? TomiJ 2008-09-23T11:14:47Z 2008-09-23T11:14:47Z I've selected this answer, although I'll probably keep my own version in actual use for now, as I think it's more readable and faster, though it does use extra memory for the convenience pointer array. http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120084#120084 Comment by TomiJ on Any workarounds for non-static member array initialization? TomiJ 2008-09-23T10:40:17Z 2008-09-23T10:40:17Z I will have to check the performance of placement new on my platform, but otherwise this looks like a working solution, although it might not be understandable to my colleagues. :-)