Subversion Repositories SmartDukaan

Rev

Rev 20851 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2171 rajveer 1
/**
2
 * 
3
 */
4
package in.shop2020.util;
5
 
6
import in.shop2020.metamodel.core.Bullet;
7
import in.shop2020.metamodel.core.Entity;
8
import in.shop2020.metamodel.core.Feature;
9
import in.shop2020.metamodel.core.PrimitiveDataObject;
10
import in.shop2020.metamodel.core.Slide;
11
import in.shop2020.metamodel.definitions.BulletDefinition;
12
import in.shop2020.metamodel.definitions.Catalog;
13
import in.shop2020.metamodel.definitions.Category;
14
import in.shop2020.metamodel.definitions.DatatypeDefinition;
15
import in.shop2020.metamodel.definitions.DefinitionsContainer;
16
import in.shop2020.metamodel.definitions.FacetDefinition;
17
import in.shop2020.metamodel.definitions.FacetSlideDefinition;
18
import in.shop2020.metamodel.definitions.FeatureDefinition;
4056 rajveer 19
import in.shop2020.metamodel.util.CreationUtils;
2171 rajveer 20
import in.shop2020.metamodel.util.ExpandedBullet;
21
import in.shop2020.metamodel.util.ExpandedBulletDefinition;
22
import in.shop2020.metamodel.util.ExpandedEntity;
23
import in.shop2020.metamodel.util.ExpandedFacetDefinition;
24
import in.shop2020.metamodel.util.ExpandedFacetSlideDefinition;
25
import in.shop2020.metamodel.util.ExpandedFeature;
26
import in.shop2020.metamodel.util.ExpandedFeatureDefinition;
27
import in.shop2020.metamodel.util.ExpandedSlide;
28
 
29
import java.io.File;
30
import java.io.FileOutputStream;
31
import java.util.ArrayList;
32
import java.util.HashMap;
33
import java.util.List;
34
import java.util.Map;
35
 
6842 amit.gupta 36
import javax.xml.transform.Transformer;
2171 rajveer 37
import javax.xml.transform.TransformerFactory;
38
import javax.xml.transform.stream.StreamResult;
39
import javax.xml.transform.stream.StreamSource;
40
 
41
import org.apache.commons.lang.StringEscapeUtils;
42
import org.apache.commons.lang.StringUtils;
43
 
44
 
45
/**
46
 * Command line utility to convert IR Definitions into IR Data and IR Meta-data
47
 * 
48
 * @author rajveer
49
 *
50
 */
