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

com.scudata.ide.common.dialog.DialogDataSource Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.ide.common.dialog;

import java.awt.BorderLayout;
import java.awt.Cursor;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowEvent;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.ListSelectionModel;

import com.scudata.app.config.ConfigConsts;
import com.scudata.app.config.ConfigUtil;
import com.scudata.app.config.RaqsoftConfig;
import com.scudata.common.DBConfig;
import com.scudata.common.DBInfo;
import com.scudata.common.MessageManager;
import com.scudata.common.PwdUtils;
import com.scudata.common.StringUtils;
import com.scudata.dm.Env;
import com.scudata.ide.common.DataSource;
import com.scudata.ide.common.DataSourceList;
import com.scudata.ide.common.DataSourceListModel;
import com.scudata.ide.common.GM;
import com.scudata.ide.common.GV;
import com.scudata.ide.common.IDataSourceEditor;
import com.scudata.ide.common.resources.IdeCommonMessage;
import com.scudata.ide.common.swing.JComboBoxEx;
import com.scudata.ide.common.swing.VFlowLayout;

/**
 * ????Դ?Ի???
 *
 */
public class DialogDataSource extends JDialog implements IDataSourceEditor {
	private static final long serialVersionUID = 1L;

	/**
	 * Common??Դ??????
	 */
	private MessageManager mm = IdeCommonMessage.get();
	/**
	 * ????Դ?б?????
	 */
	private DataSourceList jListDS;

	/**
	 * ?½???ť
	 */
	private JButton jBNew = new JButton();

	/**
	 * ɾ????ť
	 */
	private JButton jBDelete = new JButton();

	/**
	 * ???Ӱ?ť
	 */
	private JButton jBConnect = new JButton();

	/**
	 * ?Ͽ????Ӱ?ť
	 */
	private JButton jBDisconnect = new JButton();

	/**
	 * ?رհ?ť
	 */
	private JButton jBClose = new JButton();

	/**
	 * ?༭??ť
	 */
	private JButton jBEdit = new JButton();

	private JLabel labelEncryptyLevel = new JLabel(
			mm.getMessage("dialogdatasource.encryptlevel")); // ???ܼ??? 2018.05.31
																// ryz
	private JComboBoxEx jCBEncryptLevel = new JComboBoxEx();

	private JLabel jLPwdClass = new JLabel(
			mm.getMessage("dialogdatasource.pwdclass"));
	private JTextField jTFPwdClass = new JTextField();

	private final String LABEL_ENCRYPT_NONE = mm
			.getMessage("dialogdatasource.encryptnone"); // ????
	private final String LABEL_ENCRYPT_PASSWORD = mm
			.getMessage("dialogdatasource.encryptpwd"); // ???????
	private final String LABEL_ENCRYPT_URL_USER_PWD = mm
			.getMessage("dialogdatasource.encrypturluserpwd"); // URL???û????????????

	/**
	 * ????Դ?б?????
	 */
	private static DataSourceListModel dsModel;

	/**
	 * Constructor
	 */
	public DialogDataSource(DataSourceListModel dslm) {
		this(GV.appFrame, dslm);
	}

	/**
	 * Constructor
	 */
	public DialogDataSource(JFrame parent, DataSourceListModel dslm) {
		super(parent, "Data source", true);
		init(dslm);
	}

	/**
	 * ??????????Դ
	 */
	private void resetLangText() {
		this.setTitle(mm.getMessage("dialogdatasource.title"));

		jBNew.setText(mm.getMessage("button.new"));
		jBDelete.setText(mm.getMessage("button.delete"));
		jBConnect.setText(mm.getMessage("button.connect"));
		jBDisconnect.setText(mm.getMessage("button.disconnect"));
		jBClose.setText(mm.getMessage("button.close"));
		jBEdit.setText(mm.getMessage("button.edit"));
	}

	/**
	 * Server??ѡ??
	 * @param serverName
	 */
	protected void serverSelected(String serverName) {

	}

