Sorry for the combined patch. The changes became too inter-dependent.
[beagle.git] / beagled / Queryable.cs
blob58852781512f932fcfcb2898a993306532ae6452
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 ("Caught exception calling DoQuery on '{0}'", Name);
76 Logger.Log.Warn (ex);
80 public string GetSnippet (string[] query_terms, Hit hit)
82 if (hit == null)
83 return null;
85 // Sanity-check: make sure this Hit actually came out of this Queryable
86 if (QueryDriver.GetQueryable (hit.Source) != this) {
87 string msg = String.Format ("Queryable mismatch in GetSnippet: {0} vs {1}", hit.Source, this);
88 throw new Exception (msg);
91 try {
92 return iqueryable.GetSnippet (query_terms, hit);
93 } catch (Exception ex) {
94 Logger.Log.Warn ("Caught exception calling DoQuery on '{0}'", Name);
95 Logger.Log.Warn (ex);
98 return null;
101 public QueryableStatus GetQueryableStatus ()
103 QueryableStatus status = iqueryable.GetQueryableStatus ();
105 if (status == null)
106 status = new QueryableStatus ();
108 status.Name = Name;
110 return status;