#!/bin/bash
#
# Copyright (C) 2010 Intel Corporation
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program 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 General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#
# Author:
#        Yue, jianhui <jianhuix.a.yue@intel.com>


function func_install()
{
    if [ $# != 1 ];then
      echo "Need to add the parameter"
      return 1
    fi
    path=$(dirname $(dirname $0))
    PACKAGENAME="$path/$1"
    p_name=$1
    APP_NAME=${p_name%.*}
    pkgcmd -i -t wgt -q -p $PACKAGENAME
    App_ID=`wrt-launcher -l|grep -w $APP_NAME|awk '{print $NF}'`
    if [ -z $App_ID ];then
      echo "The installation is failed"
      return 1
    else
      echo "The widget is installed successfully"
      return 0
    fi
}

function func_uninstall()
{
    if [ $# != 1 ];then
      echo "Need to add the parameter"
      return 1
    fi
    path=$(dirname $(dirname $0))
    PACKAGENAME="$path/$1"
    p_name=$1
    APP_NAME=${p_name%.*}
    PKG_ID=`wrt-launcher -l|grep -w $APP_NAME|awk '{print $(NF-1)}'`
    if [ -z $PKG_ID ];then
      echo "The widget is not installed"
      return 1
    fi
    pkgcmd -u -q -t wgt -n $PKG_ID
    WIDGETNAME=`wrt-launcher -l|grep -w $APP_NAME|awk '{print $NF}'`
    if [ -z $WIDGETNAME ];then
      echo "The widget is uninstalled successfully"
      return 0
    else
      echo "uninstall widget failed"
      return 1
    fi
}

function func_launch()
{
    if [ $# != 1 ];then
      echo "Need to add the parameter"
      return 1
    fi
    path=$(dirname $(dirname $0))
    PACKAGENAME="$path/$1"
    p_name=$1
    APP_NAME=${p_name%.*}
    WIDGETNAME=`wrt-launcher -l|grep -w $APP_NAME|awk '{print $NF}'`
    wrt-launcher -s $WIDGETNAME
    sleep 10
    App_Status=`wrt-launcher -r $WIDGETNAME | grep -w "not running"`
    if [ -z $App_Status ];then
      echo "The widget is launched successfully"
      return 0
    else
      echo "The widget is not launched"
      return 1
    fi
}

function func_launch_other()
{
    if [ $# != 1 ];then
      echo "Need to add the parameter"
      return 1
    fi
    path=$(dirname $(dirname $0))
    PACKAGENAME="$path/$1"
    p_name=$1
    APP_NAME=${p_name%.*}
    APP_WIDGETNAME=`wrt-launcher -l|grep -w $APP_NAME|awk '{print $NF}'`
    wrt-launcher -s $APP_WIDGETNAME
    sleep 3
    if [ "$APP_NAME" = "lifecycle-launch-installed-app" ];then
        WIDGETNAME = "wrt3lhr012.LifecycleHideRunningApp"
        App_Status=`wrt-launcher -r $WIDGETNAME | grep -w "not running"`
    elif [ "$APP_NAME" = "lifecycle-launch-removed-app" ];then
        WIDGETNAME = "wrt3lhr012.LifecycleHideRunningApp"
        App_Status=`wrt-launcher -r $WIDGETNAME | grep -w "failed"`
    fi
    if [ -z $App_Status ];then
      echo "The widget is launched successfully"
      return 0
    else
      echo "The widget is not launched"
      return 1
    fi
}
