Does Visual Sourcesafe support working with multiple databases in parallel via parallel STA threads?

I'm trying to get the latest version of contents in multiple databases via multiple parallel threads but I'm not sure if threads are working in parallel.

A small test I carried out to check this is as follows:

  • Create two STA threads T1 and T2 and have each thread getting the latest version of contents of two databases DB1 and DB2 respectively, via IVSSItem.Get().
  • To be able to compare the work load, DB2 is a replica of DB1 sitting on the same drive

Test results are as follows:

  • DB1 Start = 11/20/2010 7:18:01 AM

  • DB2 Start = 11/20/2010 7:18:01 AM

  • DB1 Open DB = 11/20/2010 7:18:01 AM

  • DB2 Open DB = 11/20/2010 7:18:01 AM

  • DB1 Duration = 7.674439 s

  • DB1 Ended at = 11/20/2010 7:18:09 AM

  • DB2 Duration = 13.025745 s

  • DB2 Ended at = 11/20/2010 7:18:14 AM

As per the test results, it looks like T2 has started working on DB2 after T1 stopped working with DB1, meaning VSS seems to be serializing access to databases (even when the databases are different). Since the databases are identical I assume both threads would take almost the same amount of time to complete the jobs. Ie. same load on threads.

Notes:

  • Assumption - Two STA threads running in parallel can work with two intances of an appartment threaded object in parallel

  • Both T1 and T2 threads are STA threads

  • Both T1 and T2 instantiate their own IVSSDatabase instances

  • DB1 and DB2 are identical and sitting on the same drive

  • Envinronment:

    Processor: Intel Core i3-330M (3M Cache, 2.13 GHz)

    OS: Windows 7 64-bit

    Development Env: .NET, Framework 3.5 SP1

    VSS Automation interop: Microsoft.VisualStudio.SourceSafe.Interop, Version 5.2.0.0

Any help to understand this behavior is highly appreciated.

Thanks.

RanC

RanC 11/25: Edited to include the test program.

using System;
using System.Text;
using Microsoft.VisualStudio.SourceSafe.Interop;
using System.IO;
using System.Threading;

namespace Post
{
    public class VSSTest
    {
        [STAThread]
        public static void Main(string[] args)
        {
            Thread.CurrentThread.Name = "Main";

            // Setup database login info...
            VSSDBLogin vssDB1 = new VSSDBLogin(@"G:\DB1\srcsafe.ini", "Admin", null);
            VSSDBLogin vssDB2 = new VSSDBLogin(@"G:\DB2\srcsafe.ini", "Admin", null);

            // Get the latest version of two VSS databases sequentially
            Console.WriteLine("Accessing databases sequentially.......");

            GetVSSLatestVersion(vssDB1);

            GetVSSLatestVersion(vssDB2);

            //---------------------------------------------------------------------------------------------//

            // Get the same two VSS databases in parallel via two STA threads
            Console.WriteLine(Environment.NewLine + "Accessing databases in parallel.......");

            Thread t1 = new Thread(GetVSSLatestVersion);
            t1.SetApartmentState(ApartmentState.STA);
            t1.Name = "T1";

            Thread t2 = new Thread(GetVSSLatestVersion);
            t2.SetApartmentState(ApartmentState.STA);
            t2.Name = "T2";

            t1.Start(vssDB1);
            t2.Start(vssDB2);

            Console.ReadLine();
        }

        public static void GetVSSLatestVersion(object tvssDBLoginInfo)
        {
            VSSDBLogin vssDBLoginInfo = (VSSDBLogin) tvssDBLoginInfo;

            // Record start time...
            Console.WriteLine("Thread = {0}, Database = {1}, Job Started at {2}", Thread.CurrentThread.Name, vssDBLoginInfo.SrcSafeIni, DateTime.Now);

            DateTime sequentialCommonStart = DateTime.Now;

            // Record the actual DB open time...
            VSSDatabase vssDB = new VSSDatabase();
            vssDB.Open(vssDBLoginInfo.SrcSafeIni, vssDBLoginInfo.UserName, vssDBLoginInfo.Password);

            Console.WriteLine("Thread = {0}, Database Opened at {1}", Thread.CurrentThread.Name, DateTime.Now.ToString ());

            string targetFolder = Path.Combine(@"G:\VSSMT\", Path.GetFileNameWithoutExtension(Path.GetRandomFileName()));
            vssDB.get_VSSItem("$/", false).Get(ref targetFolder, (int)VSSFlags.VSSFLAG_RECURSYES);
            vssDB.Close();

            // Record the end time and the duration...
            DateTime sequentialCommonEnd = DateTime.Now;
            Console.WriteLine("Thread = {0}, Time taken = {1} s, Job Ended At = {2}", Thread.CurrentThread.Name,  sequentialCommonEnd.Subtract(sequentialCommonStart).TotalSeconds, DateTime.Now);
        }
    }

    public class VSSDBLogin
    {
        public VSSDBLogin(string tsrcSafeIni, string tuserName, string tpassword)
        {
            SrcSafeIni = tsrcSafeIni;
            UserName = tuserName;
            Password = tpassword;

        }

        public string SrcSafeIni
        {
            get;
            set;
        }

        public string UserName
        {
            get;
            set;
        }

        public string Password
        {
            get;
            set;
        }
    }
}
link|improve this question

25% accept rate
Would you please paste your test code here for our reference? :-) – user469861 Nov 24 '10 at 1:50
@logan163 - Done. – RanC Nov 25 '10 at 6:20
weird...the first test shows that the duration of DB1 and DB2 are almost the same, but subsequent results -- as you mentioned " it looks like T2 has started working on DB2 after T1 stopped working" :-( – user469861 Nov 25 '10 at 9:05
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.