4 // Copyright (C) 2005 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
;
30 using System
.Threading
;
33 using System
.Xml
.Serialization
;
37 namespace Beagle
.Daemon
{
39 [PropertyKeywordMapping (Keyword
="extension", PropertyName
="beagle:FilenameExtension", IsKeyword
=true, Description
="File extension, e.g. extension:jpeg. Use extension: to search in files with no extension.")]
40 [PropertyKeywordMapping (Keyword
="ext", PropertyName
="beagle:FilenameExtension", IsKeyword
=true, Description
="File extension, e.g. ext:jpeg. Use ext: to search in files with no extension.")]
42 public class StaticQueryable
: LuceneQueryable
{
44 protected TextCache text_cache
;
46 public StaticQueryable (string index_name
, string index_path
, bool read_only_mode
) : base (index_path
, read_only_mode
)
48 Logger
.Log
.Debug ("Initializing static queryable: {0}", index_path
);
50 if (Directory
.Exists (Path
.Combine (index_path
, "TextCache"))) {
52 text_cache
= new TextCache (index_path
, true);
53 } catch (UnauthorizedAccessException
) {
54 Logger
.Log
.Warn ("Unable to purge static queryable text cache in {0}. Will run without it.", index_path
);
59 override public string GetSnippet (string[] query_terms
, Hit hit
)
61 if (text_cache
== null)
64 // Look up the hit in our local text cache.
65 TextReader reader
= text_cache
.GetReader (hit
.Uri
);
69 string snippet
= SnippetFu
.GetSnippet (query_terms
, reader
);
75 override protected bool HitIsValid (Uri uri
)
77 // We can't check anything else than file uris
81 // FIXME: This is a hack, we need to support parent Uri's in some sane way
83 int j
= uri
.LocalPath
.LastIndexOf ('#');
84 string actual_path
= ((j
== -1) ? uri
.LocalPath
: uri
.LocalPath
.Substring (0, j
));
85 return File
.Exists (actual_path
) || Directory
.Exists (actual_path
);
86 } catch (Exception e
) {
87 Logger
.Log
.Warn ("Exception executing HitIsValid on {0}", uri
.LocalPath
);