You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3088 lines
103 KiB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
  1. #!/bin/bash
  2. ##
  3. ## TODO:
  4. ## - subordinate container should really be able to modify base image of their master
  5. ## - this could be done through docker-update
  6. ## - I'm not happy with the current build using 'build/' directory, this should be
  7. ## changed to:
  8. ## - always have a base image (specified in metadata), and always have hooks/install
  9. ## executed and merge in image (like docker-build-charm).
  10. ## - container base image is ALWAYS the image of the master container... this brings
  11. ## questions about a double way to express inheritage (through relations as it is
  12. ## implemented now, or through this base-image ?)
  13. ## - the name of the scripts for relation (aka relation_name-relation-joined) is bad as
  14. ## reading the name in a hooks/ dir, there are no way to know if we are the target or
  15. ## the base of the relation.
  16. ## - we could leverage a 'relations/' dir on the root of the charm, with both:
  17. ## 'relations/provide/relation_name' and 'relations/receive/relation_name'
  18. ## - a very bad point with the actual naming is that we can't have a providing AND
  19. ## receiving a relation with same name.
  20. ## - The cache system should keep md5 of docker-compose and other things between runs
  21. ## - The cache system should use underlying function that have only arguments inputs.
  22. ## This will allow to cache completely without issues function in time.
  23. ## - would probably need instrospection in charm custom action to know if these need
  24. ## init or relations to be set up.
  25. ## - Be clear about when the SERVICE name is used and the CHARM name is used.
  26. ## - in case of service contained in another container
  27. ## - in normal case
  28. ## - in docker-compose, can't use charm name: if we want 2 instances of the same charm
  29. ## we are stuck. What will be unique is the name of the service.
  30. ## - some relations are configured in compose.yml but should not trigger the loading
  31. ## of necessary component (for instance, apache --> log-rotate), if log-rotate is
  32. ## not there, this link should considered optional.
  33. ## - Could probably allow an unexistent charm to be populated with only "docker-image:"
  34. ## of the same name. Although this should trigger a visible warning.
  35. #:-
  36. [ -e /etc/shlib ] && . /etc/shlib || {
  37. echo "Unsatisfied dependency. Please install 'kal-shlib-core'."
  38. exit 1
  39. }
  40. #:-
  41. include common
  42. include pretty
  43. include parse
  44. include charm
  45. include array
  46. include cla
  47. depends shyaml docker
  48. version=0.1
  49. usage="$exname [COMPOSE_OPTS] [ACTION [ACTION_OPTS]]"
  50. help="\
  51. $WHITE$exname$NORMAL jobs is to run various shell scripts to build
  52. a running orchestrated and configured docker containers. These shell
  53. scripts will have the opportunity to build a 'docker-compose.yml'.
  54. Once init script and relations scripts are executed, $WHITE$exname$NORMAL
  55. delegate the launching to ${WHITE}docker-compose${NORMAL} by providing it
  56. the final 'docker-compose.yml'.
  57. $WHITE$exname$NORMAL also leverage charms to offer some additional custom
  58. actions per charm, which are simply other scripts that can be
  59. run without launching ${WHITE}docker-compose${NORMAL}.
  60. In compose message, color coding is enforced as such:
  61. - ${DARKCYAN}action$NORMAL,
  62. - ${DARKBLUE}relation$NORMAL,
  63. - ${DARKPINK}charm${NORMAL},
  64. - ${DARKYELLOW}service${NORMAL},
  65. - ${WHITE}option-name${NORMAL}/${WHITE}command-name${NORMAL}/${WHITE}Section-Title${NORMAL}
  66. $WHITE$exname$NORMAL reads '/etc/compose.conf' for global variables, and
  67. '/etc/compose.local.conf' for local host adjustements.
  68. "
  69. ## XXXvlab: this doesn't seem to work when 'compose' is called in
  70. ## a hook of a charm.
  71. #[[ "${BASH_SOURCE[0]}" == "" ]] && SOURCED=true
  72. $(return >/dev/null 2>&1) && SOURCED=true
  73. if [ "$UID" == 0 ]; then
  74. CACHEDIR=${CACHEDIR:-/var/cache/compose}
  75. VARDIR=${VARDIR:-/var/lib/compose}
  76. else
  77. [ "$XDG_CONFIG_HOME" ] && CACHEDIR=${CACHEDIR:-$XDG_CONFIG_HOME/compose}
  78. [ "$XDG_DATA_HOME" ] && VARDIR=${VARDIR:-$XDG_DATA_HOME/compose}
  79. CACHEDIR=${CACHEDIR:-$HOME/.cache/compose}
  80. VARDIR=${VARDIR:-$HOME/.local/share/compose}
  81. fi
  82. export VARDIR CACHEDIR
  83. md5_compat() { md5sum | cut -c -32; }
  84. quick_cat_file() { quick_cat_stdin < "$1"; }
  85. quick_cat_stdin() { local IFS=''; while read -r line; do echo "$line"; done ; }
  86. export -f quick_cat_file quick_cat_stdin md5_compat
  87. clean_cache() {
  88. local i=0
  89. for f in $(ls -t "$CACHEDIR/"*.cache.* 2>/dev/null | tail -n +500); do
  90. ((i++))
  91. rm -f "$f"
  92. done
  93. if (( i > 0 )); then
  94. debug "${WHITE}Cleaned cache:${NORMAL} Removed $((i)) elements (current cache size is $(du -sh "$CACHEDIR" | cut -f 1))"
  95. fi
  96. }
  97. usage="$exname SERVICE"'
  98. Deploy and manage a swarm of containers to provide services based on
  99. a ``compose.yml`` definition and charms from a ``charm-store``.
  100. '
  101. export DEFAULT_COMPOSE_FILE
  102. ##
  103. ## Merge YAML files
  104. ##
  105. export _merge_yaml_common_code="
  106. import sys
  107. import yaml
  108. try:
  109. # included in standard lib from Python 2.7
  110. from collections import OrderedDict
  111. except ImportError:
  112. # try importing the backported drop-in replacement
  113. # it's available on PyPI
  114. from ordereddict import OrderedDict
  115. ## Ensure that there are no collision with legacy OrderedDict
  116. ## that could be used for omap for instance.
  117. class MyOrderedDict(OrderedDict):
  118. pass
  119. yaml.add_representer(
  120. MyOrderedDict,
  121. lambda cls, data: cls.represent_dict(data.items()))
  122. yaml.add_constructor(
  123. yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG,
  124. lambda cls, node: MyOrderedDict(cls.construct_pairs(node)))
  125. def fc(filename):
  126. with open(filename) as f:
  127. return f.read()
  128. def merge(*args):
  129. # sys.stderr.write('%r\n' % (args, ))
  130. args = [arg for arg in args if arg is not None]
  131. if len(args) == 0:
  132. return None
  133. if len(args) == 1:
  134. return args[0]
  135. if all(isinstance(arg, (int, basestring, bool)) for arg in args):
  136. return args[-1]
  137. elif all(isinstance(arg, list) for arg in args):
  138. res = []
  139. for arg in args:
  140. for elt in arg:
  141. if elt in res:
  142. res.remove(elt)
  143. res.append(elt)
  144. return res
  145. elif all(isinstance(arg, dict) for arg in args):
  146. keys = set()
  147. for arg in args:
  148. keys |= set(arg.keys())
  149. dct = {}
  150. for key in keys:
  151. sub_args = []
  152. for arg in args:
  153. if key in arg:
  154. sub_args.append(arg)
  155. try:
  156. dct[key] = merge(*(a[key] for a in sub_args))
  157. except NotImplementedError as e:
  158. raise NotImplementedError(
  159. e.args[0],
  160. '%s.%s' % (key, e.args[1]) if e.args[1] else key,
  161. e.args[2])
  162. if dct[key] is None:
  163. del dct[key]
  164. return dct
  165. else:
  166. raise NotImplementedError(
  167. 'Unsupported types: %s'
  168. % (', '.join(list(set(arg.__class__.__name__ for arg in args)))), '', args)
  169. return None
  170. def merge_cli(*args):
  171. try:
  172. c = merge(*args)
  173. except NotImplementedError as e:
  174. sys.stderr.write('Merging Failed: %s.\n%s\n'
  175. ' Values are:\n %s\n'
  176. % (e.args[0],
  177. ' Conflicting key is %r.' % e.args[1] if e.args[1] else
  178. ' Conflict at base of structure.',
  179. '\\n '.join('v%d: %r' % (i, a)
  180. for i, a in enumerate(e.args[2]))))
  181. exit(1)
  182. if c is not None:
  183. print '%s' % yaml.dump(c, default_flow_style=False)
  184. "
  185. merge_yaml() {
  186. if ! [ -r "$state_tmpdir/merge_yaml.py" ]; then
  187. cat <<EOF > "$state_tmpdir/merge_yaml.py"
  188. $_merge_yaml_common_code
  189. merge_cli(*(yaml.load(fc(f)) for f in sys.argv[1:]))
  190. EOF
  191. fi
  192. python "$state_tmpdir/merge_yaml.py" "$@"
  193. }
  194. export -f merge_yaml
  195. merge_yaml_str() {
  196. local entries="$@"
  197. if ! [ -r "$state_tmpdir/merge_yaml_str.py" ]; then
  198. cat <<EOF > "$state_tmpdir/merge_yaml_str.py" || return 1
  199. $_merge_yaml_common_code
  200. merge_cli(*(yaml.load(f) for f in sys.argv[1:]))
  201. EOF
  202. fi
  203. python "$state_tmpdir/merge_yaml_str.py" "$@"
  204. }
  205. export -f merge_yaml_str
  206. yaml_key_val_str() {
  207. local entries="$@"
  208. if ! [ -r "$state_tmpdir/yaml_key_val_str.py" ]; then
  209. cat <<EOF > "$state_tmpdir/yaml_key_val_str.py"
  210. $_merge_yaml_common_code
  211. print '%s' % yaml.dump({
  212. yaml.load(sys.argv[1]):
  213. yaml.load(sys.argv[2])}, default_flow_style=False)
  214. EOF
  215. fi
  216. python "$state_tmpdir/yaml_key_val_str.py" "$@"
  217. }
  218. export -f yaml_key_val_str
  219. ##
  220. ## Docker
  221. ##
  222. docker_has_image() {
  223. local image="$1"
  224. images=$(docker images -q "$image" 2>/dev/null) || {
  225. err "docker images call has failed unexpectedly."
  226. return 1
  227. }
  228. [ "$images" ]
  229. }
  230. export -f docker_has_image
  231. cmd_on_base_image() {
  232. local service="$1" base_image
  233. shift
  234. base_image=$(service_base_docker_image "$service") || return 1
  235. docker run -i --entrypoint /bin/bash "$base_image" -c "$*"
  236. }
  237. export -f cmd_on_base_image
  238. cached_cmd_on_base_image() {
  239. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  240. shift
  241. if [ -e "$cache_file" ]; then
  242. # debug "$FUNCNAME: cache hit ($*)"
  243. quick_cat_stdin < "$cache_file"
  244. return 0
  245. fi
  246. result=$(cmd_on_base_image "$service" "$@") || return 1
  247. echo "$result" | tee "$cache_file"
  248. }
  249. export -f cached_cmd_on_base_image
  250. image_exposed_ports_0() {
  251. local image="$1"
  252. docker inspect --format='{{range $p, $conf := .Config.ExposedPorts}}{{$p}}{{"\x00"}}{{end}}' "$image"
  253. }
  254. export -f image_exposed_ports_0
  255. ##
  256. ## Generic
  257. ##
  258. fn.exists() {
  259. declare -F "$1" >/dev/null
  260. }
  261. str_pattern_matches() {
  262. local str="$1"
  263. shift
  264. for pattern in "$@"; do
  265. eval "[[ \"$str\" == $pattern ]]" && return 0
  266. done
  267. return 1
  268. }
  269. str_matches() {
  270. local str="$1"
  271. shift
  272. for pattern in "$@"; do
  273. [[ "$str" == "$pattern" ]] && return 0
  274. done
  275. return 1
  276. }
  277. gen_password() {
  278. local l=( {a..z} {A..Z} {0..9} ) nl="${#l[@]}" size=${1:-16}
  279. while ((size--)); do
  280. echo -n "${l[$((RANDOM * nl / 32768))]}"
  281. done
  282. echo
  283. }
  284. export -f gen_password
  285. file_put() {
  286. local TARGET="$1"
  287. mkdir -p "$(dirname "$TARGET")" &&
  288. cat - > "$TARGET"
  289. }
  290. export -f file_put
  291. file_put_0() {
  292. local TARGET="$1"
  293. mkdir -p "$(dirname "$TARGET")" &&
  294. cat > "$TARGET"
  295. }
  296. export -f file_put_0
  297. fetch_file() {
  298. local src="$1"
  299. case "$src" in
  300. *"://"*)
  301. err "Unsupported target scheme."
  302. return 1
  303. ;;
  304. *)
  305. ## Try direct
  306. if ! [ -r "$src" ]; then
  307. err "File '$src' not found/readable."
  308. return 1
  309. fi
  310. cat "$src" || return 1
  311. ;;
  312. esac
  313. }
  314. export -f fetch_file
  315. ## receives stdin content to decompress on stdout
  316. ## stdout content should be tar format.
  317. uncompress_file() {
  318. local filename="$1"
  319. ## Warning, the content of the file is already as stdin, the filename
  320. ## is there to hint for correct decompression.
  321. case "$filename" in
  322. *".gz")
  323. gunzip
  324. ;;
  325. *".bz2")
  326. bunzip2
  327. ;;
  328. *)
  329. cat
  330. ;;
  331. esac
  332. }
  333. export -f uncompress_file
  334. get_file() {
  335. local src="$1"
  336. fetch_file "$src" | uncompress_file "$src"
  337. }
  338. export -f get_file
  339. ##
  340. ## Common database lib
  341. ##
  342. _clean_docker() {
  343. local _DB_NAME="$1" container_id="$2"
  344. (
  345. set +e
  346. debug "Removing container $_DB_NAME"
  347. docker stop "$container_id"
  348. docker rm "$_DB_NAME"
  349. docker network rm "${_DB_NAME}"
  350. rm -vf "/tmp/${_DB_NAME}.state"
  351. )
  352. }
  353. export -f _clean_docker
  354. get_service_base_image_dir_uid_gid() {
  355. local service="$1" dir="$2" uid_gid
  356. uid_gid=$(cached_cmd_on_base_image "$service" "stat -c '%u %g' '$dir'") || {
  357. debug "Failed to query '$dir' uid in ${DARKYELLOW}$service${NORMAL} base image."
  358. return 1
  359. }
  360. info "uid and gid from ${DARKYELLOW}$service${NORMAL}:$dir is '$uid_gid'"
  361. echo "$uid_gid"
  362. }
  363. export -f get_service_base_image_dir_uid_gid
  364. get_service_type() {
  365. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  366. if [ -z "$service" ]; then
  367. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  368. return 1
  369. fi
  370. if [ -e "$cache_file" ]; then
  371. # debug "$FUNCNAME: cache hit ($*)"
  372. cat "$cache_file"
  373. return 0
  374. fi
  375. charm=$(get_service_charm "$service") || return 1
  376. metadata=$(charm.metadata "$charm") || return 1
  377. printf "%s" "$metadata" | shyaml get-value type service 2>/dev/null |
  378. tee "$cache_file"
  379. }
  380. are_files_locked_in_dir() {
  381. local dir="$1" device hdev ldev
  382. device=$(stat -c %d "$dir") || {
  383. err "Can't stat %d."
  384. return 1
  385. }
  386. device=$(printf "%04x" $device)
  387. hdev=${device:0:2}
  388. ldev=${device:2:2}
  389. inodes=$(find "$dir" -printf ':%i:\n')
  390. found=
  391. while read -r inode; do
  392. debug "try inode:$inode"
  393. if [[ "$inodes" == *":$inode:"* ]]; then
  394. found=1
  395. break
  396. fi
  397. done < <(cat /proc/locks | grep " $hdev:$ldev:" | sed -r "s/^.*$hdev:$ldev:([0-9]+).*$/\1/g")
  398. [ "$found" ]
  399. }
  400. export -f are_files_locked_in_dir
  401. export _PID="$$"
  402. ensure_db_docker_running () {
  403. local _STATE_FILE
  404. _DB_NAME="db_${DB_NAME}_${_PID}"
  405. _STATE_FILE=/tmp/${_DB_NAME}.state
  406. if [ -e "$_STATE_FILE" ]; then
  407. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$(cat "$_STATE_FILE")"
  408. debug "Re-using previous docker/connection '$DOCKER_IP'."
  409. _set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  410. return 0
  411. fi
  412. if [ -e "/tmp/${_DB_NAME}.working" ]; then
  413. ## avoid recursive calls.
  414. if [ -z "$DOCKER_IP" ]; then
  415. err "Currently figuring up DOCKER_IP, please set it yourself before this call if needed."
  416. return 1
  417. else
  418. debug "ignoring recursive call of 'ensure_db_docker_running'."
  419. fi
  420. return 0
  421. fi
  422. touch "/tmp/${_DB_NAME}.working"
  423. docker rm "$_DB_NAME" 2>/dev/null || true
  424. host_db_working_dir="$DATASTORE/${SERVICE_NAME}$DB_DATADIR"
  425. if is_db_locked; then
  426. info "Some process is using '$host_db_working_dir'. Trying to find a docker that would do this..."
  427. found=
  428. for docker_id in $(docker ps -q); do
  429. has_volume_mounted=$(
  430. docker inspect \
  431. --format "{{range .Mounts}}{{if eq .Destination \"$DB_DATADIR\"}}{{.Source}}{{end}}{{end}}" \
  432. "$docker_id")
  433. if [ "$has_volume_mounted" == "$host_db_working_dir" ]; then
  434. found="$docker_id"
  435. break
  436. fi
  437. done
  438. if [ -z "$found" ]; then
  439. err "Please shutdown any other docker using this directory."
  440. return 1
  441. fi
  442. export container_id="$found"
  443. info "Found docker $docker_id is already running."
  444. else
  445. verb "Database is not locked."
  446. if ! docker_has_image "$DOCKER_BASE_IMAGE"; then
  447. docker pull "$DOCKER_BASE_IMAGE"
  448. fi
  449. docker_opts=
  450. if [ -f "$DB_PASSFILE" ]; then
  451. verb "Found and using '$DB_PASSFILE'."
  452. docker_opts="$db_docker_opts -v $SERVER_ROOT_PREFIX$DB_PASSFILE:$DB_PASSFILE"
  453. fi
  454. debug docker network create "$_DB_NAME"
  455. if ! network_id=$(docker network create "$_DB_NAME"); then
  456. err "'docker network create' failed !"
  457. _clean_docker "$_DB_NAME" "$container_id"
  458. rm "/tmp/${_DB_NAME}.working"
  459. return 1
  460. fi
  461. debug docker run -d \
  462. --name "$_DB_NAME" \
  463. $docker_opts \
  464. --network "$_DB_NAME" \
  465. -v "$host_db_working_dir:$DB_DATADIR" \
  466. "$DOCKER_BASE_IMAGE"
  467. if ! container_id=$(
  468. docker run -d \
  469. --name "$_DB_NAME" \
  470. $docker_opts \
  471. --network "$_DB_NAME" \
  472. -v "$host_db_working_dir:$DB_DATADIR" \
  473. "$DOCKER_BASE_IMAGE"
  474. ); then
  475. err "'docker run' failed !"
  476. _clean_docker "$_DB_NAME" "$container_id"
  477. rm "/tmp/${_DB_NAME}.working"
  478. return 1
  479. fi
  480. trap_add EXIT,ERR "_clean_docker \"$_DB_NAME\" \"$container_id\""
  481. fi
  482. if docker_ip=$(wait_for_docker_ip "$container_id"); then
  483. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$docker_ip"
  484. echo "$docker_ip" > "$_STATE_FILE"
  485. debug "written '$_STATE_FILE'"
  486. rm "/tmp/${_DB_NAME}.working"
  487. _set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  488. return 0
  489. else
  490. errlvl="$?"
  491. err "Db not found (errlvl: $errlvl). Tail of docker logs follows:"
  492. docker logs --tail=5 "$container_id" 2>&1 | prefix " | " >&2
  493. rm "/tmp/${_DB_NAME}.working"
  494. return "$errlvl"
  495. fi
  496. }
  497. export -f ensure_db_docker_running
  498. ## Require to set $db_docker_opts if needed, and $DB_PASSFILE
  499. ##
  500. _dcmd() {
  501. local docker_opts command="$1"
  502. shift
  503. debug "Db> $command $@"
  504. if [ -f "$DB_PASSFILE" ]; then
  505. verb "Found and using '$DB_PASSFILE'."
  506. db_docker_opts="$db_docker_opts -v $SERVER_ROOT_PREFIX$DB_PASSFILE:$DB_PASSFILE"
  507. fi
  508. ## XXXX was here: actualy, we need only connection between this version and the client version
  509. debug docker run -i --rm \
  510. $db_docker_opts \
  511. --entrypoint "$command" "$DOCKER_BASE_IMAGE" $db_cmd_opts "$@"
  512. docker run -i --rm \
  513. $db_docker_opts \
  514. --entrypoint "$command" "$DOCKER_BASE_IMAGE" $db_cmd_opts "$@"
  515. }
  516. export -f _dcmd
  517. ## Executes code through db
  518. dcmd() {
  519. local fun
  520. [ "$DB_NAME" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_NAME."
  521. [ "$DB_DATADIR" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_DATADIR."
  522. # [ "$DB_PASSFILE" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_PASSFILE."
  523. [ "$_PID" ] || print_syntax_error "$FUNCNAME: You must provide \$_PID."
  524. for fun in is_db_locked _set_db_params ddb; do
  525. [ "$(type -t "$fun")" == "function" ] ||
  526. print_syntax_error "$FUNCNAME: You must provide function '$fun'."
  527. done
  528. ensure_db_docker_running </dev/null || return 1
  529. _dcmd "$@"
  530. }
  531. export -f dcmd
  532. get_docker_ips() {
  533. local name="$1" ip format network_id
  534. if ! docker inspect --format='{{ .NetworkSettings.Networks }}' "$name" >/dev/null 2>&1; then
  535. echo "default:$(docker inspect --format='{{ .NetworkSettings.IPAdress }}' "$name" 2>/dev/null)"
  536. else
  537. format='{{range $name, $conf := .NetworkSettings.Networks}}{{$name}}{{"\x00"}}{{$conf.IPAddress}}{{"\x00"}}{{end}}'
  538. while read-0 network_id ip; do
  539. printf "%s:%s\n" "$network_id" "$ip"
  540. done < <(docker inspect --format="$format" "$name")
  541. fi
  542. }
  543. export -f get_docker_ips
  544. get_docker_ip() {
  545. local name="$1"
  546. get_docker_ips "$name"
  547. }
  548. export -f get_docker_ip
  549. wait_docker_ip() {
  550. local name="$1" timeout="${2:-15}" timeout_count=0 docker_ip=
  551. start=$SECONDS
  552. while [ -z "$docker_ip" ]; do
  553. sleep 0.5
  554. docker_ip=$(get_docker_ip "$name") && break
  555. elapsed=$((SECONDS - start))
  556. if ((elapsed > timeout)); then
  557. err "${RED}timeout error${NORMAL}(${timeout}s):" \
  558. "Could not find '$name' docker container's IP."
  559. return 1
  560. fi
  561. [ "$elapsed" == "$old_elapsed" ] ||
  562. verb "Waiting for docker $name... ($elapsed/$timeout)"
  563. old_elapsed="$elapsed"
  564. done
  565. verb "Found docker $name network and IP: $docker_ip"
  566. echo "$docker_ip"
  567. }
  568. export -f wait_docker_ip
  569. DEFAULT_BASH_IMAGE=${DEFAULT_BASH_IMAGE:-docker.0k.io/bash}
  570. wait_for_tcp_port() {
  571. local network=$1 host_port=$2 timeout=20
  572. verb "Trying to connect to $host_port"
  573. docker run --rm -i --network "$network" "$DEFAULT_BASH_IMAGE" <<EOF
  574. start=\$SECONDS
  575. while true; do
  576. timeout 1 bash -c "</dev/tcp/${host_port/://}" >/dev/null 2>&1 && break
  577. sleep 0.2
  578. if [ "\$((SECONDS - start))" -gt "$timeout" ]; then
  579. exit 1
  580. fi
  581. done
  582. exit 0
  583. EOF
  584. if [ "$?" == 1 ]; then
  585. err "${RED}timeout error${NORMAL}(${timeout}s):"\
  586. "Could not connect to $host_port."
  587. return 1
  588. fi
  589. return 0
  590. }
  591. export -f wait_for_tcp_port
  592. ## Warning: requires a ``ddb`` matching current database to be checked
  593. wait_for_docker_ip() {
  594. local name=$1 DOCKER_IP= DOCKER_NETWORK= docker_ips= docker_ip=
  595. docker_ip=$(wait_docker_ip "$name" 5) || return 1
  596. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$docker_ip"
  597. if ! str_is_ipv4 "$DOCKER_IP"; then
  598. err "internal 'wait_docker_ip' did not return a valid IP. Returned IP is '$DOCKER_IP'."
  599. return 1
  600. fi
  601. _set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  602. while read-0 port; do
  603. IFS="/" read port type <<<"$port"
  604. [ "$type" == "tcp" ] || continue
  605. wait_for_tcp_port "$DOCKER_NETWORK" "$DOCKER_IP:${port}" || return 17
  606. verb "Port $DOCKER_IP:${port} checked open."
  607. done < <(image_exposed_ports_0 "$container_id")
  608. ## Checking direct connection
  609. if ! echo "SELECT 1;" | ddb >/dev/null; then
  610. err "${RED}db connection error${NORMAL}:"\
  611. "Could not connect to db on $DOCKER_IP" \
  612. "container's IP. (IP up, TCP ports is(are) open)"
  613. return 18
  614. fi
  615. echo "${DOCKER_NETWORK}:${DOCKER_IP}"
  616. return 0
  617. }
  618. export -f wait_for_docker_ip
  619. docker_add_host_declaration() {
  620. local src_docker=$1 domain=$2 dst_docker=$3 dst_docker_ip= dst_docker_network
  621. dst_docker_ip=$(wait_docker_ip "$dst_docker") || exit 1
  622. IFS=: read dst_docker_ip dst_docker_network <<<"$dst_docker_ip"
  623. docker exec -i "$src_docker" bash <<EOF
  624. if cat /etc/hosts | grep -E "^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s+$domain\$" > /dev/null 2>&1; then
  625. sed -ri "s/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s+$domain\$/$dst_docker_ip $domain/g" /etc/hosts
  626. else
  627. echo "$dst_docker_ip $domain" >> /etc/hosts
  628. fi
  629. EOF
  630. }
  631. export -f docker_add_host_declaration
  632. get_running_containers_for_service() {
  633. local service="$1"
  634. docker ps --filter label="compose.service=$service" --format="{{.ID}}"
  635. }
  636. export -f get_running_containers_for_service
  637. ##
  638. ## Internal Process
  639. ##
  640. get_docker_compose_links() {
  641. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  642. deps master_service master_target_service _relation_name \
  643. target_service _relation_config tech_dep
  644. if [ -z "$service" ]; then
  645. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  646. return 1
  647. fi
  648. if [ -e "$cache_file" ]; then
  649. # debug "$FUNCNAME: cache hit ($*)"
  650. cat "$cache_file"
  651. return 0
  652. fi
  653. master_service=$(get_top_master_service_for_service "$service") || return 1
  654. ## XXXvlab: yuck, this make the assumption that next function is cached,
  655. ## and leverage the fact that the result is stored in a file. All this only
  656. ## to catch a failure of ``get_compose_relations``, that would go out silently.
  657. get_compose_relations "$service" >/dev/null || return 1 ## fetch cache and fail if necessary
  658. deps=()
  659. while read-0 _relation_name target_service _relation_config tech_dep; do
  660. master_target_service="$(get_top_master_service_for_service "$target_service")" || return 1
  661. [ "$master_service" == "$master_target_service" ] && continue
  662. type="$(get_service_type "$target_service")" || return 1
  663. [ "$type" == "run-once" ] && continue
  664. if [ "$tech_dep" == "reversed" ]; then
  665. deps+=("$(echo -en "$master_target_service:\n links:\n - $master_service")")
  666. elif [ "$tech_dep" == "True" ]; then
  667. deps+=("$(echo -en "$master_service:\n links:\n - $master_target_service")")
  668. fi
  669. ## XXXvlab: an attempt to add depends_on, but this doesn't work well actually
  670. ## as there's a circular dependency issue. We don't really want the full feature
  671. ## of depends_on, but just to add it as targets when doing an 'up'
  672. # deps+=("$(echo -en "$master_service:\n depends_on:\n - $master_target_service")")
  673. done < <(get_compose_relations "$service")
  674. merge_yaml_str "${deps[@]}" | tee "$cache_file" || return 1
  675. if [ "${PIPESTATUS[0]}" != 0 ]; then
  676. rm "$cache_file"
  677. err "Failed to merge YAML from all ${WHITE}links${NORMAL} dependencies."
  678. return 1
  679. fi
  680. }
  681. _get_docker_compose_opts() {
  682. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  683. compose_def master_service docker_compose_opts
  684. if [ -z "$service" ]; then
  685. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  686. return 1
  687. fi
  688. if [ -e "$cache_file" ]; then
  689. # debug "$FUNCNAME: cache hit ($*)"
  690. cat "$cache_file"
  691. return 0
  692. fi
  693. compose_def="$(get_compose_service_def "$service")" || return 1
  694. master_service="$(get_top_master_service_for_service "$service")"
  695. docker_compose_opts=$(echo "$compose_def" | shyaml get-value "docker-compose" 2>/dev/null)
  696. if [ "$docker_compose_opts" ]; then
  697. yaml_key_val_str "$master_service" "$docker_compose_opts"
  698. fi | tee "$cache_file"
  699. if [ "${PIPESTATUS[0]}" != 0 ]; then
  700. rm "$cache_file"
  701. return 1
  702. fi
  703. }
  704. ##
  705. ## By Reading the metadata.yml, we create a docker-compose.yml mixin.
  706. ## Some metadata.yml (of subordinates) will indeed modify other
  707. ## services than themselves.
  708. _get_docker_compose_service_mixin() {
  709. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  710. links_yaml base_mixin links_yaml docker_compose_options \
  711. charm charm_part
  712. if [ -z "$service" ]; then
  713. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  714. return 1
  715. fi
  716. if [ -e "$cache_file" ]; then
  717. # debug "$FUNCNAME: cache hit ($*)"
  718. cat "$cache_file"
  719. return 0
  720. fi
  721. master_service=$(get_top_master_service_for_service "$service") || {
  722. err "Failed to get top master service for service $DARKYELLOW$service$NORMAL"
  723. return 1
  724. }
  725. ## The compose part
  726. base_mixin="$master_service:
  727. labels:
  728. - compose.service=$service
  729. - compose.master-service=${master_service}
  730. - compose.project=$(get_default_project_name)"
  731. links_yaml=$(get_docker_compose_links "$service") || return 1
  732. docker_compose_options=$(_get_docker_compose_opts "$service") || return 1
  733. ## the charm part
  734. charm_part=$(get_docker_compose_mixin_from_metadata "$service") || return 1
  735. ## Merge results
  736. if [ "$charm_part" ]; then
  737. charm_yaml="$(yaml_key_val_str "$master_service" "$charm_part")" || return 1
  738. merge_yaml_str "$base_mixin" "$links_yaml" "$charm_yaml" "$docker_compose_options" || return 1
  739. else
  740. merge_yaml_str "$base_mixin" "$links_yaml" "$docker_compose_options" || return 1
  741. fi | tee "$cache_file"
  742. if [ "${PIPESTATUS[0]}" != 0 ]; then
  743. err "Failed to constitute the base YAML for service '${DARKYELLOW}$service${NORMAL}'"
  744. rm "$cache_file"
  745. return 1
  746. fi
  747. }
  748. export -f _get_docker_compose_service_mixin
  749. ##
  750. ## Get full `docker-compose.yml` format for all listed services (and
  751. ## their deps)
  752. ##
  753. ## @export
  754. ## @cache: !system !nofail +stdout
  755. get_docker_compose () {
  756. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  757. entries services service start docker_compose_services
  758. if [ -e "$cache_file" ]; then
  759. # debug "$FUNCNAME: cache hit ($*)"
  760. cat "$cache_file"
  761. return 0
  762. fi
  763. ##
  764. ## Adding sub services configurations
  765. ##
  766. declare -A entries
  767. start_compilation=$SECONDS
  768. debug "Compiling 'docker-compose.yml' base for ${DARKYELLOW}$*$NORMAL..."
  769. for target_service in "$@"; do
  770. start=$SECONDS
  771. services=$(get_ordered_service_dependencies "$target_service") || {
  772. err "Failed to get dependencies for $DARKYELLOW$target_service$NORMAL"
  773. return 1
  774. }
  775. debug " $DARKYELLOW$target_service$NORMAL deps:$DARKYELLOW" $services "$NORMAL$GRAY(in $((SECONDS - start))s)$NORMAL"
  776. for service in $services; do
  777. if [ "${entries[$service]}" ]; then
  778. ## Prevent double inclusion of same service if this
  779. ## service is deps of two or more of your
  780. ## requirements.
  781. continue
  782. fi
  783. ## mark the service as "loaded" as well as it's containers
  784. ## if this is a subordinate service
  785. start_service=$SECONDS
  786. entries[$service]=$(_get_docker_compose_service_mixin "$service") || {
  787. err "Failed to get service mixin for $DARKYELLOW$service$NORMAL"
  788. return 1
  789. }
  790. debug " Applied $DARKYELLOW$service$NORMAL charm metadata mixins $GRAY(in $((SECONDS - start_service))s)$NORMAL"
  791. done
  792. debug " ..finished all mixins for $DARKYELLOW$target_service$NORMAL $GRAY(in $((SECONDS - start))s)$NORMAL"
  793. done
  794. docker_compose_services=$(merge_yaml_str "${entries[@]}") || {
  795. err "Failed to merge YAML services entries together."
  796. return 1
  797. }
  798. base_v2="version: '2.0'"
  799. merge_yaml_str "$(yaml_key_val_str "services" "$docker_compose_services")" \
  800. "$base_v2" > "$cache_file" || return 1
  801. export _current_docker_compose="$(cat "$cache_file")"
  802. echo "$_current_docker_compose"
  803. debug " ..compilation of base 'docker-compose.yml' done $GRAY(in $((SECONDS - start_compilation))s)$NORMAL" || true
  804. # debug " ** ${WHITE}docker-compose.yml${NORMAL}:"
  805. # debug "$_current_docker_compose"
  806. }
  807. export -f get_docker_compose
  808. _get_compose_service_def_cached () {
  809. local service="$1" docker_compose="$2" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  810. if [ -e "$cache_file" ]; then
  811. #debug "$FUNCNAME: STATIC cache hit"
  812. cat "$cache_file" &&
  813. touch "$cache_file" || return 1
  814. return 0
  815. fi
  816. value=$(echo "$docker_compose" | shyaml get-value "$service" 2>/dev/null)
  817. [ "$value" == None ] && value=""
  818. if ! echo "$value" | shyaml get-value "charm" >/dev/null 2>&1; then
  819. if charm.exists "$service"; then
  820. value=$(merge_yaml <(echo "charm: $service") <(echo "$value")) || {
  821. err "Can't merge YAML infered 'charm: $service' with base ${DARKYELLOW}$service${NORMAL} YAML definition."
  822. return 1
  823. }
  824. else
  825. err "No ${WHITE}charm${NORMAL} value for service $DARKYELLOW$service$NORMAL" \
  826. "in compose, nor same name charm found."
  827. return 1
  828. fi
  829. fi
  830. echo "$value" | tee "$cache_file" || return 1
  831. # if [ "${PIPESTATUS[0]}" != 0 ]; then
  832. # rm "$cache_file"
  833. # return 1
  834. # fi
  835. return 0
  836. # if [ "${PIPESTATUS[0]}" != 0 -o \! -s "$cache_file" ]; then
  837. # rm "$cache_file"
  838. # err "PAS OK $service: $value"
  839. # return 1
  840. # fi
  841. }
  842. export -f _get_compose_service_def_cached
  843. ## XXXvlab: a lot to be done to cache the results
  844. get_compose_service_def () {
  845. local service="$1" docker_compose cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  846. result
  847. if [ -e "$cache_file" ]; then
  848. #debug "$FUNCNAME: SESSION cache hit"
  849. cat "$cache_file" || return 1
  850. return 0
  851. fi
  852. [ -z "$service" ] && print_syntax_error "Missing service as first argument."
  853. docker_compose=$(get_compose_yml_content) || return 1
  854. result=$(_get_compose_service_def_cached "$service" "$docker_compose") || return 1
  855. echo "$result" | tee "$cache_file" || return 1
  856. }
  857. export -f get_compose_service_def
  858. _get_service_charm_cached () {
  859. local service="$1" service_def="$2" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  860. if [ -e "$cache_file" ]; then
  861. # debug "$FUNCNAME: cache hit $1"
  862. cat "$cache_file" &&
  863. touch "$cache_file" || return 1
  864. return 0
  865. fi
  866. charm=$(echo "$service_def" | shyaml get-value charm 2>/dev/null)
  867. if [ -z "$charm" ]; then
  868. err "Missing ${WHITE}charm${NORMAL} value in service $DARKYELLOW$service$NORMAL definition."
  869. return 1
  870. fi
  871. echo "$charm" | tee "$cache_file" || return 1
  872. }
  873. export -f _get_service_charm_cached
  874. get_service_charm () {
  875. local service="$1"
  876. if [ -z "$service" ]; then
  877. echo ${FUNCNAME[@]} >&2
  878. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  879. return 1
  880. fi
  881. service_def=$(get_compose_service_def "$service") || return 1
  882. _get_service_charm_cached "$service" "$service_def"
  883. }
  884. export -f get_service_charm
  885. ## built above the docker-compose abstraction, so it relies on the
  886. ## full docker-compose.yml to be already built.
  887. get_service_def () {
  888. local service="$1" def
  889. if [ -z "$_current_docker_compose" ]; then
  890. print_syntax_error "$FUNCNAME is meant to be called after"\
  891. "\$_current_docker_compose has been calculated."
  892. fi
  893. def=$(echo "$_current_docker_compose" | shyaml get-value "services.$service" 2>/dev/null)
  894. if [ -z "$def" ]; then
  895. err "No definition for service $DARKYELLOW$service$NORMAL in compiled 'docker-compose.yml'."
  896. return 1
  897. fi
  898. echo "$def"
  899. }
  900. export -f get_service_def
  901. ## Return the base docker image name of a service
  902. service_base_docker_image() {
  903. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  904. master_service service_def service_image service_build service_dockerfile
  905. if [ -e "$cache_file" ]; then
  906. # debug "$FUNCNAME: cache hit ($*)"
  907. cat "$cache_file"
  908. return 0
  909. fi
  910. master_service="$(get_top_master_service_for_service "$service")" || {
  911. err "Could not compute master service for service $DARKYELLOW$service$NORMAL."
  912. return 1
  913. }
  914. service_def="$(get_service_def "$master_service")" || {
  915. err "Could not get docker-compose service definition for $DARKYELLOW$master_service$NORMAL."
  916. return 1
  917. }
  918. service_image=$(echo "$service_def" | shyaml get-value image 2>/dev/null)
  919. if [ "$?" != 0 ]; then
  920. service_build=$(echo "$service_def" | shyaml get-value build 2>/dev/null)
  921. if [ "$?" != 0 ]; then
  922. err "Service $DARKYELLOW$service$NORMAL has no ${WHITE}image${NORMAL} nor ${WHITE}build${NORMAL} parameter."
  923. echo "$service_def" >&2
  924. return 1
  925. fi
  926. service_dockerfile="${service_build}"/Dockerfile
  927. if ! [ -e "$service_dockerfile" ]; then
  928. err "No Dockerfile found in '$service_dockerfile' location."
  929. return 1
  930. fi
  931. grep '^FROM' "$service_dockerfile" | xargs printf "%s " | cut -f 2 -d " "
  932. else
  933. echo "$service_image"
  934. fi | tee "$cache_file"
  935. }
  936. export -f service_base_docker_image
  937. get_charm_relation_def () {
  938. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  939. relation_def metadata
  940. if [ -e "$cache_file" ]; then
  941. # debug "$FUNCNAME: cache hit ($*)"
  942. cat "$cache_file"
  943. return 0
  944. fi
  945. metadata="$(charm.metadata "$charm")" || return 1
  946. relation_def="$(echo "$metadata" | shyaml get-value "provides.${relation_name}" 2>/dev/null)"
  947. echo "$relation_def" | tee "$cache_file"
  948. }
  949. export -f get_charm_relation_def
  950. get_charm_tech_dep_orientation_for_relation() {
  951. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  952. relation_def value
  953. if [ -e "$cache_file" ]; then
  954. # debug "$FUNCNAME: cache hit ($*)"
  955. cat "$cache_file"
  956. return 0
  957. fi
  958. relation_def=$(get_charm_relation_def "$charm" "$relation_name" 2>/dev/null)
  959. value=$(echo "$relation_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  960. value=${value:-True}
  961. echo "$value" | tee "$cache_file"
  962. }
  963. export -f get_charm_tech_dep_orientation_for_relation
  964. ##
  965. ## Use compose file to get deps, and relation definition in metadata.yml
  966. ## for tech-dep attribute.
  967. get_service_deps() {
  968. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  969. if [ -e "$cache_file" ]; then
  970. # debug "$FUNCNAME: cache hit ($*)"
  971. cat "$cache_file"
  972. return 0
  973. fi
  974. (
  975. set -o pipefail
  976. get_compose_relations "$service" | \
  977. while read-0 relation_name target_service _relation_config tech_dep; do
  978. echo "$target_service"
  979. done | tee "$cache_file"
  980. ) || return 1
  981. }
  982. export -f get_service_deps
  983. _rec_get_depth() {
  984. local elt=$1 dep deps max cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  985. [ "${depths[$elt]}" ] && return 0
  986. if [ -e "$cache_file" ]; then
  987. # debug "$FUNCNAME: cache hit ($*)"
  988. depths[$elt]=$(cat "$cache_file")
  989. return 0
  990. fi
  991. visited[$elt]=1
  992. #debug "Setting visited[$elt]"
  993. #debug "Asking for $DARKYELLOW$elt$NORMAL dependencies"
  994. deps=$(get_service_deps "$elt") || {
  995. debug "Failed get_service_deps $elt"
  996. return 1
  997. }
  998. # debug "$elt deps are:" $deps
  999. max=0
  1000. for dep in $deps; do
  1001. [ "${visited[$dep]}" ] && {
  1002. #debug "Already computing $dep"
  1003. continue
  1004. }
  1005. _rec_get_depth "$dep" || return 1
  1006. #debug "Requesting depth[$dep]"
  1007. if (( ${depths[$dep]} > max )); then
  1008. max="${depths[$dep]}"
  1009. fi
  1010. done
  1011. # debug "Setting depth[$elt] to $((max + 1))"
  1012. depths[$elt]=$((max + 1))
  1013. echo "${depths[$elt]}" > $cache_file
  1014. }
  1015. export -f _rec_get_depth
  1016. get_ordered_service_dependencies() {
  1017. local services=("$@") cache_file="$state_tmpdir/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  1018. if [ -e "$cache_file" ]; then
  1019. # debug "$FUNCNAME: cache hit ($*)"
  1020. cat "$cache_file"
  1021. return 0
  1022. fi
  1023. #debug "Figuring ordered deps of $DARKYELLOW$services$NORMAL"
  1024. if [ -z "${services[*]}" ]; then
  1025. return 0
  1026. # print_syntax_error "$FUNCNAME: no arguments"
  1027. # return 1
  1028. fi
  1029. declare -A depths
  1030. declare -A visited
  1031. heads=("${services[@]}")
  1032. while [ "${#heads[@]}" != 0 ]; do
  1033. array_pop heads head
  1034. _rec_get_depth "$head" || return 1
  1035. done
  1036. i=0
  1037. while [ "${#depths[@]}" != 0 ]; do
  1038. for key in "${!depths[@]}"; do
  1039. value="${depths[$key]}"
  1040. if [ "$value" == "$i" ]; then
  1041. echo "$key"
  1042. unset depths[$key]
  1043. fi
  1044. done
  1045. i=$((i + 1))
  1046. done | tee "$cache_file"
  1047. }
  1048. export -f get_ordered_service_dependencies
  1049. run_service_hook () {
  1050. local action="$1" service subservice subservices loaded
  1051. shift
  1052. declare -A loaded
  1053. for service in "$@"; do
  1054. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1055. for subservice in $subservices; do
  1056. if [ "${loaded[$subservice]}" ]; then
  1057. ## Prevent double inclusion of same service if this
  1058. ## service is deps of two or more of your
  1059. ## requirements.
  1060. continue
  1061. fi
  1062. charm=$(get_service_charm "$subservice") || return 1
  1063. charm.has_hook "$charm" "$action" >/dev/null || continue
  1064. PROJECT_NAME=$(get_default_project_name) || return 1
  1065. export MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  1066. export MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  1067. Wrap -d "running $YELLOW$action$NORMAL hook of $DARKYELLOW$subservice$NORMAL in charm $DARKPINK$charm$NORMAL" <<EOF || return 1
  1068. export SERVICE_NAME=$subservice
  1069. export IMAGE_NAME=$(echo "${PROJECT_NAME}" | tr -d "_-")_\${SERVICE_NAME}
  1070. export CONTAINER_NAME=\${IMAGE_NAME}_1
  1071. export CHARM_NAME="$charm"
  1072. export PROJECT_NAME=$PROJECT_NAME
  1073. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$MASTER_BASE_SERVICE_NAME")
  1074. export SERVICE_DATASTORE="$DATASTORE/$subservice"
  1075. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$subservice"
  1076. charm.run_hook "$charm" "$action"
  1077. EOF
  1078. loaded[$subservice]=1
  1079. done
  1080. done
  1081. return 0
  1082. }
  1083. host_resource_get() {
  1084. local location="$1" cfg="$2"
  1085. type=$(echo "$cfg" | shyaml get-value type 2>/dev/null) || {
  1086. err "Missing ${WHITE}type$NORMAL option in ${WHITE}get$NORMAL config for location '$location'"
  1087. return 1
  1088. }
  1089. if fn.exists host_resource_get_$type; then
  1090. host_resource_get_$type "$location" "$cfg"
  1091. else
  1092. err "Source ${WHITE}source$NORMAL type '$type' unknown for" \
  1093. "${WHITE}host-resource$NORMAL '$location' defined in" \
  1094. "$DARKYELLOW$subservice$NORMAL config."
  1095. return 1
  1096. fi
  1097. }
  1098. export -f host_resource_get
  1099. host_resource_get_git() {
  1100. local location="$1" cfg="$2" branch parent url
  1101. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1102. branch=${branch:-master}
  1103. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1104. parent="$(dirname "$location")"
  1105. (
  1106. mkdir -p "$parent" && cd "$parent" &&
  1107. git clone -b "$branch" "$url" "$(basename "$location")"
  1108. ) || return 1
  1109. }
  1110. export -f host_resource_get_git
  1111. host_resource_get_git-sub() {
  1112. local location="$1" cfg="$2" branch parent url
  1113. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1114. branch=${branch:-master}
  1115. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1116. parent="$(dirname "$location")"
  1117. (
  1118. mkdir -p "$parent" && cd "$parent" &&
  1119. git sub clone -b "$branch" "$url" "$(basename "$location")"
  1120. ) || return 1
  1121. }
  1122. export -f host_resource_get_git-sub
  1123. setup_host_resource () {
  1124. local subservice="$1" service_def location get cfg
  1125. service_def=$(get_compose_service_def "$subservice") || return 1
  1126. while read-0 location cfg; do
  1127. ## XXXvlab: will it be a git resources always ?
  1128. if [ -d "$location" -a ! -d "$location/.git" ]; then
  1129. err "Hum, location '$location' does not seem to be a git directory."
  1130. return 1
  1131. fi
  1132. if [ -d "$location" ]; then
  1133. info "host resource '$location' already set up."
  1134. continue
  1135. fi
  1136. get=$(echo "$cfg" | shyaml get-value get 2>/dev/null)
  1137. if [ -z "$get" ]; then
  1138. err "No host directory '$location' found, and no ${WHITE}source$NORMAL" \
  1139. "specified for $DARKYELLOW$subservice$NORMAL."
  1140. return 1
  1141. fi
  1142. host_resource_get "$location" "$get" || return 1
  1143. done < <(echo "$service_def" | shyaml key-values-0 host-resources 2>/dev/null)
  1144. }
  1145. export -f setup_host_resource
  1146. setup_host_resources () {
  1147. local service subservices subservice loaded
  1148. declare -A loaded
  1149. for service in "$@"; do
  1150. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1151. for subservice in $subservices; do
  1152. if [ "${loaded[$subservice]}" ]; then
  1153. ## Prevent double inclusion of same service if this
  1154. ## service is deps of two or more of your
  1155. ## requirements.
  1156. continue
  1157. fi
  1158. setup_host_resource "$service"
  1159. loaded[$subservice]=1
  1160. done
  1161. done
  1162. return 0
  1163. }
  1164. export -f setup_host_resources
  1165. relation-get () {
  1166. local key="$1"
  1167. cat "$RELATION_DATA_FILE" | shyaml get-value "$key" 2>/dev/null
  1168. if [ "$?" != 0 ]; then
  1169. err "The key $WHITE$key$NORMAL was not found in relation's data."
  1170. return 1
  1171. fi
  1172. }
  1173. export -f relation-get
  1174. relation-base-compose-get () {
  1175. local key="$1"
  1176. echo "$RELATION_BASE_COMPOSE_DEF" | shyaml get-value "options.$key" 2>/dev/null
  1177. if [ "$?" != 0 ]; then
  1178. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1179. return 1
  1180. fi
  1181. }
  1182. export -f relation-base-compose-get
  1183. relation-target-compose-get () {
  1184. local key="$1"
  1185. echo "$RELATION_BASE_COMPOSE_DEF" | shyaml get-value "options.$key" 2>/dev/null
  1186. if [ "$?" != 0 ]; then
  1187. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1188. return 1
  1189. fi
  1190. }
  1191. export -f relation-target-compose-get
  1192. relation-set () {
  1193. local key="$1" value="$2"
  1194. if [ -z "$RELATION_DATA_FILE" ]; then
  1195. err "$FUNCNAME: relation does not seems to be correctly setup."
  1196. return 1
  1197. fi
  1198. if ! [ -r "$RELATION_DATA_FILE" ]; then
  1199. err "$FUNCNAME: can't read relation's data." >&2
  1200. return 1
  1201. fi
  1202. _config_merge "$RELATION_DATA_FILE" <(echo "$key: $value")
  1203. }
  1204. export -f relation-set
  1205. _config_merge() {
  1206. local config_filename="$1" merge_to_file="$2"
  1207. touch "$config_filename" &&
  1208. merge_yaml "$config_filename" "$merge_to_file" > "$config_filename.tmp" || return 1
  1209. mv "$config_filename.tmp" "$config_filename"
  1210. }
  1211. export -f _config_merge
  1212. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1213. config-add() {
  1214. local metadata="$1"
  1215. _config_merge "$RELATION_CONFIG" <(echo "$metadata")
  1216. }
  1217. export -f config-add
  1218. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1219. init-config-add() {
  1220. local metadata="$1"
  1221. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" \
  1222. <(yaml_key_val_str "services" "$metadata")
  1223. }
  1224. export -f init-config-add
  1225. logstdout() {
  1226. local name="$1"
  1227. sed -r 's%^%'"${name}"'> %g'
  1228. }
  1229. export -f logstdout
  1230. logstderr() {
  1231. local name="$1"
  1232. sed -r 's%^(.*)$%'"${RED}${name}>${NORMAL} \1"'%g'
  1233. }
  1234. export -f logstderr
  1235. _run_service_relation () {
  1236. local relation_name="$1" service="$2" target_service="$3" relation_config="$4" relation_dir services
  1237. charm=$(get_service_charm "$service") || return 1
  1238. target_charm=$(get_service_charm "$target_service") || return 1
  1239. base_script_name=$(charm.has_relation_hook "$charm" "$relation_name" relation-joined) || true
  1240. target_script_name=$(charm.has_relation_hook "$target_charm" "$relation_name" relation-joined) || true
  1241. [ "$base_script_name" -o "$target_script_name" ] || return 0
  1242. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  1243. RELATION_DATA_FILE=$(get_relation_data_file "$service" "$target_service" "$relation_name" "$relation_config") || return 1
  1244. export BASE_SERVICE_NAME=$service
  1245. export BASE_CHARM_NAME=$charm
  1246. export BASE_CHARM_PATH=$(charm.get_dir "$charm")
  1247. export TARGET_SERVICE_NAME=$target_service
  1248. export TARGET_CHARM_NAME=$target_charm
  1249. export TARGET_CHARM_PATH=$(charm.get_dir "$target_charm")
  1250. export RELATION_DATA_FILE
  1251. target_errlvl=0
  1252. if [ -z "$target_script_name" ]; then
  1253. verb "No relation script $DARKBLUE$relation_name$NORMAL in target $DARKPINK$target_charm$NORMAL."
  1254. else
  1255. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1256. "for target $DARKYELLOW$target_service$NORMAL (charm $DARKPINK$target_charm$NORMAL)"
  1257. RELATION_CONFIG="$relation_dir/config_provider"
  1258. DOCKER_BASE_IMAGE=$(service_base_docker_image "$target_service") || return 1
  1259. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1260. {
  1261. (
  1262. SERVICE_NAME=$target_service
  1263. SERVICE_DATASTORE="$DATASTORE/$target_service"
  1264. SERVICE_CONFIGSTORE="$CONFIGSTORE/$target_service"
  1265. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1266. charm.run_relation_hook "$target_charm" "$relation_name" relation-joined
  1267. echo "$?" > "$relation_dir/target_errlvl"
  1268. ) | logstdout "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1269. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@${NORMAL}" 3>&1 1>&2 2>&3
  1270. target_errlvl="$(cat "$relation_dir/target_errlvl")" || {
  1271. err "Relation script '$script_name' in $DARKPINK$target_charm$NORMAL" \
  1272. "failed before outputing an errorlevel."
  1273. ((target_errlvl |= "1" ))
  1274. }
  1275. if [ -e "$RELATION_CONFIG" ]; then
  1276. debug "Merging some new config info in $DARKYELLOW$target_service$NORMAL"
  1277. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1278. rm "$RELATION_CONFIG"
  1279. ((target_errlvl |= "$?"))
  1280. fi
  1281. fi
  1282. if [ "$target_errlvl" == 0 ]; then
  1283. errlvl=0
  1284. if [ "$base_script_name" ]; then
  1285. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1286. "for $DARKYELLOW$service$NORMAL (charm $DARKPINK$charm$NORMAL)"
  1287. RELATION_CONFIG="$relation_dir/config_providee"
  1288. RELATION_DATA="$(cat "$RELATION_DATA_FILE")"
  1289. DOCKER_BASE_IMAGE=$(service_base_docker_image "$service") || return 1
  1290. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1291. {
  1292. (
  1293. SERVICE_NAME=$service
  1294. SERVICE_DATASTORE="$DATASTORE/$service"
  1295. SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  1296. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1297. charm.run_relation_hook "$charm" "$relation_name" relation-joined
  1298. echo "$?" > "$relation_dir/errlvl"
  1299. ) | logstdout "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1300. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  1301. errlvl="$(cat "$relation_dir/errlvl")" || {
  1302. err "Relation script '$script_name' in $DARKPINK$charm$NORMAL" \
  1303. "failed before outputing an errorlevel."
  1304. ((errlvl |= "1" ))
  1305. }
  1306. if [ -e "$RELATION_CONFIG" ]; then
  1307. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1308. rm "$RELATION_CONFIG"
  1309. ((errlvl |= "$?" ))
  1310. fi
  1311. if [ "$errlvl" != 0 ]; then
  1312. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$service$NORMAL failed to run properly."
  1313. fi
  1314. else
  1315. verb "No relation script '$script_name' in charm $DARKPINK$charm$NORMAL. Ignoring."
  1316. fi
  1317. else
  1318. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$target_service$NORMAL failed to run properly."
  1319. fi
  1320. if [ "$target_errlvl" == 0 -a "$errlvl" == 0 ]; then
  1321. debug "Relation $DARKBLUE$relation_name$NORMAL is established" \
  1322. "between $DARKYELLOW$service$NORMAL and $DARKYELLOW$target_service$NORMAL."
  1323. return 0
  1324. else
  1325. return 1
  1326. fi
  1327. }
  1328. export -f _run_service_relation
  1329. _get_compose_relations_cached () {
  1330. local compose_service_def="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  1331. relation_name relation_def target_service
  1332. if [ -e "$cache_file" ]; then
  1333. #debug "$FUNCNAME: STATIC cache hit $1"
  1334. cat "$cache_file" &&
  1335. touch "$cache_file" || return 1
  1336. return 0
  1337. fi
  1338. (
  1339. set -o pipefail
  1340. if [ "$compose_service_def" ]; then
  1341. while read-0 relation_name relation_def; do
  1342. ## XXXvlab: could we use braces here instead of parenthesis ?
  1343. (
  1344. case "$(echo "$relation_def" | shyaml get-type 2>/dev/null)" in
  1345. "str")
  1346. target_service="$(echo "$relation_def" | shyaml get-value 2>/dev/null)"
  1347. target_charm=$(get_service_charm "$target_service") || return 1
  1348. tech_dep="$(get_charm_tech_dep_orientation_for_relation "$target_charm" "$relation_name")"
  1349. echo -en "$relation_name\0$target_service\0\0$tech_dep\0"
  1350. ;;
  1351. "sequence")
  1352. while read-0 target_service; do
  1353. target_charm=$(get_service_charm "$target_service") || return 1
  1354. tech_dep="$(get_charm_tech_dep_orientation_for_relation "$target_charm" "$relation_name")"
  1355. echo -en "$relation_name\0$target_service\0\0$tech_dep\0"
  1356. done < <(echo "$relation_def" | shyaml get-values-0 2>/dev/null)
  1357. ;;
  1358. "struct")
  1359. while read-0 target_service relation_config; do
  1360. target_charm=$(get_service_charm "$target_service") || return 1
  1361. tech_dep="$(get_charm_tech_dep_orientation_for_relation "$target_charm" "$relation_name")"
  1362. echo -en "$relation_name\0$target_service\0$relation_config\0$tech_dep\0"
  1363. done < <(echo "$relation_def" | shyaml key-values-0 2>/dev/null)
  1364. ;;
  1365. esac
  1366. ) </dev/null >> "$cache_file" || return 1
  1367. done < <(echo "$compose_service_def" | shyaml key-values-0 relations 2>/dev/null)
  1368. fi
  1369. )
  1370. if [ "$?" != 0 ]; then
  1371. err "Error while looking for compose relations."
  1372. rm -f "$cache_file" ## no cache
  1373. return 1
  1374. fi
  1375. [ -e "$cache_file" ] && cat "$cache_file"
  1376. return 0
  1377. }
  1378. export -f _get_compose_relations_cached
  1379. get_compose_relations () {
  1380. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1381. compose_def
  1382. if [ -e "$cache_file" ]; then
  1383. #debug "$FUNCNAME: SESSION cache hit $1"
  1384. cat "$cache_file"
  1385. return 0
  1386. fi
  1387. compose_def="$(get_compose_service_def "$service")" || return 1
  1388. _get_compose_relations_cached "$compose_def" > "$cache_file"
  1389. if [ "$?" != 0 ]; then
  1390. rm -f "$cache_file" ## no cache
  1391. return 1
  1392. fi
  1393. cat "$cache_file"
  1394. }
  1395. export -f get_compose_relations
  1396. get_compose_relation_def() {
  1397. local service="$1" relation="$2" relation_name target_service relation_config tech_dep
  1398. while read-0 relation_name target_service relation_config tech_dep; do
  1399. [ "$relation_name" == "$relation" ] || continue
  1400. printf "%s\0%s\0%s\0" "$target_service" "$relation_config" "$tech_dep"
  1401. done < <(get_compose_relations "$service") || return 1
  1402. }
  1403. export -f get_compose_relation_def
  1404. run_service_relations () {
  1405. local service services loaded subservices subservice
  1406. PROJECT_NAME=$(get_default_project_name) || return 1
  1407. export PROJECT_NAME
  1408. declare -A loaded
  1409. subservices=$(get_ordered_service_dependencies "$@") || return 1
  1410. for service in $subservices; do
  1411. # debug "Upping dep's relations of ${DARKYELLOW}$service${NORMAL}:"
  1412. for subservice in $(get_service_deps "$service") "$service"; do
  1413. [ "${loaded[$subservice]}" ] && continue
  1414. export BASE_SERVICE_NAME=$service
  1415. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  1416. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  1417. RELATION_BASE_COMPOSE_DEF=$(get_compose_service_def "$subservice") || return 1
  1418. export RELATION_BASE_COMPOSE_DEF MASTER_BASE_{CHARM,SERVICE}_NAME
  1419. # debug " Relations of ${DARKYELLOW}$subservice${NORMAL}:"
  1420. while read-0 relation_name target_service relation_config tech_dep; do
  1421. export relation_config
  1422. export TARGET_SERVICE_NAME=$target_service
  1423. MASTER_TARGET_SERVICE_NAME=$(get_top_master_service_for_service "$target_service") || return 1
  1424. MASTER_TARGET_CHARM_NAME=$(get_service_charm "$MASTER_TARGET_SERVICE_NAME") || return 1
  1425. RELATION_TARGET_COMPOSE_DEF=$(get_compose_service_def "$target_service") || return 1
  1426. export RELATION_TARGET_COMPOSE_DEF MASTER_TARGET_{CHARM,SERVICE}_NAME
  1427. Wrap -d "Building $DARKYELLOW$subservice$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW$target_service$NORMAL" <<EOF || return 1
  1428. _run_service_relation "$relation_name" "$subservice" "$target_service" "\$relation_config"
  1429. EOF
  1430. done < <(get_compose_relations "$subservice") || return 1
  1431. loaded[$subservice]=1
  1432. done
  1433. done
  1434. }
  1435. export -f run_service_relations
  1436. _run_service_action_direct() {
  1437. local service="$1" action="$2" charm _dummy
  1438. shift; shift
  1439. read-0 charm || true ## against 'set -e' that could be setup in parent scripts
  1440. if read-0 _dummy || [ "$_dummy" ]; then
  1441. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  1442. return 1
  1443. fi
  1444. export action_errlvl_file="$state_tmpdir/action-$service-$charm-$action-errlvl"
  1445. export state_tmpdir
  1446. {
  1447. (
  1448. set +e ## Prevents unwanted leaks from parent shell
  1449. export COMPOSE_CONFIG=$(get_compose_yml_content)
  1450. export METADATA_CONFIG=$(charm.metadata "$charm")
  1451. export SERVICE_NAME=$service
  1452. export ACTION_NAME=$action
  1453. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  1454. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  1455. export SERVICE_DATASTORE="$DATASTORE/$service"
  1456. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  1457. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  1458. stdbuf -oL -eL bash -c 'charm.run_direct_action "$@"' -- "$charm" "$action" "$@"
  1459. echo "$?" > "$action_errlvl_file"
  1460. ) | logstdout "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${GREEN}@${NORMAL}"
  1461. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  1462. if ! [ -e "$action_errlvl_file" ]; then
  1463. err "Action $DARKYELLOW$service$NORMAL:$DARKCYAN$action$NORMAL has failed without having time" \
  1464. "to output an errlvl"
  1465. return 1
  1466. fi
  1467. return "$(cat "$action_errlvl_file")"
  1468. }
  1469. export -f _run_service_action_direct
  1470. _run_service_action_relation() {
  1471. local service="$1" action="$2" charm target_charm relation_name relation_config _dummy
  1472. shift; shift
  1473. read-0 charm target_service target_charm relation_name relation_config || true
  1474. if read-0 _dummy || [ "$_dummy" ]; then
  1475. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  1476. return 1
  1477. fi
  1478. export RELATION_DATA_FILE=$(get_relation_data_file "$service" "$target_service" "$relation_name" "$relation_config")
  1479. export action_errlvl_file="$state_tmpdir/action-$service-$charm-$action-errlvl"
  1480. export state_tmpdir
  1481. {
  1482. (
  1483. set +e ## Prevents unwanted leaks from parent shell
  1484. export METADATA_CONFIG=$(charm.metadata "$charm")
  1485. export SERVICE_NAME=$service
  1486. export RELATION_TARGET_SERVICE="$target_service"
  1487. export RELATION_TARGET_CHARM="$target_charm"
  1488. export RELATION_BASE_SERVICE="$service"
  1489. export RELATION_BASE_CHARM="$charm"
  1490. export ACTION_NAME=$action
  1491. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  1492. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  1493. export SERVICE_DATASTORE="$DATASTORE/$service"
  1494. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  1495. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  1496. stdbuf -oL -eL bash -c 'charm.run_relation_action "$@"' -- "$target_charm" "$relation_name" "$action" "$@"
  1497. echo "$?" > "$action_errlvl_file"
  1498. ) | logstdout "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${GREEN}@${NORMAL}"
  1499. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  1500. if ! [ -e "$action_errlvl_file" ]; then
  1501. err "Action $DARKYELLOW$service$NORMAL:$DARKCYAN$action$NORMAL has failed without having time" \
  1502. "to output an errlvl"
  1503. return 1
  1504. fi
  1505. return "$(cat "$action_errlvl_file")"
  1506. }
  1507. export -f _run_service_action_relation
  1508. get_relation_data_dir() {
  1509. local service="$1" target_service="$2" relation_name="$3" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  1510. if [ -e "$cache_file" ]; then
  1511. # debug "$FUNCNAME: cache hit ($*)"
  1512. cat "$cache_file"
  1513. return 0
  1514. fi
  1515. project=$(get_default_project_name) || return 1
  1516. relation_dir="$VARDIR/relations/$project/${service}-${target_service}/$relation_name"
  1517. if ! [ -d "$relation_dir" ]; then
  1518. mkdir -p "$relation_dir" || return 1
  1519. chmod go-rwx "$relation_dir" || return 1 ## protecting this directory
  1520. fi
  1521. echo "$relation_dir" || tee "$cache_file"
  1522. }
  1523. export -f get_relation_data_dir
  1524. get_relation_data_file() {
  1525. local service="$1" target_service="$2" relation_name="$3" relation_config="$4"
  1526. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  1527. relation_data_file="$relation_dir/data"
  1528. new=
  1529. if [ -e "$relation_data_file" ]; then
  1530. ## Has reference changed ?
  1531. new_md5=$(echo "$relation_config" | md5_compat)
  1532. if [ "$new_md5" != "$(cat "$relation_data_file.md5_ref" 2>/dev/null)" ]; then
  1533. new=true
  1534. fi
  1535. else
  1536. new=true
  1537. fi
  1538. if [ "$new" ]; then
  1539. echo "$relation_config" > "$relation_data_file"
  1540. chmod go-rwx "$relation_data_file" ## protecting this file
  1541. echo "$relation_config" | md5_compat > "$relation_data_file.md5_ref"
  1542. fi
  1543. echo "$relation_data_file"
  1544. }
  1545. export -f get_relation_data_file
  1546. has_service_action () {
  1547. local service="$1" action="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1548. charm target_charm relation_name target_service relation_config _tech_dep
  1549. if [ -e "$cache_file" ]; then
  1550. # debug "$FUNCNAME: cache hit ($*)"
  1551. cat "$cache_file"
  1552. return 0
  1553. fi
  1554. charm=$(get_service_charm "$service") || return 1
  1555. ## Action directly provided ?
  1556. if charm.has_direct_action "$charm" "$action" >/dev/null; then
  1557. echo -en "direct\0$charm" | tee "$cache_file"
  1558. return 0
  1559. fi
  1560. ## Action provided by relation ?
  1561. while read-0 relation_name target_service relation_config _tech_dep; do
  1562. target_charm=$(get_service_charm "$target_service") || return 1
  1563. if charm.has_relation_action "$target_charm" "$relation_name" "$action" >/dev/null; then
  1564. echo -en "relation\0$charm\0$target_service\0$target_charm\0$relation_name\0$relation_config" | tee "$cache_file"
  1565. return 0
  1566. fi
  1567. done < <(get_compose_relations "$service")
  1568. return 1
  1569. # master=$(get_top_master_service_for_service "$service")
  1570. # [ "$master" == "$charm" ] && return 1
  1571. # has_service_action "$master" "$action"
  1572. }
  1573. export -f has_service_action
  1574. run_service_action () {
  1575. local service="$1" action="$2"
  1576. shift ; shift
  1577. {
  1578. if ! read-0 action_type; then
  1579. info "Service $DARKYELLOW$service$NORMAL does not have any action $DARKCYAN$action$NORMAL defined."
  1580. info " Add an executable script to 'actions/$action' to implement action."
  1581. return 1
  1582. fi
  1583. Section "running $DARKYELLOW$service$NORMAL/$DARKCYAN$action$NORMAL ($action_type)"; Feed
  1584. "_run_service_action_${action_type}" "$service" "$action" "$@"
  1585. } < <(has_service_action "$service" "$action")
  1586. }
  1587. export -f run_service_action
  1588. get_compose_relation_config() {
  1589. local service=$1 relation_config cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  1590. if [ -e "$cache_file" ]; then
  1591. # debug "$FUNCNAME: cache hit ($*)"
  1592. cat "$cache_file"
  1593. return 0
  1594. fi
  1595. compose_service_def=$(get_compose_service_def "$service") || return 1
  1596. echo "$compose_service_def" | shyaml get-value "relations" 2>/dev/null | tee "$cache_file"
  1597. }
  1598. export -f get_compose_relation_config
  1599. # ## Return key-values-0
  1600. # get_compose_relation_config_for_service() {
  1601. # local service=$1 relation_name=$2 relation_config
  1602. # compose_service_relations=$(get_compose_relation_config "$service") || return 1
  1603. # if ! relation_config=$(
  1604. # echo "$compose_service_relations" |
  1605. # shyaml get-value "${relation_name}" 2>/dev/null); then
  1606. # err "Couldn't find $DARKYELLOW${service}$NORMAL/${WHITE}${relation_name}$NORMAL" \
  1607. # "relation config in compose configuration."
  1608. # return 1
  1609. # fi
  1610. # if [ -z "$relation_config" ]; then
  1611. # err "Relation ${WHITE}mysql-database$NORMAL is empty in compose configuration."
  1612. # return 1
  1613. # fi
  1614. # if ! echo "$relation_config" | shyaml key-values-0 2>/dev/null; then
  1615. # err "No key/values in ${DARKBLUE}mysql-database$NORMAL of compose config."
  1616. # return 1
  1617. # fi
  1618. # }
  1619. # export -f get_compose_relation_config_for_service
  1620. _get_master_service_for_service_cached () {
  1621. local service="$1" charm="$2" metadata="$3" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  1622. charm requires master_charm target_charm target_service service_def found
  1623. if [ -e "$cache_file" ]; then
  1624. # debug "$FUNCNAME: STATIC cache hit ($1)"
  1625. cat "$cache_file" &&
  1626. touch "$cache_file" || return 1
  1627. return 0
  1628. fi
  1629. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" != "True" ]; then
  1630. ## just return service name
  1631. echo "$service" | tee "$cache_file"
  1632. return 0
  1633. fi
  1634. ## fetch the container relation
  1635. requires="$(echo "$metadata" | shyaml get-value "requires" 2>/dev/null)"
  1636. if [ -z "$requires" ]; then
  1637. die "Charm $DARKPINK$charm$NORMAL is a subordinate but does not have any 'requires' " \
  1638. "section."
  1639. fi
  1640. found=
  1641. while read-0 relation_name relation; do
  1642. [ "$(echo "$relation" | shyaml get-value "scope" 2>/dev/null)" == "container" ] && {
  1643. found=1
  1644. break
  1645. }
  1646. done < <(echo "$requires" | shyaml key-values-0 2>/dev/null)
  1647. if [ -z "$found" ]; then
  1648. die "Charm $DARKPINK$charm$NORMAL is a subordinate but does not have any required relation declaration with" \
  1649. " ${WHITE}scope${NORMAL} set to 'container'."
  1650. fi
  1651. interface="$(echo "$relation" | shyaml get-value "interface" 2>/dev/null)"
  1652. if [ -z "$interface" ]; then
  1653. err "No ${WHITE}interface${NORMAL} set for relation $DARKBLUE$relation_name$NORMAL."
  1654. return 1
  1655. fi
  1656. ## Action provided by relation ?
  1657. found=
  1658. while read-0 relation_name target_service _relation_config _tech_dep; do
  1659. [ "$interface" == "$relation_name" ] && {
  1660. found=1
  1661. break
  1662. }
  1663. done < <(get_compose_relations "$service")
  1664. if [ -z "$found" ]; then
  1665. err "Couldn't find ${WHITE}relations.$interface${NORMAL} in" \
  1666. "${DARKYELLOW}$service$NORMAL compose definition."
  1667. return 1
  1668. fi
  1669. echo "$target_service" | tee "$cache_file"
  1670. }
  1671. export -f _get_master_service_for_service_cached
  1672. get_master_service_for_service() {
  1673. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1674. charm metadata result
  1675. if [ -e "$cache_file" ]; then
  1676. # debug "$FUNCNAME: SESSION cache hit ($*)"
  1677. cat "$cache_file" || return 1
  1678. return 0
  1679. fi
  1680. charm=$(get_service_charm "$service") || return 1
  1681. metadata=$(charm.metadata "$charm" 2>/dev/null) || {
  1682. metadata=""
  1683. warn "No charm $DARKPINK$charm$NORMAL found."
  1684. }
  1685. result=$(_get_master_service_for_service_cached "$service" "$charm" "$metadata") || return 1
  1686. echo "$result" | tee "$cache_file" || return 1
  1687. }
  1688. export -f get_master_service_for_service
  1689. get_top_master_service_for_service() {
  1690. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1691. current_service
  1692. if [ -e "$cache_file" ]; then
  1693. # debug "$FUNCNAME: cache hit ($*)"
  1694. cat "$cache_file"
  1695. return 0
  1696. fi
  1697. current_service="$service"
  1698. while true; do
  1699. master_service=$(get_master_service_for_service "$current_service") || return 1
  1700. [ "$master_service" == "$current_service" ] && break
  1701. current_service="$master_service"
  1702. done
  1703. echo "$current_service" | tee "$cache_file"
  1704. return 0
  1705. }
  1706. export -f get_top_master_service_for_service
  1707. ##
  1708. ## The result is a mixin that is not always a complete valid
  1709. ## docker-compose entry (thinking of subordinates). The result
  1710. ## will be merge with master charms.
  1711. _get_docker_compose_mixin_from_metadata_cached() {
  1712. local service="$1" charm="$2" metadata="$3" has_build_dir="$4" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  1713. metadata_file metadata volumes docker_compose subordinate image
  1714. if [ -e "$cache_file" ]; then
  1715. #debug "$FUNCNAME: STATIC cache hit $1"
  1716. cat "$cache_file" &&
  1717. touch "$cache_file" || return 1
  1718. return 0
  1719. fi
  1720. mixin=$(echo -en "labels:\n- compose.charm=$charm")
  1721. if [ "$metadata" ]; then
  1722. ## resources to volumes
  1723. volumes=$(
  1724. for resource_type in data config; do
  1725. while read-0 resource; do
  1726. eval "echo \" - \$${resource_type^^}STORE/\$service\$resource:\$resource:rw\""
  1727. done < <(echo "$metadata" | shyaml get-values-0 "${resource_type}-resources" 2>/dev/null)
  1728. done
  1729. while read-0 resource; do
  1730. if [[ "$resource" == /*:/*:* ]]; then
  1731. echo " - $resource"
  1732. elif [[ "$resource" == /*:/* ]]; then
  1733. echo " - $resource:rw"
  1734. elif [[ "$resource" == /*:* ]]; then
  1735. echo " - ${resource%%:*}:$resource"
  1736. elif [[ "$resource" =~ ^/[^:]+$ ]]; then
  1737. echo " - $resource:$resource:rw"
  1738. else
  1739. die "Invalid host-resource specified in 'metadata.yml'."
  1740. fi
  1741. done < <(echo "$metadata" | shyaml get-values-0 "host-resources" 2>/dev/null)
  1742. while read-0 resource; do
  1743. dest="$(charm.get_dir "$charm")/resources$resource"
  1744. if ! [ -e "$dest" ]; then
  1745. die "charm-resource: '$resource' does not exist (file: '$dest')."
  1746. fi
  1747. echo " - $dest:$resource:ro"
  1748. done < <(echo "$metadata" | shyaml get-values-0 "charm-resources" 2>/dev/null)
  1749. ) || return 1
  1750. if [ "$volumes" ]; then
  1751. mixin=$(merge_yaml_str "$mixin" "$(echo -en "volumes:\n$volumes")") || {
  1752. err "Failed to merge mixin with ${WHITE}docker-compose${NORMAL} option" \
  1753. "from charm ${DARKPINK}$charm$NORMAL."
  1754. return 1
  1755. }
  1756. fi
  1757. docker_compose=$(echo "$metadata" | shyaml get-value -y "docker-compose" 2>/dev/null)
  1758. if [ "$docker_compose" ]; then
  1759. mixin=$(merge_yaml_str "$mixin" "$docker_compose") || {
  1760. err "Failed to merge mixin with ${WHITE}docker-compose${NORMAL} option" \
  1761. "from charm ${DARKPINK}$charm$NORMAL."
  1762. return 1
  1763. }
  1764. fi
  1765. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" == "True" ]; then
  1766. subordinate=true
  1767. fi
  1768. fi
  1769. image=$(echo "$metadata" | shyaml get-value "docker-image" 2>/dev/null)
  1770. [ "$image" == "None" ] && image=""
  1771. image_or_build_statement=
  1772. if [ "$image" ]; then
  1773. if [ "$subordinate" ]; then
  1774. err "Subordinate charm can not have a ${WHITE}docker-image${NORMAL} value."
  1775. return 1
  1776. fi
  1777. image_or_build_statement="image: $image"
  1778. elif [ "$has_build_dir" ]; then
  1779. if [ "$subordinate" ]; then
  1780. err "Subordinate charm can not have a 'build' sub directory."
  1781. return 1
  1782. fi
  1783. image_or_build_statement="build: $(charm.get_dir "$charm")/build"
  1784. fi
  1785. if [ "$image_or_build_statement" ]; then
  1786. mixin=$(merge_yaml_str "$mixin" "$image_or_build_statement") || {
  1787. err "Failed to merge yaml with image or build YAML statement."
  1788. return 1
  1789. }
  1790. fi
  1791. echo "$mixin" | tee "$cache_file"
  1792. }
  1793. export -f _get_docker_compose_mixin_from_metadata_cached
  1794. get_docker_compose_mixin_from_metadata() {
  1795. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  1796. if [ -e "$cache_file" ]; then
  1797. #debug "$FUNCNAME: SESSION cache hit ($*)"
  1798. cat "$cache_file"
  1799. return 0
  1800. fi
  1801. charm=$(get_service_charm "$service") || return 1
  1802. metadata="$(charm.metadata "$charm" 2>/dev/null)" || return 1
  1803. has_build_dir=
  1804. [ -d "$(charm.get_dir "$charm")/build" ] && has_build_dir=true
  1805. mixin=$(_get_docker_compose_mixin_from_metadata_cached "$service" "$charm" "$metadata" "$has_build_dir") || return 1
  1806. echo "$mixin" | tee "$cache_file"
  1807. }
  1808. export -f get_docker_compose_mixin_from_metadata
  1809. _save() {
  1810. local name="$1"
  1811. cat - | tee -a "$docker_compose_dir/.data/$name"
  1812. }
  1813. export -f _save
  1814. get_default_project_name() {
  1815. if [ "$DEFAULT_PROJECT_NAME" ]; then
  1816. echo "$DEFAULT_PROJECT_NAME"
  1817. return 0
  1818. fi
  1819. compose_yml_location="$(get_compose_yml_location)" || return 1
  1820. if [ "$compose_yml_location" ]; then
  1821. if normalized_path=$(readlink -f "$compose_yml_location"); then
  1822. echo "$(basename "$(dirname "$normalized_path")")"
  1823. return 0
  1824. fi
  1825. fi
  1826. echo "orphan"
  1827. return 0
  1828. }
  1829. export -f get_default_project_name
  1830. launch_docker_compose() {
  1831. local charm docker_compose_tmpdir docker_compose_dir
  1832. docker_compose_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  1833. #debug "Creating temporary docker-compose directory in '$docker_compose_tmpdir'."
  1834. trap_add EXIT "rm -rf \"$docker_compose_tmpdir\""
  1835. ## docker-compose will name network from the parent dir name
  1836. project=$(get_default_project_name)
  1837. mkdir -p "$docker_compose_tmpdir/$project"
  1838. docker_compose_dir="$docker_compose_tmpdir/$project"
  1839. get_docker_compose $SERVICE_PACK > "$docker_compose_dir/docker-compose.yml" || return 1
  1840. if [ -e "$state_tmpdir/to-merge-in-docker-compose.yml" ]; then
  1841. # debug "Merging some config data in docker-compose.yml:"
  1842. # debug "$(cat $state_tmpdir/to-merge-in-docker-compose.yml)"
  1843. _config_merge "$docker_compose_dir/docker-compose.yml" "$state_tmpdir/to-merge-in-docker-compose.yml" || return 1
  1844. fi
  1845. if [ -z "$(echo $(cat "$docker_compose_dir/docker-compose.yml"))" ]; then
  1846. die "Generated 'docker-compose.yml' is unexpectedly empty."
  1847. fi
  1848. ## XXXvlab: could be more specific and only link the needed charms
  1849. ## XXXvlab: why do we need these links ? If this is for the build command, then it is not useful anymore.
  1850. # for charm in $(shyaml keys services < "$docker_compose_dir/docker-compose.yml"); do
  1851. # if charm.exists "$charm"; then
  1852. # ln -sf "$(charm.get_dir "$charm")" "$docker_compose_dir/$charm" || exit 1
  1853. # fi
  1854. # done
  1855. mkdir "$docker_compose_dir/.data"
  1856. {
  1857. {
  1858. cd "$docker_compose_dir"
  1859. debug "${WHITE}docker-compose.yml$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  1860. debug "$(cat "docker-compose.yml" | prefix " $GRAY|$NORMAL ")"
  1861. debug "${WHITE}Launching$NORMAL: docker-compose $@"
  1862. if [ "$DRY_COMPOSE_RUN" ]; then
  1863. echo docker-compose "$@"
  1864. else
  1865. docker-compose "$@"
  1866. fi
  1867. echo "$?" > "$docker_compose_dir/.data/errlvl"
  1868. } | _save stdout
  1869. } 3>&1 1>&2 2>&3 | _save stderr 3>&1 1>&2 2>&3
  1870. if tail -n 1 "$docker_compose_dir/.data/stderr" | egrep "Service .+ failed to build: Error getting container [0-9a-f]+ from driver devicemapper: (open|Error mounting) /dev/mapper/docker-.*: no such file or directory$" >/dev/null 2>&1; then
  1871. err "Detected bug https://github.com/docker/docker/issues/4036 ... "
  1872. err "Please re-launch your command, or switch from 'devicemapper' driver to 'overlayfs' or 'aufs'."
  1873. fi
  1874. docker_compose_errlvl="$(cat "$docker_compose_dir/.data/errlvl" 2>/dev/null)"
  1875. if [ -z "$docker_compose_errlvl" ]; then
  1876. err "Something went wrong before you could gather docker-compose errorlevel."
  1877. return 1
  1878. fi
  1879. return "$docker_compose_errlvl"
  1880. }
  1881. export -f launch_docker_compose
  1882. get_compose_yml_location() {
  1883. if ! [ -z ${COMPOSE_YML_FILE+x} ]; then ## if set, even if empty
  1884. echo "$COMPOSE_YML_FILE"
  1885. return 0
  1886. fi
  1887. parent=$(while ! [ -f "./compose.yml" ]; do
  1888. [ "$PWD" == "/" ] && exit 0
  1889. cd ..
  1890. done; echo "$PWD"
  1891. )
  1892. if [ "$parent" ]; then
  1893. echo "$parent/compose.yml"
  1894. return 0
  1895. fi
  1896. ## XXXvlab: do we need this additional environment variable,
  1897. ## COMPOSE_YML_FILE is not sufficient ?
  1898. if [ "$DEFAULT_COMPOSE_FILE" ]; then
  1899. if ! [ -e "$DEFAULT_COMPOSE_FILE" ]; then
  1900. warn "No 'compose.yml' was found in current or parent dirs," \
  1901. "and \$DEFAULT_COMPOSE_FILE points to an unexistent file." \
  1902. "(${DEFAULT_COMPOSE_FILE})"
  1903. return 0
  1904. fi
  1905. echo "$DEFAULT_COMPOSE_FILE"
  1906. return 0
  1907. fi
  1908. warn "No 'compose.yml' was found in current or parent dirs, and no \$DEFAULT_COMPOSE_FILE was set."
  1909. return 0
  1910. }
  1911. export -f get_compose_yml_location
  1912. get_compose_yml_content() {
  1913. local cache_file="$state_tmpdir/$FUNCNAME.cache"
  1914. if [ -e "$cache_file" ]; then
  1915. cat "$cache_file" &&
  1916. touch "$cache_file" || return 1
  1917. return 0
  1918. fi
  1919. if [ -z "$COMPOSE_YML_FILE" ]; then
  1920. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  1921. fi
  1922. if [ -e "$COMPOSE_YML_FILE" ]; then
  1923. debug "Found $WHITE$exname$NORMAL YAML file in '$COMPOSE_YML_FILE'."
  1924. COMPOSE_YML_CONTENT=$(cat "$COMPOSE_YML_FILE") || {
  1925. err "Could not read '$COMPOSE_YML_FILE'."
  1926. return 1
  1927. }
  1928. else
  1929. debug "No compose file found. Using an empty one."
  1930. COMPOSE_YML_CONTENT=""
  1931. fi
  1932. COMPOSE_YML_CONTENT=$(merge_yaml_str "$COMPOSE_YML_CONTENT" "${compose_contents[@]}") || return 1
  1933. output=$(echo "$COMPOSE_YML_CONTENT"| shyaml get-value 2>&1)
  1934. if [ "$?" != 0 ]; then
  1935. outputed_something=
  1936. while IFS='' read -r line1 && IFS='' read -r line2; do
  1937. [ "$outputed_something" ] || err "Invalid YAML in '$COMPOSE_YML_FILE':"
  1938. outputed_something=true
  1939. echo "$line1 $GRAY($line2)$NORMAL"
  1940. done < <(echo "$output" | grep ^yaml.scanner -A 100 |
  1941. sed -r 's/^ in "<stdin>", //g' | sed -r 's/^yaml.scanner.[a-zA-Z]+: //g') |
  1942. prefix " $GRAY|$NORMAL "
  1943. [ "$outputed_something" ] || {
  1944. err "Unexpected error while running 'shyaml get-value' on '$COMPOSE_YML_FILE':"
  1945. echo "$output" | prefix " $GRAY|$NORMAL "
  1946. }
  1947. return 1
  1948. fi
  1949. echo "$COMPOSE_YML_CONTENT" | tee "$cache_file" || return 1
  1950. }
  1951. export -f get_compose_yml_content
  1952. get_default_target_services() {
  1953. local services=("$@")
  1954. if [ -z "${services[*]}" ]; then
  1955. if [ "$DEFAULT_SERVICES" ]; then
  1956. debug "No service provided, using $WHITE\$DEFAULT_SERVICES$NORMAL variable." \
  1957. "Target services: $DARKYELLOW$DEFAULT_SERVICES$NORMAL"
  1958. services="$DEFAULT_SERVICES"
  1959. else
  1960. err "No service provided."
  1961. return 1
  1962. fi
  1963. fi
  1964. echo "${services[*]}"
  1965. }
  1966. export -f get_default_target_services
  1967. get_master_services() {
  1968. local loaded master_service service
  1969. declare -A loaded
  1970. for service in "$@"; do
  1971. master_service=$(get_top_master_service_for_service "$service") || return 1
  1972. if [ "${loaded[$master_service]}" ]; then
  1973. continue
  1974. fi
  1975. echo "$master_service"
  1976. loaded["$master_service"]=1
  1977. done | xargs printf "%s "
  1978. return "${PIPESTATUS[0]}"
  1979. }
  1980. export -f get_master_services
  1981. _setup_state_dir() {
  1982. export state_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  1983. #debug "Creating temporary state directory in '$state_tmpdir'."
  1984. # trap_add EXIT "debug \"Removing temporary state directory in $state_tmpdir.\";\
  1985. # rm -rf \"$state_tmpdir\""
  1986. trap_add EXIT "rm -rf \"$state_tmpdir\""
  1987. }
  1988. get_docker_compose_help_msg() {
  1989. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$1"; cat "$(which docker-compose)" | md5_compat)" \
  1990. docker_compose_help_msg
  1991. if [ -e "$cache_file" ]; then
  1992. cat "$cache_file" &&
  1993. touch "$cache_file" || return 1
  1994. return 0
  1995. fi
  1996. docker_compose_help_msg=$(docker-compose $action --help 2>/dev/null) || return 1
  1997. echo "$docker_compose_help_msg" |
  1998. tee "$cache_file" || return 1
  1999. }
  2000. get_docker_compose_usage() {
  2001. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$1"; cat "$(which docker-compose)" | md5_compat)" \
  2002. docker_compose_help_msg
  2003. if [ -e "$cache_file" ]; then
  2004. cat "$cache_file" &&
  2005. touch "$cache_file" || return 1
  2006. return 0
  2007. fi
  2008. docker_compose_help_msg=$(get_docker_compose_help_msg $action) || return 1
  2009. echo "$docker_compose_help_msg" |
  2010. grep -m 1 "^Usage:" -A 10000 |
  2011. egrep -m 1 "^\$" -B 10000 |
  2012. xargs printf "%s " |
  2013. sed -r 's/^Usage: //g' |
  2014. tee "$cache_file" || return 1
  2015. }
  2016. get_docker_compose_opts_help() {
  2017. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$1"; cat "$(which docker-compose)" | md5_compat)" \
  2018. docker_compose_help_msg
  2019. if [ -e "$cache_file" ]; then
  2020. cat "$cache_file" &&
  2021. touch "$cache_file" || return 1
  2022. return 0
  2023. fi
  2024. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  2025. echo "$docker_compose_opts_help" |
  2026. grep '^Options:' -A 20000 |
  2027. tail -n +2 |
  2028. { cat ; echo; } |
  2029. egrep -m 1 "^\S*\$" -B 10000 |
  2030. head -n -1 |
  2031. tee "$cache_file" || return 1
  2032. }
  2033. get_docker_compose_commands_help() {
  2034. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$1"; cat "$(which docker-compose)" | md5_compat)" \
  2035. docker_compose_help_msg
  2036. if [ -e "$cache_file" ]; then
  2037. cat "$cache_file" &&
  2038. touch "$cache_file" || return 1
  2039. return 0
  2040. fi
  2041. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  2042. echo "$docker_compose_opts_help" |
  2043. grep '^Commands:' -A 20000 |
  2044. tail -n +2 |
  2045. { cat ; echo; } |
  2046. egrep -m 1 "^\S*\$" -B 10000 |
  2047. head -n -1 |
  2048. tee "$cache_file" || return 1
  2049. }
  2050. get_docker_compose_opts_list() {
  2051. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$1"; cat "$(which docker-compose)" | md5_compat)" \
  2052. docker_compose_help_msg
  2053. if [ -e "$cache_file" ]; then
  2054. cat "$cache_file" &&
  2055. touch "$cache_file" || return 1
  2056. return 0
  2057. fi
  2058. docker_compose_opts_help=$(get_docker_compose_opts_help $action) || return 1
  2059. echo "$docker_compose_opts_help" |
  2060. egrep "^\s+-" |
  2061. sed -r 's/\s+((((-[a-zA-Z]|--[a-zA-Z0-9-]+)( [A-Z=]+|=[^ ]+)?)(, )?)+)\s+.*$/\1/g' |
  2062. tee "$cache_file" || return 1
  2063. }
  2064. options_parser() {
  2065. sed -r 's/^(\s+(((-[a-zA-Z]|--[a-zA-Z0-9-]+)([ =]([a-zA-Z_=\"\[]|\])+)?(, | )?)+)\s+)[^ ].*$/\x0\2\x0\0/g'
  2066. printf "\0"
  2067. }
  2068. remove_options_in_option_help_msg() {
  2069. {
  2070. read-0 null
  2071. if [ "$null" ]; then
  2072. err "options parsing error, should start with an option line."
  2073. return 1
  2074. fi
  2075. while read-0 opt full_txt;do
  2076. multi_opts="$(printf "%s " $opt | multi_opts_filter)"
  2077. single_opts="$(printf "%s " $opt | single_opts_filter)"
  2078. for to_remove in "$@"; do
  2079. str_matches "$to_remove" $multi_opts $single_opts && {
  2080. continue 2
  2081. }
  2082. done
  2083. echo -n "$full_txt"
  2084. done
  2085. } < <(options_parser)
  2086. }
  2087. _MULTIOPTION_REGEX='^((-[a-zA-Z]|--[a-zA-Z0-9-]+)(, )?)+'
  2088. _MULTIOPTION_REGEX_LINE_FILTER=$_MULTIOPTION_REGEX'(\s|=)'
  2089. multi_opts_filter() {
  2090. egrep "$_MULTIOPTION_REGEX_LINE_FILTER" |
  2091. sed -r "s/^($_MULTIOPTION_REGEX)(\s|=).*$/\1/g" |
  2092. tr ',' "\n" | xargs printf "%s "
  2093. }
  2094. single_opts_filter() {
  2095. egrep -v "$_MULTIOPTION_REGEX_LINE_FILTER" |
  2096. tr ',' "\n" | xargs printf "%s "
  2097. }
  2098. get_docker_compose_multi_opts_list() {
  2099. local action="$1" opts_list
  2100. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  2101. echo "$opts_list" | multi_opts_filter
  2102. }
  2103. get_docker_compose_single_opts_list() {
  2104. local action="$1" opts_list
  2105. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  2106. echo "$opts_list" | single_opts_filter
  2107. }
  2108. display_help() {
  2109. print_help
  2110. echo "${WHITE}Options${NORMAL}:"
  2111. echo " -h, --help Print this message and quit"
  2112. echo " (ignoring any other options)"
  2113. echo " -V, --version Print current version and quit"
  2114. echo " (ignoring any other options)"
  2115. echo " --dirs Display data dirs and quit"
  2116. echo " (ignoring any other options)"
  2117. echo " -v, --verbose Be more verbose"
  2118. echo " -d, --debug Print full debugging information (sets also verbose)"
  2119. echo " --dry-compose-run If docker-compose will be run, only print out what"
  2120. echo " command line will be used."
  2121. echo " --rebuild-relations-to-service, -R SERVICE"
  2122. echo " Will rebuild all relations to given service"
  2123. echo " --add-compose-content, -Y YAML"
  2124. echo " Will merge some direct YAML with the current compose"
  2125. get_docker_compose_opts_help | remove_options_in_option_help_msg --version --help --verbose |
  2126. filter_docker_compose_help_message
  2127. echo
  2128. echo "${WHITE}Commands${NORMAL} (thanks to docker-compose):"
  2129. get_docker_compose_commands_help | sed -r "s/ ([a-z]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2/g"
  2130. }
  2131. _graph_service() {
  2132. local service="$1" base="$1"
  2133. charm=$(get_service_charm "$service") || return 1
  2134. metadata=$(charm.metadata "$charm") || return 1
  2135. subordinate=$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)
  2136. if [ "$subordinate" == "True" ]; then
  2137. requires="$(echo "$metadata" | shyaml get-value "requires" 2>/dev/null)"
  2138. master_charm=
  2139. while read-0 relation_name relation; do
  2140. [ "$(echo "$relation" | shyaml get-value "scope" 2>/dev/null)" == "container" ] || continue
  2141. interface="$(echo "$relation" | shyaml get-value "interface" 2>/dev/null)"
  2142. if [ -z "$interface" ]; then
  2143. err "No ${WHITE}$interface${NORMAL} set for relation $relation_name."
  2144. return 1
  2145. fi
  2146. ## Action provided by relation ?
  2147. target_service=
  2148. while read-0 relation_name candidate_target_service _relation_config _tech_dep; do
  2149. [ "$interface" == "$relation_name" ] && {
  2150. target_service="$candidate_target_service"
  2151. break
  2152. }
  2153. done < <(get_compose_relations "$service")
  2154. if [ -z "$target_service" ]; then
  2155. err "Couldn't find ${WHITE}relations.$interface${NORMAL} in" \
  2156. "${DARKYELLOW}$service$NORMAL compose definition."
  2157. return 1
  2158. fi
  2159. master_service="$target_service"
  2160. master_charm=$(get_service_charm "$target_service") || return 1
  2161. break
  2162. done < <(echo "$requires" | shyaml key-values-0 2>/dev/null)
  2163. fi
  2164. _graph_node_service "$service" "$base" "$charm"
  2165. _graph_edge_service "$service" "$subordinate" "$master_service"
  2166. }
  2167. _graph_node_service() {
  2168. local service="$1" base="$2" charm="$3"
  2169. cat <<EOF
  2170. "$(_graph_node_service_label ${service})" [
  2171. style = "filled, $([ "$subordinate" == "True" ] && echo "dashed" || echo "bold")"
  2172. penwidth = $([ "$subordinate" == "True" ] && echo "3" || echo "5")
  2173. color = $([ "$base" ] && echo "blue" || echo "black")
  2174. fillcolor = "white"
  2175. fontname = "Courier New"
  2176. shape = "Mrecord"
  2177. label =<$(_graph_node_service_content "$service")>
  2178. ];
  2179. EOF
  2180. }
  2181. _graph_edge_service() {
  2182. local service="$1" subordinate="$2" master_service="$3"
  2183. while read-0 relation_name target_service relation_config tech_dep; do
  2184. cat <<EOF
  2185. "$(_graph_node_service_label ${service})" -> "$(_graph_node_service_label ${target_service})" [
  2186. penwidth = $([ "$master_service" == "$target_service" ] && echo 3 || echo 2)
  2187. fontsize = 16
  2188. fontcolor = "black"
  2189. style = $([ "$master_service" == "$target_service" ] && echo dashed || echo "\"\"")
  2190. weight = $([ "$master_service" == "$target_service" ] && echo 2.0 || echo 1.0)
  2191. dir = $([ "$master_service" == "$target_service" ] && echo none || echo both)
  2192. arrowtail = odot
  2193. # arrowhead = dotlicurve
  2194. taillabel = "$relation_name" ];
  2195. EOF
  2196. done < <(get_compose_relations "$service") || return 1
  2197. }
  2198. _graph_node_service_label() {
  2199. local service="$1"
  2200. echo "service_$service"
  2201. }
  2202. _graph_node_service_content() {
  2203. local service="$1"
  2204. charm=$(get_service_charm "$service") || return 1
  2205. cat <<EOF
  2206. <table border="0" cellborder="0" cellpadding="3" bgcolor="white">
  2207. <tr>
  2208. <td bgcolor="black" align="center" colspan="2">
  2209. <font color="white">$service</font>
  2210. </td>
  2211. </tr>
  2212. $(if [ "$charm" != "$service" ]; then
  2213. cat <<EOF2
  2214. <tr>
  2215. <td align="left" port="r0">charm: $charm</td>
  2216. </tr>
  2217. EOF2
  2218. fi)
  2219. </table>
  2220. EOF
  2221. }
  2222. cla_contains () {
  2223. local e
  2224. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  2225. return 1
  2226. }
  2227. filter_docker_compose_help_message() {
  2228. cat - |
  2229. sed -r "s/docker-compose run/${DARKWHITE}compose${NORMAL} ${DARKCYAN}$action${NORMAL}/g;
  2230. s/docker-compose.yml/compose.yml/g;
  2231. s/SERVICES?/${DARKYELLOW}\0${NORMAL}/g;
  2232. s/^(\s+)\\$/\1${WHITE}\$${NORMAL}/g;
  2233. s/^(\s+)run/\1${DARKCYAN}$action${NORMAL}/g;
  2234. s/docker-compose/${DARKWHITE}compose${NORMAL}/g"
  2235. }
  2236. graph() {
  2237. local services=("$@")
  2238. declare -A entries
  2239. cat <<EOF
  2240. digraph g {
  2241. graph [
  2242. fontsize=30
  2243. labelloc="t"
  2244. label=""
  2245. splines=true
  2246. overlap=false
  2247. #rankdir = "LR"
  2248. ];
  2249. ratio = auto;
  2250. EOF
  2251. for target_service in "$@"; do
  2252. services=$(get_ordered_service_dependencies "$target_service") || return 1
  2253. for service in $services; do
  2254. [ "${entries[$service]}" ] && continue || entries[$service]=1
  2255. if cla_contains "$service" "${services[@]}"; then
  2256. base=true
  2257. else
  2258. base=
  2259. fi
  2260. _graph_service "$service" "$base"
  2261. done
  2262. done
  2263. echo "}"
  2264. }
  2265. cached_wget() {
  2266. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2267. url="$1"
  2268. if [ -e "$cache_file" ]; then
  2269. cat "$cache_file"
  2270. touch "$cache_file"
  2271. return 0
  2272. fi
  2273. wget -O- "${url}" |
  2274. tee "$cache_file"
  2275. if [ "${PIPESTATUS[0]}" != 0 ]; then
  2276. rm "$cache_file"
  2277. die "Unable to fetch '$url'."
  2278. return 1
  2279. fi
  2280. }
  2281. export -f cached_wget
  2282. [ "$SOURCED" ] && return 0
  2283. trap_add "EXIT" clean_cache
  2284. if [ -z "$DISABLE_SYSTEM_CONFIG_FILE" ]; then
  2285. if [ -r /etc/default/charm ]; then
  2286. . /etc/default/charm
  2287. fi
  2288. if [ -r "/etc/default/$exname" ]; then
  2289. . "/etc/default/$exname"
  2290. fi
  2291. ## XXXvlab: should provide YML config opportunities in possible parent dirs ?
  2292. ## userdir ? and global /etc/compose.yml ?
  2293. for cfgfile in /etc/compose.conf /etc/compose.local.conf \
  2294. /etc/default/compose /etc/compose/local.conf; do
  2295. [ -e "$cfgfile" ] || continue
  2296. . "$cfgfile" || die "Loading config file '$cfgfile' failed."
  2297. done
  2298. fi
  2299. _setup_state_dir
  2300. mkdir -p "$CACHEDIR" || exit 1
  2301. ##
  2302. ## Argument parsing
  2303. ##
  2304. services=()
  2305. remainder_args=()
  2306. compose_opts=()
  2307. compose_contents=()
  2308. action_opts=()
  2309. services_args=()
  2310. pos_arg_ct=0
  2311. no_hooks=
  2312. no_init=
  2313. action=
  2314. stage="main" ## switches from 'main', to 'action', 'remainder'
  2315. is_docker_compose_action=
  2316. rebuild_relations_to_service=()
  2317. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list) &&
  2318. DC_MATCH_SINGLE=$(get_docker_compose_single_opts_list) || return 1
  2319. while read-0 arg; do
  2320. case "$stage" in
  2321. "main")
  2322. case "$arg" in
  2323. --help|-h)
  2324. no_init=true ; no_hooks=true ; no_relations=true
  2325. display_help
  2326. exit 0
  2327. ;;
  2328. --verbose|-v)
  2329. export VERBOSE=true
  2330. compose_opts+=("--verbose")
  2331. ;;
  2332. --version|-V)
  2333. print_version
  2334. docker-compose --version
  2335. docker --version
  2336. exit 0
  2337. ;;
  2338. -f|--file)
  2339. read-0 value
  2340. [ -e "$value" ] || die "File $value doesn't exists"
  2341. export DEFAULT_COMPOSE_FILE="$value"
  2342. compose_opts+=("--file $value")
  2343. shift
  2344. ;;
  2345. -p|--project-name)
  2346. read-0 value
  2347. export DEFAULT_PROJECT_NAME="$value"
  2348. compose_opts+=("--project-name $value")
  2349. shift
  2350. ;;
  2351. --no-relations)
  2352. export no_relations=true
  2353. ;;
  2354. --no-hooks)
  2355. export no_hooks=true
  2356. ;;
  2357. --no-init)
  2358. export no_init=true
  2359. ;;
  2360. --rebuild-relations-to-service|-R)
  2361. read-0 value
  2362. rebuild_relations_to_service+=("$value")
  2363. shift
  2364. ;;
  2365. --debug)
  2366. export DEBUG=true
  2367. export VERBOSE=true
  2368. #compose_opts+=("--verbose" "--log-level" "DEBUG")
  2369. ;;
  2370. --add-compose-content|-Y)
  2371. read-0 value
  2372. compose_contents+=("$value")
  2373. shift
  2374. ;;
  2375. --dirs)
  2376. echo "CACHEDIR: $CACHEDIR"
  2377. echo "VARDIR: $VARDIR"
  2378. exit 0
  2379. ;;
  2380. --dry-compose-run)
  2381. export DRY_COMPOSE_RUN=true
  2382. ;;
  2383. --*|-*)
  2384. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  2385. read-0 value
  2386. compose_opts+=("$arg" "$value")
  2387. shift;
  2388. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  2389. compose_opts+=("$arg")
  2390. else
  2391. err "Unknown option '$arg'. Please check help:"
  2392. display_help
  2393. exit 1
  2394. fi
  2395. ;;
  2396. *)
  2397. action="$arg"
  2398. stage="action"
  2399. if DC_USAGE=$(get_docker_compose_usage "$action"); then
  2400. is_docker_compose_action=true
  2401. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list "$action") &&
  2402. DC_MATCH_SINGLE="$(get_docker_compose_single_opts_list "$action")"
  2403. if [ "$DC_MATCH_MULTI" ]; then
  2404. DC_MATCH_SINGLE="$DC_MATCH_SINGLE $(echo "$DC_MATCH_MULTI" | sed -r 's/( |$)/=\* /g')"
  2405. fi
  2406. pos_args=($(echo "$DC_USAGE" | sed -r 's/\[-[^]]+\] ?//g;s/\[options\] ?//g'))
  2407. pos_args=("${pos_args[@]:1}")
  2408. # echo "USAGE: $DC_USAGE"
  2409. # echo "pos_args: ${pos_args[@]}"
  2410. # echo "MULTI: $DC_MATCH_MULTI"
  2411. # echo "SINGLE: $DC_MATCH_SINGLE"
  2412. # exit 1
  2413. else
  2414. stage="remainder"
  2415. fi
  2416. ;;
  2417. esac
  2418. ;;
  2419. "action") ## Only for docker-compose actions
  2420. case "$arg" in
  2421. --help|-h)
  2422. no_init=true ; no_hooks=true ; no_relations=true
  2423. action_opts+=("$arg")
  2424. ;;
  2425. --*|-*)
  2426. if [ "$is_docker_compose_action" ]; then
  2427. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  2428. read-0 value
  2429. action_opts+=("$arg" "$value")
  2430. shift
  2431. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  2432. action_opts+=("$arg")
  2433. else
  2434. err "Unknown option '$arg'. Please check '${DARKCYAN}$action${NORMAL}' help:"
  2435. docker-compose "$action" --help |
  2436. filter_docker_compose_help_message >&2
  2437. exit 1
  2438. fi
  2439. fi
  2440. ;;
  2441. *)
  2442. # echo "LOOP $1 : pos_arg: $pos_arg_ct // ${pos_args[$pos_arg_ct]}"
  2443. if [[ "${pos_args[$pos_arg_ct]}" == "[SERVICE...]" ]]; then
  2444. services_args+=("$arg")
  2445. elif [[ "${pos_args[$pos_arg_ct]}" == "SERVICE" ]]; then
  2446. services_args=("$arg") || exit 1
  2447. stage="remainder"
  2448. else
  2449. action_posargs+=("$arg")
  2450. ((pos_arg_ct++))
  2451. fi
  2452. ;;
  2453. esac
  2454. ;;
  2455. "remainder")
  2456. remainder_args+=("$arg")
  2457. while read-0 arg; do
  2458. remainder_args+=("$arg")
  2459. done
  2460. break 3
  2461. ;;
  2462. esac
  2463. shift
  2464. done < <(cla.normalize "$@")
  2465. export compose_contents
  2466. [ "${services_args[*]}" ] && debug " ${DARKWHITE}Services:$NORMAL ${DARKYELLOW}${services_args[*]}$NORMAL"
  2467. [ "${compose_opts[*]}" ] && debug " ${DARKWHITE}Main docker-compose opts:$NORMAL ${compose_opts[*]}"
  2468. [ "${action_posargs[*]}" ] && debug " ${DARKWHITE}Main docker-compose pos args:$NORMAL ${action_posargs[*]}"
  2469. [ "${action_opts[*]}" ] && debug " ${DARKWHITE}Action $DARKCYAN$action$NORMAL with opts:$NORMAL ${action_opts[*]}"
  2470. [ "${remainder_args[*]}" ] && debug " ${DARKWHITE}Remainder args:$NORMAL ${remainder_args[*]}"
  2471. aexport remainder_args
  2472. ##
  2473. ## Actual code
  2474. ##
  2475. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  2476. COMPOSE_YML_CONTENT=$(get_compose_yml_content) || exit 1
  2477. export COMPOSE_YML_FILE COMPOSE_YML_CONTENT
  2478. charm.sanity_checks || die "Sanity checks about charm-store failed. Please correct."
  2479. ##
  2480. ## Get services in command line.
  2481. ##
  2482. if [ -z "$is_docker_compose_action" -a "$action" ]; then
  2483. action_service=${remainder_args[0]}
  2484. remainder_args=("${remainder_args[@]:1}")
  2485. if is_service_action=$(has_service_action "$action_service" "$action"); then
  2486. {
  2487. read-0 action_type
  2488. case "$action_type" in
  2489. "relation")
  2490. read-0 _ target_service _target_charm relation_name
  2491. debug "Found action $DARKYELLOW${action_service}$NORMAL/$DARKBLUE$relation_name$NORMAL/$DARKCYAN$action$NORMAL (in $DARKYELLOW$target_service$NORMAL)"
  2492. ;;
  2493. "direct")
  2494. debug "Found action $DARKYELLOW${action_service}$NORMAL.$DARKCYAN$action$NORMAL"
  2495. ;;
  2496. esac
  2497. } < <(has_service_action "$action_service" "$action")
  2498. services_args=("$action_service")
  2499. else
  2500. die "Unknown action '${DARKCYAN}$action$NORMAL': It doesn't match any docker-compose commands nor inner charm actions."
  2501. fi
  2502. else
  2503. case "$action" in
  2504. ps)
  2505. if [ "${#services_args[@]}" == 0 ]; then
  2506. services_args=($(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys 2>/dev/null)) || true
  2507. fi
  2508. ;;
  2509. up)
  2510. if [ "${#services_args[@]}" == 0 ]; then
  2511. while read-0 service; do
  2512. type="$(get_service_type "$service")" || exit 1
  2513. if [ "$type" != "run-once" ]; then
  2514. services_args+=("$service")
  2515. fi
  2516. done < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  2517. fi
  2518. ;;
  2519. config)
  2520. services_args=("${action_posargs[@]}")
  2521. ;;
  2522. esac
  2523. if [ "$is_docker_compose_action" -a "${#services_args[@]}" -gt 0 ]; then
  2524. services=($(get_master_services "${services_args[@]}")) || exit 1
  2525. action_posargs+=("${services[@]}")
  2526. fi
  2527. fi
  2528. get_docker_compose "${services_args[@]}" >/dev/null || { ## precalculate variable \$_current_docker_compose
  2529. err "Fails to compile base 'docker-compose.yml'"
  2530. exit 1
  2531. }
  2532. ##
  2533. ## Pre-action
  2534. ##
  2535. full_init=
  2536. case "$action" in
  2537. up|run)
  2538. full_init=true
  2539. post_hook=true
  2540. ;;
  2541. ""|down|restart|logs|config|ps)
  2542. full_init=
  2543. ;;
  2544. *)
  2545. if [ "$is_service_action" ]; then
  2546. full_init=true
  2547. fi
  2548. ;;
  2549. esac
  2550. if [ "$full_init" ]; then
  2551. ## init in order
  2552. if [ -z "$no_init" ]; then
  2553. Section setup host resources
  2554. setup_host_resources "${services_args[@]}" || exit 1
  2555. Section initialisation
  2556. run_service_hook init "${services_args[@]}" || exit 1
  2557. fi
  2558. ## Get relations
  2559. if [ -z "$no_relations" ]; then
  2560. if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then
  2561. rebuild_relations_to_service=(
  2562. $(get_master_services "${rebuild_relations_to_service[@]}"))
  2563. project=$(get_default_project_name) || return 1
  2564. for service in "${rebuild_relations_to_service[@]}"; do
  2565. for dir in "$VARDIR/relations/$project/"*"-${service}/"*; do
  2566. [ -d "$dir" ] && {
  2567. debug rm -rf "$dir"
  2568. rm -rf "$dir"
  2569. }
  2570. done
  2571. done
  2572. fi
  2573. run_service_relations "${services_args[@]}" || exit 1
  2574. fi
  2575. run_service_hook pre_deploy "${services_args[@]}" || exit 1
  2576. fi
  2577. if [ "$action" == "run" ]; then
  2578. charm=$(get_service_charm "${services_args[0]}") || exit 1
  2579. metadata=$(charm.metadata "$charm") || exit 1
  2580. type="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  2581. if [ "$type" == "run-once" ]; then
  2582. run_service_hook dc-pre-run "${services_args[@]}" || exit 1
  2583. fi
  2584. fi
  2585. export SERVICE_PACK="${services_args[*]}"
  2586. ##
  2587. ## Docker-compose
  2588. ##
  2589. case "$action" in
  2590. up|start|stop|build|run)
  2591. ## force daemon mode for up
  2592. if [[ "$action" == "up" ]] && ! array_member action_opts -d; then
  2593. action_opts+=("-d")
  2594. fi
  2595. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  2596. ;;
  2597. logs)
  2598. if ! array_member action_opts --tail; then ## force daemon mode for up
  2599. action_opts+=("--tail" "10")
  2600. fi
  2601. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  2602. ;;
  2603. "")
  2604. launch_docker_compose "${compose_opts[@]}"
  2605. ;;
  2606. graph)
  2607. graph $SERVICE_PACK
  2608. ;;
  2609. config)
  2610. ## removing the services
  2611. services=($(get_master_services "${action_posargs[@]}")) || exit 1
  2612. ## forcing docker-compose config to output the config file to stdout and not stderr
  2613. out=$(launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" 2>&1) || {
  2614. echo "$out"
  2615. exit 1
  2616. }
  2617. echo "$out"
  2618. warn "Runtime configuration modification (from relations) are not included here."
  2619. ;;
  2620. down)
  2621. if ! array_member action_opts --remove-orphans; then ## force daemon mode for up
  2622. debug "Adding a default argument of '--remove-orphans'"
  2623. action_opts+=("--remove-orphans")
  2624. fi
  2625. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}"
  2626. ;;
  2627. *)
  2628. if [ "$is_service_action" ]; then
  2629. run_service_action "$SERVICE_PACK" "$action" "${remainder_args[@]}"
  2630. else
  2631. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  2632. fi
  2633. ;;
  2634. esac || exit 1
  2635. if [ "$post_hook" -a "${#services_args[@]}" != 0 ]; then
  2636. run_service_hook post_deploy "${services_args[@]}" || exit 1
  2637. fi