Lucene.Net  3.0.3
Lucene.Net is a .NET port of the Java Lucene Indexing Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties
LuceneServerIndexes.cs
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17 
18 using System;
19 using System.Configuration;
20 using System.Xml;
21 
22 namespace Lucene.Net.Distributed.Configuration
23 {
42  public class LuceneServerIndexes
43  {
44  private LuceneServerIndex[] _arLuceneServerIndexArray;
45  private int _intPort;
46 
50  public static LuceneServerIndexes GetConfig
51  {
52  get {return (LuceneServerIndexes)ConfigurationManager.GetSection("LuceneServerIndexes");}
53  }
54 
60  public LuceneServerIndexes(XmlNode xSection)
61  {
62  XmlAttributeCollection attributeCollection = xSection.Attributes;
63 
64  try
65  {
66  this._intPort = Convert.ToInt32(attributeCollection["Port"].Value);
67  }
68  catch (Exception)
69  {
70  throw new ConfigurationErrorsException("LuceneServerIndexes port definition invalid: "+Environment.NewLine+xSection.OuterXml);
71  }
72 
73  if (xSection.ChildNodes.Count==0)
74  throw new ConfigurationErrorsException("LuceneServerIndexes configuration missing: " + Environment.NewLine + xSection.OuterXml);
75 
76  this._arLuceneServerIndexArray = new LuceneServerIndex[xSection.ChildNodes.Count];
77  int x=0;
78 
79  foreach (XmlNode c in xSection.ChildNodes)
80  {
81  if (c.Name.ToLower()=="luceneserverindex")
82  {
83  LuceneServerIndex rs = new LuceneServerIndex(c, _intPort);
84  this._arLuceneServerIndexArray[x] = rs;
85  x++;
86  }
87 
88  }
89  }
90 
95  public LuceneServerIndex[] LuceneServerIndexArray
96  {
97  get {return this._arLuceneServerIndexArray;}
98  }
99 
104  public int Port
105  {
106  get {return this._intPort;}
107  }
108  }
109 }