Lucene.Net  3.0.3
Lucene.Net is a port of the Lucene search engine library, written in C# and targeted at .NET runtime users.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Properties Pages
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 {
24  /// <summary>
25  /// Definition of configurable search indexes made accessible by the
26  /// LuceneServer windows service.
27  ///
28  /// An example configuration would look like the following:
29  /// <code>
30  /// <LuceneServerIndexes Port="1089">
31  /// <LuceneServerIndex ObjectUri="RemoteIndexes1">
32  /// <Directory indexA="c:\lucene\indexA\index1" indexB="c:\lucene\indexB\index1" />
33  /// <Directory indexA="c:\lucene\indexA\index2" indexB="c:\lucene\indexB\index2" />
34  /// </LuceneServerIndex>
35  /// <LuceneServerIndex ObjectUri="RemoteIndexes2">
36  /// <Directory indexA="c:\lucene\indexA\index3" indexB="c:\lucene\indexB\index3" />
37  /// <Directory indexA="c:\lucene\indexA\index4" indexB="c:\lucene\indexB\index4" />
38  /// </LuceneServerIndex>
39  /// </LuceneServerIndexes>
40  /// </code>
41  /// </summary>
42  public class LuceneServerIndexes
43  {
44  private LuceneServerIndex[] _arLuceneServerIndexArray;
45  private int _intPort;
46 
47  /// <summary>
48  /// Accessor method for the configurable search indexes.
49  /// </summary>
50  public static LuceneServerIndexes GetConfig
51  {
52  get {return (LuceneServerIndexes)ConfigurationManager.GetSection("LuceneServerIndexes");}
53  }
54 
55  /// <summary>
56  /// Public constructor for LuceneServerIndexes. A LuceneServerIndex is defined
57  /// in XML configuration and is loaded via a custom configuration handler.
58  /// </summary>
59  /// <param name="xSection">The Xml definition in the configuration file</param>
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 
91  /// <summary>
92  /// Strongly-typed array of LuceneServerIndex objects as defined in
93  /// a configuration section.
94  /// </summary>
95  public LuceneServerIndex[] LuceneServerIndexArray
96  {
97  get {return this._arLuceneServerIndexArray;}
98  }
99 
100  /// <summary>
101  /// A default Port to be assigned to all defined LuceneServerIndex objects.
102  /// This value can be overridden for a specific LuceneServerIndex.
103  /// </summary>
104  public int Port
105  {
106  get {return this._intPort;}
107  }
108  }
109 }