Perforce.cs :  » Build-Systems » NAntContrib » NAnt » Contrib » Tasks » Perforce » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Build Systems » NAntContrib 
NAntContrib » NAnt » Contrib » Tasks » Perforce » Perforce.cs
// NAnt - A .NET build tool
// Copyright (C) 2001-2002 Gerry Shaw
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
// Jeff Hemry ( jdhemry@qwest.net )

using System;
using System.IO;
using System.Text.RegularExpressions;

using NAnt.Core;

namespace NAnt.Contrib.Tasks.Perforce{
    /// <summary>
    /// Static helper class for Perforce tasks.
    /// </summary>
    public class Perforce {
        /// <summary>
        /// ask p4 for the user name
        /// </summary>
        /// <returns></returns>
        public static string GetUserName() {
            return GetP4Info("User name:");
        }

        /// <summary>
        /// ask p4 for the client name
        /// </summary>
        /// <returns></returns>
        public static string GetClient() {
            return GetP4Info("Client name:");
        }

        public static void SetVariable(string Name, string Value) {
            string output = null;
            int exitcode = RunProcess("p4", string.Format("set {0}={1}", Name, Value ), null, ref output);
            if (exitcode != 0) {
                throw new BuildException( string.Format( "Unexpected P4 output = {0}", output));
            }
        }

        /// <summary>
        /// Get a changelist number based on on its name
        /// </summary>
        /// <param name="User"></param>
        /// <param name="Client"></param>
        /// <param name="ChangeList"></param>
        /// <param name="CreateIfMissing"></param>
        /// <returns></returns>
        public static string GetChangelistNumber(string User, string Client, string ChangeList, bool CreateIfMissing) {
            string result = GetChangelistNumber(User,Client,ChangeList);
            if ( result == null && CreateIfMissing) {
                result = CreateChangelist(User,Client,ChangeList);
            }
            return result;
        }
        /// <summary>
        /// Get a changelist number based on on its name
        /// </summary>
        /// <param name="User"></param>
        /// <param name="Client"></param>
        /// <param name="ChangeList"></param>
        /// <returns></returns>
        public static string GetChangelistNumber(string User, string Client, string ChangeList) {
            string result = null;
            string CurrentChangelists = getProcessOutput("p4", string.Format("-u {0} -c {1} changes -s pending -u {0}", User, Client ), null );
            string[] lines = CurrentChangelists.Split( '\n' );
            foreach( string line in lines ) {
                if ( line.IndexOf( ChangeList ) > -1 ) {
                    string[] s2 = line.Split( ' ' );   // poor manz regex
                    result = s2[ 1 ];
                    break;
                }
            }
            return result;
        }

        /// <summary>
        /// Create a new label
        /// </summary>
        /// <param name="User"></param>
        /// <param name="Labelname"></param>
        /// <param name="View"></param>
        public static void CreateLabel(string User, string Labelname, string View) {
            // create/edit label
            string output = null;
            string labelFileDef = string.Concat(
                "Label: " + Labelname + "\n",
                "Owner: " + User + "\n", 
                "Description:\n Created by " + User + ".\n",
                "Options: unlocked\n",
                "View: " + View + "\n\n" );

            int exitcode = RunProcess( "p4", string.Format("-u {0} label -i", User) , labelFileDef, ref output );
            if (exitcode != 0) {
                throw new BuildException( string.Format( "Unexpected P4 output = {0}", output));
            }
        }

        /// <summary>
        /// Create a new Client
        /// </summary>
        /// <param name="User"></param>
        /// <param name="Clientname"></param>
        /// <param name="Root"></param>
        /// <param name="View"></param>
        public static void CreateClient(string User, string Clientname, string Root, string View) {
            // create/edit client
            string output = null;
            string clientFileDef = string.Concat(
                "Client: " + Clientname + "\n",
                "Owner: " + User + "\n",
                "Description:\n Created by " + User + ".\n",
                "Root: " + Root + "\n",
                "Options: noallwrite noclobber nocompress unlocked nomodtime normdir\n",
                "LineEnd: local\n",
                "View:\n " + View + " " + Regex.Replace(View, @"//\w+/", "//" + Clientname + "/") + "\n\n" );   //p4root/... //clientname/...
  
            int exitcode = RunProcess( "p4", string.Format("-u {0} client -i", User), clientFileDef, ref output );
            if (exitcode != 0) {
                throw new BuildException( string.Format( "Unexpected P4 output = {0}", output));
            }
        }

