Java tutorial
/* * Copyright 2013-2018 Emmanuel BRUN (contact@amapj.fr) * * This file is part of AmapJ. * * AmapJ is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * AmapJ 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with AmapJ. If not, see <http://www.gnu.org/licenses/>. * * */ package fr.amapj.view.views.advanced.maintenance; import java.text.SimpleDateFormat; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import com.vaadin.navigator.View; import com.vaadin.navigator.ViewChangeListener.ViewChangeEvent; import com.vaadin.shared.ui.label.ContentMode; import com.vaadin.ui.Button; import com.vaadin.ui.Button.ClickEvent; import com.vaadin.ui.Button.ClickListener; import com.vaadin.ui.Component; import com.vaadin.ui.Label; import com.vaadin.ui.Panel; import com.vaadin.ui.TextField; import com.vaadin.ui.VerticalLayout; import com.vaadin.ui.themes.ChameleonTheme; import fr.amapj.common.DateUtils; import fr.amapj.service.engine.deamons.DeamonsContext; import fr.amapj.service.services.advanced.maintenance.MaintenanceService; import fr.amapj.service.services.backupdb.BackupDatabaseService; import fr.amapj.service.services.mailer.MailerCounter; import fr.amapj.service.services.session.SessionManager; import fr.amapj.view.engine.popup.corepopup.CorePopup; import fr.amapj.view.engine.template.BackOfficeLongView; /** * Outil de maintenance basique accessible aux adminitrateurs classiques * * */ public class MaintenanceView extends BackOfficeLongView implements View { private final static Logger logger = LogManager.getLogger(); @Override public String getMainStyleName() { return "maintenance"; } Label labelDateHeure; TextField textDateHeure; @Override public void enterIn(ViewChangeEvent event) { boolean adminFull = SessionManager.getSessionParameters().isAdminFull(); SimpleDateFormat df = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss"); addLabel(this, "Maintenance du systme", "titre"); // Partie date addLabel(this, "Date et heure courante :" + df.format(DateUtils.getDate())); addLabel(this, "Version de l'application : " + new MaintenanceService().getVersion()); addLabel(this, "Nombre d'emails envoys aujourd'hui : " + MailerCounter.getNbMails()); Panel backupPanel = new Panel("Sauvegarde de la base et envoi par e mail"); backupPanel.addStyleName("action"); backupPanel.setContent(getBackupPanel()); Panel diversPanel = new Panel("Outils d'admin"); diversPanel.addStyleName("action"); diversPanel.setContent(getDiversPanel()); addComponent(backupPanel); addEmptyLine(this); // if (adminFull) { addComponent(diversPanel); } } private Component getBackupPanel() { VerticalLayout layout = new VerticalLayout(); layout.setMargin(true); addEmptyLine(layout); addLabel(layout, "Cet outil vous permet de faire une sauvegarde de la base et de l'envoyer par mail l'adresse paramtre dans les paramtres gnraux."); addLabel(layout, "Cet outil peut tre utilis avant de faire des modifications importantes sur la base."); addLabel(layout, "Cet outil permet aussi de vrifier que les sauvegardes fonctionnent bien."); addEmptyLine(layout); Button b1 = new Button("Backup de la base et envoi par mail", e -> new BackupDatabaseService().backupDatabase(new DeamonsContext())); layout.addComponent(b1); addEmptyLine(layout); return layout; } private Component getDiversPanel() { VerticalLayout layout = new VerticalLayout(); layout.setMargin(true); addEmptyLine(layout); addLabel(layout, "Outils divers rservs aux experts."); addEmptyLine(layout); addLabel(layout, "ATTENTION !!! Ne pas utiliser sur une base en production !!! ATTENTION !!!!."); addEmptyLine(layout); Button b2 = new Button("Remise zro du cache (obligatoire aprs requete SQL)", new ClickListener() { @Override public void buttonClick(ClickEvent event) { new MaintenanceService().resetDatabaseCache(); } }); Button b3 = new Button("Appel du garbage collector", new ClickListener() { @Override public void buttonClick(ClickEvent event) { System.gc(); } }); Button b4 = new Button("Positionner les dates pour la base dmo", new ClickListener() { @Override public void buttonClick(ClickEvent event) { PopupDateDemo popup = new PopupDateDemo(); CorePopup.open(popup); } }); layout.addComponent(b2); addEmptyLine(layout); layout.addComponent(b3); addEmptyLine(layout); layout.addComponent(b4); addEmptyLine(layout); addEmptyLine(layout); return layout; } private Label addLabel(VerticalLayout layout, String str, String stylename) { Label tf = new Label(str); if (stylename != null) { tf.addStyleName(stylename); } layout.addComponent(tf); return tf; } private Label addLabel(VerticalLayout layout, String str) { return addLabel(layout, str, null); } private Label addEmptyLine(VerticalLayout layout) { Label tf = new Label("<br/>", ContentMode.HTML); tf.addStyleName(ChameleonTheme.LABEL_BIG); layout.addComponent(tf); return tf; } }