📄 productconfigworker.java
字号:
/* * $Id: ProductConfigWorker.java 5472 2005-08-08 06:39:58Z jacopo $ * * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. */package org.ofbiz.product.config;import javax.servlet.http.HttpServletRequest;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.UtilHttp;import org.ofbiz.entity.GenericDelegator;import org.ofbiz.entity.GenericValue;import org.ofbiz.product.catalog.CatalogWorker;import org.ofbiz.product.store.ProductStoreWorker;import org.ofbiz.service.LocalDispatcher;import org.ofbiz.base.util.cache.UtilCache;/** * Product Config Worker class to reduce code in templates. * * @author <a href="mailto:jaz@ofbiz.org">Andy Zeneski</a> * @author <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @author <a href="mailto:tiz@sastau.it">Jacopo Cappellato</a> * */public class ProductConfigWorker { public static final String module = ProductConfigWorker.class.getName(); public static final String resource = "ProductUiLabels"; public static final String SEPARATOR = "::"; // cache key separator public static UtilCache productConfigCache = new UtilCache("product.config", true); // use soft reference to free up memory if needed public static ProductConfigWrapper getProductConfigWrapper(String productId, String currencyUomId, HttpServletRequest request) { ProductConfigWrapper configWrapper = null; String catalogId = CatalogWorker.getCurrentCatalogId(request); String webSiteId = CatalogWorker.getWebSiteId(request); String productStoreId = ProductStoreWorker.getProductStoreId(request); GenericValue autoUserLogin = (GenericValue)request.getSession().getAttribute("autoUserLogin"); try { /* caching: there is one cache created, "product.config" Each product's config wrapper is cached with a key of * productId::catalogId::webSiteId::currencyUomId, or whatever the SEPARATOR is defined above to be. */ String cacheKey = productId + SEPARATOR + productStoreId + SEPARATOR + catalogId + SEPARATOR + webSiteId + SEPARATOR + currencyUomId; if (!productConfigCache.containsKey(cacheKey)) { configWrapper = new ProductConfigWrapper((GenericDelegator)request.getAttribute("delegator"), (LocalDispatcher)request.getAttribute("dispatcher"), productId, productStoreId, catalogId, webSiteId, currencyUomId, UtilHttp.getLocale(request), autoUserLogin); productConfigCache.put(cacheKey, new ProductConfigWrapper(configWrapper)); } else { configWrapper = new ProductConfigWrapper((ProductConfigWrapper)productConfigCache.get(cacheKey)); } } catch(ProductConfigWrapperException we) { configWrapper = null; } catch(Exception e) { Debug.logWarning(e.getMessage(), module); } return configWrapper; } public static void fillProductConfigWrapper(ProductConfigWrapper configWrapper, HttpServletRequest request) { int numOfQuestions = configWrapper.getQuestions().size(); for (int k = 0; k < numOfQuestions; k++) { String[] opts = request.getParameterValues("" + k); if (opts == null) { continue; } for (int h = 0; h < opts.length; h++) { int cnt = -1; try { cnt = Integer.parseInt(opts[h]); configWrapper.setSelected(k, cnt); } catch(Exception e) { Debug.logWarning(e.getMessage(), module); } } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -