User tenpn - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T16:00:03Zhttp://stackoverflow.com/feeds/user/11801http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803101/can-i-link-maxoccurs-in-my-schema-to-a-value-of-another-attribute-in-the-target-x0Can I link maxOccurs in my schema to a value of another attribute in the target xml file?tenpn2009-11-26T11:19:08Z2009-11-26T12:04:42Z
<p>I'm defining an xml schema for a file that looks something like this:</p>
<pre><code><data>
<config><segmentcount value="10"/></config>
<foos>
<foo>
<segments>
<segment data="X"/>
<segment data="X"/>
<segment data="X"/>
<segment data="X"/>
<segment data="X"/>
</segments>
</foo>
<foo>
<segments>
...
</code></pre>
<p>I've already made a schema for the general structure. However I want to enforce that the number of segment elements in segments is always the same as the value attribute of segmentcount. In the maxOccurs attribute of segments, I tried the xpath <code>/aitt:data/aitt:config/aitt:segmentcount[1]@value</code>, but the parser told me than maxOccurs has to be a non-negative int or <code>unbounded</code>. </p>
<p>Is there a trick to do this?</p>
<p>Cheers in advance.</p>
http://stackoverflow.com/questions/1340712/how-to-tdd-functionality-in-a-base-mixin-class-from-one-of-many-leaf-classes1How to TDD functionality in a base mixin class from one of many leaf classes?tenpn2009-08-27T12:19:46Z2009-08-27T12:49:40Z
<p>Hi guys, following on from <a href="http://stackoverflow.com/questions/544472/developing-to-an-interface-with-tdd">this</a> question (Developing to an interface with TDD), I'm still having some issues.</p>
<p>I test-drove two classes into existence, both of which ended up shared some identical functionality. I refactored a common base class into existence, and all the tests still passed. So far, so tdd-tastic.</p>
<p>I needed a third class to implement the base class, so copied some tests into a new fixture and made each one compile and go green in turn, until I had a fully-functional third class. This approach can be debated, because if I didn't copy one test across correctly, or didn't change one successfully to support the new class, I'd be in trouble, but that's not the main problem.</p>
<p>The problem I have now is that I want to add functionality to the base class. It can't be instantiated on its own, so it will have to be through one of the leaf classes. However if I forget to copy the tests across to the other classes, I'll have unsupported functionality. It doesn't seem a very software-engineer-y way of doing things, and I wanted to know where I was going wrong.</p>
<p>Is this a problem with my design? Should I lay my tests out in a different way? Or am I worrying about nothing?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/9272/finding-untracked-files-in-a-perforce-tree/971143#9711434Answer by tenpn for Finding untracked files in a Perforce treetenpn2009-06-09T16:28:42Z2009-06-09T16:28:42Z<p>In the Jan 2009 version of P4V, you can right-click on any folder in your workspace tree and click "reconcile offline work..." </p>
<p>This will do a little processing then bring up a split-tree view of files that are not checked out but have differences from the depot version, or not checked in at all. There may even be a few other categories it brings up. </p>
<p>You can right-click on files in this view and check them out, add them, or even revert them.</p>
<p>It's a very handy tool that's saved my ass a few times.</p>
<p>EDIT: ah the question asked about scripts specifically, but I'll leave this answer here just in case.</p>
http://stackoverflow.com/questions/100654/why-do-some-wav-files-play-in-my-c-directsound-app-but-some-dont1Why do some wav files play in my c# directsound app but some don't?tenpn2008-09-19T09:10:44Z2009-02-17T10:35:14Z
<p>Hi,</p>
<p>I've got a c# application that plays simple wav files through directsound. With the test data I had, the code worked fine. However when I used real-world data, it produced a very unhelpful error on creation of the secondary buffer: "ArgumentException: Value does not fall within the expected range."</p>
<p>The test wavs had a 512kbps bit rate, 16bit audio sample size, and 32kHz audio sample rate. The new wavs is 1152kbps, 24bit and 48kHz respectively. How can I get directsound to cope with these larger values, or if not how can I programatically detect these values before attempting to play the file?</p>
<p>it's managed DirectX v9.00.1126 I'm using, and I've included some sample code below:</p>
<pre><code>using DS = Microsoft.DirectX.DirectSound;
...
DS.Device device = new DS.Device();
device.SetCooperativeLevel(this, CooperativeLevel.Normal);
...
BufferDescription bufferDesc = new BufferDescription();
bufferDesc.ControlEffects = false;
...
try
{
SecondaryBuffer sound = new SecondaryBuffer(path, bufferDesc, device);
sound.Play(0, BufferPlayFlags.Default);
}
...
</code></pre>
<p>Additional info: the real-world wav files won't play in windows media player either, telling me a codec is needed to play the file, while they play fine in winamp.</p>
<p>Additional info 2: Comparing the bytes of the working test data and the bad real-world data, I can see that past the RIFF chunk, the bad data has a "bext" chunk, that the internet informs me is metadata associated with the broadcast audio extension, while the test data goes straight into a fmt chunk. There /is/ a fmt chunk in the bad data, so I don't know if it's badly-formed or if the loaders should be looking further for fmt data. I can see if I can get some information on this rouge bext chunk from the people supplying me the data - if they can remove it my code may still work.</p>
http://stackoverflow.com/questions/491429/how-to-get-the-propertyinfo-of-a-specific-property1how to get the propertyinfo of a specific property?tenpn2009-01-29T12:34:57Z2009-01-29T12:55:58Z
<p>Hi guys, </p>
<p>I want to get the PropertyInfo for a specific property. I could use:</p>
<pre><code>foreach(PropertyInfo p in typeof(MyObject).GetProperties())
{
if ( p.Name == "MyProperty") { return p }
}
</code></pre>
<p>But there must be a way to do something similar to </p>
<pre><code>typeof(MyProperty) as PropertyInfo
</code></pre>
<p>Is there? Or am I stuck doing a type-unsafe string comparison?</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/473790/unobtrusive-loggers-in-c2unobtrusive loggers in c#tenpn2009-01-23T17:33:33Z2009-01-23T22:48:03Z
<p>Hi guys,</p>
<p>I'm rolling my own logger class, and want to represent the heirarchy of logs as the app moves through different phases:</p>
<pre><code>log start
loading
loaded 400 values
processing
couldn't process var "x"
</code></pre>
<p>etc.</p>
<p>In C++ (yes I know), I'd use little classlets that pushed themselves on the log stack when created, and popped off when they left the scope. You could then leave functions at any point and still have consistent logging.</p>
<p>Obviously in C# any variable has to be new'd, so it wouldn't be deleted until the next garbage collection cycle, and if you immediately create a new classlet, you could have an out-of-sync logger.</p>
<p>How would people try to solve this problem in C#? I want the logger syntax to be as unobtrusive to the current function as possible, and still support functions with multiple exit points. </p>
<p>The only solution I can think of off the top of my head involves closeHeirarchy() calls every return statement - and you know I'm going to miss one somewhere.</p>
<p><hr /></p>
<p>Edit: I should make it clear I'm interested mainly in how you would replicate the "classlet" behaviour in c#. Is there a mechanism that provides identical behaviour?</p>
http://stackoverflow.com/questions/468556/recording-all-the-files-in-a-large-directory1recording all the files in a large directorytenpn2009-01-22T09:51:13Z2009-01-22T11:04:27Z
<p>Hi,</p>
<p>I've got a number of directories with a large number of files in them (~10,000). I want to create a list of these files in my app, and have already threaded the io access so that the app doesn't freeze while they load. However if I exit the app before all files are loaded, the thread doesn't respond to the .Join() until the call to dirInfo.GetFiles(...) is completed:</p>
<pre><code>// ... mythread
DirectoryInfo dirInfo = new DirectoryInfo(path);
foreach(FileINfo file in dirInfo.GetFiles(extension))
{
// with large directories, the GetFiles call above
// can stall for a long time
...
</code></pre>
<p>Caching the files out of the foreach just moves the problem. I need some kind of threaded, callback-y way of finding the files in the directory and I'm not sure how to do that. Any help would be appreciated.</p>
<p>Many thanks,
tenpn.</p>
http://stackoverflow.com/questions/412784/c-thread-starts-from-debugger-but-wont-start-stand-alone0c# thread starts from debugger, but won't start stand-alonetenpn2009-01-05T10:53:02Z2009-01-07T11:33:09Z
<p>Hi,</p>
<p>I've got a small app that searches for and stores the names of a large number of files at start-up. I'm splitting this search into several Thread objects that each search one directory, and push results back to the main thread.</p>
<p>When the app loads, I go through each thread and load it:</p>
<pre><code>foreach(Thread t in m_threads)
{
t.Start();
whiel(!t.IsAlive){}
}
</code></pre>
<p>When I begin this app in the debugger, it loads and the threads quickly find all the files. However if I start outside the debugger it freezes. Attaching the debugger to the process I can see that IsAlive never returns true.</p>
<p>I'm new to C# threading so does anyone have any idea what's going wrong, or how I can more easily debug what's happening?</p>
http://stackoverflow.com/questions/412784/c-thread-starts-from-debugger-but-wont-start-stand-alone/412814#4128141Answer by tenpn for c# thread starts from debugger, but won't start stand-alonetenpn2009-01-05T11:08:04Z2009-01-05T11:08:04Z<p>It appears I mis-understood the code I cut-and-paste'd to create my threading code. I assumed the while(!t.isAlive){} line was blocking until the thread could properly start itself, and thought it was necessary administration. </p>
<p>I removed that line and the app launches fine out of the debugger. I join the threads later in the code, so that should be it.</p>
<p>Is there a "NEWB!" tag? :)</p>
http://stackoverflow.com/questions/114149/const-correctness-in-c17"const correctness" in c#tenpn2008-09-22T10:25:31Z2008-11-04T16:13:08Z
<p>Hi,</p>
<p>I'm a heavy C++ user who dabbles in C# in his spare time. I'm also one of those const-correctness nazis and so not being able to do this easily in C# grates a little.</p>
<p>The point of const-correctness is to be able to provide a view of an instance that can't be altered or deleted by the user. The compiler supports this by pointing out when you break constness from within a const function, or try to use a non-const function of a const object. So without copying the const approach, is there a methodology I can use in C# that has the same ends? </p>
<p>I'm aware of immutability, but that doesn't really carry over to container objects to name but one example.</p>
http://stackoverflow.com/questions/211376/function-overloading-fail-why-did-these-operators-clash1function overloading fail: why did these operators clash?tenpn2008-10-17T08:13:00Z2008-10-17T11:35:12Z
<p>Hi,</p>
<p>I've got a big big code base that includes two main namespaces: the engine and the application. </p>
<p>The engine defines a vector3 class as a typedef of another vector3 class, with equality operators that sit in the engine namespace, not in the vector3 class. I added a class to the application that also had equality operators in the application namespace. </p>
<p>When I tried to compile, unrelated but near-by vector3 comparisons failed because it couldn't find an appropriate equality operator. I suspected I was causing a conflict so moved my equality operators into the class I added, and the compile succeeded.</p>
<pre><code>// engine.h
namespace Engine
{
class Vector3Impl { ... };
typedef Vector3Impl Vector3;
bool operator==(Vector3 const &lhs, Vector3 const &rhs) { ... }
}
// myfile.cpp
#include "engine.h"
namespace application
{
class MyClass { ... };
bool operator==(MyClass const &lhs, MyClass const &rhs) { ... }
void myFunc(...)
{
if ( myClassA == myClassB ) { ... } // builds
}
void anotherFunc(...)
{
Engine::Vector3 a, b;
...
if ( a == b ) { ... } // fails
}
}
</code></pre>
<p>However after thinking about it I can't see why the compile failed. There are no implicit conversions from vector3s to my class or vice-versa, and argument-dependent look-up should be pulling in the equality operator from the engine namespace and matching it.</p>
<p>I've tried reproducing this bug in a sample C++ project but that refuses to break. There must be something in the big big code base that is causing this problem, but I'm not sure where to start looking. Something like the opposite of a rogue "using Engine"? Anyone got any ideas?</p>
http://stackoverflow.com/questions/167306/validating-and-adjusting-a-treeview-label0validating and adjusting a treeview labeltenpn2008-10-03T15:03:27Z2008-10-03T15:42:12Z
<p>Hi,</p>
<p>I've got a treeview control, and have caught its after-label-edit event. I want to be able to validate the user's input and adjust it - if for instance it's too long - but I only seem able to cancel the new value, not change it. Any ideas?</p>
<p>I don't want to have to open a new form, the user might be renaming a range of these and it shouldn't be too cumbersome.</p>
<p>Cheers.</p>
http://stackoverflow.com/questions/109275/databinding-a-property-to-either-of-two-dependency-properties1databinding a property to either of two dependency propertiestenpn2008-09-20T20:28:15Z2008-09-30T19:08:48Z
<p>I have two custom controls that are analogous to a node and the control that draws links between nodes. </p>
<p>I would like to have both controls written as much in xaml as possible. The link stores both nodes as dependency properties, and I use databinding to move the line between the nodes whenever the nodes move.</p>
<p>It would be great to be able to change some other value of the line, for instance the stroke width, depending on the distance between the two nodes. So the property needs to update when either node moves, and I can't quite get my head around how that would work.</p>
<p>Anyone got any ideas?</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/107802#107802-3Answer by tenpn for Hidden Features of Visual Studio (2005-2008)?tenpn2008-09-20T10:07:09Z2008-09-20T10:07:09Z<p>Visual Assist, in general, while a bit OT for this question, is a great app and really helps with the day-to-day running of visual studio. Their open-any-file and find-any-symbol windows are particularly awesome.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100477#10047717Answer by tenpn for Hidden Features of Visual Studio (2005-2008)?tenpn2008-09-19T08:25:34Z2008-09-19T08:25:34Z<p>How many times do you debug an array in a quickwatch or a watch window and only have visual studio show you the first element? Add ",N" to the end of the definition to make studio show you the next N items as well. IE "this->m_myArray" becomes "this->m_array,5".</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/92231#922310Answer by tenpn for How do you vent stress as a programmer?tenpn2008-09-18T12:51:13Z2008-09-18T12:51:13Z<p>Second the board-games: it's something that even my video-game averse girlfriend can get into. Carcassone and Settlers of Catan are good starting points.</p>
http://stackoverflow.com/questions/86582/singleton-how-should-it-be-used/92072#920722Answer by tenpn for Singleton: How should it be usedtenpn2008-09-18T12:29:04Z2008-09-18T12:29:04Z<p>Modern C++ Design by Alexandrescu has a thread-safe, inherietence-safe generic singleton.</p>
<p>For my 2p-worth, I think it's important to have defined lifetimes for your singletons (when it's absolutely necessary to use them). I normally don't let the static get() function instantiate anything, and leave set up and destruction to some dedicated section of the main app. This helps highlight dependencies between singletons but as stressed above it's best to just avoid them if possible.</p>
http://stackoverflow.com/questions/82468/perforce-getting-the-file-status-in-the-sandbox/82684#826841Answer by tenpn for Perforce. Getting the file status in the sandbox.tenpn2008-09-17T12:40:43Z2008-09-17T12:40:43Z<p>Not quite sure what you mean. If you are talking about seeing what files need "resolving" (in perforce language) then you can use:</p>
<pre><code>p4 resolve -n
</code></pre>
<p>See the p4 command line manual website here:
<a href="http://www.perforce.com/perforce/doc.current/manuals/cmdref/resolve.html#1040665" rel="nofollow">http://www.perforce.com/perforce/doc.current/manuals/cmdref/resolve.html#1040665</a></p>
<p>Also P4V has a nice feature to highlight unsubmitted and dirty files, if you use that client. Right-click on a fodler in the workspace view, and select "reconcile offline work." After a bit of processing you'll get a list of files that are out of sync with the depot.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1803101/can-i-link-maxoccurs-in-my-schema-to-a-value-of-another-attribute-in-the-target-x/1803304#1803304Comment by tenpn on Can I link maxOccurs in my schema to a value of another attribute in the target xml file?tenpn2009-11-27T15:43:06Z2009-11-27T15:43:06ZBoth the two answers so far are correct, but I'm going to tick this one for the schematron link. Thanks for the info, guys.http://stackoverflow.com/questions/1102628/how-do-i-print-the-character-with-printf/1103153#1103153Comment by tenpn on How do I print the '%' character with 'printf'?tenpn2009-11-06T11:43:34Z2009-11-06T11:43:34Zplus-1 for being sly ;)http://stackoverflow.com/questions/1438842/iterating-through-a-lua-table-from-cComment by tenpn on Iterating through a Lua table from C++?tenpn2009-10-26T09:55:55Z2009-10-26T09:55:55ZGlen Maynard created some useful debug info for visual studio, which makes parsing that lua_State object so much easier. Instructions here: <a href="http://lua-users.org/lists/lua-l/2006-10/msg00491.html" rel="nofollow">lua-users.org/lists/lua-l/…</a>http://stackoverflow.com/questions/1352849/i-cant-seem-to-get-the-xpath-right-for-xsd-uniqe-constraint/1352857#1352857Comment by tenpn on I can't seem to get the XPATH right for XSD UNIQE Constrainttenpn2009-10-22T09:27:32Z2009-10-22T09:27:32ZThanks. My xml schema had set xmlns to be the same as my target xml, which I thought would be enough. I added a sub-namespace (is that what you'd call it?) to the schema and used that for my xpaths and now everything works. \o/http://stackoverflow.com/questions/1352849/i-cant-seem-to-get-the-xpath-right-for-xsd-uniqe-constraint/1352857#1352857Comment by tenpn on I can't seem to get the XPATH right for XSD UNIQE Constrainttenpn2009-10-20T13:33:46Z2009-10-20T13:33:46ZWhere did the mstns come from?http://stackoverflow.com/questions/1340712/how-to-tdd-functionality-in-a-base-mixin-class-from-one-of-many-leaf-classes/1340846#1340846Comment by tenpn on How to TDD functionality in a base mixin class from one of many leaf classes?tenpn2009-08-31T11:11:08Z2009-08-31T11:11:08Z@mark - that's "implementation details": there's only a common base class because of common code. Also it doesn't enforce the behaviors. Someone could update that test and the behaviors would disappear. However I suppose if the behaviors aren't being used by some other tests, or app code, you're not going to miss them.http://stackoverflow.com/questions/1340712/how-to-tdd-functionality-in-a-base-mixin-class-from-one-of-many-leaf-classes/1340846#1340846Comment by tenpn on How to TDD functionality in a base mixin class from one of many leaf classes?tenpn2009-08-28T07:43:25Z2009-08-28T07:43:25ZThis is what I ended up doing, but I still am not happy with the results. If I had to refactor one of my leaf classes to derive from another class, I would lose functionality without the tests telling me so.http://stackoverflow.com/questions/544472/developing-to-an-interface-with-tdd/544495#544495Comment by tenpn on Developing to an interface with TDDtenpn2009-08-27T13:14:01Z2009-08-27T13:14:01Zpulled out my comment into a new question: <a href="http://stackoverflow.com/questions/1340712/how-to-tdd-functionality-in-a-base-mixin-class-from-one-of-many-leaf-classes" rel="nofollow" title="how to tdd functionality in a base mixin class from one of many leaf classes">stackoverflow.com/questions/1340712/…</a>http://stackoverflow.com/questions/544472/developing-to-an-interface-with-tdd/544495#544495Comment by tenpn on Developing to an interface with TDDtenpn2009-08-27T12:03:16Z2009-08-27T12:03:16ZI've still got problems. I've taken the approach of test-driving two identical classes, then refactoring to a common interface. When adding a third class, I cut-n-pasted the tests and made each compile and go green in turn by adding the interface to the class. This is error-prone if my cut-n-pasting goes wrong, but that's not my issue.
Now I'm in the situation where I can use tests to add functionality to the interface from one class, but that functionality will have no tests to support it in the other classes. I have to remember to copy the tests across. This doesn't seem right?http://stackoverflow.com/questions/205529/c-c-passing-variable-number-of-arguments-aroundComment by tenpn on C/C++: Passing variable number of arguments around tenpn2009-02-24T12:18:48Z2009-02-24T12:18:48ZJust to weigh in: I came to this question from google, and because it was stack overflow was highly confident that the answer would be useful.
So ask away!http://stackoverflow.com/questions/491429/how-to-get-the-propertyinfo-of-a-specific-property/491486#491486Comment by tenpn on how to get the propertyinfo of a specific property?tenpn2009-01-29T13:22:41Z2009-01-29T13:22:41ZNice solution but unfortunately I'm not using .NET3.5. Still, tick!http://stackoverflow.com/questions/491429/how-to-get-the-propertyinfo-of-a-specific-property/491456#491456Comment by tenpn on how to get the propertyinfo of a specific property?tenpn2009-01-29T13:22:06Z2009-01-29T13:22:06ZBecause it's not evaluated at compile time? If I changed my property name or typo'd the string I wouldn't know until the code ran.http://stackoverflow.com/questions/473790/unobtrusive-loggers-in-c/473938#473938Comment by tenpn on unobtrusive loggers in c#tenpn2009-01-23T18:26:30Z2009-01-23T18:26:30ZThat's great, thanks. The extra indentiation level is a pain, but acceptable.http://stackoverflow.com/questions/473790/unobtrusive-loggers-in-cComment by tenpn on unobtrusive loggers in c#tenpn2009-01-23T17:52:25Z2009-01-23T17:52:25ZWell yes. But I want to roll it myself to see how C# solves this particular problem, as a learning exercise.http://stackoverflow.com/questions/468563/can-scrum-work-in-the-real-world/468619#468619Comment by tenpn on Can Scrum work in the real worldtenpn2009-01-22T11:28:53Z2009-01-22T11:28:53Zcare to expand on what the pre-reqs are for scrum?