Parsing file in c#

247 Views Asked by At

I have tnsnames.ora file which includes 50+ aliases. Added example content below.

Currently I use below code to get aliases from tns;

tnsnamesreadercustom tsc = new tnsnamesreadercustom();
uceTNS.DataSource = tsc.LoadTNSNames(FilePath);

And I parse these tnsnames aliases into combobox successfully like ;

NAME1
NAME2
NAME3

But i couldn't finish the last step which is;

User selects the above aliases for example NAME1 and it should get the details on messagebox like;

HOST:name1.local.com
PORT:1521
SERVICE_NAME:nameone
SID=null

Here is the tnsnames.ora example;

NAME1=
  (DESCRIPTION=
    (ADDRESS=
      (PROTOCOL=TCP)
      (HOST=name1.local.com)
      (PORT=1521)
    )
    (CONNECT_DATA=
      (SERVER=dedicated)
      (SERVICE_NAME=nameone)
    )
  )

NAME2= 
  (DESCRIPTION= 
    (ADDRESS= 
      (PROTOCOL=TCP) 
      (HOST=172.31.60.227) 
      (PORT=1531) 
    ) 
    (CONNECT_DATA= 
      (SERVER=dedicated) 
      (SID=nametwo) 
    ) 
  ) 

NAME3= 
  (DESCRIPTION= 
    (ADDRESS= 
      (PROTOCOL=TCP) 
      (HOST=172.31.70.174) 
      (PORT=1521) 
    ) 
    (CONNECT_DATA= 
      (SERVER=dedicated) 
      (SERVICE_NAME=namethree) 
    ) 
  )

Here is the tnsnamesreadercustom;

   class tnsnamesreadercustom
    {
        public List<string> LoadTNSNames(string strTNSNAMESORAFilePath)
        {
            List<string> DBNamesCollection = new List<string>();
            string RegExPattern = @"[\n][\s]*[^\(][a-zA-Z0-9_.]+[\s]*=[\s]*\(";

            if (!strTNSNAMESORAFilePath.Equals(""))
            {
                //check out that file does physically exists
                System.IO.FileInfo fiTNS = new System.IO.FileInfo(strTNSNAMESORAFilePath);
                if (fiTNS.Exists)
                {
                    if (fiTNS.Length > 0)
                    {
                        //read tnsnames.ora file
                        int iCount;
                        for (iCount = 0; iCount < Regex.Matches(System.IO.File.ReadAllText(fiTNS.FullName), RegExPattern).Count; iCount++)
                        {
                            DBNamesCollection.Add(Regex.Matches(System.IO.File.ReadAllText(fiTNS.FullName), RegExPattern)[iCount].Value.Trim().Substring(0, Regex.Matches(System.IO.File.ReadAllText(fiTNS.FullName), RegExPattern)[iCount].Value.Replace("=", " ").Trim().IndexOf(" ")).Replace(" ", "").Replace("=", "").Replace(Environment.NewLine, ""));
                        }
                    }
                }
            }
            return DBNamesCollection;
        }
    }
0

There are 0 best solutions below