summaryrefslogtreecommitdiffstats
path: root/src/com.gluster.storage.management.console/src/com/gluster/storage/management/console/dialogs/InitializeDiskTypeSelection.java
blob: b484d6d2f36cb3bac365e205afb857f294d73bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*******************************************************************************
 * 
 * InitializeDiskTypeSelection.java
 * 
 * Copyright (c) 2011 Gluster, Inc. <http://www.gluster.com>
 * This file is part of Gluster Management Console.
 *
 * Gluster Management Console 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.
 *  
 * Gluster Management Console 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 this program. If not, see
 * <http://www.gnu.org/licenses/>.
 *******************************************************************************/
package com.gluster.storage.management.console.dialogs;

import java.util.List;

import org.eclipse.jface.dialogs.Dialog;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ModifyEvent;
import org.eclipse.swt.events.ModifyListener;
import org.eclipse.swt.events.TraverseEvent;
import org.eclipse.swt.events.TraverseListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.forms.events.HyperlinkAdapter;
import org.eclipse.ui.forms.events.HyperlinkEvent;
import org.eclipse.ui.forms.widgets.Hyperlink;

import com.gluster.storage.management.console.utils.GUIHelper;

public class InitializeDiskTypeSelection extends Dialog  {
	
	private Combo formatTypeCombo = null;
	private final GUIHelper guiHelper = GUIHelper.getInstance();
	private Composite initializeDiskTypeComposite;
	private Composite composite;
	private String fsType;
	private String mountPointText;
	private Text mountPoint;
	private String deviceName;
	private List<String> possibleFsType; 
    private String defaultMountPoint = "/export/";

	public InitializeDiskTypeSelection(Shell parentShell, String formatingDeviceName, List<String> possibleFsType) {
		super(parentShell);
		this.possibleFsType = possibleFsType;
		this.deviceName = formatingDeviceName;
		// TODO Auto-generated constructor stub
	}
	
	@Override
	protected void configureShell(Shell newShell) {
		super.configureShell(newShell);

		newShell.setText("Gluster Management Console - Select File System Type");
		addEscapeListener(newShell);
	}
	
	private void addEscapeListener(Shell shell) {
		shell.addTraverseListener(new TraverseListener() {

			@Override
			public void keyTraversed(TraverseEvent e) {
				if (e.keyCode == SWT.ESC) {
					cancelPressed();
				}
			}
		});
	}
	
	@Override
	protected Control createDialogArea(Composite parent) {
		// Makes sure that child composites inherit the same background
		parent.setBackgroundMode(SWT.INHERIT_FORCE); 
		
		composite =  (Composite) super.createDialogArea(parent);
		configureDialogLayout(composite);
		createComposite(composite);
		return composite;
	}
	
	private void configureDialogLayout(Composite composite) {
		GridLayout layout = (GridLayout) composite.getLayout();
		layout.numColumns = 3;
		layout.marginLeft = 20;
		layout.marginRight = 20;
		layout.marginTop = 20;
		layout.horizontalSpacing = 20;
		layout.verticalSpacing = 20;
	}
	
	private void createComposite(Composite composite) {
		initializeDiskTypeComposite = new Composite(composite, SWT.NONE);
		GridLayout layout = new GridLayout(3, false);
		initializeDiskTypeComposite.setLayout(layout);

		createLabel(initializeDiskTypeComposite, "File system ");
		createFormatTypeCombo(initializeDiskTypeComposite);
		createLabel(initializeDiskTypeComposite, "Mount point ");
		createMountPointText(initializeDiskTypeComposite);
		createChangeLink(initializeDiskTypeComposite);
	}
	
	private void createLabel(Composite composite, String labelText) {
		Label formatTypeLabel = new Label(composite, SWT.NONE);
		formatTypeLabel.setText(labelText);
		formatTypeLabel.setLayoutData(new GridData(GridData.BEGINNING, GridData.CENTER, false, false));
	}
	
	private void createFormatTypeCombo(Composite composite) {
		formatTypeCombo = new Combo(composite, SWT.READ_ONLY);
		formatTypeCombo.setItems(possibleFsType.toArray(new String[0]));
		formatTypeCombo.select(0);
		new Label(composite, SWT.NONE);
	}
	
	private void createMountPointText(Composite container) {
		mountPoint = new Text(container, SWT.BORDER);
		GridData txtNameData = new GridData(SWT.LEFT, SWT.CENTER, true, false, 1, 1);
		txtNameData.horizontalSpan = 1;
		txtNameData.widthHint = 400;
		mountPoint.setTextLimit(100);
		mountPoint.setLayoutData(txtNameData);
		mountPoint.setText(defaultMountPoint + deviceName);
		mountPoint.setEnabled(false);
		mountPoint.addModifyListener(new ModifyListener() {
			@Override
			public void modifyText(ModifyEvent e) {
				validateMountPoint(mountPoint.getText().trim());
			}
		});
	}
	
	private void createChangeLink(Composite container) {
		final Hyperlink changeLink = new Hyperlink(container, SWT.UNDERLINE_SINGLE);
		changeLink.setText("change");
		changeLink.setUnderlined(true);
		changeLink.setForeground(new Color(Display.getDefault(), 0, 0, 255));
		
		changeLink.addHyperlinkListener(new HyperlinkAdapter() {

		//	private void finishEdit() {
		//		changeLink.setText("change");
		//		mountPoint.setEnabled(false);
		//	}

			private void startEdit() {
				// changeLink.setText("update");
				changeLink.setVisible(false);
				mountPoint.setEnabled(true);
			}

			@Override
			public void linkActivated(HyperlinkEvent e) {
				if (mountPoint.isEnabled()) {
					// we were already in edit mode.
					// finishEdit();
				} else {
					// Get in to edit mode
					startEdit();
				}
			}
		});
	}

	@Override
	protected void okPressed() {
		fsType = formatTypeCombo.getText().trim();
		mountPointText = mountPoint.getText().trim();
		if (validateForm()) {
			super.okPressed();
		} else {
			MessageDialog.openError(getShell(), "Error: Validation error!", "Empty or Invalid mountpoint."); 
		}
	}
	
	@Override
	public void cancelPressed() {
		super.cancelPressed();
	}
	
	private boolean validateMountPoint(String deviceMountPoint) {
		if (deviceMountPoint.isEmpty()) {
			return false;
		}
		return deviceMountPoint.matches("^/.+");
	}

	private boolean validateForm() {
		return (!formatTypeCombo.getText().trim().isEmpty() && validateMountPoint(  mountPoint.getText().trim()));
	}

	/**
	 * Overriding to make sure that the dialog is centered in screen
	 */
	@Override
	protected void initializeBounds() {
		super.initializeBounds();

		guiHelper.centerShellInScreen(getShell());
	}
	
	public String getFSType() {
		return fsType;
	}

	public String getMountPoint() {
		return mountPointText;
	}
}