Ejemplo n.º 1
0
        /// <summary>
        /// Within a set of terms, contains a starts with in a given position.
        /// </summary>
        /// <param name="terms">The set of terms.</param>
        /// <param name="searchText">The search text.</param>
        /// <param name="position">The desired position of the match within the terms.</param>
        /// <returns>Whether a match was found within the terms.</returns>
        public static bool ContainsStartsWithInPosition(string[] terms, string searchText, int position)
        {
            bool containsStartsWithInPosition = false;

            foreach (string text in terms)
            {
                string[] textParts = text.Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
                if (textParts.Length > position && DrugSearchHelper.StartsWith(textParts[position], searchText))
                {
                    containsStartsWithInPosition = true;
                }
            }

            return(containsStartsWithInPosition);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Checks if a string starts with a specified string.
        /// </summary>
        /// <param name="text">The string to check contains a match at the beginning.</param>
        /// <param name="searchText">The specified start of the string.</param>
        /// <returns>Whether the string contains a match.</returns>
        public static bool StartsWith(string text, string searchText)
        {
            if (string.IsNullOrEmpty(searchText))
            {
                return(true);
            }
            else if (string.IsNullOrEmpty(text))
            {
                return(false);
            }
            else
            {
                string lowerText = " " + text.ToLower(CultureInfo.CurrentCulture);
                if (!lowerText.Contains(" " + searchText.ToLower(CultureInfo.CurrentCulture)) &&
                    !DrugSearchHelper.FindMatch(lowerText, " " + searchText.ToLower(CultureInfo.CurrentCulture)))
                {
                    return(false);
                }

                return(true);
            }
        }
Ejemplo n.º 3
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());
        }
Ejemplo n.º 4
0
        /// <summary>
        /// Gets matches from a list of drugs containing a StartsWith match where the match is in a specific position, in a specific ingredient position.
        /// </summary>
        /// <param name="matchPosition">The desired position of the match.</param>
        /// <param name="ingredientPosition">The desired position of the ingredient.</param>
        /// <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(int matchPosition, int ingredientPosition, 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) && (drug.Name.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > ingredientPosition && drug.Name.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > matchPosition && DrugSearchHelper.StartsWith(drug.Name.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[matchPosition], searchText)) :
                               (hasGeneric && hasBrand) ? !string.IsNullOrEmpty(drug.BrandName) && !string.IsNullOrEmpty(drug.Name) && (drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > ingredientPosition && drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > matchPosition && DrugSearchHelper.StartsWith(drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[matchPosition], searchText)) :
                               (!hasGeneric && hasBrand) ? !string.IsNullOrEmpty(drug.BrandName) && string.IsNullOrEmpty(drug.Name) && (drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > ingredientPosition && drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries).Length > matchPosition && DrugSearchHelper.StartsWith(drug.BrandName.Split("+".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[ingredientPosition].Split(" ".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)[matchPosition], 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);
        }
Ejemplo n.º 5
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);
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Searches the drugs.
        /// </summary>
        private void SearchDrugs()
        {
            string text = this.SearchAndPrescribe.DrugSearchText;

            if (DrugSearchHelper.ContainsWordWithMinimumCharacters(text, 2))
            {
                this.SearchAndPrescribe.DrugsResultsListMessage = "No items were matched";
                Drug[] matches = DrugSearchHelper.Search(text);
                if (matches != null && matches.Length > 0)
                {
                    List <Drug> commonMatches   = new List <Drug>();
                    List <Drug> standardMatches = new List <Drug>();

                    foreach (Drug drug in matches)
                    {
                        if (drug.CommonlyPrescribed || drug.Routes != null)
                        {
                            commonMatches.Add(drug);
                        }
                        else
                        {
                            standardMatches.Add(drug);
                        }
                    }

                    this.SearchAndPrescribe.PrimaryDrugsItemsHeader = "Common matches";
                    this.SearchAndPrescribe.PrimaryDrugsItemsSource = commonMatches;

                    if (commonMatches.Count > 0)
                    {
                        this.SearchAndPrescribe.SecondaryDrugsItemsHeader = "Standard matches";
                    }
                    else
                    {
                        this.SearchAndPrescribe.SecondaryDrugsItemsHeader = null;
                    }

                    this.SearchAndPrescribe.SecondaryDrugsItemsSource = standardMatches;
                    this.SearchAndPrescribe.IsShowingAllDrugResults   = false;
                    this.SearchAndPrescribe.RefreshDrugsList();
                }
                else
                {
                    this.SearchAndPrescribe.PrimaryDrugsItemsSource   = null;
                    this.SearchAndPrescribe.SecondaryDrugsItemsSource = null;
                    this.SearchAndPrescribe.RefreshDrugsList();
                }
            }
            else if (text.Trim().Length == 0)
            {
                this.SearchAndPrescribe.PrimaryDrugsItemsHeader   = "Commonly prescribed drugs";
                this.SearchAndPrescribe.PrimaryDrugsItemsSource   = DrugDataHelper.CommonDrugs;
                this.SearchAndPrescribe.SecondaryDrugsItemsSource = null;
                this.SearchAndPrescribe.IsShowingAllDrugResults   = false;
                this.SearchAndPrescribe.RefreshDrugsList();
            }
            else
            {
                this.SearchAndPrescribe.DrugsResultsListMessage   = "Please enter at least 2 characters";
                this.SearchAndPrescribe.PrimaryDrugsItemsSource   = null;
                this.SearchAndPrescribe.SecondaryDrugsItemsSource = null;
                this.SearchAndPrescribe.RefreshDrugsList();
            }
        }