enable revision 240684
1238438Sdteske#!/bin/sh
2238438Sdteske#-
3238438Sdteske# Copyright (c) 2012 Devin Teske
4238438Sdteske# All Rights Reserved.
5238438Sdteske#
6238438Sdteske# Redistribution and use in source and binary forms, with or without
7238438Sdteske# modification, are permitted provided that the following conditions
8238438Sdteske# are met:
9238438Sdteske# 1. Redistributions of source code must retain the above copyright
10238438Sdteske#    notice, this list of conditions and the following disclaimer.
11238438Sdteske# 2. Redistributions in binary form must reproduce the above copyright
12238438Sdteske#    notice, this list of conditions and the following disclaimer in the
13238438Sdteske#    documentation and/or other materials provided with the distribution.
14238438Sdteske#
15238438Sdteske# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16238438Sdteske# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING BUT NOT LIMITED TO, THE
17238438Sdteske# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18238438Sdteske# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19238438Sdteske# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20238438Sdteske# DAMAGES (INLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21238438Sdteske# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22238438Sdteske# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23238438Sdteske# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24238438Sdteske# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25238438Sdteske# SUCH DAMAGE.
26238438Sdteske#
27238438Sdteske# $FreeBSD: head/usr.sbin/bsdconfig/mouse/enable 240684 2012-09-18 22:28:42Z dteske $
28238438Sdteske#
29238438Sdteske############################################################ INCLUDES
30238438Sdteske
31240684SdteskeBSDCFG_SHARE="/usr/share/bsdconfig"
32240684Sdteske. $BSDCFG_SHARE/common.subr || exit 1
33240684Sdteskef_include $BSDCFG_SHARE/dialog.subr
34240684Sdteskef_include $BSDCFG_SHARE/mustberoot.subr
35240684Sdteskef_include $BSDCFG_SHARE/sysrc.subr
36238438Sdteske
37240684SdteskeBSDCFG_LIBE="/usr/libexec/bsdconfig" APP_DIR="110.mouse"
38238438Sdteskef_include_lang $BSDCFG_LIBE/$APP_DIR/include/messages.subr
39238438Sdteske
40238438Sdteskeipgm=$( f_index_menu_selection $BSDCFG_LIBE/$APP_DIR/INDEX "$pgm" )
41238438Sdteske[ $? -eq $SUCCESS -a "$ipgm" ] && pgm="$ipgm"
42238438Sdteske
43238438Sdteske############################################################ CONFIGURATION
44238438Sdteske
45238438Sdteske#
46238438Sdteske# Location of moused(8) pidfile
47238438Sdteske#
48238438SdteskeMOUSED_PIDFILE=/var/run/moused.pid
49238438Sdteske
50238438Sdteske############################################################ MAIN
51238438Sdteske
52238438Sdteske# Incorporate rc-file if it exists
53238438Sdteske[ -f "$HOME/.bsdconfigrc" ] && f_include "$HOME/.bsdconfigrc"
54238438Sdteske
55238438Sdteske#
56238438Sdteske# Process command-line arguments
57238438Sdteske#
58238438Sdteskewhile getopts hSX flag; do
59238438Sdteske	case "$flag" in
60238438Sdteske	h|\?) f_usage $BSDCFG_LIBE/$APP_DIR/USAGE "PROGRAM_NAME" "$pgm";;
61238438Sdteske	esac
62238438Sdteskedone
63238438Sdteskeshift $(( $OPTIND - 1 ))
64238438Sdteske
65238438Sdteske#
66238438Sdteske# Initialize
67238438Sdteske#
68238438Sdteskef_dialog_init
69238438Sdteskef_dialog_title "$msg_mouse_enable"
70238438Sdteskef_dialog_backtitle "${ipgm:+bsdconfig }$pgm"
71238438Sdteskef_mustberoot_init
72238438Sdteske
73238438Sdteske#
74238438Sdteske# Get the type, port, and flags
75238438Sdteske#
76238438Sdtesketype=$( f_sysrc_get moused_type )
77238438Sdteskecase "$type" in
78238438Sdteske[Nn][Oo]|"") f_die 1 "$msg_please_select_protocol_and_port_first" ;;
79238438Sdteskeesac
80238438Sdteskeport=$( f_sysrc_get moused_port )
81238438Sdteske[ "$port" ] || f_die 1 "$msg_please_select_protocol_and_port_first"
82238438Sdteskeflags=$( f_sysrc_get moused_flags )
83238438Sdteske
84238438Sdteske#
85238438Sdteske# Start the mouse daemon
86238438Sdteske#
87238438Sdteskef_dialog_info "$msg_trying_to_start_the_mouse_daemon"
88238438Sdteske[ -r "$MOUSED_PIDFILE" ] &&
89238438Sdteske	f_quietly kill "$( cat "$MOUSED_PIDFILE" 2> /dev/null )"
90238438Sdteskef_quietly vidcontrol -m on
91238438Sdteskef_quietly moused -t "$type" -p "$port" $flags
92238438Sdteske
93238438Sdteske#
94238438Sdteske# Confirm with the user that the mouse is working
95238438Sdteske#
96238438Sdteskef_dialog_title "$msg_user_confirmation_requested"
97238438Sdteskef_dialog_yesno "$msg_now_move_the_mouse"
98238438Sdteskeretval=$?
99238438Sdteskef_dialog_title_restore
100238438Sdteske
101238438Sdteske#
102238438Sdteske# Stop the mouse daemon
103238438Sdteske#
104238438Sdteskef_quietly vidcontrol -m off
105238438Sdteskeif [ $retval -eq $SUCCESS ]; then
106238438Sdteske	f_sysrc_set moused_enable "YES" || f_die
107238438Sdteske	ln -fs /dev/sysmouse /dev/mouse || f_die # backwards compat
108238438Sdteskeelse
109238438Sdteske	[ -r "$MOUSED_PIDFILE" ] &&
110238438Sdteske		f_quietly kill "$( cat "$MOUSED_PIDFILE" )"
111238438Sdteske	f_sysrc_set moused_enable "NO" || f_die
112238438Sdteskefi
113238438Sdteske
114238438Sdteskeexit $SUCCESS
115238438Sdteske
116238438Sdteske################################################################################
117238438Sdteske# END
118238438Sdteske################################################################################
119