Thanks for the response.  By the way, is this setting more appropriate on the CommandInterpreter instead of the debugger?<br><br><div class="gmail_quote">On Mon Jan 12 2015 at 2:34:06 PM Greg Clayton <<a href="mailto:gclayton@apple.com">gclayton@apple.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
> On Jan 12, 2015, at 2:05 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
><br>
> There doesn't seem to be a good way to get access to the Debugger object from the Args class.  I tried changing Args to take a Debugger to its constructor, but it seems this isn't always possible, for example with anything having to do with OptionValue.<br>
> I could provide a default value of NULL for the Debugger, and if NULL it would fall back to the default escape character, but this seems awkward.<br>
><br>
> Since I've declared this as a global property, why should I even need a Debugger instance?  Shouldn't the global settings be static on the Debugger so that they can be accessed without an instance?<br>
<br>
<br>
This is the problem. See how process does it:<br>
<br>
class Process {<br>
    static const ProcessPropertiesSP &<br>
    GetGlobalProperties();<br>
}<br>
<br>
The debugger should do the same thing. It should also add static accessors for all of the settings that are truly global settings. Looking at the global settings, they all seem to be set to be global values which probably isn't what we want. Why? Xcode creates a new Debugger for each debugging window that it creates and if someone types "setting set auto-confirm false" in one command interpreter, it shouldn't affect the other.<br>
<br>
So I would say we need to switch all debugger settings to be non-global (third initialized in each of the PropertyDefinition values should be set to "false" in g_properties in Debugger.cpp) and the only one that should remain global is your new escape character. Then Debugger should get a new static accessor:<br>
<br>
class Debugger<br>
{<br>
    static char<br>
    GetEscapeCharacter();<br>
};<br>
<br>
This in turn will access the global properties and return it to outside folks.<br>
<br>
Check out the ProcessProperties class in Process.h and check out its constructor. We will need to do something similar for the debugger's settings. Right now Debugger inherits directly from Properties, but we will need to change it to be like the process where there is a DebuggerProperties class. The global version gets constructed with a "bool is_global" set to false, and the instance ones get constructed with that set to true.<br>
<br>
The Process class is the model we will need to follow if you want to make this change and have a true global property that can be accessed without a Debugger instance.<br>
<br>
<br>
><br>
> On Thu Jan 08 2015 at 3:00:30 PM <<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>> wrote:<br>
> It's not just file names, you would also have to make sure there's nothing else that might be in command argument or option value that has a single & a double quote, since without the backslashes this would be impossible.<br>
><br>
> If you really want to do this, I think it would be better to add a debugger setting for the "protection character".  Then this would be set to something else (maybe "#") on Windows, and backslash on all other systems.  That way you could probably always find a protection character that you could use for whatever gnarly string you ended up having to pass through the command interpreter.<br>
><br>
> Jim<br>
><br>
><br>
> > On Jan 8, 2015, at 2:55 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> ><br>
> > Actually ' is a valid filename character in Windows, but not ".  That being said, it's so rare, and having a backslash is so common that I would prefer the common case to be easy, and the rare case being either unsupported or difficult is ok with me.  So I'd still prefer to disable this backslash handling on Windows for now, and then fix ' on Windows separately in the future.<br>
> ><br>
> > On Thu Jan 08 2015 at 2:51:51 PM Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> > On Windows, that's not a valid file name, and in fact any file name that has an escaped character is not a valid filename.  I see what you're getting at though, that for non-Windows it's necessary.  Can I wrap the backslash handling in #ifndef _WIN32 then?<br>
> ><br>
> > On Thu Jan 08 2015 at 2:49:49 PM <<a href="mailto:jingham@apple.com" target="_blank">jingham@apple.com</a>> wrote:<br>
> > If I have a file called foo"bar'baz, how what would I put in the place of <AWKWARD NAME> for<br>
> ><br>
> > (lldb) file <AWKWARD NAME><br>
> ><br>
> > Right now, I can do:<br>
> ><br>
> > (lldb) file foo\"bar\'baz<br>
> > Current executable set to 'foo"bar'baz' (x86_64).<br>
> ><br>
> > Jim<br>
> ><br>
> ><br>
> > > On Jan 8, 2015, at 2:31 PM, Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> > ><br>
> > > FWIW, Removing backslash handling from this function (essentially ignoring backslashes in command arguments) fixes about 12-15 tests on Windows with no other changes.  I see there's some logic in Args for encoding and decoding escape sequences, but this only happens if a particular command option is set, and that command only only appears to be set for the "prompt" command.  I'm not sure if removing the backslash logic from SetCommandString would interfere with this command in any way, but it doesn't seem like it would interfere with any other commands, unless I'm missing something.<br>
> > ><br>
> > > On Thu Jan 08 2015 at 1:43:16 PM Zachary Turner <<a href="mailto:zturner@google.com" target="_blank">zturner@google.com</a>> wrote:<br>
> > > One thing causing many tests to fail on Windows is the presence of backslashes in argument.  Until now, I've worked around this in many cases by making sure that arguments with backslashes are always quoted.<br>
> > ><br>
> > > But there are some cases where this is not easy to guarantee and now I'm leaning towards (at least on Windows) allowing backslashes in argument strings.  The code in question comes from the function void SetCommandString (const char *command) in the file Args.cpp<br>
> > ><br>
> > > In particular, it implements special handling of whitespace, single quotes, double quotes, and backslashes.  For the case of backslashes it removes them from the string.<br>
> > ><br>
> > > What would be the implications of removing backslash handling from this function for all platforms?  I would prefer to keep platform specific code out of generic code, but I think this needs to be changed on Windows.<br>
> > > ______________________________<u></u>_________________<br>
> > > lldb-dev mailing list<br>
> > > <a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
> > > <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
> ><br>
><br>
> ______________________________<u></u>_________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu" target="_blank">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div>