Exemple #1
0
        /// <summary>
        /// Returns an array of drugs matching a search string.
        /// </summary>
        /// <param name="searchText">The search text.</param>
        /// <returns>An array of matched drugs.</returns>
        public static Drug[] Search(string searchText)
        {
            // The final set of results.
            List <Drug> results = new List <Drug>();

            // An intial filter on all of the drugs to those that definately contain a match.
            Drug[] matchedDrugs = (from drug in DrugDataHelper.Instance.AllDrugs
                                   where string.IsNullOrEmpty(drug.BrandName) ? DrugSearchHelper.ContainsStartsWith(drug.Name, searchText) : DrugSearchHelper.ContainsStartsWith(drug.BrandName, searchText)
                                   orderby drug.Name
                                   select drug).ToArray();

            // The search words are split.
            string[] words = searchText.Replace("+", " ").Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);

            // A list of drugs added so far to avoid duplication.
            List <Drug> addedDrugs = new List <Drug>();

            // This for loop creates the generic and brand groups within the search results.
            // i == 0 : just generic matches.
            // i == 1 : brand matches where there is also a generic name.
            // i == 2 : brand matches where there is no generic name.
            for (int i = 0; i < 3; i++)
            {
                // A dictionary for storing the results for this group. The dictionary is initially keyed by
                // the position of a match (i.e. the first word, the second word etc.), it is then keyed
                // by the position of the ingredient the match was found in.
                Dictionary <int, Dictionary <int, List <Drug> > > orderedResults = new Dictionary <int, Dictionary <int, List <Drug> > >();

                foreach (string word in words)
                {
                    // This filters all matches to the current word.
                    Drug[] wordMatches = DrugSearchHelper.GetMatches(word, matchedDrugs, addedDrugs.ToArray(), i < 2, i > 0);

                    // This tracks how many results have been added so far, so that the loop can
                    // break out once all matches in this group have been sorted.
                    int addedWordCount = 0;
                    int matchPosition  = 0;

                    // While all matches in the group have not been sorted...
                    while (addedWordCount != wordMatches.Length)
                    {
                        // Add a new dictionary, keyed by the position the ingredient matched.
                        if (!orderedResults.ContainsKey(matchPosition))
                        {
                            orderedResults.Add(matchPosition, new Dictionary <int, List <Drug> >());
                        }

                        int addedIngredientCount = 0;
                        int ingredientCount      = 1;

                        // This filters the matches to those that only have matches in a specific
                        // word location (i.e. the first word, the second word).
                        Drug[] positionMatches = DrugSearchHelper.GetMatches(matchPosition, word, wordMatches, addedDrugs.ToArray(), i < 2, i > 0);

                        // This loop moves through the matches first adding drugs with one ingredient,
                        // then adding drugs with two ingredients etc.
                        while (addedIngredientCount != positionMatches.Length)
                        {
                            // This filters the matches based on how many ingredients there should be.
                            Drug[] ingredientCountMatches   = DrugSearchHelper.GetMatches(ingredientCount, positionMatches, addedDrugs.ToArray(), i < 2, i > 0);
                            int    ingredientPosition       = 0;
                            int    addedWordIngredientCount = 0;

                            // This loop moves through the matches looking for a match in a specific
                            // word within a specific ingredient.
                            while (addedWordIngredientCount != ingredientCountMatches.Length)
                            {
                                // Adds a list of drugs based on the position of the ingredient where the match was found.
                                if (!orderedResults[matchPosition].ContainsKey(ingredientPosition))
                                {
                                    orderedResults[matchPosition].Add(ingredientPosition, new List <Drug>());
                                }

                                // This final filter gets matches for a specific word position, within a
                                // specific ingredient position, with a specific ingredient count.
                                Drug[] wordIngredientCountMatches = DrugSearchHelper.GetMatches(matchPosition, ingredientPosition, word, ingredientCountMatches, addedDrugs.ToArray(), i < 2, i > 0);

                                // Add the results to the result set.
                                orderedResults[matchPosition][ingredientPosition].AddRange(wordIngredientCountMatches);

                                // Add the results to the tracking list.
                                addedDrugs.AddRange(wordIngredientCountMatches);

                                // Update the counts.
                                addedWordCount           += wordIngredientCountMatches.Length;
                                addedIngredientCount     += wordIngredientCountMatches.Length;
                                addedWordIngredientCount += wordIngredientCountMatches.Length;

                                // Increment the ingredient position.
                                ingredientPosition++;
                            }

                            // Increment the ingredient count.
                            ingredientCount++;
                        }

                        // Increment the match position.
                        matchPosition++;
                    }
                }

                // This loop moves through the dictionary and adds the results to
                // a flat list.
                for (int matchPosition = 0; matchPosition < orderedResults.Count; matchPosition++)
                {
                    if (orderedResults.ContainsKey(matchPosition))
                    {
                        for (int ingredientPosition = 0; ingredientPosition < orderedResults[matchPosition].Count; ingredientPosition++)
                        {
                            if (orderedResults[matchPosition].ContainsKey(ingredientPosition))
                            {
                                results.AddRange(orderedResults[matchPosition][ingredientPosition].ToArray());
                            }
                        }
                    }
                }
            }

            return(results.ToArray());
        }
Exemple #2
0
        /// <summary>
        /// Gets matches from a list of drugs containing a StartsWith match.
        /// </summary>
        /// <param name="searchText">The search text.</param>
        /// <param name="drugs">The drugs to search.</param>
        /// <param name="ignoreDrugs">The drugs to ignore.</param>
        /// <param name="hasGeneric">Whether drugs with generics are included.</param>
        /// <param name="hasBrand">Whether drugs with a brand are included.</param>
        /// <returns>An array of matches.</returns>
        private static Drug[] GetMatches(string searchText, Drug[] drugs, Drug[] ignoreDrugs, bool hasGeneric, bool hasBrand)
        {
            Drug[] matches = (from drug in drugs
                              where !ignoreDrugs.Contains(drug) &&
                              ((hasGeneric && !hasBrand) ? string.IsNullOrEmpty(drug.BrandName) && !string.IsNullOrEmpty(drug.Name) && DrugSearchHelper.ContainsStartsWith(drug.Name, searchText) :
                               (hasGeneric && hasBrand) ? !string.IsNullOrEmpty(drug.BrandName) && !string.IsNullOrEmpty(drug.Name) && DrugSearchHelper.ContainsStartsWith(drug.BrandName, searchText) :
                               (!hasGeneric && hasBrand) ? !string.IsNullOrEmpty(drug.BrandName) && string.IsNullOrEmpty(drug.Name) && DrugSearchHelper.ContainsStartsWith(drug.BrandName, searchText) :
                               false)
                              select drug).OrderBy(a => (!hasBrand) ? a.Name != null ? a.Name.Replace("-", "0") : a.Name : a.BrandName != null ? a.BrandName.Replace("-", "0") : a.BrandName).ThenBy(a => a.Name != null ? a.Name.Replace("-", "0") : a.Name).ToArray();

            return(matches);
        }