4 // Copyright (C) 2004 Novell, Inc.
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.
29 using System
.Collections
;
34 namespace Beagle
.Daemon
{
36 public class Queryable
{
38 private QueryableFlavor flavor
;
39 private IQueryable iqueryable
;
41 public Queryable (QueryableFlavor _flavor
,
42 IQueryable _iqueryable
)
45 iqueryable
= _iqueryable
;
50 if (! Shutdown
.ShutdownRequested
)
55 get { return flavor.Name; }
58 public QueryDomain Domain
{
59 get { return flavor.Domain; }
62 public bool AcceptQuery (Query query
)
65 && (query
.IsIndexListener
|| ! query
.IsEmpty
)
66 && query
.AllowsDomain (Domain
)
67 && iqueryable
.AcceptQuery (query
);
70 public void DoQuery (Query query
, IQueryResult result
, IQueryableChangeData change_data
)
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
)
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
);
91 return iqueryable
.GetSnippet (query_terms
, hit
);
92 } catch (Exception ex
) {
93 Logger
.Log
.Warn (ex
, "Caught exception calling DoQuery on '{0}'", Name
);
99 public QueryableStatus
GetQueryableStatus ()
101 QueryableStatus status
= iqueryable
.GetQueryableStatus ();
104 status
= new QueryableStatus ();