source: tags/svn.1.5.4/EDIT4/ed4_search.hxx

Last change on this file was 7812, checked in by westram, 14 years ago

merge from dev [7751] [7752]

  • updated many old-style typedefs (typedef struct/enum)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.3 KB
Line 
1// =============================================================== //
2//                                                                 //
3//   File      : ed4_search.hxx                                    //
4//   Purpose   :                                                   //
5//                                                                 //
6//   Coded by Ralf Westram (coder@reallysoft.de)                   //
7//   Institute of Microbiology (Technical University Munich)       //
8//   http://www.arb-home.de/                                       //
9//                                                                 //
10// =============================================================== //
11
12#ifndef ED4_SEARCH_HXX
13#define ED4_SEARCH_HXX
14
15enum ED4_SEARCH_CASE {
16    ED4_SC_CASE_SENSITIVE,
17    ED4_SC_CASE_INSENSITIVE
18};
19
20enum ED4_SEARCH_TU {
21    ED4_ST_T_NOT_EQUAL_U,
22    ED4_ST_T_EQUAL_U
23};
24
25enum ED4_SEARCH_GAPS {
26    ED4_SG_CONSIDER_GAPS,
27    ED4_SG_IGNORE_GAPS
28};
29
30void       ED4_search(AW_window *aww, AW_CL searchDescriptor);
31GB_ERROR   ED4_repeat_last_search();
32AW_window *ED4_create_search_window(AW_root *root, AW_CL type);
33void       ED4_create_search_awars(AW_root *root);
34
35// --------------------------------------------------------------------------------
36
37#define SEARCH_PATTERNS 9
38#define MAX_MISMATCHES  5
39
40enum ED4_SearchPositionType {
41    ED4_USER1_PATTERN,
42    ED4_USER2_PATTERN,
43    ED4_PROBE_PATTERN,
44    ED4_PRIMER1_PATTERN,
45    ED4_PRIMER2_PATTERN,
46    ED4_PRIMER3_PATTERN,
47    ED4_SIG1_PATTERN,
48    ED4_SIG2_PATTERN,
49    ED4_SIG3_PATTERN,
50    ED4_ANY_PATTERN
51};
52
53extern const char *ED4_SearchPositionTypeId[];
54
55inline int ED4_encodeSearchDescriptor(int direction, ED4_SearchPositionType pattern)
56{
57    e4_assert(direction==-1 || direction==1);
58    e4_assert(pattern>=0 && pattern<(SEARCH_PATTERNS+1));
59    return (direction==1) + pattern*2;
60}
61
62// #define TEST_SEARCH_POSITION
63
64
65
66class ED4_SearchPosition {
67    // one found position
68    int start_pos, end_pos;
69    int mismatch[MAX_MISMATCHES]; // contains positions of mismatches (or -1)
70    ED4_SearchPositionType whatsFound;
71    GB_CSTR comment;
72    ED4_SearchPosition *next;
73
74    static char *lastShownComment;
75
76    int cmp(const ED4_SearchPosition& sp2) const
77    {
78        int c = start_pos - sp2.get_start_pos();
79        if (!c) c = end_pos - sp2.get_end_pos();
80        return c;
81    }
82
83public:
84
85    ED4_SearchPosition(int sp, int ep, ED4_SearchPositionType wf, GB_CSTR found_comment, int mismatches[MAX_MISMATCHES]);
86    ~ED4_SearchPosition() { delete next; }
87
88    ED4_SearchPosition(const ED4_SearchPosition& other); // copy-ctor ('next' is always zero)
89    DECLARE_ASSIGNMENT_OPERATOR(ED4_SearchPosition);
90
91    ED4_SearchPosition *insert(ED4_SearchPosition *toAdd);
92    ED4_SearchPosition *remove(ED4_SearchPositionType typeToRemove);
93
94    ED4_SearchPosition *get_next() const          { return next; }
95    int get_start_pos() const                     { return start_pos; }
96    int get_end_pos() const                       { return end_pos; }
97    ED4_SearchPositionType get_whatsFound() const { return whatsFound; }
98    GB_CSTR get_comment() const;
99
100    const int *getMismatches() const              { return mismatch; }
101
102    int containsPos(int pos) const { return start_pos<=pos && end_pos>=pos; }
103
104    ED4_SearchPosition *get_next_at(int pos) const;
105
106#ifdef TEST_SEARCH_POSITION
107    int ok() const;
108#endif
109};
110
111class ED4_sequence_terminal;
112
113class ED4_SearchResults : virtual Noncopyable {
114    // list head
115
116    int arraySize;              // ==0 -> 'first' is a list
117    // >0 -> 'array' is an array of 'ED4_SearchPosition*' with 'arraySize' elements
118
119    ED4_SearchPosition *first;  // ==0 -> no results, this list is sorted by start_pos, end_pos
120    ED4_SearchPosition **array; // ==0 -> no results, same sorting as 'first'
121    int timeOf[SEARCH_PATTERNS];
122
123    static int timeOfLastSearch[SEARCH_PATTERNS]; // timestamp used at last search
124    static int timeOfNextSearch[SEARCH_PATTERNS]; // timestamp used at next search
125    static int shown[SEARCH_PATTERNS]; // copy of ED4_AWAR_xxx_SEARCH_SHOW
126    static int bufferSize;
127    static char *buffer; // buffer for buildColorString
128    static int initialized;
129
130    int is_list() const { return arraySize==0; }
131    int is_array() const { return arraySize>0; }
132
133    void to_array() const;      // ensures that result is in array-format (used to improve search performance)
134    void to_list() const;       // ensures that result is in list-format (used to improve insert performance)
135
136public:
137
138    ED4_SearchResults();
139    ~ED4_SearchResults();
140
141    void search(const ED4_sequence_terminal *seq_terminal);
142    void addSearchPosition(ED4_SearchPosition *pos);
143
144    ED4_SearchPosition *get_first() const { return first; }
145    ED4_SearchPosition *get_first_at(ED4_SearchPositionType type, int start, int end) const;
146    ED4_SearchPosition *get_first_starting_after(ED4_SearchPositionType type, int pos, int mustBeShown) const;
147    ED4_SearchPosition *get_last_starting_before(ED4_SearchPositionType type, int pos, int mustBeShown) const;
148    ED4_SearchPosition *get_shown_at(int pos) const;
149
150    static void setNewSearch(ED4_SearchPositionType type);
151    void searchAgain();
152
153    char *buildColorString(const ED4_sequence_terminal *seq_terminal, int start, int end);
154};
155
156
157#else
158#error ed4_search.hxx included twice
159#endif // ED4_SEARCH_HXX
160
Note: See TracBrowser for help on using the repository browser.