        /// <summary>
        /// Create a new changelist
        /// </summary>
        /// <param name="User"></param>
        /// <param name="Client"></param>
        /// <param name="ChangeList">Description of Changelist</param>
        /// <returns></returns>
        private static string CreateChangelist(string User, string Client, string ChangeList) {
            // create new changelist
            string changeListDef = string.Concat(
                "Change: new\n",
                "Client: ", Client, "\n", 
                "User: ", User, "\n", 
                "Status: new\nDescription:\n ",
                ChangeList + "\nFiles:\n\n" );
            
            string output = getProcessOutput( "p4", string.Format("-u {0} -c {1} change -i" , User, Client) , changeListDef );

            string[] s = output.Split( ' ' );   // poor manz regex
            if ( ( s.Length == 3) && ( s[0] == "Change" ) && ( s[2].StartsWith( "created." ) ) ) {
                return s[ 1 ];
            } else {
                throw new BuildException( string.Format( "Unexpected P4 output = {0}", output));
            }
        }

        /// <summary>
        /// call the p4 process to 
        /// </summary>
        /// <param name="SearchPattern"></param>
        /// <returns></returns>
        private static string GetP4Info(string SearchPattern) {
            string result = null;
            string output = getProcessOutput("p4","info",null);    
            string[] lines = output.Split('\n' );
            foreach( string line in lines ) {
                if ( line.IndexOf( SearchPattern ) > -1 ) {
                    string[] s2 = line.Split( ' ' );   // poor manz regex
                    if(s2.Length > 2) {
                        result = s2[2].Trim('\r');
                    }
                    break;
                }
            }
            return result;
        }
        /// <summary>
        /// call the p4 process to 
        /// </summary>
        /// <param name="SearchPatterns"></param>
        /// <returns></returns>
        public static string[] GetP4Info(string[] SearchPatterns) {
            string[] results = new string[SearchPatterns.Length];
            if (SearchPatterns.Length > 0){
                string output = getProcessOutput("p4","info",null);    
                string[] lines = output.Split('\n' );
                for (int i = 0;i < SearchPatterns.Length;i++){
                    if (SearchPatterns[i].ToString() != ""){
                        foreach( string line in lines ) {
                            if ( line.IndexOf( SearchPatterns[i].ToString() ) > -1 ) {
                                string[] s2 = line.Split( ' ' );   // poor manz regex
                                if(s2.Length > 2) {
                                    results[i] = s2[2].Trim('\r');
                                }
                            }
                        }
                    }
                }
            }
            return results;
        }

        /// <summary>
        /// Execute a process and return its ourput
        /// </summary>
        /// <param name="exe"></param>
        /// <param name="prms"></param>
        /// <param name="input"></param>
        /// <returns></returns>
        public static string getProcessOutput( string exe, string prms, string input ) {
            string output = null;
            int exitCode = RunProcess( exe, prms, input, ref output );
            return output;
        }
        
        /// <summary>
        /// Execute a process and return its ourput
        /// </summary>
        /// <param name="exe"></param>
        /// <param name="prms"></param>
        /// <param name="input"></param>
        /// <param name="output"></param>
        /// <returns></returns>
        public static int RunProcess( string exe, string prms, string input, ref string output ) {
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            System.Diagnostics.ProcessStartInfo si = new System.Diagnostics.ProcessStartInfo( exe, prms );
            si.UseShellExecute = false;
            si.RedirectStandardOutput = true;
            si.RedirectStandardInput = ( input != null );
            p.StartInfo = si;
            p.Start();
            if ( input != null ) {
                StreamWriter sw = p.StandardInput;
                sw.Write( input );
                sw.Close();
            }
            output = p.StandardOutput.ReadToEnd();
            p.WaitForExit();
            return p.ExitCode;
        }
        
        /// <summary>
        /// Execute a process by name
        /// </summary>
        /// <param name="exe"></param>
        /// <param name="prms"></param>
        /// <param name="input"></param>
        /// <returns></returns>
        public static int RunProcess( string exe, string prms, string input ) {
            System.Diagnostics.Process p = new System.Diagnostics.Process();
            System.Diagnostics.ProcessStartInfo si = new System.Diagnostics.ProcessStartInfo( exe, prms );
            si.UseShellExecute = false;
            si.RedirectStandardOutput = false;
            si.RedirectStandardInput = ( input != null );
            p.StartInfo = si;
            p.Start();
            if ( input != null ) {
                StreamWriter sw = p.StandardInput;
                sw.Write( input );
                sw.Close();
            }
            p.WaitForExit();
            return p.ExitCode;
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.