[f5c182]: / codesys-xinetd / install.sh  Maximize  Restore  History

Download this file

239 lines (221 with data), 5.7 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/bin/bash
################################################################################
# Copyright 2017 Ingo Hornberger <ingo_@gmx.net>
#
# This software is licensed under the MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
# software and associated documentation files (the "Software"), to deal in the Software
# without restriction, including without limitation the rights to use, copy, modify,
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to the following
# conditions:
#
# The above copyright notice and this permission notice shall be included in all copies
# or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
# PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
# OR OTHER DEALINGS IN THE SOFTWARE.
#
################################################################################

CDS_LINK="https://store.codesys.com/ftp_download/3S/CODESYS/300000/3.5.14.0/CODESYS%203.5.14.0.exe"
TRICKS_LINK="https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks"
ADDITIONAL_PACKAGES=https://forge.codesys.com/svn/tol,cforge,code/trunk/cforge.package
export WINEPREFIX=~/.wine.cds
export WINEARCH=win32

# kill current and subprocesses on exit
trap "kill 0" EXIT

# this should be running in the background to close rundll32 dialogs
function handle_rundll
{
    while true; do
	#
	# rundll32 error
	#
	while ! xdotool search --name 'rundll32'; do
	    sleep 1
	done
	echo "rundll32 error found"
	(
	    # next
	    sleep 2
	    echo "-> sending key sequence"
	    xdotool key "Tab"; xdotool key "space";
	)
	sleep 1
    done

}

function handle_codemeter
{
    while true; do
	#
	# CodeMeter setup
	#
	while ! xdotool search --name 'codemeter'; do
	    sleep 1
	done
	echo "codemeter found"
	(
	    # next
	    sleep 5
	    echo "-> sending key sequence"
	    xdotool key "space"; 
	    # check license
	    sleep 1
	    xdotool key "space";
	    # next
	    sleep 1
	    xdotool key "Tab"; xdotool key "Tab"; xdotool key "space";
	    # next
	    sleep 1
	    xdotool key "Tab"; xdotool key "Tab"; xdotool key "Tab"; xdotool key "Tab"; xdotool key "space";
	    # next
	    sleep 1
	    xdotool key "Tab"; xdotool key "Tab"; xdotool key "Tab"; xdotool key "Tab"; xdotool key "Tab"; xdotool key "space";
	    # install
	    sleep 1
	    xdotool key "space";
	    # finish
	    sleep 5
	    xdotool key "space";
	)
	sleep 1
    done

}

function kill_systray
{
    while true; do
	while ! pgrep -f SysTray.exe; do
	    sleep 1
	done
	echo "SysTrays running - kill them..."
	pgrep -f SysTray.exe | xargs -n 1 kill
	sleep 1
    done
}

function get
{
    wget --no-verbose --output-document=setup.exe -c "${CDS_LINK}"
    wget --no-verbose --output-document=winetricks -c "${TRICKS_LINK}" 
    chmod 755 winetricks 
    (
	mkdir -p Packages
	cd Packages
	for i in ${ADDITIONAL_PACKAGES}; do
		wget --no-verbose -c "${i}" 
	done
    )
}

function prereq
{
    echo -n "Checking prerequisite 'wine-development'"
    if which wine-development; then
	echo "=> OK"
    else
	echo "ERROR: Please install wine32-development and wine64-development"
	exit 1
    fi
}

function switch_to_win7
{
    # call wine to create new WINEPREFIX
    wine-development dir
    sleep 5
    # patch win version
    cp system.reg ${WINEPREFIX}
}

function winetricks
{
    ./winetricks -q vcrun2005 vcrun2008 vcrun2013 vcrun2015 dotnet46 &> /dev/zero
    wineserver-development -w
    ./winetricks nocrashdialog
    wineserver-development -w
}

function install
{
    wine-development setup.exe /v/qn /s /v'INSTALLDIR=C:\\CODESYS' /v"ADDLOCAL=Basic,CODESYS,cforge Tool" /v"CDS_INSTALL_SERVICES=0"
    wineserver-development -w
}

function post_install
{
    wine-development reg add "HKLM\\Software\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-0-0-0-1000"
    wineserver-development -w
}

no_check="y"
no_dl="y"
no_winetricks="y"
no_install="y"
no_postinstall="y"
no_xvfb="y"
case ${1} in
    --winetricks)
	no_winetricks=""
	;;
    --install)
	no_install=""
	;;
    --postinstall)
	no_postinstall=""
	;;
    --xvfb)
	no_check=""
	no_dl=""
	no_winetricks=""
	no_install=""
	no_postinstall=""
	no_xvfb=""
	;;
    *)
	no_check=""
	no_dl=""
	no_winetricks=""
	no_install=""
	no_postinstall=""
	;;
esac

if [ -z ${no_xvfb} ]; then
    echo "=== Start XVFB ==="
    export DISPLAY=:98
    Xvfb :98 &
    sleep 3
    jwm &
    
    # install handlers only when automating the installation
    # with Xvfb and xdotool
    (handle_rundll)&
    (handle_codemeter)&
    (kill_systray)&
fi
if [ -z ${no_check} ]; then
    echo "=== Checking Prerequisites ==="
    prereq
fi
if [ -z ${no_dl} ]; then
    echo "=== Downloading packets ==="
    get
fi
if [ -z ${no_winetricks} ]; then
    echo "=== Installing Prerequisites w/ winetricks ==="
    winetricks
fi
if [ -z ${no_install} ]; then
    echo "=== Installing CODESYS ==="
    install
fi
if [ -z ${no_postinstall} ]; then
    echo "=== Postinstall Fixups ==="
    post_install
    if [ -z ${no_install} ]; then
	echo "=== Installing CODESYS again ==="
	echo "after one complete run + post install, also all *.exe are copied ;)"
	install
    fi
fi
if [ -z ${no_xvfb} ]; then
    echo "=== Kill XVFB ==="
    killall -9 Xvfb
fi

exit