User Lawrence Johnston - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T22:01:19Z http://stackoverflow.com/feeds/user/1512 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144833/most-useful-attributes-in-c/144909#144909 13 Answer by Lawrence Johnston for Most Useful Attributes in C# Lawrence Johnston 2008-09-28T01:00:13Z 2009-12-04T17:11:23Z <p>I've found <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx" rel="nofollow"><code>[DefaultValue]</code></a> to be quite useful.</p> http://stackoverflow.com/questions/1842009/basic-java-threading-issue 4 Basic Java threading issue Lawrence Johnston 2009-12-03T18:45:06Z 2009-12-03T19:55:56Z <p>Lets say I'm interacting with a system that has two incrementing counters which depend on each other (these counters will never decrement): int totalFoos; // barredFoos plus nonBarredFoos int barredFoos;</p> <p>I also have two methods: int getTotalFoos(); // Basically a network call to localhost int getBarredFoos(); // Basically a network call to localhost</p> <p>These two counters are kept and incremented by code that I don't have access to. Let's assume that it increments both counters on an alternate thread but in a thread-safe manner (i.e. at any given point in time the two counters will be in sync).</p> <p>What is the best way to get an accurate count of both barredFoos and nonBarredFoos at a single point in time?</p> <p>The completely naive implementation:</p> <pre><code>int totalFoos = getTotalFoos(); int barredFoos = getBarredFoos(); int nonBarredFoos = totalFoos - barredFoos; </code></pre> <p>This has the issue that the system could increment both counters in between the two method calls and then my two copies would be out of sync and <code>barredFoos</code> would have a value of more than it did when <code>totalFoos</code> was fetched.</p> <p>Basic double-checked implementation:</p> <pre><code>while (true) { int totalFoos = getTotalFoos(); int barredFoos = getBarredFoos(); if (totalFoos == getTotalFoos()) { // totalFoos did not change during fetch of barredFoos, so barredFoos should be accurate. int nonBarredFoos = totalFoos - barredFoos; break; } // totalFoos changed during fetch of barredFoos, try again } </code></pre> <p>This should work in theory, but I'm not sure that the JVM guarantees that this is what actually happens in practice once optimization and such is taken into account. For an example of these concerns, see <a href="http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html" rel="nofollow">http://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html</a> (Link via Romain Muller).</p> <p>Given the methods I have and the assumption above that the counters are in fact updated together, is there a way I can guarantee that my copies of the two counts are in sync?</p> http://stackoverflow.com/questions/1838221/overwrite-project-package-option-in-packagemaker-what-does-it-do 1 "Overwrite Project Package" option in PackageMaker — What does it do? Lawrence Johnston 2009-12-03T07:16:46Z 2009-12-03T07:16:46Z <p>PackageMaker's Project menu contains an "Overwrite Project Package" option.</p> <p>I can't find any documentation of this option, nor any references to it online.</p> <p>Does anybody know what its function is?</p> http://stackoverflow.com/questions/988747/sfauthorizationview-authorize-method-does-not-work 0 SFAuthorizationView authorize: method does not work. Lawrence Johnston 2009-06-12T19:58:21Z 2009-12-01T00:56:06Z <p>I've got an SFAuthoizationView I'm using in my app and I'm trying to call the authorize method from my code to prompt the user to authorize if they currently are not authorized.</p> <p>My issue is that this method does not seem to work!</p> <p>My code is as follows, where <code>authView</code> is the <code>SFAuthorizationView</code> and authorizeMe is the method that gets called when a button is clicked (and the log message does show, so I know it's getting called).</p> <p>If the lock is locked the authorize message just returns false and does not seem to prompt the user for a password.</p> <p>Does anybody know what's up with this?</p> <pre><code>- (void) mainViewDidLoad { [authView setDelegate:self]; [authView setString:"Test String"]; [authView setAutoupdate:YES]; } - (IBAction)authorizeMe:(id)sender { NSLog(@"Authorizing..."); [authView authorize:authView]; } - (void)authorizationViewDidAuthorize:(SFAuthorizationView *)view { self.enabled = YES; } - (void)authorizationViewDidDeauthorize:(SFAuthorizationView *)view { self.enabled = NO; } </code></pre> http://stackoverflow.com/questions/1325406/how-do-i-link-my-executable-to-my-test-bundle-when-debugging-test-using-otest 0 How do I link my executable to my test bundle when debugging test using otest? Lawrence Johnston 2009-08-25T00:07:16Z 2009-11-27T01:00:01Z <p>I'm using kind of a hybrid of Chris Hanson's excellent Xcode unit testing guide.</p> <p>My program is a (command-line) application (which precludes using the executable itself to run the tests), but I need to be able to debug my unit tests.</p> <p>So what I have is as follows:</p> <p>Create test bundle and tests. Create new test target, set bundle loader and test host. Add main target as direct dependency for test target. Create new custom executable otest. Add <code>-SenTest self</code>, <code>MyTestBundle.octest</code>, arguments. Add <code>DYLD_LIBRARY_PATH</code> and <code>DYLD_FRAMEWORK_PATH</code> variables in environment.</p> <p>My issue is that when I now try to debug a test by running the executable, the classes referenced by the tests are not available. For instance if I write a test for class Foo, as soon as I instantiate Foo in my test I get a bad access exception.</p> <p>If I add Foo.m to the test target this goes away, but I'd rather not have to add every class I want to test to the test taget as well as the application target.</p> <p>I assume I just need to add a variable of some sort telling otest where to find the classes in my main executable, but I don't know what the name of this argument would be.</p> <p>Can somebody point me in the right direction for fixing this?</p> http://stackoverflow.com/questions/213798/would-python-make-a-good-substitute-for-the-windows-command-line-batch-scripts 10 Would python make a good substitute for the windows command line/batch scripts? Lawrence Johnston 2008-10-17T20:48:26Z 2009-11-25T00:17:48Z <p>I've got some experience with bash, which I don't mind, but now that I'm doing a lot of windows development I'm needing to do basic stuff/write basic scripts using the windows command line language. For some reason said language really irritates me, so I was considering learning Python and using that instead.</p> <p>So my question is is Python suitable for such things... moving files around, creating scripts to do things like unzipping a backup and restoring a SQL database, etc.</p> http://stackoverflow.com/questions/177135/storing-crystal-reports-in-xml-files 2 Storing Crystal Reports in XML files? Lawrence Johnston 2008-10-07T03:32:09Z 2009-11-24T02:16:27Z <p>I was talking to somebody a recently who mentioned it was possible to store reports created using Crystal Reports as XML files.</p> <p>Upon Googling this, I can't find anything suggesting that this is the case (using <I>data</i> stored in XML in a report, yes, but actually storing the report, the part stored by default as a .rpt file, no.</p> <p>Am I correct in assuming that there was in fact some sort of misunderstanding between us and it in fact not possible to do this?</p> http://stackoverflow.com/questions/142627/tools-for-finding-unused-references 6 Tools for finding unused references Lawrence Johnston 2008-09-27T00:36:49Z 2009-11-13T13:59:35Z <p>Are there any good tools or tricks for determining if there are any referenced but unused dependencies (such as dlls) in a project?</p> <p>My specific case is C# .net3.5. </p> http://stackoverflow.com/questions/338652/how-do-i-get-xcode-to-replicate-project-group-structure-in-the-folder-structure-o 2 How do I get Xcode to replicate project group structure in the folder structure on disk? Lawrence Johnston 2008-12-03T20:57:16Z 2009-11-12T08:34:09Z <p>I have an Xcode project with the following group structure:</p> <pre><code>ProjectName/ Classes/ class1.h class1.m class2.h class2.m ... XMLDocs/ doc1.xml doc2.xml ... Resources/ Info.plist MainMenu.xib ... </code></pre> <p>and so on and so forth.</p> <p>I'd like this to be represented in the folder structure on the disk as well:</p> <pre><code>ProjectFolder/ Project.xcodeproj Classes/ class1.h class1.m class2.h class2.m ... XMLDocs/ doc1.xml doc2.xml ... Resources/ Info.plist MainMenu.xib ... </code></pre> <p>as opposed to the usual everything in the root project folder methodology.</p> <p>Is there any way to do this without manually creating the folder structure on the disk and then having to repoint all the reference in Xcode to the new location?</p> <p>Bonus points if you can tell me how to do this automatically any time I create a new group or add files to an existing group in Xcode.</p> http://stackoverflow.com/questions/364655/how-do-i-use-my-standard-python-path-when-running-python-scripts-from-xcode-macro 3 How do I use my standard python path when running python scripts from xcode macros Lawrence Johnston 2008-12-13T01:50:38Z 2009-11-06T03:28:58Z <p>I'm trying to run Python scripts using Xcode's User Scripts menu.</p> <p>The issue I'm having is that my usual os.sys.path (taken from ~/.profile) does not seem to be imported when running scripts from XCode the way it is when running them at the Terminal (or with IPython). All I get is the default path, which means I can't do things like</p> <pre><code>#!/usr/bin/python import myScript myScript.foo() </code></pre> <p>Where myScript is a module in a folder I've added to my path.</p> <p>I can append a specific path to os.sys.path manually easily enough, but I have to do it in every single script for every single path I want to use modules from</p> <p>Is there a way to set this up so it uses the same path I use everywhere else?</p> <p>EDIT: After looking into things a bit more, it seems like scripts executed from Xcode use a completely different PATH than normal. The path I get by running a script in Xcode is:</p> <pre><code>PATH=/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin </code></pre> <p>and I'm sure my regular path doesn't have /Developer/usr/bin in it. Does anybody have any idea where this path is coming from?</p> http://stackoverflow.com/questions/1663453/how-do-i-reset-the-result-for-a-property-in-a-stub-without-resetting-the-entire-s 0 How do I reset the result for a property in a stub without resetting the entire stub? Lawrence Johnston 2009-11-02T20:22:42Z 2009-11-04T02:10:43Z <p>I'm new to Rhino Mocks, so I may be missing something completely.</p> <p>Lets say I have an interface with has a half dozen properties:</p> <pre><code>public interface IFoo { string Foo1 { get; } // Required non-null or empty string Foo2 { get; } // Required non-null or empty string Foo3 { get; } string Foo4 { get; } int Foo5 { get; } int Foo6 { get; } } </code></pre> <p>And an implementation which takes a similar object but without the same constraints and creates an IFoo instance:</p> <pre><code>public interface IFooLikeObject { string FooLikeObject1 { get; } // Okay non-null or empty string FooLikeObject2 { get; } // Okay non-null or empty string FooLikeObject3 { get; } string FooLikeObject4 { get; } string FooLikeObject5 { get; } // String here instead of int string FooLikeObject6 { get; } // String here instead of int } public class Foo : IFoo { public Foo(IFooLikeObject fooLikeObject) { if (string.IsNullOrEmpty(fooLikeObject.Foo1)) { throw new ArgumentException("fooLikeObject.Foo1 is a required element and must not be null.") } if (string.IsNullOrEmpty(Foo2)) { throw new ArgumentException("fooLikeObject.Foo2 is a required element and must not be null") } // Make all the assignments, including conversions from string to int... } } </code></pre> <p>Now in my tests I want to test both that the exceptions are thrown at the proper times and also the exceptions thrown during failed conversions from string to int.</p> <p>So I need too stub out IFooLikeObject to return valid values for the values I'm not currently testing, and since I don't want to duplicate this code in every test method I extract it out into a seperate method.</p> <pre><code>public IFooLikeObject CreateBasicIFooLikeObjectStub(MockRepository mocks) { IFooLikeObject stub = mocks.Stub&lt;IFooLikeObject&gt;(); // These values are required to be non-null SetupResult.For(stub.FooLikeObject1).Return("AValidString"); SetupResult.For(stub.FooLikeObject2).Return("AValidString2"); SetupResult.For(stub.FooLikeObject5).Return("1"); SetupResult.For(stub.FooLikeObject6).Return("1"); } </code></pre> <p>This works well enough for testing Foo3 and Foo4, but when testing Foo1, 2, 5, or 6 I get: </p> <pre><code>System.InvalidOperationException : The result for IFooLikeObject.get_FooLikeObject1(); has already been setup. Properties are already stubbed with PropertyBehavior by default, no action is required </code></pre> <p>For example:</p> <pre><code>[Test] void Constructor_FooLikeObject1IsNull_Exception() { MocksRepository mocks = new MocksRepository(); IFooLikeObject fooLikeObjectStub = CreateBasicIFooLikeObjectStub(mocks); // This line causes the exception since FooLikeObject1 has already been set in CreateBasicIFooLikeObjectStub() SetupResult.For(fooLikeObjectStub.FooLikeObject1).Return(null); mocks.ReplayAll(); Assert.Throws&lt;ArgumentException&gt;(delegate { new Foo(fooLikeObjectStub); }); } </code></pre> <p>How can I set it up so that I can override an individual property which already has a return value set up without having to redo all the others as well?</p> http://stackoverflow.com/questions/1663453/how-do-i-reset-the-result-for-a-property-in-a-stub-without-resetting-the-entire-s/1671338#1671338 0 Answer by Lawrence Johnston for How do I reset the result for a property in a stub without resetting the entire stub? Lawrence Johnston 2009-11-04T02:10:43Z 2009-11-04T02:10:43Z <p>This can be done using the <code>Repeat.Any()</code> construct.</p> <p>I have not tested this using the SetupResult.For Syntax, but it works with the lambda syntax:</p> <pre><code>public IFooLikeObject CreateBasicIFooLikeObjectStub(MockRepository) { IFooLikeObject stub = MockRepository.GenerateStub&lt;IFooLikeObject&gt;(); // These values are required to be non-null stub.Stub(s =&gt; s.FooLikeObject1).Return("AValidString"); stub.Stub(s =&gt; s.FooLikeObject2).Return("AValidString2"); stub.Stub(s =&gt; s.FooLikeObject5).Return("1"); stub.Stub(s =&gt; s.FooLikeObject6).Return("1"); } [Test] void Constructor_FooLikeObject1IsNull_Exception() { IFooLikeObject fooLikeObjectStub = CreateBasicIFooLikeObjectStub(); // This line no longer causes an exception stub.Stub(s =&gt; s.FooLikeObject1).Return(null).Repeat.Any(); // The Repeat.Any() is key. Otherwise the value wont be overridden. Assert.Throws&lt;ArgumentException&gt;(delegate { new Foo(fooLikeObjectStub); }); } </code></pre> <p>The only caveat I've found is you can't do it twice.</p> http://stackoverflow.com/questions/1640312/will-i-have-any-issues-using-a-ppc-mac-mini-as-a-build-machine-for-a-10-5-applic 0 Will I have any issues using a PPC Mac Mini as a build machine for a 10.5+ application while developing on Snow Leopard? Lawrence Johnston 2009-10-28T21:43:39Z 2009-10-29T04:38:11Z <p>We develop using Xcode 3.2 on Snow Leopard. The application we're developing however targets 10.5+ (Leopard).</p> <p>I'm looking at setting up a continuous integration server (via CruiseControl).</p> <p>I have an old PPC Mac Mini around. I realize that it will only run 10.5 with Xcode 3.1.3.</p> <p>Am I likely to have any luck setting the Mini up as the integration server, or am I likely to run in to too many issues to make it worth the hassle and thus be better off campaigning for an Intel machine?</p> <p>Some things I'm considering:</p> <ul> <li>If we start developing iPhone apps we'll be unable to build them on the PPC Mini.</li> <li>XCode project files will need to remain 3.1 compatible.</li> <li>I believe PackageMaker received an update in 10.6 as well. I'm not sure if the updated .pmproj file is backwards compatible.</li> </ul> http://stackoverflow.com/questions/535037/visual-studio-isnt-generating-code-to-instantiate-instance-of-custom-control 0 Visual Studio isn't generating code to instantiate instance of custom control Lawrence Johnston 2009-02-11T01:07:27Z 2009-10-23T14:43:51Z <p>I've created a custom control using C#, .Net3.5, and Visual Studio 2008.</p> <p>I'm then adding that control to another control by dragging it from the toolbox.</p> <p>After doing this when I try to compile I get an error as follows:</p> <pre><code>Error 1 Warning as Error: Field 'MyNamespace.MyControl._myCustomControl' is never assigned to, and will always have its default value null </code></pre> <p>Looking at the Designer.cs file this is due to the fact that VS never generates the following code:</p> <pre><code>this._rgReportGallery = new MyNameSpace.MyCustomControl(); </code></pre> <p>The field itself is there, and the code to add it to the control I'm putting it in, just the instantiation code is missing.</p> <p>I can add that code manually and everything seems to work, but as soon as the designer.cs file is regenerated it goes missing again.</p> <p>I've even successfully added a different custom control and had that code get generated.</p> <p>Does anybody know what could be causing this?</p> http://stackoverflow.com/questions/338103/how-do-i-use-ipython-as-my-emacs-python-interpreter 2 How do I use IPython as my emacs python interpreter Lawrence Johnston 2008-12-03T17:56:57Z 2009-10-22T13:31:59Z <p>I'm running Emacs 22.1.1 and IPython 0.9.1 on OS X and I'd like to be able to run lines/methods/snippets of Python code from my current buffer on demand inside an IPython interpreter.</p> <p>What do I need to do to get this working?</p> http://stackoverflow.com/questions/1151393/xcode-script-for-generating-synthesizing-properties 3 Xcode script for generating/synthesizing properties Lawrence Johnston 2009-07-20T01:27:12Z 2009-10-14T15:54:34Z <p>Does anybody have an Xcode script for generating @property and @synthsize directives for instance variables in a class?</p> http://stackoverflow.com/questions/1151393/xcode-script-for-generating-synthesizing-properties/1151399#1151399 1 Answer by Lawrence Johnston for Xcode script for generating/synthesizing properties Lawrence Johnston 2009-07-20T01:30:00Z 2009-10-14T15:54:34Z <p>This is the one I came up with based on one I found a long time ago, rewritten in Python and with the improvements that it can generate multiple properties at once, among other things.</p> <p>It will generate properties for all selected instance variable using (copy) as the attribute. </p> <p>There are still some edge cases with multiple @interfaces or @implementations in a file, as well as some with unusual identifiers or asterisk placement (as in *const), but it should cover most typical coding styles. Feel free to edit/post modifications if you fix any of these cases.</p> <pre><code>#!/usr/bin/python # Takes a header file with one or more instance variables selected # and creates properties and synthesize directives for the selected properties. # Accepts google-style instance variables with a tailing underscore and # creates an appropriately named property without underscore. # Entire Document # Home Directory # Discard Output # Display in Alert import os import re import subprocess # AppleScripts for altering contents of files via Xcode setFileContentsScript = """\ on run argv set fileAlias to POSIX file (item 1 of argv) set newDocText to (item 2 of argv) tell application "Xcode" set doc to open fileAlias set text of doc to newDocText end tell end run \ """ getFileContentsScript = """\ on run argv set fileAlias to POSIX file (item 1 of argv) tell application "Xcode" set doc to open fileAlias set docText to text of doc end tell return docText end run \ """ # Get variables from Xcode headerFileText = """%%%{PBXAllText}%%%""" selectionStartIndex = %%%{PBXSelectionStart}%%% selectionEndIndex = %%%{PBXSelectionEnd}%%% selectedText = headerFileText[selectionStartIndex:selectionEndIndex] headerFilePath = """%%%{PBXFilePath}%%%""" # Look for an implementation file with .m or .mm extension implementationFilePath = headerFilePath[:-1] + "m" if not os.path.exists(implementationFilePath): implementationFilePath += "m" instanceVariablesRegex = re.compile( """^\s*((?:(?:\w+)\s+)*(?:(?:\w+)))""" + # Identifier(s) """([*]?)\\s*""" + # An optional asterisk """(\\w+?)(_?);""", # The variable name re.M) # Now for each instance variable in the selected section properties = "" synthesizes = "" for lineMatch in instanceVariablesRegex.findall(selectedText): types = " ".join(lineMatch[0].split()) # Clean up consequtive whitespace asterisk = lineMatch[1] variableName = lineMatch[2] trailingUnderscore = lineMatch[3] pointerPropertyAttributes = "(copy) " # Attributes if variable is pointer if not asterisk: pointerPropertyAttributes = "" newProperty = "@property %s%s %s%s;\n" % (pointerPropertyAttributes, types, asterisk, variableName) # If there's a trailing underscore, we need to let the synthesize # know which backing variable it's using newSynthesize = "@synthesize %s%s;\n" % (variableName, trailingUnderscore and " = %s_" % variableName) properties += newProperty synthesizes += newSynthesize # Check to make sure at least 1 properties was found to generate if not properties: os.sys.stderr.writelines("No properties found to generate") exit(-1) # We want to insert the new properties either immediately after the last # existing property or at the end of the instance variable section findLastPropertyRegex = re.compile("^@interface.*?{.*?}.*?\\n" + "(?:.*^\\s*@property.*?\\n)?", re.M | re.S) headerInsertIndex = findLastPropertyRegex.search(headerFileText).end() # Add new lines on either side if this is the only property in the file addedNewLine = "\n" if re.search("^\s*@property", headerFileText, re.M): # Not the only property, don't add addedNewLine = "" newHeaderFileText = "%s%s%s%s" % (headerFileText[:headerInsertIndex], addedNewLine, properties, headerFileText[headerInsertIndex:]) subprocess.call(["osascript", "-e", setFileContentsScript, headerFilePath, newHeaderFileText]) if not os.path.exists(implementationFilePath): os.sys.stdout.writelines("No implementation file found") exit(0) implementationFileText = subprocess.Popen( ["osascript", "-e", getFileContentsScript, implementationFilePath], stdout=subprocess.PIPE).communicate()[0] # We want to insert the synthesizes either immediately after the last existing # @synthesize or after the @implementation directive lastSynthesizeRegex = re.compile("^\\s*@implementation.*?\\n" + "(?:.*^\\s*@synthesize.*?\\n)?", re.M | re.S) implementationInsertIndex = \ lastSynthesizeRegex.search(implementationFileText).end() # Add new lines on either side if this is the only synthesize in the file addedNewLine = "\n" if re.search("^\s*@synthesize", implementationFileText, re.M): # Not the only synthesize, don't add addedNewLine = "" newImplementationFileText = "%s%s%s%s" % \ (implementationFileText[:implementationInsertIndex], addedNewLine, synthesizes, implementationFileText[implementationInsertIndex:]) subprocess.call(["osascript", "-e", setFileContentsScript, implementationFilePath, newImplementationFileText]) # Switch Xcode back to header file subprocess.Popen(["osascript", "-e", getFileContentsScript, headerFilePath], stdout=subprocess.PIPE).communicate() </code></pre> http://stackoverflow.com/questions/1033849/what-are-some-good-xcode-scripts-to-speed-up-development 8 What are some good Xcode scripts to speed up development? Lawrence Johnston 2009-06-23T16:55:38Z 2009-10-04T13:33:40Z <p>Xcode allows you to create automated scripts for performing repetitive tasks. What scripts have you written to speed up development?</p> http://stackoverflow.com/questions/1473810/how-do-i-enforce-a-timeout-on-a-webservice-call-using-ksoap-2 0 How do I enforce a timeout on a webservice call using ksoap 2? Lawrence Johnston 2009-09-24T19:53:01Z 2009-09-25T19:59:34Z <p>I need to add a timeout to a J2ME application that uses ksoap 2 to connect to a web service.</p> <p>I've tried the method described as a possible pseudo timeout at <a href="http://ksoap2.sourceforge.net/doc/api/org/ksoap2/transport/HttpTransport.html" rel="nofollow">http://ksoap2.sourceforge.net/doc/api/org/ksoap2/transport/HttpTransport.html</a>, but it doesn't seem to function on this device.</p> <p>I'd run the connection on another thread and kill it if a timer fires but there's no way to kill a thread before it finishes executing in J2ME per <a href="http://developers.sun.com/mobility/midp/articles/threading2/" rel="nofollow">http://developers.sun.com/mobility/midp/articles/threading2/</a> (this is an embedded device, so I can't just leave an indefinite number of threads blocking in the background). I can't use the poll a boolean method since it's the single attempt to open the connection that blocks.</p> <p>The system timeout seems to vary between device modal and is too long for my purposes.</p> <p>Does anybody have any thoughts as to something that might work?</p> http://stackoverflow.com/questions/1473810/how-do-i-enforce-a-timeout-on-a-webservice-call-using-ksoap-2/1479292#1479292 0 Answer by Lawrence Johnston for How do I enforce a timeout on a webservice call using ksoap 2? Lawrence Johnston 2009-09-25T19:59:34Z 2009-09-25T19:59:34Z <p>I ended up using the Socket class which has the setSoTimeout() method.</p> http://stackoverflow.com/questions/13449/is-there-a-good-gui-svn-app-for-mac-better-than-xcode 4 Is there a good GUI SVN app for Mac (better than XCode) Lawrence Johnston 2008-08-17T01:14:28Z 2009-09-24T21:11:05Z <p>Hey everybody,</p> <p>I'm looking for a more robust and fully featured GUI SVN manager for Mac than what is built into XCode (which works, but only as long as you don't need anything beyond the bare basics and doesn't work for versioning scripts and such created in other editors). </p> <p>I can use the terminal commands, but I'd really like the option of using a GUI.</p> <p>On windows I use TortoiseSVN and Visual SVN, which do pretty much everything I need, but as far as I'm aware there's nothing even remotely resembling those on the Mac side.</p> http://stackoverflow.com/questions/1466791/how-to-code-a-method-function-or-variable-in-objective-c/1466916#1466916 1 Answer by Lawrence Johnston for How to code a method, function or variable in Objective - C Lawrence Johnston 2009-09-23T15:55:18Z 2009-09-23T15:55:18Z <p>I would highly recommend the book <a href="http://rads.stackoverflow.com/amzn/click/0321566157" rel="nofollow">Programming in Objective-C 2.0</a> by Stephen Kochan.</p> <p>I used the older version when I was learning Objective-C and still reference it on occasion. It is an excellent introduction to the basics of the language.</p> http://stackoverflow.com/questions/44100/best-way-to-use-a-property-to-reference-a-key-value-pair-in-a-dictionary 2 Best way to use a property to reference a Key-Value pair in a dictionary Lawrence Johnston 2008-09-04T16:15:13Z 2009-09-19T00:57:26Z <p>This is a fairly trivial matter, but I'm curious to hear people's opinions on it.</p> <p>If I have a Dictionary which I'm access through properties, which of these formats would you prefer for the property?</p> <pre><code>/// &lt;summary&gt; /// This class's FirstProperty property /// &lt;/summary&gt; [DefaultValue("myValue")] public string FirstProperty { get { return Dictionary["myKey"]; } set { Dictionary["myKey"] = value; } </code></pre> <p>This is probably the typical way of doing it. It's fairly efficient, easy to understand, etc. The only disadvantage is with a longer or more complex key it would be possible to misspell it or change only one instance or something, leading me to this:</p> <pre><code>/// &lt;summary&gt; /// This class's SecondProperty property /// &lt;/summary&gt; [DefaultValue("myValue")] private const string DICT_MYKEY = "myKey" public string SecondProperty { get { return Dictionary[DICT_MYKEY]; } set { Dictionary[DICT_MYKEY] = value; } </code></pre> <p>Which is marginally more complicated, but seems to offer additional safety, and is closer to what I would think of as the "Code Complete" solution. The downside is that when you also have a /// block and a [DefaultValue()] block above the property already, it starts getting a bit crowded up there.</p> <p>So which do you like better, and why? Does anybody have any better ideas?</p> http://stackoverflow.com/questions/1440230/how-do-i-tell-when-a-cups-print-jobs-has-been-completed-plus-info-about-that-job 0 How do I tell when a CUPS print jobs has been completed plus info about that job? Lawrence Johnston 2009-09-17T17:30:36Z 2009-09-17T18:00:16Z <p>I need to know each time a Mac print job is created/completed, plus some information about that job (what was printed, pages, copies, etc).</p> <p>The best method I've come up with thus far is to use kqueue() on /var/spool/cups/ and then parse the c##### files as they're created, but I'm wondering if there's a better way.</p> http://stackoverflow.com/questions/1121253/is-a-launchd-daemon-the-best-route-to-go-for-reading-writing-to-privileged-files 1 Is a launchd daemon the best route to go for reading/writing to privileged files in Cocoa? Lawrence Johnston 2009-07-13T18:33:52Z 2009-09-16T21:32:01Z <p>I have an application which needs to be able to write to Any User/Current host preference files (which requires admin privileges per Preferences Utilities Reference) and also to enable/disable a launchd agent via its plist (writable only by root). </p> <p>I'm using <code>SFAuthorizationView</code> to require users to authenticate as an admin before altering these values.</p> <p>I'm trying to decide on the best way to do the actual altering of these values.</p> <p>The cheap hackish option seems to be to use <code>AuthorizationExecuteWithPrivileges()</code> and <code>mv</code> or <code>defaults</code>, either via BLAuthentication or creating something similar myself. The downside to this is not getting the return value of whatever command line app I'm executing, plus some odd esoteric bugs I've encountered (such as getting a -60008 error in certain situations). This is strongly recommended against by Apple, obviously, but people do seem to do it and have some success with it.</p> <p>The second most hackish option would seem to be the whole create a helper app with the suid bit set and the <code>--self-repair</code> option as discussed in various places. This seems possible, but like it's probably not much less trouble than the third option.</p> <p>The third option is to create a fully fledged <code>launchd</code> daemon which will run as root and communicate with my application via a socket. This seems like a bit of overkill to read and write some plist files, but it's also possible I may find other uses for it down the road, and it wont be the only daemon for my application, so it doesn't seem unreasonable to just add another.</p> <p>I'm thinking about modifying this <a href="http://www.gigabytes.it/2009/05/mac-os-x-authorization-services/" rel="nofollow">sample code</a> for my purposes.</p> <p>My two questions are:</p> <ol> <li><p>Does the launchd daemon option seem like the best route to go for this, or is there a much easier route I'm missing?</p></li> <li><p>Has anybody else successfully used that code as a basis for something similar, and does anybody see any glaring issues with it I'm missing? I've used it successfully in a test app, but I'd be curious to hear you guys' opinion on it.</p></li> </ol> http://stackoverflow.com/questions/1412075/log-file-rollover-when-logging-to-file-using-google-toolbox-for-mac 0 Log file rollover when logging to file using Google toolbox for Mac Lawrence Johnston 2009-09-11T16:50:08Z 2009-09-13T02:43:13Z <p>I'm using Google toolbox for Mac's GTMLogger to do logging to file in the app I'm working on.</p> <p>I'm trying to decide how to do log file rollover when the file gets large enough.</p> <p>Ideally I would like something like log4net's immediate rollover when the log file hits 1 mb with max 11 log files at any one time, but I don't see any built-in way to do this and I'm wondering if trying to add it is more trouble than it's worth.</p> <p>The somewhat simpler option I can think of is just doing this check on app start-up and rolling over the log it it's over a certain size. The downside to this is of course if somebody leaves the app running for a week or two (and since a portion of the app is a launchd daemon this is a definite possibility for those who rarely restart), there could be a log file of non-trivial size built up during this period (depending on what logging level is enabled).</p> <p>What's going to be my best option here?</p> http://stackoverflow.com/questions/1369809/execbadaccess-when-using-nsoperation/1369886#1369886 0 Answer by Lawrence Johnston for EXEC_BAD_ACCESS when using NSOperation Lawrence Johnston 2009-09-02T20:15:46Z 2009-09-02T20:15:46Z <p>In addition to the lack of <code>[super init]</code> mentioned above, it doesn't look like you are retaining <code>filename</code> in <code>initWithContentsOfFile:</code>. This could cause problems if <code>filename</code> is released elsewhere and deallocated before the operation executes.</p> http://stackoverflow.com/questions/1331500/persisting-items-being-uploaded-via-web-service-to-disk 1 Persisting items being uploaded via web service to disk Lawrence Johnston 2009-08-25T23:04:00Z 2009-08-25T23:30:47Z <p>I have a launchd daemon that every so often uploads some data via a web service using NSOperationQueue.</p> <p>I need to be able to persist this data, both so that it can later be re-uploaded in the event of failure, even between sessions (in case of computer shut down, for example).</p> <p>This is not a high load application, it probably receives items intermittently no more than 1 or 2 every minute, often with several hour gaps in between.</p> <p>My initial implementation without this persistence in place is as follows:</p> <ol> <li>Daemon receives data.</li> <li>Daemon parses data into an object of type MyDataObject.</li> <li>Daemon creates instance of NSOperation subclass with MyDataObject as the object to upload and adds it to its NSOperationQueue.</li> <li>NSOperationQueue goes through and uploads MyDataObject via web service as it is able.</li> </ol> <p>This part all functions just fine. The part I now want to add is the persistence in case of web service failure, computer shut down, etc.</p> <p>It seems like I could use an NSMutableArray of MyDataObjects along with NSKeyed(Un)archiver containing all the items which had not yet been uploaded and observation of the -isFinished key of all the operations to remove items from the array, but it seems like there should be a simpler way to do is, with less room for things to go wrong, especially as far as thread safety goes.</p> <p>Can somebody point me in the right direction?</p> http://stackoverflow.com/questions/299617/is-there-an-objective-c-wrapper-for-gsoap 0 Is there an Objective-C Wrapper for gSOAP? Lawrence Johnston 2008-11-18T18:11:10Z 2009-08-25T23:10:16Z <p>I'm going to use gSOAP to interact with a WCF webservice in my Mac project. It does pretty much exactly what I need and it does it well (pretty much the exact opposite of WSMakeStubs;)). The only downside is that it's C/C++ only, meaning I either need to convert all my types into C types on the fly or write a complete wrappering solution to do it for me.</p> <p>I'd rather not reinvent the wheel here, and I'm <a href="http://blog.phanfare.com/2005/10/web-service-integration-mac-vs-pc/" rel="nofollow">obviously</a> not the <a href="http://markmail.org/message/26pp6uumbgloo6hn#query:gSOAP%20objective-C+page:1+mid:adprnpvfghqzmeoy+state:results" rel="nofollow">only</a> <a href="http://www.cocoabuilder.com/archive/message/cocoa/2005/3/14/130417" rel="nofollow">one</a> who has wanted to do this, but so far I haven't been able to find anybody who has actually posted any code to this effect.</p> <p>Does anybody know of any code available that would save me from having to write the whole thing myself?</p> http://stackoverflow.com/questions/299617/is-there-an-objective-c-wrapper-for-gsoap/1331526#1331526 0 Answer by Lawrence Johnston for Is there an Objective-C Wrapper for gSOAP? Lawrence Johnston 2009-08-25T23:10:16Z 2009-08-25T23:10:16Z <p>I'd say the current answer is "No".</p> http://stackoverflow.com/questions/144833/most-useful-attributes-in-c/144909#144909 Comment by Lawrence Johnston on Most Useful Attributes in C# Lawrence Johnston 2009-12-04T17:12:42Z 2009-12-04T17:12:42Z That's the one I meant, yes. Edited the url to reflect this. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842224#1842224 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T20:42:04Z 2009-12-03T20:42:04Z Interesting point. I'll look into it. http://stackoverflow.com/questions/1842009/basic-java-threading-issue Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:51:17Z 2009-12-03T19:51:17Z @Joel No problem. Thanks for all your input on the subject. http://stackoverflow.com/questions/1842009/basic-java-threading-issue Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:47:02Z 2009-12-03T19:47:02Z @Joel totalFoos is barredFoos plus nonBarredFoos. barredFoos and nonBarredFoos only increment, never decrement. Therefore when the value of barredFoos changes, totalFoos must change as well. barredFoos + nonBarredFoos != (barredFoos + 1) + nonBarredFoos http://stackoverflow.com/questions/1842009/basic-java-threading-issue Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:44:33Z 2009-12-03T19:44:33Z @gab Yes. Ensuring that the two values that it has received correspond to each other is precisely the issue at hand. The reason I believe this is a threading issue it because it is definitely not guaranteed that they will correspond over several network calls (another thread could have changed the values in between the two methods executing), and it may not be guaranteed in the latter example that the methods will execute in order once JVM optimizations have been taken into account. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842128#1842128 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:17:00Z 2009-12-03T19:17:00Z Will wrapping either the two network calls in synchronized methods or the method which calls the two methods really guarantee that the methods are called in order? As far as I'm aware they wont. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842058#1842058 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:11:38Z 2009-12-03T19:11:38Z @Chad Okere if I had control of the code I'd just make a single method that returns both values (and also ensure that both values were updated at the same time), thus avoiding the whole situation. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842128#1842128 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:09:58Z 2009-12-03T19:09:58Z @Steve Emmerson Thank you, that was exactly the kind of thing I was concerned about. Is there anyway to insure that they do happen in the proper sequence? http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842128#1842128 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:09:03Z 2009-12-03T19:09:03Z Thanks for the input. In the actual implementation I am taking the possible infinite loop into account. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842147#1842147 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:06:29Z 2009-12-03T19:06:29Z Unfortunately, this is a situation where the system maintaining the counters is not controlled by my company. http://stackoverflow.com/questions/1842009/basic-java-threading-issue Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T19:01:47Z 2009-12-03T19:01:47Z @RomainMuller thanks for the link. That's exactly the sort of thing I was referring to in my concerns about the latter sample above. http://stackoverflow.com/questions/1842009/basic-java-threading-issue/1842037#1842037 Comment by Lawrence Johnston on Basic Java threading issue Lawrence Johnston 2009-12-03T18:59:40Z 2009-12-03T18:59:40Z Exactly meriton. And I also have to have the result from both methods at what is essentially the same point in time (it doesn't matter precisely what point in time, just that it's the same for both variables). `totalFoo`s can't change before I access `barredFoo`s, otherwise the subtraction to find `nonBarredFoo`s will be thrown off. http://stackoverflow.com/questions/988747/sfauthorizationview-authorize-method-does-not-work/1823226#1823226 Comment by Lawrence Johnston on SFAuthorizationView authorize: method does not work. Lawrence Johnston 2009-12-01T23:03:58Z 2009-12-01T23:03:58Z One thing to note is that if you just need to check to see if the user is authorized (not actually unlock the lock) you can use <code>AuthorizationCopyRights([[authorizationView authorization] authorizationRef], [authorizationView authorizationRights], kAuthorizationEmptyEnvironment, kAuthorizationFlagDefaults | kAuthorizationFlagExtendRights | kAuthorizationFlagInteractionAllowed, NULL)</code> which will prompt the user if needed. http://stackoverflow.com/questions/1663453/how-do-i-reset-the-result-for-a-property-in-a-stub-without-resetting-the-entire-s/1663509#1663509 Comment by Lawrence Johnston on How do I reset the result for a property in a stub without resetting the entire stub? Lawrence Johnston 2009-11-02T20:47:18Z 2009-11-02T20:47:18Z Yes. That's exactly what I'm doing in the <code>CreateBasicIFooLikeObjectStub()</code> method. The issue is that in my test method I may want to call <code>stub.Stub( x =&gt; x.FooLikeObject2).Return(null);</code> in order to verify that an exception is thrown in that case. And that's when I get the InvalidOperationException detailed above. I'll edit the question to make this clear. http://stackoverflow.com/questions/78389/rhinomocks-correct-way-to-mock-property-getter/79719#79719 Comment by Lawrence Johnston on RhinoMocks: Correct way to mock property getter Lawrence Johnston 2009-10-30T00:07:11Z 2009-10-30T00:07:11Z Just a note that that last example needs a <code>&#95;mocks.ReplayAll()</code> before you do anything with the IUser stub.