Exemple #1
0
        private CommandLists parseManyPaths(string[] pathsToParse)
        {
            CommandLists commands = new CommandLists();
            string commonParent = PathTools.GetCommonParent(pathsToParse);
            pathsToParse = PathTools.FilterNotCommonParent(commonParent, pathsToParse);

            commands = createCommands(pathsToParse, commonParent);
            return commands;
        }
Exemple #2
0
        public CommandLists ParsePaths(string[] pathsToParse)
        {
            if (pathsToParse.Length == 0)
                throw new ArgumentException("Array is empty");

            CommandLists commands = new CommandLists();
            if (pathsToParse.Length == 1)
            {
                commands = parseOnePath(pathsToParse);
            }
            else
            {
                commands = parseManyPaths(pathsToParse);
            }

            return commands;
        }
Exemple #3
0
        private CommandLists createCommands(string[] pathsToParse, string commonParent)
        {
            CommandLists commands = new CommandLists();
            string[] pathSplitElements = commonParent.Split('/');

            foreach (string pathPart in pathSplitElements.Where(x => x.IsNotEmptyOrNull()))
            {
                IElementGroupSelect groupCommand = getGroupCommand(pathPart);
                if (groupCommand.IsNotNull())
                    commands.GroupSelectCommands.Add(groupCommand);
            }

            foreach (var pathPart in pathsToParse)
            {
                IItemSelect itemCommand = getItemCommand(pathPart);
                if (itemCommand.IsNotNull())
                    commands.ItemSelectCommands.Add(itemCommand);
            }

            return commands;
        }
Exemple #4
0
        private CommandLists parseOnePath(string[] pathsToParse)
        {
            CommandLists commands = new CommandLists();

            string commonParent = pathsToParse[0];
            commonParent = commonParent.Substring(0, commonParent.LastIndexOf('/')); //this deleting last groupCommand

            pathsToParse[0] = pathsToParse[0].Split('/').Last();

            commands = createCommands(pathsToParse, commonParent);

            return commands;
        }