51
public class NewIR {
52
 
53
	/**
54
	 * Level - 4, 8, 12, 16
55
	 */
56
	private String[] xmlIndentation = {"", "    ", "        ", "            ","                "};
57
 
58
	private String[] xmlTabIndentation = {"", "\t", "\t\t", "\t\t\t", "\t\t\t\t", "\t\t\t\t\t", "\t\t\t\t\t\t"};
59
 
60
	private Map<Long, List<String>> facetIDFacetValues = new HashMap<Long, List<String>>();
5078 amit.gupta 61
	private static Map<String, Map<String, String>> synonymMap = null;
2171 rajveer 62
 
5078 amit.gupta 63
	static {
64
		try {
65
			synonymMap = CreationUtils.getSynonyms();
66
		}catch(Exception e){
67
			e.printStackTrace();
68
		}
69
	}
70
 
2367 rajveer 71
	List<Entity> entities;
2171 rajveer 72
 
73
	/**
74
	 * @param args
75
	 * @throws Exception 
76
	 */
77
	public static void main(String[] args) throws Exception {
78
		/*
79
		NewIR ir = new NewIR();
80
		ir.exportIRData();
81
		ir.transformIrDataXMLtoSolrXML();
82
		ir.exportIRMetaData();
4056 rajveer 83
		ir.transformIrMetaDataXMLtoSolrSchemaXML();
84
		ir.transformIrMetaDataXMLtoSolrCatchAllXML();
2171 rajveer 85
		*/
86
	}
87
 
88
	/**
89
	 * 
90
	 * @param entityIdItemMap
91
	 */
2367 rajveer 92
	public NewIR(List<Entity> entities){
93
	    this.entities = entities;
2171 rajveer 94
	}
95
 
96
 
97
	/**
98
	 * 
99
	 * @param inXMLFilename
100
	 * @param xslFilename
101
	 * @param outXMLFilename
102
	 * @throws Exception 
103
	 */
104
 
105
	public void xsltTransformation(String inXMLFilename, String xslFilename, String outXMLFilename) throws Exception{
106
		// Use the static TransformerFactory.newInstance() method to instantiate 
107
		  // a TransformerFactory. The javax.xml.transform.TransformerFactory 
108
		  // system property setting determines the actual class to instantiate --
109
		  // org.apache.xalan.transformer.TransformerImpl.
110
		TransformerFactory tFactory = TransformerFactory.newInstance();
111
 
112
			// Use the TransformerFactory to instantiate a Transformer that will work with  
113
			// the stylesheet you specify. This method call also processes the stylesheet
114
		  // into a compiled Templates object.
115
		Transformer transformer = tFactory.newTransformer(new StreamSource(xslFilename));
116
 
117
			// Use the Transformer to apply the associated Templates object to an XML document
118
			// (foo.xml) and write the output to a file (foo.out).
119
		transformer.transform(new StreamSource(inXMLFilename), new StreamResult(new FileOutputStream(outXMLFilename)));
120
 
121
	}
122
 
123
	/**
124
	 * 
125
	 * @throws Exception
126
	 */
2367 rajveer 127
	public void transformIrDataXMLtoSolrXML(long catalogId) throws Exception {
128
		String irDataFilename = Utils.EXPORT_PATH + "xml/intermediate/" + catalogId +  "_irdata.xml";
129
		String irSolrDataFilename = Utils.EXPORT_PATH + "xml/final/" +  catalogId +  "_irdata_solr.xml";
2171 rajveer 130
		String irXslFilename = "src/xsl/irdata_solrdata.xsl";
131
		System.out.println(irSolrDataFilename);
132
		File solrFile = new File(irSolrDataFilename);
133
		if(!solrFile.exists()){
134
			solrFile.createNewFile();
135
		}
136
		xsltTransformation(irDataFilename, irXslFilename, irSolrDataFilename);
137
	}
138
 
139
 
140
	/**
141
	 * 
142
	 * @throws Exception
143
	 */
4056 rajveer 144
	public void transformIrMetaDataXMLtoSolrSchemaXML() throws Exception {
2367 rajveer 145
		String irDataFilename = Utils.EXPORT_PATH  + "xml/intermediate/" + "irmetadata.xml";
146
		String irSolrDataFilename = Utils.EXPORT_PATH + "xml/final/" + "irmetadata_solrschema.xml";
2171 rajveer 147
		String irXslFilename = "src/xsl/irmetadata_solrschema.xsl";
148
		System.out.println(irSolrDataFilename);
149
		File solrFile = new File(irSolrDataFilename);
150
		if(!solrFile.exists()){
151
			solrFile.createNewFile();
152
		}
153
		xsltTransformation(irDataFilename, irXslFilename, irSolrDataFilename);
154
	}
155
 
156
 
157
 
158
	/**
159
	 * 
160
	 * @throws Exception
161
	 */
4056 rajveer 162
	public void transformIrMetaDataXMLtoSolrCatchAllXML() throws Exception {
163
		String irDataFilename = Utils.EXPORT_PATH  + "xml/intermediate/" + "irmetadata.xml";
164
		String irSolrDataFilename = Utils.EXPORT_PATH + "xml/final/" + "irmetadata_catchall.xml";
165
		String irXslFilename = "src/xsl/irmetadata_catchall.xsl";
166
		System.out.println(irSolrDataFilename);
167
		File solrFile = new File(irSolrDataFilename);
168
		if(!solrFile.exists()){
169
			solrFile.createNewFile();
170
		}
171
		xsltTransformation(irDataFilename, irXslFilename, irSolrDataFilename);
172
	}
173
 
174
	/**
175
	 * 
176
	 * @throws Exception
177
	 */
2171 rajveer 178
	public void exportIRMetaData() throws Exception {
179
		DefinitionsContainer defs = 
180
			Catalog.getInstance().getDefinitionsContainer();
181
 
182
		// <IRMetaData>
183
		List<String> xmlSnippets = new ArrayList<String>();
184
		xmlSnippets.add("<IRMetaData>");
185
		xmlSnippets.add("\t<Facets>");
186
 
187
		IRMetaDataJythonWrapper jy = new IRMetaDataJythonWrapper();
188
 
189
		// Iterate over all facet definitions
190
		Map<Long, FacetDefinition> facetDefs = defs.getFacetDefinitions();
191
		for(FacetDefinition facetDef : facetDefs.values()) {
192
 
193
			jy.reset();
194
			jy.initialize();
195
 
196
			ExpandedFacetDefinition expFacetDef = 
197
				new ExpandedFacetDefinition(facetDef);
198
 
199
			jy.setExpandedFacetDefinition(expFacetDef);
200
 
201
			jy.executeRule();
202
 
203
			String facetXMLSnip = jy.getXMLSnippet();
204
			Utils.info("facetXMLSnip=" + facetXMLSnip);
205
 
206
			xmlSnippets.add(facetXMLSnip);
207
 
208
		}
209
		xmlSnippets.add("\t</Facets>");
210
 
211
 
212
 
213
		xmlSnippets.add("\n\t<Properties>");
214
 
215
		// Iterate over all feature definitions
216
		Map<Long, FeatureDefinition> featureDefs = defs.getFeatureDefinitions();
217
		for(FeatureDefinition featureDef : featureDefs.values()) {
218
			String propertyXMLSnip = this.getPropertyXMLSnippet(featureDef);
219
			Utils.info("propertyXMLSnip=" + propertyXMLSnip);
220
 
221
			xmlSnippets.add(propertyXMLSnip);
222
		}
223
		xmlSnippets.add("\t</Properties>");
224
 
225
		xmlSnippets.add("\n\t<Categories>");
226
 
227
		Category rootCategory = defs.getCategory(Catalog.getInstance().getRootCategory().getID());
228
		String categoryXMLSnip = this.getCategoryXMLSnippet(rootCategory, 2);
229
		Utils.info("categoryXMLSnip=" + categoryXMLSnip);
230
 
231
 
232
		xmlSnippets.add("\t</Categories>");
233
 
234
		// </IRMetaData>
235
		xmlSnippets.add("</IRMetaData>");
236
 
237
		String irMetaDataXML = StringUtils.join(xmlSnippets, "\n");
238
		Utils.info(irMetaDataXML);
239
 
240
		// Write it to file
2367 rajveer 241
		String irMetaDataFilename = Utils.EXPORT_PATH +  "xml/intermediate/" + "irmetadata.xml";
2171 rajveer 242
		DBUtils.store(irMetaDataXML, irMetaDataFilename);
243
	}
244
 
245
	/**
246
	 * 
247
	 * @param category
248
	 * @return
249
	 * @throws Exception 
250
	 */
251
	private String getCategoryXMLSnippet(Category category, int indent) 
252
		throws Exception {
253
 
254
		DefinitionsContainer defs = 
255
			Catalog.getInstance().getDefinitionsContainer();
256
 
257
		String xmlSnip = this.xmlTabIndentation[indent] + "<Category";
258
 
259
		xmlSnip += " ID=\"" + category.getID() + "\"";
260
		xmlSnip += " label=\"" + category.getLabel() + "\"";
261
		xmlSnip += ">\n";
262
 
263
		List<Category> children = category.getChildrenCategory();
264
 
265
		if(children != null) {
266
			for(Category child : children) {
267
				xmlSnip += this.getCategoryXMLSnippet(child, indent+1);
268
			}
269
		}
270
		else {
271
			// Only leaf category will have entities
272
			// Facet IDs
273
			xmlSnip += this.xmlTabIndentation[indent+1] + "<Facets>\n";
274
 
275
			List<Long> facetDefIDs = 
276
				defs.getFacetDefinitionIDs(category.getID());
277
			//Utils.info("facetDefIDs=" + facetDefIDs);
278
 
279
 
280
 
281
			if( facetDefIDs != null && !facetDefIDs.isEmpty() ){
282
					for(Long facetDefID : facetDefIDs) {
283
					xmlSnip += this.xmlTabIndentation[indent+2] + 
284
						"<FacetID>" + facetDefID + "</FacetID>\n";
285
				}
286
			}
287
 
288
 
289
			xmlSnip += this.xmlTabIndentation[indent+1] + "</Facets>\n\n";
290
 
291
			// Feature IDs
292
			xmlSnip += this.xmlTabIndentation[indent+1] + "<Properties>\n";
293
 
294
			List<Long> featureDefIDs = 
295
				defs.getFeatureDefinitionIDs(category.getID());
296
			//Utils.info("featureDefIDs=" + featureDefIDs);
297
 
298
			for(Long featureDefID : featureDefIDs) {
299
				xmlSnip += this.xmlTabIndentation[indent+2] + 
300
					"<FeatureID>" + featureDefID + "</FeatureID>\n";
301
			}
302
 
303
			xmlSnip += this.xmlTabIndentation[indent+1] + "</Properties>\n";
304
		}
305
 
306
		xmlSnip += this.xmlTabIndentation[indent] + "</Category>\n";
307
 
308
		return xmlSnip;
309
	}
310
 
311
	/**
312
	 * 
313
	 * @param featureDef
314
	 * @return
315
	 * @throws Exception 
316
	 */
317
	private String getPropertyXMLSnippet(FeatureDefinition featureDef) 
318
		throws Exception {
319
		String xmlSnip = "\t\t<Property";
320
 
321
		xmlSnip += " ID=\"" + featureDef.getID() + "\"";
322
		xmlSnip += " label=\"" + featureDef.getLabel() + "\"";
323
 
324
		ExpandedFeatureDefinition expFeatureDef = 
325
			new ExpandedFeatureDefinition(featureDef);
326
 
327
		ExpandedBulletDefinition expBulletDef = 
328
			expFeatureDef.getExpandedBulletDefinition();
329
 
330
		String datatype = "string";
331
		if(expBulletDef.isComposite() || expBulletDef.isEnumerated()) {
332
			datatype = "string";
333
		}
334
		else {
335
			DatatypeDefinition datatypeDef = 
336
				expBulletDef.getDatatypeDefinition();
337
 
338
			datatype = datatypeDef.getName();
339
 
340
			// REVISIT
341
			if(datatype.equals("hours_mins") || datatype.equals("days_hours") ||
342
					datatype.equals("hours_mins") || 
343
					datatype.equals("days_hours")) {
344
				datatype = "string";
345
			}
346
		}
347
		xmlSnip += " datatype=\"" + datatype + "\"";
348
 
349
		String multivalue = "false";
350
		if (expBulletDef.isMultivalue()) {
351
			multivalue = "true";
352
		}
353
		xmlSnip += " isMultivalue=\"" + multivalue + "\"";
354
 
355
		xmlSnip += "/>";
356
		return xmlSnip;
357
	}
358
 
359
 
360
 
361
	private String processFacet(FacetDefinition facet, ExpandedSlide expSlide, ExpandedFacetSlideDefinition expFacetSlideDef, Long facetDefID) throws Exception {
362
 
363
		IRDataJythonWrapper jw = new IRDataJythonWrapper();
364
 
365
		jw.setExpandedSlide(expSlide);
366
		jw.setExpandedFacetSlideDefinition(expFacetSlideDef);
367
 
368
		// Execute Python script
369
		jw.executeRule();
370
 
371
		//FIXME
372
		// Normalize
373
//		if(defs.needsNormalization(feature.getFeatureDefinitionID())) {
374
//			Utils.info("needsNormalization feature=" + feature.getFeatureDefinitionID());
375
//			
376
//			feature = this.normalize(feature);
377
//		}
378
 
379
 
380
 
381
		List<Object> values = (List<Object>)jw.getValues();
382
		Utils.info("values=" + values);
383
 
384
		// Append to facet values
385
 
386
		Utils.info("facetDefID=" + facetDefID);
387
 
388
		List<String> facetValues = this.facetIDFacetValues.get(
389
				new Long(facetDefID));
390
 
391
		if(facetValues == null) {
392
			facetValues = new ArrayList<String>();
393
			this.facetIDFacetValues.put(new Long(facetDefID), facetValues);
394
		}
395
 
396
		if(values != null) {
397
			for(Object value : values) {
398
				String strValue = value.toString();
399
 
400
				if(!facetValues.contains(strValue)) {
401
					facetValues.add(strValue);
402
				}
403
			}
404
		}
405
 
406
		ExpandedFacetDefinition expFacet = new ExpandedFacetDefinition(facet);
407
		// Parse returned Python list
408
		String facetXMLSnip = null;
409
		if(values != null) {
410
			facetXMLSnip = this.getFacetXMLSnippet(expFacet, values, 2);
411
		}
412
 
413
		Utils.info("0 facetXMLSnip=" + facetXMLSnip);
414
		return facetXMLSnip;
415
	}
416
 
417
 
418
 
419
	/**
420
	 * 
421
	 * @param expFacetDef
422
	 * @param values
423
	 * @param indent
424
	 * @return String XML Snippet
425
	 */
426
	private String getFacetXMLSnippet(ExpandedFacetDefinition expFacetDef,	List<Object> values, int indent) {
427
 
428
		// <Facet Label="Form Factor">
429
		List<String> xmlSnippet = new ArrayList<String>();
430
		String target = expFacetDef.getTarget();
431
 
432
		xmlSnippet.add(this.xmlIndentation[indent] + "<Facet ID=\"" + expFacetDef.getID() + "\" Label=\"" + target + "\">");
433
 
434
		//<Value>Candybar</Value>
435
		for(Object value : values) {
8266 amit.gupta 436
			xmlSnippet.add(this.xmlIndentation[indent + 1] + "<Value>" + StringEscapeUtils.escapeXml(value.toString()) + "</Value>");
2171 rajveer 437
		}
438
 
439
		//</Facet>
440
		xmlSnippet.add(this.xmlIndentation[indent] + "</Facet>");
441
 
442
		return StringUtils.join(xmlSnippet, "\n");
443
	}
444
 
445
	/**
446
	 * @throws Exception 
447
	 * 
448
	 */
449
	public void exportIRData() throws Exception {
450
		DefinitionsContainer defs = Catalog.getInstance().getDefinitionsContainer();
451
		Map<Long, List<FacetDefinition>> slideFacets = defs.getSlideFacetDefinitions();
452
 
2367 rajveer 453
		for(Entity entity: entities){
18767 amit.gupta 454
			try{
15843 amit.gupta 455
			Utils.info(entity.getID());
2367 rajveer 456
			// <IRData>
457
			List<String> irDataXMLSnippets = new ArrayList<String>();
458
			irDataXMLSnippets.add("<IRData>");
459
		    long entityID = entity.getID();
460
 
461
		    //Setting minPrice zero because irdatarule requires float. It wont accept string 
462
		    double minPrice = 0;
2171 rajveer 463
			ExpandedEntity expEntity = new ExpandedEntity(entity);
464
			long categoryID = expEntity.getCategoryID();
465
			List<ExpandedSlide> expSlides = expEntity.getExpandedSlides();
466
 
467
			List<String> entityXMLSnippets = new ArrayList<String>();
468
			entityXMLSnippets.add(this.xmlIndentation[1] + "<Entity ID=\""+ entityID +"\">");
469
 
470
			String parentCategory = expEntity.getCategory().getLabel();
471
			entityXMLSnippets.add(this.xmlIndentation[2] + "<Category>" + StringEscapeUtils.escapeXml(parentCategory) + "</Category>");
472
 
473
 
474
			String title = StringEscapeUtils.escapeXml(expEntity.getBrand()) + " " + StringEscapeUtils.escapeXml(expEntity.getModelName()) + 
475
				((expEntity.getModelNumber() != null) ? (" " +	StringEscapeUtils.escapeXml(expEntity.getModelNumber())): "");
476
 
8261 amit.gupta 477
			entityXMLSnippets.add(this.xmlIndentation[2] +	"<Title>" + title + "</Title>");
2171 rajveer 478
 
5367 rajveer 479
			//Boost titles for the mobile phones, laptops and tablets only
480
			if(expEntity.getCategory().getParentCategory().isHasAccessories() || expEntity.getCategory().getParentCategory().getID() == Utils.TABLETS_CATEGORY || expEntity.getCategory().getParentCategory().getID() == Utils.LAPTOPS_CATEGORY){
2171 rajveer 481
			    entityXMLSnippets.add(this.xmlIndentation[2] +   "<Boost>" + 5 + "</Boost>");
482
			}else{
483
			    entityXMLSnippets.add(this.xmlIndentation[2] +   "<Boost>" + 0 + "</Boost>");
484
			}
485
 
486
 
487
			String subCategory = defs.getCategory(categoryID).getLabel();
488
			String  mainCategory = defs.getCategory(categoryID).getParentCategory().getLabel();
489
 
2500 rajveer 490
			long mainCatId = defs.getCategory(categoryID).getParentCategory().getID();
491
			if(mainCatId == Utils.ROOT_CATAGOEY){
492
				mainCategory = subCategory;
493
			}
494
 
2171 rajveer 495
			String brand = expEntity.getBrand();
496
 
497
 
498
 
499
			//Create zero slide
6602 amit.gupta 500
			Slide zeroSlide = createZeroSlide(brand, minPrice, mainCategory, subCategory, "In Stock");
2171 rajveer 501
			ExpandedSlide expandedZeroSlide = new ExpandedSlide(zeroSlide);
502
			expSlides.add(expandedZeroSlide);
503
 
504
			for(ExpandedSlide expSlide: expSlides){
505
				System.out.println(expSlide.getSlideDefinitionID());
506
				if(slideFacets.containsKey(expSlide.getSlideDefinitionID())){
507
					List<FacetDefinition> facets = slideFacets.get(expSlide.getSlideDefinitionID());
508
					for(FacetDefinition facet: facets){
509
						for(FacetSlideDefinition facetSlides: facet.getFacetSlideDefinitions()){
510
							if(facetSlides.getSlideDefinitionID() != expSlide.getSlideDefinitionID()){continue;}
511
							ExpandedFacetSlideDefinition expFacetSlideDef = new ExpandedFacetSlideDefinition(facetSlides) ;
512
							for(ExpandedFeature expFeature: expSlide.getExpandedFeatures()){
513
								if(defs.needsNormalization(expFeature.getFeatureDefinitionID())) {
514
									Utils.info("needsNormalization feature=" + expFeature.getFeatureDefinitionID());
515
									//expFeature = this.normalize(expFeature);
516
								}
517
							}
518
							entityXMLSnippets.add(processFacet(facet, expSlide, expFacetSlideDef, facet.getID()));
519
						}
520
					}
521
				}
522
			}
523
 
524
			// Collect PROPERTIES
5074 amit.gupta 525
			List<Long>facetFeatureIds = new ArrayList<Long>();
526
			facetFeatureIds.add(Utils.BRAND_FEATURE_DEFINITION_ID);
527
			facetFeatureIds.add(Utils.MAIN_CAT_FEATURE_DEFINITION_ID);
528
			facetFeatureIds.add(Utils.SUB_CAT_FEATURE_DEFINITION_ID);
529
			facetFeatureIds.add(Utils.PRICE_FEATURE_DEFINITION_ID);
6842 amit.gupta 530
			facetFeatureIds.add(Utils.TAG_FEATURE_DEFINITION_ID);
531
 
5074 amit.gupta 532
			String propertiesXMLSnippetsStr = this.getPropertiesXMLSnippet(expEntity, facetFeatureIds, 2);
2171 rajveer 533
			entityXMLSnippets.add(propertiesXMLSnippetsStr);
534
			entityXMLSnippets.add(this.xmlIndentation[1] + "</Entity>");
535
			System.out.println(entityXMLSnippets);
536
			irDataXMLSnippets.addAll(entityXMLSnippets);
2367 rajveer 537
			irDataXMLSnippets.add("</IRData>");
538
			String irDataXML = StringUtils.join(irDataXMLSnippets, "\n");
539
			Utils.info(irDataXML);
540
 
541
			// Write it to file
542
			String irDataFilename = Utils.EXPORT_PATH + "xml/intermediate/" + entityID + "_irdata.xml";
543
			DBUtils.store(irDataXML, irDataFilename);
544
			transformIrDataXMLtoSolrXML(entityID);
18767 amit.gupta 545
		} catch (Exception e){
546
			Utils.info("Could not process entity:" + entity.getID());
19109 amit.gupta 547
			e.printStackTrace();
2171 rajveer 548
		}
18767 amit.gupta 549
		}
2171 rajveer 550
 
551
 
552
 
2367 rajveer 553
 
2171 rajveer 554
	}
2488 rajveer 555
 
6602 amit.gupta 556
	private Slide createZeroSlide(String brand, double price, String mainCategory, String subCategory, String availability) {
2488 rajveer 557
		Slide zeroSlide = new Slide(Utils.ZERO_SLIDE_DEFINITION_ID);
2171 rajveer 558
		List<Feature> zeroSlideFeatures = new ArrayList<Feature>();
559
 
2488 rajveer 560
		Feature brandFeature = new Feature(Utils.BRAND_FEATURE_DEFINITION_ID);
2171 rajveer 561
		Bullet brandBullet = new Bullet(new PrimitiveDataObject(brand));
562
		List<Bullet> brandBullets = new ArrayList<Bullet>();
563
		brandBullets.add(brandBullet);
564
		brandFeature.setBullets(brandBullets);
565
		zeroSlideFeatures.add(brandFeature);
566
 
6602 amit.gupta 567
 
568
		Feature availabilityFeature = new Feature(Utils.AVAILABILITY_FEATURE_DEFINITION_ID);
569
		Bullet availabilityBullet = new Bullet(new PrimitiveDataObject(availability));
570
		List<Bullet> availabilityBullets = new ArrayList<Bullet>();
6656 amit.gupta 571
		availabilityBullets.add(availabilityBullet);
572
		availabilityFeature.setBullets(availabilityBullets);
6602 amit.gupta 573
		zeroSlideFeatures.add(availabilityFeature);
574
 
2171 rajveer 575
		Feature priceFeature = new Feature(120128);
576
		Bullet priceBullet = new Bullet(new PrimitiveDataObject((new Double(price)).toString()));
577
		List<Bullet> priceBullets = new ArrayList<Bullet>();
578
		priceBullets.add(priceBullet);
579
		priceFeature.setBullets(priceBullets);
580
		zeroSlideFeatures.add(priceFeature);
581
 
582
		Feature mainCategoryFeature = new Feature(120123);
583
		Bullet mainCategoryBullet = new Bullet(new PrimitiveDataObject(mainCategory));
584
		List<Bullet> mainCategoryBullets = new ArrayList<Bullet>();
585
		mainCategoryBullets.add(mainCategoryBullet);
586
		mainCategoryFeature.setBullets(mainCategoryBullets);
587
		zeroSlideFeatures.add(mainCategoryFeature);
588
 
589
		Feature subCategoryFeature = new Feature(120124);
590
		Bullet subCategoryBullet = new Bullet(new PrimitiveDataObject(subCategory));
591
		List<Bullet> subCategoryBullets = new ArrayList<Bullet>();
592
		subCategoryBullets.add(subCategoryBullet);
593
		subCategoryFeature.setBullets(subCategoryBullets);
594
		zeroSlideFeatures.add(subCategoryFeature);
595
 
5074 amit.gupta 596
 
597
		try {
5078 amit.gupta 598
 
5074 amit.gupta 599
			String brandSynonyms = synonymMap.get("brand").get(brand);
600
			String subCategorySynonyms = synonymMap.get("subcategory").get(subCategory);
601
 
602
			if(brandSynonyms != null){
603
				Feature brandSynonymFeature = new Feature(Utils.BRAND_SYNONYMS_FEATURE_DEFINITION_ID);
604
				List<Bullet> brandSynonymBullets = new ArrayList<Bullet>();
605
				for(String brSyn : brandSynonyms.split(",")){
606
					Bullet brandSynonymBullet = new Bullet(new PrimitiveDataObject(brSyn));
607
					brandSynonymBullets.add(brandSynonymBullet);
608
				}
609
				brandSynonymFeature.setBullets(brandSynonymBullets);
610
				zeroSlideFeatures.add(brandSynonymFeature);
611
			}
612
 
613
			if(subCategorySynonyms != null){
614
				Feature subCategorySynonymFeature = new Feature(Utils.SUB_CATEGORY_SYNONYMS_FEATURE_DEFINITION_ID);
615
				List<Bullet> subCategorySynonymBullets = new ArrayList<Bullet>();
616
				for(String subCatSyn : subCategorySynonyms.split(",")){
617
					Bullet subCategorySynonymBullet = new Bullet(new PrimitiveDataObject(subCatSyn));
618
					subCategorySynonymBullets.add(subCategorySynonymBullet);
619
				}
620
				subCategorySynonymFeature.setBullets(subCategorySynonymBullets);
621
				zeroSlideFeatures.add(subCategorySynonymFeature);
622
			}
623
		} catch (Exception e) {
624
			e.printStackTrace();
625
		}
626
 
627
 
628
 
2171 rajveer 629
		zeroSlide.setFeatures(zeroSlideFeatures);
630
		return zeroSlide;
631
	}
632
 
633
 
634
	/**
635
	 * 
636
	 * @param feature
637
	 * @return Feature
638
	 * @throws Exception 
639
	 */
640
	private ExpandedFeature normalize(ExpandedFeature expFeature) throws Exception {
641
		BulletDefinition bulletDef = 
642
			expFeature.getFeatureDefinition().getBulletDefinition();
643
 
644
		ExpandedBulletDefinition expBulletDef = new ExpandedBulletDefinition(
645
				bulletDef);
646
 
647
		if(expBulletDef.isPrimitive()) {
648
			PrimitiveNormalizationJythonWrapper jy = 
649
				new PrimitiveNormalizationJythonWrapper();
650
 
651
			jy.setExpandedFeature(expFeature);
652
 
653
			jy.excuteRule();
654
 
655
			String newValue = jy.getNewValue();
656
			long newUnitID = jy.getNewUnitID();
657
 
658
			List<Bullet> newBullets = new ArrayList<Bullet>();
659
			Bullet newBullet = new Bullet(new PrimitiveDataObject(newValue));
660
			newBullet.setUnitID(newUnitID);
661
 
662
			newBullets.add(newBullet);
663
 
664
			expFeature.setBullets(newBullets);
665
		}
666
		else {
667
			Utils.severe("Normalization not defined for non-primitives");
668
		}
669
 
670
		return expFeature;
671
	}
672
 
673
	/**
674
	 * 
675
	 * @param expEntity
676
	 * @param facetFeatureIDs
677
	 * @param indent
678
	 * @return
679
	 */
680
	private String getPropertiesXMLSnippet(ExpandedEntity expEntity, 
681
			List<Long> facetFeatureIDs, int indent) {
682
 
683
		List<String> xmlSnippet = new ArrayList<String>();
684
 
685
		// Collect all free-form content here
686
		List<String> ffc = new ArrayList<String>();
687
 
688
		// Features
689
		List<ExpandedSlide> expSlides = expEntity.getExpandedSlides();
690
 
691
		for(ExpandedSlide expSlide : expSlides) {
5074 amit.gupta 692
 
2171 rajveer 693
			List<ExpandedFeature> expFeatures = expSlide.getExpandedFeatures();
694
 
695
			if(expSlide.getFreeformContent() != null) {
696
				ffc.add(expSlide.getFreeformContent().getFreeformText());
697
			}
698
 
699
			if(expFeatures == null) {
700
				continue;
701
			}
702
 
703
			for(ExpandedFeature expFeature : expFeatures) {
704
				Long featureDefID = 
705
					new Long(expFeature.getFeatureDefinitionID());
706
 
707
				// FFC at feature level
708
				if(expFeature.getFreeformContent() != null) {
709
					ffc.add(expFeature.getFreeformContent().getFreeformText());
710
				}
711
 
712
				// Exclude those who are already covered as facets
5019 amit.gupta 713
				// and the ones that are marked false for indexing
714
				if(facetFeatureIDs.contains(featureDefID) || !expFeature.getFeatureDefinition().isIndexed()) {
2171 rajveer 715
					continue;
716
				}
6842 amit.gupta 717
 
2171 rajveer 718
				List<ExpandedBullet> expBullets = 
719
					expFeature.getExpandedBullets();
720
 
721
				if(expBullets == null) {
722
					continue;
723
				}
724
 
725
				//<Property Label="">
726
				xmlSnippet.add(this.xmlIndentation[indent] + 
727
						"<Property ID=\"" + expFeature.getFeatureDefinitionID() 
728
						+ "\" Label=\"" + StringEscapeUtils.escapeXml(
729
								expFeature.getFeatureDefinition().getLabel()) + 
730
						"\">");
731
 
732
				//<Value></Value>
733
				for(ExpandedBullet bullet : expBullets) {
4270 rajveer 734
					if(bullet.getValue().trim().equalsIgnoreCase("")){
735
						continue;
736
					}
2171 rajveer 737
					// FFC at bullet level
738
					if(bullet.getFreeformContent() != null) {
739
						ffc.add(bullet.getFreeformContent().getFreeformText());
740
					}
741
 
742
					xmlSnippet.add(this.xmlIndentation[indent + 1] + "<Value>" + 
743
							StringEscapeUtils.escapeXml(bullet.getValue()) + 
744
							"</Value>");
745
				}
746
 
747
				//</Property>
748
				xmlSnippet.add(this.xmlIndentation[indent] + "</Property>");
749
			}
750
		}
751
 
752
		// FFC as Label="Free-form Content"
753
		if(!ffc.isEmpty()) {
754
			xmlSnippet.add(this.xmlIndentation[indent] + 
755
					"<Property ID=\"000000\" Label=\"Free-form Content\">");
756
 
757
			for(String f : ffc) {
758
				if(f != null) {
759
					f = StringEscapeUtils.escapeXml(f);
760
 
761
					xmlSnippet.add(this.xmlIndentation[indent + 1] + "<Value>" + 
762
						f + "</Value>");
763
				}
764
			}
765
 
766
			xmlSnippet.add(this.xmlIndentation[indent] + "</Property>");
767
		}
768
 
769
		// Children slides
770
		// TODO
5074 amit.gupta 771
 
2171 rajveer 772
		return StringUtils.join(xmlSnippet, "\n");
773
	}
774
 
775
}