	/**
	 * ??ʼ???ؼ?
	 * 
	 * @throws Exception
	 */
	private void initUI() throws Exception {
		JPanel panel1 = new JPanel(new BorderLayout());
		jBNew.setMnemonic('N');
		jBNew.setText("?½?(N)");
		jBNew.addActionListener(new DialogDataSource_jBNew_actionAdapter(this));
		jBDelete.setMnemonic('D');
		jBDelete.setText("ɾ??(D)");
		jBDelete.addActionListener(new DialogDataSource_jBDelete_actionAdapter(
				this));
		JPanel jPanel1 = new JPanel(new VFlowLayout());
		jBConnect.setMnemonic('O');
		jBConnect.setText("????(O)");
		jBConnect
				.addActionListener(new DialogDataSource_jBConnect_actionAdapter(
						this));
		jBDisconnect.setMnemonic('K');
		jBDisconnect.setText("?Ͽ?(K)");
		jBDisconnect
				.addActionListener(new DialogDataSource_jBDisconnect_actionAdapter(
						this));
		JLabel jLabel1 = new JLabel();
		jLabel1.setText(" ");
		jBClose.setMnemonic('C');
		jBClose.setText("?ر?(C)");
		jBClose.addActionListener(new DialogDataSource_jBClose_actionAdapter(
				this));
		jBEdit.setVerifyInputWhenFocusTarget(true);
		jBEdit.setMnemonic('E');
		jBEdit.setText("?༭(E)");
		jBEdit.addActionListener(new DialogDataSource_jBEdit_actionAdapter(this));
		this.setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);
		this.addWindowListener(new DialogDataSource_this_windowAdapter(this));
		getContentPane().add(panel1);
		JPanel panelCenter = new JPanel();
		panel1.add(panelCenter, BorderLayout.CENTER);
		panel1.add(jPanel1, BorderLayout.EAST);
		panelCenter.setLayout(new BorderLayout());
		panelCenter.add(new JScrollPane(jListDS), BorderLayout.CENTER);

		JPanel panelEncrypt = new JPanel();
		panelEncrypt.setLayout(new GridBagLayout());
		panelEncrypt.add(labelEncryptyLevel, GM.getGBC(0, 0));
		jCBEncryptLevel.setListData(new Object[] { LABEL_ENCRYPT_NONE,
				LABEL_ENCRYPT_PASSWORD, LABEL_ENCRYPT_URL_USER_PWD });
		panelEncrypt.add(jCBEncryptLevel, GM.getGBC(0, 1, true));
		panelEncrypt.add(jLPwdClass, GM.getGBC(1, 0));
		panelEncrypt.add(jTFPwdClass, GM.getGBC(1, 1, true));
		panelCenter.add(panelEncrypt, BorderLayout.SOUTH);

		if (GV.config != null) {
			jCBEncryptLevel.setSelectedIndex(GV.config.getEncryptLevel());
			jTFPwdClass.setText(GV.config.getPwdClass());
		} else {
			jCBEncryptLevel.setSelectedIndex(ConfigConsts.ENCRYPT_NONE);
		}

		jCBEncryptLevel.addActionListener(new ActionListener() {

			public void actionPerformed(ActionEvent e) {
				encryptLevelChanged();
			}

		});
		encryptLevelChanged();

		jPanel1.add(jBConnect, null);
		jPanel1.add(jBDisconnect, null);
		jPanel1.add(jBNew, null);
		jPanel1.add(jBDelete, null);
		jPanel1.add(jBEdit, null);
		jPanel1.add(jLabel1, null);
		jPanel1.add(jBClose, null);

