/* Copyright (c) 2009 The Regents of the University of California. All rights reserved. Permission is hereby granted, without written agreement and without license or royalty fees, to use, copy, modify, and distribute this software and its documentation for any purpose, provided that the above copyright notice and the following two paragraphs appear in all copies of this software. IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.. */ package org.clothocad.tool.bulltrowell.interpreters; import java.awt.Color; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.SwingUtilities; import org.clothocore.api.core.Collector; import org.clothocore.api.data.Collection; import org.clothocore.api.data.Feature; import org.clothocore.api.data.Format; import org.clothocore.api.data.ObjLink; import org.clothocore.api.data.ObjType; import org.clothocore.api.data.Oligo; import org.clothocore.api.data.Person; import org.clothocad.tool.bulltrowell.view.hub; import org.clothocad.tool.bulltrowell.view.spreadsheet; /** * * @authorInputString J. Christopher Anderson */ public class addOligos implements interpreter { public addOligos() { String[] titles = { "Nickname", "Description", "Sequence", "Author"}; _numCols = titles.length; _numRows = hub.numrows; _data = new String[_numRows][_numCols]; for(int i=0; i<_numRows; i++) { for(int j=0; j< _numCols; j++) { _data[i][j] = ""; } } _mySheet = new spreadsheet(_data, titles, this); _mySheet.setTitle("Add Oligos"); _mySheet.setTitleArea("Add oligos from Excel by Copy and Paste<br>You must supply Nickname, Description, and Sequence.<br>Other fields will be set to defaults below."); if(Collector.isConnected()) { loadingthread = new Thread() { @Override public void run() { /* //Put in the Collection chooser (field 1) _collections = Collector.getAllLinksOf(ObjType.COLLECTION); final Object[] collChoices = _collections.toArray(); SwingUtilities.invokeLater(new Runnable() { @Override public void run() { _mySheet.putComboField1("Collection", collChoices, collChoices[0].toString()); } }); */ //Get the current user final Person user = Collector.getCurrentUser(); //Put in the authorInputString chooser (field 2) _persons = Collector.getAllLinksOf(ObjType.PERSON); final Object[] authorChoices = _persons.toArray(); try { SwingUtilities.invokeAndWait(new Runnable() { @Override public void run() { _mySheet.putComboField2("Author", authorChoices, user.getObjLink()); } }); } catch (InterruptedException ex) { Logger.getLogger(addFeature.class.getName()).log(Level.SEVERE, null, ex); } catch (InvocationTargetException ex) { Logger.getLogger(addFeature.class.getName()).log(Level.SEVERE, null, ex); } } }; loadingthread.start(); } } @Override public void receiveData(Object[][] data) { _data = (String[][]) data; for(int i=0; i<_data.length; i++) { for(int j=0; j<_data[0].length; j++) { System.out.print(_data[i][j] + ""); } System.out.println(""); } //Create a new Collection to store everything if(_outCollection==null) { _outCollection = new Collection(); SwingUtilities.invokeLater(new Runnable() { @Override public void run() { _outCollection.launchDefaultViewer(); } }); } //If it's still loading wait for it to finish loading try { loadingthread.join(); } catch (InterruptedException ex) { } //Get the formatInputString and authorInputString defaults ObjLink link = (ObjLink) _mySheet.getComboField2(); _defaultAuthor = Collector.getPerson(link.uuid); _data = (String[][]) data; for(int i=0; i<_data.length; i++) { try { //Retrieve the data in the current line String name = _data[i][0]; String desc = _data[i][1]; String seq = _data[i][2]; //If any of the 3 required fields weren't entered, abort this line if(desc.equals("") || seq.equals("") || name.equals("")) { continue; } //Retrieve any additional lines entered String authorInputString = _data[i][3]; //If an authorInputString was typed in, search for that Person Person oligoAuthor; if(authorInputString.equals("")) { oligoAuthor = _defaultAuthor; } else { oligoAuthor = Person.retrieveByName(authorInputString); if(oligoAuthor==null) { continue; } } Oligo newoligo = new Oligo( name, desc, oligoAuthor, seq); if(newoligo == null) { continue; } //Notify user that the Oligo was created _mySheet.appendLogMessage(newoligo.getName() + "\n"); System.out.println("I created oligo " + newoligo.getName()); _outCollection.addObject(newoligo); //Clear the data in the data table for(int col=0; col<_numCols; col++) { _data[i][col] = ""; } } catch(Exception e) { continue; } } _mySheet.refreshData(_data); } /*----------------- variables -----------------*/ private String[][] _data; private spreadsheet _mySheet; private ArrayList<ObjLink> _persons; private ArrayList<ObjLink> _collections; private ArrayList<ObjLink> _formats; private Person _defaultAuthor; private Collection _outCollection; private Format _defaultFormat; private int _numCols; private int _numRows; private String messageText=""; private Thread loadingthread; }