2015-12-20 03:05:43 +00:00
|
|
|
-- ghc-mod: Making Haskell development *more* fun
|
|
|
|
-- Copyright (C) 2015 Nikolay Yakimov <root@livid.pp.ru>
|
|
|
|
--
|
|
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
|
|
-- it under the terms of the GNU Affero General Public License as published by
|
|
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
|
|
-- (at your option) any later version.
|
|
|
|
--
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
-- GNU Affero General Public License for more details.
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU Affero General Public License
|
|
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-12-20 05:26:49 +00:00
|
|
|
module GHCMod.Options.ShellParse (parseCmdLine) where
|
2015-12-20 03:05:43 +00:00
|
|
|
|
|
|
|
import Data.Char
|
2015-12-30 18:11:39 +00:00
|
|
|
import Data.List
|
2015-12-20 03:05:43 +00:00
|
|
|
|
2015-12-26 23:42:45 +00:00
|
|
|
go :: String -> String -> [String] -> Bool -> [String]
|
2015-12-20 03:05:43 +00:00
|
|
|
-- result
|
|
|
|
go [] curarg accargs _ = reverse $ reverse curarg : accargs
|
|
|
|
go (c:cl) curarg accargs quotes
|
2015-12-26 23:42:45 +00:00
|
|
|
-- open quotes
|
|
|
|
| c == '\STX', not quotes
|
|
|
|
= go cl curarg accargs True
|
2015-12-20 05:24:14 +00:00
|
|
|
-- close quotes
|
2015-12-26 23:42:45 +00:00
|
|
|
| c == '\ETX', quotes
|
|
|
|
= go cl curarg accargs False
|
|
|
|
-- space separates arguments outside quotes
|
|
|
|
| isSpace c, not quotes
|
2015-12-20 03:05:43 +00:00
|
|
|
= if null curarg
|
|
|
|
then go cl curarg accargs quotes
|
|
|
|
else go cl [] (reverse curarg : accargs) quotes
|
|
|
|
-- general character
|
|
|
|
| otherwise = go cl (c:curarg) accargs quotes
|
|
|
|
|
|
|
|
parseCmdLine :: String -> [String]
|
2015-12-30 18:11:39 +00:00
|
|
|
parseCmdLine comline'
|
|
|
|
| Just comline <- stripPrefix "ascii-escape " $ dropWhile isSpace comline'
|
|
|
|
= go (dropWhile isSpace comline) [] [] False
|
2015-12-30 17:46:06 +00:00
|
|
|
parseCmdLine [] = [""]
|
|
|
|
parseCmdLine comline = words comline
|