		jListDS.addMouseListener(new MouseAdapter() {
			public void mouseClicked(MouseEvent e) {
				if (e.getClickCount() == 2) {
					jBEdit.doClick();
				}
			}
		});
		jListDS.setSelectedIndex(0);
		jListDS.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
	}

	/**
	 * ?½?????Դ?¼?
	 * 
	 * @param e
	 */
	void jBNew_actionPerformed(ActionEvent e) {
		DialogDataSourceType dct = new DialogDataSourceType();
		dct.setVisible(true);
		if (dct.getOption() != JOptionPane.OK_OPTION) {
			return;
		}
		byte dsType = dct.getDataSourceType();
		DataSource ds;
		if (dsType == DialogDataSourceType.TYPE_RELATIONAL) {
			DialogDataSourcePara ddp;
			ddp = new DialogDataSourcePara();
			ddp.setVisible(true);
			if (ddp.getOption() != JOptionPane.OK_OPTION) {
				return;
			}
			ds = ddp.get();
		} else if (dsType == DialogDataSourceType.TYPE_ODBC) {
			DialogODBCDataSource dods = new DialogODBCDataSource();
			dods.setVisible(true);
			if (dods.getOption() != JOptionPane.OK_OPTION) {
				return;
			}
			ds = dods.get();
		} else {
			return;
		}

		int index = jListDS.getSelectedIndex();
		int size = dsModel.getSize();
		// ?ж??Ƿ?????
		if (dsModel.existDSName(ds.getName())) {
			GM.messageDialog(
					GV.appFrame,
					mm.getMessage("dialogdatasource.existdsname", ds.getName()),
					mm.getMessage("public.closenote"),
					JOptionPane.ERROR_MESSAGE);
			return;
		}

		if (index == -1 || (index == size) || index == 0) {
			dsModel.addElement(ds);
			jListDS.setSelectedIndex(size);
		} else {
			dsModel.insertElementAt(ds, index + 1);
			jListDS.setSelectedIndex(index + 1);
		}
	}

	/**
	 * ɾ??????Դ?¼?
	 * 
	 * @param e
	 */
	void jBDelete_actionPerformed(ActionEvent e) {
		int index = jListDS.getSelectedIndex();
		int size = dsModel.getSize();

		if (index > -1 && index < size) {
			DataSource ds = (DataSource) dsModel.get(index);
			if (ds.isSystem()) {
				GM.messageDialog(GV.appFrame, mm.getMessage(
						"dialogdatasource.notdelds", ds.getName()), mm
						.getMessage("public.note"), JOptionPane.WARNING_MESSAGE);
				return;
			} else if (ds.isRemote()) {
				GM.messageDialog(
						GV.appFrame,
						mm.getMessage("dialogdatasource.delremote",
								ds.getName()), mm.getMessage("public.note"),
						JOptionPane.WARNING_MESSAGE);
				return;
			}

			Object[] options = { mm.getMessage("public.delete"),
					mm.getMessage("public.cancel") };
			int option = GM.optionDialog(GV.appFrame,
					mm.getMessage("dialogdatasource.mustdelds", ds.getName()),
					mm.getMessage("public.note"), JOptionPane.OK_CANCEL_OPTION,
					JOptionPane.QUESTION_MESSAGE, options);
			if (option == JOptionPane.OK_OPTION) {
				dsModel.removeElementAt(index);
				size = dsModel.size();
				if (index < size) {
					jListDS.setSelectedIndex(index);
				} else {
					jListDS.setSelectedIndex(size - 1);
				}
				Env.deleteDBSessionFactory(ds.getName());
			}
		}
	}

	/**
	 * ????????Դ?¼?
	 * 
	 * @param e
	 */
	void jBConnect_actionPerformed(ActionEvent e) {
		DataSource ds;
		int index = jListDS.getSelectedIndex();
		int size = dsModel.getSize();
		if (index > -1 && index < size) {
			ds = (DataSource) dsModel.getElementAt(index);
		} else {
			return;
		}
		setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
		try {
			ds.getDBSession();
		} catch (Throwable x) {
			GM.showException(GM.handleDSException(ds, x));
		} finally {
			repaint();
			setCursor(Cursor.getDefaultCursor());
		}
	}

	/**
	 * ?Ͽ??????¼?
	 * 
	 * @param e
	 */
	void jBDisconnect_actionPerformed(ActionEvent e) {
		try {
			int index = jListDS.getSelectedIndex();
			int size = dsModel.getSize();
			DataSource ds;
			if (index > -1 && index < size) {
				ds = (DataSource) dsModel.getElementAt(index);
				ds.close();
				repaint();
			}
		} catch (Exception x) {
			GM.showException(x);
		}
	}

	protected void closeWindow() {
		if (!saveEncryprtLevel()) {
			this.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
			return;
		} else {
			this.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
		}
		GM.setWindowDimension(this);
		dispose();
	}

	/**
	 * ?رհ?ť?¼?
	 * 
	 * @param e
	 */
	void jBClose_actionPerformed(ActionEvent e) {
		closeWindow();
	}

	/**
	 * ?༭??ť?¼?
	 * 
	 * @param e
	 */
	void jBEdit_actionPerformed(ActionEvent e) {
		DataSource ds;
		int index = jListDS.getSelectedIndex();
		int size = dsModel.getSize();

		if (index > -1 && index < size) {
			ds = (DataSource) dsModel.getElementAt(index);
			if (!isLocalDataSource(ds, true)) {
				return;
			}
			int option = JOptionPane.CANCEL_OPTION;
			DBInfo info = ds.getDBInfo();
			if (info instanceof DBConfig) {
				if (((DBConfig) info).getDriver()
						.equals(DataSource.ODBC_DRIVER)) {
					DialogODBCDataSource dodbc = new DialogODBCDataSource();
					dodbc.set((DBConfig) info);
					dodbc.setVisible(true);
					option = dodbc.getOption();
					ds = dodbc.get();
				} else {
					DialogDataSourcePara ddp = new DialogDataSourcePara();
					ddp.set((DBConfig) info);
					ddp.setVisible(true);
					option = ddp.getOption();
					ds = ddp.get();
				}
			}

			if (option != JOptionPane.OK_OPTION) {
				return;
			} else {
				dsModel.setElementAt(ds, index);
			}
		}
	}

	/**
	 * ?Ƿ񱾵?????Դ
	 * 
	 * @param ds
	 *            ????Դ????
	 * @param showMessage
	 *            ?Ƿ???ʾ?쳣??Ϣ
	 * @return
	 */
	public static boolean isLocalDataSource(DataSource ds, boolean showMessage) {
		if (ds.isSystem()) {
			if (showMessage) {
				GM.messageDialog(
						GV.appFrame,
						IdeCommonMessage.get().getMessage(
								"dialogdatasource.canteditds", ds.getName()),
						IdeCommonMessage.get().getMessage("public.note"),
						JOptionPane.WARNING_MESSAGE);
			}
			return false;
		} else if (ds.isRemote()) {
			if (showMessage) {
				GM.messageDialog(
						GV.appFrame,
						IdeCommonMessage.get().getMessage(
								"dialogdatasource.editremote", ds.getName()),
						IdeCommonMessage.get().getMessage("public.note"),
						JOptionPane.WARNING_MESSAGE);
			}
			return false;
		}
		return true;
	}

	/**
	 * ?رմ????¼?
	 * 
	 * @param e
	 */
	void this_windowClosing(WindowEvent e) {
		closeWindow();
	}

	private boolean saveEncryprtLevel() {
		if (GV.config == null) {
			GV.config = new RaqsoftConfig();
		}

		byte encryptLevel = (byte) jCBEncryptLevel.getSelectedIndex();
		if (encryptLevel < 0) {
			encryptLevel = ConfigConsts.ENCRYPT_NONE;
		}
		RaqsoftConfig config = (RaqsoftConfig) GV.config;
		// int oldEncryptLevel = config.getEncryptLevel();
		// String oldPwdClass = config.getPwdClass();
		config.setEncryptLevel(encryptLevel);

		String pwdClass = jTFPwdClass.getText();
		// boolean pwdClassChanged = false;
		// if (oldEncryptLevel == ConfigConsts.ENCRYPT_PASSWORD
		// || oldEncryptLevel == ConfigConsts.ENCRYPT_URL_USER_PASSWORD) {
		// if (StringUtils.isValidString(pwdClass)) {
		// pwdClassChanged = !pwdClass.equals(oldPwdClass);
		// } else {
		// pwdClassChanged = StringUtils.isValidString(oldPwdClass);
		// }
		// }
		// ????????㷨???ˣ???Ҫ??֮ǰ???㷨????
		// if (pwdClassChanged) {
		// decryptDataSource();
		// }
		if (StringUtils.isValidString(pwdClass)) {
			try {
				ConfigUtil.setPwdClass(pwdClass);
			} catch (Exception e) {
				if (e instanceof ClassNotFoundException) {
					GM.showException(e, true, null,
							mm.getMessage("dialogdatasource.classnotfound"));
				} else {
					GM.showException(e);
				}
				// if (pwdClassChanged) { // ????¼??ܹ??߳???????֮ǰ?ļ????㷨???¼???
				// encryptDataSource();
				// }
				return false;
			}
			// if (encryptLevel == ConfigConsts.ENCRYPT_PASSWORD
			// || encryptLevel == ConfigConsts.ENCRYPT_URL_USER_PASSWORD) {
			// encryptDataSource();
			// }
			GV.config.setPwdClass(jTFPwdClass.getText());
		} else {
			try {
				ConfigUtil.setPwdClass(null);
			} catch (Exception e) {
				GM.showException(e);
			}
			// if (encryptLevel == ConfigConsts.ENCRYPT_PASSWORD
			// || encryptLevel == ConfigConsts.ENCRYPT_URL_USER_PASSWORD) {
			// encryptDataSource();
			// }
			GV.config.setPwdClass(null);
		}
		return true;
	}

	// private void decryptDataSource() {
	// for (int i = 0; i < GV.dsModel.getSize(); i++) {
	// DataSource ds = GV.dsModel.getDataSource(i);
	// DBConfig dbConfig = ds.getDBConfig();
	// String pwd = dbConfig.getPassword();
	// if (StringUtils.isValidString(pwd)) {
	// pwd = PwdUtils.decrypt(pwd);
	// dbConfig.setPassword(pwd);
	// }
	// }
	// }

	// private void encryptDataSource() {
	// for (int i = 0; i < GV.dsModel.getSize(); i++) {
	// DataSource ds = GV.dsModel.getDataSource(i);
	// DBConfig dbConfig = ds.getDBConfig();
	// String pwd = dbConfig.getPassword();
	// if (StringUtils.isValidString(pwd)) {
	// pwd = PwdUtils.encrypt(pwd);
	// dbConfig.setPassword(pwd);
	// }
	// }
	// }

	private void encryptLevelChanged() {
		int level = jCBEncryptLevel.getSelectedIndex();
		boolean encrypt = level == ConfigConsts.ENCRYPT_PASSWORD
				|| level == ConfigConsts.ENCRYPT_URL_USER_PASSWORD;
		jLPwdClass.setEnabled(encrypt);
		jTFPwdClass.setEnabled(encrypt);
		if (!encrypt) {
			jTFPwdClass.setText(null);
		}
	}

	/**
	 * ʵ?ֽӿ?IDataSourceEditor.init() -- ????????Դ???ó?ʼ???༭??
	 * 
	 * @param dsModel
	 *            ????Դ?б?
	 */
	public void init(DataSourceListModel dslm) {
		try {
			dsModel = dslm;
			jListDS = new DataSourceList(dslm);
			initUI();
			resetLangText();
			setSize(GM.isChineseLanguage() ? 400 : 500, 300);
			GM.setDialogDefaultButton(this, jBConnect, jBClose);
			setResizable(true);
		} catch (Exception ex) {
			GM.showException(ex);
		}
	}

	/**
	 * ʵ?ֽӿ?IDataSourceEditor.showEditor() -- ??ʾ????Դ?༭??
	 */
	public void showEditor() {
		this.setVisible(true);
	}

	/**
	 * ʵ?ֽӿ?IDataSourceEditor.isCommitted() -- ?Ƿ??ύ?޸?
	 * ȷ???޸?ʱ?Ż????getDataSourceListModel()
	 */
	public boolean isCommitted() {
		return true;
	}

	/**
	 * ʵ?ֽӿ?IDataSourceEditor.getDataSourceListModel() -- ȡ?༭???????Դ?б?
	 */
	public DataSourceListModel getDataSourceListModel() {
		return dsModel;
	}
}

class DialogDataSource_jBNew_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBNew_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBNew_actionPerformed(e);
	}
}

class DialogDataSource_jBDelete_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBDelete_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBDelete_actionPerformed(e);
	}
}

class DialogDataSource_jBConnect_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBConnect_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBConnect_actionPerformed(e);
	}
}

class DialogDataSource_jBDisconnect_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBDisconnect_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBDisconnect_actionPerformed(e);
	}
}

class DialogDataSource_jBClose_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBClose_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBClose_actionPerformed(e);
	}
}

class DialogDataSource_jBEdit_actionAdapter implements
		java.awt.event.ActionListener {
	DialogDataSource adaptee;

	DialogDataSource_jBEdit_actionAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void actionPerformed(ActionEvent e) {
		adaptee.jBEdit_actionPerformed(e);
	}
}

class DialogDataSource_this_windowAdapter extends java.awt.event.WindowAdapter {
	DialogDataSource adaptee;

	DialogDataSource_this_windowAdapter(DialogDataSource adaptee) {
		this.adaptee = adaptee;
	}

	public void windowClosing(WindowEvent e) {
		adaptee.this_windowClosing(e);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy