Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java')
-rw-r--r--plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java186
1 files changed, 93 insertions, 93 deletions
diff --git a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java
index 40edb4c4871..f6285ac2818 100644
--- a/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java
+++ b/plugins/org.eclipse.osee.framework.server.admin/src/org/eclipse/osee/framework/server/admin/branch/BranchImportWorker.java
@@ -1,93 +1,93 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.server.admin.branch;
-
-import java.io.File;
-import java.net.URI;
-import java.util.ArrayList;
-import java.util.List;
-import org.eclipse.core.runtime.IProgressMonitor;
-import org.eclipse.osee.framework.branch.management.ImportOptions;
-import org.eclipse.osee.framework.jdk.core.util.Lib;
-import org.eclipse.osee.framework.resource.management.Options;
-import org.eclipse.osee.framework.resource.management.util.ResourceLocator;
-import org.eclipse.osee.framework.server.admin.BaseServerCommand;
-import org.eclipse.osee.framework.server.admin.internal.Activator;
-
-/**
- * @author Roberto E. Escobar
- */
-public class BranchImportWorker extends BaseServerCommand {
-
- protected BranchImportWorker() {
- super("Branch Import");
- }
-
- private boolean isValidArg(String arg) {
- return arg != null && arg.length() > 0;
- }
-
- @Override
- protected void doCommandWork(IProgressMonitor monitor) throws Exception {
- Options options = new Options();
- String arg = null;
- int count = 0;
-
- List<Integer> branchIds = new ArrayList<Integer>();
- List<File> importFiles = new ArrayList<File>();
- do {
- arg = getCommandInterpreter().nextArgument();
- if (isValidArg(arg)) {
- if (arg.equals("-excludeBaselineTxs")) {
- options.put(ImportOptions.EXCLUDE_BASELINE_TXS.name(), true);
- } else if (arg.equals("-clean")) {
- options.put(ImportOptions.CLEAN_BEFORE_IMPORT.name(), true);
- } else if (arg.equals("-allAsRootBranches")) {
- options.put(ImportOptions.ALL_AS_ROOT_BRANCHES.name(), true);
- } else if (arg.equals("-minTx")) {
- arg = getCommandInterpreter().nextArgument();
- if (isValidArg(arg)) {
- options.put(ImportOptions.MIN_TXS.name(), arg);
- }
- count++;
- } else if (arg.equals("-maxTx")) {
- arg = getCommandInterpreter().nextArgument();
- if (isValidArg(arg)) {
- options.put(ImportOptions.MAX_TXS.name(), arg);
- }
- count++;
- } else if (count == 0 && !arg.startsWith("-")) {
- importFiles.add(new File(arg));
- } else {
- branchIds.add(new Integer(arg));
- }
- count++;
- }
- } while (isValidArg(arg));
-
- if (importFiles.isEmpty()) {
- throw new IllegalArgumentException("Files to import were not specified");
- }
-
- for (File file : importFiles) {
- if (file == null || !file.exists() || !file.canRead()) {
- throw new IllegalArgumentException(String.format("File was not accessible: [%s]", file));
- } else if (file.isFile() && !Lib.isCompressed(file)) {
- throw new IllegalArgumentException(String.format("Invalid File: [%s]", file));
- }
- }
-
- for (File fileToImport : importFiles) {
- URI uri = new URI("exchange://" + fileToImport.toURI().toASCIIString());
- Activator.getInstance().getBranchExchange().importBranch(new ResourceLocator(uri), options, branchIds);
- }
- }
-}
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.server.admin.branch;
+
+import java.io.File;
+import java.net.URI;
+import java.util.ArrayList;
+import java.util.List;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.osee.framework.branch.management.ImportOptions;
+import org.eclipse.osee.framework.jdk.core.util.Lib;
+import org.eclipse.osee.framework.resource.management.Options;
+import org.eclipse.osee.framework.resource.management.util.ResourceLocator;
+import org.eclipse.osee.framework.server.admin.BaseServerCommand;
+import org.eclipse.osee.framework.server.admin.internal.Activator;
+
+/**
+ * @author Roberto E. Escobar
+ */
+public class BranchImportWorker extends BaseServerCommand {
+
+ protected BranchImportWorker() {
+ super("Branch Import");
+ }
+
+ private boolean isValidArg(String arg) {
+ return arg != null && arg.length() > 0;
+ }
+
+ @Override
+ protected void doCommandWork(IProgressMonitor monitor) throws Exception {
+ Options options = new Options();
+ String arg = null;
+ int count = 0;
+
+ List<Integer> branchIds = new ArrayList<Integer>();
+ List<File> importFiles = new ArrayList<File>();
+ do {
+ arg = getCommandInterpreter().nextArgument();
+ if (isValidArg(arg)) {
+ if (arg.equals("-excludeBaselineTxs")) {
+ options.put(ImportOptions.EXCLUDE_BASELINE_TXS.name(), true);
+ } else if (arg.equals("-clean")) {
+ options.put(ImportOptions.CLEAN_BEFORE_IMPORT.name(), true);
+ } else if (arg.equals("-allAsRootBranches")) {
+ options.put(ImportOptions.ALL_AS_ROOT_BRANCHES.name(), true);
+ } else if (arg.equals("-minTx")) {
+ arg = getCommandInterpreter().nextArgument();
+ if (isValidArg(arg)) {
+ options.put(ImportOptions.MIN_TXS.name(), arg);
+ }
+ count++;
+ } else if (arg.equals("-maxTx")) {
+ arg = getCommandInterpreter().nextArgument();
+ if (isValidArg(arg)) {
+ options.put(ImportOptions.MAX_TXS.name(), arg);
+ }
+ count++;
+ } else if (count == 0 && !arg.startsWith("-")) {
+ importFiles.add(new File(arg));
+ } else {
+ branchIds.add(new Integer(arg));
+ }
+ count++;
+ }
+ } while (isValidArg(arg));
+
+ if (importFiles.isEmpty()) {
+ throw new IllegalArgumentException("Files to import were not specified");
+ }
+
+ for (File file : importFiles) {
+ if (file == null || !file.exists() || !file.canRead()) {
+ throw new IllegalArgumentException(String.format("File was not accessible: [%s]", file));
+ } else if (file.isFile() && !Lib.isCompressed(file)) {
+ throw new IllegalArgumentException(String.format("Invalid File: [%s]", file));
+ }
+ }
+
+ for (File fileToImport : importFiles) {
+ URI uri = new URI("exchange://" + fileToImport.toURI().toASCIIString());
+ Activator.getInstance().getBranchExchange().importBranch(new ResourceLocator(uri), options, branchIds);
+ }
+ }
+}

Back to the top