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.

4365 lines
143 KiB

  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. include docker
  48. depends shyaml docker
  49. exname="compose"
  50. version=0.1
  51. usage="$exname [COMPOSE_OPTS] [ACTION [ACTION_OPTS]]"
  52. help="\
  53. $WHITE$exname$NORMAL jobs is to run various shell scripts to build
  54. a running orchestrated and configured docker containers. These shell
  55. scripts will have the opportunity to build a 'docker-compose.yml'.
  56. Once init script and relations scripts are executed, $WHITE$exname$NORMAL
  57. delegate the launching to ${WHITE}docker-compose${NORMAL} by providing it
  58. the final 'docker-compose.yml'.
  59. $WHITE$exname$NORMAL also leverage charms to offer some additional custom
  60. actions per charm, which are simply other scripts that can be
  61. run without launching ${WHITE}docker-compose${NORMAL}.
  62. In compose message, color coding is enforced as such:
  63. - ${DARKCYAN}action$NORMAL,
  64. - ${DARKBLUE}relation$NORMAL,
  65. - ${DARKPINK}charm${NORMAL},
  66. - ${DARKYELLOW}service${NORMAL},
  67. - ${WHITE}option-name${NORMAL}/${WHITE}command-name${NORMAL}/${WHITE}Section-Title${NORMAL}
  68. $WHITE$exname$NORMAL reads '/etc/compose.conf' for global variables, and
  69. '/etc/compose.local.conf' for local host adjustements.
  70. "
  71. ## XXXvlab: this doesn't seem to work when 'compose' is called in
  72. ## a hook of a charm.
  73. #[[ "${BASH_SOURCE[0]}" == "" ]] && SOURCED=true
  74. $(return >/dev/null 2>&1) && SOURCED=true
  75. errlvl() { return "${1:-1}"; }
  76. export -f errlvl
  77. if [ "$UID" == 0 ]; then
  78. CACHEDIR=${CACHEDIR:-/var/cache/compose}
  79. VARDIR=${VARDIR:-/var/lib/compose}
  80. else
  81. [ "$XDG_CONFIG_HOME" ] && CACHEDIR=${CACHEDIR:-$XDG_CONFIG_HOME/compose}
  82. [ "$XDG_DATA_HOME" ] && VARDIR=${VARDIR:-$XDG_DATA_HOME/compose}
  83. CACHEDIR=${CACHEDIR:-$HOME/.cache/compose}
  84. VARDIR=${VARDIR:-$HOME/.local/share/compose}
  85. fi
  86. export VARDIR CACHEDIR
  87. md5_compat() { md5sum | cut -c -32; }
  88. quick_cat_file() { quick_cat_stdin < "$1"; }
  89. quick_cat_stdin() { local IFS=''; while read -r line; do echo "$line"; done ; }
  90. export -f quick_cat_file quick_cat_stdin md5_compat
  91. clean_cache() {
  92. local i=0
  93. for f in $(ls -t "$CACHEDIR/"*.cache.* 2>/dev/null | tail -n +500); do
  94. ((i++))
  95. rm -f "$f"
  96. done
  97. if (( i > 0 )); then
  98. debug "${WHITE}Cleaned cache:${NORMAL} Removed $((i)) elements (current cache size is $(du -sh "$CACHEDIR" | cut -f 1))"
  99. fi
  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. from yaml import CSafeLoader as SafeLoader, CSafeDumper as SafeDumper
  110. except ImportError: ## pragma: no cover
  111. sys.stderr.write('YAML code in pure python\n')
  112. exit(1)
  113. from yaml import SafeLoader, SafeDumper
  114. class MySafeLoader(SafeLoader): pass
  115. class MySafeDumper(SafeDumper): pass
  116. try:
  117. # included in standard lib from Python 2.7
  118. from collections import OrderedDict
  119. except ImportError:
  120. # try importing the backported drop-in replacement
  121. # it's available on PyPI
  122. from ordereddict import OrderedDict
  123. ## Ensure that there are no collision with legacy OrderedDict
  124. ## that could be used for omap for instance.
  125. class MyOrderedDict(OrderedDict):
  126. pass
  127. MySafeDumper.add_representer(
  128. MyOrderedDict,
  129. lambda cls, data: cls.represent_dict(data.items()))
  130. def construct_omap(cls, node):
  131. cls.flatten_mapping(node)
  132. return MyOrderedDict(cls.construct_pairs(node))
  133. MySafeLoader.add_constructor(
  134. yaml.resolver.BaseResolver.DEFAULT_MAPPING_TAG,
  135. construct_omap)
  136. ##
  137. ## Support local and global objects
  138. ##
  139. class EncapsulatedNode(object): pass
  140. def mk_encapsulated_node(s, node):
  141. method = 'construct_%s' % (node.id, )
  142. data = getattr(s, method)(node)
  143. class _E(data.__class__, EncapsulatedNode):
  144. pass
  145. _E.__name__ = str(node.tag)
  146. _E._node = node
  147. return _E(data)
  148. def represent_encapsulated_node(s, o):
  149. value = s.represent_data(o.__class__.__bases__[0](o))
  150. value.tag = o.__class__.__name__
  151. return value
  152. MySafeDumper.add_multi_representer(EncapsulatedNode,
  153. represent_encapsulated_node)
  154. MySafeLoader.add_constructor(None, mk_encapsulated_node)
  155. def fc(filename):
  156. with open(filename) as f:
  157. return f.read()
  158. def merge(*args):
  159. # sys.stderr.write('%r\n' % (args, ))
  160. args = [arg for arg in args if arg is not None]
  161. if len(args) == 0:
  162. return None
  163. if len(args) == 1:
  164. return args[0]
  165. if all(isinstance(arg, (int, basestring, bool, float)) for arg in args):
  166. return args[-1]
  167. elif all(isinstance(arg, list) for arg in args):
  168. res = []
  169. for arg in args:
  170. for elt in arg:
  171. if elt in res:
  172. res.remove(elt)
  173. res.append(elt)
  174. return res
  175. elif all(isinstance(arg, dict) for arg in args):
  176. keys = set()
  177. for arg in args:
  178. keys |= set(arg.keys())
  179. dct = {}
  180. for key in keys:
  181. sub_args = []
  182. for arg in args:
  183. if key in arg:
  184. sub_args.append(arg)
  185. try:
  186. dct[key] = merge(*(a[key] for a in sub_args))
  187. except NotImplementedError as e:
  188. raise NotImplementedError(
  189. e.args[0],
  190. '%s.%s' % (key, e.args[1]) if e.args[1] else key,
  191. e.args[2])
  192. if dct[key] is None:
  193. del dct[key]
  194. return dct
  195. else:
  196. raise NotImplementedError(
  197. 'Unsupported types: %s'
  198. % (', '.join(list(set(arg.__class__.__name__ for arg in args)))), '', args)
  199. return None
  200. def merge_cli(*args):
  201. try:
  202. c = merge(*args)
  203. except NotImplementedError as e:
  204. sys.stderr.write('Merging Failed: %s.\n%s\n'
  205. ' Values are:\n %s\n'
  206. % (e.args[0],
  207. ' Conflicting key is %r.' % e.args[1] if e.args[1] else
  208. ' Conflict at base of structure.',
  209. '\\n '.join('v%d: %r' % (i, a)
  210. for i, a in enumerate(e.args[2]))))
  211. exit(1)
  212. if c is not None:
  213. print '%s' % yaml.dump(c, default_flow_style=False, Dumper=MySafeDumper)
  214. "
  215. merge_yaml() {
  216. if ! [ -r "$state_tmpdir/merge_yaml.py" ]; then
  217. cat <<EOF > "$state_tmpdir/merge_yaml.py"
  218. $_merge_yaml_common_code
  219. merge_cli(*(yaml.load(fc(f), Loader=MySafeLoader) for f in sys.argv[1:]))
  220. EOF
  221. fi
  222. python "$state_tmpdir/merge_yaml.py" "$@"
  223. }
  224. export -f merge_yaml
  225. merge_yaml_str() {
  226. local entries="$@"
  227. if ! [ -r "$state_tmpdir/merge_yaml_str.py" ]; then
  228. cat <<EOF > "$state_tmpdir/merge_yaml_str.py" || return 1
  229. $_merge_yaml_common_code
  230. merge_cli(*(yaml.load(f, Loader=MySafeLoader) for f in sys.argv[1:]))
  231. EOF
  232. fi
  233. if ! python "$state_tmpdir/merge_yaml_str.py" "$@"; then
  234. err "Failed to merge yaml strings:"
  235. local s
  236. for s in "$@"; do
  237. printf " - \n"
  238. printf "%s\n" "$s" | prefix " ${GRAY}|$NORMAL "
  239. done >&2
  240. return 1
  241. fi
  242. }
  243. export -f merge_yaml_str
  244. yaml_get_values() {
  245. local sep=${1:-$'\n'} value input type first elt
  246. input=$(cat -)
  247. if [ -z "$input" ] || [ "$input" == "None" ]; then
  248. return 0
  249. fi
  250. type=$(e "$input" | shyaml get-type)
  251. value=
  252. case "$type" in
  253. "sequence")
  254. first=1
  255. while read-0 elt; do
  256. elt="$(e "$elt" | yaml_get_interpret)" || return 1
  257. [ "$elt" ] || continue
  258. if [ "$first" ]; then
  259. first=
  260. else
  261. value+="$sep"
  262. fi
  263. first=
  264. value+="$elt"
  265. done < <(e "$input" | shyaml -y get-values-0)
  266. ;;
  267. "struct")
  268. while read-0 val; do
  269. value+=$'\n'"$(e "$val" | yaml_get_interpret)" || return 1
  270. done < <(e "$input" | shyaml -y values-0)
  271. ;;
  272. "NoneType")
  273. value=""
  274. ;;
  275. "str"|*)
  276. value+="$(e "$input" | yaml_get_interpret)"
  277. ;;
  278. esac
  279. e "$value"
  280. }
  281. export -f yaml_get_values
  282. yaml_key_val_str() {
  283. local entries="$@"
  284. if ! [ -r "$state_tmpdir/yaml_key_val_str.py" ]; then
  285. cat <<EOF > "$state_tmpdir/yaml_key_val_str.py"
  286. $_merge_yaml_common_code
  287. print '%s' % yaml.dump(
  288. {
  289. yaml.load(sys.argv[1], Loader=MySafeLoader):
  290. yaml.load(sys.argv[2], Loader=MySafeLoader)
  291. },
  292. default_flow_style=False,
  293. Dumper=MySafeDumper,
  294. )
  295. EOF
  296. fi
  297. python "$state_tmpdir/yaml_key_val_str.py" "$@"
  298. }
  299. export -f yaml_key_val_str
  300. ##
  301. ## Docker
  302. ##
  303. docker_has_image() {
  304. local image="$1"
  305. images=$(docker images -q "$image" 2>/dev/null) || {
  306. err "docker images call has failed unexpectedly."
  307. return 1
  308. }
  309. [ "$images" ]
  310. }
  311. export -f docker_has_image
  312. docker_image_id() {
  313. local image="$1"
  314. image_id=$(docker inspect "$image" --format='{{.Id}}') || return 1
  315. echo "$image_id" # | tee "$cache_file"
  316. }
  317. export -f docker_image_id
  318. cached_cmd_on_image() {
  319. local image="$1" cache_file
  320. image_id=$(docker_image_id "$image") || return 1
  321. cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  322. if [ -e "$cache_file" ]; then
  323. # debug "$FUNCNAME: cache hit ($*)"
  324. quick_cat_stdin < "$cache_file"
  325. return 0
  326. fi
  327. shift
  328. out=$(docker run -i --rm --entrypoint /bin/sh "$image_id" -c "$*") || return 1
  329. echo "$out" | tee "$cache_file"
  330. }
  331. export -f cached_cmd_on_image
  332. cmd_on_base_image() {
  333. local service="$1" base_image
  334. shift
  335. base_image=$(service_base_docker_image "$service") || return 1
  336. docker run -i --rm --entrypoint /bin/bash "$base_image" -c "$*"
  337. }
  338. export -f cmd_on_base_image
  339. cached_cmd_on_base_image() {
  340. local service="$1" base_image cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  341. shift
  342. if [ -e "$cache_file" ]; then
  343. # debug "$FUNCNAME: cache hit ($*)"
  344. quick_cat_stdin < "$cache_file"
  345. return 0
  346. fi
  347. base_image=$(service_base_docker_image "$service") || return 1
  348. if ! docker_has_image "$base_image"; then
  349. docker pull "$base_image" 1>&2
  350. fi
  351. result=$(cached_cmd_on_image "$base_image" "$@") || return 1
  352. echo "$result" | tee "$cache_file"
  353. }
  354. export -f cached_cmd_on_base_image
  355. docker_update() {
  356. ## YYY: warning, we a storing important information in cache, cache can
  357. ## be removed.
  358. ## We want here to cache the last script on given service whatever that script was
  359. local service="$1" script="$2" cache_file="$CACHEDIR/$FUNCNAME.cache.$1" \
  360. previous_base_image stored_image_id
  361. shift
  362. shift
  363. ## this will build it if necessary
  364. base_image=$(service_base_docker_image "$service") || return 1
  365. ## XXXvlab: there are probably ways to avoid rebuilding that each time
  366. image_id="$(docker_image_id "$base_image")" || return 1
  367. if [ -e "$cache_file" ]; then
  368. info "Cache file exists"
  369. read-0 previous_base_image stored_image_id < <(cat "$cache_file")
  370. info "previous: $previous_base_image"
  371. info "stored: $stored_image_id"
  372. else
  373. info "No cache file $cache_file"
  374. previous_base_image=""
  375. fi
  376. if [ "$previous_base_image" -a "$stored_image_id" == "$image_id" ]; then
  377. info "Resetting $base_image to $previous_base_image"
  378. docker tag "$previous_base_image" "$base_image" || return 1
  379. image_id="$(docker_image_id "$base_image")" || return 1
  380. else
  381. previous_base_image="$image_id"
  382. fi
  383. info "Updating base image: $base_image (hash: $image_id)"
  384. echo "$script" | dupd --debug -u "$base_image" -- "$@" || {
  385. err "Failed updating base image"
  386. return 1
  387. }
  388. new_image_id="$(docker_image_id "$base_image")"
  389. [ "$new_image_id" == "$previous_base_image" ] && {
  390. err "Image was not updated correctly (same id)."
  391. return 1
  392. }
  393. printf "%s\0" "$previous_base_image" "$new_image_id" > "$cache_file"
  394. info "Wrote cache file $cache_file"
  395. }
  396. export -f docker_update
  397. image_exposed_ports_0() {
  398. local image="$1"
  399. docker inspect --format='{{range $p, $conf := .Config.ExposedPorts}}{{$p}}{{"\x00"}}{{end}}' "$image"
  400. }
  401. export -f image_exposed_ports_0
  402. ## feature not yet included in docker: https://github.com/moby/moby/issues/16079
  403. docker_image_export_dir() {
  404. local image="$1" src="$2" dst="$3" container_id
  405. (
  406. container_id=$(docker create "$image") || exit 1
  407. trap_add EXIT,ERR "docker rm \"$container_id\" >/dev/null"
  408. docker cp "$container_id":"$src" "$dst"
  409. )
  410. }
  411. export -f docker_image_export_dir
  412. service_base_image_export_dir() {
  413. local service="$1" src="$2" dst="$3" base_image
  414. shift
  415. base_image=$(service_base_docker_image "$service") || return 1
  416. if ! docker_has_image "$base_image"; then
  417. docker pull "$base_image"
  418. fi
  419. docker_image_export_dir "$base_image" "$src" "$dst"
  420. }
  421. export -f service_base_image_export_dir
  422. service_base_image_id() {
  423. local service="$1" src="$2" dst="$3" base_image
  424. shift
  425. base_image=$(service_base_docker_image "$service") || return 1
  426. if ! docker_has_image "$base_image"; then
  427. docker pull "$base_image"
  428. fi
  429. docker inspect "$base_image" --format="{{ .Id }}"
  430. }
  431. export -f service_base_image_id
  432. ##
  433. ## Generic
  434. ##
  435. fn.exists() {
  436. declare -F "$1" >/dev/null
  437. }
  438. str_pattern_matches() {
  439. local str="$1"
  440. shift
  441. for pattern in "$@"; do
  442. eval "[[ \"$str\" == $pattern ]]" && return 0
  443. done
  444. return 1
  445. }
  446. str_matches() {
  447. local str="$1"
  448. shift
  449. for pattern in "$@"; do
  450. [[ "$str" == "$pattern" ]] && return 0
  451. done
  452. return 1
  453. }
  454. gen_password() {
  455. local l=( {a..z} {A..Z} {0..9} ) nl="${#l[@]}" size=${1:-16}
  456. while ((size--)); do
  457. echo -n "${l[$((RANDOM * nl / 32768))]}"
  458. done
  459. echo
  460. }
  461. export -f gen_password
  462. file_put() {
  463. local TARGET="$1"
  464. mkdir -p "$(dirname "$TARGET")" &&
  465. cat - > "$TARGET"
  466. }
  467. export -f file_put
  468. file_put_0() {
  469. local TARGET="$1"
  470. mkdir -p "$(dirname "$TARGET")" &&
  471. cat > "$TARGET"
  472. }
  473. export -f file_put_0
  474. fetch_file() {
  475. local src="$1"
  476. case "$src" in
  477. *"://"*)
  478. err "Unsupported target scheme."
  479. return 1
  480. ;;
  481. *)
  482. ## Try direct
  483. if ! [ -r "$src" ]; then
  484. err "File '$src' not found/readable."
  485. return 1
  486. fi
  487. cat "$src" || return 1
  488. ;;
  489. esac
  490. }
  491. export -f fetch_file
  492. ## receives stdin content to decompress on stdout
  493. ## stdout content should be tar format.
  494. uncompress_file() {
  495. local filename="$1"
  496. ## Warning, the content of the file is already as stdin, the filename
  497. ## is there to hint for correct decompression.
  498. case "$filename" in
  499. *".gz")
  500. gunzip
  501. ;;
  502. *".bz2")
  503. bunzip2
  504. ;;
  505. *)
  506. cat
  507. ;;
  508. esac
  509. }
  510. export -f uncompress_file
  511. get_file() {
  512. local src="$1"
  513. fetch_file "$src" | uncompress_file "$src"
  514. }
  515. export -f get_file
  516. ##
  517. ## Common database lib
  518. ##
  519. _clean_docker() {
  520. local _DB_NAME="$1" container_id="$2"
  521. (
  522. set +e
  523. debug "Removing container $_DB_NAME"
  524. docker stop "$container_id"
  525. docker rm "$_DB_NAME"
  526. docker network rm "${_DB_NAME}"
  527. rm -vf "$state_tmpdir/${_DB_NAME}.state"
  528. )
  529. }
  530. export -f _clean_docker
  531. get_service_base_image_dir_uid_gid() {
  532. local service="$1" dir="$2" uid_gid
  533. uid_gid=$(cached_cmd_on_base_image "$service" "stat -c '%u %g' '$dir'") || {
  534. debug "Failed to query '$dir' uid in ${DARKYELLOW}$service${NORMAL} base image."
  535. return 1
  536. }
  537. info "uid and gid from ${DARKYELLOW}$service${NORMAL}:$dir is '$uid_gid'"
  538. echo "$uid_gid"
  539. }
  540. export -f get_service_base_image_dir_uid_gid
  541. get_service_type() {
  542. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  543. if [ -z "$service" ]; then
  544. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  545. return 1
  546. fi
  547. if [ -e "$cache_file" ]; then
  548. # debug "$FUNCNAME: cache hit ($*)"
  549. cat "$cache_file"
  550. return 0
  551. fi
  552. charm=$(get_service_charm "$service") || return 1
  553. metadata=$(charm.metadata "$charm") || return 1
  554. printf "%s" "$metadata" | shyaml get-value type service 2>/dev/null |
  555. tee "$cache_file"
  556. }
  557. are_files_locked_in_dir() {
  558. local dir="$1" device hdev ldev
  559. device=$(stat -c %d "$dir") || {
  560. err "Can't stat '$dir'."
  561. return 1
  562. }
  563. device=$(printf "%04x" $device)
  564. hdev=${device:0:2}
  565. ldev=${device:2:2}
  566. inodes=$(find "$dir" -printf ':%i:\n')
  567. found=
  568. while read -r inode; do
  569. debug "try inode:$inode"
  570. if [[ "$inodes" == *":$inode:"* ]]; then
  571. found=1
  572. break
  573. fi
  574. done < <(cat /proc/locks | grep " $hdev:$ldev:" | sed -r "s/^.*$hdev:$ldev:([0-9]+).*$/\1/g")
  575. [ "$found" ]
  576. }
  577. export -f are_files_locked_in_dir
  578. set_db_params() {
  579. local docker_ip="$1" docker_network="$2"
  580. if [ -z "$DB_PARAMS_LOADED" ]; then
  581. DB_PARAMS_LOADED=1
  582. _set_db_params "$docker_ip" "$docker_network"
  583. fi
  584. }
  585. export -f set_db_params
  586. export _PID="$$"
  587. ensure_db_docker_running () {
  588. local _STATE_FILE errlvl
  589. _DB_NAME="db_${DB_NAME}_${_PID}"
  590. _STATE_FILE="$state_tmpdir/${_DB_NAME}.state"
  591. if [ -e "$_STATE_FILE" ]; then
  592. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$(cat "$_STATE_FILE")"
  593. debug "Re-using previous docker/connection '$DOCKER_IP'."
  594. set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  595. return 0
  596. fi
  597. if [ -e "$state_tmpdir/${_DB_NAME}.working" ]; then
  598. ## avoid recursive calls.
  599. if [ -z "$DOCKER_IP" ]; then
  600. err "Currently figuring up DOCKER_IP, please set it yourself before this call if needed."
  601. return 1
  602. else
  603. debug "ignoring recursive call of 'ensure_db_docker_running'."
  604. fi
  605. return 0
  606. fi
  607. touch "$state_tmpdir/${_DB_NAME}.working"
  608. docker rm "$_DB_NAME" 2>/dev/null || true
  609. host_db_working_dir="$HOST_DATASTORE/${SERVICE_NAME}$DB_DATADIR"
  610. if is_db_locked; then
  611. info "Some process is using '$host_db_working_dir'. Trying to find a docker that would do this..."
  612. found=
  613. for docker_id in $(docker ps -q); do
  614. has_volume_mounted=$(
  615. docker inspect \
  616. --format "{{range .Mounts}}{{if eq .Destination \"$DB_DATADIR\"}}{{.Source}}{{end}}{{end}}" \
  617. "$docker_id")
  618. if [ "$has_volume_mounted" == "$host_db_working_dir" ]; then
  619. found="$docker_id"
  620. break
  621. fi
  622. done
  623. if [ -z "$found" ]; then
  624. err "Please shutdown any other docker using this directory."
  625. return 1
  626. fi
  627. export container_id="$found"
  628. info "Found docker $docker_id is already running."
  629. else
  630. verb "Database is not locked."
  631. if ! docker_has_image "$DOCKER_BASE_IMAGE"; then
  632. docker pull "$DOCKER_BASE_IMAGE"
  633. fi
  634. _set_server_db_params || return 1
  635. debug docker network create "$_DB_NAME"
  636. if ! network_id=$(docker network create "$_DB_NAME"); then
  637. err "'docker network create $_DB_NAME' failed !"
  638. _clean_docker "$_DB_NAME" "$container_id"
  639. rm "$state_tmpdir/${_DB_NAME}.working"
  640. return 1
  641. fi
  642. debug docker run -d \
  643. --name "$_DB_NAME" \
  644. "${server_docker_opts[@]}" \
  645. --network "$_DB_NAME" \
  646. -v "$host_db_working_dir:$DB_DATADIR" \
  647. "$DOCKER_BASE_IMAGE"
  648. if ! container_id=$(
  649. docker run -d \
  650. --name "$_DB_NAME" \
  651. "${server_docker_opts[@]}" \
  652. --network "$_DB_NAME" \
  653. -v "$host_db_working_dir:$DB_DATADIR" \
  654. "$DOCKER_BASE_IMAGE"
  655. ); then
  656. err "'docker run' failed !"
  657. _clean_docker "$_DB_NAME" "$container_id"
  658. rm "$state_tmpdir/${_DB_NAME}.working"
  659. return 1
  660. fi
  661. trap_add EXIT,ERR "_clean_docker \"$_DB_NAME\" \"$container_id\""
  662. fi
  663. if docker_ip=$(wait_for_docker_ip "$container_id"); then
  664. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$docker_ip"
  665. echo "$docker_ip" > "$_STATE_FILE"
  666. debug "written '$_STATE_FILE'"
  667. rm "$state_tmpdir/${_DB_NAME}.working"
  668. set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  669. return 0
  670. else
  671. errlvl="$?"
  672. err "Db not found (errlvl: $errlvl). Tail of docker logs follows:"
  673. docker logs --tail=5 "$container_id" 2>&1 | prefix " | " >&2
  674. rm "$state_tmpdir/${_DB_NAME}.working"
  675. return "$errlvl"
  676. fi
  677. }
  678. export -f ensure_db_docker_running
  679. ## Require to set $db_docker_opts if needed, and $DB_PASSFILE
  680. ##
  681. _dcmd() {
  682. local docker_opts command="$1"
  683. shift
  684. debug "Db> $command $@"
  685. if [ "$HOST_DB_PASSFILE" -a -f "$LOCAL_DB_PASSFILE" -a "$CLIENT_DB_PASSFILE" ]; then
  686. verb "Found and using '$HOST_DB_PASSFILE' as '$CLIENT_DB_PASSFILE'."
  687. docker_opts=("${db_docker_opts[@]}" "-v" "$HOST_DB_PASSFILE:$CLIENT_DB_PASSFILE")
  688. else
  689. docker_opts=("${db_docker_opts[@]}")
  690. fi
  691. ## XXXX was here: actualy, we need only connection between this version and the client version
  692. debug docker run -i --rm \
  693. "${docker_opts[@]}" \
  694. --entrypoint "$command" "$DOCKER_BASE_IMAGE" "${db_cmd_opts[@]}" "$@"
  695. docker run -i --rm \
  696. "${docker_opts[@]}" \
  697. --entrypoint "$command" "$DOCKER_BASE_IMAGE" "${db_cmd_opts[@]}" "$@"
  698. }
  699. export -f _dcmd
  700. ## Executes code through db
  701. dcmd() {
  702. local fun
  703. [ "$DB_NAME" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_NAME."
  704. [ "$DB_DATADIR" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_DATADIR."
  705. # [ "$DB_PASSFILE" ] || print_syntax_error "$FUNCNAME: You must provide \$DB_PASSFILE."
  706. [ "$_PID" ] || print_syntax_error "$FUNCNAME: You must provide \$_PID."
  707. for fun in is_db_locked _set_db_params ddb; do
  708. [ "$(type -t "$fun")" == "function" ] ||
  709. print_syntax_error "$FUNCNAME: You must provide function '$fun'."
  710. done
  711. ensure_db_docker_running </dev/null || return 1
  712. _dcmd "$@"
  713. }
  714. export -f dcmd
  715. get_docker_ips() {
  716. local name="$1" ip format network_id
  717. if ! docker inspect --format='{{ .NetworkSettings.Networks }}' "$name" >/dev/null 2>&1; then
  718. echo "default:$(docker inspect --format='{{ .NetworkSettings.IPAddress }}' "$name" 2>/dev/null)"
  719. else
  720. format='{{range $name, $conf := .NetworkSettings.Networks}}{{$name}}{{"\x00"}}{{$conf.IPAddress}}{{"\x00"}}{{end}}'
  721. while read-0 network_id ip; do
  722. printf "%s:%s\n" "$network_id" "$ip"
  723. done < <(docker inspect --format="$format" "$name")
  724. fi
  725. }
  726. export -f get_docker_ips
  727. get_docker_ip() {
  728. local name="$1"
  729. get_docker_ips "$name"
  730. }
  731. export -f get_docker_ip
  732. wait_docker_ip() {
  733. local name="$1" timeout="${2:-15}" timeout_count=0 docker_ip=
  734. start=$SECONDS
  735. while [ -z "$docker_ip" ]; do
  736. sleep 0.5
  737. docker_ip=$(get_docker_ip "$name") && break
  738. elapsed=$((SECONDS - start))
  739. if ((elapsed > timeout)); then
  740. err "${RED}timeout error${NORMAL}(${timeout}s):" \
  741. "Could not find '$name' docker container's IP."
  742. return 1
  743. fi
  744. [ "$elapsed" == "$old_elapsed" ] ||
  745. verb "Waiting for docker $name... ($elapsed/$timeout)"
  746. old_elapsed="$elapsed"
  747. done
  748. verb "Found docker $name network and IP: $docker_ip"
  749. echo "$docker_ip"
  750. }
  751. export -f wait_docker_ip
  752. wait_for_tcp_port() {
  753. local network=$1 host_port=$2 timeout=${3:-60}
  754. verb "Trying to connect to $host_port"
  755. bash_image=${DEFAULT_BASH_IMAGE:-docker.0k.io/bash}
  756. #echo docker run --rm -i --network "$network" "$bash_image" >&2
  757. docker run --rm -i --network "$network" "$bash_image" <<EOF
  758. start=\$SECONDS
  759. while true; do
  760. timeout 1 bash -c "</dev/tcp/${host_port/://}" >/dev/null 2>&1 && break
  761. sleep 0.2
  762. if [ "\$((SECONDS - start))" -gt "$timeout" ]; then
  763. exit 1
  764. fi
  765. done
  766. exit 0
  767. EOF
  768. if [ "$?" != 0 ]; then
  769. err "${RED}timeout error${NORMAL}(${timeout}s):"\
  770. "Could not connect to $host_port."
  771. return 1
  772. fi
  773. return 0
  774. }
  775. export -f wait_for_tcp_port
  776. ## Warning: requires a ``ddb`` matching current database to be checked
  777. wait_for_docker_ip() {
  778. local name=$1 DOCKER_IP= DOCKER_NETWORK= docker_ips= docker_ip= elapsed timeout=10
  779. docker_ip=$(wait_docker_ip "$name" 5) || return 1
  780. IFS=: read DOCKER_NETWORK DOCKER_IP <<<"$docker_ip"
  781. if ! str_is_ipv4 "$DOCKER_IP"; then
  782. err "internal 'wait_docker_ip' did not return a valid IP. Returned IP is '$DOCKER_IP'."
  783. return 1
  784. fi
  785. set_db_params "$DOCKER_IP" "$DOCKER_NETWORK"
  786. while read-0 port; do
  787. IFS="/" read port type <<<"$port"
  788. [ "$type" == "tcp" ] || continue
  789. wait_for_tcp_port "$DOCKER_NETWORK" "$DOCKER_IP:${port}" || return 17
  790. info "Host/Port $DOCKER_IP:${port} checked ${GREEN}open${NORMAL}."
  791. ## XXXvlab: what to do with more than one port ?
  792. break
  793. done < <(image_exposed_ports_0 "$container_id")
  794. ## Checking direct connection
  795. timeout=120
  796. start=$SECONDS
  797. while true; do
  798. if err=$(echo "$check_command" | ddb 2>&1 >/dev/null); then
  799. break
  800. fi
  801. if ! [[ "$err" == *"the database system is starting up" ]]; then
  802. err "${RED}db connection error${NORMAL}:" \
  803. "Could not connect to db on $DOCKER_IP container's IP."
  804. echo " Note: IP up, TCP ports is(are) open" >&2
  805. if [ "$err" ]; then
  806. echo " Error:" >&2
  807. printf "%s\n" "$err" | prefix " ${RED}!${NORMAL} " >&2
  808. fi
  809. return 18
  810. fi
  811. debug "Got 'database system is starting up' error."
  812. elapsed=$((SECONDS - start))
  813. if ((elapsed > timeout)); then
  814. err "${RED}db connection error${NORMAL}:"\
  815. "Could not connect to db on $DOCKER_IP" \
  816. "container's IP. (IP up, TCP ports is(are) open, sql answer after ${timeout}s)"
  817. return 1
  818. fi
  819. sleep 0.2
  820. done
  821. echo "${DOCKER_NETWORK}:${DOCKER_IP}"
  822. return 0
  823. }
  824. export -f wait_for_docker_ip
  825. docker_add_host_declaration() {
  826. local src_docker=$1 domain=$2 dst_docker=$3 dst_docker_ip= dst_docker_network
  827. dst_docker_ip=$(wait_docker_ip "$dst_docker") || exit 1
  828. IFS=: read dst_docker_ip dst_docker_network <<<"$dst_docker_ip"
  829. docker exec -i "$src_docker" bash <<EOF
  830. if cat /etc/hosts | grep -E "^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s+$domain\$" > /dev/null 2>&1; then
  831. sed -ri "s/^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\s+$domain\$/$dst_docker_ip $domain/g" /etc/hosts
  832. else
  833. echo "$dst_docker_ip $domain" >> /etc/hosts
  834. fi
  835. EOF
  836. }
  837. export -f docker_add_host_declaration
  838. get_running_containers_for_service() {
  839. local service="$1"
  840. docker ps --filter label="compose.master-service=$service" --format="{{.ID}}"
  841. }
  842. export -f get_running_containers_for_service
  843. get_container_network_ips() {
  844. local container="$1"
  845. docker inspect "$container" \
  846. --format='{{range $key, $val :=.NetworkSettings.Networks}}{{$key}}{{"\x00"}}{{$val.IPAddress}}{{"\x00"}}{{end}}'
  847. }
  848. export -f get_container_network_ips
  849. get_container_network_ip() {
  850. local container="$1"
  851. while read-0 network ip; do
  852. printf "%s\0" "$network" "$ip"
  853. break
  854. done < <(get_container_network_ips "$container")
  855. }
  856. export -f get_container_network_ip
  857. ##
  858. ## Internal Process
  859. ##
  860. get_docker_compose_links() {
  861. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  862. deps master_service master_target_service _relation_name \
  863. target_service _relation_config tech_dep
  864. if [ -z "$service" ]; then
  865. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  866. return 1
  867. fi
  868. if [ -e "$cache_file" ]; then
  869. # debug "$FUNCNAME: cache hit ($*)"
  870. cat "$cache_file"
  871. return 0
  872. fi
  873. master_service=$(get_top_master_service_for_service "$service") || return 1
  874. deps=()
  875. while read-0 _relation_name target_service _relation_config tech_dep; do
  876. master_target_service="$(get_top_master_service_for_service "$target_service")" || return 1
  877. [ "$master_service" == "$master_target_service" ] && continue
  878. type="$(get_service_type "$target_service")" || return 1
  879. [ "$type" == "run-once" ] && continue
  880. if [ "$tech_dep" == "reversed" ]; then
  881. deps+=("$(echo -en "$master_target_service:\n links:\n - $master_service")")
  882. elif [ "$tech_dep" == "True" ]; then
  883. deps+=("$(echo -en "$master_service:\n links:\n - $master_target_service")")
  884. fi
  885. ## XXXvlab: an attempt to add depends_on, but this doesn't work well actually
  886. ## as there's a circular dependency issue. We don't really want the full feature
  887. ## of depends_on, but just to add it as targets when doing an 'up'
  888. # deps+=("$(echo -en "$master_service:\n depends_on:\n - $master_target_service")")
  889. done < <(get_service_relations "$service")
  890. merge_yaml_str "${deps[@]}" | tee "$cache_file" || return 1
  891. if [ "${PIPESTATUS[0]}" != 0 ]; then
  892. rm "$cache_file"
  893. err "Failed to merge YAML from all ${WHITE}links${NORMAL} dependencies."
  894. return 1
  895. fi
  896. }
  897. _get_docker_compose_opts() {
  898. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  899. compose_def master_service docker_compose_opts
  900. if [ -z "$service" ]; then
  901. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  902. return 1
  903. fi
  904. if [ -e "$cache_file" ]; then
  905. # debug "$FUNCNAME: cache hit ($*)"
  906. cat "$cache_file"
  907. return 0
  908. fi
  909. compose_def="$(get_compose_service_def "$service")" || return 1
  910. master_service="$(get_top_master_service_for_service "$service")"
  911. if docker_compose_opts=$(echo "$compose_def" | shyaml get-value -y "docker-compose" 2>/dev/null); then
  912. yaml_key_val_str "$master_service" "$docker_compose_opts"
  913. fi | tee "$cache_file"
  914. if [ "${PIPESTATUS[0]}" != 0 ]; then
  915. rm "$cache_file"
  916. return 1
  917. fi
  918. }
  919. ##
  920. ## By Reading the metadata.yml, we create a docker-compose.yml mixin.
  921. ## Some metadata.yml (of subordinates) will indeed modify other
  922. ## services than themselves.
  923. _get_docker_compose_service_mixin() {
  924. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  925. links_yaml base_mixin links_yaml docker_compose_options \
  926. charm charm_part
  927. if [ -z "$service" ]; then
  928. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  929. return 1
  930. fi
  931. if [ -e "$cache_file" ]; then
  932. # debug "$FUNCNAME: cache hit ($*)"
  933. cat "$cache_file"
  934. return 0
  935. fi
  936. master_service=$(get_top_master_service_for_service "$service") || {
  937. err "Failed to get top master service for service $DARKYELLOW$service$NORMAL"
  938. return 1
  939. }
  940. ## The compose part
  941. base_mixin="$master_service:
  942. labels:
  943. - compose.service=$service
  944. - compose.master-service=${master_service}
  945. - compose.project=$(get_default_project_name)"
  946. links_yaml=$(get_docker_compose_links "$service") || return 1
  947. docker_compose_options=$(_get_docker_compose_opts "$service") || return 1
  948. ## the charm part
  949. charm_part=$(get_docker_compose_mixin_from_metadata "$service") || return 1
  950. ## Merge results
  951. if [ "$charm_part" ]; then
  952. charm_yaml="$(yaml_key_val_str "$master_service" "$charm_part")" || return 1
  953. merge_yaml_str "$base_mixin" "$links_yaml" "$charm_yaml" "$docker_compose_options" || return 1
  954. else
  955. merge_yaml_str "$base_mixin" "$links_yaml" "$docker_compose_options" || return 1
  956. fi | tee "$cache_file"
  957. if [ "${PIPESTATUS[0]}" != 0 ]; then
  958. err "Failed to constitute the base YAML for service '${DARKYELLOW}$service${NORMAL}'"
  959. rm "$cache_file"
  960. return 1
  961. fi
  962. }
  963. export -f _get_docker_compose_service_mixin
  964. ##
  965. ## Get full `docker-compose.yml` format for all listed services (and
  966. ## their deps)
  967. ##
  968. ## @export
  969. ## @cache: !system !nofail +stdout
  970. get_docker_compose () {
  971. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  972. entries services service start docker_compose_services
  973. if [ -e "$cache_file" ]; then
  974. # debug "$FUNCNAME: cache hit ($*)"
  975. cat "$cache_file"
  976. return 0
  977. fi
  978. ##
  979. ## Adding sub services configurations
  980. ##
  981. declare -A entries
  982. start_compilation=$SECONDS
  983. debug "Compiling 'docker-compose.yml' base for ${DARKYELLOW}$*$NORMAL..."
  984. for target_service in "$@"; do
  985. start=$SECONDS
  986. services=($(get_ordered_service_dependencies "$target_service")) || {
  987. err "Failed to get dependencies for $DARKYELLOW$target_service$NORMAL"
  988. return 1
  989. }
  990. if [ "$DEBUG" ]; then
  991. debug " $DARKYELLOW$target_service$NORMAL deps:$DARKYELLOW" \
  992. "${services[@]::$((${#services[@]} - 1))}" \
  993. "$NORMAL$GRAY(in $((SECONDS - start))s)$NORMAL"
  994. fi
  995. for service in "${services[@]}"; do
  996. if [ "${entries[$service]}" ]; then
  997. ## Prevent double inclusion of same service if this
  998. ## service is deps of two or more of your
  999. ## requirements.
  1000. continue
  1001. fi
  1002. ## mark the service as "loaded" as well as it's containers
  1003. ## if this is a subordinate service
  1004. start_service=$SECONDS
  1005. entries[$service]=$(_get_docker_compose_service_mixin "$service") || {
  1006. err "Failed to get service mixin for $DARKYELLOW$service$NORMAL"
  1007. return 1
  1008. }
  1009. debug " Applied $DARKYELLOW$service$NORMAL charm metadata mixins $GRAY(in $((SECONDS - start_service))s)$NORMAL"
  1010. done
  1011. debug " ..finished all mixins for $DARKYELLOW$target_service$NORMAL $GRAY(in $((SECONDS - start))s)$NORMAL"
  1012. done
  1013. docker_compose_services=$(merge_yaml_str "${entries[@]}") || {
  1014. err "Failed to merge YAML services entries together."
  1015. return 1
  1016. }
  1017. base_v2="version: '2.0'"
  1018. merge_yaml_str "$(yaml_key_val_str "services" "$docker_compose_services")" \
  1019. "$base_v2" > "$cache_file" || return 1
  1020. export _current_docker_compose="$(cat "$cache_file")"
  1021. echo "$_current_docker_compose"
  1022. debug " ..compilation of base 'docker-compose.yml' done $GRAY(in $((SECONDS - start_compilation))s)$NORMAL" || true
  1023. # debug " ** ${WHITE}docker-compose.yml${NORMAL}:"
  1024. # debug "$_current_docker_compose"
  1025. }
  1026. export -f get_docker_compose
  1027. _get_compose_service_def_cached () {
  1028. local service="$1" docker_compose="$2" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  1029. if [ -e "$cache_file" ]; then
  1030. #debug "$FUNCNAME: STATIC cache hit"
  1031. cat "$cache_file" &&
  1032. touch "$cache_file" || return 1
  1033. return 0
  1034. fi
  1035. value=$(echo "$docker_compose" | shyaml get-value "${service//./\\.}" 2>/dev/null)
  1036. [ "$value" == None ] && value=""
  1037. if ! echo "$value" | shyaml get-value "charm" >/dev/null 2>&1; then
  1038. if charm.exists "$service"; then
  1039. value=$(merge_yaml <(echo "charm: $service") <(echo "$value")) || {
  1040. err "Can't merge YAML infered 'charm: $service' with base ${DARKYELLOW}$service${NORMAL} YAML definition."
  1041. return 1
  1042. }
  1043. else
  1044. err "No ${WHITE}charm${NORMAL} value for service $DARKYELLOW$service$NORMAL" \
  1045. "in compose, nor same name charm found."
  1046. return 1
  1047. fi
  1048. fi
  1049. echo "$value" | tee "$cache_file" || return 1
  1050. # if [ "${PIPESTATUS[0]}" != 0 ]; then
  1051. # rm "$cache_file"
  1052. # return 1
  1053. # fi
  1054. return 0
  1055. # if [ "${PIPESTATUS[0]}" != 0 -o \! -s "$cache_file" ]; then
  1056. # rm "$cache_file"
  1057. # err "PAS OK $service: $value"
  1058. # return 1
  1059. # fi
  1060. }
  1061. export -f _get_compose_service_def_cached
  1062. ## XXXvlab: a lot to be done to cache the results
  1063. get_compose_service_def () {
  1064. local service="$1" docker_compose cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1065. result
  1066. if [ -e "$cache_file" ]; then
  1067. #debug "$FUNCNAME: SESSION cache hit"
  1068. cat "$cache_file" || return 1
  1069. return 0
  1070. fi
  1071. [ -z "$service" ] && print_syntax_error "Missing service as first argument."
  1072. docker_compose=$(get_compose_yml_content) || return 1
  1073. result=$(_get_compose_service_def_cached "$service" "$docker_compose") || return 1
  1074. charm=$(echo "$result" | shyaml get-value charm 2>/dev/null) || return 1
  1075. metadata=$(charm.metadata "$charm") || return 1
  1076. if default_options=$(printf "%s" "$metadata" | shyaml -y -q get-value default-options); then
  1077. default_options=$(yaml_key_val_str "options" "$default_options") || return 1
  1078. result=$(merge_yaml_str "$default_options" "$result") || return 1
  1079. fi
  1080. echo "$result" | tee "$cache_file" || return 1
  1081. }
  1082. export -f get_compose_service_def
  1083. _get_service_charm_cached () {
  1084. local service="$1" service_def="$2" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)"
  1085. if [ -e "$cache_file" ]; then
  1086. # debug "$FUNCNAME: cache hit $1"
  1087. cat "$cache_file" &&
  1088. touch "$cache_file" || return 1
  1089. return 0
  1090. fi
  1091. charm=$(echo "$service_def" | shyaml get-value charm 2>/dev/null)
  1092. if [ -z "$charm" ]; then
  1093. err "Missing ${WHITE}charm${NORMAL} value in service $DARKYELLOW$service$NORMAL definition."
  1094. return 1
  1095. fi
  1096. echo "$charm" | tee "$cache_file" || return 1
  1097. }
  1098. export -f _get_service_charm_cached
  1099. get_service_charm () {
  1100. local service="$1"
  1101. if [ -z "$service" ]; then
  1102. echo ${FUNCNAME[@]} >&2
  1103. print_syntax_error "$FUNCNAME: Please specify a service as first argument."
  1104. return 1
  1105. fi
  1106. service_def=$(get_compose_service_def "$service") || return 1
  1107. _get_service_charm_cached "$service" "$service_def"
  1108. }
  1109. export -f get_service_charm
  1110. ## built above the docker-compose abstraction, so it relies on the
  1111. ## full docker-compose.yml to be already built.
  1112. get_service_def () {
  1113. local service="$1" def
  1114. if [ -z "$_current_docker_compose" ]; then
  1115. print_syntax_error "$FUNCNAME is meant to be called after"\
  1116. "\$_current_docker_compose has been calculated."
  1117. fi
  1118. def=$(echo "$_current_docker_compose" | shyaml get-value "services.${service//./\\.}" 2>/dev/null)
  1119. if [ -z "$def" ]; then
  1120. err "No definition for service $DARKYELLOW$service$NORMAL in compiled 'docker-compose.yml'."
  1121. return 1
  1122. fi
  1123. echo "$def"
  1124. }
  1125. export -f get_service_def
  1126. ## Return the base docker image name of a service
  1127. service_base_docker_image() {
  1128. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1129. master_service service_def service_image service_build service_dockerfile
  1130. if [ -e "$cache_file" ]; then
  1131. # debug "$FUNCNAME: cache hit ($*)"
  1132. cat "$cache_file"
  1133. return 0
  1134. fi
  1135. master_service="$(get_top_master_service_for_service "$service")" || {
  1136. err "Could not compute master service for service $DARKYELLOW$service$NORMAL."
  1137. return 1
  1138. }
  1139. service_def="$(get_service_def "$master_service")" || {
  1140. err "Could not get docker-compose service definition for $DARKYELLOW$master_service$NORMAL."
  1141. return 1
  1142. }
  1143. service_image=$(echo "$service_def" | shyaml get-value image 2>/dev/null)
  1144. if [ "$?" != 0 ]; then
  1145. ## According to https://stackoverflow.com/questions/32230577 , if there's a build,
  1146. ## then the builded image will get name ${project}_${service}
  1147. project=$(get_default_project_name) || return 1
  1148. image_name="${project}_${service}"
  1149. if ! docker_has_image "$image_name"; then
  1150. service_build=$(echo "$service_def" | shyaml get-value build 2>/dev/null)
  1151. if [ "$?" != 0 ]; then
  1152. err "Service $DARKYELLOW$service$NORMAL has no ${WHITE}image${NORMAL} nor ${WHITE}build${NORMAL} parameter."
  1153. echo "$service_def" >&2
  1154. return 1
  1155. fi
  1156. docker build "$service_build" -t "${project}_${service}" >&2 || {
  1157. err "Failed to build image for ${DARKYELLOW}$service${NORMAL}."
  1158. return 1
  1159. }
  1160. fi
  1161. printf "%s" "${project}_${service}"
  1162. else
  1163. printf "%s" "${service_image}"
  1164. fi | tee "$cache_file"
  1165. if [ "${PIPESTATUS[0]}" != 0 ]; then
  1166. rm "$cache_file"
  1167. return 1
  1168. fi
  1169. }
  1170. export -f service_base_docker_image
  1171. get_charm_relation_def () {
  1172. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1173. relation_def metadata
  1174. if [ -e "$cache_file" ]; then
  1175. # debug "$FUNCNAME: cache hit ($*)"
  1176. cat "$cache_file"
  1177. return 0
  1178. fi
  1179. metadata="$(charm.metadata "$charm")" || return 1
  1180. relation_def="$(echo "$metadata" | shyaml get-value "provides.${relation_name}" 2>/dev/null)"
  1181. echo "$relation_def" | tee "$cache_file"
  1182. }
  1183. export -f get_charm_relation_def
  1184. get_charm_tech_dep_orientation_for_relation() {
  1185. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1186. relation_def value
  1187. if [ -e "$cache_file" ]; then
  1188. # debug "$FUNCNAME: cache hit ($*)"
  1189. cat "$cache_file"
  1190. return 0
  1191. fi
  1192. relation_def=$(get_charm_relation_def "$charm" "$relation_name" 2>/dev/null)
  1193. value=$(echo "$relation_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  1194. value=${value:-True}
  1195. printf "%s" "$value" | tee "$cache_file"
  1196. }
  1197. export -f get_charm_tech_dep_orientation_for_relation
  1198. get_service_relation_tech_dep() {
  1199. local service="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1200. charm tech_dep
  1201. if [ -e "$cache_file" ]; then
  1202. # debug "$FUNCNAME: cache hit ($*)"
  1203. cat "$cache_file"
  1204. return 0
  1205. fi
  1206. charm=$(get_service_charm "$service") || return 1
  1207. tech_dep="$(get_charm_tech_dep_orientation_for_relation "$charm" "$relation_name")" || return 1
  1208. printf "%s" "$tech_dep" | tee "$cache_file"
  1209. }
  1210. export -f get_service_relation_tech_dep
  1211. ##
  1212. ## Use compose file to get deps, and relation definition in metadata.yml
  1213. ## for tech-dep attribute.
  1214. get_service_deps() {
  1215. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")"
  1216. if [ -e "$cache_file" ]; then
  1217. # debug "$FUNCNAME: cache hit ($*)"
  1218. cat "$cache_file"
  1219. return 0
  1220. fi
  1221. (
  1222. set -o pipefail
  1223. get_service_relations "$service" | \
  1224. while read-0 relation_name target_service _relation_config tech_dep; do
  1225. echo "$target_service"
  1226. done | tee "$cache_file"
  1227. ) || return 1
  1228. }
  1229. export -f get_service_deps
  1230. ## XXXvlab: cache was disabled because improper. Indeed, this needs to cache
  1231. ## 'depths' full state. Second, it should be
  1232. _rec_get_depth() {
  1233. local elt=$1 dep deps max
  1234. [ "${depths[$elt]}" ] && return 0
  1235. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$(declare -pA depths)" "$ALL_RELATIONS")"
  1236. if [ -e "$cache_file.depths" ]; then
  1237. #debug "$FUNCNAME: cache hit ($*) - $cache_file.depths"
  1238. while read-0 k v; do
  1239. depths["$k"]="$v"
  1240. done < "$cache_file.depths"
  1241. while read-0 k v; do
  1242. visited["$k"]="$v"
  1243. done < "$cache_file.visited"
  1244. return 0
  1245. fi
  1246. visited[$elt]=1
  1247. #debug "Setting visited[$elt]"
  1248. #debug "Asking for $DARKYELLOW$elt$NORMAL dependencies"
  1249. deps=$(get_service_deps "$elt") || {
  1250. debug "Failed get_service_deps $elt"
  1251. return 1
  1252. }
  1253. # debug "$elt deps are:" $deps
  1254. max=0
  1255. for dep in $deps; do
  1256. [ "${visited[$dep]}" ] && {
  1257. #debug "Already computing $dep"
  1258. continue
  1259. }
  1260. _rec_get_depth "$dep" || return 1
  1261. #debug "Requesting depth[$dep]"
  1262. if (( ${depths[$dep]} > max )); then
  1263. max="${depths[$dep]}"
  1264. fi
  1265. done
  1266. # debug "Setting depth[$elt] to $((max + 1))"
  1267. depths[$elt]=$((max + 1))
  1268. array_kv_to_stdin depths > "$cache_file.depths"
  1269. array_kv_to_stdin visited > "$cache_file.visited"
  1270. # debug "DEPTHS: $(declare -pA depths)"
  1271. # debug "$FUNCNAME: caching hit ($*) - $cache_file"
  1272. }
  1273. export -f _rec_get_depth
  1274. get_ordered_service_dependencies() {
  1275. local services=("$@") cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")" \
  1276. i value key heads depths visited
  1277. if [ -e "$cache_file" ]; then
  1278. # debug "$FUNCNAME: cache hit ($*)"
  1279. cat "$cache_file"
  1280. return 0
  1281. fi
  1282. #debug "Figuring ordered deps of $DARKYELLOW${services[@]}$NORMAL"
  1283. if [ -z "${services[*]}" ]; then
  1284. return 0
  1285. # print_syntax_error "$FUNCNAME: no arguments"
  1286. # return 1
  1287. fi
  1288. declare -A depths
  1289. declare -A visited
  1290. heads=("${services[@]}")
  1291. while [ "${#heads[@]}" != 0 ]; do
  1292. array_pop heads head
  1293. _rec_get_depth "$head" || return 1
  1294. done
  1295. i=0
  1296. while [ "${#depths[@]}" != 0 ]; do
  1297. for key in "${!depths[@]}"; do
  1298. value="${depths[$key]}"
  1299. if [ "$value" == "$i" ]; then
  1300. echo "$key"
  1301. unset depths[$key]
  1302. fi
  1303. done
  1304. ((i++))
  1305. done | tee "$cache_file"
  1306. }
  1307. export -f get_ordered_service_dependencies
  1308. run_service_hook () {
  1309. local action="$1" service subservice subservices loaded
  1310. shift
  1311. declare -A loaded
  1312. for service in "$@"; do
  1313. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1314. for subservice in $subservices; do
  1315. if [ "${loaded[$subservice]}" ]; then
  1316. ## Prevent double inclusion of same service if this
  1317. ## service is deps of two or more of your
  1318. ## requirements.
  1319. continue
  1320. fi
  1321. charm=$(get_service_charm "$subservice") || return 1
  1322. charm.has_hook "$charm" "$action" >/dev/null || continue
  1323. PROJECT_NAME=$(get_default_project_name) || return 1
  1324. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  1325. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  1326. DOCKER_BASE_IMAGE=$(service_base_docker_image "$MASTER_BASE_SERVICE_NAME") || return 1
  1327. Wrap "${wrap_opts[@]}" -d "running $YELLOW$action$NORMAL hook of $DARKYELLOW$subservice$NORMAL in charm $DARKPINK$charm$NORMAL" <<EOF || return 1
  1328. export DOCKER_BASE_IMAGE="$DOCKER_BASE_IMAGE"
  1329. export SERVICE_NAME=$subservice
  1330. export IMAGE_NAME=$(echo "${PROJECT_NAME}" | tr -d "_-")_\${SERVICE_NAME}
  1331. export CONTAINER_NAME=\${IMAGE_NAME}_1
  1332. export CHARM_NAME="$charm"
  1333. export PROJECT_NAME="$PROJECT_NAME"
  1334. export SERVICE_DATASTORE="$DATASTORE/$subservice"
  1335. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$subservice"
  1336. export MASTER_BASE_SERVICE_NAME="$MASTER_BASE_SERVICE_NAME"
  1337. export MASTER_BASE_CHARM_NAME="$MASTER_BASE_CHARM_NAME"
  1338. charm.run_hook "local" "$charm" "$action"
  1339. EOF
  1340. loaded[$subservice]=1
  1341. done
  1342. done
  1343. return 0
  1344. }
  1345. host_resource_get() {
  1346. local location="$1" cfg="$2"
  1347. type=$(echo "$cfg" | shyaml get-value type 2>/dev/null) || {
  1348. err "Missing ${WHITE}type$NORMAL option in ${WHITE}get$NORMAL config for location '$location'"
  1349. return 1
  1350. }
  1351. if fn.exists host_resource_get_$type; then
  1352. host_resource_get_$type "$location" "$cfg"
  1353. else
  1354. err "Source ${WHITE}source$NORMAL type '$type' unknown for" \
  1355. "${WHITE}host-resource$NORMAL '$location' defined in" \
  1356. "$DARKYELLOW$subservice$NORMAL config."
  1357. return 1
  1358. fi
  1359. }
  1360. export -f host_resource_get
  1361. host_resource_get_git() {
  1362. local location="$1" cfg="$2" branch parent url
  1363. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1364. branch=${branch:-master}
  1365. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1366. parent="$(dirname "$location")"
  1367. (
  1368. mkdir -p "$parent" && cd "$parent" &&
  1369. git clone -b "$branch" "$url" "$(basename "$location")"
  1370. ) || return 1
  1371. }
  1372. export -f host_resource_get_git
  1373. host_resource_get_git-sub() {
  1374. local location="$1" cfg="$2" branch parent url
  1375. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1376. branch=${branch:-master}
  1377. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1378. parent="$(dirname "$location")"
  1379. (
  1380. mkdir -p "$parent" && cd "$parent" &&
  1381. git sub clone -b "$branch" "$url" "$(basename "$location")"
  1382. ) || return 1
  1383. }
  1384. export -f host_resource_get_git-sub
  1385. setup_host_resource () {
  1386. local subservice="$1" service_def location get cfg
  1387. service_def=$(get_compose_service_def "$subservice") || return 1
  1388. while read-0 location cfg; do
  1389. ## XXXvlab: will it be a git resources always ?
  1390. if [ -d "$location" -a ! -d "$location/.git" ]; then
  1391. err "Hum, location '$location' does not seem to be a git directory."
  1392. return 1
  1393. fi
  1394. if [ -d "$location" ]; then
  1395. info "host resource '$location' already set up."
  1396. continue
  1397. fi
  1398. get=$(echo "$cfg" | shyaml get-value get 2>/dev/null)
  1399. if [ -z "$get" ]; then
  1400. err "No host directory '$location' found, and no ${WHITE}source$NORMAL" \
  1401. "specified for $DARKYELLOW$subservice$NORMAL."
  1402. return 1
  1403. fi
  1404. host_resource_get "$location" "$get" || return 1
  1405. done < <(echo "$service_def" | shyaml key-values-0 host-resources 2>/dev/null)
  1406. }
  1407. export -f setup_host_resource
  1408. setup_host_resources () {
  1409. local service subservices subservice loaded
  1410. declare -A loaded
  1411. for service in "$@"; do
  1412. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1413. for subservice in $subservices; do
  1414. if [ "${loaded[$subservice]}" ]; then
  1415. ## Prevent double inclusion of same service if this
  1416. ## service is deps of two or more of your
  1417. ## requirements.
  1418. continue
  1419. fi
  1420. setup_host_resource "$subservice" || return 1
  1421. loaded[$subservice]=1
  1422. done
  1423. done
  1424. return 0
  1425. }
  1426. export -f setup_host_resources
  1427. ## Works on stdin
  1428. cfg-get-value () {
  1429. local key="$1" out
  1430. if [ -z "$key" ]; then
  1431. yaml_get_interpret || return 1
  1432. return 0
  1433. fi
  1434. if ! out=$(shyaml -y get-value "$key" 2>/dev/null); then
  1435. err "The key $WHITE$key$NORMAL was not found in relation's data."
  1436. return 1
  1437. fi
  1438. echo "$out" | yaml_get_interpret
  1439. }
  1440. export -f cfg-get-value
  1441. relation-get () {
  1442. cfg-get-value "$1" < "$RELATION_DATA_FILE"
  1443. }
  1444. export -f relation-get
  1445. expand_vars() {
  1446. local unlikely_prefix="UNLIKELY_PREFIX"
  1447. content=$(cat -)
  1448. ## find first identifier not in content
  1449. remaining_lines=$(echo "$content" | grep "^$unlikely_prefix")
  1450. while [ "$(echo "$remaining_lines" | grep "^$unlikely_prefix$")" ]; do
  1451. size_prefix="${#unlikely_prefix}"
  1452. first_matching=$(echo "$remaining_lines" |
  1453. grep -v "^$unlikely_prefix$" |
  1454. uniq -w "$((size_prefix + 1))" -c |
  1455. sort -rn |
  1456. head -n 1)
  1457. first_matching=${first_matching#"${x%%[![:space:]]*}"}
  1458. first_matching="${first_matching#* }"
  1459. next_char=${first_matching:$size_prefix:1}
  1460. if [ "$next_char" != "0" ]; then
  1461. unlikely_prefix+="0"
  1462. else
  1463. unlikely_prefix+="1"
  1464. fi
  1465. remaining_lines=$(echo "$remaining_lines" | grep "^$unlikely_prefix")
  1466. done
  1467. eval "cat <<$unlikely_prefix
  1468. $content
  1469. $unlikely_prefix"
  1470. }
  1471. export -f expand_vars
  1472. yaml_get_interpret() {
  1473. local content tag
  1474. content=$(cat -)
  1475. tag=$(echo "$content" | shyaml -y get-value) || return 1
  1476. tag="${tag%% *}"
  1477. content=$(echo "$content" | shyaml get-value) || return 1
  1478. if ! [ "${tag:0:1}" == "!" ]; then
  1479. echo "$content" || return 1
  1480. return 0
  1481. fi
  1482. case "$tag" in
  1483. "!bash-stdout")
  1484. echo "$content" | bash || {
  1485. err "shell code didn't end with errorlevel 0"
  1486. return 1
  1487. }
  1488. ;;
  1489. "!var-expand")
  1490. echo "$content" | expand_vars || {
  1491. err "shell expansion failed"
  1492. return 1
  1493. }
  1494. ;;
  1495. "!file-content")
  1496. source=$(echo "$content" | expand_vars) || {
  1497. err "shell expansion failed"
  1498. return 1
  1499. }
  1500. cat "$source" || return 1
  1501. ;;
  1502. *)
  1503. err "Invalid object tag ${WHITE}$tag${NORMAL}"
  1504. return 1
  1505. ;;
  1506. esac
  1507. }
  1508. export -f yaml_get_interpret
  1509. options-get () {
  1510. local key="$1" out
  1511. service_def=$(get_compose_service_def "$SERVICE_NAME") || return 1
  1512. if ! out=$(echo "$service_def" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1513. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1514. return 1
  1515. fi
  1516. echo "$out" | yaml_get_interpret
  1517. }
  1518. export -f options-get
  1519. relation-base-compose-get () {
  1520. local key="$1" out
  1521. if ! out=$(echo "$RELATION_BASE_COMPOSE_DEF" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1522. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1523. return 1
  1524. fi
  1525. echo "$out" | yaml_get_interpret
  1526. }
  1527. export -f relation-base-compose-get
  1528. relation-target-compose-get () {
  1529. local key="$1" out
  1530. if ! out=$(echo "$RELATION_TARGET_COMPOSE_DEF" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1531. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1532. return 1
  1533. fi
  1534. echo "$out" | yaml_get_interpret
  1535. }
  1536. export -f relation-target-compose-get
  1537. relation-set () {
  1538. local key="$1" value="$2"
  1539. if [ -z "$RELATION_DATA_FILE" ]; then
  1540. err "$FUNCNAME: relation does not seems to be correctly setup."
  1541. return 1
  1542. fi
  1543. if ! [ -r "$RELATION_DATA_FILE" ]; then
  1544. err "$FUNCNAME: can't read relation's data." >&2
  1545. return 1
  1546. fi
  1547. _config_merge "$RELATION_DATA_FILE" <(yaml_key_val_str "$key" "$value")
  1548. }
  1549. export -f relation-set
  1550. _config_merge() {
  1551. local config_filename="$1" mixin="$2"
  1552. touch "$config_filename" &&
  1553. merge_yaml "$config_filename" "$mixin" > "$config_filename.tmp" || return 1
  1554. mv "$config_filename.tmp" "$config_filename"
  1555. }
  1556. export -f _config_merge
  1557. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1558. config-add() {
  1559. local metadata="$1"
  1560. _config_merge "$RELATION_CONFIG" <(echo "$metadata")
  1561. }
  1562. export -f config-add
  1563. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1564. init-config-add() {
  1565. local metadata="$1"
  1566. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" \
  1567. <(yaml_key_val_str "services" "$metadata")
  1568. }
  1569. export -f init-config-add
  1570. docker_get_uid() {
  1571. local service="$1" user="$2" uid
  1572. uid=$(cached_cmd_on_base_image "$service" "id -u \"$user\"") || {
  1573. debug "Failed to query for '$user' uid in ${DARKYELLOW}$service${NORMAL} base image."
  1574. return 1
  1575. }
  1576. info "uid from ${DARKYELLOW}$service${NORMAL} for user '$user' is '$uid'"
  1577. echo "$uid"
  1578. }
  1579. export -f docker_get_uid
  1580. docker_get_uid_gid() {
  1581. local service="$1" user="$2" group="$3" uid
  1582. uid_gid=$(cached_cmd_on_base_image "$service" "id -u \"$user\"; id -g \"$group\"") || {
  1583. debug "Failed to query for '$user' uid in ${DARKYELLOW}$service${NORMAL} base image."
  1584. return 1
  1585. }
  1586. info "uid from ${DARKYELLOW}$service${NORMAL} for user '$user' is '$uid_gid'"
  1587. echo "$uid_gid"
  1588. }
  1589. export -f docker_get_uid_gid
  1590. logstdout() {
  1591. local name="$1"
  1592. sed -r 's%^%'"${name}"'> %g'
  1593. }
  1594. export -f logstdout
  1595. logstderr() {
  1596. local name="$1"
  1597. sed -r 's%^(.*)$%'"${RED}${name}>${NORMAL} \1"'%g'
  1598. }
  1599. export -f logstderr
  1600. _run_service_relation () {
  1601. local relation_name="$1" service="$2" target_service="$3" relation_config="$4" relation_dir services
  1602. local errlvl
  1603. charm=$(get_service_charm "$service") || return 1
  1604. target_charm=$(get_service_charm "$target_service") || return 1
  1605. base_script_name=$(charm.has_relation_hook "$charm" "$relation_name" relation-joined) || true
  1606. target_script_name=$(charm.has_relation_hook "$target_charm" "$relation_name" relation-joined) || true
  1607. [ "$base_script_name" -o "$target_script_name" ] || return 0
  1608. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  1609. RELATION_DATA_FILE=$(get_relation_data_file "$service" "$target_service" "$relation_name" "$relation_config") || return 1
  1610. export BASE_SERVICE_NAME=$service
  1611. export BASE_CHARM_NAME=$charm
  1612. export BASE_CHARM_PATH=$(charm.get_dir "$charm")
  1613. export TARGET_SERVICE_NAME=$target_service
  1614. export TARGET_CHARM_NAME=$target_charm
  1615. export TARGET_CHARM_PATH=$(charm.get_dir "$target_charm")
  1616. export RELATION_DATA_FILE
  1617. target_errlvl=0
  1618. if [ -z "$target_script_name" ]; then
  1619. verb "No relation script $DARKBLUE$relation_name$NORMAL in target $DARKPINK$target_charm$NORMAL."
  1620. else
  1621. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1622. "for target $DARKYELLOW$target_service$NORMAL (charm $DARKPINK$target_charm$NORMAL)"
  1623. RELATION_CONFIG="$relation_dir/config_provider"
  1624. DOCKER_BASE_IMAGE=$(service_base_docker_image "$target_service") || return 1
  1625. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1626. {
  1627. (
  1628. SERVICE_NAME=$target_service
  1629. SERVICE_DATASTORE="$DATASTORE/$target_service"
  1630. SERVICE_CONFIGSTORE="$CONFIGSTORE/$target_service"
  1631. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1632. charm.run_relation_hook local "$target_charm" "$relation_name" relation-joined
  1633. echo "$?" > "$relation_dir/target_errlvl"
  1634. ) | logstdout "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1635. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@${NORMAL}" 3>&1 1>&2 2>&3
  1636. target_errlvl="$(cat "$relation_dir/target_errlvl")" || {
  1637. err "Relation script '$script_name' in $DARKPINK$target_charm$NORMAL" \
  1638. "failed before outputing an errorlevel."
  1639. ((target_errlvl |= "1" ))
  1640. }
  1641. if [ -e "$RELATION_CONFIG" ]; then
  1642. debug "Merging some new config info in $DARKYELLOW$target_service$NORMAL"
  1643. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1644. rm "$RELATION_CONFIG"
  1645. ((target_errlvl |= "$?"))
  1646. fi
  1647. fi
  1648. if [ "$target_errlvl" == 0 ]; then
  1649. errlvl=0
  1650. if [ "$base_script_name" ]; then
  1651. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1652. "for $DARKYELLOW$service$NORMAL (charm $DARKPINK$charm$NORMAL)"
  1653. RELATION_CONFIG="$relation_dir/config_providee"
  1654. RELATION_DATA="$(cat "$RELATION_DATA_FILE")"
  1655. DOCKER_BASE_IMAGE=$(service_base_docker_image "$service") || return 1
  1656. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1657. {
  1658. (
  1659. SERVICE_NAME=$service
  1660. SERVICE_DATASTORE="$DATASTORE/$service"
  1661. SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  1662. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1663. charm.run_relation_hook local "$charm" "$relation_name" relation-joined
  1664. echo "$?" > "$relation_dir/errlvl"
  1665. ) | logstdout "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1666. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  1667. errlvl="$(cat "$relation_dir/errlvl")" || {
  1668. err "Relation script '$script_name' in $DARKPINK$charm$NORMAL" \
  1669. "failed before outputing an errorlevel."
  1670. ((errlvl |= "1" ))
  1671. }
  1672. if [ -e "$RELATION_CONFIG" ]; then
  1673. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1674. rm "$RELATION_CONFIG"
  1675. ((errlvl |= "$?" ))
  1676. fi
  1677. if [ "$errlvl" != 0 ]; then
  1678. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$service$NORMAL failed to run properly."
  1679. fi
  1680. else
  1681. verb "No relation script '$script_name' in charm $DARKPINK$charm$NORMAL. Ignoring."
  1682. fi
  1683. else
  1684. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$target_service$NORMAL failed to run properly."
  1685. fi
  1686. if [ "$target_errlvl" == 0 -a "$errlvl" == 0 ]; then
  1687. debug "Relation $DARKBLUE$relation_name$NORMAL is established" \
  1688. "between $DARKYELLOW$service$NORMAL and $DARKYELLOW$target_service$NORMAL."
  1689. return 0
  1690. else
  1691. return 1
  1692. fi
  1693. }
  1694. export -f _run_service_relation
  1695. _get_compose_relations_cached () {
  1696. local compose_service_def="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  1697. relation_name relation_def target_service
  1698. if [ -e "$cache_file" ]; then
  1699. #debug "$FUNCNAME: STATIC cache hit $1"
  1700. cat "$cache_file" &&
  1701. touch "$cache_file" || return 1
  1702. return 0
  1703. fi
  1704. (
  1705. set -o pipefail
  1706. if [ "$compose_service_def" ]; then
  1707. while read-0 relation_name relation_def; do
  1708. ## XXXvlab: could we use braces here instead of parenthesis ?
  1709. (
  1710. case "$(echo "$relation_def" | shyaml get-type 2>/dev/null)" in
  1711. "str")
  1712. target_service="$(echo "$relation_def" | shyaml get-value 2>/dev/null)" || return 1
  1713. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  1714. printf "%s\0" "$relation_name" "$target_service" "" "$tech_dep"
  1715. ;;
  1716. "sequence")
  1717. while read-0 target_service; do
  1718. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  1719. printf "%s\0" "$relation_name" "$target_service" "" "$tech_dep"
  1720. done < <(echo "$relation_def" | shyaml get-values-0 2>/dev/null)
  1721. ;;
  1722. "struct")
  1723. while read-0 target_service relation_config; do
  1724. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  1725. printf "%s\0" "$relation_name" "$target_service" "$relation_config" "$tech_dep"
  1726. done < <(echo "$relation_def" | shyaml key-values-0 2>/dev/null)
  1727. ;;
  1728. esac
  1729. ) </dev/null >> "$cache_file" || return 1
  1730. done < <(echo "$compose_service_def" | shyaml key-values-0 relations 2>/dev/null)
  1731. fi
  1732. )
  1733. if [ "$?" != 0 ]; then
  1734. err "Error while looking for compose relations."
  1735. rm -f "$cache_file" ## no cache
  1736. return 1
  1737. fi
  1738. [ -e "$cache_file" ] && cat "$cache_file"
  1739. return 0
  1740. }
  1741. export -f _get_compose_relations_cached
  1742. get_compose_relations () {
  1743. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1744. compose_def
  1745. if [ -e "$cache_file" ]; then
  1746. #debug "$FUNCNAME: SESSION cache hit $1"
  1747. cat "$cache_file"
  1748. return 0
  1749. fi
  1750. compose_def="$(get_compose_service_def "$service")" || return 1
  1751. _get_compose_relations_cached "$compose_def" > "$cache_file"
  1752. if [ "$?" != 0 ]; then
  1753. rm -f "$cache_file" ## no cache
  1754. return 1
  1755. fi
  1756. cat "$cache_file"
  1757. }
  1758. export -f get_compose_relations
  1759. get_service_relations () {
  1760. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")" \
  1761. s rn ts rc td
  1762. if [ -e "$cache_file" ]; then
  1763. #debug "$FUNCNAME: SESSION cache hit $1"
  1764. cat "$cache_file"
  1765. return 0
  1766. fi
  1767. if [ -z "$ALL_RELATIONS" ]; then
  1768. err "Can't access global \$ALL_RELATIONS"
  1769. return 1
  1770. fi
  1771. while read-0 s rn ts rc td; do
  1772. [[ "$s" == "$service" ]] || continue
  1773. printf "%s\0" "$rn" "$ts" "$rc" "$td"
  1774. done < <(cat "$ALL_RELATIONS") > "$cache_file"
  1775. if [ "$?" != 0 ]; then
  1776. rm -f "$cache_file" ## no cache
  1777. return 1
  1778. fi
  1779. cat "$cache_file"
  1780. }
  1781. export -f get_service_relations
  1782. get_service_relation() {
  1783. local service="$1" relation="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1784. rn ts rc td
  1785. if [ -e "$cache_file" ]; then
  1786. #debug "$FUNCNAME: SESSION cache hit $1"
  1787. cat "$cache_file"
  1788. return 0
  1789. fi
  1790. while read-0 rn ts rc td; do
  1791. [ "$relation" == "$rn" ] && {
  1792. printf "%s\0" "$ts" "$rc" "$td"
  1793. break
  1794. }
  1795. done < <(get_service_relations "$service") > "$cache_file"
  1796. if [ "$?" != 0 ]; then
  1797. rm -f "$cache_file" ## no cache
  1798. return 1
  1799. fi
  1800. cat "$cache_file"
  1801. }
  1802. export -f get_service_relation
  1803. _get_charm_metadata_uses() {
  1804. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  1805. if [ -e "$cache_file" ]; then
  1806. #debug "$FUNCNAME: SESSION cache hit $1"
  1807. cat "$cache_file" || return 1
  1808. return 0
  1809. fi
  1810. printf "%s" "$metadata" | { shyaml key-values-0 uses 2>/dev/null || true; } | tee "$cache_file"
  1811. }
  1812. export -f _get_charm_metadata_uses
  1813. _get_service_metadata() {
  1814. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1815. charm
  1816. if [ -e "$cache_file" ]; then
  1817. #debug "$FUNCNAME: SESSION cache hit $1"
  1818. cat "$cache_file"
  1819. return 0
  1820. fi
  1821. charm="$(get_service_charm "$service")" || return 1
  1822. charm.metadata "$charm" > "$cache_file"
  1823. if [ "$?" != 0 ]; then
  1824. rm -f "$cache_file" ## no cache
  1825. return 1
  1826. fi
  1827. cat "$cache_file"
  1828. }
  1829. export -f _get_service_metadata
  1830. _get_service_uses() {
  1831. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1832. metadata
  1833. if [ -e "$cache_file" ]; then
  1834. #debug "$FUNCNAME: SESSION cache hit $1"
  1835. cat "$cache_file"
  1836. return 0
  1837. fi
  1838. metadata="$(_get_service_metadata "$service")" || return 1
  1839. _get_charm_metadata_uses "$metadata" > "$cache_file"
  1840. if [ "$?" != 0 ]; then
  1841. rm -f "$cache_file" ## no cache
  1842. return 1
  1843. fi
  1844. cat "$cache_file"
  1845. }
  1846. export -f _get_service_uses
  1847. _get_services_uses() {
  1848. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1849. service rn rd
  1850. if [ -e "$cache_file" ]; then
  1851. #debug "$FUNCNAME: SESSION cache hit $1"
  1852. cat "$cache_file"
  1853. return 0
  1854. fi
  1855. for service in "$@"; do
  1856. _get_service_uses "$service" | while read-0 rn rd; do
  1857. printf "%s\0" "$service" "$rn" "$rd"
  1858. done
  1859. [ "${PIPESTATUS[0]}" == 0 ] || {
  1860. return 1
  1861. }
  1862. done > "${cache_file}.wip"
  1863. mv "${cache_file}"{.wip,} &&
  1864. cat "$cache_file" || return 1
  1865. }
  1866. export -f _get_services_uses
  1867. _get_provides_provides() {
  1868. local provides="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1869. service rn rd
  1870. if [ -e "$cache_file" ]; then
  1871. # debug "$FUNCNAME: CACHEDIR cache hit $1"
  1872. cat "$cache_file"
  1873. return 0
  1874. fi
  1875. type=$(printf "%s" "$provides" | shyaml get-type)
  1876. case "$type" in
  1877. sequence)
  1878. while read-0 prov; do
  1879. printf "%s\0" "$prov" ""
  1880. done < <(echo "$provides" | shyaml get-values-0)
  1881. ;;
  1882. struct)
  1883. printf "%s" "$provides" | shyaml key-values-0
  1884. ;;
  1885. str)
  1886. printf "%s\0" "$(echo "$provides" | shyaml get-value)" ""
  1887. ;;
  1888. *)
  1889. err "Unexpected type '$type' for provider identifier in charm '$charm'."
  1890. return 1
  1891. esac | tee "$cache_file"
  1892. return "${PIPESTATUS[0]}"
  1893. }
  1894. _get_metadata_provides() {
  1895. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1896. service rn rd
  1897. if [ -e "$cache_file" ]; then
  1898. #debug "$FUNCNAME: CACHEDIR cache hit"
  1899. cat "$cache_file"
  1900. return 0
  1901. fi
  1902. provides=$(printf "%s" "$metadata" | shyaml get-value -y -q provides "")
  1903. [ "$provides" -a "$provides" != "''" ] || { touch "$cache_file"; return 0; }
  1904. _get_provides_provides "$provides" | tee "$cache_file"
  1905. return "${PIPESTATUS[0]}"
  1906. }
  1907. _get_services_provides() {
  1908. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1909. service rn rd
  1910. if [ -e "$cache_file" ]; then
  1911. #debug "$FUNCNAME: SESSION cache hit $1"
  1912. cat "$cache_file"
  1913. return 0
  1914. fi
  1915. ## YYY: replace the inner loop by a cached function
  1916. for service in "$@"; do
  1917. metadata="$(_get_service_metadata "$service")" || return 1
  1918. while read-0 rn rd; do
  1919. printf "%s\0" "$service" "$rn" "$rd"
  1920. done < <(_get_metadata_provides "$metadata")
  1921. done > "$cache_file"
  1922. if [ "$?" != 0 ]; then
  1923. rm -f "$cache_file" ## no cache
  1924. return 1
  1925. fi
  1926. cat "$cache_file"
  1927. }
  1928. export -f _get_services_provides
  1929. _get_charm_provides() {
  1930. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(charm.store_metadata_hash)" errlvl
  1931. if [ -e "$cache_file" ]; then
  1932. #debug "$FUNCNAME: SESSION cache hit"
  1933. cat "$cache_file"
  1934. return 0
  1935. fi
  1936. start="$SECONDS"
  1937. debug "Getting charm provider list..."
  1938. while read-0 charm _ realpath metadata; do
  1939. metadata="$(charm.metadata "$charm")" || continue
  1940. # echo "reading $charm" >&2
  1941. while read-0 rn rd; do
  1942. printf "%s\0" "$charm" "$rn" "$rd"
  1943. done < <(_get_metadata_provides "$metadata")
  1944. done < <(charm.ls) | tee "$cache_file"
  1945. errlvl="${PIPESTATUS[0]}"
  1946. debug " ..charm provider list done $GRAY(in $((SECONDS - start))s)$NORMAL"
  1947. return "$errlvl"
  1948. }
  1949. _get_charm_providing() {
  1950. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1951. relation="$1"
  1952. if [ -e "$cache_file" ]; then
  1953. #debug "$FUNCNAME: SESSION cache hit $1"
  1954. cat "$cache_file"
  1955. return 0
  1956. fi
  1957. while read-0 charm relation_name relation_def; do
  1958. [ "$relation_name" == "$relation" ] || continue
  1959. printf "%s\0" "$charm" "$relation_def"
  1960. done < <(_get_charm_provides) > "$cache_file"
  1961. if [ "$?" != 0 ]; then
  1962. rm -f "$cache_file" ## no cache
  1963. return 1
  1964. fi
  1965. cat "$cache_file"
  1966. }
  1967. _get_services_providing() {
  1968. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1969. relation="$1"
  1970. shift ## services is "$@"
  1971. if [ -e "$cache_file" ]; then
  1972. #debug "$FUNCNAME: SESSION cache hit $1"
  1973. cat "$cache_file"
  1974. return 0
  1975. fi
  1976. while read-0 service relation_name relation_def; do
  1977. [ "$relation_name" == "$relation" ] || continue
  1978. printf "%s\0" "$service" "$relation_def"
  1979. done < <(_get_services_provides "$@") > "$cache_file"
  1980. if [ "$?" != 0 ]; then
  1981. rm -f "$cache_file" ## no cache
  1982. return 1
  1983. fi
  1984. cat "$cache_file"
  1985. }
  1986. export -f _get_services_provides
  1987. _out_new_relation_from_defs() {
  1988. local service="$1" rn="$2" ts="$3" prov_def="$4" rel_def="$5" rc td rc_prov
  1989. rc_prov=$(printf "%s" "$prov_def" | shyaml -y get-value "default-options" 2>/dev/null)
  1990. ## YYYvlab: should be seen even in no debug mode no ?
  1991. rc=$(printf "%s" "$rel_def" | shyaml -y get-value "default-options" 2>/dev/null)
  1992. td=$(echo "$prov_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  1993. td=${td:-True}
  1994. rc=$(merge_yaml_str "$rc_prov" "$rc") || return 1
  1995. printf "%s\0" "$service" "$relation_name" "$ts" "$rc" "$td"
  1996. }
  1997. get_all_relations () {
  1998. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$(declare -p without_relations)")" \
  1999. services
  2000. if [ -e "${cache_file}" ]; then
  2001. #debug "$FUNCNAME: SESSION cache hit $1"
  2002. cat "${cache_file}"
  2003. return 0
  2004. fi
  2005. declare -A services
  2006. services_uses=()
  2007. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2008. _get_services_uses "$@" || return 1
  2009. array_read-0 services_uses < <(_get_services_uses "$@")
  2010. services_provides=()
  2011. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2012. _get_services_provides "$@" || return 1
  2013. array_read-0 services_provides < <(_get_services_provides "$@")
  2014. for service in "$@"; do
  2015. services[$service]=1
  2016. done
  2017. all_services=("$@")
  2018. while [ "${#all_services[@]}" != 0 ]; do
  2019. array_pop all_services service
  2020. while read-0 relation_name ts relation_config tech_dep; do
  2021. [ "${without_relations[$service:$relation_name]}" ] && {
  2022. debug "Ignoring compose $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> ${DARKYELLOW}$ts$NORMAL"
  2023. continue
  2024. }
  2025. printf "%s\0" "$service" "$relation_name" "$ts" "$relation_config" "$tech_dep"
  2026. ## adding target services ?
  2027. [ "${services[$ts]}" ] && continue
  2028. array_read-0 services_uses < <(_get_services_uses "$ts")
  2029. all_services+=("$ts")
  2030. services[$ts]=1
  2031. done < <(get_compose_relations "$service")
  2032. done > "${cache_file}.wip"
  2033. while true; do
  2034. changed=
  2035. new_services_uses=()
  2036. summon=()
  2037. required=()
  2038. recommended=()
  2039. optional=()
  2040. while [ "${#services_uses[@]}" != 0 ]; do
  2041. service="${services_uses[0]}"
  2042. relation_name="${services_uses[1]}"
  2043. relation_def="${services_uses[2]}"
  2044. services_uses=("${services_uses[@]:3}")
  2045. [ "${without_relations[$service:$relation_name]}" ] && {
  2046. debug "Skipping $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW*$NORMAL"
  2047. continue
  2048. }
  2049. default_options=$(printf "%s" "$relation_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2050. ## is this "use" declaration satisfied ?
  2051. found=
  2052. while read-0 s rn ts rc td; do
  2053. if [ -z "$found" -a "$service" == "$s" -a "$relation_name" == "$rn" ]; then
  2054. if [ "$default_options" ]; then
  2055. rc=$(merge_yaml_str "$default_options" "$rc") || return 1
  2056. fi
  2057. found="$ts"
  2058. fi
  2059. printf "%s\0" "$s" "$rn" "$ts" "$rc" "$td"
  2060. done < "${cache_file}.wip" > "${cache_file}.wip.new"
  2061. mv "${cache_file}.wip.new" "${cache_file}.wip"
  2062. if [ "$found" ]; then ## this "use" declaration was satisfied
  2063. debug "${DARKYELLOW}$service${NORMAL} use declaration for relation" \
  2064. "${DARKBLUE}$relation_name${NORMAL} is satisfied with ${DARKYELLOW}$found${NORMAL}"
  2065. continue
  2066. fi
  2067. auto=$(echo "$relation_def" | shyaml get-value auto pair 2>/dev/null)
  2068. case "$auto" in
  2069. "pair"|"summon")
  2070. service_list=()
  2071. array_read-0 service_list < <(array_keys_to_stdin services)
  2072. providers=()
  2073. providers_def=()
  2074. array_read-0 providers providers_def < <(_get_services_providing "$relation_name" "${service_list[@]}")
  2075. if [ "${#providers[@]}" == 1 ]; then
  2076. ts="${providers[0]}"
  2077. debug "Auto-pairs ${DARKYELLOW}$service${NORMAL}" \
  2078. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2079. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2080. "${providers_def[0]}" "$relation_def" \
  2081. >> "${cache_file}.wip"
  2082. ## Adding service
  2083. [ "${services[$ts]}" ] && continue
  2084. array_read-0 new_services_uses < <(_get_services_uses "$ts")
  2085. services[$ts]=1
  2086. changed=1
  2087. continue
  2088. elif [ "${#providers[@]}" -gt 1 ]; then
  2089. msg=""
  2090. warn "No auto-pairing ${DARKYELLOW}$service${NORMAL}" \
  2091. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2092. "(> 1 provider)."
  2093. continue
  2094. else
  2095. if [ "$auto" == "summon" ]; then
  2096. summon+=("$service" "$relation_name" "$relation_def")
  2097. fi
  2098. fi
  2099. ;;
  2100. ""|null|disable|disabled)
  2101. :
  2102. ;;
  2103. *)
  2104. err "Invalid ${WHITE}auto${NORMAL} value '$auto'."
  2105. return 1
  2106. ;;
  2107. esac
  2108. constraint=$(echo "$relation_def" | shyaml get-value constraint auto-pair 2>/dev/null)
  2109. case "$constraint" in
  2110. "required")
  2111. required+=("$service" "$relation_name" "$relation_def")
  2112. ;;
  2113. "recommended")
  2114. recommended+=("$service" "$relation_name" "$relation_def")
  2115. ;;
  2116. "optional")
  2117. optional+=("$service" "$relation_name" "$relation_def")
  2118. ;;
  2119. *)
  2120. err "Invalid ${WHITE}constraint${NORMAL} value '$constraint'."
  2121. return 1
  2122. ;;
  2123. esac
  2124. new_services_uses+=("$service" "$relation_name" "$relation_def") ## re-queue it
  2125. done
  2126. services_uses=("${new_services_uses[@]}")
  2127. if [ "$changed" ]; then
  2128. continue
  2129. fi
  2130. ## situation is stable
  2131. if [ "${#summon[@]}" != 0 ]; then
  2132. while [ "${#summon[@]}" != 0 ]; do
  2133. service="${summon[0]}"
  2134. relation_name="${summon[1]}"
  2135. relation_def="${summon[2]}"
  2136. summon=("${summon[@]:3}")
  2137. providers=()
  2138. providers_def=()
  2139. array_read-0 providers providers_def < <(_get_charm_providing "$relation_name" "${service_list[@]}")
  2140. if [ "${#providers[@]}" == 0 ]; then
  2141. die "Summoning a ${DARKBLUE}$relation_name${NORMAL} provider failed: none were found in charm store."
  2142. fi
  2143. if [ "${#providers[@]}" -gt 1 ]; then
  2144. warn "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2145. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2146. "(> 1 provider). Choosing first."
  2147. fi
  2148. ts="${providers[0]}"
  2149. ## YYYvlab: should be seen even in no debug mode no ?
  2150. debug "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2151. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2152. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2153. "${providers_def[0]}" "$relation_def" \
  2154. >> "${cache_file}.wip"
  2155. ## Adding service
  2156. [ "${services[$ts]}" ] && continue
  2157. array_read-0 services_uses < <(_get_services_uses "$ts")
  2158. services[$ts]=1
  2159. changed=1
  2160. done
  2161. continue
  2162. fi
  2163. [ "$NO_CONSTRAINT_CHECK" ] && break
  2164. if [ "${#required[@]}" != 0 ]; then
  2165. echo "$(_display_solves required)" | sed -r "s/^/${RED}||${NORMAL} /g" >&2
  2166. err "Required relations not satisfied"
  2167. return 1
  2168. fi
  2169. if [ "${#recommended[@]}" != 0 ]; then
  2170. ## make recommendation
  2171. echo "$(_display_solves recommended)" | sed -r "s/^/${YELLOW}||${NORMAL} /g" >&2
  2172. fi
  2173. if [ "${#optional[@]}" != 0 ]; then
  2174. ## inform about options
  2175. echo "$(_display_solves optional)" | sed -r "s/^/${BLUE}||${NORMAL} /g" >&2
  2176. fi
  2177. # if [ "${#required[@]}" != 0 ]; then
  2178. # err "Required relations not satisfied"
  2179. # return 1
  2180. # fi
  2181. if [ "${#recommended[@]}" != 0 ]; then
  2182. warn "Recommended relations not satisfied"
  2183. fi
  2184. break
  2185. done
  2186. if [ "$?" != 0 ]; then
  2187. rm -f "${cache_file}"{,.wip,.wip.new} ## no cache
  2188. return 1
  2189. fi
  2190. export ALL_RELATIONS="$cache_file"
  2191. mv "${cache_file}"{.wip,}
  2192. cat "$cache_file"
  2193. }
  2194. export -f get_all_relations
  2195. _display_solves() {
  2196. local array_name="$1" by_relation msg
  2197. ## inform about options
  2198. msg=""
  2199. declare -A by_relation
  2200. while read-0 service relation_name relation_def; do
  2201. solves=$(printf "%s" "$relation_def" | shyaml -y get-value solves 2>/dev/null);
  2202. auto=$(printf "%s" "$relation_def" | shyaml get-value auto 2>/dev/null);
  2203. if [ -z "$solves" ]; then
  2204. continue
  2205. fi
  2206. by_relation[$relation_name]+=$(printf "\n %s" "${DARKYELLOW}$service$NORMAL for:")
  2207. if [ "$auto" == "pair" ]; then
  2208. requirement="add provider in cluster to auto-pair"
  2209. else
  2210. requirement="add explicit relation"
  2211. fi
  2212. while read-0 name def; do
  2213. by_relation[$relation_name]+=$(printf "\n - ${DARKCYAN}%-15s${NORMAL} %s (%s)" "$name" "$def" "$requirement")
  2214. done < <(printf "%s" "$solves" | shyaml key-values-0)
  2215. done < <(array_values_to_stdin "$array_name")
  2216. while read-0 relation_name message; do
  2217. msg+="$(printf "\n${DARKBLUE}%s$NORMAL provider is $array_name by%s" \
  2218. "$relation_name" "$message" )"
  2219. done < <(array_kv_to_stdin by_relation)
  2220. if [ "$msg" ]; then
  2221. printf "%s\n" "${msg:1}"
  2222. fi
  2223. }
  2224. get_compose_relation_def() {
  2225. local service="$1" relation="$2" relation_name target_service relation_config tech_dep
  2226. while read-0 relation_name target_service relation_config tech_dep; do
  2227. [ "$relation_name" == "$relation" ] || continue
  2228. printf "%s\0%s\0%s\0" "$target_service" "$relation_config" "$tech_dep"
  2229. done < <(get_compose_relations "$service") || return 1
  2230. }
  2231. export -f get_compose_relation_def
  2232. run_service_relations () {
  2233. local service services loaded subservices subservice
  2234. PROJECT_NAME=$(get_default_project_name) || return 1
  2235. export PROJECT_NAME
  2236. declare -A loaded
  2237. subservices=$(get_ordered_service_dependencies "$@") || return 1
  2238. for service in $subservices; do
  2239. # debug "Upping dep's relations of ${DARKYELLOW}$service${NORMAL}:"
  2240. for subservice in $(get_service_deps "$service") "$service"; do
  2241. [ "${loaded[$subservice]}" ] && continue
  2242. export BASE_SERVICE_NAME=$service
  2243. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  2244. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  2245. RELATION_BASE_COMPOSE_DEF=$(get_compose_service_def "$subservice") || return 1
  2246. export RELATION_BASE_COMPOSE_DEF MASTER_BASE_{CHARM,SERVICE}_NAME
  2247. # debug " Relations of ${DARKYELLOW}$subservice${NORMAL}:"
  2248. while read-0 relation_name target_service relation_config tech_dep; do
  2249. export relation_config
  2250. export TARGET_SERVICE_NAME=$target_service
  2251. MASTER_TARGET_SERVICE_NAME=$(get_top_master_service_for_service "$target_service") || return 1
  2252. MASTER_TARGET_CHARM_NAME=$(get_service_charm "$MASTER_TARGET_SERVICE_NAME") || return 1
  2253. RELATION_TARGET_COMPOSE_DEF=$(get_compose_service_def "$target_service") || return 1
  2254. export RELATION_TARGET_COMPOSE_DEF MASTER_TARGET_{CHARM,SERVICE}_NAME
  2255. Wrap "${wrap_opts[@]}" -d "Building $DARKYELLOW$subservice$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW$target_service$NORMAL" <<EOF || return 1
  2256. _run_service_relation "$relation_name" "$subservice" "$target_service" "\$relation_config"
  2257. EOF
  2258. done < <(get_service_relations "$subservice") || return 1
  2259. loaded[$subservice]=1
  2260. done
  2261. done
  2262. }
  2263. export -f run_service_relations
  2264. _run_service_action_direct() {
  2265. local service="$1" action="$2" charm _dummy
  2266. shift; shift
  2267. read-0 charm || true ## against 'set -e' that could be setup in parent scripts
  2268. if read-0 _dummy || [ "$_dummy" ]; then
  2269. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2270. return 1
  2271. fi
  2272. export state_tmpdir
  2273. (
  2274. set +e ## Prevents unwanted leaks from parent shell
  2275. export COMPOSE_CONFIG=$(get_compose_yml_content)
  2276. export METADATA_CONFIG=$(charm.metadata "$charm")
  2277. export SERVICE_NAME=$service
  2278. export ACTION_NAME=$action
  2279. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2280. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  2281. export SERVICE_DATASTORE="$DATASTORE/$service"
  2282. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2283. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2284. stdbuf -oL -eL bash -c 'charm.run_direct_action "$@"' -- "$charm" "$action" "$@"
  2285. ) 0<&6 ## inject general stdin
  2286. }
  2287. export -f _run_service_action_direct
  2288. _run_service_action_relation() {
  2289. local service="$1" action="$2" charm target_charm relation_name relation_config _dummy
  2290. shift; shift
  2291. read-0 charm target_service target_charm relation_name relation_config || true
  2292. if read-0 _dummy || [ "$_dummy" ]; then
  2293. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2294. return 1
  2295. fi
  2296. export RELATION_DATA_FILE=$(get_relation_data_file "$service" "$target_service" "$relation_name" "$relation_config")
  2297. export action_errlvl_file="$state_tmpdir/action-$service-$charm-$action-errlvl"
  2298. export state_tmpdir
  2299. {
  2300. (
  2301. set +e ## Prevents unwanted leaks from parent shell
  2302. export METADATA_CONFIG=$(charm.metadata "$charm")
  2303. export SERVICE_NAME=$service
  2304. export RELATION_TARGET_SERVICE="$target_service"
  2305. export RELATION_TARGET_CHARM="$target_charm"
  2306. export RELATION_BASE_SERVICE="$service"
  2307. export RELATION_BASE_CHARM="$charm"
  2308. export ACTION_NAME=$action
  2309. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2310. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  2311. export SERVICE_DATASTORE="$DATASTORE/$service"
  2312. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2313. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2314. stdbuf -oL -eL bash -c 'charm.run_relation_action "$@"' -- "$target_charm" "$relation_name" "$action" "$@"
  2315. echo "$?" > "$action_errlvl_file"
  2316. ) | logstdout "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${GREEN}@${NORMAL}"
  2317. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/${DARKCYAN}$action${NORMAL} ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  2318. if ! [ -e "$action_errlvl_file" ]; then
  2319. err "Action $DARKYELLOW$service$NORMAL:$DARKCYAN$action$NORMAL has failed without having time" \
  2320. "to output an errlvl"
  2321. return 1
  2322. fi
  2323. return "$(cat "$action_errlvl_file")"
  2324. }
  2325. export -f _run_service_action_relation
  2326. get_relation_data_dir() {
  2327. local service="$1" target_service="$2" relation_name="$3" \
  2328. cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  2329. if [ -e "$cache_file" ]; then
  2330. # debug "$FUNCNAME: cache hit ($*)"
  2331. cat "$cache_file"
  2332. return 0
  2333. fi
  2334. project=$(get_default_project_name) || return 1
  2335. relation_dir="$VARDIR/relations/$project/${service}-${target_service}/$relation_name"
  2336. if ! [ -d "$relation_dir" ]; then
  2337. mkdir -p "$relation_dir" || return 1
  2338. chmod go-rwx "$relation_dir" || return 1 ## protecting this directory
  2339. fi
  2340. echo "$relation_dir" | tee "$cache_file"
  2341. }
  2342. export -f get_relation_data_dir
  2343. get_relation_data_file() {
  2344. local service="$1" target_service="$2" relation_name="$3" relation_config="$4"
  2345. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  2346. relation_data_file="$relation_dir/data"
  2347. new=
  2348. if [ -e "$relation_data_file" ]; then
  2349. ## Has reference changed ?
  2350. new_md5=$(echo "$relation_config" | md5_compat)
  2351. if [ "$new_md5" != "$(cat "$relation_data_file.md5_ref" 2>/dev/null)" ]; then
  2352. new=true
  2353. fi
  2354. else
  2355. new=true
  2356. fi
  2357. if [ "$new" ]; then
  2358. echo "$relation_config" > "$relation_data_file"
  2359. chmod go-rwx "$relation_data_file" ## protecting this file
  2360. echo "$relation_config" | md5_compat > "$relation_data_file.md5_ref"
  2361. fi
  2362. echo "$relation_data_file"
  2363. }
  2364. export -f get_relation_data_file
  2365. has_service_action () {
  2366. local service="$1" action="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2367. charm target_charm relation_name target_service relation_config _tech_dep
  2368. if [ -e "$cache_file" ]; then
  2369. # debug "$FUNCNAME: cache hit ($*)"
  2370. cat "$cache_file"
  2371. return 0
  2372. fi
  2373. charm=$(get_service_charm "$service") || return 1
  2374. ## Action directly provided ?
  2375. if charm.has_direct_action "$charm" "$action" >/dev/null; then
  2376. echo -en "direct\0$charm" | tee "$cache_file"
  2377. return 0
  2378. fi
  2379. ## Action provided by relation ?
  2380. while read-0 relation_name target_service relation_config _tech_dep; do
  2381. target_charm=$(get_service_charm "$target_service") || return 1
  2382. if charm.has_relation_action "$target_charm" "$relation_name" "$action" >/dev/null; then
  2383. echo -en "relation\0$charm\0$target_service\0$target_charm\0$relation_name\0$relation_config" | tee "$cache_file"
  2384. return 0
  2385. fi
  2386. done < <(get_service_relations "$service")
  2387. return 1
  2388. # master=$(get_top_master_service_for_service "$service")
  2389. # [ "$master" == "$charm" ] && return 1
  2390. # has_service_action "$master" "$action"
  2391. }
  2392. export -f has_service_action
  2393. run_service_action () {
  2394. local service="$1" action="$2" errlvl
  2395. shift ; shift
  2396. exec 6<&0 ## saving stdin
  2397. {
  2398. if ! read-0 action_type; then
  2399. info "Service $DARKYELLOW$service$NORMAL does not have any action $DARKCYAN$action$NORMAL defined."
  2400. info " Add an executable script to 'actions/$action' to implement action."
  2401. return 1
  2402. fi
  2403. "_run_service_action_${action_type}" "$service" "$action" "$@"
  2404. errlvl="$?"
  2405. } < <(has_service_action "$service" "$action")
  2406. exec 0<&6 6<&- ## restoring stdin
  2407. return "$errlvl"
  2408. }
  2409. export -f run_service_action
  2410. get_compose_relation_config() {
  2411. local service=$1 relation_config cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  2412. if [ -e "$cache_file" ]; then
  2413. # debug "$FUNCNAME: cache hit ($*)"
  2414. cat "$cache_file"
  2415. return 0
  2416. fi
  2417. compose_service_def=$(get_compose_service_def "$service") || return 1
  2418. echo "$compose_service_def" | shyaml get-value "relations" 2>/dev/null | tee "$cache_file"
  2419. }
  2420. export -f get_compose_relation_config
  2421. # ## Return key-values-0
  2422. # get_compose_relation_config_for_service() {
  2423. # local service=$1 relation_name=$2 relation_config
  2424. # compose_service_relations=$(get_compose_relation_config "$service") || return 1
  2425. # if ! relation_config=$(
  2426. # echo "$compose_service_relations" |
  2427. # shyaml get-value "${relation_name}" 2>/dev/null); then
  2428. # err "Couldn't find $DARKYELLOW${service}$NORMAL/${WHITE}${relation_name}$NORMAL" \
  2429. # "relation config in compose configuration."
  2430. # return 1
  2431. # fi
  2432. # if [ -z "$relation_config" ]; then
  2433. # err "Relation ${WHITE}mysql-database$NORMAL is empty in compose configuration."
  2434. # return 1
  2435. # fi
  2436. # if ! echo "$relation_config" | shyaml key-values-0 2>/dev/null; then
  2437. # err "No key/values in ${DARKBLUE}mysql-database$NORMAL of compose config."
  2438. # return 1
  2439. # fi
  2440. # }
  2441. # export -f get_compose_relation_config_for_service
  2442. _get_container_relation() {
  2443. local metadata=$1 found relation_name relation_def
  2444. found=
  2445. while read-0 relation_name relation_def; do
  2446. [ "$(echo "$relation_def" | shyaml get-value "scope" 2>/dev/null)" == "container" ] && {
  2447. found="$relation_name"
  2448. break
  2449. }
  2450. done < <(_get_charm_metadata_uses "$metadata")
  2451. if [ -z "$found" ]; then
  2452. die "Charm $DARKPINK$charm$NORMAL is a subordinate but does not have any required relation declaration with" \
  2453. "${WHITE}scope${NORMAL} set to 'container'."
  2454. fi
  2455. printf "%s" "$found"
  2456. }
  2457. _get_master_service_for_service_cached () {
  2458. local service="$1" charm="$2" metadata="$3" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2459. charm requires master_charm target_charm target_service service_def found
  2460. if [ -e "$cache_file" ]; then
  2461. # debug "$FUNCNAME: STATIC cache hit ($1)"
  2462. cat "$cache_file" &&
  2463. touch "$cache_file" || return 1
  2464. return 0
  2465. fi
  2466. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" != "True" ]; then
  2467. ## just return service name
  2468. echo "$service" | tee "$cache_file"
  2469. return 0
  2470. fi
  2471. ## Action provided by relation ?
  2472. container_relation=$(_get_container_relation "$metadata") || exit 1
  2473. read-0 target_service _ _ < <(get_service_relation "$service" "$container_relation")
  2474. if [ -z "$target_service" ]; then
  2475. err "Couldn't find ${WHITE}relations.${container_relation}${NORMAL} in" \
  2476. "${DARKYELLOW}$service$NORMAL compose definition."
  2477. err ${FUNCNAME[@]}
  2478. return 1
  2479. fi
  2480. echo "$target_service" | tee "$cache_file"
  2481. }
  2482. export -f _get_master_service_for_service_cached
  2483. get_master_service_for_service() {
  2484. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2485. charm metadata result
  2486. if [ -e "$cache_file" ]; then
  2487. # debug "$FUNCNAME: SESSION cache hit ($*)"
  2488. cat "$cache_file" || return 1
  2489. return 0
  2490. fi
  2491. charm=$(get_service_charm "$service") || return 1
  2492. metadata=$(charm.metadata "$charm" 2>/dev/null) || {
  2493. metadata=""
  2494. warn "No charm $DARKPINK$charm$NORMAL found."
  2495. }
  2496. result=$(_get_master_service_for_service_cached "$service" "$charm" "$metadata") || return 1
  2497. echo "$result" | tee "$cache_file" || return 1
  2498. }
  2499. export -f get_master_service_for_service
  2500. get_top_master_service_for_service() {
  2501. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2502. current_service
  2503. if [ -e "$cache_file" ]; then
  2504. # debug "$FUNCNAME: cache hit ($*)"
  2505. cat "$cache_file"
  2506. return 0
  2507. fi
  2508. current_service="$service"
  2509. while true; do
  2510. master_service=$(get_master_service_for_service "$current_service") || return 1
  2511. [ "$master_service" == "$current_service" ] && break
  2512. current_service="$master_service"
  2513. done
  2514. echo "$current_service" | tee "$cache_file"
  2515. return 0
  2516. }
  2517. export -f get_top_master_service_for_service
  2518. ##
  2519. ## The result is a mixin that is not always a complete valid
  2520. ## docker-compose entry (thinking of subordinates). The result
  2521. ## will be merge with master charms.
  2522. _get_docker_compose_mixin_from_metadata_cached() {
  2523. local service="$1" charm="$2" metadata="$3" \
  2524. has_build_dir="$4" \
  2525. cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2526. metadata_file metadata volumes docker_compose subordinate image mixin mixins
  2527. if [ -e "$cache_file" ]; then
  2528. #debug "$FUNCNAME: STATIC cache hit $1"
  2529. cat "$cache_file" &&
  2530. touch "$cache_file" || return 1
  2531. return 0
  2532. fi
  2533. mixins=("$(echo -en "labels:\n- compose.charm=$charm")")
  2534. if [ "$metadata" ]; then
  2535. ## resources to volumes
  2536. volumes=$(
  2537. for resource_type in data config; do
  2538. while read-0 resource; do
  2539. eval "echo \" - \$HOST_${resource_type^^}STORE/\$service\$resource:\$resource:rw\""
  2540. done < <(echo "$metadata" | shyaml get-values-0 "${resource_type}-resources" 2>/dev/null)
  2541. done
  2542. while read-0 resource; do
  2543. if [[ "$resource" == /*:/*:* ]]; then
  2544. echo " - $resource"
  2545. elif [[ "$resource" == /*:/* ]]; then
  2546. echo " - $resource:rw"
  2547. elif [[ "$resource" == /*:* ]]; then
  2548. echo " - ${resource%%:*}:$resource"
  2549. elif [[ "$resource" =~ ^/[^:]+$ ]]; then
  2550. echo " - $resource:$resource:rw"
  2551. else
  2552. die "Invalid host-resource specified in 'metadata.yml'."
  2553. fi
  2554. done < <(printf "%s" "$metadata" | shyaml get-values-0 "host-resources" 2>/dev/null)
  2555. while read-0 resource; do
  2556. dest="$(charm.get_dir "$charm")/resources$resource"
  2557. if ! [ -e "$dest" ]; then
  2558. die "charm-resource: '$resource' does not exist (file: '$dest')."
  2559. fi
  2560. echo " - $dest:$resource:ro"
  2561. done < <(echo "$metadata" | shyaml get-values-0 "charm-resources" 2>/dev/null)
  2562. ) || return 1
  2563. if [ "$volumes" ]; then
  2564. mixins+=("volumes:"$'\n'"$volumes")
  2565. fi
  2566. type="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  2567. if [ "$type" != "run-once" ]; then
  2568. mixins+=("restart: unless-stopped")
  2569. fi
  2570. docker_compose=$(printf "%s" "$metadata" | shyaml get-value -y "docker-compose" 2>/dev/null) || true
  2571. if [ "$docker_compose" ]; then
  2572. mixins+=("$docker_compose")
  2573. fi
  2574. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" == "True" ]; then
  2575. subordinate=true
  2576. fi
  2577. fi
  2578. image=$(echo "$metadata" | shyaml get-value "docker-image" 2>/dev/null)
  2579. [ "$image" == "None" ] && image=""
  2580. if [ "$image" ]; then
  2581. if [ "$subordinate" ]; then
  2582. err "Subordinate charm can not have a ${WHITE}docker-image${NORMAL} value."
  2583. return 1
  2584. fi
  2585. mixins+=("image: $image")
  2586. elif [ "$has_build_dir" ]; then
  2587. if [ "$subordinate" ]; then
  2588. err "Subordinate charm can not have a 'build' sub directory."
  2589. return 1
  2590. fi
  2591. mixins+=("build: $(charm.get_dir "$charm")/build")
  2592. fi
  2593. mixin=$(merge_yaml_str "${mixins[@]}") || {
  2594. err "Failed to merge mixins from ${DARKPINK}${charm}${NORMAL} metadata."
  2595. return 1
  2596. }
  2597. echo "$mixin" | tee "$cache_file"
  2598. }
  2599. export -f _get_docker_compose_mixin_from_metadata_cached
  2600. get_docker_compose_mixin_from_metadata() {
  2601. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  2602. if [ -e "$cache_file" ]; then
  2603. #debug "$FUNCNAME: SESSION cache hit ($*)"
  2604. cat "$cache_file"
  2605. return 0
  2606. fi
  2607. charm=$(get_service_charm "$service") || return 1
  2608. metadata="$(charm.metadata "$charm" 2>/dev/null)" || return 1
  2609. has_build_dir=
  2610. [ -d "$(charm.get_dir "$charm")/build" ] && has_build_dir=true
  2611. mixin=$(_get_docker_compose_mixin_from_metadata_cached "$service" "$charm" "$metadata" "$has_build_dir") || return 1
  2612. echo "$mixin" | tee "$cache_file"
  2613. }
  2614. export -f get_docker_compose_mixin_from_metadata
  2615. _save() {
  2616. local name="$1"
  2617. cat - | tee -a "$docker_compose_dir/.data/$name"
  2618. }
  2619. export -f _save
  2620. get_default_project_name() {
  2621. local normalized_path compose_yml_location name
  2622. if [ -n "$DEFAULT_PROJECT_NAME" ]; then
  2623. echo "$DEFAULT_PROJECT_NAME"
  2624. return 0
  2625. fi
  2626. compose_yml_location="$(get_compose_yml_location)" || return 1
  2627. if [ -n "$compose_yml_location" ]; then
  2628. if normalized_path=$(readlink -f "$compose_yml_location"); then
  2629. name="${normalized_path%/*}" ## dirname
  2630. name="${name##*/}" ## basename
  2631. name="${name%%-deploy}" ## remove any '-deploy'
  2632. name="${name,,}" ## lowercase
  2633. e "$name"
  2634. return 0
  2635. fi
  2636. fi
  2637. echo "orphan"
  2638. return 0
  2639. }
  2640. export -f get_default_project_name
  2641. get_running_compose_containers() {
  2642. ## XXXvlab: docker bug: there will be a final newline anyway
  2643. docker ps --filter label="compose.service" --format='{{.ID}}'
  2644. }
  2645. export -f get_running_compose_containers
  2646. get_healthy_container_ip_for_service () {
  2647. local service="$1" port="$2" timeout=${3:-60}
  2648. local containers container container_network container_ip
  2649. containers="$(get_running_containers_for_service "$service")"
  2650. if [ -z "$containers" ]; then
  2651. err "No containers running for service $DARKYELLOW$service$NORMAL."
  2652. exit 1
  2653. fi
  2654. ## XXXvlab: taking first container is probably not a good idea
  2655. container="$(echo "$containers" | head -n 1)"
  2656. ## XXXvlab: taking first ip is probably not a good idea
  2657. read-0 container_network container_ip < <(get_container_network_ip "$container")
  2658. if [ -z "$container_ip" ]; then
  2659. err "Can't get container's IP. You should check health of" \
  2660. "${DARKYELLOW}$service${NORMAL}'s container."
  2661. exit 1
  2662. fi
  2663. wait_for_tcp_port "$container_network" "$container_ip:8069" 4 || {
  2664. err "TCP port of ${DARKYELLOW}$service${NORMAL}'s container doesn't seem open"
  2665. echo " Please check that container is healthy. Here are last logs:" >&2
  2666. docker logs "$container" --tail=10 | prefix " ${GRAY}|${NORMAL} " >&2
  2667. exit 1
  2668. }
  2669. info "Host/Port ${container_ip}:${port} checked ${GREEN}open${NORMAL}."
  2670. echo "$container_network:$container_ip"
  2671. }
  2672. export -f get_healthy_container_ip_for_service
  2673. switch_to_relation_service() {
  2674. local relation="$1"
  2675. ## XXXvlab: can't get real config here
  2676. if ! read-0 ts _ _ < <(get_service_relation "$SERVICE_NAME" "$relation"); then
  2677. err "Couldn't find relation ${DARKCYAN}$relation${NORMAL}."
  2678. exit 1
  2679. fi
  2680. export SERVICE_NAME="$ts"
  2681. export SERVICE_DATASTORE="$DATASTORE/$SERVICE_NAME"
  2682. DOCKER_BASE_IMAGE=$(service_base_docker_image "$SERVICE_NAME")
  2683. export DOCKER_BASE_IMAGE
  2684. target_charm=$(get_service_charm "$ts") || exit 1
  2685. target_charm_path=$(charm.get_dir "$target_charm") || exit 1
  2686. cd "$target_charm_path"
  2687. }
  2688. export -f switch_to_relation_service
  2689. get_volumes_for_container() {
  2690. local container="$1"
  2691. docker inspect \
  2692. --format '{{range $mount := .Mounts}}{{$mount.Source}}{{"\x00"}}{{$mount.Destination}}{{"\x00"}}{{end}}' \
  2693. "$container"
  2694. }
  2695. export -f get_volumes_for_container
  2696. is_volume_used() {
  2697. local volume="$1" container_id src dst
  2698. while read -r container_id; do
  2699. while read-0 src dst; do
  2700. [[ "$src/" == "$volume"/* ]] && return 0
  2701. done < <(get_volumes_for_container "$container_id")
  2702. done < <(get_running_compose_containers)
  2703. return 1
  2704. }
  2705. export -f is_volume_used
  2706. clean_unused_docker_compose() {
  2707. for f in /var/lib/compose/docker-compose/*; do
  2708. [ -e "$f" ] || continue
  2709. is_volume_used "$f" && continue
  2710. debug "Cleaning unused docker-compose ${f##*/}"
  2711. rm -rf "$f" || return 1
  2712. done
  2713. return 0
  2714. }
  2715. export -f clean_unused_docker_compose
  2716. stdin_get_hash() {
  2717. local sha
  2718. sha=$(sha256sum) || return 1
  2719. sha=${sha:0:64}
  2720. echo "$sha"
  2721. }
  2722. export -f stdin_get_hash
  2723. file_get_hash() {
  2724. stdin_get_hash < "$1" || return 1
  2725. }
  2726. export -f file_get_hash
  2727. docker_compose_store() {
  2728. local file="$1" sha
  2729. sha=$(file_get_hash "$file") || return 1
  2730. project=$(get_default_project_name) || return 1
  2731. dst="/var/lib/compose/docker-compose/$sha/$project"
  2732. mkdir -p "$dst" || return 1
  2733. cat <<EOF > "$dst/.env" || return 1
  2734. DOCKER_COMPOSE_PATH=$dst
  2735. COMPOSE_HTTP_TIMEOUT=7200
  2736. EOF
  2737. cp "$file" "$dst/docker-compose.yml" || return 1
  2738. mkdir -p "$dst/bin" || return 1
  2739. cat <<EOF > "$dst/bin/dc" || return 1
  2740. #!/bin/bash
  2741. $(declare -f read-0)
  2742. docker_run_opts=()
  2743. while read-0 opt; do
  2744. if [[ "\$opt" == "!env:"* ]]; then
  2745. opt="\${opt##!env:}"
  2746. var="\${opt%%=*}"
  2747. value="\${opt#*=}"
  2748. export "\$var"="\$value"
  2749. else
  2750. docker_run_opts+=("\$opt")
  2751. fi
  2752. done < <(cat "$COMPOSE_LAUNCHER_OPTS")
  2753. docker_run_opts+=(
  2754. "-w" "$dst"
  2755. "--entrypoint" "/usr/local/bin/docker-compose"
  2756. )
  2757. [ -t 1 ] && {
  2758. docker_run_opts+=("-ti")
  2759. }
  2760. exec docker run --rm "\${docker_run_opts[@]}" "\${COMPOSE_DOCKER_IMAGE:-docker.0k.io/compose}" "\$@"
  2761. EOF
  2762. chmod +x "$dst/bin/dc" || return 1
  2763. printf "%s" "$sha"
  2764. }
  2765. export -f docker_compose_store
  2766. launch_docker_compose() {
  2767. local charm docker_compose_tmpdir docker_compose_dir
  2768. docker_compose_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  2769. #debug "Creating temporary docker-compose directory in '$docker_compose_tmpdir'."
  2770. trap_add EXIT "rm -rf \"$docker_compose_tmpdir\""
  2771. ## docker-compose will name network from the parent dir name
  2772. project=$(get_default_project_name)
  2773. mkdir -p "$docker_compose_tmpdir/$project"
  2774. docker_compose_dir="$docker_compose_tmpdir/$project"
  2775. get_docker_compose $SERVICE_PACK > "$docker_compose_dir/docker-compose.yml" || return 1
  2776. if [ -e "$state_tmpdir/to-merge-in-docker-compose.yml" ]; then
  2777. # debug "Merging some config data in docker-compose.yml:"
  2778. # debug "$(cat $state_tmpdir/to-merge-in-docker-compose.yml)"
  2779. _config_merge "$docker_compose_dir/docker-compose.yml" "$state_tmpdir/to-merge-in-docker-compose.yml" || return 1
  2780. fi
  2781. if [ -z "$(echo $(cat "$docker_compose_dir/docker-compose.yml"))" ]; then
  2782. die "Generated 'docker-compose.yml' is unexpectedly empty."
  2783. fi
  2784. ## XXXvlab: could be more specific and only link the needed charms
  2785. ## XXXvlab: why do we need these links ? If this is for the build command, then it is not useful anymore.
  2786. # for charm in $(shyaml keys services < "$docker_compose_dir/docker-compose.yml"); do
  2787. # if charm.exists "$charm"; then
  2788. # ln -sf "$(charm.get_dir "$charm")" "$docker_compose_dir/$charm" || exit 1
  2789. # fi
  2790. # done
  2791. mkdir "$docker_compose_dir/.data"
  2792. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  2793. sha=$(docker_compose_store "$docker_compose_dir/docker-compose.yml") || return 1
  2794. fi
  2795. {
  2796. {
  2797. {
  2798. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  2799. cd "/var/lib/compose/docker-compose/$sha/$project" || return 1
  2800. else
  2801. cd "$docker_compose_dir" || return 1
  2802. fi
  2803. if [ -f ".env" ]; then
  2804. debug "${WHITE}.env$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  2805. debug "$(cat ".env" | prefix " $GRAY|$NORMAL ")"
  2806. fi
  2807. debug "${WHITE}docker-compose.yml$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  2808. debug "$(cat "docker-compose.yml" | prefix " $GRAY|$NORMAL ")"
  2809. debug "${WHITE}Launching$NORMAL: docker-compose $@"
  2810. if [ "$DRY_COMPOSE_RUN" ]; then
  2811. echo docker-compose "$@"
  2812. else
  2813. docker-compose "$@"
  2814. fi
  2815. echo "$?" > "$docker_compose_dir/.data/errlvl"
  2816. } | _save stdout
  2817. } 3>&1 1>&2 2>&3 | _save stderr
  2818. } 3>&1 1>&2 2>&3
  2819. if tail -n 1 "$docker_compose_dir/.data/stderr" | grep -E "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
  2820. err "Detected bug https://github.com/docker/docker/issues/4036 ... "
  2821. err "Please re-launch your command, or switch from 'devicemapper' driver to 'overlayfs' or 'aufs'."
  2822. fi
  2823. docker_compose_errlvl="$(cat "$docker_compose_dir/.data/errlvl" 2>/dev/null)"
  2824. if [ -z "$docker_compose_errlvl" ]; then
  2825. err "Something went wrong before you could gather docker-compose errorlevel."
  2826. return 1
  2827. fi
  2828. return "$docker_compose_errlvl"
  2829. }
  2830. export -f launch_docker_compose
  2831. get_compose_yml_location() {
  2832. if ! [ -z ${COMPOSE_YML_FILE+x} ]; then ## if set, even if empty
  2833. echo "$COMPOSE_YML_FILE"
  2834. return 0
  2835. fi
  2836. parent=$(while ! [ -f "./compose.yml" ]; do
  2837. [ "$PWD" == "/" ] && exit 0
  2838. cd ..
  2839. done; echo "$PWD"
  2840. )
  2841. if [ "$parent" ]; then
  2842. echo "$parent/compose.yml"
  2843. return 0
  2844. fi
  2845. ## XXXvlab: do we need this additional environment variable,
  2846. ## COMPOSE_YML_FILE is not sufficient ?
  2847. if [ "$DEFAULT_COMPOSE_FILE" ]; then
  2848. if ! [ -e "$DEFAULT_COMPOSE_FILE" ]; then
  2849. warn "No 'compose.yml' was found in current or parent dirs," \
  2850. "and \$DEFAULT_COMPOSE_FILE points to an unexistent file." \
  2851. "(${DEFAULT_COMPOSE_FILE})"
  2852. return 0
  2853. fi
  2854. echo "$DEFAULT_COMPOSE_FILE"
  2855. return 0
  2856. fi
  2857. warn "No 'compose.yml' was found in current or parent dirs, and no \$DEFAULT_COMPOSE_FILE was set."
  2858. return 0
  2859. }
  2860. export -f get_compose_yml_location
  2861. get_compose_yml_content() {
  2862. local cache_file="$state_tmpdir/$FUNCNAME.cache"
  2863. if [ -e "$cache_file" ]; then
  2864. cat "$cache_file" &&
  2865. touch "$cache_file" || return 1
  2866. return 0
  2867. fi
  2868. if [ -z "$COMPOSE_YML_FILE" ]; then
  2869. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  2870. fi
  2871. if [ -e "$COMPOSE_YML_FILE" ]; then
  2872. debug "Found $WHITE$exname$NORMAL YAML file in '$COMPOSE_YML_FILE'."
  2873. COMPOSE_YML_CONTENT=$(cat "$COMPOSE_YML_FILE") || {
  2874. err "Could not read '$COMPOSE_YML_FILE'."
  2875. return 1
  2876. }
  2877. else
  2878. debug "No compose file found. Using an empty one."
  2879. COMPOSE_YML_CONTENT=""
  2880. fi
  2881. COMPOSE_YML_CONTENT=$(merge_yaml_str "$COMPOSE_YML_CONTENT" "${compose_contents[@]}") || return 1
  2882. output=$(echo "$COMPOSE_YML_CONTENT"| shyaml get-value 2>&1)
  2883. if [ "$?" != 0 ]; then
  2884. outputed_something=
  2885. while IFS='' read -r line1 && IFS='' read -r line2; do
  2886. [ "$outputed_something" ] || err "Invalid YAML in '$COMPOSE_YML_FILE':"
  2887. outputed_something=true
  2888. echo "$line1 $GRAY($line2)$NORMAL"
  2889. done < <(echo "$output" | grep ^yaml.scanner -A 100 |
  2890. sed -r 's/^ in "<stdin>", //g' | sed -r 's/^yaml.scanner.[a-zA-Z]+: //g') |
  2891. prefix " $GRAY|$NORMAL "
  2892. [ "$outputed_something" ] || {
  2893. err "Unexpected error while running 'shyaml get-value' on '$COMPOSE_YML_FILE':"
  2894. echo "$output" | prefix " $GRAY|$NORMAL "
  2895. }
  2896. return 1
  2897. fi
  2898. echo "$COMPOSE_YML_CONTENT" | tee "$cache_file" || return 1
  2899. }
  2900. export -f get_compose_yml_content
  2901. get_default_target_services() {
  2902. local services=("$@")
  2903. if [ -z "${services[*]}" ]; then
  2904. if [ "$DEFAULT_SERVICES" ]; then
  2905. debug "No service provided, using $WHITE\$DEFAULT_SERVICES$NORMAL variable." \
  2906. "Target services: $DARKYELLOW$DEFAULT_SERVICES$NORMAL"
  2907. services="$DEFAULT_SERVICES"
  2908. else
  2909. err "No service provided."
  2910. return 1
  2911. fi
  2912. fi
  2913. echo "${services[*]}"
  2914. }
  2915. export -f get_default_target_services
  2916. get_master_services() {
  2917. local loaded master_service service
  2918. declare -A loaded
  2919. for service in "$@"; do
  2920. master_service=$(get_top_master_service_for_service "$service") || return 1
  2921. if [ "${loaded[$master_service]}" ]; then
  2922. continue
  2923. fi
  2924. echo "$master_service"
  2925. loaded["$master_service"]=1
  2926. done | nspc
  2927. return "${PIPESTATUS[0]}"
  2928. }
  2929. export -f get_master_services
  2930. get_current_docker_container_id() {
  2931. local line
  2932. line=$(cat "/proc/self/cpuset") || return 1
  2933. [[ "$line" == *docker* ]] || return 1
  2934. echo "${line##*/}"
  2935. }
  2936. export -f get_current_docker_container_id
  2937. ## if we are in a docker compose, we might want to know what is the
  2938. ## real host path of some local paths.
  2939. get_host_path() {
  2940. local path="$1"
  2941. path=$(realpath "$path") || return 1
  2942. container_id=$(get_current_docker_container_id) || {
  2943. print "%s" "$path"
  2944. return 0
  2945. }
  2946. biggest_dst=
  2947. current_src=
  2948. while read-0 src dst; do
  2949. [[ "$path" == "$dst"* ]] || continue
  2950. if [[ "${#biggest_dst}" < "${#dst}" ]]; then
  2951. biggest_dst="$dst"
  2952. current_src="$src"
  2953. fi
  2954. done < <(get_volumes_for_container "$container_id")
  2955. if [ "$current_src" ]; then
  2956. printf "%s" "$current_src"
  2957. else
  2958. return 1
  2959. fi
  2960. }
  2961. export -f get_host_path
  2962. _setup_state_dir() {
  2963. export state_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  2964. #debug "Creating temporary state directory in '$state_tmpdir'."
  2965. # trap_add EXIT "debug \"Removing temporary state directory in $state_tmpdir.\";\
  2966. # rm -rf \"$state_tmpdir\""
  2967. trap_add EXIT "rm -rf \"$state_tmpdir\""
  2968. }
  2969. get_docker_compose_help_msg() {
  2970. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  2971. docker_compose_help_msg
  2972. if [ -e "$cache_file" ]; then
  2973. cat "$cache_file" &&
  2974. touch "$cache_file" || return 1
  2975. return 0
  2976. fi
  2977. docker_compose_help_msg=$(docker-compose $action --help 2>/dev/null) || return 1
  2978. echo "$docker_compose_help_msg" |
  2979. tee "$cache_file" || return 1
  2980. }
  2981. get_docker_compose_usage() {
  2982. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  2983. docker_compose_help_msg
  2984. if [ -e "$cache_file" ]; then
  2985. cat "$cache_file" &&
  2986. touch "$cache_file" || return 1
  2987. return 0
  2988. fi
  2989. docker_compose_help_msg=$(get_docker_compose_help_msg $action) || return 1
  2990. echo "$docker_compose_help_msg" |
  2991. grep -m 1 "^Usage:" -A 10000 |
  2992. egrep -m 1 "^\$" -B 10000 |
  2993. nspc |
  2994. sed -r 's/^Usage: //g' |
  2995. tee "$cache_file" || return 1
  2996. }
  2997. get_docker_compose_opts_help() {
  2998. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  2999. docker_compose_help_msg
  3000. if [ -e "$cache_file" ]; then
  3001. cat "$cache_file" &&
  3002. touch "$cache_file" || return 1
  3003. return 0
  3004. fi
  3005. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3006. echo "$docker_compose_opts_help" |
  3007. grep '^Options:' -A 20000 |
  3008. tail -n +2 |
  3009. { cat ; echo; } |
  3010. egrep -m 1 "^\S*\$" -B 10000 |
  3011. head -n -1 |
  3012. tee "$cache_file" || return 1
  3013. }
  3014. get_docker_compose_commands_help() {
  3015. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3016. docker_compose_help_msg
  3017. if [ -e "$cache_file" ]; then
  3018. cat "$cache_file" &&
  3019. touch "$cache_file" || return 1
  3020. return 0
  3021. fi
  3022. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3023. echo "$docker_compose_opts_help" |
  3024. grep '^Commands:' -A 20000 |
  3025. tail -n +2 |
  3026. { cat ; echo; } |
  3027. egrep -m 1 "^\S*\$" -B 10000 |
  3028. head -n -1 |
  3029. tee "$cache_file" || return 1
  3030. }
  3031. get_docker_compose_opts_list() {
  3032. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3033. docker_compose_help_msg
  3034. if [ -e "$cache_file" ]; then
  3035. cat "$cache_file" &&
  3036. touch "$cache_file" || return 1
  3037. return 0
  3038. fi
  3039. docker_compose_opts_help=$(get_docker_compose_opts_help $action) || return 1
  3040. echo "$docker_compose_opts_help" |
  3041. egrep "^\s+-" |
  3042. sed -r 's/\s+((((-[a-zA-Z]|--[a-zA-Z0-9-]+)( [A-Z=]+|=[^ ]+)?)(, )?)+)\s+.*$/\1/g' |
  3043. tee "$cache_file" || return 1
  3044. }
  3045. options_parser() {
  3046. sed -r 's/^(\s+(((-[a-zA-Z]|--[a-zA-Z0-9-]+)([ =]([a-zA-Z_=\"\[]|\])+)?(, | )?)+)\s+)[^ ].*$/\x0\2\x0\0/g'
  3047. printf "\0"
  3048. }
  3049. remove_options_in_option_help_msg() {
  3050. {
  3051. read-0 null
  3052. if [ "$null" ]; then
  3053. err "options parsing error, should start with an option line."
  3054. return 1
  3055. fi
  3056. while read-0 opt full_txt;do
  3057. multi_opts="$(printf "%s " $opt | multi_opts_filter)"
  3058. single_opts="$(printf "%s " $opt | single_opts_filter)"
  3059. for to_remove in "$@"; do
  3060. str_matches "$to_remove" $multi_opts $single_opts && {
  3061. continue 2
  3062. }
  3063. done
  3064. echo -n "$full_txt"
  3065. done
  3066. } < <(options_parser)
  3067. }
  3068. _MULTIOPTION_REGEX='^((-[a-zA-Z]|--[a-zA-Z0-9-]+)(, )?)+'
  3069. _MULTIOPTION_REGEX_LINE_FILTER=$_MULTIOPTION_REGEX'(\s|=)'
  3070. multi_opts_filter() {
  3071. egrep "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3072. sed -r "s/^($_MULTIOPTION_REGEX)(\s|=).*$/\1/g" |
  3073. tr ',' "\n" | nspc
  3074. }
  3075. single_opts_filter() {
  3076. egrep -v "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3077. tr ',' "\n" | nspc
  3078. }
  3079. get_docker_compose_multi_opts_list() {
  3080. local action="$1" opts_list
  3081. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3082. echo "$opts_list" | multi_opts_filter
  3083. }
  3084. get_docker_compose_single_opts_list() {
  3085. local action="$1" opts_list
  3086. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3087. echo "$opts_list" | single_opts_filter
  3088. }
  3089. display_commands_help() {
  3090. local charm_actions
  3091. echo
  3092. echo "${WHITE}Commands${NORMAL} (thanks to docker-compose):"
  3093. get_docker_compose_commands_help | sed -r "s/ ([a-z]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2/g"
  3094. charm_actions_help=$(get_docker_charm_action_help) || return 1
  3095. if [ "$charm_actions_help" ]; then
  3096. echo
  3097. echo "${WHITE}Charm actions${NORMAL}:"
  3098. printf "%s\n" "$charm_actions_help" | \
  3099. sed -r "s/^ ([a-z0-9-]+)(\s+)([a-z0-9-]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2${DARKYELLOW}\3${NORMAL}\4/g"
  3100. fi
  3101. }
  3102. get_docker_charm_action_help() {
  3103. local services service charm relation_name target_service relation_config \
  3104. target_charm
  3105. services=($(get_compose_yml_content | shyaml keys 2>/dev/null))
  3106. for service in "${services[@]}"; do
  3107. out=$(
  3108. charm=$(get_service_charm "$service") || return 1
  3109. for action in $(charm.ls_direct_actions "$charm"); do
  3110. printf " %-28s %s\n" "$action $service" "Direct action from ${DARKPINK}$charm${NORMAL}"
  3111. done
  3112. while read-0 relation_name target_service _relation_config _tech_dep; do
  3113. target_charm=$(get_service_charm "$target_service") || return 1
  3114. for action in $(charm.ls_relation_actions "$target_charm" "$relation_name"); do
  3115. printf " %-28s %s\n" "$action $service" "Indirect action from ${DARKPINK}$target_charm${NORMAL}"
  3116. done
  3117. done < <(get_compose_relations "$service")
  3118. )
  3119. if [ "$out" ]; then
  3120. echo " for ${DARKYELLOW}$service${NORMAL}:"
  3121. printf "%s\n" "$out"
  3122. fi
  3123. done
  3124. }
  3125. display_help() {
  3126. print_help
  3127. echo "${WHITE}Usage${NORMAL}:"
  3128. echo " $usage"
  3129. echo "${WHITE}Options${NORMAL}:"
  3130. echo " -h, --help Print this message and quit"
  3131. echo " (ignoring any other options)"
  3132. echo " -V, --version Print current version and quit"
  3133. echo " (ignoring any other options)"
  3134. echo " --dirs Display data dirs and quit"
  3135. echo " (ignoring any other options)"
  3136. echo " --get-project-name Display project name and quit"
  3137. echo " (ignoring any other options)"
  3138. echo " -v, --verbose Be more verbose"
  3139. echo " -q, --quiet Be quiet"
  3140. echo " -d, --debug Print full debugging information (sets also verbose)"
  3141. echo " --dry-compose-run If docker-compose will be run, only print out what"
  3142. echo " command line will be used."
  3143. echo " --no-relations Do not run any relation script"
  3144. echo " --no-hooks Do not run any hook script"
  3145. echo " --no-init Do not run any init script"
  3146. echo " --no-post-deploy Do not run any post-deploy script"
  3147. echo " --no-pre-deploy Do not run any pre-deploy script"
  3148. echo " --without-relation RELATION "
  3149. echo " Do not run given relation"
  3150. echo " -R, --rebuild-relations-to-service SERVICE"
  3151. echo " Will rebuild all relations to given service"
  3152. echo " --add-compose-content, -Y YAML"
  3153. echo " Will merge some direct YAML with the current compose"
  3154. get_docker_compose_opts_help | remove_options_in_option_help_msg --version --help --verbose |
  3155. filter_docker_compose_help_message
  3156. display_commands_help
  3157. }
  3158. _graph_service() {
  3159. local service="$1" base="$1"
  3160. charm=$(get_service_charm "$service") || return 1
  3161. metadata=$(charm.metadata "$charm") || return 1
  3162. subordinate=$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)
  3163. if [ "$subordinate" == "True" ]; then
  3164. requires="$(echo "$metadata" | shyaml get-value "requires" 2>/dev/null)"
  3165. master_charm=
  3166. while read-0 relation_name relation; do
  3167. [ "$(echo "$relation" | shyaml get-value "scope" 2>/dev/null)" == "container" ] || continue
  3168. interface="$(echo "$relation" | shyaml get-value "interface" 2>/dev/null)"
  3169. if [ -z "$interface" ]; then
  3170. err "No ${WHITE}$interface${NORMAL} set for relation $relation_name."
  3171. return 1
  3172. fi
  3173. ## Action provided by relation ?
  3174. target_service=
  3175. while read-0 relation_name candidate_target_service _relation_config _tech_dep; do
  3176. [ "$interface" == "$relation_name" ] && {
  3177. target_service="$candidate_target_service"
  3178. break
  3179. }
  3180. done < <(get_service_relations "$service")
  3181. if [ -z "$target_service" ]; then
  3182. err "Couldn't find ${WHITE}relations.$interface${NORMAL} in" \
  3183. "${DARKYELLOW}$service$NORMAL compose definition."
  3184. return 1
  3185. fi
  3186. master_service="$target_service"
  3187. master_charm=$(get_service_charm "$target_service") || return 1
  3188. break
  3189. done < <(echo "$requires" | shyaml key-values-0 2>/dev/null)
  3190. fi
  3191. _graph_node_service "$service" "$base" "$charm"
  3192. _graph_edge_service "$service" "$subordinate" "$master_service"
  3193. }
  3194. _graph_node_service() {
  3195. local service="$1" base="$2" charm="$3"
  3196. cat <<EOF
  3197. "$(_graph_node_service_label ${service})" [
  3198. style = "filled, $([ "$subordinate" == "True" ] && echo "dashed" || echo "bold")"
  3199. penwidth = $([ "$subordinate" == "True" ] && echo "3" || echo "5")
  3200. color = $([ "$base" ] && echo "blue" || echo "black")
  3201. fillcolor = "white"
  3202. fontname = "Courier New"
  3203. shape = "Mrecord"
  3204. label =<$(_graph_node_service_content "$service")>
  3205. ];
  3206. EOF
  3207. }
  3208. _graph_edge_service() {
  3209. local service="$1" subordinate="$2" master_service="$3"
  3210. while read-0 relation_name target_service relation_config tech_dep; do
  3211. cat <<EOF
  3212. "$(_graph_node_service_label ${service})" -> "$(_graph_node_service_label ${target_service})" [
  3213. penwidth = $([ "$master_service" == "$target_service" ] && echo 3 || echo 2)
  3214. fontsize = 16
  3215. fontcolor = "black"
  3216. style = $([ "$master_service" == "$target_service" ] && echo dashed || echo "\"\"")
  3217. weight = $([ "$master_service" == "$target_service" ] && echo 2.0 || echo 1.0)
  3218. dir = $([ "$master_service" == "$target_service" ] && echo none || echo both)
  3219. arrowtail = odot
  3220. # arrowhead = dotlicurve
  3221. taillabel = "$relation_name" ];
  3222. EOF
  3223. done < <(get_service_relations "$service") || return 1
  3224. }
  3225. _graph_node_service_label() {
  3226. local service="$1"
  3227. echo "service_$service"
  3228. }
  3229. _graph_node_service_content() {
  3230. local service="$1"
  3231. charm=$(get_service_charm "$service") || return 1
  3232. cat <<EOF
  3233. <table border="0" cellborder="0" cellpadding="3" bgcolor="white">
  3234. <tr>
  3235. <td bgcolor="black" align="center" colspan="2">
  3236. <font color="white">$service</font>
  3237. </td>
  3238. </tr>
  3239. $(if [ "$charm" != "$service" ]; then
  3240. cat <<EOF2
  3241. <tr>
  3242. <td align="left" port="r0">charm: $charm</td>
  3243. </tr>
  3244. EOF2
  3245. fi)
  3246. </table>
  3247. EOF
  3248. }
  3249. cla_contains () {
  3250. local e
  3251. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  3252. return 1
  3253. }
  3254. filter_docker_compose_help_message() {
  3255. cat - |
  3256. sed -r "s/docker-compose run/${DARKWHITE}compose${NORMAL} ${DARKCYAN}$action${NORMAL}/g;
  3257. s/docker-compose.yml/compose.yml/g;
  3258. s/SERVICES?/${DARKYELLOW}\0${NORMAL}/g;
  3259. s/^(\s+)\\$/\1${WHITE}\$${NORMAL}/g;
  3260. s/^(\s+)run/\1${DARKCYAN}$action${NORMAL}/g;
  3261. s/docker-compose/${DARKWHITE}compose${NORMAL}/g"
  3262. }
  3263. graph() {
  3264. local services=("$@")
  3265. declare -A entries
  3266. cat <<EOF
  3267. digraph g {
  3268. graph [
  3269. fontsize=30
  3270. labelloc="t"
  3271. label=""
  3272. splines=true
  3273. overlap=false
  3274. #rankdir = "LR"
  3275. ];
  3276. ratio = auto;
  3277. EOF
  3278. for target_service in "$@"; do
  3279. services=$(get_ordered_service_dependencies "$target_service") || return 1
  3280. for service in $services; do
  3281. [ "${entries[$service]}" ] && continue || entries[$service]=1
  3282. if cla_contains "$service" "${services[@]}"; then
  3283. base=true
  3284. else
  3285. base=
  3286. fi
  3287. _graph_service "$service" "$base"
  3288. done
  3289. done
  3290. echo "}"
  3291. }
  3292. cached_wget() {
  3293. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(p0 "$@" | md5_compat)" \
  3294. url="$1"
  3295. if [ -e "$cache_file" ]; then
  3296. cat "$cache_file"
  3297. touch "$cache_file"
  3298. return 0
  3299. fi
  3300. wget -O- "${url}" |
  3301. tee "$cache_file"
  3302. if [ "${PIPESTATUS[0]}" != 0 ]; then
  3303. rm "$cache_file"
  3304. die "Unable to fetch '$url'."
  3305. return 1
  3306. fi
  3307. }
  3308. export -f cached_wget
  3309. [ "$SOURCED" ] && return 0
  3310. trap_add "EXIT" clean_cache
  3311. if [ -z "$DISABLE_SYSTEM_CONFIG_FILE" ]; then
  3312. if [ -r /etc/default/charm ]; then
  3313. . /etc/default/charm
  3314. fi
  3315. if [ -r "/etc/default/$exname" ]; then
  3316. . "/etc/default/$exname"
  3317. fi
  3318. ## XXXvlab: should provide YML config opportunities in possible parent dirs ?
  3319. ## userdir ? and global /etc/compose.yml ?
  3320. for cfgfile in /etc/compose.conf /etc/compose.local.conf \
  3321. /etc/default/compose /etc/compose/local.conf; do
  3322. [ -e "$cfgfile" ] || continue
  3323. . "$cfgfile" || die "Loading config file '$cfgfile' failed."
  3324. done
  3325. fi
  3326. _setup_state_dir
  3327. mkdir -p "$CACHEDIR" || exit 1
  3328. log () { cat; }
  3329. export -f log
  3330. ##
  3331. ## Argument parsing
  3332. ##
  3333. wrap_opts=()
  3334. services=()
  3335. remainder_args=()
  3336. compose_opts=()
  3337. compose_contents=()
  3338. action_opts=()
  3339. services_args=()
  3340. pos_arg_ct=0
  3341. no_hooks=
  3342. no_init=
  3343. action=
  3344. stage="main" ## switches from 'main', to 'action', 'remainder'
  3345. is_docker_compose_action=
  3346. rebuild_relations_to_service=()
  3347. declare -A without_relations
  3348. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list) &&
  3349. DC_MATCH_SINGLE=$(get_docker_compose_single_opts_list) || exit 1
  3350. while read-0 arg; do
  3351. case "$stage" in
  3352. "main")
  3353. case "$arg" in
  3354. --help|-h)
  3355. no_init=true ; no_hooks=true ; no_relations=true
  3356. display_help
  3357. exit 0
  3358. ;;
  3359. --verbose|-v)
  3360. export VERBOSE=true
  3361. compose_opts+=("--verbose")
  3362. ;;
  3363. --quiet|-q)
  3364. export QUIET=true
  3365. export wrap_opts+=("-q")
  3366. log () { cat >&2; }
  3367. export -f log
  3368. ;;
  3369. --version|-V)
  3370. print_version
  3371. docker-compose --version
  3372. docker --version
  3373. exit 0
  3374. ;;
  3375. -f|--file)
  3376. read-0 value
  3377. [ -e "$value" ] || die "File $value doesn't exists"
  3378. export COMPOSE_YML_FILE="$value"
  3379. shift
  3380. ;;
  3381. -p|--project-name)
  3382. read-0 value
  3383. export DEFAULT_PROJECT_NAME="$value"
  3384. compose_opts+=("--project-name $value")
  3385. shift
  3386. ;;
  3387. --no-relations)
  3388. export no_relations=true
  3389. ;;
  3390. --without-relation)
  3391. read-0 value
  3392. without_relations["$value"]=1
  3393. shift
  3394. ;;
  3395. --no-hooks)
  3396. export no_hooks=true
  3397. ;;
  3398. --no-init)
  3399. export no_init=true
  3400. ;;
  3401. --no-post-deploy)
  3402. export no_post_deploy=true
  3403. ;;
  3404. --no-pre-deploy)
  3405. export no_pre_deploy=true
  3406. ;;
  3407. --rebuild-relations-to-service|-R)
  3408. read-0 value
  3409. rebuild_relations_to_service+=("$value")
  3410. shift
  3411. ;;
  3412. --debug|-d)
  3413. export DEBUG=true
  3414. export VERBOSE=true
  3415. #compose_opts+=("--verbose" "--log-level" "DEBUG")
  3416. ;;
  3417. --add-compose-content|-Y)
  3418. read-0 value
  3419. compose_contents+=("$value")
  3420. shift
  3421. ;;
  3422. --dirs)
  3423. echo "CACHEDIR: $CACHEDIR"
  3424. echo "VARDIR: $VARDIR"
  3425. exit 0
  3426. ;;
  3427. --get-project-name)
  3428. project=$(get_default_project_name) || return 1
  3429. echo "$project"
  3430. exit 0
  3431. ;;
  3432. --dry-compose-run)
  3433. export DRY_COMPOSE_RUN=true
  3434. ;;
  3435. --*|-*)
  3436. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  3437. read-0 value
  3438. compose_opts+=("$arg" "$value")
  3439. shift;
  3440. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  3441. compose_opts+=("$arg")
  3442. else
  3443. err "Unknown option '$arg'. Please check help:"
  3444. display_help >&2
  3445. exit 1
  3446. fi
  3447. ;;
  3448. *)
  3449. action="$arg"
  3450. stage="action"
  3451. if DC_USAGE=$(get_docker_compose_usage "$action"); then
  3452. is_docker_compose_action=true
  3453. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list "$action") &&
  3454. DC_MATCH_SINGLE="$(get_docker_compose_single_opts_list "$action")"
  3455. if [ "$DC_MATCH_MULTI" ]; then
  3456. DC_MATCH_SINGLE="$DC_MATCH_SINGLE $(echo "$DC_MATCH_MULTI" | sed -r 's/( |$)/=\* /g')"
  3457. fi
  3458. pos_args=($(echo "$DC_USAGE" | sed -r 's/\[-[^]]+\] ?//g;s/\[options\] ?//g'))
  3459. pos_args=("${pos_args[@]:1}")
  3460. # echo "USAGE: $DC_USAGE"
  3461. # echo "pos_args: ${pos_args[@]}"
  3462. # echo "MULTI: $DC_MATCH_MULTI"
  3463. # echo "SINGLE: $DC_MATCH_SINGLE"
  3464. # exit 1
  3465. else
  3466. stage="remainder"
  3467. fi
  3468. ;;
  3469. esac
  3470. ;;
  3471. "action") ## Only for docker-compose actions
  3472. case "$arg" in
  3473. --help|-h)
  3474. no_init=true ; no_hooks=true ; no_relations=true
  3475. action_opts+=("$arg")
  3476. ;;
  3477. --*|-*)
  3478. if [ "$is_docker_compose_action" ]; then
  3479. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  3480. read-0 value
  3481. action_opts+=("$arg" "$value")
  3482. shift
  3483. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  3484. action_opts+=("$arg")
  3485. else
  3486. err "Unknown option '$arg'. Please check '${DARKCYAN}$action${NORMAL}' help:"
  3487. docker-compose "$action" --help |
  3488. filter_docker_compose_help_message >&2
  3489. exit 1
  3490. fi
  3491. fi
  3492. ;;
  3493. *)
  3494. # echo "LOOP $1 : pos_arg: $pos_arg_ct // ${pos_args[$pos_arg_ct]}"
  3495. if [[ "${pos_args[$pos_arg_ct]}" == "[SERVICE...]" ]]; then
  3496. services_args+=("$arg")
  3497. elif [[ "${pos_args[$pos_arg_ct]}" == "SERVICE" ]]; then
  3498. services_args=("$arg") || exit 1
  3499. stage="remainder"
  3500. else
  3501. action_posargs+=("$arg")
  3502. ((pos_arg_ct++))
  3503. fi
  3504. ;;
  3505. esac
  3506. ;;
  3507. "remainder")
  3508. remainder_args+=("$arg")
  3509. while read-0 arg; do
  3510. remainder_args+=("$arg")
  3511. done
  3512. break 3
  3513. ;;
  3514. esac
  3515. shift
  3516. done < <(cla.normalize "$@")
  3517. export compose_contents
  3518. [ "${services_args[*]}" ] && debug " ${DARKWHITE}Services:$NORMAL ${DARKYELLOW}${services_args[*]}$NORMAL"
  3519. [ "${compose_opts[*]}" ] && debug " ${DARKWHITE}Main docker-compose opts:$NORMAL ${compose_opts[*]}"
  3520. [ "${action_posargs[*]}" ] && debug " ${DARKWHITE}Main docker-compose pos args:$NORMAL ${action_posargs[*]}"
  3521. [ "${action_opts[*]}" ] && debug " ${DARKWHITE}Action $DARKCYAN$action$NORMAL with opts:$NORMAL ${action_opts[*]}"
  3522. [ "${remainder_args[*]}" ] && debug " ${DARKWHITE}Remainder args:$NORMAL ${remainder_args[*]}"
  3523. aexport remainder_args
  3524. ##
  3525. ## Actual code
  3526. ##
  3527. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  3528. COMPOSE_YML_CONTENT=$(get_compose_yml_content) || exit 1
  3529. export COMPOSE_YML_FILE COMPOSE_YML_CONTENT
  3530. charm.sanity_checks || die "Sanity checks about charm-store failed. Please correct."
  3531. ##
  3532. ## Get services in command line.
  3533. ##
  3534. if [ -z "$is_docker_compose_action" -a "$action" ]; then
  3535. action_service=${remainder_args[0]}
  3536. if [ -z "$action_service" ]; then
  3537. err "No such command or action: ${DARKCYAN}$action${NORMAL}"
  3538. display_commands_help
  3539. exit 1
  3540. fi
  3541. remainder_args=("${remainder_args[@]:1}")
  3542. if has_service_action "$action_service" "$action" >/dev/null; then
  3543. is_service_action=true
  3544. {
  3545. read-0 action_type
  3546. case "$action_type" in
  3547. "relation")
  3548. read-0 _ target_service _target_charm relation_name
  3549. debug "Found action $DARKYELLOW${action_service}$NORMAL/$DARKBLUE$relation_name$NORMAL/$DARKCYAN$action$NORMAL (in $DARKYELLOW$target_service$NORMAL)"
  3550. ;;
  3551. "direct")
  3552. debug "Found action $DARKYELLOW${action_service}$NORMAL.$DARKCYAN$action$NORMAL"
  3553. ;;
  3554. esac
  3555. } < <(has_service_action "$action_service" "$action")
  3556. services_args=("$action_service")
  3557. ## Divert logging to stdout to stderr
  3558. log () { cat >&2; }
  3559. export -f log
  3560. else
  3561. die "Unknown action '${DARKCYAN}$action$NORMAL': It doesn't match any docker-compose commands nor inner charm actions."
  3562. fi
  3563. else
  3564. case "$action" in
  3565. ps|up)
  3566. if [ "${#services_args[@]}" == 0 ]; then
  3567. array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  3568. fi
  3569. ;;
  3570. config)
  3571. services_args=("${action_posargs[@]}")
  3572. ;;
  3573. esac
  3574. fi
  3575. NO_CONSTRAINT_CHECK=True
  3576. case "$action" in
  3577. up)
  3578. NO_CONSTRAINT_CHECK=
  3579. ;;
  3580. esac
  3581. get_all_relations "${services_args[@]}" >/dev/null || exit 1
  3582. if [ "$is_docker_compose_action" -a "${#services_args[@]}" -gt 0 ]; then
  3583. services=($(get_master_services "${services_args[@]}")) || exit 1
  3584. if [ "$action" == "up" ]; then
  3585. declare -A seen
  3586. for service in $(get_ordered_service_dependencies "${services_args[@]}"); do
  3587. mservice=$(get_master_service_for_service "$service")
  3588. [ "${seen[$mservice]}" ] && continue
  3589. type="$(get_service_type "$mservice")" || exit 1
  3590. ## remove run-once
  3591. [ "$type" == "run-once" ] && continue
  3592. seen[$mservice]=1
  3593. action_posargs+=("$mservice")
  3594. done
  3595. else
  3596. action_posargs+=("${services[@]}")
  3597. fi
  3598. ## Get rid of subordinates
  3599. action_posargs=($(get_master_services "${action_posargs[@]}")) || exit 1
  3600. fi
  3601. get_docker_compose "${services_args[@]}" >/dev/null || { ## precalculate variable \$_current_docker_compose
  3602. err "Fails to compile base 'docker-compose.yml'"
  3603. exit 1
  3604. }
  3605. ##
  3606. ## Pre-action
  3607. ##
  3608. full_init=
  3609. case "$action" in
  3610. up|run)
  3611. full_init=true
  3612. post_hook=true
  3613. ;;
  3614. ""|down|restart|logs|config|ps)
  3615. full_init=
  3616. ;;
  3617. *)
  3618. if [ "$is_service_action" ]; then
  3619. full_init=true
  3620. fi
  3621. ;;
  3622. esac
  3623. if [ -n "$full_init" ]; then
  3624. ## init in order
  3625. if [[ -z "$no_init" && -z "$no_hooks" ]]; then
  3626. Section setup host resources
  3627. setup_host_resources "${services_args[@]}" || exit 1
  3628. Section initialisation
  3629. run_service_hook init "${services_args[@]}" || exit 1
  3630. fi
  3631. ## Get relations
  3632. if [[ -z "$no_relations" && -z "$no_hooks" ]]; then
  3633. if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then
  3634. rebuild_relations_to_service=$(get_master_services "${rebuild_relations_to_service[@]}") || return 1
  3635. rebuild_relations_to_service=($rebuild_relations_to_service)
  3636. project=$(get_default_project_name) || return 1
  3637. for service in "${rebuild_relations_to_service[@]}"; do
  3638. for dir in "$VARDIR/relations/$project/"*"-${service}/"*; do
  3639. [ -d "$dir" ] && {
  3640. debug rm -rf "$dir"
  3641. rm -rf "$dir"
  3642. }
  3643. done
  3644. done
  3645. fi
  3646. run_service_relations "${services_args[@]}" || exit 1
  3647. fi
  3648. if [[ -z "$no_pre_deploy" && -z "$no_hooks" ]]; then
  3649. run_service_hook pre_deploy "${services_args[@]}" || exit 1
  3650. fi
  3651. fi | log
  3652. if [ "${PIPESTATUS[0]}" != 0 ]; then
  3653. exit 1
  3654. fi
  3655. if [ "$action" == "run" -a "${#services_args}" != 0 ]; then
  3656. charm=$(get_service_charm "${services_args[0]}") || exit 1
  3657. metadata=$(charm.metadata "$charm") || exit 1
  3658. SERVICE_TYPE="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  3659. if [ "$SERVICE_TYPE" == "run-once" ]; then
  3660. run_service_hook dc-pre-run "${services_args[@]}" || exit 1
  3661. fi
  3662. fi
  3663. export SERVICE_PACK="${services_args[*]}"
  3664. ##
  3665. ## Docker-compose
  3666. ##
  3667. errlvl="0"
  3668. case "$action" in
  3669. up|start|stop|build|run)
  3670. ## force daemon mode for up
  3671. if [[ "$action" == "up" ]]; then
  3672. if ! array_member action_opts -d; then
  3673. action_opts+=("-d")
  3674. fi
  3675. if ! array_member action_opts --remove-orphans; then
  3676. action_opts+=("--remove-orphans")
  3677. fi
  3678. fi
  3679. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3680. ;;
  3681. logs)
  3682. if ! array_member action_opts --tail; then ## force daemon mode for up
  3683. action_opts+=("--tail" "10")
  3684. fi
  3685. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3686. ;;
  3687. "")
  3688. launch_docker_compose "${compose_opts[@]}"
  3689. ;;
  3690. graph)
  3691. graph $SERVICE_PACK
  3692. ;;
  3693. config)
  3694. ## removing the services
  3695. services=($(get_master_services "${action_posargs[@]}")) || exit 1
  3696. ## forcing docker-compose config to output the config file to stdout and not stderr
  3697. out=$(launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" 2>&1) || {
  3698. echo "$out"
  3699. exit 1
  3700. }
  3701. echo "$out"
  3702. warn "Runtime configuration modification (from relations) are not included here."
  3703. ;;
  3704. down)
  3705. if ! array_member action_opts --remove-orphans; then ## force daemon mode for up
  3706. debug "Adding a default argument of '--remove-orphans'"
  3707. action_opts+=("--remove-orphans")
  3708. fi
  3709. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}"
  3710. ;;
  3711. *)
  3712. if [ "$is_service_action" ]; then
  3713. run_service_action "$SERVICE_PACK" "$action" "${remainder_args[@]}"
  3714. errlvl="$?"
  3715. errlvl "$errlvl"
  3716. else
  3717. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3718. fi
  3719. ;;
  3720. esac || exit 1
  3721. if [ "$post_hook" -a "${#services_args[@]}" != 0 -a -z "$no_hooks" -a -z "$no_post_deploy" ]; then
  3722. run_service_hook post_deploy "${services_args[@]}" || exit 1
  3723. fi
  3724. if [ "$action" == "run" -a "${#services_args}" != 0 ]; then
  3725. if [ "$SERVICE_TYPE" == "run-once" ]; then
  3726. run_service_hook dc-post-run "${services_args[@]}" || exit 1
  3727. fi
  3728. fi
  3729. clean_unused_docker_compose || exit 1
  3730. exit "$errlvl"