forked from fanruan/design
Hades
5 years ago
20 changed files with 1105 additions and 540 deletions
@ -0,0 +1,94 @@ |
|||||||
|
package com.fr.design.dialog; |
||||||
|
|
||||||
|
import com.fr.design.gui.ibutton.UIButton; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.utils.gui.GUICoreUtils; |
||||||
|
import com.fr.general.FRFont; |
||||||
|
|
||||||
|
import javax.swing.JDialog; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.JTextArea; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.Font; |
||||||
|
import java.awt.Frame; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.awt.event.ActionListener; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/1/8 |
||||||
|
*/ |
||||||
|
public abstract class ErrorDialog extends JDialog implements ActionListener { |
||||||
|
|
||||||
|
private UIButton okButton; |
||||||
|
private UIButton restartButton; |
||||||
|
|
||||||
|
|
||||||
|
public ErrorDialog(Frame parent, String message, String title, String detail) { |
||||||
|
super(parent, true); |
||||||
|
JPanel northPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
JPanel messagePane = FRGUIPaneFactory.createVerticalFlowLayout_S_Pane(true); |
||||||
|
UILabel boldFontLabel = new UILabel(message); |
||||||
|
UILabel label = new UILabel(Toolkit.i18nText("Fine-Design_Send_Report_To_Us")); |
||||||
|
Font font = FRFont.getInstance("Dialog", Font.BOLD, 20); |
||||||
|
boldFontLabel.setFont(font); |
||||||
|
messagePane.add(boldFontLabel); |
||||||
|
messagePane.add(label); |
||||||
|
northPane.add(messagePane); |
||||||
|
|
||||||
|
JTextArea area = new JTextArea(detail); |
||||||
|
area.setPreferredSize(new Dimension(400, 100)); |
||||||
|
area.setEnabled(true); |
||||||
|
area.setEditable(false); |
||||||
|
JPanel centerPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
UILabel detailLabel = new UILabel(Toolkit.i18nText("Fine-Design_Problem_Detail_Message")); |
||||||
|
centerPane.add(detailLabel, BorderLayout.NORTH); |
||||||
|
centerPane.add(area, BorderLayout.CENTER); |
||||||
|
|
||||||
|
JPanel southPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
JPanel controlPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
JPanel buttonPane = new JPanel(new FlowLayout(FlowLayout.RIGHT, 10, 0)); |
||||||
|
okButton = new UIButton(Toolkit.i18nText("Fine-Design_Basic_Ok")); |
||||||
|
okButton.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
okEvent(); |
||||||
|
} |
||||||
|
}); |
||||||
|
buttonPane.add(okButton); |
||||||
|
restartButton = new UIButton(Toolkit.i18nText("Fine-Design_Basic_Restart")); |
||||||
|
restartButton.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
restartEvent(); |
||||||
|
} |
||||||
|
}); |
||||||
|
buttonPane.add(restartButton); |
||||||
|
controlPane.add(buttonPane, BorderLayout.EAST); |
||||||
|
southPane.add(controlPane); |
||||||
|
|
||||||
|
this.setTitle(title); |
||||||
|
this.setResizable(false); |
||||||
|
this.add(northPane, BorderLayout.NORTH); |
||||||
|
this.add(centerPane, BorderLayout.CENTER); |
||||||
|
this.add(southPane, BorderLayout.SOUTH); |
||||||
|
this.setSize(new Dimension(600, 500)); |
||||||
|
GUICoreUtils.centerWindow(this); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
dispose(); |
||||||
|
} |
||||||
|
|
||||||
|
protected abstract void okEvent(); |
||||||
|
|
||||||
|
protected abstract void restartEvent(); |
||||||
|
|
||||||
|
} |
@ -0,0 +1,96 @@ |
|||||||
|
package com.fr.design.dialog; |
||||||
|
|
||||||
|
import com.fr.design.gui.ibutton.UIButton; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.utils.gui.GUICoreUtils; |
||||||
|
import com.fr.general.IOUtils; |
||||||
|
|
||||||
|
import javax.swing.JDialog; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.JTextArea; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.Frame; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.awt.event.ActionListener; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/1/8 |
||||||
|
*/ |
||||||
|
public class TipDialog extends JDialog implements ActionListener { |
||||||
|
|
||||||
|
private UIButton endButton; |
||||||
|
private UIButton cancelButton; |
||||||
|
|
||||||
|
public TipDialog(Frame parent, String type) { |
||||||
|
super(parent, true); |
||||||
|
JPanel northPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
JPanel iconPane = new JPanel(); |
||||||
|
UILabel iconLabel = new UILabel(); |
||||||
|
iconLabel.setIcon(IOUtils.readIcon("com/fr/design/images/error/error.png")); |
||||||
|
iconPane.add(iconLabel); |
||||||
|
iconPane.setPreferredSize(new Dimension(100, 100)); |
||||||
|
JPanel tipPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
UILabel tipLabel = new UILabel(Toolkit.i18nText("Fine-Design_Last_Designer_Process_Not_Exist")); |
||||||
|
tipPane.add(tipLabel); |
||||||
|
northPane.add(iconPane, BorderLayout.WEST); |
||||||
|
northPane.add(tipPane, BorderLayout.CENTER); |
||||||
|
|
||||||
|
JTextArea area = new JTextArea(type); |
||||||
|
area.setPreferredSize(new Dimension(400, 100)); |
||||||
|
area.setEnabled(true); |
||||||
|
area.setEditable(false); |
||||||
|
JPanel centerPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
centerPane.add(area); |
||||||
|
|
||||||
|
JPanel southPane = FRGUIPaneFactory.createBorderLayout_L_Pane(); |
||||||
|
JPanel controlPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
JPanel buttonPane = new JPanel(new FlowLayout(FlowLayout.RIGHT, 10, 0)); |
||||||
|
endButton = new UIButton(Toolkit.i18nText("Fine-Design_End_Occupied_Process")); |
||||||
|
endButton.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
endEvent(); |
||||||
|
} |
||||||
|
}); |
||||||
|
buttonPane.add(endButton); |
||||||
|
cancelButton = new UIButton(Toolkit.i18nText("Fine-Design_Basic_Cancel")); |
||||||
|
cancelButton.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
cancelEvent(); |
||||||
|
} |
||||||
|
}); |
||||||
|
buttonPane.add(cancelButton); |
||||||
|
controlPane.add(buttonPane, BorderLayout.EAST); |
||||||
|
southPane.add(controlPane); |
||||||
|
|
||||||
|
this.setTitle(Toolkit.i18nText("Fine-Design_Basic_Error_Tittle")); |
||||||
|
this.setResizable(false); |
||||||
|
this.add(northPane, BorderLayout.NORTH); |
||||||
|
this.add(centerPane, BorderLayout.CENTER); |
||||||
|
this.add(southPane, BorderLayout.SOUTH); |
||||||
|
this.setSize(new Dimension(600, 500)); |
||||||
|
GUICoreUtils.centerWindow(this); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
protected void endEvent() { |
||||||
|
// do nothing
|
||||||
|
} |
||||||
|
|
||||||
|
protected void cancelEvent() { |
||||||
|
// do nothing
|
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
dispose(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,26 +1,95 @@ |
|||||||
package com.fr.design.utils; |
package com.fr.design.utils; |
||||||
|
|
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.stable.xml.XMLPrintWriter; |
||||||
|
import com.fr.stable.xml.XMLReadable; |
||||||
|
import com.fr.stable.xml.XMLWriter; |
||||||
|
import com.fr.stable.xml.XMLableReader; |
||||||
|
|
||||||
|
import javax.swing.JOptionPane; |
||||||
|
|
||||||
/** |
/** |
||||||
* 为的就是能替换 DesignPort.class 实现多开,因此避免编译器常量编译展开优化 |
* 为的就是能替换 DesignPort.class 实现多开,因此避免编译器常量编译展开优化 |
||||||
*/ |
*/ |
||||||
public class DesignerPort { |
public class DesignerPort implements XMLReadable, XMLWriter { |
||||||
|
|
||||||
|
public static final String XML_TAG = "DesignerPort"; |
||||||
|
private static final int MIN_PORT = 1024; |
||||||
|
private static final int MAX_PORT = 65536; |
||||||
|
|
||||||
|
public static final DesignerPort INSTANCE = new DesignerPort(); |
||||||
|
|
||||||
|
public static DesignerPort getInstance() { |
||||||
|
return INSTANCE; |
||||||
|
} |
||||||
|
|
||||||
private DesignerPort() { |
private DesignerPort() { |
||||||
} |
} |
||||||
|
|
||||||
/** |
/** |
||||||
* 设计器端口,避免编译期常量优化展开 |
* 设计器端口 |
||||||
*/ |
*/ |
||||||
public static final int MESSAGE_PORT = getMessagePort(); |
private int messagePort = 51462; |
||||||
|
|
||||||
/** |
/** |
||||||
* 设计器端口,避免编译期常量优化展开 |
* 设计器端口,debug模式下 |
||||||
*/ |
*/ |
||||||
public static final int DEBUG_MESSAGE_PORT = getDebugMessagePort(); |
private int debugMessagePort = 51463; |
||||||
|
|
||||||
|
public int getMessagePort() { |
||||||
|
return messagePort; |
||||||
|
} |
||||||
|
|
||||||
|
public int getDebugMessagePort() { |
||||||
|
return debugMessagePort; |
||||||
|
} |
||||||
|
|
||||||
private static int getMessagePort() { |
public void setMessagePort(int messagePort) { |
||||||
return 51462; |
this.messagePort = messagePort; |
||||||
} |
} |
||||||
|
|
||||||
private static int getDebugMessagePort() { |
public void setDebugMessagePort(int debugMessagePort) { |
||||||
return 51463; |
this.debugMessagePort = debugMessagePort; |
||||||
} |
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void readXML(XMLableReader reader) { |
||||||
|
if (reader.isAttr()) { |
||||||
|
this.setMessagePort(reader.getAttrAsInt("messagePort", 51462)); |
||||||
|
this.setDebugMessagePort(reader.getAttrAsInt("debugMessagePort", 51463)); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void writeXML(XMLPrintWriter writer) { |
||||||
|
writer.startTAG(XML_TAG); |
||||||
|
writer.attr("messagePort", this.messagePort); |
||||||
|
writer.attr("debugMessagePort", this.debugMessagePort); |
||||||
|
writer.end(); |
||||||
|
} |
||||||
|
|
||||||
|
public int resetPort() { |
||||||
|
String port = JOptionPane.showInputDialog(null, |
||||||
|
Toolkit.i18nText("Fine-Design_Modify_Designer_Port_Tip"), |
||||||
|
Toolkit.i18nText("Fine-Design_Modify_Designer_Port"), JOptionPane.INFORMATION_MESSAGE); |
||||||
|
int value; |
||||||
|
try { |
||||||
|
value = Integer.parseInt(port); |
||||||
|
} catch (NumberFormatException e) { |
||||||
|
JOptionPane.showMessageDialog(null, Toolkit.i18nText("Fine-Design_Modify_Designer_Port_Not_Number_Tip")); |
||||||
|
value = resetPort(); |
||||||
|
} |
||||||
|
if (value < MIN_PORT || value > MAX_PORT) { |
||||||
|
JOptionPane.showMessageDialog(null, Toolkit.i18nText("Fine-Design_Modify_Designer_Port_Out_Of_Range_Tip")); |
||||||
|
value = resetPort(); |
||||||
|
} |
||||||
|
if (ComparatorUtils.equals("true", System.getProperty("debug"))) { |
||||||
|
setDebugMessagePort(value); |
||||||
|
} else { |
||||||
|
setMessagePort(value); |
||||||
|
} |
||||||
|
return value; |
||||||
|
} |
||||||
|
|
||||||
} |
} |
||||||
|
After Width: | Height: | Size: 2.3 KiB |
@ -0,0 +1,32 @@ |
|||||||
|
package com.fr.design.utils; |
||||||
|
|
||||||
|
|
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import junit.framework.TestCase; |
||||||
|
import org.junit.Test; |
||||||
|
|
||||||
|
import java.net.ServerSocket; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/1/10 |
||||||
|
*/ |
||||||
|
public class DesignUtilsTest extends TestCase { |
||||||
|
|
||||||
|
@Test |
||||||
|
public void testIsPortOccupied() { |
||||||
|
assertFalse(DesignUtils.isPortOccupied()); |
||||||
|
try { |
||||||
|
if (ComparatorUtils.equals("true", System.getProperty("debug"))) { |
||||||
|
new ServerSocket(DesignerPort.getInstance().getDebugMessagePort()); |
||||||
|
} else { |
||||||
|
new ServerSocket(DesignerPort.getInstance().getMessagePort()); |
||||||
|
} |
||||||
|
} catch (Exception ignore) { |
||||||
|
System.exit(0); |
||||||
|
} |
||||||
|
assertTrue(DesignUtils.isPortOccupied()); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,507 +1,39 @@ |
|||||||
package com.fr.start; |
package com.fr.start; |
||||||
|
|
||||||
import com.fr.base.BaseUtils; |
import com.fr.event.Event; |
||||||
import com.fr.base.vcs.DesignerMode; |
import com.fr.event.Listener; |
||||||
import com.fr.design.DesignerEnvManager; |
import com.fr.event.Null; |
||||||
import com.fr.design.actions.core.ActionFactory; |
import com.fr.process.FineProcess; |
||||||
import com.fr.design.actions.file.WebPreviewUtils; |
import com.fr.process.engine.FineJavaProcessFactory; |
||||||
import com.fr.design.actions.file.newReport.NewPolyReportAction; |
import com.fr.process.engine.core.FineProcessEngineEvent; |
||||||
import com.fr.design.actions.file.newReport.NewWorkBookAction; |
|
||||||
import com.fr.design.actions.server.ServerConfigManagerAction; |
|
||||||
import com.fr.design.actions.server.StyleListAction; |
|
||||||
import com.fr.design.actions.server.WidgetManagerAction; |
|
||||||
import com.fr.design.base.mode.DesignModeContext; |
|
||||||
import com.fr.design.constants.UIConstants; |
|
||||||
import com.fr.design.file.HistoryTemplateListCache; |
|
||||||
import com.fr.design.file.HistoryTemplateListPane; |
|
||||||
import com.fr.design.file.MutilTempalteTabPane; |
|
||||||
import com.fr.design.fun.MenuHandler; |
|
||||||
import com.fr.design.gui.ibutton.UIButton; |
|
||||||
import com.fr.design.gui.ibutton.UIPreviewButton; |
|
||||||
import com.fr.design.gui.imenu.UIMenuItem; |
|
||||||
import com.fr.design.gui.imenu.UIPopupMenu; |
|
||||||
import com.fr.design.gui.itoolbar.UILargeToolbar; |
|
||||||
import com.fr.design.i18n.Toolkit; |
|
||||||
import com.fr.design.mainframe.ActiveKeyGenerator; |
|
||||||
import com.fr.design.mainframe.DesignerContext; |
|
||||||
import com.fr.design.mainframe.InformationCollector; |
|
||||||
import com.fr.design.mainframe.JTemplate; |
|
||||||
import com.fr.design.mainframe.JWorkBook; |
|
||||||
import com.fr.design.mainframe.alphafine.component.AlphaFinePane; |
|
||||||
import com.fr.design.mainframe.bbs.UserInfoLabel; |
|
||||||
import com.fr.design.mainframe.bbs.UserInfoPane; |
|
||||||
import com.fr.design.mainframe.toolbar.ToolBarMenuDockPlus; |
|
||||||
import com.fr.design.menu.KeySetUtils; |
|
||||||
import com.fr.design.menu.MenuDef; |
|
||||||
import com.fr.design.menu.SeparatorDef; |
|
||||||
import com.fr.design.menu.ShortCut; |
|
||||||
import com.fr.design.module.DesignModuleFactory; |
|
||||||
import com.fr.design.utils.concurrent.ThreadFactoryBuilder; |
|
||||||
import com.fr.design.utils.gui.GUICoreUtils; |
|
||||||
import com.fr.general.ComparatorUtils; |
|
||||||
import com.fr.log.FineLoggerFactory; |
|
||||||
import com.fr.module.Module; |
|
||||||
import com.fr.module.ModuleContext; |
|
||||||
import com.fr.runtime.FineRuntime; |
|
||||||
import com.fr.stable.ProductConstants; |
|
||||||
import com.fr.stable.StableUtils; |
|
||||||
import com.fr.stable.StringUtils; |
|
||||||
import com.fr.stable.lifecycle.LifecycleFatalError; |
|
||||||
import com.fr.stable.xml.XMLTools; |
|
||||||
import com.fr.start.module.StartupArgs; |
|
||||||
import com.fr.start.server.ServerTray; |
|
||||||
import com.fr.third.org.apache.commons.lang3.time.StopWatch; |
|
||||||
import com.fr.workspace.WorkContext; |
|
||||||
|
|
||||||
import javax.swing.JComponent; |
/** |
||||||
import javax.swing.JOptionPane; |
* 设计器主进程入口(无缝更换升级jar包,若使用其他类作为入口,需要重新打包designer.exe等,升级后仍然走的原来逻辑) |
||||||
import javax.swing.JPanel; |
|
||||||
import javax.swing.border.MatteBorder; |
|
||||||
import java.awt.Component; |
|
||||||
import java.awt.Dimension; |
|
||||||
import java.awt.FlowLayout; |
|
||||||
import java.awt.Insets; |
|
||||||
import java.awt.event.ActionEvent; |
|
||||||
import java.awt.event.ActionListener; |
|
||||||
import java.io.File; |
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.concurrent.LinkedBlockingQueue; |
|
||||||
import java.util.concurrent.ThreadFactory; |
|
||||||
import java.util.concurrent.ThreadPoolExecutor; |
|
||||||
import java.util.concurrent.TimeUnit; |
|
||||||
|
|
||||||
public class Designer extends BaseDesigner { |
|
||||||
|
|
||||||
private static final int TOOLBARPANEVGAP = -4; |
|
||||||
private static final int PREVIEW_DOWN_X_GAP = 92; |
|
||||||
private static final int GAP = 7; |
|
||||||
private static final String OLD_ENV_FOLDER_71 = ".FineReport71"; |
|
||||||
private static final String OLD_ENV_FOLDER_70 = ".FineReport70"; |
|
||||||
|
|
||||||
private UserInfoPane userInfoPane; |
|
||||||
private UIButton saveButton; |
|
||||||
private UIButton undo; |
|
||||||
private UIButton redo; |
|
||||||
private UIButton[] upToolBar; |
|
||||||
private UIPreviewButton run; |
|
||||||
|
|
||||||
public Designer(String[] args) { |
|
||||||
super(args); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 设计器启动的Main方法 |
|
||||||
* |
|
||||||
* @param args 参数 |
|
||||||
*/ |
|
||||||
public static void main(String[] args) { |
|
||||||
|
|
||||||
StopWatch watch = new StopWatch(); |
|
||||||
watch.start(); |
|
||||||
//启动运行时
|
|
||||||
FineRuntime.start(); |
|
||||||
Module designerRoot = ModuleContext.parseRoot("designer-startup.xml"); |
|
||||||
//传递启动参数
|
|
||||||
designerRoot.setSingleton(StartupArgs.class, new StartupArgs(args)); |
|
||||||
try { |
|
||||||
designerRoot.start(); |
|
||||||
} catch (LifecycleFatalError fatal) { |
|
||||||
SplashContext.getInstance().hide(); |
|
||||||
JOptionPane.showMessageDialog(null, fatal.getMessage(), Toolkit.i18nText("Fine-Design_Basic_Error"), JOptionPane.ERROR_MESSAGE); |
|
||||||
FineLoggerFactory.getLogger().error(fatal.getMessage(), fatal); |
|
||||||
System.exit(0); |
|
||||||
} |
|
||||||
|
|
||||||
if (WorkContext.getCurrent().isLocal()) { |
|
||||||
//初始化一下serverTray
|
|
||||||
ServerTray.init(); |
|
||||||
} |
|
||||||
FineLoggerFactory.getLogger().info("Designer started.Time used {} ms", watch.getTime()); |
|
||||||
watch.stop(); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建新建文件的快捷方式数组。 |
|
||||||
* |
|
||||||
* @return 返回快捷方式的数组 |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public ShortCut[] createNewFileShortCuts() { |
|
||||||
ArrayList<ShortCut> shortCuts = new ArrayList<ShortCut>(); |
|
||||||
// shortCuts.add(new NewWorkBookXAction());
|
|
||||||
shortCuts.add(new NewWorkBookAction()); |
|
||||||
shortCuts.add(new NewPolyReportAction()); |
|
||||||
try { |
|
||||||
if (DesignModuleFactory.getNewFormAction() != null) { |
|
||||||
shortCuts.add((ShortCut) DesignModuleFactory.getNewFormAction().newInstance()); |
|
||||||
} |
|
||||||
} catch (Exception e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
} |
|
||||||
return shortCuts.toArray(new ShortCut[shortCuts.size()]); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected MenuDef createServerMenuDef(ToolBarMenuDockPlus plus) { |
|
||||||
MenuDef menuDef = super.createServerMenuDef(plus); |
|
||||||
|
|
||||||
if (WorkContext.getCurrent() == null) { |
|
||||||
return menuDef; |
|
||||||
} |
|
||||||
|
|
||||||
if (!DesignerMode.isAuthorityEditing()) { |
|
||||||
menuDef.addShortCut(SeparatorDef.DEFAULT); |
|
||||||
|
|
||||||
if (WorkContext.getCurrent().isRoot()) { |
|
||||||
menuDef.addShortCut(new ServerConfigManagerAction(), new StyleListAction(), new WidgetManagerAction()); |
|
||||||
if (ActionFactory.getChartPreStyleAction() != null) { |
|
||||||
menuDef.addShortCut(ActionFactory.getChartPreStyleAction()); |
|
||||||
} |
|
||||||
if (ActionFactory.getChartEmptyDataStyleAction() != null) { |
|
||||||
menuDef.addShortCut(ActionFactory.getChartEmptyDataStyleAction()); |
|
||||||
} |
|
||||||
if (ActionFactory.getChartMapEditorAction() != null) { |
|
||||||
menuDef.addShortCut(ActionFactory.getChartMapEditorAction()); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
insertMenu(menuDef, MenuHandler.SERVER); |
|
||||||
} |
|
||||||
|
|
||||||
return menuDef; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 创建设计器上几个比较大的图标:新建cpt,保存,前进,后退,运行。 |
|
||||||
* |
|
||||||
* @return 返回大图标对应的工具栏 |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public UILargeToolbar createLargeToolbar() { |
|
||||||
UILargeToolbar largeToolbar = super.createLargeToolbar(); |
|
||||||
largeToolbar.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 4)); |
|
||||||
largeToolbar.add(generateEmptyGap(1)); |
|
||||||
createRunButton(largeToolbar); |
|
||||||
largeToolbar.add(run); |
|
||||||
largeToolbar.add(generateEmptyGap(GAP)); |
|
||||||
largeToolbar.addSeparator(new Dimension(2, 42)); |
|
||||||
largeToolbar.setBorder(new MatteBorder(new Insets(0, 0, 1, 0), UIConstants.LINE_COLOR)); |
|
||||||
return largeToolbar; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel generateEmptyGap(final int width) { |
|
||||||
JPanel panel = new JPanel() { |
|
||||||
@Override |
|
||||||
public Dimension getPreferredSize() { |
|
||||||
Dimension dim = super.getPreferredSize(); |
|
||||||
dim.width = width; |
|
||||||
return dim; |
|
||||||
} |
|
||||||
}; |
|
||||||
panel.setBackground(null); |
|
||||||
panel.setOpaque(false); |
|
||||||
return panel; |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建上面一排的工具栏按钮 |
|
||||||
* |
|
||||||
* @return 按钮 |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public UIButton[] createUp() { |
|
||||||
if (upToolBar == null) { |
|
||||||
createSaveButton(); |
|
||||||
createUndoButton(); |
|
||||||
createRedoButton(); |
|
||||||
return upToolBar = new UIButton[]{saveButton, undo, redo}; |
|
||||||
} |
|
||||||
return upToolBar; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private void createSaveButton() { |
|
||||||
saveButton = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/save.png")); |
|
||||||
saveButton.setToolTipText(KeySetUtils.SAVE_TEMPLATE.getMenuKeySetName()); |
|
||||||
saveButton.set4ToolbarButton(); |
|
||||||
saveButton.addActionListener(new ActionListener() { |
|
||||||
@Override |
|
||||||
public void actionPerformed(ActionEvent e) { |
|
||||||
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
jt.stopEditing(); |
|
||||||
jt.saveTemplate(); |
|
||||||
jt.requestFocus(); |
|
||||||
} |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private void createUndoButton() { |
|
||||||
undo = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/undo.png")); |
|
||||||
undo.setToolTipText(KeySetUtils.UNDO.getMenuKeySetName()); |
|
||||||
undo.set4ToolbarButton(); |
|
||||||
undo.addActionListener(new ActionListener() { |
|
||||||
@Override |
|
||||||
public void actionPerformed(ActionEvent e) { |
|
||||||
JTemplate<?, ?> jt = HistoryTemplateListPane.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (jt != null) { |
|
||||||
jt.undo(); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
private void createRedoButton() { |
|
||||||
redo = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/redo.png")); |
|
||||||
redo.setToolTipText(KeySetUtils.REDO.getMenuKeySetName()); |
|
||||||
redo.set4ToolbarButton(); |
|
||||||
redo.addActionListener(new ActionListener() { |
|
||||||
@Override |
|
||||||
public void actionPerformed(ActionEvent e) { |
|
||||||
JTemplate<?, ?> jt = HistoryTemplateListPane.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (jt != null) { |
|
||||||
jt.redo(); |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
private void createRunButton(UILargeToolbar largeToolbar) { |
|
||||||
run = new UIPreviewButton(new UIButton(UIConstants.PAGE_BIG_ICON) { |
|
||||||
@Override |
|
||||||
public Dimension getPreferredSize() { |
|
||||||
return new Dimension(34, 34); |
|
||||||
} |
|
||||||
}, new UIButton(UIConstants.PREVIEW_DOWN) { |
|
||||||
@Override |
|
||||||
public Dimension getPreferredSize() { |
|
||||||
return new Dimension(34, 10); |
|
||||||
} |
|
||||||
} |
|
||||||
) { |
|
||||||
@Override |
|
||||||
protected void upButtonClickEvent() { |
|
||||||
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (jt == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
WebPreviewUtils.preview(jt); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected void downButtonClickEvent() { |
|
||||||
final JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (jt == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
UIPopupMenu menu = new UIPopupMenu(); |
|
||||||
|
|
||||||
UIMenuItem[] items = jt.createMenuItem4Preview(); |
|
||||||
for (int i = 0; i < items.length; i++) { |
|
||||||
menu.add(items[i]); |
|
||||||
} |
|
||||||
GUICoreUtils.showPopupMenu(menu, MutilTempalteTabPane.getInstance(), MutilTempalteTabPane.getInstance().getX() - PREVIEW_DOWN_X_GAP, MutilTempalteTabPane.getInstance().getY() - 1 + MutilTempalteTabPane.getInstance().getHeight()); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public Dimension getPreferredSize() { |
|
||||||
// TODO Auto-generated method stub
|
|
||||||
return new Dimension(34, 46); |
|
||||||
} |
|
||||||
}; |
|
||||||
run.setExtraPainted(false); |
|
||||||
run.set4Toolbar(); |
|
||||||
run.getUpButton().setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Preview")); |
|
||||||
run.getDownButton().setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Dropdown_More_Preview")); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected void refreshLargeToolbarState() { |
|
||||||
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (jt == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
saveButton.setEnabled(!jt.isSaved() && !DesignModeContext.isVcsMode()); |
|
||||||
MutilTempalteTabPane.getInstance().refreshOpenedTemplate(HistoryTemplateListCache.getInstance().getHistoryList()); |
|
||||||
MutilTempalteTabPane.getInstance().repaint(); |
|
||||||
if (DesignerEnvManager.getEnvManager().isSupportUndo()) { |
|
||||||
undo.setEnabled(jt.canUndo()); |
|
||||||
redo.setEnabled(jt.canRedo()); |
|
||||||
} else { |
|
||||||
undo.setEnabled(false); |
|
||||||
redo.setEnabled(false); |
|
||||||
} |
|
||||||
|
|
||||||
run.getUpButton().setIcon(jt.getPreviewLargeIcon()); |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 生成工具栏 |
|
||||||
* |
|
||||||
* @param toolbarComponent 工具栏 |
|
||||||
* @param plus 对象 |
|
||||||
* @return 更新后的toolbar |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public JComponent resetToolBar(JComponent toolbarComponent, ToolBarMenuDockPlus plus) { |
|
||||||
//如果是处于权限编辑状态
|
|
||||||
if (DesignerMode.isAuthorityEditing()) { |
|
||||||
if (plus instanceof JWorkBook && plus.toolbars4Target() == null) { |
|
||||||
//聚合块编辑
|
|
||||||
return super.polyToolBar(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Privilege_Poly_Block_Edit")); |
|
||||||
} else { |
|
||||||
return plus.toolBar4Authority(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
if (plus.toolbarPanes4Form().length == 0) { |
|
||||||
return super.resetToolBar(toolbarComponent, plus); |
|
||||||
} else { |
|
||||||
JPanel toolbarPane; |
|
||||||
toolbarPane = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, TOOLBARPANEVGAP)); |
|
||||||
Dimension dim = new Dimension(); |
|
||||||
dim.height = plus.getToolBarHeight(); |
|
||||||
toolbarPane.setPreferredSize(dim); |
|
||||||
toolbarPane.setFocusable(true); |
|
||||||
JPanel[] paneArray = plus.toolbarPanes4Form(); |
|
||||||
for (int i = 0; i < paneArray.length; i++) { |
|
||||||
toolbarPane.add(paneArray[i]); |
|
||||||
} |
|
||||||
return toolbarPane; |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
/** |
|
||||||
* 生成报表设计和表单设计的编辑区域 |
|
||||||
* |
|
||||||
* @return 返回编辑区域 |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public JTemplate<?, ?> createNewTemplate() { |
|
||||||
return new JWorkBook(); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建论坛登录面板, chart那边不需要 |
|
||||||
* |
* |
||||||
* @return 面板组件 |
* 设计器逻辑/UI调试 see MainDesigner/Designer4Debug |
||||||
*/ |
|
||||||
@Override |
|
||||||
public Component createBBSLoginPane() { |
|
||||||
if (userInfoPane == null) { |
|
||||||
userInfoPane = UserInfoPane.getInstance(); |
|
||||||
} |
|
||||||
return userInfoPane; |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 创建alphafine打开面板 |
|
||||||
* |
* |
||||||
* @return 面板组件 |
* @author hades |
||||||
|
* @date 2019/8/27 |
||||||
*/ |
*/ |
||||||
@Override |
public class Designer { |
||||||
public Component createAlphaFinePane() { |
|
||||||
return AlphaFinePane.getAlphaFinePane(); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
public static void main(String[] args) { |
||||||
* 收集用户信息吗 |
// 创建进程
|
||||||
*/ |
final FineProcess process = FineJavaProcessFactory.create(). |
||||||
@Override |
entry("com.fr.start.MainDesigner"). |
||||||
protected void collectUserInformation() { |
javaRuntime(DesignerJavaRuntime.getInstance().getJavaExec()). |
||||||
//定制的就不弹出来了
|
classPath(DesignerJavaRuntime.getInstance().getClassPath()). |
||||||
if (!ComparatorUtils.equals(ProductConstants.APP_NAME, ProductConstants.DEFAULT_APP_NAME)) { |
inheritJvmSettings(). |
||||||
return; |
jvmSettings(DesignerJavaRuntime.getInstance().getJvmOptions()). |
||||||
} |
arguments(args). |
||||||
|
startProcess(DesignerProcessType.INSTANCE); |
||||||
DesignerEnvManager envManager = DesignerEnvManager.getEnvManager(); |
|
||||||
final String key = envManager.getActivationKey(); |
|
||||||
//本地验证通过
|
|
||||||
if (ActiveKeyGenerator.localVerify(key)) { |
|
||||||
onLineVerify(envManager, key); |
|
||||||
UserInfoLabel.showBBSDialog(); |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
if (StableUtils.checkDesignerActive(readOldKey())) { |
|
||||||
//只要有老的key, 就不弹窗, 下次启动的时候, 在线验证下就行.
|
|
||||||
String newKey = ActiveKeyGenerator.generateActiveKey(); |
|
||||||
envManager.setActivationKey(newKey); |
|
||||||
UserInfoLabel.showBBSDialog(); |
|
||||||
return; |
|
||||||
} |
|
||||||
|
|
||||||
CollectUserInformationDialog activeDialog = new CollectUserInformationDialog( |
|
||||||
DesignerContext.getDesignerFrame()); |
|
||||||
activeDialog.setVisible(true); |
|
||||||
} |
|
||||||
|
|
||||||
private void onLineVerify(DesignerEnvManager envManager, final String key) { |
process.getPipe().listen(FineProcessEngineEvent.DESTROY, new Listener<Null>() { |
||||||
int status = envManager.getActiveKeyStatus(); |
|
||||||
//没有联网验证过
|
|
||||||
if (status != 0) { |
|
||||||
ThreadFactory namedThreadFactory = new ThreadFactoryBuilder() |
|
||||||
.setNameFormat("net-verify-thread-%s").build(); |
|
||||||
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( |
|
||||||
1, 1, |
|
||||||
0L, TimeUnit.MILLISECONDS, |
|
||||||
new LinkedBlockingQueue<Runnable>(1), |
|
||||||
namedThreadFactory); |
|
||||||
threadPoolExecutor.execute(new Runnable() { |
|
||||||
@Override |
@Override |
||||||
public void run() { |
public void on(Event event, Null param) { |
||||||
ActiveKeyGenerator.onLineVerify(key); |
process.destroy(); |
||||||
} |
} |
||||||
}); |
}); |
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private File getOldEnvFile(String folderName) { |
|
||||||
String userHome = System.getProperty("user.home"); |
|
||||||
if (userHome == null) { |
|
||||||
userHome = System.getProperty("userHome"); |
|
||||||
} |
|
||||||
String filePath = StableUtils.pathJoin(userHome, folderName, ProductConstants.APP_NAME + "Env.xml"); |
|
||||||
return new File(filePath); |
|
||||||
} |
|
||||||
|
|
||||||
private String getOldActiveKeyFromFile(File envFile) { |
|
||||||
if (!envFile.exists()) { |
|
||||||
return StringUtils.EMPTY; |
|
||||||
} |
|
||||||
|
|
||||||
DesignerEnvManager temp = new DesignerEnvManager(); |
|
||||||
try { |
|
||||||
XMLTools.readFileXML(temp, envFile); |
|
||||||
} catch (Exception e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
} |
|
||||||
return temp.getActivationKey(); |
|
||||||
} |
|
||||||
|
|
||||||
//默认只从7.0和711的设计器里读取key
|
|
||||||
private String readOldKey() { |
|
||||||
File file71 = getOldEnvFile(OLD_ENV_FOLDER_71); |
|
||||||
if (!file71.exists()) { |
|
||||||
File file70 = getOldEnvFile(OLD_ENV_FOLDER_70); |
|
||||||
return getOldActiveKeyFromFile(file70); |
|
||||||
} |
} |
||||||
|
|
||||||
return getOldActiveKeyFromFile(file71); |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 设计器退出时, 做的一些操作. |
|
||||||
*/ |
|
||||||
@Override |
|
||||||
public void shutDown() { |
|
||||||
InformationCollector collector = InformationCollector.getInstance(); |
|
||||||
collector.collectStopTime(); |
|
||||||
collector.saveXMLFile(); |
|
||||||
} |
|
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,71 @@ |
|||||||
|
package com.fr.start; |
||||||
|
|
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.process.engine.core.AbstractJavaRuntime; |
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
import com.fr.stable.os.OperatingSystem; |
||||||
|
|
||||||
|
/** |
||||||
|
* 设计器Java运行环境 |
||||||
|
* |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2019/9/22 |
||||||
|
*/ |
||||||
|
public class DesignerJavaRuntime extends AbstractJavaRuntime { |
||||||
|
|
||||||
|
private static final String DOT = "."; |
||||||
|
private static final String INSTALL4J = ".install4j"; |
||||||
|
private static final String JAVA_EXEC = "java"; |
||||||
|
private static final String WIN_JRE_BIN = StableUtils.pathJoin("jre", "bin"); |
||||||
|
private static final String MAC_JRE_BIN = StableUtils.pathJoin("jre.bundle", "Contents", "Home", "jre", "bin"); |
||||||
|
private static final String[] DEBUG_OPTIONS = new String[]{"-Dfile.encoding=UTF-8", "-Xmx2048m"}; |
||||||
|
|
||||||
|
private static final DesignerJavaRuntime INSTANCE = new DesignerJavaRuntime(); |
||||||
|
|
||||||
|
public static DesignerJavaRuntime getInstance() { |
||||||
|
return INSTANCE; |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public String getJavaExec() { |
||||||
|
String installHome = StableUtils.getInstallHome(); |
||||||
|
if (!isInstallVersion()) { |
||||||
|
return JAVA_EXEC; |
||||||
|
} |
||||||
|
if (OperatingSystem.isWindows()) { |
||||||
|
return StableUtils.pathJoin(installHome, WIN_JRE_BIN, JAVA_EXEC); |
||||||
|
} |
||||||
|
if (OperatingSystem.isMacos()) { |
||||||
|
|
||||||
|
return StableUtils.pathJoin(installHome, INSTALL4J, MAC_JRE_BIN, JAVA_EXEC); |
||||||
|
} |
||||||
|
if (OperatingSystem.isUnix()) { |
||||||
|
return StableUtils.pathJoin(installHome, WIN_JRE_BIN, JAVA_EXEC); |
||||||
|
|
||||||
|
} |
||||||
|
return StringUtils.EMPTY; |
||||||
|
} |
||||||
|
|
||||||
|
private boolean isInstallVersion() { |
||||||
|
return !ComparatorUtils.equals(StableUtils.getInstallHome(), DOT); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 非安装版本需要添加下内存参数 |
||||||
|
* 工程中可根据需要修改 |
||||||
|
* |
||||||
|
* @return 参数 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public String[] getJvmOptions() { |
||||||
|
if (isInstallVersion()) { |
||||||
|
return super.getJvmOptions(); |
||||||
|
} else { |
||||||
|
return DEBUG_OPTIONS; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
} |
@ -0,0 +1,18 @@ |
|||||||
|
package com.fr.start; |
||||||
|
|
||||||
|
import com.fr.process.FineProcessType; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author hades |
||||||
|
* @version 10.0 |
||||||
|
* Created by hades on 2020/1/14 |
||||||
|
*/ |
||||||
|
public enum DesignerProcessType implements FineProcessType { |
||||||
|
|
||||||
|
INSTANCE; |
||||||
|
|
||||||
|
@Override |
||||||
|
public String obtain() { |
||||||
|
return "designer"; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,537 @@ |
|||||||
|
package com.fr.start; |
||||||
|
|
||||||
|
import com.fr.base.BaseUtils; |
||||||
|
import com.fr.base.vcs.DesignerMode; |
||||||
|
import com.fr.design.DesignerEnvManager; |
||||||
|
import com.fr.design.RestartHelper; |
||||||
|
import com.fr.design.actions.core.ActionFactory; |
||||||
|
import com.fr.design.actions.file.WebPreviewUtils; |
||||||
|
import com.fr.design.actions.file.newReport.NewPolyReportAction; |
||||||
|
import com.fr.design.actions.file.newReport.NewWorkBookAction; |
||||||
|
import com.fr.design.actions.server.ServerConfigManagerAction; |
||||||
|
import com.fr.design.actions.server.StyleListAction; |
||||||
|
import com.fr.design.actions.server.WidgetManagerAction; |
||||||
|
import com.fr.design.base.mode.DesignModeContext; |
||||||
|
import com.fr.design.constants.UIConstants; |
||||||
|
import com.fr.design.dialog.ErrorDialog; |
||||||
|
import com.fr.design.file.HistoryTemplateListCache; |
||||||
|
import com.fr.design.file.HistoryTemplateListPane; |
||||||
|
import com.fr.design.file.MutilTempalteTabPane; |
||||||
|
import com.fr.design.fun.MenuHandler; |
||||||
|
import com.fr.design.gui.ibutton.UIButton; |
||||||
|
import com.fr.design.gui.ibutton.UIPreviewButton; |
||||||
|
import com.fr.design.gui.imenu.UIMenuItem; |
||||||
|
import com.fr.design.gui.imenu.UIPopupMenu; |
||||||
|
import com.fr.design.gui.itoolbar.UILargeToolbar; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.mainframe.ActiveKeyGenerator; |
||||||
|
import com.fr.design.mainframe.DesignerContext; |
||||||
|
import com.fr.design.mainframe.InformationCollector; |
||||||
|
import com.fr.design.mainframe.JTemplate; |
||||||
|
import com.fr.design.mainframe.JWorkBook; |
||||||
|
import com.fr.design.mainframe.alphafine.component.AlphaFinePane; |
||||||
|
import com.fr.design.mainframe.bbs.UserInfoLabel; |
||||||
|
import com.fr.design.mainframe.bbs.UserInfoPane; |
||||||
|
import com.fr.design.mainframe.messagecollect.StartErrorMessageCollector; |
||||||
|
import com.fr.design.mainframe.messagecollect.entity.DesignerErrorMessage; |
||||||
|
import com.fr.design.mainframe.toolbar.ToolBarMenuDockPlus; |
||||||
|
import com.fr.design.menu.KeySetUtils; |
||||||
|
import com.fr.design.menu.MenuDef; |
||||||
|
import com.fr.design.menu.SeparatorDef; |
||||||
|
import com.fr.design.menu.ShortCut; |
||||||
|
import com.fr.design.module.DesignModuleFactory; |
||||||
|
import com.fr.design.utils.concurrent.ThreadFactoryBuilder; |
||||||
|
import com.fr.design.utils.gui.GUICoreUtils; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.module.Module; |
||||||
|
import com.fr.module.ModuleContext; |
||||||
|
import com.fr.process.engine.core.FineProcessContext; |
||||||
|
import com.fr.process.engine.core.FineProcessEngineEvent; |
||||||
|
import com.fr.runtime.FineRuntime; |
||||||
|
import com.fr.stable.ProductConstants; |
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
import com.fr.stable.lifecycle.ErrorType; |
||||||
|
import com.fr.stable.lifecycle.LifecycleFatalError; |
||||||
|
import com.fr.stable.xml.XMLTools; |
||||||
|
import com.fr.start.module.StartupArgs; |
||||||
|
import com.fr.start.server.ServerTray; |
||||||
|
import com.fr.third.org.apache.commons.lang3.time.StopWatch; |
||||||
|
import com.fr.workspace.WorkContext; |
||||||
|
|
||||||
|
import javax.swing.JComponent; |
||||||
|
import javax.swing.JOptionPane; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.border.MatteBorder; |
||||||
|
import java.awt.Component; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.Insets; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.awt.event.ActionListener; |
||||||
|
import java.io.File; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.concurrent.LinkedBlockingQueue; |
||||||
|
import java.util.concurrent.ThreadFactory; |
||||||
|
import java.util.concurrent.ThreadPoolExecutor; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
public class MainDesigner extends BaseDesigner { |
||||||
|
|
||||||
|
private static final int TOOLBARPANEVGAP = -4; |
||||||
|
private static final int PREVIEW_DOWN_X_GAP = 92; |
||||||
|
private static final int GAP = 7; |
||||||
|
private static final String OLD_ENV_FOLDER_71 = ".FineReport71"; |
||||||
|
private static final String OLD_ENV_FOLDER_70 = ".FineReport70"; |
||||||
|
|
||||||
|
private UserInfoPane userInfoPane; |
||||||
|
private UIButton saveButton; |
||||||
|
private UIButton undo; |
||||||
|
private UIButton redo; |
||||||
|
private UIButton[] upToolBar; |
||||||
|
private UIPreviewButton run; |
||||||
|
|
||||||
|
public MainDesigner(String[] args) { |
||||||
|
super(args); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 设计器启动的Main方法 |
||||||
|
* |
||||||
|
* @param args 参数 |
||||||
|
*/ |
||||||
|
public static void main(String[] args) { |
||||||
|
|
||||||
|
StopWatch watch = new StopWatch(); |
||||||
|
watch.start(); |
||||||
|
//启动运行时
|
||||||
|
FineRuntime.start(); |
||||||
|
Module designerRoot = ModuleContext.parseRoot("designer-startup.xml"); |
||||||
|
//传递启动参数
|
||||||
|
designerRoot.setSingleton(StartupArgs.class, new StartupArgs(args)); |
||||||
|
try { |
||||||
|
designerRoot.start(); |
||||||
|
} catch (LifecycleFatalError fatal) { |
||||||
|
SplashContext.getInstance().hide(); |
||||||
|
if (ErrorType.FINEDB.equals(fatal.getErrorType())) { |
||||||
|
StartErrorMessageCollector.getInstance().record(DesignerErrorMessage.FINEDB_PROBLEM.getId(), |
||||||
|
DesignerErrorMessage.FINEDB_PROBLEM.getMessage(), |
||||||
|
fatal.getMessage()); |
||||||
|
JOptionPane.showMessageDialog(null, fatal.getMessage(), Toolkit.i18nText("Fine-Design_Basic_Error"), JOptionPane.ERROR_MESSAGE); |
||||||
|
} |
||||||
|
FineLoggerFactory.getLogger().error(fatal.getMessage(), fatal); |
||||||
|
StartErrorMessageCollector.getInstance().record(DesignerErrorMessage.UNEXCEPTED_START_FAILED.getId(), |
||||||
|
DesignerErrorMessage.UNEXCEPTED_START_FAILED.getMessage(), |
||||||
|
fatal.getMessage()); |
||||||
|
ErrorDialog dialog = new ErrorDialog(null, Toolkit.i18nText("Fine-Design_Error_Start_Apology_Message"), |
||||||
|
Toolkit.i18nText("Fine-Design_Error_Start_Report"), |
||||||
|
fatal.getMessage()) { |
||||||
|
@Override |
||||||
|
protected void okEvent() { |
||||||
|
dispose(); |
||||||
|
FineProcessContext.getChildPipe().fire(FineProcessEngineEvent.DESTROY); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void restartEvent() { |
||||||
|
dispose(); |
||||||
|
RestartHelper.restart(); |
||||||
|
} |
||||||
|
}; |
||||||
|
dialog.setVisible(true); |
||||||
|
} |
||||||
|
|
||||||
|
if (WorkContext.getCurrent().isLocal()) { |
||||||
|
//初始化一下serverTray
|
||||||
|
ServerTray.init(); |
||||||
|
} |
||||||
|
FineLoggerFactory.getLogger().info("Designer started.Time used {} ms", watch.getTime()); |
||||||
|
watch.stop(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建新建文件的快捷方式数组。 |
||||||
|
* |
||||||
|
* @return 返回快捷方式的数组 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public ShortCut[] createNewFileShortCuts() { |
||||||
|
ArrayList<ShortCut> shortCuts = new ArrayList<ShortCut>(); |
||||||
|
// shortCuts.add(new NewWorkBookXAction());
|
||||||
|
shortCuts.add(new NewWorkBookAction()); |
||||||
|
shortCuts.add(new NewPolyReportAction()); |
||||||
|
try { |
||||||
|
if (DesignModuleFactory.getNewFormAction() != null) { |
||||||
|
shortCuts.add((ShortCut) DesignModuleFactory.getNewFormAction().newInstance()); |
||||||
|
} |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
return shortCuts.toArray(new ShortCut[shortCuts.size()]); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected MenuDef createServerMenuDef(ToolBarMenuDockPlus plus) { |
||||||
|
MenuDef menuDef = super.createServerMenuDef(plus); |
||||||
|
|
||||||
|
if (WorkContext.getCurrent() == null) { |
||||||
|
return menuDef; |
||||||
|
} |
||||||
|
|
||||||
|
if (!DesignerMode.isAuthorityEditing()) { |
||||||
|
menuDef.addShortCut(SeparatorDef.DEFAULT); |
||||||
|
|
||||||
|
if (WorkContext.getCurrent().isRoot()) { |
||||||
|
menuDef.addShortCut(new ServerConfigManagerAction(), new StyleListAction(), new WidgetManagerAction()); |
||||||
|
if (ActionFactory.getChartPreStyleAction() != null) { |
||||||
|
menuDef.addShortCut(ActionFactory.getChartPreStyleAction()); |
||||||
|
} |
||||||
|
if (ActionFactory.getChartEmptyDataStyleAction() != null) { |
||||||
|
menuDef.addShortCut(ActionFactory.getChartEmptyDataStyleAction()); |
||||||
|
} |
||||||
|
if (ActionFactory.getChartMapEditorAction() != null) { |
||||||
|
menuDef.addShortCut(ActionFactory.getChartMapEditorAction()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
insertMenu(menuDef, MenuHandler.SERVER); |
||||||
|
} |
||||||
|
|
||||||
|
return menuDef; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 创建设计器上几个比较大的图标:新建cpt,保存,前进,后退,运行。 |
||||||
|
* |
||||||
|
* @return 返回大图标对应的工具栏 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public UILargeToolbar createLargeToolbar() { |
||||||
|
UILargeToolbar largeToolbar = super.createLargeToolbar(); |
||||||
|
largeToolbar.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 4)); |
||||||
|
largeToolbar.add(generateEmptyGap(1)); |
||||||
|
createRunButton(largeToolbar); |
||||||
|
largeToolbar.add(run); |
||||||
|
largeToolbar.add(generateEmptyGap(GAP)); |
||||||
|
largeToolbar.addSeparator(new Dimension(2, 42)); |
||||||
|
largeToolbar.setBorder(new MatteBorder(new Insets(0, 0, 1, 0), UIConstants.LINE_COLOR)); |
||||||
|
return largeToolbar; |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel generateEmptyGap(final int width) { |
||||||
|
JPanel panel = new JPanel() { |
||||||
|
@Override |
||||||
|
public Dimension getPreferredSize() { |
||||||
|
Dimension dim = super.getPreferredSize(); |
||||||
|
dim.width = width; |
||||||
|
return dim; |
||||||
|
} |
||||||
|
}; |
||||||
|
panel.setBackground(null); |
||||||
|
panel.setOpaque(false); |
||||||
|
return panel; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建上面一排的工具栏按钮 |
||||||
|
* |
||||||
|
* @return 按钮 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public UIButton[] createUp() { |
||||||
|
if (upToolBar == null) { |
||||||
|
createSaveButton(); |
||||||
|
createUndoButton(); |
||||||
|
createRedoButton(); |
||||||
|
return upToolBar = new UIButton[]{saveButton, undo, redo}; |
||||||
|
} |
||||||
|
return upToolBar; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void createSaveButton() { |
||||||
|
saveButton = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/save.png")); |
||||||
|
saveButton.setToolTipText(KeySetUtils.SAVE_TEMPLATE.getMenuKeySetName()); |
||||||
|
saveButton.set4ToolbarButton(); |
||||||
|
saveButton.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
jt.stopEditing(); |
||||||
|
jt.saveTemplate(); |
||||||
|
jt.requestFocus(); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void createUndoButton() { |
||||||
|
undo = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/undo.png")); |
||||||
|
undo.setToolTipText(KeySetUtils.UNDO.getMenuKeySetName()); |
||||||
|
undo.set4ToolbarButton(); |
||||||
|
undo.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListPane.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (jt != null) { |
||||||
|
jt.undo(); |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
private void createRedoButton() { |
||||||
|
redo = new UIButton(BaseUtils.readIcon("/com/fr/design/images/buttonicon/redo.png")); |
||||||
|
redo.setToolTipText(KeySetUtils.REDO.getMenuKeySetName()); |
||||||
|
redo.set4ToolbarButton(); |
||||||
|
redo.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListPane.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (jt != null) { |
||||||
|
jt.redo(); |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
private void createRunButton(UILargeToolbar largeToolbar) { |
||||||
|
run = new UIPreviewButton(new UIButton(UIConstants.PAGE_BIG_ICON) { |
||||||
|
@Override |
||||||
|
public Dimension getPreferredSize() { |
||||||
|
return new Dimension(34, 34); |
||||||
|
} |
||||||
|
}, new UIButton(UIConstants.PREVIEW_DOWN) { |
||||||
|
@Override |
||||||
|
public Dimension getPreferredSize() { |
||||||
|
return new Dimension(34, 10); |
||||||
|
} |
||||||
|
} |
||||||
|
) { |
||||||
|
@Override |
||||||
|
protected void upButtonClickEvent() { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (jt == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
WebPreviewUtils.preview(jt); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void downButtonClickEvent() { |
||||||
|
final JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (jt == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
UIPopupMenu menu = new UIPopupMenu(); |
||||||
|
|
||||||
|
UIMenuItem[] items = jt.createMenuItem4Preview(); |
||||||
|
for (int i = 0; i < items.length; i++) { |
||||||
|
menu.add(items[i]); |
||||||
|
} |
||||||
|
GUICoreUtils.showPopupMenu(menu, MutilTempalteTabPane.getInstance(), MutilTempalteTabPane.getInstance().getX() - PREVIEW_DOWN_X_GAP, MutilTempalteTabPane.getInstance().getY() - 1 + MutilTempalteTabPane.getInstance().getHeight()); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Dimension getPreferredSize() { |
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return new Dimension(34, 46); |
||||||
|
} |
||||||
|
}; |
||||||
|
run.setExtraPainted(false); |
||||||
|
run.set4Toolbar(); |
||||||
|
run.getUpButton().setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Basic_Preview")); |
||||||
|
run.getDownButton().setToolTipText(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Dropdown_More_Preview")); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void refreshLargeToolbarState() { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (jt == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
saveButton.setEnabled(!jt.isSaved() && !DesignModeContext.isVcsMode()); |
||||||
|
MutilTempalteTabPane.getInstance().refreshOpenedTemplate(HistoryTemplateListCache.getInstance().getHistoryList()); |
||||||
|
MutilTempalteTabPane.getInstance().repaint(); |
||||||
|
if (DesignerEnvManager.getEnvManager().isSupportUndo()) { |
||||||
|
undo.setEnabled(jt.canUndo()); |
||||||
|
redo.setEnabled(jt.canRedo()); |
||||||
|
} else { |
||||||
|
undo.setEnabled(false); |
||||||
|
redo.setEnabled(false); |
||||||
|
} |
||||||
|
|
||||||
|
run.getUpButton().setIcon(jt.getPreviewLargeIcon()); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 生成工具栏 |
||||||
|
* |
||||||
|
* @param toolbarComponent 工具栏 |
||||||
|
* @param plus 对象 |
||||||
|
* @return 更新后的toolbar |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public JComponent resetToolBar(JComponent toolbarComponent, ToolBarMenuDockPlus plus) { |
||||||
|
//如果是处于权限编辑状态
|
||||||
|
if (DesignerMode.isAuthorityEditing()) { |
||||||
|
if (plus instanceof JWorkBook && plus.toolbars4Target() == null) { |
||||||
|
//聚合块编辑
|
||||||
|
return super.polyToolBar(com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Privilege_Poly_Block_Edit")); |
||||||
|
} else { |
||||||
|
return plus.toolBar4Authority(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
if (plus.toolbarPanes4Form().length == 0) { |
||||||
|
return super.resetToolBar(toolbarComponent, plus); |
||||||
|
} else { |
||||||
|
JPanel toolbarPane; |
||||||
|
toolbarPane = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, TOOLBARPANEVGAP)); |
||||||
|
Dimension dim = new Dimension(); |
||||||
|
dim.height = plus.getToolBarHeight(); |
||||||
|
toolbarPane.setPreferredSize(dim); |
||||||
|
toolbarPane.setFocusable(true); |
||||||
|
JPanel[] paneArray = plus.toolbarPanes4Form(); |
||||||
|
for (int i = 0; i < paneArray.length; i++) { |
||||||
|
toolbarPane.add(paneArray[i]); |
||||||
|
} |
||||||
|
return toolbarPane; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 生成报表设计和表单设计的编辑区域 |
||||||
|
* |
||||||
|
* @return 返回编辑区域 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public JTemplate<?, ?> createNewTemplate() { |
||||||
|
return new JWorkBook(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建论坛登录面板, chart那边不需要 |
||||||
|
* |
||||||
|
* @return 面板组件 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public Component createBBSLoginPane() { |
||||||
|
if (userInfoPane == null) { |
||||||
|
userInfoPane = UserInfoPane.getInstance(); |
||||||
|
} |
||||||
|
return userInfoPane; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 创建alphafine打开面板 |
||||||
|
* |
||||||
|
* @return 面板组件 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public Component createAlphaFinePane() { |
||||||
|
return AlphaFinePane.getAlphaFinePane(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 收集用户信息吗 |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
protected void collectUserInformation() { |
||||||
|
//定制的就不弹出来了
|
||||||
|
if (!ComparatorUtils.equals(ProductConstants.APP_NAME, ProductConstants.DEFAULT_APP_NAME)) { |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
DesignerEnvManager envManager = DesignerEnvManager.getEnvManager(); |
||||||
|
final String key = envManager.getActivationKey(); |
||||||
|
//本地验证通过
|
||||||
|
if (ActiveKeyGenerator.localVerify(key)) { |
||||||
|
onLineVerify(envManager, key); |
||||||
|
UserInfoLabel.showBBSDialog(); |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
if (StableUtils.checkDesignerActive(readOldKey())) { |
||||||
|
//只要有老的key, 就不弹窗, 下次启动的时候, 在线验证下就行.
|
||||||
|
String newKey = ActiveKeyGenerator.generateActiveKey(); |
||||||
|
envManager.setActivationKey(newKey); |
||||||
|
UserInfoLabel.showBBSDialog(); |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
CollectUserInformationDialog activeDialog = new CollectUserInformationDialog( |
||||||
|
DesignerContext.getDesignerFrame()); |
||||||
|
activeDialog.setVisible(true); |
||||||
|
} |
||||||
|
|
||||||
|
private void onLineVerify(DesignerEnvManager envManager, final String key) { |
||||||
|
int status = envManager.getActiveKeyStatus(); |
||||||
|
//没有联网验证过
|
||||||
|
if (status != 0) { |
||||||
|
ThreadFactory namedThreadFactory = new ThreadFactoryBuilder() |
||||||
|
.setNameFormat("net-verify-thread-%s").build(); |
||||||
|
ThreadPoolExecutor threadPoolExecutor = new ThreadPoolExecutor( |
||||||
|
1, 1, |
||||||
|
0L, TimeUnit.MILLISECONDS, |
||||||
|
new LinkedBlockingQueue<Runnable>(1), |
||||||
|
namedThreadFactory); |
||||||
|
threadPoolExecutor.execute(new Runnable() { |
||||||
|
@Override |
||||||
|
public void run() { |
||||||
|
ActiveKeyGenerator.onLineVerify(key); |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private File getOldEnvFile(String folderName) { |
||||||
|
String userHome = System.getProperty("user.home"); |
||||||
|
if (userHome == null) { |
||||||
|
userHome = System.getProperty("userHome"); |
||||||
|
} |
||||||
|
String filePath = StableUtils.pathJoin(userHome, folderName, ProductConstants.APP_NAME + "Env.xml"); |
||||||
|
return new File(filePath); |
||||||
|
} |
||||||
|
|
||||||
|
private String getOldActiveKeyFromFile(File envFile) { |
||||||
|
if (!envFile.exists()) { |
||||||
|
return StringUtils.EMPTY; |
||||||
|
} |
||||||
|
|
||||||
|
DesignerEnvManager temp = new DesignerEnvManager(); |
||||||
|
try { |
||||||
|
XMLTools.readFileXML(temp, envFile); |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
return temp.getActivationKey(); |
||||||
|
} |
||||||
|
|
||||||
|
//默认只从7.0和711的设计器里读取key
|
||||||
|
private String readOldKey() { |
||||||
|
File file71 = getOldEnvFile(OLD_ENV_FOLDER_71); |
||||||
|
if (!file71.exists()) { |
||||||
|
File file70 = getOldEnvFile(OLD_ENV_FOLDER_70); |
||||||
|
return getOldActiveKeyFromFile(file70); |
||||||
|
} |
||||||
|
|
||||||
|
return getOldActiveKeyFromFile(file71); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 设计器退出时, 做的一些操作. |
||||||
|
*/ |
||||||
|
@Override |
||||||
|
public void shutDown() { |
||||||
|
InformationCollector collector = InformationCollector.getInstance(); |
||||||
|
collector.collectStopTime(); |
||||||
|
collector.saveXMLFile(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue