コード例 #1
0
ファイル: Program.cs プロジェクト: c-robin/NugetConverter
        static int Main(string[] args)
        {

            //"http://*****:*****@ulcentral:8081/artifactory/api/nuget/libs-sharing-nuget"
            //https://hooks.slack.com/services/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
            //new[] { ".ullink.lan", "ulcentral" }
            //builder:ullink


            var process = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location));
            if (process.Length > 1)
            {
                Trace.TraceError("An instance of ul-nuget-converter is already running...");
                return -2;
            }

            //Un comment this line if you want to force logging of Api change analyze
            //System.Environment.SetEnvironmentVariable("_Trace", "Console; ApiChange.* all");
            
            var options = new CommandLineOptions();
            if (!CommandLine.Parser.Default.ParseArguments(args, options))
            {
                return -1;
            }

            //When filename is set let's recompute everything
            if (!string.IsNullOrEmpty(options.Filename))
                options.NoCache = true;

            if (string.IsNullOrEmpty(options.OfficialRepository))
                options.OfficialRepository = "https://www.nuget.org/api/v2/";

            ResolutionLevelEnum resolutionLevel = (ResolutionLevelEnum)options.ResolutionLevel;

            if(options.Proxy!=null && options.ProxyWhilelist!=null)
                WebRequest.DefaultWebProxy = new WebProxy(new Uri(options.Proxy), true, options.ProxyWhilelist.Replace('"', ' ').Trim().Split(','));
            else if(options.Proxy!=null)
                WebRequest.DefaultWebProxy = new WebProxy(new Uri(options.Proxy), true);

            Builder = new ContainerBuilder();
            
            string[] dlls = null;
            if (string.IsNullOrEmpty(options.Source))
            {
                Console.Write(options.GetUsage());
                return -2;
            }

            Trace.TraceInformation("searching for dlls in {0}", options.Source);
            dlls = Directory.GetFiles(options.Source, "*.dll", SearchOption.AllDirectories);
            Trace.TraceInformation("{0} dlls found in {1}", dlls.Length, options.Source);


            Builder.RegisterType<ConfigurationService>()
                   .WithParameter("path", options.Source)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<VersionResolverService>()
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                   .WithParameter("resolutionLevel", resolutionLevel)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<AssemblyCacheService>()
                   .WithParameter("dlls", dlls)
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(VersionResolverService)),
                                        (pi, c) => c.Resolve(typeof(VersionResolverService))))
                   .WithParameter("useCache", !options.NoCache)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<MappingService>().AsSelf().SingleInstance()
                    .WithParameter("rootPath", options.Source)
                    .WithParameter("officialRepository", options.OfficialRepository);
            Builder.RegisterType<DependenciesResolverService>()
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(AssemblyCacheService)),
                                        (pi, c) => c.Resolve(typeof(AssemblyCacheService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(MappingService)),
                                        (pi, c) => c.Resolve(typeof(MappingService))))
                    .WithParameter("useCache", !options.NoCache)
                    .WithParameter("resolutionLevel", resolutionLevel)
                    .AsSelf().SingleInstance();
            Builder.RegisterType<NuGetPackageCreationService>()    
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(AssemblyCacheService)),
                                        (pi, c) => c.Resolve(typeof(AssemblyCacheService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(MappingService)),
                                        (pi, c) => c.Resolve(typeof(MappingService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(DependenciesResolverService)),
                                        (pi, c) => c.Resolve(typeof(DependenciesResolverService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                                        .WithParameter("useCache", !options.NoCache)
                                        .WithParameter("repository", options.Repository)
                                        .WithParameter("credential", options.RepositoryCredential)
                                        .WithParameter("owner", options.Owner)
                                        .WithParameter("author", options.Authors)
                                        .WithParameter("slackUrl", options.SlackUrl)
                                        .WithParameter("slackChannel", options.SlackChannel)
                                        .WithParameter("slackUsername", options.SlackUsername)
                                        .AsSelf()
                                        .SingleInstance();
            Container = Builder.Build();
            ConfigurableInjection.InitializeContainer(Container);

            using (var scope = Container.BeginLifetimeScope())
            {
                var packageCreationService = scope.Resolve<NuGetPackageCreationService>();
                Trace.TraceInformation("ul-nuget-converter successfully started.");
                if (options.StartDeamon)
                    StartDeamon(scope, options);
                else if (!string.IsNullOrEmpty(options.Filename))
                    CreatePackage(scope, options);
                else
                    packageCreationService.SyncAssembliesPackages();
            }

            return 0;
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: Ullink/NugetConverter
        public static string Run(string[] args)
        {
            string error = null;
            var process = Process.GetProcessesByName(Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location));
            if (process.Length > 1)
            {
                error = "An instance of ul-nuget-converter is already running...";
                return error;
            }

            //Un comment this line if you want to force logging of Api change analyze
            //System.Environment.SetEnvironmentVariable("_Trace", "Console; ApiChange.* all");
            
            var options = new CommandLineOptions();
            if (!CommandLine.Parser.Default.ParseArguments(args, options))
            {
                error = $"Error while parsing options: {args.Aggregate("",(current, next) => current + "|" + next)}";
                return error;
            }

            //When filename is set let's recompute everything
            if (!string.IsNullOrEmpty(options.Filename))
                options.NoCache = true;

            if (string.IsNullOrEmpty(options.OfficialRepository))
                options.OfficialRepository = "https://www.nuget.org/api/v2/";

            ResolutionLevelEnum resolutionLevel = (ResolutionLevelEnum)options.ResolutionLevel;

            if(options.Proxy!=null && options.ProxyWhilelist!=null)
                WebRequest.DefaultWebProxy = new WebProxy(new Uri(options.Proxy), true, options.ProxyWhilelist.Replace('"', ' ').Trim().Split(','));
            else if(options.Proxy!=null)
                WebRequest.DefaultWebProxy = new WebProxy(new Uri(options.Proxy), true);

            Builder = new ContainerBuilder();
            
            string[] dlls = null;
            if (string.IsNullOrEmpty(options.Source))
            {
                return options.GetUsage();
            }

            Trace.TraceInformation("searching for dlls in {0}", options.Source);
            dlls = Directory.GetFiles(options.Source, "*.dll", SearchOption.AllDirectories);
            Trace.TraceInformation("{0} dlls found in {1}", dlls.Length, options.Source);

            if (!Directory.Exists(@"cache"))
                Directory.CreateDirectory(@"cache");

            Builder.RegisterType<ConfigurationService>()
                   .WithParameter("path", options.Source)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<VersionResolverService>()
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                   .WithParameter("resolutionLevel", resolutionLevel)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<AssemblyCacheService>()
                   .WithParameter("dlls", dlls)
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                   .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(VersionResolverService)),
                                        (pi, c) => c.Resolve(typeof(VersionResolverService))))
                   .WithParameter("useCache", !options.NoCache)
                   .AsSelf()
                   .SingleInstance();
            Builder.RegisterType<MappingService>().AsSelf().SingleInstance()
                    .WithParameter("rootPath", options.Source)
                    .WithParameter("officialRepository", options.OfficialRepository);
            Builder.RegisterType<DependenciesResolverService>()
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(AssemblyCacheService)),
                                        (pi, c) => c.Resolve(typeof(AssemblyCacheService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(MappingService)),
                                        (pi, c) => c.Resolve(typeof(MappingService))))
                    .WithParameter("useCache", !options.NoCache)
                    .WithParameter("resolutionLevel", resolutionLevel)
                    .AsSelf().SingleInstance();
            Builder.RegisterType<NuGetPackageCreationService>()    
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(AssemblyCacheService)),
                                        (pi, c) => c.Resolve(typeof(AssemblyCacheService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(MappingService)),
                                        (pi, c) => c.Resolve(typeof(MappingService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(ConfigurationService)),
                                        (pi, c) => c.Resolve(typeof(ConfigurationService))))
                    .WithParameter(new ResolvedParameter(
                                        (pi, c) => pi.ParameterType == (typeof(DependenciesResolverService)),
                                        (pi, c) => c.Resolve(typeof(DependenciesResolverService))))
                                        .WithParameter("useCache", !options.NoCache)
                                        .WithParameter("repository", options.Repository)
                                        .WithParameter("credential", options.RepositoryCredential)
                                        .WithParameter("owner", options.Owner)
                                        .WithParameter("author", options.Authors)
                                        .WithParameter("slackUrl", options.SlackUrl)
                                        .WithParameter("slackChannel", options.SlackChannel)
                                        .WithParameter("slackUsername", options.SlackUsername)
                                        .AsSelf()
                                        .SingleInstance();
            Container = Builder.Build();
            ConfigurableInjection.InitializeContainer(Container);

            using (var scope = Container.BeginLifetimeScope())
            {
                var packageCreationService = scope.Resolve<NuGetPackageCreationService>();
                Trace.TraceInformation("ul-nuget-converter successfully started.");
                if (options.StartDeamon)
                    StartDeamon(scope, options);
                else if (!string.IsNullOrEmpty(options.Filename))
                    CreatePackage(scope, options);
                else
                    packageCreationService.SyncAssembliesPackages();
            }

            return null;
        }