Exemple #1
0
 public bulkDBInsert(wsusUpdate parent, asyncsqlthread db)
 {
     _parent           = parent;
     _db               = db;
     filesInBatchSoFar = 0;
     files             = new T[80];
 }
Exemple #2
0
 public override void writeToDB(asyncsqlthread db, string absoluteFilename)
 {
     using (bulkDBInsert_file bulkxfer = new bulkDBInsert_file(parent, db))
     {
         foreach (updateFile updateFile in GetFiles(absoluteFilename))
         {
             bulkxfer.add(new file(parent, updateFile));
         }
         bulkxfer.finish();
     }
 }
Exemple #3
0
 public processingThread(Program.logString logger, AutoResetEvent poller,
                         ConcurrentQueue <downloadThread.downloadedUpdate> inputQueue, AutoResetEvent downloadRequestEvent,
                         archiveThread archiver,
                         asyncsqlthread sqlThread) : base(logger, poller)
 {
     this.threadname              = "Update processing thread";
     this.queue                   = inputQueue;
     this.asyncSQLParams          = sqlThread;
     this.archiver                = archiver;
     this.UpdateProcessingStarted = downloadRequestEvent;
 }
        public override void writeToDB(asyncsqlthread db, string absoluteFilename)
        {
            int n = 0;

            using (bulkDBInsert_file bulkxfer = new bulkDBInsert_file(parent, db))
            {
                foreach (updateFile updateFile in GetFiles(absoluteFilename))
                {
                    bulkxfer.add(new file(parent, updateFile));
                    n++;
                }
            }
            Debug.WriteLine($"found {n} files");
        }
Exemple #5
0
        public override void writeToDB(asyncsqlthread asyncdb, string absoluteFilename)
        {
            using (bulkDBInsert_file_wiminfo bulkxfer = new bulkDBInsert_file_wiminfo(parent, asyncdb))
            {
                foreach (wimImage image in getImages(absoluteFilename))
                {
                    fileSource_wim imageEntry = new fileSource_wim(image);

                    foreach (updateFile updateFile in getFilesForImage(absoluteFilename, image.index))
                    {
                        bulkxfer.add(new file_wimInfo(parent, updateFile, imageEntry));
                    }
                }
            }
        }
Exemple #6
0
        public static void Main(string[] args)
        {
            using (logDB = new updateDB(connstr, dbName))
            {
                ConcurrentQueue <downloadThread.downloadedUpdate> toProcessQueue =
                    new ConcurrentQueue <downloadThread.downloadedUpdate>();
                ConcurrentQueue <string> toArchiveQueue        = new ConcurrentQueue <string>();
                AutoResetEvent           downloadRequestEvent  = new AutoResetEvent(false);
                AutoResetEvent           downloadCompleteEvent = new AutoResetEvent(false);

                using (threadLifetimeCollection threads = new threadLifetimeCollection())
                {
                    asyncsqlthread sqlparams = new asyncsqlthread(logger);
                    threads.add(sqlparams.start());

                    updateReserverThread updateGetterThread = new updateReserverThread(logger);
                    threads.add(updateGetterThread.start());

                    archiveThread archiver = new archiveThread(logger, toArchiveQueue);
                    threads.add(archiver.start());

                    downloadThread[] downloadThreads = new downloadThread[downloadThreadCount];
                    for (int i = 0; i < downloadThreads.Length; i++)
                    {
                        downloadThreads[i] =
                            new downloadThread(logger, downloadRequestEvent, toProcessQueue, updateGetterThread);
                        downloadThreads[i].threadname += $" ({i})";

                        downloadThreads[i].outqueue             = toProcessQueue;
                        downloadThreads[i].maxFinishedDownloads = maxPendingDownloads;
                        downloadThreads[i].downloadComplete     = downloadCompleteEvent;

                        threads.add(downloadThreads[i].start());
                    }

                    processingThread[] processingThreads = new processingThread[processingThreadCount];
                    for (int i = 0; i < processingThreads.Length; i++)
                    {
                        processingThreads[i] = new processingThread(logger, downloadCompleteEvent, toProcessQueue,
                                                                    downloadRequestEvent, archiver, sqlparams);
                        processingThreads[i].threadname += $" ({i})";

                        threads.add(processingThreads[i].start());
                    }

                    while (true)
                    {
                        // have we finished it all?
                        if (updateGetterThread.allUpdatesExhausted())
                        {
                            Console.WriteLine("all done");
                            // Once the update-getter signals completion, it has already passed pending updates to the download threads, so it's safe to
                            // tear down threads without fear of missing updates.
                            foreach (downloadThread dt in downloadThreads)
                            {
                                dt.stop();
                            }
                            foreach (processingThread pt in processingThreads)
                            {
                                pt.stop();
                            }
                            archiver.stop();
                            sqlparams.stop();

                            break;
                        }

                        // OK, show some stats.
                        Thread.Sleep(TimeSpan.FromSeconds(1));
                        //Console.Clear();
                        Console.WriteLine(
                            $"Processing queue: {toProcessQueue.Count}, reserved updates {updateGetterThread.claimedUpdates.Count}, " +
                            $"async sql queue {sqlparams.batches.Count} / {sqlparams.batches_wim.Count} / {sqlparams.toMarkComplete.Count}");

                        for (int i = 0; i < downloadThreads.Length; i++)
                        {
                            var current = downloadThreads[i].currentlydownloading;
                            if (current != null)
                            {
                                Console.WriteLine(
                                    $"Download thread {i}: downloading {current.downloadURI} ({current.sizeMB} MB)");
                            }
                            else
                            {
                                Console.WriteLine($"Download thread {i}: idle");
                            }
                        }

                        for (int i = 0; i < processingThreads.Length; i++)
                        {
                            string cur = processingThreads[i].currentlyProcessing;
                            if (cur != null)
                            {
                                Console.WriteLine($"Processing thread {i}: processing {cur}");
                            }
                            else
                            {
                                Console.WriteLine($"Processing thread {i}: idle");
                            }
                        }
                    }
                }
            }
        }
Exemple #7
0
 public bulkDBInsert_file_wiminfo(wsusUpdate parent, asyncsqlthread db) : base(parent, db)
 {
 }
 public abstract void writeToDB(asyncsqlthread asyncdb, string absoluteFilename);