Merging from head
[beagle.git] / beagled / Queryable.cs
blobfd11068493cf2daa2cc28ac22e55a8cbe14fe603
1 //
2 // Queryable.cs
3 //
4 // Copyright (C) 2004 Novell, Inc.
5 //
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining a
9 // copy of this software and associated documentation files (the "Software"),
10 // to deal in the Software without restriction, including without limitation
11 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 // and/or sell copies of the Software, and to permit persons to whom the
13 // Software is furnished to do so, subject to the following conditions:
15 // The above copyright notice and this permission notice shall be included in
16 // all copies or substantial portions of the Software.
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 // DEALINGS IN THE SOFTWARE.
28 using System;
29 using System.Collections;
31 using Beagle.Util;
32 using Beagle;
34 namespace Beagle.Daemon {
36 public class Queryable {
38 private QueryableFlavor flavor;
39 private IQueryable iqueryable;
41 public Queryable (QueryableFlavor _flavor,
42 IQueryable _iqueryable)
44 flavor = _flavor;
45 iqueryable = _iqueryable;
48 public void Start ()
50 if (! Shutdown.ShutdownRequested)
51 iqueryable.Start ();
54 public string Name {
55 get { return flavor.Name; }
58 public QueryDomain Domain {
59 get { return flavor.Domain; }
62 public bool AcceptQuery (Query query)
64 return query != null
65 && (query.IsIndexListener || ! query.IsEmpty)
66 && query.AllowsDomain (Domain)
67 && iqueryable.AcceptQuery (query);
70 public void DoQuery (Query query, IQueryResult result, IQueryableChangeData change_data)
72 try {
73 iqueryable.DoQuery (query, result, change_data);
74 } catch (Exception ex) {
75 Logger.Log.Warn (ex, "Caught exception calling DoQuery on '{0}'", Name);
79 public string GetSnippet (string[] query_terms, Hit hit)
81 if (hit == null)
82 return null;
84 // Sanity-check: make sure this Hit actually came out of this Queryable
85 if (QueryDriver.GetQueryable (hit.Source) != this) {
86 string msg = String.Format ("Queryable mismatch in GetSnippet: {0} vs {1}", hit.Source, this);
87 throw new Exception (msg);
90 try {
91 return iqueryable.GetSnippet (query_terms, hit);
92 } catch (Exception ex) {
93 Logger.Log.Warn (ex, "Caught exception calling DoQuery on '{0}'", Name);
96 return null;
99 public QueryableStatus GetQueryableStatus ()
101 QueryableStatus status = iqueryable.GetQueryableStatus ();
103 if (status == null)
104 status = new QueryableStatus ();
106 status.Name = Name;
108 return status;