|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.fr.design.mainframe.alphafine.search.manager.impl; |
|
|
|
package com.fr.design.mainframe.alphafine.search.manager.impl; |
|
|
|
|
|
|
|
|
|
|
|
import com.fr.design.actions.UpdateAction; |
|
|
|
import com.fr.design.actions.UpdateAction; |
|
|
|
|
|
|
|
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
|
|
|
import com.fr.design.mainframe.alphafine.CellType; |
|
|
|
import com.fr.design.mainframe.alphafine.CellType; |
|
|
|
import com.fr.design.mainframe.alphafine.cell.CellModelHelper; |
|
|
|
import com.fr.design.mainframe.alphafine.cell.CellModelHelper; |
|
|
|
import com.fr.design.mainframe.alphafine.cell.model.ActionModel; |
|
|
|
import com.fr.design.mainframe.alphafine.cell.model.ActionModel; |
|
|
@ -9,7 +10,6 @@ import com.fr.design.mainframe.alphafine.cell.model.MoreModel; |
|
|
|
import com.fr.design.mainframe.alphafine.model.SearchResult; |
|
|
|
import com.fr.design.mainframe.alphafine.model.SearchResult; |
|
|
|
import com.fr.design.mainframe.alphafine.search.manager.fun.AlphaFineSearchProvider; |
|
|
|
import com.fr.design.mainframe.alphafine.search.manager.fun.AlphaFineSearchProvider; |
|
|
|
import com.fr.design.mainframe.toolbar.UpdateActionManager; |
|
|
|
import com.fr.design.mainframe.toolbar.UpdateActionManager; |
|
|
|
|
|
|
|
|
|
|
|
import com.fr.json.JSONException; |
|
|
|
import com.fr.json.JSONException; |
|
|
|
import com.fr.json.JSONObject; |
|
|
|
import com.fr.json.JSONObject; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
|
import com.fr.log.FineLoggerFactory; |
|
|
@ -18,7 +18,7 @@ import com.fr.third.org.apache.lucene.analysis.Analyzer; |
|
|
|
import com.fr.third.org.apache.lucene.analysis.standard.StandardAnalyzer; |
|
|
|
import com.fr.third.org.apache.lucene.analysis.standard.StandardAnalyzer; |
|
|
|
import com.fr.third.org.apache.lucene.document.Document; |
|
|
|
import com.fr.third.org.apache.lucene.document.Document; |
|
|
|
import com.fr.third.org.apache.lucene.document.Field; |
|
|
|
import com.fr.third.org.apache.lucene.document.Field; |
|
|
|
import com.fr.third.org.apache.lucene.document.IntField; |
|
|
|
import com.fr.third.org.apache.lucene.document.LongField; |
|
|
|
import com.fr.third.org.apache.lucene.document.StringField; |
|
|
|
import com.fr.third.org.apache.lucene.document.StringField; |
|
|
|
import com.fr.third.org.apache.lucene.index.DirectoryReader; |
|
|
|
import com.fr.third.org.apache.lucene.index.DirectoryReader; |
|
|
|
import com.fr.third.org.apache.lucene.index.IndexReader; |
|
|
|
import com.fr.third.org.apache.lucene.index.IndexReader; |
|
|
@ -44,7 +44,7 @@ import java.util.List; |
|
|
|
* Created by XiaXiang on 2018/1/22. |
|
|
|
* Created by XiaXiang on 2018/1/22. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
private static final int MAX_SIZE = 3; |
|
|
|
private static final int MAX_SIZE = 100; |
|
|
|
private static RecentSearchManager instance; |
|
|
|
private static RecentSearchManager instance; |
|
|
|
IndexReader indexReader = null; |
|
|
|
IndexReader indexReader = null; |
|
|
|
IndexSearcher indexSearcher = null; |
|
|
|
IndexSearcher indexSearcher = null; |
|
|
@ -78,7 +78,7 @@ public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
if (recentModelList != null && recentModelList.size() > 0) { |
|
|
|
if (recentModelList != null && recentModelList.size() > 0) { |
|
|
|
modelList.add(new MoreModel(com.fr.design.i18n.Toolkit.i18nText("FR-Designer_AlphaFine_Latest"))); |
|
|
|
modelList.add(new MoreModel(com.fr.design.i18n.Toolkit.i18nText("FR-Designer_AlphaFine_Latest"))); |
|
|
|
} |
|
|
|
} |
|
|
|
modelList.addAll(recentModelList); |
|
|
|
modelList.addAll(recentModelList.subList(0, AlphaFineConstants.LATEST_SHOW_SIZE)); |
|
|
|
return modelList; |
|
|
|
return modelList; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -126,15 +126,14 @@ public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
* |
|
|
|
* |
|
|
|
* @param searchKey |
|
|
|
* @param searchKey |
|
|
|
* @param cellModel |
|
|
|
* @param cellModel |
|
|
|
* @param searchCount |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void addModel(String searchKey, AlphaCellModel cellModel, int searchCount) { |
|
|
|
public void addModel(String searchKey, AlphaCellModel cellModel) { |
|
|
|
try { |
|
|
|
try { |
|
|
|
initWriter(); |
|
|
|
initWriter(); |
|
|
|
Document doc = new Document(); |
|
|
|
Document doc = new Document(); |
|
|
|
doc.add(new StringField("searchKey", searchKey, Field.Store.YES)); |
|
|
|
doc.add(new StringField("searchKey", searchKey, Field.Store.YES)); |
|
|
|
doc.add(new StringField("cellModel", cellModel.ModelToJson().toString(), Field.Store.YES)); |
|
|
|
doc.add(new StringField("cellModel", cellModel.ModelToJson().toString(), Field.Store.YES)); |
|
|
|
doc.add(new IntField("searchCount", searchCount, Field.Store.YES)); |
|
|
|
doc.add(new LongField("time", System.currentTimeMillis(), Field.Store.YES)); |
|
|
|
writeDoc(doc); |
|
|
|
writeDoc(doc); |
|
|
|
} catch (JSONException e) { |
|
|
|
} catch (JSONException e) { |
|
|
|
FineLoggerFactory.getLogger().error("add document error: " + e.getMessage()); |
|
|
|
FineLoggerFactory.getLogger().error("add document error: " + e.getMessage()); |
|
|
@ -170,7 +169,7 @@ public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
IndexSearcher searcher = new IndexSearcher(indexReader); |
|
|
|
IndexSearcher searcher = new IndexSearcher(indexReader); |
|
|
|
//构建排序字段
|
|
|
|
//构建排序字段
|
|
|
|
SortField[] sortField = new SortField[1]; |
|
|
|
SortField[] sortField = new SortField[1]; |
|
|
|
sortField[0] = new SortField("searchCount", SortField.Type.INT, true); |
|
|
|
sortField[0] = new SortField("time", SortField.Type.LONG, true); |
|
|
|
Sort sortKey = new Sort(sortField); |
|
|
|
Sort sortKey = new Sort(sortField); |
|
|
|
String searchField = "searchKey"; |
|
|
|
String searchField = "searchKey"; |
|
|
|
Term term = new Term(searchField, key); |
|
|
|
Term term = new Term(searchField, key); |
|
|
@ -186,13 +185,11 @@ public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
UpdateAction action = UpdateActionManager.getUpdateActionManager().getActionByName(model.getName()); |
|
|
|
UpdateAction action = UpdateActionManager.getUpdateActionManager().getActionByName(model.getName()); |
|
|
|
if (action != null) { |
|
|
|
if (action != null) { |
|
|
|
((ActionModel) model).setAction(action); |
|
|
|
((ActionModel) model).setAction(action); |
|
|
|
recentModelList.add(model); |
|
|
|
addModel(model); |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
recentModelList.add(model); |
|
|
|
addModel(model); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
FineLoggerFactory.getLogger().error("local search error: " + e.getMessage()); |
|
|
|
FineLoggerFactory.getLogger().error("local search error: " + e.getMessage()); |
|
|
@ -201,5 +198,11 @@ public class RecentSearchManager implements AlphaFineSearchProvider { |
|
|
|
return recentModelList; |
|
|
|
return recentModelList; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private void addModel(AlphaCellModel model) { |
|
|
|
|
|
|
|
if (!recentModelList.contains(model)) { |
|
|
|
|
|
|
|
recentModelList.add(model); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|