Ejemplo n.º 1
0
        /// <summary>
        /// This is a helper function that works around a deficiency in the 
        /// Vault Client API.  In the API, there is no method that lets you set the active repository
        /// for a ClientInstance based only on the repository name.  This means that (for now) every
        /// program that uses the API will need to do something like this.
        /// </summary>
        /// <param name="client">A Client Instance that has already had Init and Login called on it.</param>
        /// <param name="repositoryName">The name of the repository to find and connect to.</param>
        private static void FindRepository( ClientInstance client, string repositoryName )
        {
            VaultRepositoryInfo[] reps = null;
            //List all the repositories on the server.
            client.ListRepositories(ref reps);

            //Search for the one that we want.
            foreach (VaultRepositoryInfo r in reps)
            {
                if (String.Compare(r.RepName,repositoryName, true) == 0)
                {
                    //This will load up the client side cache files and refresh the repository structure.
                    //See http://support.sourcegear.com/viewtopic.php?t=6 for more on client side cache files.
                    client.SetActiveRepositoryID(r.RepID, client.Connection.Username, r.UniqueRepID, true, true);
                    break;
                }
            }
            if (client.ActiveRepositoryID == -1)
                throw new Exception(string.Format("Repository {0} not found", repositoryName));
        }
Ejemplo n.º 2
0
        /// <summary>
        /// This is a helper function that works around a deficiency in the
        /// Vault Client API.  In the API, there is no method that lets you set the active repository
        /// for a ClientInstance based only on the repository name.  This means that (for now) every
        /// program that uses the API will need to do something like this.
        /// </summary>
        /// <param name="client">A Client Instance that has already had Init and Login called on it.</param>
        /// <param name="repositoryName">The name of the repository to find and connect to.</param>
        private static void FindRepository(ClientInstance client, string repositoryName)
        {
            VaultRepositoryInfo[] reps = null;
            //List all the repositories on the server.
            client.ListRepositories(ref reps);

            //Search for the one that we want.
            foreach (VaultRepositoryInfo r in reps)
            {
                if (String.Compare(r.RepName, repositoryName, true) == 0)
                {
                    //This will load up the client side cache files and refresh the repository structure.
                    //See http://support.sourcegear.com/viewtopic.php?t=6 for more on client side cache files.
                    client.SetActiveRepositoryID(r.RepID, client.Connection.Username, r.UniqueRepID, true, true);
                    break;
                }
            }
            if (client.ActiveRepositoryID == -1)
            {
                throw new Exception(string.Format("Repository {0} not found", repositoryName));
            }
        }
Ejemplo n.º 3
0
        /// <summary>
        /// This function chooses the active repository on the server.
        /// </summary>
        /// <param name="repositoryName">Name of the repository to select.</param>
        /// <returns>True if the repository selection succeeded, false otherwise.</returns>
        public bool SelectRepository(string repositoryName)
        {
            if (ClientInstance.ConnectionStateType != ConnectionStateType.Connected)
            {
                return(false);
            }

            VaultRepositoryInfo[] vaultRepositories = null;
            ClientInstance.ListRepositories(ref vaultRepositories);

            foreach (VaultRepositoryInfo vaultRepositoryInfo in vaultRepositories)
            {
                //Beter way to ignore case.
                if (string.Compare(vaultRepositoryInfo.RepName, repositoryName, true, CultureInfo.CurrentCulture) == 0)
                {
                    _currentRepository = vaultRepositoryInfo;
                    ClientInstance.SetActiveRepositoryID(_currentRepository.RepID, Username, _currentRepository.UniqueRepID, true, true);

                    return(true);
                }
            }

            return(false);
        }