2016-01-26 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / spellcheck-tree.c
blobeb6e72a6750f06a4083ff992b423747df8466626
1 /* Find near-matches for identifiers.
2 Copyright (C) 2015-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "spellcheck.h"
27 /* Calculate Levenshtein distance between two identifiers. */
29 edit_distance_t
30 levenshtein_distance (tree ident_s, tree ident_t)
32 gcc_assert (TREE_CODE (ident_s) == IDENTIFIER_NODE);
33 gcc_assert (TREE_CODE (ident_t) == IDENTIFIER_NODE);
35 return levenshtein_distance (IDENTIFIER_POINTER (ident_s),
36 IDENTIFIER_LENGTH (ident_s),
37 IDENTIFIER_POINTER (ident_t),
38 IDENTIFIER_LENGTH (ident_t));
41 /* Given TARGET, an identifier, and CANDIDATES, a vec of identifiers,
42 determine which element within CANDIDATES has the lowest edit
43 distance to TARGET. If there are multiple elements with the
44 same minimal distance, the first in the vector wins.
46 If more than half of the letters were misspelled, the suggestion is
47 likely to be meaningless, so return NULL_TREE for this case. */
49 tree
50 find_closest_identifier (tree target, const auto_vec<tree> *candidates)
52 gcc_assert (TREE_CODE (target) == IDENTIFIER_NODE);
54 int i;
55 tree identifier;
56 tree best_identifier = NULL_TREE;
57 edit_distance_t best_distance = MAX_EDIT_DISTANCE;
58 FOR_EACH_VEC_ELT (*candidates, i, identifier)
60 gcc_assert (TREE_CODE (identifier) == IDENTIFIER_NODE);
61 edit_distance_t dist = levenshtein_distance (target, identifier);
62 if (dist < best_distance)
64 best_distance = dist;
65 best_identifier = identifier;
69 /* If more than half of the letters were misspelled, the suggestion is
70 likely to be meaningless. */
71 if (best_identifier)
73 unsigned int cutoff = MAX (IDENTIFIER_LENGTH (target),
74 IDENTIFIER_LENGTH (best_identifier)) / 2;
75 if (best_distance > cutoff)
76 return NULL_TREE;
79 return best_identifier;