summaryrefslogtreecommitdiff
path: root/bashrc
blob: 3e62a7e4246d8d7d4fad5a33e7c80db66cb33b30 (plain)
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
body() {
    IFS= read -r header
    printf '%s\n' "$header"
    "$@"
}

col() {
	awk "{ print \$$1; }"
}

mp4() {
	ffmpeg -i "$1" -vcodec copy -acodec ac3 "${1%.*}.mp4"
}

safedir() {
	echo "$@ $(pwd)" | md5sum | cut -b-32
}

diffWith() {
	diffCmd=$@
	diffFile="/tmp/diffwith-$(safedir $diffCmd).patch"
	$diffCmd > $diffFile
	dos2unix -q $diffFile
	( $EDITOR $diffFile ; rm -f $diffFile ) &
}

showimage() {
	(
		local pkg
		pkg=$1
		pkg="${pkg:=*/*}"
		cd $(portageq envvar PORTAGE_TMPDIR)/portage/$pkg-*/image || return 1
		find . -not -type d -print0 | xargs -0r ls -lvhF --color=auto
		du -shc */*
	)
}

cov() {
	local cov=/tmp/cov.$$
	local all=$cov/all
	local key=$cov/key
	local html=$cov/html
	local htmlfin=bin/cov
	local gcov=$(build $@ -qand1 variant=coverage | grep -w compile | \
			sed -n "s/.*\/gcc-\([0-9.]\+\)\/.*/gcov-\1/p" | head -n1)
	if [[ -z $gcov ]] ; then
		echo "Couldn't figure a gcov version"
		return 1
	fi
	gcov=$(find ${PATH//:/ } -name "$gcov*" 2> /dev/null | sort -Vr | head -n1)
	if [[ ! -x $gcov ]] ; then
		echo "Couldn't find a suitable gcov"
		return 1
	fi
	echo "Using $gcov"

	echo "Building $@"
	mkdir -p $cov
	gcov=$gcov cov=$cov build testing.launcher=~/dev/util/diff.cov $@ -q variant=coverage || return 2

	echo "Generating HTML"
	mkdir -p $html
	genhtml bin/*.info -o $html -s -k -t . --demangle-cpp --sort --function-coverage -q --num-spaces=2 || return 5
	rsync -a --delete-after $html/ $htmlfin/
	rm -rf $cov

	xdotool search --name LCOV windowactivate --sync key F5 windowactivate $(xdotool getactivewindow) || \
		xdg-open "file://$(realpath $htmlfin)/index.html"
	echo "Done"
}

sizes() {
	MODE="variant=release strip=on"
	TARGETS=$(build $MODE $@ -and1 | grep '^\(gcc\|clang-linux\)\.link' | cut -d ' ' -f 2)
	if [[ -z $TARGETS ]] ; then return ; fi
	build $MODE -d0 $@
	find $TARGETS -printf "./%p\t%s\n" | \
		sed "s|/bin/.*/\([^/]\+\s\)|\t\1|; s|^$(pwd)/||" | \
		sort -bk1,2 | \
		column -N module,binary,size -R module,binary,size -t -s $'\t'
}

PATH="/usr/lib/ccache/bin:$PATH"
CORES=$(grep core\ id /proc/cpuinfo | sort -u | wc -l)
CPUS=$(grep core\ id /proc/cpuinfo -c)
if [ -n "$DISTCC_HOSTS" ] ; then
	TASKS=$(echo $DISTCC_HOSTS | tr ' ' '\n' | cut -d / -f2 | paste -s -d+  | bc)
elif [ -x /usr/bin/distcc ] ; then
	TASKS=$(distcc -j)
else
	TASKS=$((($CORES + $CPUS) / 2))
fi
export FEATURES="ccache"
alias cdan="cd ~/work/web/analytics/src"
alias cdsrc="cd ~/work/web/smssite/src"
alias cdutl="cd ~/work/web/smssite/utils"
alias cdj="cd ~/work/jsBase"
alias cdt="cd ~/work/templates"
alias cdw="cd ~/work/web"
alias cdc="cd ~/work/config"
alias cdr='cd $(git root)'
alias :e="gvim"
alias d="cd ~/dev"
alias p="cd ~/dev/portage"
alias ChuckNorris="sudo"
alias l="/bin/ls -NlhvF --color"
alias grep="/bin/grep -I --color=auto --exclude-dir=node_modules --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.svn --exclude-dir=bin --exclude=tags --exclude-dir=docs/html --exclude-dir=target --exclude-dir=.idea --exclude=*.iml"
alias emerge-state='watch "( ps -C sandbox -o stime,cmd ; tail /var/log/emerge.log /var/tmp/portage/*/*/temp/build.log 2> /dev/null )"'
alias df="/bin/df -hT"
title() {
	echo -ne "\033]0;$@\007"
}
vg() {
	valgrind \
		--show-leak-kinds=all \
		--suppressions=$HOME/dev/valgrind.suppressions \
		--leak-check=full \
		--log-file=/var/tmp/vg.log \
		$@
}
build() {
	title "Build in progress"
	CCACHE_BASEDIR=$(git root) nice -n5 b2 -j$TASKS $@
	rtn=$?
	if [ $rtn -eq 0 ]; then
		title "✔ ${PWD/#$HOME/\~} $@"
	else
		title "✘ ${PWD/#$HOME/\~} $@"
	fi
	return $rtn
}
onchange() {
	$@
	while inotifywait -qr . --exclude '/bin/|\.sw.|/target/|/\.git/|\.gcov' -e modify ; do
		clear
		printf '\e[3J'
		$@
	done
}
autobuild() {
	onchange build $@
}
autocov() {
	onchange cov . 0
}
# CVS
cvsd() {
	diffWith "cvs diff -wubB $@"
}
# SVN
svnd() {
	diffWith "svn diff --force --no-diff-deleted -x -b $@"
}
# Git
gitd() {
	diffWith "git diff --no-prefix --relative -b -M $@"
}
gitdc() {
	diffWith "git diff --cached --no-prefix --relative -b -M $@"
}
gppdmb() {
	PARENT=${1:-master}
	git checkout $PARENT && git pull --prune && git delete-merged-branches
}
createAllBranches() {
	for branch in $(git branch --all | grep '^\s*remotes' | egrep --invert-match '(:?HEAD|master)$'); do git branch --track "${branch#*/*/}" "$branch"; done
}
filterAllBranches() {
	git filter-branch --subdirectory-filter $1 --prune-empty --tag-name-filter cat -d /tmp/$$ -- $(git branch | cut -b 3-)
}
alias gst='git status'
# Hg
hgd() {
	diffWith "hg diff -p -b $@"
}

if [ "$(awk '$5=="/" {print $1}' </proc/1/mountinfo)" != "$(awk '$5=="/" {print $1}' </proc/$$/mountinfo)" ]; then
	# chroot
	if [ -e /etc/redhat-release ]; then
		ROOT=$(cat /etc/redhat-release)
	elif [ -e /etc/gentoo-release ]; then
		ROOT=$(cat /etc/gentoo-release)
	else
		ROOT="unknown chroot"
	fi
	PS1='\[\033[01;32m\]$ROOT \[\033[01;34m\]\w \$\[\033[00m\] '
	PROMPT_COMMAND='echo -ne "\033]0;${PWD/#$HOME/\~} ($ROOT)\007"'
elif [ -z "$SSH_CONNECTION" ] ; then
	# local
	PS1='\[\033[01;34m\]\w \$\[\033[00m\] '
	PROMPT_COMMAND='echo -ne "\033]0;${PWD/#$HOME/\~}\007"'
else
	# ssh
	PS1='\[\033[01;32m\]\h \[\033[01;34m\]\w \$\[\033[00m\] '
	PROMPT_COMMAND='echo -ne "\033]0;${PWD/#$HOME/\~} ($HOSTNAME)\007"'
fi
PATH=$PATH:~/files/scripts/

export XAUTHORITY=~/.Xauthority
export HISTFILESIZE=15000
export HISTSIZE=${HISTFILESIZE}
export HISTCONTROL=ignoredups:ignorespace
shopt -s histappend
export LESSCHARSET=utf-8
if [[ -n $DISPLAY ]]; then
	export EDITOR="gvim -f"
else
	export EDITOR="vim"
fi
shopt -s cdspell
shopt -s checkwinsize
shopt -s no_empty_cmd_completion

[ -x /usr/bin/fuck ] && eval $(thefuck --alias)

if [ -x /usr/bin/hh ] ; then
	export HSTR_CONFIG=hicolor,raw-history-view
	export PROMPT_COMMAND="history -a; history -n; ${PROMPT_COMMAND}"
	if [[ $- =~ .*i.* ]]; then bind '"\C-r": "\C-a hh -- \C-j"'; fi
fi