-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathlinuxcnc.in
879 lines (764 loc) · 23.9 KB
/
linuxcnc.in
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
#!/bin/bash
################################################################################
# usage: linuxcnc [options] [<ini-file>]
#
# options:
# -v = verbose - prints info as it works
# -d = echos script commands to screen for debugging
#
# this version calls pickconfig.tcl to pick an ini file if one
# is not specified on the command line
#
################################################################################
# Author:
# License: GPL Version 2
# System: Linux
#
# Copyright (c) 2004-2009 All rights reserved.
################################################################################
################################################################################
# 0. Values that come from configure
################################################################################
prefix=@prefix@
exec_prefix=@exec_prefix@
LSMOD=@LSMOD@
PIDOF="@PIDOF@ -x"
PS=@PS@
AWK=@AWK@
IPCS=@IPCS@
KILL=@KILL@
LINUXCNC_HOME=@EMC2_HOME@; export LINUXCNC_HOME
LINUXCNC_BIN_DIR=@EMC2_BIN_DIR@
LINUXCNC_TCL_DIR=@EMC2_TCL_DIR@
LINUXCNC_HELP_DIR=@EMC2_HELP_DIR@
LINUXCNC_RTLIB_DIR=@EMC2_RTLIB_DIR@
LINUXCNC_CONFIG_PATH="@LINUXCNC_CONFIG_PATH@"
LINUXCNC_NCFILES_DIR=@EMC2_NCFILES_DIR@
LINUXCNC_LANG_DIR=@EMC2_LANG_DIR@
REALTIME=@REALTIME@
LINUXCNC_IMAGEDIR=@EMC2_IMAGE_DIR@
LINUXCNC_TCL_LIB_DIR=@EMC2_TCL_LIB_DIR@
# if not overridden by user, point MACHINEKIT_INI to installed default:
if [ -z "$MACHINEKIT_INI" ]; then
MACHINEKIT_INI=@EMC2_SYSTEM_CONFIG_DIR@/machinekit.ini
fi
export MACHINEKIT_INI
if [ ! -d "$HOME/machinekit" ]; then
## if already linuxcnc dir link to it
if [ -d "$HOME/linuxcnc" ]; then
ln -s $HOME/linuxcnc $HOME/machinekit
echo "Creating machinekit directory link"
else
mkdir -p $HOME/machinekit
echo "Creating machinekit directory"
chown -R $USER:$USER $HOME/machinekit
fi
fi
if [ ! -f "$HOME/.machinekitrc" ]; then
## if already .linuxcncrc file link to it
if [ -f "$HOME/.linuxcncrc" ]; then
ln -s $HOME/.linuxcncrc $HOME/.machinekitrc
echo "Creating .machinekitrc link"
# else will be created by pickconfig when used
fi
fi
#put the LINUXCNC_BIN_DIR in PATH
PATH=$LINUXCNC_BIN_DIR:$PATH
#ditto scripts if not RIP
[ -d $LINUXCNC_HOME/scripts ] && PATH=$LINUXCNC_HOME/scripts:$PATH
if test "xyes" = "x@RUN_IN_PLACE@"; then
if [ -z "$LD_LIBRARY_PATH" ]; then
LD_LIBRARY_PATH=$LINUXCNC_HOME/lib
else
LD_LIBRARY_PATH=$LINUXCNC_HOME/lib:"$LD_LIBRARY_PATH"
fi
export LD_LIBRARY_PATH
if [ -z "$PYTHONPATH" ]; then
PYTHONPATH=$LINUXCNC_HOME/lib/python
else
PYTHONPATH=$LINUXCNC_HOME/lib/python:"$PYTHONPATH"
fi
export PYTHONPATH
fi
#PRELOAD_WORKAROUND=@PRELOAD_WORKAROUND@
XFILESEARCHPATH=%D:@EMC2_HOME@/%T/%N%C:@EMC2_HOME@/%T/%N
export XFILESEARCHPATH
MODULE_EXT=@MODEXT@ # module extension, used when insmod'ing
DEBUG_FILE=$(mktemp /tmp/linuxcnc.debug.XXXXXX)
PRINT_FILE=$(mktemp /tmp/linuxcnc.print.XXXXXX)
ln -sf $PRINT_FILE /tmp/linuxcnc.print
ln -sf $DEBUG_FILE /tmp/linuxcnc.debug
program_available () {
type -path "$1" > /dev/null 2>&1
}
usage () {
P=${0##*/}
cat <<EOF
$P: Run MACHINEKIT
Usage:
$P [-d] [-v] [-V]
Choose the configuration file graphically
$P [-k] [-d] [-v] [-V] path/to/your.ini
Name the configuration file using its path
$P [-k] [-d] [-v] [-V] -l
Use the previous configuration file
-d: Turn on "debug" mode
-v: Turn on "verbose" mode
-V: Turn on "print lots of junk" mode in halcmd
-k: Continue in the presence of errors in .hal files
EOF
}
################################################################################
# 1.1. strip and process command line options
################################################################################
while getopts "dvVlhkr" opt
do
case "$opt" in
d)
# enable echoing of script and command output
if tty -s; then
DEBUG_FILE=/dev/fd/2
echo "Debug mode on" >$DEBUG_FILE
fi
set -x;;
v)
# enable printing of verbose messages
if tty -s; then
PRINT_FILE=/dev/fd/1
echo "Verbose mode on" >$PRINT_FILE
fi;;
V)
# enable printing of 'lots of junk' from halcmd
if tty -s; then
echo "halcmd 'print lots of junk' mode on" >$PRINT_FILE
fi
DASHV=-V;;
r)
RUNTESTS=yes
;;
l)
USE_LAST_INIFILE=1;;
k) DASHK=-k;;
h)
usage
exit 0;;
*)
usage
exit 1
esac
done
shift $(($OPTIND-1))
if ! tty -s; then
exec 2>> $DEBUG_FILE
exec >> $PRINT_FILE
fi
function ErrorCheck () {
result=$?
if [ ! -z "$DISPLAY" ]; then
echo "catch {send -async popimage destroy .}; destroy ." | @WISH@
fi
if [ $result -ne 0 ]; then
if tty -s || [ -z "$DISPLAY" ] ; then
if [ -f $DEBUG_FILE ]; then
cp $DEBUG_FILE $HOME/linuxcnc_debug.txt
else
echo "(debug information was sent to stderr)" \
> $HOME/linuxcnc_debug.txt
fi
if [ -f $PRINT_FILE ]; then
cp $PRINT_FILE $HOME/linuxcnc_print.txt
else
echo "(print information was sent to stdout)" \
> $HOME/linuxcnc_print.txt
fi
echo "\
Machinekit terminated with an error. For simple cases more information
can be found in the following files:
$HOME/linuxcnc_debug.txt
$HOME/linuxcnc_print.txt
For other cases get more meaningfull information by restarting after
export DEBUG=5
and look at the output of:
/var/log/linuxcnc.log
dmesg
When looking for errors, specifically look for libraries that fail to load
by looking for lines with 'insmod failed' as per example below.
insmod failed, returned -1:
do_load_cmd: dlopen: nonexistant-component.so: cannot open shared object file:
No such file or directory
For getting help, please have a look here: www.machinekit.io/docs/getting-help/"
else
@WISH@ $LINUXCNC_TCL_DIR/show_errors.tcl $DEBUG_FILE $PRINT_FILE
fi
fi
rm -f $DEBUG_FILE $PRINT_FILE 2>/dev/null
exit $result
}
trap ErrorCheck EXIT
################################################################################
# 1.3. INIFILE find inifile to use #
################################################################################
if [ ! -z "$1" ]; then
case "$1" in
-) USE_LAST_INIFILE=1;;
/*) INIFILE="$1" ;;
*) INIFILE="`pwd`/$1";;
esac
shift
fi
EXTRA_ARGS="$@"
# 1.3.1. Determine if we have run-in place or installed system
RUN_IN_PLACE=@RUN_IN_PLACE@
echo RUN_IN_PLACE=$RUN_IN_PLACE >>$PRINT_FILE
LINUXCNCVERSION="@EMC2VERSION@"; export LINUXCNCVERSION
# common from here..
INIVAR=@EMC2_LIBEXEC_DIR@/inivar
HALCMD="halcmd $DASHK $DASHV"
PICKCONFIG="@WISH@ $LINUXCNC_TCL_DIR/bin/pickconfig.tcl"
LINUXCNC_EMCSH=@WISH@
echo LINUXCNC_DIR=$LINUXCNC_DIR >>$PRINT_FILE
echo LINUXCNC_BIN_DIR=$LINUXCNC_BIN_DIR >>$PRINT_FILE
echo LINUXCNC_TCL_DIR=$LINUXCNC_TCL_DIR >>$PRINT_FILE
echo LINUXCNC_SCRIPT_DIR=$LINUXCNC_SCRIPT_DIR >>$PRINT_FILE
echo LINUXCNC_RTLIB_DIR=$LINUXCNC_RTLIB_DIR >>$PRINT_FILE
echo LINUXCNC_CONFIG_DIR=$LINUXCNC_CONFIG_DIR >>$PRINT_FILE
echo LINUXCNC_LANG_DIR=$LINUXCNC_LANG_DIR >>$PRINT_FILE
echo INIVAR=$INIVAR >>$PRINT_FILE
echo HALCMD=$HALCMD >>$PRINT_FILE
echo LINUXCNC_EMCSH=$LINUXCNC_EMCSH >>$PRINT_FILE
#export some common directories, used by some of the GUI's
export LINUXCNC_TCL_DIR
export LINUXCNC_EMCSH
export LINUXCNC_HELP_DIR
export LINUXCNC_LANG_DIR
export REALTIME
export HALCMD
[ -z $RUNTESTS ] && echo "MACHINEKIT - $LINUXCNCVERSION"
# was an inifile specified on the command line?
if [ ! -z "$USE_LAST_INIFILE" ]; then
INIFILE=$($INIVAR -ini ~/.machinekitrc -var LAST_CONFIG -sec PICKCONFIG 2>>$DEBUG_FILE)
echo "Using previous inifile: $INIFILE" >> $PRINT_FILE
fi
if [ ! -n "$INIFILE" ] ; then
# nothing specified, get from the user
# it returns either a path, or nothing at all
INIFILE=$($PICKCONFIG)
# if name is xxxx.demo, then:
# execute xxxx.demo in background and exit
if [ "${INIFILE%%.demo}".demo = "${INIFILE}" ] ; then
"${INIFILE}" &
exit 0
fi
fi
if [ ! -n "$INIFILE" ] ; then
# still nothing specified, exit
exit 0
else
# make it easier for gremlin_view to get the active ini file
export INIFILE
fi
# delete directories from path, save name only
INI_NAME="${INIFILE##*/}"
INI_DIR="${INIFILE%/*}"
CONFIG_DIR="${INIFILE%/*}"
export CONFIG_DIR
function handle_includes () {
hdr="# handle_includes():"
inifile=$1
cd $(dirname $inifile) ;# for the function() subprocess only
grep "^#INCLUDE" $inifile >/dev/null
status=$?
if [ $status -ne 0 ] ; then
echo "$inifile" ;# just use the input
return 0 ;# ok
fi
outfile=`mktemp`; # Let the shell create a temporary file
>|$outfile
echo "#*** $outfile" >>$outfile
echo "#*** Created: $(date)" >>$outfile
echo "#*** Autogenerated file with expanded #INCLUDEs" >>$outfile
echo "" >>$outfile
line=0
while read a b ; do
line=$((line + 1))
if [ "$a" = "#INCLUDE" ] ; then
if [ "X$b" = "X" ] ; then
msg="$hdr <$line> found #INCLUDE with no filename" >>$outfile
echo "$msg" >&2
rm -f $outfile
return 1 ;# error
else
# expand file name
breal=$(eval echo "$b")
# -r: readable
if [ -r "$breal" ] ; then
echo "" >>$outfile
echo "#*** Begin #INCLUDE file: $breal" >>$outfile
cat "$breal" >>$outfile
echo "#*** End #INCLUDE file: $breal" >>$outfile
else
msg="$hdr <$line> CANNOT READ $breal"
echo "$msg" >&2
rm -f $outfile
return 1 ;# error
fi
fi
else
echo "$a $b" >> $outfile
fi
done <$inifile
echo $outfile ;# use the expanded file
return 0 ;# ok
}
PREVINIFILE=$INIFILE
INIFILE=$(handle_includes $INIFILE)
if [ $? -ne 0 ] ; then
exit 1 ; # error
fi
if [ "$PREVINIFILE" != "$INIFILE" ]; then
trap "rm -f $INIFILE" 0 1 2 3 15; # Clean up the temporary file
fi
export PATH=$CONFIG_DIR/bin:$PATH
[ -z $RUNTESTS ] && echo "Machine configuration directory is '$INI_DIR'"
echo "Machine configuration file is '$INI_NAME'"
# make sure ini file exists (the tcl script just did this, so we could
# eliminate this test, but it does no harm)
if [ ! -f "$INIFILE" ] ; then
echo "Could not find ini file '$INIFILE'"
trap '' EXIT
exit -1
fi
echo INIFILE=$INIFILE >>$PRINT_FILE
################################################################################
# 2. extract info from the ini file that we will need later
################################################################################
retval=
# 2.1. define helper function
function GetFromIniQuiet {
#$1 var name $2 - section name
name=$1
retval=`$INIVAR -ini "$INIFILE" -var $1 -sec $2 2> /dev/null`
if [ ! -n "$1" ] ; then
exit -1
fi
echo "$name=$retval" >>$PRINT_FILE
}
function GetFromIni {
#$1 var name $2 - section name
name=$1
retval=`$INIVAR -ini "$INIFILE" -var $1 -sec $2 2>>$DEBUG_FILE`
if [ ! -n "$1" ] ; then
echo "Can't find variable $1 in section [$2] of file $INIFILE."
exit -1
fi
echo "$name=$retval" >>$PRINT_FILE
}
# Usage:
# GetFromIniEx VAR1 SEC1 [VAR2 SEC2...VARn SECn] [default]
function GetFromIniEx {
original_var="[$2]$1"
while [ $# -ge 2 ]; do
if retval=`$INIVAR -ini "$INIFILE" -var "$1" -sec "$2" 2>/dev/null`; then return; fi
shift 2
done
if [ $# -eq 0 ]; then
echo "Can't find $original_var in $INIFILE."
exit -1
fi
retval="$1"
}
# 2.2. get param file
GetFromIni PARAMETER_FILE RS274NGC
RS274NGC_PARAMFILE=$retval
# 2.3. get mot information
GetFromIniEx MOT MOT EMCMOT EMCMOT motmod
EMCMOT=$retval$MODULE_EXT # add module extension
# 2.4. get io information
GetFromIniEx IO IO EMCIO EMCIO io
EMCIO=$retval
# 2.5. get task information
GetFromIni TASK TASK
EMCTASK=$retval
if [ "$EMCTASK" = emctask ]; then EMCTASK=linuxcnctask; fi
# 2.6. we hardcode the server name, change if needed
# linuxcncsvr now holds/creates all the NML channels,
# so it needs to start by default, as the first process
EMCSERVER=linuxcncsvr
# 2.7. get halui information
GetFromIniQuiet HALUI HAL
HALUI=$retval
# 2.9. get display information
GetFromIni DISPLAY DISPLAY
EMCDISPLAY=`(set -- $retval ; echo $1 )`
EMCDISPLAYARGS=`(set -- $retval ; shift ; echo $* )`
case $EMCDISPLAY in
tkemc) EMCDISPLAY=tklinuxcnc ;;
xemc) EMCDISPLAY=xlinuxcnc ;;
esac
# 2.10. get NML config information
GetFromIniEx NML_FILE LINUXCNC NML_FILE EMC @DEFAULT_NMLFILE@
NMLFILE=$retval
export NMLFILE
################################################################################
# 3. Done gathering information, define a few functions
# Execution resumes after function definitions...
################################################################################
KILL_TASK=
KILL_TIMEOUT=20
################################################################################
# 3.1. Kills a list of tasks with timeout
# if it doesn't work, kill -9 is used
################################################################################
function KillTaskWithTimeout() {
if [ ! -n "$KILL_PIDS" ] ; then
KILL_PIDS=`$PIDOF $KILL_TASK`
fi
if [ ! -n "$KILL_PIDS" ] ; then
echo "Could not find pid(s) for task $KILL_TASK"
return -1
fi
for KILL_PID in $KILL_PIDS ; do
echo "Killing task $KILL_TASK, PID=$KILL_PID" >>$PRINT_FILE
# first a "gentle" kill with signal TERM
$KILL $KILL_PID
WAIT=$KILL_TIMEOUT
# wait and see if it dissappears
while [ $WAIT -gt 1 ] ; do
# see if it's still alive
if $PS $KILL_PID >>$DEBUG_FILE ; then
WAIT=$(($WAIT-1))
sleep .1
else
WAIT=0
fi
done
if [ $WAIT -gt 0 ] ; then
# gentle didn't work, get serious
echo "Timeout, trying kill -9" >>$PRINT_FILE
$KILL -9 $KILL_PID
WAIT=$KILL_TIMEOUT
# wait and see if it dissappears
while [ $WAIT -gt 1 ] ; do
# see if it's still alive
if $PS $KILL_PID >>$DEBUG_FILE ; then
WAIT=$(($WAIT-1))
sleep .1
else
WAIT=0
fi
done
fi
if [ $WAIT -gt 0 ] ; then
echo "Could not kill task $KILL_TASK, PID=$KILL_PID"
fi
KILL_PIDS=
KILL_TASK=
done
}
################################################################################
# 3.2. define the cleanup function
#
# this cleanup function doesn't know or care what was actually
# loaded - it simply kills _any_ processes in its list of
# components
################################################################################
function Cleanup() {
echo "Shutting down and cleaning up Machinekit..."
# Kill displays first - that should cause an orderly
# shutdown of the rest of linuxcnc
for KILL_TASK in xlinuxcnc ylinuxcnc linuxcncpanel keystick iosh linuxcncsh linuxcncrsh linuxcnctop mdi debuglevel; do
if $PIDOF $KILL_TASK >>$DEBUG_FILE ; then
KillTaskWithTimeout
fi
done
if program_available axis-remote ; then
if [ ! -z "$DISPLAY" ]; then
axis-remote --ping && axis-remote --quit
fi
fi
if [ "$1" = "other" ]; then
echo -n "Waiting for other session to finish exiting..."
WAIT=$KILL_TIMEOUT
while [ $WAIT -gt 1 ]; do
if ! LinuxcncRunning ; then
# if ! [ -f $LOCKFILE ]; then
echo " Ok"
return 0
fi
WAIT=$(($WAIT-1))
sleep .1
done
echo "lockfile still not removed"
fi
SHUTDOWN=`$INIVAR -ini "$INIFILE" -var SHUTDOWN -sec HAL 2> /dev/null`
if [ -n "$SHUTDOWN" ]; then
echo "Running HAL shutdown script"
$HALCMD -f $SHUTDOWN
fi
# now kill all the other user space components
for KILL_TASK in linuxcncsvr milltask; do
if $PIDOF $KILL_TASK >>$DEBUG_FILE ; then
KillTaskWithTimeout
fi
done
echo "Stopping realtime threads" >> $DEBUG_FILE
$HALCMD stop
echo "Unloading hal components" >> $DEBUG_FILE
$HALCMD unload all
for i in `seq 10`; do
# (the one component is the halcmd itself)
if [ "`$HALCMD list comp | wc -w`" = 1 ]; then break; fi
sleep .2
done
echo "Removing HAL_LIB, RTAPI, and Real Time OS modules" >>$PRINT_FILE
$REALTIME stop
echo "Removing NML shared memory segments" >> $PRINT_FILE
while read b x t x x x x x x m x; do
case $b$t in
BSHMEM) ipcrm -M $m 2>/dev/null;;
esac
done < $NMLFILE
# # remove lock file
# if [ -f $LOCKFILE ] ; then
# rm $LOCKFILE
# fi
echo "Cleanup done"
}
# this needs urgent repair
# no more sysvipc shm, and shmdrv might be present
# see realtime.in -mah
function LinuxcncRunning() {
# 135612177 is the integer ID of the GLOBAL data segment:
# (GLOBAL_KEY 0x08154711). it is universally present for
# all thread styles build options, and removed by
# RTAPI rtapi_app_exit(). Hence it is a more reliable
# indication for 'RTAPI running' than a lock file.
grep 135612177 /proc/sysvipc/shm >/dev/null 2>&1
}
################################################################################
# 4. done with function definitions, execution resumes here
################################################################################
# Name of lock file to check for that signifies that Machinekit is up,
# to prevent multiple copies of controller
LOCKILE=/tmp/linuxcnc.lock
# Check for lock file
if LinuxcncRunning ; then
if tty -s; then
echo -n "Machinekit is still running. Restart it? [Y/n] "
read input; [ -z $input ] && input=y
else
input=$(@WISH@ <<EOF
wm wi .
puts [tk_messageBox -title Machinekit -message "Machinekit is still running. Restart it?" -type yesno]
exit
EOF
)
fi
case $input in
y|Y|yes)
echo Cleaning up old Machinekit...
Cleanup other
;;
*)
echo Not starting new Machinekit
exit 0
;;
esac
fi
echo Starting Machinekit...
# trap ^C so that it's called if user interrupts script
trap 'Cleanup ; exit 0' SIGINT SIGTERM
# go to the dir where the ini file is
# either configs/<specific-config> when run-in-place, or
# /usr/local/share/linuxcnc/configs/<specific-config> (wherever it was installed)
cd "$INI_DIR"
# Create the lock file
#touch $LOCKFILE
################################################################################
# 4.1. pop up intro graphic
################################################################################
img=`$INIVAR -ini "$INIFILE" -var INTRO_GRAPHIC -sec DISPLAY 2>>$DEBUG_FILE`
imgtime=`$INIVAR -ini "$INIFILE" -var INTRO_TIME -sec DISPLAY 2>>$DEBUG_FILE`
if [ "$imgtime" = "" ] ; then
imgtime=5
fi
if [ "$img" != "" ] ; then
if [ -e "$img" ]; then
true
elif [ -e "$INI_DIR/$img" ]; then
img="$INI_DIR/$img"
elif [ -e "$LINUXCNC_IMAGEDIR/$img" ]; then
img="$LINUXCNC_IMAGEDIR/$img"
else
img=
fi
fi
if [ "$img" != "" ] ; then
if [ -x $LINUXCNC_TCL_DIR/bin/popimage ] ; then
$LINUXCNC_TCL_DIR/bin/popimage $img $imgtime &
fi
fi
################################################################################
# 4.2. Now we can finally start loading Machinekit
################################################################################
# 4.3.1. Run linuxcncserver in background, always (it owns/creates the NML buffers)
echo "Starting Machinekit server program: $EMCSERVER" >>$PRINT_FILE
if ! program_available $EMCSERVER; then
echo "Can't execute server program $EMCSERVER"
Cleanup
exit 1
fi
export INI_FILE_NAME="$INIFILE"
$EMCSERVER -ini "$INIFILE" &
# 4.3.2. Start REALTIME
echo "Loading Real Time OS, RTAPI, and HAL_LIB modules" >>$PRINT_FILE
if ! $REALTIME start ; then
echo "Realtime system did not load"
Cleanup
exit -1
fi
# 4.3.3. export the location of the HAL realtime modules so that
# "halcmd loadrt" can find them
export HAL_RTMOD_DIR=$LINUXCNC_RTLIB_DIR
# 4.3.4. Run io in background if so defined in INI
if [ "$EMCIO" != "" ] ; then
echo "Starting Machinekit IO program: $EMCIO" >>$PRINT_FILE
if ! program_available $EMCIO ; then
echo "Can't execute IO program $EMCIO"
Cleanup
exit 1
fi
echo $EMCIO started
$HALCMD loadusr -Wn iocontrol $EMCIO -ini "$INIFILE"
echo halcmd loadusr $EMCIO started
else
echo "Skipping Machinekit IO program >>$PRINT_FILE"
fi
# 4.3.5. Run halui in background, if necessary
if [ -n "$HALUI" ] ; then
echo "Starting HAL User Interface program: $HALUI" >>$PRINT_FILE
if ! program_available $HALUI ; then
echo "Can't execute halui program $HALUI"
Cleanup
exit 1
fi
$HALCMD loadusr -Wn halui $HALUI -ini "$INIFILE"
fi
TWOPASS=`$INIVAR -ini "$INIFILE" -var TWOPASS -sec HAL -num 1 2> /dev/null`
if [ -n "$TWOPASS" ] ; then
# if [HAL]TWOPASS is defined, handle all [HAL]HALFILE entries here:
CFGFILE=@EMC2_TCL_LIB_DIR@/twopass.tcl
if ! haltcl -i "$INIFILE" $CFGFILE && [ "$DASHK" = "" ]; then
Cleanup
exit -1
fi
else
# 4.3.6. execute HALCMD config files (if any)
# get first config file name from ini file
NUM=1
CFGFILE=`$INIVAR -tildeexpand -ini "$INIFILE" -var HALFILE -sec HAL -num $NUM 2> /dev/null`
while [ -n "$CFGFILE" ] ; do
case $CFGFILE in
*.tcl)
if ! haltcl -i "$INIFILE" $CFGFILE && [ "$DASHK" = "" ]; then
Cleanup
exit -1
fi
;;
*.py)
if ! python2 $CFGFILE ; then
Cleanup
exit -1
fi
;;
*)
if ! $HALCMD -i "$INIFILE" -f $CFGFILE && [ "$DASHK" = "" ]; then
Cleanup
exit -1
fi
esac
# get next config file name from ini file
NUM=$(($NUM+1))
CFGFILE=`$INIVAR -tildeexpand -ini "$INIFILE" -var HALFILE -sec HAL -num $NUM 2> /dev/null`
done
fi
# 4.3.7. execute discrete HAL commands from ini file (if any)
# get first command from ini file
NUM=1
HALCOMMAND=`$INIVAR -ini "$INIFILE" -var HALCMD -sec HAL -num $NUM 2> /dev/null`
while [ -n "$HALCOMMAND" ] ; do
if [ -n "$HALCOMMAND" ] ; then
echo "Running HAL command: $HALCOMMAND" >>$PRINT_FILE
if ! $HALCMD $HALCOMMAND && [ "$DASHK" = "" ]; then
echo "ini file HAL command $HALCOMMAND failed."
Cleanup
exit -1
fi
fi
# get next command from ini file
NUM=$(($NUM+1))
HALCOMMAND=`$INIVAR -ini "$INIFILE" -var HALCMD -sec HAL -num $NUM 2> /dev/null`
done
# 4.3.8. start the realtime stuff ticking
$HALCMD start
# 4.3.9. Run task in background
echo "Starting TASK program: $EMCTASK" >>$PRINT_FILE
if ! program_available $EMCTASK ; then
echo "Can't execute TASK program $EMCTASK"
Cleanup
exit 1
fi
# setup LD_PRELOAD if deemed necessary by configure
unset LD_PRELOAD
if [ -n "$PRELOAD_WORKAROUND" ] ; then
export LD_PRELOAD=$PRELOAD_WORKAROUND
fi
$EMCTASK -ini "$INIFILE" &
echo task pid=$!
# 4.3.10. Run display in foreground
echo "Starting DISPLAY program: $EMCDISPLAY" >>$PRINT_FILE
result=0
case $EMCDISPLAY in
tklinuxcnc|mini)
# tklinuxcnc and mini are in the tcl directory, not the bin directory
if [ ! -x $LINUXCNC_TCL_DIR/$EMCDISPLAY.tcl ] ; then
echo "Can't execute DISPLAY program $LINUXCNC_TCL_DIR/$EMCDISPLAY.tcl $EMCDISPLAYARGS"
Cleanup
exit 1
fi
$LINUXCNC_TCL_DIR/$EMCDISPLAY.tcl -ini "$INIFILE" $EMCDISPLAYARGS
result=$?
;;
dummy)
# dummy display just waits for <ENTER>
echo "DUMMY DISPLAY MODULE, press <ENTER> to continue."
read foo;
;;
keystick)
if ! program_available keystick ; then
echo "Can't execute DISPLAY program $EMCDISPLAY $EMCDISPLAYARGS $EXTRA_ARGS"
Cleanup
exit 1
fi
if [ ! -z "$DISPLAY" ]; then
xterm -xrm 'XTerm*metaSendsEscape:false' -ls -e keystick -ini "$INIFILE"
else
keystick -ini "$INIFILE"
fi
result=$?
;;
*)
# all other displays are assumed to be commands on the PATH
if ! program_available $EMCDISPLAY; then
echo "Can't execute DISPLAY program $EMCDISPLAY $EMCDISPLAYARGS $EXTRA_ARGS"
Cleanup
exit 1
fi
$EMCDISPLAY -ini "$INIFILE" $EMCDISPLAYARGS $EXTRA_ARGS
result=$?
;;
esac
# the display won't return until you shut it down,
# so when you get here it's time to clean up
Cleanup
exit $result