Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have developed a enterprise search using solr, I have developed a patternMatching class to match the query string

Now when I tried to use the query q=64612456+0454+76545656+7646+798+456749+746456+7469+745646546456489+6598+74645665445

It's hanged while trying to match the pattern in matchPattern() function of PatternMatching.java

Find Below is the PatternMatching.java

public class PatternMatching {
private StringBuffer bq;
private ArrayList<String> bqParams;
private StringBuffer queNumList = new StringBuffer();
private String matchPattern(String query, String pattern){          
    final Pattern qualExFront = Pattern.compile(pattern);        
    final Matcher qualMatchFront = qualExFront.matcher(query);

    String queNum;
    if(qualMatchFront.lookingAt() && (queNum=qualMatchFront.group(1))!=null) {
        String tempQuery=checkQuery(query,queNum);
        System.out.println("Temp Query  "+tempQuery);
        if(queNum.contains("\"")) queNum=queNum.replace("\"","\\\"");

        if (query.compareTo(tempQuery)!=0){
            query=tempQuery;
            if(queNumList!=null){
                if (queNumList.length()>0)
                    queNumList.append(" OR ");
                queNumList.append("\""+queNum.trim()+"\"");
            }
        }               
    }

    return query;
}
public void setBqParams(ArrayList<String> bqParams){
    this.bqParams=bqParams;
}
private String checkQuery(String query, String removePart){
    String temp=query;
    temp=temp.replaceAll(removePart, "");
    temp = temp.replaceAll("\\s+"," ").trim();
    if(temp==null || temp.isEmpty()){
        return query;
    }
    return temp;

}
public String updateQuery(String query,ArrayList<String> patterns){
    for(int i=0;i<patterns.size();i++){
        query=matchPattern(query,patterns.get(i));
    }
    return query;
}
public HashMap<String,String> getBQMap(){
    HashMap<String,String> hmFieldBQ=new HashMap<String,String>();
    if (queNumList.length()>0){
        String bqParam;
        double bVal=0;
        for (int i=0;i<bqParams.size();i++){
            bqParam=hmFieldBQ.get(bqParams.get(i));

            if (bqParam!=null)
                bqParam.concat(" OR ").concat(queNumList.toString());
            else
                bqParam=queNumList.toString();
            hmFieldBQ.put(bqParams.get(i), bqParam);
        }
    }
    return hmFieldBQ;
}

}

And the following is where I call this pattern Matching

public static String modifyQuery(String queryInp,URLEntity urlEntity) throws UnsupportedEncodingException{
    String solrr = queryInp;
    String solrQuery="";
    if(queryInp !=null){
        if (!loaded){
            synchronized(syncLock){
                if (!loaded){
                    loaded=true;
                    brandList = readTextFiles("brand",true);
                    storeOriginList = readTextFiles("storeOrigin",true);    
                    variationsList = readTextFiles("variation",true);               
                    bqParams = readTextFiles("bqParams",false);
                    sizeList = readTextFiles("size",true);  
                }
            }
        }
        String []queryTerms = queryInp.split("&");
        String query="";
        String queryFinal="";
        String tempQuery="";
        boolean bqFound=false;
        boolean bqApp=false;
        urlEntity.setbQPApplied(false);

        for (int i=0;i<queryTerms.length;i++){
            if(queryTerms[i].startsWith("q=")){
                query = queryTerms[i].replaceAll("q=","").trim().replace("+"," ").replaceAll("\\s+"," ").trim();
            }
            if(queryTerms[i].startsWith("bq=")){
                bqFound=true;
            }
        }           

        int arrCount = query.split("\\s+").length;
        if(arrCount >=3){   
            if(bqParams.listIterator()!=null)
            {
            ListIterator<String> bqItr = bqParams.listIterator();
            System.out.println("bqITR   "+bqItr);
            double bVal = PropertyLoader.getBoostValue();
            HashMap<String,Double> bValMap = PropertyLoader.getBoostVal();

            query = URLDecoder.decode(query);
            ArrayList<String> patterns = new ArrayList<String>();
            // Match metric without separator at beginning of string: 36mm, 36mm.,24x32 sq. ft., etc.
            patterns.add("((?:[\\d]+[ \\.,%]*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+[ ]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*) [a-zA-Z]{2,}");
            // Match metric without separator within string
            patterns.add(".* ((?:[\\d]+[ \\.,%]*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+[ ]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*) [a-zA-Z]{2,}");
            // match for 1/4ft. x 2.33cm. board.  
            patterns.add("((?:[\\d]+[ \\.,%]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+[ ]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*) [a-zA-Z]{2,}");
            /
            //patterns.add(".*((?:[\\d]+[ \\.,%]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+[ ]*(?:"+ServiceConstants.UNITS_OF_MEASURE+")*) [a-zA-Z]{2,}");
            // Match at beginning of string
            patterns.add("((?:[\\d]+[ \\.,%]*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+) [a-zA-Z]{2,}");
            // Match within string
            patterns.add(".* ((?:[\\d]+[ \\.,%]*(?:[ ]*(?:to|x|-|\\\\-|/)[ ]*)*)+) [a-zA-Z]{2,}");
            GeneralUtility gu = new GeneralUtility();
            PatternMatching patternMatch=new PatternMatching();
            patternMatch.setBqParams(bqParams);
            query=patternMatch.updateQuery(query,patterns).replaceAll("\\s+"," ").trim();
            System.out.println("Pattern Mactched Query "+query);

Kindly advise why the query string is getting hanged in this function while other keywords pass through

share|improve this question
not sure many people will want to wade through your code... – Mitch Wheat Sep 27 '11 at 6:50
What exactly do you mean by 'hanged'? Does it freeze, crash, etc.? – home Sep 27 '11 at 6:53
@home It was not going through this matchPattern method – John Ocher Sep 27 '11 at 7:45
So it's never get called? – home Sep 27 '11 at 7:47
It goes into this method and stays in it for longer time (20 mins) – John Ocher Sep 27 '11 at 7:52
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.