예제 #1
0
        public static void ParseCommands(string[] args)
        {
            linkers.Clear();
            // System.Diagnostics.Debugger.Launch(); // to find teh bugs load this in Visual Studio and uncomment the start of this line.
            int argsCount = args.Length;

            if (argsCount == 0)
            {
                Log.WriteLine("No Args given so Help Text Displayed.", ConsoleColor.Red);
                Log.WriteLine();
                Help.Write();
                Finish();
            }

            List <string> argsList = args.Select(a => a.Replace(@"""", "")).ToList();

            if (argsList.Contains("/?"))
            {
                Help.Write();
                Log.WriteLine("User asked For Help. Hope I helped.", ConsoleColor.Green);
                Finish();
            }

            bool doSubDirectories     = argsList.Contains("/s", StringComparer.CurrentCultureIgnoreCase);
            bool createSubDirectories = !argsList.Contains("/nosub", StringComparer.CurrentCultureIgnoreCase);

            Log.WriteToConsole = !argsList.Contains("/stfu", StringComparer.CurrentCultureIgnoreCase);
            NoConfirm          = argsList.Contains("/noconfirm", StringComparer.CurrentCultureIgnoreCase);

            if (argsList.Contains("/abs", StringComparer.CurrentCultureIgnoreCase))
            {
                PathMaker.UseRelativePaths = false;
            }

            string prefixArg = args.FirstOrDefault(arg => arg.StartsWith("/prefix:", StringComparison.OrdinalIgnoreCase));

            if (prefixArg?.Any() ?? false)
            {
                string prefix = prefixArg.Substring(8).Replace("\"", "");
                DestinationProjLinker.LinkPrefix = prefix;
            }


            if (!string.IsNullOrEmpty(argsList[0]))
            {
                if (argsList[0].IsaCsOrVbProjFile())
                {
                    if (argsCount > 1 && args[1].IsaCsOrVbProjFile())
                    {
                        Log.WriteLine("Queueing Code Link from: " + argsList[0], ConsoleColor.Cyan);
                        Log.WriteLine("                     to: " + argsList[1], ConsoleColor.Cyan);
                        Log.WriteLine();
                        linkers.Add(new DestinationProjLinker(argsList[0], argsList[1]));
                    }
                    else
                    {
                        Log.WriteLine("Queueing Code Link to: " + argsList[0] + ". Source TBA.", ConsoleColor.Cyan);
                        linkers.Add(new DestinationProjLinker(argsList[0]));
                    }
                }

                else if (argsList[0].ToLower() == "strip")
                {
                    if (argsCount > 1)
                    {
                        if (args[1].IsaCsOrVbProjFile())
                        {
                            var destinationProjXml = new DestinationProjXml(args[1]);
                            destinationProjXml.ClearOldLinkedCode();
                            destinationProjXml.Save();
                            Finish("Stripped all code from " + args[1]);
                        }

                        else
                        {
                            try
                            {
                                List <string> destProjFiles = GetProjectsFromFolders(argsList[1], doSubDirectories);

                                foreach (string destProjFile in destProjFiles)
                                {
                                    Log.WriteLine("Stripping Code from: " + destProjFile + ". ", ConsoleColor.Yellow);
                                    var destinationProjXml = new DestinationProjXml(destProjFile);
                                    destinationProjXml.ClearOldLinkedCode();
                                    destinationProjXml.Save();
                                }
                            }
                            catch (Exception e)
                            {
                                Crash(e, "Stripping Code from Folder: " + args[1] + " didn't work. Bad name?");
                            }
                            Finish("Stripped all code");
                        }
                    }
                }

                else if (argsList[0].ToLower() == "new")
                {
                    if (argsCount > 2)
                    {
                        if (args[1].IsaCsOrVbProjFile())
                        {
                            string sourcePath = PathMaker.MakeAbsolutePathFromPossibleRelativePathOrDieTrying(null, args[1]);
                            try
                            {
                                ProjectMaker.NewProject(sourcePath, args[2], createSubDirectories);
                            }
                            catch (Exception e)
                            {
                                Crash(e, "Linking " + args[1] + " to " + args[2] + " didn't work. Bad name?");
                            }

                            Finish("Linked " + " from " + args[1] + " to " + args[2]);
                        }

                        else
                        {
                            try
                            {
                                List <string> sourceProjFiles = GetProjectsFromFolders(argsList[1], doSubDirectories);

                                foreach (string sourceProjFile in sourceProjFiles)
                                {
                                    if (sourceProjFile.IsaCsOrVbProjFile())
                                    {
                                        string sourcePath = PathMaker.MakeAbsolutePathFromPossibleRelativePathOrDieTrying(null, sourceProjFile);
                                        try
                                        {
                                            ProjectMaker.NewProject(sourcePath, args[2], createSubDirectories);
                                        }
                                        catch (Exception e)
                                        {
                                            Crash(e, "Linking " + sourceProjFile + " to " + args[2] + " didn't work. Bad name?");
                                        }

                                        Log.WriteLine("Linked " + " from " + sourceProjFile + " to " + args[2], ConsoleColor.Green);
                                    }
                                    else
                                    {
                                        Log.WriteLine("ERROR: " + sourceProjFile + " is not a project file. Cannot Link it.", ConsoleColor.Green);
                                    }
                                }
                            }
                            catch (Exception e)
                            {
                                Crash(e, "Linking Projects from Folder: " + args[1] + " didn't work. Bad name?");
                            }

                            Finish("Linked Projects");
                        }
                    }
                }    // /NewProject

                else // vanilla Link command with a folder
                {
                    try
                    {
                        List <string> destProjFiles = GetProjectsFromFolders(argsList[0], doSubDirectories);

                        foreach (string destProjFile in destProjFiles)
                        {
                            Log.WriteLine("Queueing Code Link to: " + destProjFile + ". Source TBA.", ConsoleColor.Cyan);
                            linkers.Add(new DestinationProjLinker(destProjFile));
                        }
                    }
                    catch (Exception e)
                    {
                        Crash(e, "Queueing Code Link didn't work. Bad file name?");
                    }
                }


                if (!linkers.Any())
                {
                    string errorMessage = "I got nuthin. Your Args made no sense to me." + Environment.NewLine;
                    foreach (string arg in args)
                    {
                        errorMessage += arg + Environment.NewLine;
                    }
                    Crash(errorMessage);
                }


                foreach (DestinationProjLinker destinationProjLinker in linkers)
                {
                    destinationProjLinker.LinkCode();
                }
            }
        }
예제 #2
0
        /// <summary> Links the source code from the source <c>sourceProj</c> file to the destination <c>destProj</c> file.
        ///           <para> Tweaks relative file paths so the project can find them. </para>
        ///           Adds a <c>&lt;Link&gt;</c> for the destination project Solution Explorer.</summary>
        internal void LinkCode()
        {
            string oldXml = destProjXml.ReadLinkedXml();

            destProjXml.ClearOldLinkedCode();

            int totalCodezLinked = 0;

            foreach (string sourcePath in SourceProjList)
            {
                int codezLinked = 0;

                try
                {
                    string sourceProjAbsolutePath = (PathMaker.IsAbsolutePath(sourcePath))
            ? sourcePath
            : Path.Combine(DestProjDirectory, sourcePath);

                    string sourceProjDirectory = Path.GetDirectoryName(sourceProjAbsolutePath);

                    string destDirectoryForRelativePath = DestProjDirectory.EndsWith("\\")
            ? DestProjDirectory
            : DestProjDirectory + "\\";

                    string linkRelativeSource = PathMaker.MakeRelativePath(destDirectoryForRelativePath, sourceProjAbsolutePath);

                    SourceProjParser sourceProjParser = new SourceProjParser(sourceProjAbsolutePath);

                    destProjXml.EndPlaceHolder.AddBeforeSelf(new XComment("Linked from " + linkRelativeSource));
                    Log.WriteLine("Recycling from: " + sourceProjAbsolutePath + Environment.NewLine +
                                  "            to: " + DestProjAbsolutePath + Environment.NewLine);


                    foreach (XElement sourceItemGroup in sourceProjParser.ItemGroups)
                    {
                        XElement newLinkedItemGroup = new XElement(Settings.MSBuild + "ItemGroup");

                        foreach (XElement sourceItem in sourceItemGroup.Elements())
                        {
                            string sourceElementName = sourceItem.Name.LocalName;

                            if (Settings.ItemElementsToSkip.Contains(sourceElementName.ToLower()))
                            {
                                continue;
                            }

                            XAttribute attrib = sourceItem.Attribute("Include") ?? sourceItem.Attribute("Exclude");

                            if (attrib != null)
                            {
                                string originalSourcePath        = attrib.Value;
                                string trimmedOriginalSourcePath = originalSourcePath.Trim().ToLower();

                                IEnumerable <string> exclude =
                                    ExclusionsList.Where(x => Operators.LikeString(trimmedOriginalSourcePath, x, CompareMethod.Text)).ToList(); // OW my eyes!

                                if (exclude.Any())
                                {
                                    Log.WriteLine("Excluded: " + originalSourcePath + Environment.NewLine +
                                                  "    from: " + sourceProjAbsolutePath + Environment.NewLine +
                                                  "because you said to Exclude: " + exclude.FirstOrDefault() + Environment.NewLine);
                                    continue;
                                }

                                List <string> include =
                                    InclusionsList.Where(i => Operators.LikeString(trimmedOriginalSourcePath, i, CompareMethod.Text)).ToList(); // OW my eyes!

                                if (!InclusionsList.Any() || include.Any())
                                {
                                    if (!PathMaker.IsAbsolutePath(originalSourcePath))
                                    {
                                        string sourceAbsolutePath = "";
                                        try
                                        {
                                            string sourceFileName = Path.GetFileName(originalSourcePath); // wildcards blow up Path.GetFullPath()
                                            string originalFolder = originalSourcePath;

                                            if (!string.IsNullOrEmpty(sourceFileName))
                                            {
                                                originalFolder = originalSourcePath.Replace(sourceFileName, "");
                                            }
                                            sourceAbsolutePath = Path.GetFullPath(sourceProjDirectory + "\\" + originalFolder) + sourceFileName;
                                        }
                                        catch (Exception e)
                                        {
                                            App.Crash(e, "Recycling. GetFullPath: " + sourceProjDirectory + "\\" + originalSourcePath);
                                        }

                                        string relativePathFromDestination = PathMaker.MakeRelativePath(DestProjDirectory + "\\", sourceAbsolutePath);

                                        if (!Settings.ItemElementsDoNotMakeRelativePath.Contains(sourceElementName.ToLower()))
                                        {
                                            attrib.Value = relativePathFromDestination;
                                        }
                                    }

                                    IEnumerable <XElement> links = sourceItem.Descendants(Settings.MSBuild + "Link");

                                    if (!(links.Any() || Settings.ItemElementsDoNotBreakLink.Contains(sourceElementName.ToLower()))) // Folders, mostly
                                    {
                                        XElement linkElement = new XElement(Settings.MSBuild + "Link", originalSourcePath);
                                        sourceItem.Add(linkElement);
                                    }
                                    newLinkedItemGroup.Add(sourceItem);
                                    codezLinked++;
                                }
                                else
                                {
                                    Log.WriteLine("Excluded: " + originalSourcePath + Environment.NewLine +
                                                  "    from: " + sourceProjAbsolutePath + Environment.NewLine +
                                                  "because it did not match anything on the Include: list " + Environment.NewLine);
                                }
                            }
                        }

                        if (newLinkedItemGroup.HasElements)
                        {
                            destProjXml.EndPlaceHolder.AddBeforeSelf(newLinkedItemGroup);
                        }
                    }
                    destProjXml.EndPlaceHolder.AddBeforeSelf(new XComment("End Link from " + linkRelativeSource + Environment.NewLine +
                                                                          "Linked " + codezLinked + " codez."));
                    totalCodezLinked += codezLinked;

                    destProjXml.Keepers.RemoveAll(k => k.Attribute("Include").Value.Contains(sourceProjDirectory));
                }
                catch (Exception e)
                {
                    App.Crash(e, "Recycling " + sourcePath + " to " + DestProjAbsolutePath);
                }
            }


            destProjXml.EndPlaceHolder.AddBeforeSelf(new XComment("End of Linked Code" + Environment.NewLine +
                                                                  "See CodeLinkerLog.txt for details. CodeLinker by " + Settings.SourceCodeUrl + " "));

            if (oldXml != destProjXml.ReadLinkedXml())
            {
                destProjXml.Save();
                Log.WriteLine("Linked " + totalCodezLinked + " codez from " + SourceProjList.Count + " source Project(s).");
            }
            else
            {
                Log.WriteLine("No changes, didn't save.");
            }

            Log.WriteLine("----------------------------");
            Log.WriteLine();
        }
예제 #3
0
        /// <summary> Copies and links a List of Projects into the <c> destinationFolder </c>.
        ///    <para> File is Linked from the first <c> projectsToLink </c> for each if there is more than 1 source. </para> </summary>
        /// <exception cref="ArgumentNullException"> Thrown when one or more required arguments are null or empty. </exception>
        /// <param name="projectsToLink"> a List of projects to Link. </param>
        /// <param name="destinationFolder"> Pathname of the destination folder. Empty string throws <c>ArgumentNullException</c></param>
        /// <param name="createSubFolders"> True (default) if you want each now project in its own subfolder. </param>
        internal static void NewProject(List <ProjectToLink> projectsToLink, string destinationFolder, bool createSubFolders = true)
        {
            if (projectsToLink == null)
            {
                throw new ArgumentNullException(nameof(projectsToLink));
            }
            if (string.IsNullOrEmpty(destinationFolder))
            {
                throw new ArgumentNullException(nameof(destinationFolder));
            }

            var destinationProjects = new HashSet <string>(projectsToLink.Select(p => p.DestinationProjectName));

            Log.WriteLine("Recycling " + destinationProjects.Count + " Project(s) to " + destinationFolder);

            foreach (string destinationProject in destinationProjects)
            {
                string destinationProjPath = createSubFolders
                    ? Path.Combine(destinationFolder + "\\" + Path.GetFileNameWithoutExtension(destinationProject), destinationProject)
                    : Path.Combine(destinationFolder, destinationProject);
                if (File.Exists(destinationProjPath))
                {
                    bool overwriteExisting = YesOrNo.Ask(destinationProjPath + Environment.NewLine +
                                                         "already exists!" + Environment.NewLine +
                                                         "Overwrite it ?");
                    if (!overwriteExisting)
                    {
                        continue;
                    }
                }

                List <string> sources = projectsToLink
                                        .Where(d => d.DestinationProjectName == destinationProject)
                                        .Select(s => s.SourceProject).ToList();
                if (sources.Count != 1)
                {
                    string message = destinationProject + "has " + sources.Count + " source Projects." + Environment.NewLine;
                    for (var index = 0; index < sources.Count; index++)
                    {
                        string source = sources[index];
                        message += index + 1 + ". " + source + Environment.NewLine;
                    }
                    message += "Continue (Y) or skip (N) " + destinationProject + " or Cancel Everything?";

                    bool?carryOn = YesOrNo.OrCancel(message);
                    if (carryOn == null)
                    {
                        Log.WriteLine("User aborted All Recycling. " + message);
                        return; // bail out of everything
                    }
                    if (carryOn == false)
                    {
                        Log.WriteLine("User skipped one Linked Project. " + message);
                        continue; // skip just this Destination Project
                    }
                }

                if (sources.Any())
                {
                    Log.WriteLine("Recycling to :" + destinationProjPath);
                    Directory.CreateDirectory(Path.GetDirectoryName(destinationProjPath)); // safe. Doesn't care if it already exists.
                    File.Copy(sources[0], destinationProjPath, true);
                    var destinationProjXml = new DestinationProjXml(destinationProjPath);
                    destinationProjXml.ClearOldLinkedCode();
                    destinationProjXml.ClearStartPlaceholderContent();
                    destinationProjXml.AddExclusion("app.config");
                    Log.WriteLine("...because a linked App.config will cause problems when you change build settings.");
                    destinationProjXml.AddExclusion("packages.config");
                    Log.WriteLine("...because nuget's packages.config will cause problems when you change build settings.");
                    destinationProjXml.ClearAllExistingCodeExceptExplicitlyLinked();

                    foreach (string source in sources)
                    {
                        if (File.Exists(source))
                        {
                            destinationProjXml.AddSource(PathMaker.MakeRelativePath(destinationProjPath, source));
                        }
                        else
                        {
                            Log.WriteLine("Bad Source in: " + destinationProjPath + Environment.NewLine
                                          + "       Source: " + source + Environment.NewLine);
                        }
                    }

                    destinationProjXml.Save();

                    App.ParseCommands(new[] { destinationProjPath });
                }
            }
        }
예제 #4
0
 /// <summary> <c>sourceProj</c> here overrides any sources specified in the <c>destProj</c></summary>
 /// <param name="sourceProj"> Absolute or Relative path of Source <c>Proj</c>. </param>
 /// <param name="destProj"> Absolute or Relative path of Destination <c>Proj</c>. </param>
 internal DestinationProjLinker(string sourceProj, string destProj) : this(destProj)
 {
     SourceProjList = new List <string> {
         PathMaker.MakeAbsolutePathFromPossibleRelativePathOrDieTrying(null, sourceProj)
     };
 }