All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.agiletec.aps.system.services.page.cache.PageManagerCacheWrapper Maven / Gradle / Ivy

Go to download

Entando Engine: an agile, modern and user-centric open source Portal platform.

There is a newer version: 6.2.27
Show newest version
/*
 * Copyright 2018-Present Entando Inc. (http://www.entando.com) All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */
package com.agiletec.aps.system.services.page.cache;

import com.agiletec.aps.system.common.AbstractCacheWrapper;
import com.agiletec.aps.system.exception.ApsSystemException;
import com.agiletec.aps.system.services.page.IPage;
import com.agiletec.aps.system.services.page.IPageDAO;
import com.agiletec.aps.system.services.page.Page;
import com.agiletec.aps.system.services.page.PageRecord;
import com.agiletec.aps.system.services.page.PagesStatus;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cache.Cache;

/**
 * @author E.Santoboni
 */
public class PageManagerCacheWrapper extends AbstractCacheWrapper implements IPageManagerCacheWrapper {

    private static final Logger _logger = LoggerFactory.getLogger(PageManagerCacheWrapper.class);

    @Override
    public void initCache(IPageDAO pageDao) throws ApsSystemException {
        PagesStatus status = new PagesStatus();
        IPage newDraftRoot = null;
        IPage newOnLineRoot = null;
        try {
            Cache cache = this.getCache();
            this.releaseCachedObjects(cache);
            List pageRecordList = pageDao.loadPageRecords();
            Map newFullMap = new HashMap(pageRecordList.size());
            Map newOnlineMap = new HashMap();
            List pageListO = new ArrayList<>();
            List pageListD = new ArrayList<>();
            for (int i = 0; i < pageRecordList.size(); i++) {
                PageRecord pageRecord = pageRecordList.get(i);
                IPage pageD = pageRecord.createDraftPage();
                IPage pageO = pageRecord.createOnlinePage();
                pageListD.add(pageD);
                newFullMap.put(pageD.getCode(), pageD);
                if (pageD.getCode().equals(pageD.getParentCode())) {
                    newDraftRoot = pageD;
                    newOnLineRoot = pageO;
                }
                this.buildPagesStatus(status, pageD);
                if (pageD.isOnline()) {
                    newOnlineMap.put(pageO.getCode(), pageO);
                    pageListO.add(pageO);
                }
            }
            for (int i = 0; i < pageListD.size(); i++) {
                this.buildTreeHierarchy(newDraftRoot, newFullMap, pageListD.get(i));
            }
            for (int i = 0; i < pageListO.size(); i++) {
                this.buildTreeHierarchy(newOnLineRoot, newOnlineMap, pageListO.get(i));
            }
            if (newDraftRoot == null) {
                throw new ApsSystemException("Error in the page tree: root page undefined");
            }
            this.insertObjectsOnCache(cache, status, newDraftRoot, newOnLineRoot, pageListD, pageListO);
        } catch (ApsSystemException e) {
            throw e;
        } catch (Throwable t) {
            _logger.error("Error while building the tree of pages", t);
            throw new ApsSystemException("Error while building the tree of pages", t);
        }
    }

    protected void releaseCachedObjects(Cache cache) {
        List codes = (List) this.get(cache, PAGE_CODES_CACHE_NAME, List.class);
        if (null != codes) {
            for (int i = 0; i < codes.size(); i++) {
                String code = codes.get(i);
                cache.evict(DRAFT_PAGE_CACHE_NAME_PREFIX + code);
                cache.evict(ONLINE_PAGE_CACHE_NAME_PREFIX + code);
            }
            cache.evict(PAGE_CODES_CACHE_NAME);
        }
    }

    protected void insertObjectsOnCache(Cache cache, PagesStatus status,
            IPage newDraftRoot, IPage newOnLineRoot, List pageListD, List pageListO) {
        cache.put(DRAFT_ROOT_CACHE_NAME, newDraftRoot);
        cache.put(ONLINE_ROOT_CACHE_NAME, newOnLineRoot);
        cache.put(PAGE_STATUS_CACHE_NAME, status);
        for (int i = 0; i < pageListD.size(); i++) {
            IPage draftPage = pageListD.get(i);
            cache.put(DRAFT_PAGE_CACHE_NAME_PREFIX + draftPage.getCode(), draftPage);
        }
        for (int i = 0; i < pageListO.size(); i++) {
            IPage onLinePage = pageListO.get(i);
            cache.put(ONLINE_PAGE_CACHE_NAME_PREFIX + onLinePage.getCode(), onLinePage);
        }
    }

    @Override
    public PagesStatus getPagesStatus() {
        return this.get(PAGE_STATUS_CACHE_NAME, PagesStatus.class);
    }

    @Override
    public IPage getOnlinePage(String pageCode) {
        return this.get(ONLINE_PAGE_CACHE_NAME_PREFIX + pageCode, IPage.class);
    }

    @Override
    public IPage getDraftPage(String pageCode) {
        return this.get(DRAFT_PAGE_CACHE_NAME_PREFIX + pageCode, IPage.class);
    }

    @Override
    public void deleteOnlinePage(String pageCode) {
        this.getCache().evict(ONLINE_PAGE_CACHE_NAME_PREFIX + pageCode);
    }

    @Override
    public void deleteDraftPage(String pageCode) {
        this.getCache().evict(DRAFT_PAGE_CACHE_NAME_PREFIX + pageCode);
    }

    @Override
    public IPage getOnlineRoot() {
        return this.get(ONLINE_ROOT_CACHE_NAME, IPage.class);
    }

    @Override
    public IPage getDraftRoot() {
        return this.get(DRAFT_ROOT_CACHE_NAME, IPage.class);
    }

    protected void buildTreeHierarchy(IPage root, Map pagesMap, IPage page) {
        Page parent = (Page) pagesMap.get(page.getParentCode());
        ((Page) page).setParent(parent);
        if (!page.getCode().equals(root.getCode())) {
            parent.addChildCode(page.getCode());
        }
    }

    protected void buildPagesStatus(PagesStatus status, IPage pageD) {
        Date currentDate = pageD.getMetadata().getUpdatedAt();
        if (pageD.isOnline()) {
            if (pageD.isChanged()) {
                status.setOnlineWithChanges(status.getOnlineWithChanges() + 1);
            } else {
                status.setOnline(status.getOnline() + 1);
            }
        } else {
            status.setUnpublished(status.getUnpublished() + 1);
        }
        if (null != currentDate) {
            if (null == status.getLastUpdate() || status.getLastUpdate().before(currentDate)) {
                status.setLastUpdate(currentDate);
            }
        }
    }

    @Override
    protected String getCacheName() {
        return PAGE_MANAGER_CACHE_NAME;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy