/* * ### * Phresco Service Tools * * Copyright (C) 1999 - 2012 Photon Infotech Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ### */ /******************************************************************************* * Copyright (c) 2011 Photon. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Photon Public License v1.0 * which accompanies this distribution, and is available at * http://www.photon.in/legal/ppl-v10.html * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Contributors: * Photon - initial API and implementation ******************************************************************************/ package com.photon.phresco.service.pilots; import java.io.File; import java.io.FileWriter; import java.io.IOException; import org.codehaus.plexus.util.cli.CommandLineException; import org.codehaus.plexus.util.cli.Commandline; import com.google.gson.Gson; import com.photon.phresco.exception.PhrescoException; import com.photon.phresco.model.ProjectInfo; import com.photon.phresco.model.Technology; import com.photon.phresco.service.api.RepositoryManager; import com.photon.phresco.service.model.ArtifactInfo; import com.photon.phresco.util.TechnologyTypes; /*the class AndroidPilotProject*/ public class AndroidPilotProject implements IPilotProject { private static final String ANDROID_BUILD_FILE = "android\\ShoppingCart\\build.xml"; private RepositoryManager repManager = null; /* new AndroidPilotProject instantiated */ public AndroidPilotProject(RepositoryManager repoManager) { this.repManager = repoManager; } /* command line execution */ public void buildPilotProject() throws PhrescoException { try { Commandline cl = new Commandline("ant -buildfile " + PilotProjectManager.PILOT_BASE + ANDROID_BUILD_FILE); cl.execute(); } catch (CommandLineException e) { throw new PhrescoException(e); } } /* publish AndroidPilotProject to desired path */ public void publishPilotProject() throws PhrescoException { ArtifactInfo info = new ArtifactInfo(PilotProjectManager.PILOT_GROUP, TechnologyTypes.ANDROID_NATIVE, "", "zip", "0.1"); File artifact = new File(PilotProjectManager.PILOT_BASE + "\\android\\ShoppingCart\\build\\ShoppingCart.zip"); repManager.addArtifact(info, artifact); } /* AndroidPilotProject json data creation */ public void publishMetaData() throws PhrescoException { ProjectInfo info = new ProjectInfo(); info.setName("test"); info.setCode("etest"); info.setDescription("sdfsdf"); info.setApplication("apptype-mobile"); Technology tech = new Technology(); tech.setId("tech-android-native"); tech.setName("Android Native"); tech.setFrameworks(null); // List<TupleBean> modules = new ArrayList<TupleBean>(); // modules.add(new TupleBean("mod_googlegson_1.7.1", "Google GSON", "1.7.1")); // // tech.setModules(modules); info.setTechnology(tech); info.setPilotProjectUrls(new String[] { "/pilots/tech-android-native/0.1/tech-android-native-0.1.zip" }); Gson gson = new Gson(); String json = gson.toJson(info); try { FileWriter write = new FileWriter("androidJson.pilots"); write.write(json); write.close(); ArtifactInfo aInfo = new ArtifactInfo(PilotProjectManager.PILOT_GROUP, TechnologyTypes.ANDROID_NATIVE, "", "pilots", "0.1"); File artifact = new File("androidJson.pilots"); repManager.addArtifact(aInfo, artifact); } catch (IOException e) { throw new PhrescoException(e); } } }