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.

4458 lines
146 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. export TRAVERSE_SEPARATOR=:
  1804. ## Traverse on first service satisfying relation
  1805. service:traverse() {
  1806. local service_path="$1"
  1807. {
  1808. SEPARATOR=:
  1809. read -d "$TRAVERSE_SEPARATOR" service
  1810. while read -d "$TRAVERSE_SEPARATOR" relation; do
  1811. ## XXXvlab: Take only first service
  1812. if ! read-0 ts _ _ < <(get_service_relation "${service}" "${relation}"); then
  1813. err "Couldn't find relation ${DARKCYAN}${relation}${NORMAL}" \
  1814. "from ${DARKYELLOW}$service${NORMAL}."
  1815. return 1
  1816. fi
  1817. service="$ts"
  1818. done
  1819. echo "$service"
  1820. } < <(e "${service_path}${TRAVERSE_SEPARATOR}")
  1821. }
  1822. export -f service:traverse
  1823. service:relation-file() {
  1824. local service_path="$1" relation service relation_file
  1825. if ! [[ "$service_path" == *"$TRAVERSE_SEPARATOR"* ]]; then
  1826. err "Invalid argument '$service_path'." \
  1827. "Must provide a service path (no '${TRAVERSE_SEPARATOR}' found)."
  1828. return 1
  1829. fi
  1830. relation="${service_path##*${TRAVERSE_SEPARATOR}}"
  1831. service=$(service:traverse "${service_path%${TRAVERSE_SEPARATOR}*}") || return 1
  1832. if ! read-0 ts rc _ < <(get_service_relation "${service}" "${relation}"); then
  1833. err "Couldn't find relation ${DARKCYAN}${relation}${NORMAL}" \
  1834. "from ${DARKYELLOW}$service${NORMAL}."
  1835. return 1
  1836. fi
  1837. relation_dir=$(get_relation_data_dir "$service" "$ts" "$relation") || {
  1838. err "Failed to find relation file"
  1839. return 1
  1840. }
  1841. relation_file="$relation_dir/data"
  1842. if ! [ -e "$relation_file" ]; then
  1843. e "$rc" > "$relation_file"
  1844. chmod go-rwx "$relation_file" ## protecting this file
  1845. fi
  1846. echo "$relation_file"
  1847. }
  1848. export -f service:relation-file
  1849. service:relation-options() {
  1850. local service_path="$1" relation_file
  1851. relation_file=$(service:relation-file "$service_path") || {
  1852. err "Failed to find relation file"
  1853. return 1
  1854. }
  1855. cat "$relation_file"
  1856. }
  1857. export -f service:relation-options
  1858. relation:get() {
  1859. local service_path="$1" query="$2" relation_file
  1860. relation_file=$(service:relation-file "$service_path") || {
  1861. err "Failed to find relation file"
  1862. return 1
  1863. }
  1864. cfg-get-value "$query" < "$relation_file"
  1865. }
  1866. export -f relation:get
  1867. _get_charm_metadata_uses() {
  1868. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  1869. if [ -e "$cache_file" ]; then
  1870. #debug "$FUNCNAME: SESSION cache hit $1"
  1871. cat "$cache_file" || return 1
  1872. return 0
  1873. fi
  1874. printf "%s" "$metadata" | { shyaml key-values-0 uses 2>/dev/null || true; } | tee "$cache_file"
  1875. }
  1876. export -f _get_charm_metadata_uses
  1877. _get_service_metadata() {
  1878. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1879. charm
  1880. if [ -e "$cache_file" ]; then
  1881. #debug "$FUNCNAME: SESSION cache hit $1"
  1882. cat "$cache_file"
  1883. return 0
  1884. fi
  1885. charm="$(get_service_charm "$service")" || return 1
  1886. charm.metadata "$charm" > "$cache_file"
  1887. if [ "$?" != 0 ]; then
  1888. rm -f "$cache_file" ## no cache
  1889. return 1
  1890. fi
  1891. cat "$cache_file"
  1892. }
  1893. export -f _get_service_metadata
  1894. _get_service_uses() {
  1895. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1896. metadata
  1897. if [ -e "$cache_file" ]; then
  1898. #debug "$FUNCNAME: SESSION cache hit $1"
  1899. cat "$cache_file"
  1900. return 0
  1901. fi
  1902. metadata="$(_get_service_metadata "$service")" || return 1
  1903. _get_charm_metadata_uses "$metadata" > "$cache_file"
  1904. if [ "$?" != 0 ]; then
  1905. rm -f "$cache_file" ## no cache
  1906. return 1
  1907. fi
  1908. cat "$cache_file"
  1909. }
  1910. export -f _get_service_uses
  1911. _get_services_uses() {
  1912. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1913. service rn rd
  1914. if [ -e "$cache_file" ]; then
  1915. #debug "$FUNCNAME: SESSION cache hit $1"
  1916. cat "$cache_file"
  1917. return 0
  1918. fi
  1919. for service in "$@"; do
  1920. _get_service_uses "$service" | while read-0 rn rd; do
  1921. printf "%s\0" "$service" "$rn" "$rd"
  1922. done
  1923. [ "${PIPESTATUS[0]}" == 0 ] || {
  1924. return 1
  1925. }
  1926. done > "${cache_file}.wip"
  1927. mv "${cache_file}"{.wip,} &&
  1928. cat "$cache_file" || return 1
  1929. }
  1930. export -f _get_services_uses
  1931. _get_provides_provides() {
  1932. local provides="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1933. service rn rd
  1934. if [ -e "$cache_file" ]; then
  1935. # debug "$FUNCNAME: CACHEDIR cache hit $1"
  1936. cat "$cache_file"
  1937. return 0
  1938. fi
  1939. type=$(printf "%s" "$provides" | shyaml get-type)
  1940. case "$type" in
  1941. sequence)
  1942. while read-0 prov; do
  1943. printf "%s\0" "$prov" ""
  1944. done < <(echo "$provides" | shyaml get-values-0)
  1945. ;;
  1946. struct)
  1947. printf "%s" "$provides" | shyaml key-values-0
  1948. ;;
  1949. str)
  1950. printf "%s\0" "$(echo "$provides" | shyaml get-value)" ""
  1951. ;;
  1952. *)
  1953. err "Unexpected type '$type' for provider identifier in charm '$charm'."
  1954. return 1
  1955. esac | tee "$cache_file"
  1956. return "${PIPESTATUS[0]}"
  1957. }
  1958. _get_metadata_provides() {
  1959. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1960. service rn rd
  1961. if [ -e "$cache_file" ]; then
  1962. #debug "$FUNCNAME: CACHEDIR cache hit"
  1963. cat "$cache_file"
  1964. return 0
  1965. fi
  1966. provides=$(printf "%s" "$metadata" | shyaml get-value -y -q provides "")
  1967. [ "$provides" -a "$provides" != "''" ] || { touch "$cache_file"; return 0; }
  1968. _get_provides_provides "$provides" | tee "$cache_file"
  1969. return "${PIPESTATUS[0]}"
  1970. }
  1971. _get_services_provides() {
  1972. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  1973. service rn rd
  1974. if [ -e "$cache_file" ]; then
  1975. #debug "$FUNCNAME: SESSION cache hit $1"
  1976. cat "$cache_file"
  1977. return 0
  1978. fi
  1979. ## YYY: replace the inner loop by a cached function
  1980. for service in "$@"; do
  1981. metadata="$(_get_service_metadata "$service")" || return 1
  1982. while read-0 rn rd; do
  1983. printf "%s\0" "$service" "$rn" "$rd"
  1984. done < <(_get_metadata_provides "$metadata")
  1985. done > "$cache_file"
  1986. if [ "$?" != 0 ]; then
  1987. rm -f "$cache_file" ## no cache
  1988. return 1
  1989. fi
  1990. cat "$cache_file"
  1991. }
  1992. export -f _get_services_provides
  1993. _get_charm_provides() {
  1994. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(charm.store_metadata_hash)" errlvl
  1995. if [ -e "$cache_file" ]; then
  1996. #debug "$FUNCNAME: SESSION cache hit"
  1997. cat "$cache_file"
  1998. return 0
  1999. fi
  2000. start="$SECONDS"
  2001. debug "Getting charm provider list..."
  2002. while read-0 charm _ realpath metadata; do
  2003. metadata="$(charm.metadata "$charm")" || continue
  2004. # echo "reading $charm" >&2
  2005. while read-0 rn rd; do
  2006. printf "%s\0" "$charm" "$rn" "$rd"
  2007. done < <(_get_metadata_provides "$metadata")
  2008. done < <(charm.ls) | tee "$cache_file"
  2009. errlvl="${PIPESTATUS[0]}"
  2010. debug " ..charm provider list done $GRAY(in $((SECONDS - start))s)$NORMAL"
  2011. return "$errlvl"
  2012. }
  2013. _get_charm_providing() {
  2014. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2015. relation="$1"
  2016. if [ -e "$cache_file" ]; then
  2017. #debug "$FUNCNAME: SESSION cache hit $1"
  2018. cat "$cache_file"
  2019. return 0
  2020. fi
  2021. while read-0 charm relation_name relation_def; do
  2022. [ "$relation_name" == "$relation" ] || continue
  2023. printf "%s\0" "$charm" "$relation_def"
  2024. done < <(_get_charm_provides) > "$cache_file"
  2025. if [ "$?" != 0 ]; then
  2026. rm -f "$cache_file" ## no cache
  2027. return 1
  2028. fi
  2029. cat "$cache_file"
  2030. }
  2031. _get_services_providing() {
  2032. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2033. relation="$1"
  2034. shift ## services is "$@"
  2035. if [ -e "$cache_file" ]; then
  2036. #debug "$FUNCNAME: SESSION cache hit $1"
  2037. cat "$cache_file"
  2038. return 0
  2039. fi
  2040. while read-0 service relation_name relation_def; do
  2041. [ "$relation_name" == "$relation" ] || continue
  2042. printf "%s\0" "$service" "$relation_def"
  2043. done < <(_get_services_provides "$@") > "$cache_file"
  2044. if [ "$?" != 0 ]; then
  2045. rm -f "$cache_file" ## no cache
  2046. return 1
  2047. fi
  2048. cat "$cache_file"
  2049. }
  2050. export -f _get_services_provides
  2051. _out_new_relation_from_defs() {
  2052. local service="$1" rn="$2" ts="$3" prov_def="$4" rel_def="$5" rc td rc_prov
  2053. rc_prov=$(printf "%s" "$prov_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2054. ## YYYvlab: should be seen even in no debug mode no ?
  2055. rc=$(printf "%s" "$rel_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2056. td=$(echo "$prov_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  2057. td=${td:-True}
  2058. rc=$(merge_yaml_str "$rc_prov" "$rc") || return 1
  2059. printf "%s\0" "$service" "$relation_name" "$ts" "$rc" "$td"
  2060. }
  2061. get_all_relations () {
  2062. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$(declare -p without_relations)")" \
  2063. services
  2064. if [ -e "${cache_file}" ]; then
  2065. #debug "$FUNCNAME: SESSION cache hit $1"
  2066. cat "${cache_file}"
  2067. return 0
  2068. fi
  2069. declare -A services
  2070. services_uses=()
  2071. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2072. _get_services_uses "$@" || return 1
  2073. array_read-0 services_uses < <(_get_services_uses "$@")
  2074. services_provides=()
  2075. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2076. _get_services_provides "$@" || return 1
  2077. array_read-0 services_provides < <(_get_services_provides "$@")
  2078. for service in "$@"; do
  2079. services[$service]=1
  2080. done
  2081. all_services=("$@")
  2082. while [ "${#all_services[@]}" != 0 ]; do
  2083. array_pop all_services service
  2084. while read-0 relation_name ts relation_config tech_dep; do
  2085. [ "${without_relations[$service:$relation_name]}" ] && {
  2086. debug "Ignoring compose $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> ${DARKYELLOW}$ts$NORMAL"
  2087. continue
  2088. }
  2089. printf "%s\0" "$service" "$relation_name" "$ts" "$relation_config" "$tech_dep"
  2090. ## adding target services ?
  2091. [ "${services[$ts]}" ] && continue
  2092. array_read-0 services_uses < <(_get_services_uses "$ts")
  2093. all_services+=("$ts")
  2094. services[$ts]=1
  2095. done < <(get_compose_relations "$service")
  2096. done > "${cache_file}.wip"
  2097. while true; do
  2098. changed=
  2099. new_services_uses=()
  2100. summon=()
  2101. required=()
  2102. recommended=()
  2103. optional=()
  2104. while [ "${#services_uses[@]}" != 0 ]; do
  2105. service="${services_uses[0]}"
  2106. relation_name="${services_uses[1]}"
  2107. relation_def="${services_uses[2]}"
  2108. services_uses=("${services_uses[@]:3}")
  2109. [ "${without_relations[$service:$relation_name]}" ] && {
  2110. debug "Skipping $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW*$NORMAL"
  2111. continue
  2112. }
  2113. default_options=$(printf "%s" "$relation_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2114. ## is this "use" declaration satisfied ?
  2115. found=
  2116. while read-0 s rn ts rc td; do
  2117. if [ -z "$found" -a "$service" == "$s" -a "$relation_name" == "$rn" ]; then
  2118. if [ "$default_options" ]; then
  2119. rc=$(merge_yaml_str "$default_options" "$rc") || return 1
  2120. fi
  2121. found="$ts"
  2122. fi
  2123. printf "%s\0" "$s" "$rn" "$ts" "$rc" "$td"
  2124. done < "${cache_file}.wip" > "${cache_file}.wip.new"
  2125. mv "${cache_file}.wip.new" "${cache_file}.wip"
  2126. if [ "$found" ]; then ## this "use" declaration was satisfied
  2127. debug "${DARKYELLOW}$service${NORMAL} use declaration for relation" \
  2128. "${DARKBLUE}$relation_name${NORMAL} is satisfied with ${DARKYELLOW}$found${NORMAL}"
  2129. continue
  2130. fi
  2131. auto=$(echo "$relation_def" | shyaml get-value auto pair 2>/dev/null)
  2132. case "$auto" in
  2133. "pair"|"summon")
  2134. service_list=()
  2135. array_read-0 service_list < <(array_keys_to_stdin services)
  2136. providers=()
  2137. providers_def=()
  2138. array_read-0 providers providers_def < <(_get_services_providing "$relation_name" "${service_list[@]}")
  2139. if [ "${#providers[@]}" == 1 ]; then
  2140. ts="${providers[0]}"
  2141. debug "Auto-pairs ${DARKYELLOW}$service${NORMAL}" \
  2142. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2143. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2144. "${providers_def[0]}" "$relation_def" \
  2145. >> "${cache_file}.wip"
  2146. ## Adding service
  2147. [ "${services[$ts]}" ] && continue
  2148. array_read-0 new_services_uses < <(_get_services_uses "$ts")
  2149. services[$ts]=1
  2150. changed=1
  2151. continue
  2152. elif [ "${#providers[@]}" -gt 1 ]; then
  2153. msg=""
  2154. warn "No auto-pairing ${DARKYELLOW}$service${NORMAL}" \
  2155. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2156. "(> 1 provider)."
  2157. continue
  2158. else
  2159. if [ "$auto" == "summon" ]; then
  2160. summon+=("$service" "$relation_name" "$relation_def")
  2161. fi
  2162. fi
  2163. ;;
  2164. ""|null|disable|disabled)
  2165. :
  2166. ;;
  2167. *)
  2168. err "Invalid ${WHITE}auto${NORMAL} value '$auto'."
  2169. return 1
  2170. ;;
  2171. esac
  2172. constraint=$(echo "$relation_def" | shyaml get-value constraint optional 2>/dev/null)
  2173. case "$constraint" in
  2174. "required")
  2175. required+=("$service" "$relation_name" "$relation_def")
  2176. ;;
  2177. "recommended")
  2178. recommended+=("$service" "$relation_name" "$relation_def")
  2179. ;;
  2180. "optional")
  2181. optional+=("$service" "$relation_name" "$relation_def")
  2182. ;;
  2183. *)
  2184. err "Invalid ${WHITE}constraint${NORMAL} value '$constraint'."
  2185. return 1
  2186. ;;
  2187. esac
  2188. new_services_uses+=("$service" "$relation_name" "$relation_def") ## re-queue it
  2189. done
  2190. services_uses=("${new_services_uses[@]}")
  2191. if [ "$changed" ]; then
  2192. continue
  2193. fi
  2194. ## situation is stable
  2195. if [ "${#summon[@]}" != 0 ]; then
  2196. while [ "${#summon[@]}" != 0 ]; do
  2197. service="${summon[0]}"
  2198. relation_name="${summon[1]}"
  2199. relation_def="${summon[2]}"
  2200. summon=("${summon[@]:3}")
  2201. providers=()
  2202. providers_def=()
  2203. array_read-0 providers providers_def < <(_get_charm_providing "$relation_name" "${service_list[@]}")
  2204. if [ "${#providers[@]}" == 0 ]; then
  2205. die "Summoning a ${DARKBLUE}$relation_name${NORMAL} provider failed: none were found in charm store."
  2206. fi
  2207. if [ "${#providers[@]}" -gt 1 ]; then
  2208. warn "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2209. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2210. "(> 1 provider). Choosing first."
  2211. fi
  2212. ts="${providers[0]}"
  2213. ## YYYvlab: should be seen even in no debug mode no ?
  2214. debug "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2215. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2216. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2217. "${providers_def[0]}" "$relation_def" \
  2218. >> "${cache_file}.wip"
  2219. ## Adding service
  2220. [ "${services[$ts]}" ] && continue
  2221. array_read-0 services_uses < <(_get_services_uses "$ts")
  2222. services[$ts]=1
  2223. changed=1
  2224. done
  2225. continue
  2226. fi
  2227. [ "$NO_CONSTRAINT_CHECK" ] && break
  2228. if [ "${#required[@]}" != 0 ]; then
  2229. echo "$(_display_solves required)" | sed -r "s/^/${RED}||${NORMAL} /g" >&2
  2230. err "Required relations not satisfied"
  2231. return 1
  2232. fi
  2233. if [ "${#recommended[@]}" != 0 ]; then
  2234. ## make recommendation
  2235. echo "$(_display_solves recommended)" | sed -r "s/^/${YELLOW}||${NORMAL} /g" >&2
  2236. fi
  2237. if [ "${#optional[@]}" != 0 ]; then
  2238. ## inform about options
  2239. echo "$(_display_solves optional)" | sed -r "s/^/${BLUE}||${NORMAL} /g" >&2
  2240. fi
  2241. # if [ "${#required[@]}" != 0 ]; then
  2242. # err "Required relations not satisfied"
  2243. # return 1
  2244. # fi
  2245. if [ "${#recommended[@]}" != 0 ]; then
  2246. warn "Recommended relations not satisfied"
  2247. fi
  2248. break
  2249. done
  2250. if [ "$?" != 0 ]; then
  2251. rm -f "${cache_file}"{,.wip,.wip.new} ## no cache
  2252. return 1
  2253. fi
  2254. export ALL_RELATIONS="$cache_file"
  2255. mv "${cache_file}"{.wip,}
  2256. cat "$cache_file"
  2257. }
  2258. export -f get_all_relations
  2259. _display_solves() {
  2260. local array_name="$1" by_relation msg
  2261. ## inform about options
  2262. msg=""
  2263. declare -A by_relation
  2264. while read-0 service relation_name relation_def; do
  2265. solves=$(printf "%s" "$relation_def" | shyaml -y get-value solves 2>/dev/null);
  2266. auto=$(printf "%s" "$relation_def" | shyaml get-value auto 2>/dev/null);
  2267. if [ -z "$solves" ]; then
  2268. continue
  2269. fi
  2270. by_relation[$relation_name]+=$(printf "\n %s" "${DARKYELLOW}$service$NORMAL for:")
  2271. if [ "$auto" == "pair" ]; then
  2272. requirement="add provider in cluster to auto-pair"
  2273. else
  2274. requirement="add explicit relation"
  2275. fi
  2276. while read-0 name def; do
  2277. by_relation[$relation_name]+=$(printf "\n - ${DARKCYAN}%-15s${NORMAL} %s (%s)" "$name" "$def" "$requirement")
  2278. done < <(printf "%s" "$solves" | shyaml key-values-0)
  2279. done < <(array_values_to_stdin "$array_name")
  2280. while read-0 relation_name message; do
  2281. msg+="$(printf "\n${DARKBLUE}%s$NORMAL provider is $array_name by%s" \
  2282. "$relation_name" "$message" )"
  2283. done < <(array_kv_to_stdin by_relation)
  2284. if [ "$msg" ]; then
  2285. printf "%s\n" "${msg:1}"
  2286. fi
  2287. }
  2288. get_compose_relation_def() {
  2289. local service="$1" relation="$2" relation_name target_service relation_config tech_dep
  2290. while read-0 relation_name target_service relation_config tech_dep; do
  2291. [ "$relation_name" == "$relation" ] || continue
  2292. printf "%s\0%s\0%s\0" "$target_service" "$relation_config" "$tech_dep"
  2293. done < <(get_compose_relations "$service") || return 1
  2294. }
  2295. export -f get_compose_relation_def
  2296. run_service_relations () {
  2297. local service services loaded subservices subservice
  2298. PROJECT_NAME=$(get_default_project_name) || return 1
  2299. export PROJECT_NAME
  2300. declare -A loaded
  2301. subservices=$(get_ordered_service_dependencies "$@") || return 1
  2302. for service in $subservices; do
  2303. # debug "Upping dep's relations of ${DARKYELLOW}$service${NORMAL}:"
  2304. for subservice in $(get_service_deps "$service") "$service"; do
  2305. [ "${loaded[$subservice]}" ] && continue
  2306. export BASE_SERVICE_NAME=$service
  2307. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  2308. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  2309. RELATION_BASE_COMPOSE_DEF=$(get_compose_service_def "$subservice") || return 1
  2310. export RELATION_BASE_COMPOSE_DEF MASTER_BASE_{CHARM,SERVICE}_NAME
  2311. # debug " Relations of ${DARKYELLOW}$subservice${NORMAL}:"
  2312. while read-0 relation_name target_service relation_config tech_dep; do
  2313. export relation_config
  2314. export TARGET_SERVICE_NAME=$target_service
  2315. MASTER_TARGET_SERVICE_NAME=$(get_top_master_service_for_service "$target_service") || return 1
  2316. MASTER_TARGET_CHARM_NAME=$(get_service_charm "$MASTER_TARGET_SERVICE_NAME") || return 1
  2317. RELATION_TARGET_COMPOSE_DEF=$(get_compose_service_def "$target_service") || return 1
  2318. export RELATION_TARGET_COMPOSE_DEF MASTER_TARGET_{CHARM,SERVICE}_NAME
  2319. Wrap "${wrap_opts[@]}" -d "Building $DARKYELLOW$subservice$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW$target_service$NORMAL" <<EOF || return 1
  2320. _run_service_relation "$relation_name" "$subservice" "$target_service" "\$relation_config"
  2321. EOF
  2322. done < <(get_service_relations "$subservice") || return 1
  2323. loaded[$subservice]=1
  2324. done
  2325. done
  2326. }
  2327. export -f run_service_relations
  2328. _run_service_action_direct() {
  2329. local service="$1" action="$2" charm _dummy project_name
  2330. shift; shift
  2331. read-0 charm action_script_path || true ## against 'set -e' that could be setup in parent scripts
  2332. if read-0 _dummy || [ "$_dummy" ]; then
  2333. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2334. return 1
  2335. fi
  2336. project_name=$(get_default_project_name) || return 1
  2337. export PROJECT_NAME="$project_name"
  2338. export state_tmpdir
  2339. (
  2340. set +e ## Prevents unwanted leaks from parent shell
  2341. export COMPOSE_CONFIG=$(get_compose_yml_content)
  2342. export METADATA_CONFIG=$(charm.metadata "$charm")
  2343. export SERVICE_NAME=$service
  2344. export ACTION_NAME=$action
  2345. export ACTION_SCRIPT_PATH="$action_script_path"
  2346. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2347. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  2348. export SERVICE_DATASTORE="$DATASTORE/$service"
  2349. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2350. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2351. stdbuf -oL -eL bash -c 'charm.run_direct_action "$@"' -- "$charm" "$action" "$@"
  2352. ) 0<&6 ## inject general stdin
  2353. }
  2354. export -f _run_service_action_direct
  2355. _run_service_action_relation() {
  2356. local service="$1" action="$2" charm target_charm relation_name relation_config _dummy
  2357. shift; shift
  2358. read-0 charm target_service target_charm relation_name relation_config action_script_path || true
  2359. if read-0 _dummy || [ "$_dummy" ]; then
  2360. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2361. return 1
  2362. fi
  2363. export action_errlvl_file="$state_tmpdir/action-$service-$charm-$action-errlvl"
  2364. export state_tmpdir
  2365. (
  2366. set +e ## Prevents unwanted leaks from parent shell
  2367. export METADATA_CONFIG=$(charm.metadata "$charm")
  2368. export SERVICE_NAME=$service
  2369. export RELATION_TARGET_SERVICE="$target_service"
  2370. export RELATION_TARGET_CHARM="$target_charm"
  2371. export RELATION_BASE_SERVICE="$service"
  2372. export RELATION_BASE_CHARM="$charm"
  2373. export ACTION_NAME=$action
  2374. export ACTION_SCRIPT_PATH="$action_script_path"
  2375. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2376. export DOCKER_BASE_IMAGE=$(service_base_docker_image "$CONTAINER_NAME")
  2377. export SERVICE_DATASTORE="$DATASTORE/$service"
  2378. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2379. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2380. stdbuf -oL -eL bash -c 'charm.run_relation_action "$@"' -- "$target_charm" "$relation_name" "$action" "$@"
  2381. ) 0<&6 ## inject general stdin
  2382. }
  2383. export -f _run_service_action_relation
  2384. get_relation_data_dir() {
  2385. local service="$1" target_service="$2" relation_name="$3" \
  2386. cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  2387. if [ -e "$cache_file" ]; then
  2388. # debug "$FUNCNAME: cache hit ($*)"
  2389. cat "$cache_file"
  2390. return 0
  2391. fi
  2392. local project relation_dir
  2393. project=${PROJECT_NAME}
  2394. if [ -z "$project" ]; then
  2395. project=$(get_default_project_name) || return 1
  2396. fi
  2397. relation_dir="$VARDIR/relations/$project/${service}-${target_service}/$relation_name"
  2398. if ! [ -d "$relation_dir" ]; then
  2399. mkdir -p "$relation_dir" || return 1
  2400. chmod go-rwx "$relation_dir" || return 1 ## protecting this directory
  2401. fi
  2402. echo "$relation_dir" | tee "$cache_file"
  2403. }
  2404. export -f get_relation_data_dir
  2405. get_relation_data_file() {
  2406. local service="$1" target_service="$2" relation_name="$3" relation_config="$4"
  2407. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  2408. relation_data_file="$relation_dir/data"
  2409. new=
  2410. if [ -e "$relation_data_file" ]; then
  2411. ## Has reference changed ?
  2412. new_md5=$(echo "$relation_config" | md5_compat)
  2413. if [ "$new_md5" != "$(cat "$relation_data_file.md5_ref" 2>/dev/null)" ]; then
  2414. new=true
  2415. fi
  2416. else
  2417. new=true
  2418. fi
  2419. if [ "$new" ]; then
  2420. e "$relation_config" > "$relation_data_file"
  2421. chmod go-rwx "$relation_data_file" ## protecting this file
  2422. e "$relation_config" | md5_compat > "$relation_data_file.md5_ref"
  2423. fi
  2424. echo "$relation_data_file"
  2425. }
  2426. export -f get_relation_data_file
  2427. has_service_action () {
  2428. local service="$1" action="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2429. charm target_charm relation_name target_service relation_config _tech_dep \
  2430. path
  2431. if [ -e "$cache_file" ]; then
  2432. # debug "$FUNCNAME: cache hit ($*)"
  2433. cat "$cache_file"
  2434. return 0
  2435. fi
  2436. charm=$(get_service_charm "$service") || return 1
  2437. ## Action directly provided ?
  2438. if path=$(charm.has_direct_action "$charm" "$action"); then
  2439. p0 "direct" "$charm" "$path" | tee "$cache_file"
  2440. return 0
  2441. fi
  2442. ## Action provided by relation ?
  2443. while read-0 relation_name target_service relation_config _tech_dep; do
  2444. target_charm=$(get_service_charm "$target_service") || return 1
  2445. if path=$(charm.has_relation_action "$target_charm" "$relation_name" "$action"); then
  2446. p0 "relation" "$charm" "$target_service" "$target_charm" "$relation_name" "$relation_config" "$path" | tee "$cache_file"
  2447. return 0
  2448. fi
  2449. done < <(get_service_relations "$service")
  2450. return 1
  2451. # master=$(get_top_master_service_for_service "$service")
  2452. # [ "$master" == "$charm" ] && return 1
  2453. # has_service_action "$master" "$action"
  2454. }
  2455. export -f has_service_action
  2456. run_service_action () {
  2457. local service="$1" action="$2" errlvl
  2458. shift ; shift
  2459. exec 6<&0 ## saving stdin
  2460. {
  2461. if ! read-0 action_type; then
  2462. info "Service $DARKYELLOW$service$NORMAL does not have any action $DARKCYAN$action$NORMAL defined."
  2463. info " Add an executable script to 'actions/$action' to implement action."
  2464. return 1
  2465. fi
  2466. "_run_service_action_${action_type}" "$service" "$action" "$@"
  2467. errlvl="$?"
  2468. } < <(has_service_action "$service" "$action")
  2469. exec 0<&6 6<&- ## restoring stdin
  2470. return "$errlvl"
  2471. }
  2472. export -f run_service_action
  2473. get_compose_relation_config() {
  2474. local service=$1 relation_config cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  2475. if [ -e "$cache_file" ]; then
  2476. # debug "$FUNCNAME: cache hit ($*)"
  2477. cat "$cache_file"
  2478. return 0
  2479. fi
  2480. compose_service_def=$(get_compose_service_def "$service") || return 1
  2481. echo "$compose_service_def" | shyaml get-value "relations" 2>/dev/null | tee "$cache_file"
  2482. }
  2483. export -f get_compose_relation_config
  2484. # ## Return key-values-0
  2485. # get_compose_relation_config_for_service() {
  2486. # local service=$1 relation_name=$2 relation_config
  2487. # compose_service_relations=$(get_compose_relation_config "$service") || return 1
  2488. # if ! relation_config=$(
  2489. # echo "$compose_service_relations" |
  2490. # shyaml get-value "${relation_name}" 2>/dev/null); then
  2491. # err "Couldn't find $DARKYELLOW${service}$NORMAL/${WHITE}${relation_name}$NORMAL" \
  2492. # "relation config in compose configuration."
  2493. # return 1
  2494. # fi
  2495. # if [ -z "$relation_config" ]; then
  2496. # err "Relation ${WHITE}mysql-database$NORMAL is empty in compose configuration."
  2497. # return 1
  2498. # fi
  2499. # if ! echo "$relation_config" | shyaml key-values-0 2>/dev/null; then
  2500. # err "No key/values in ${DARKBLUE}mysql-database$NORMAL of compose config."
  2501. # return 1
  2502. # fi
  2503. # }
  2504. # export -f get_compose_relation_config_for_service
  2505. _get_container_relation() {
  2506. local metadata=$1 found relation_name relation_def
  2507. found=
  2508. while read-0 relation_name relation_def; do
  2509. [ "$(echo "$relation_def" | shyaml get-value "scope" 2>/dev/null)" == "container" ] && {
  2510. found="$relation_name"
  2511. break
  2512. }
  2513. done < <(_get_charm_metadata_uses "$metadata")
  2514. if [ -z "$found" ]; then
  2515. die "Charm $DARKPINK$charm$NORMAL is a subordinate but does not have any required relation declaration with" \
  2516. "${WHITE}scope${NORMAL} set to 'container'."
  2517. fi
  2518. printf "%s" "$found"
  2519. }
  2520. _get_master_service_for_service_cached () {
  2521. local service="$1" charm="$2" metadata="$3" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2522. charm requires master_charm target_charm target_service service_def found
  2523. if [ -e "$cache_file" ]; then
  2524. # debug "$FUNCNAME: STATIC cache hit ($1)"
  2525. cat "$cache_file" &&
  2526. touch "$cache_file" || return 1
  2527. return 0
  2528. fi
  2529. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" != "True" ]; then
  2530. ## just return service name
  2531. echo "$service" | tee "$cache_file"
  2532. return 0
  2533. fi
  2534. ## Action provided by relation ?
  2535. container_relation=$(_get_container_relation "$metadata") || exit 1
  2536. read-0 target_service _ _ < <(get_service_relation "$service" "$container_relation")
  2537. if [ -z "$target_service" ]; then
  2538. err "Couldn't find ${WHITE}relations.${container_relation}${NORMAL} in" \
  2539. "${DARKYELLOW}$service$NORMAL compose definition."
  2540. err ${FUNCNAME[@]}
  2541. return 1
  2542. fi
  2543. echo "$target_service" | tee "$cache_file"
  2544. }
  2545. export -f _get_master_service_for_service_cached
  2546. get_master_service_for_service() {
  2547. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2548. charm metadata result
  2549. if [ -e "$cache_file" ]; then
  2550. # debug "$FUNCNAME: SESSION cache hit ($*)"
  2551. cat "$cache_file" || return 1
  2552. return 0
  2553. fi
  2554. charm=$(get_service_charm "$service") || return 1
  2555. metadata=$(charm.metadata "$charm" 2>/dev/null) || {
  2556. metadata=""
  2557. warn "No charm $DARKPINK$charm$NORMAL found."
  2558. }
  2559. result=$(_get_master_service_for_service_cached "$service" "$charm" "$metadata") || return 1
  2560. echo "$result" | tee "$cache_file" || return 1
  2561. }
  2562. export -f get_master_service_for_service
  2563. get_top_master_service_for_service() {
  2564. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2565. current_service
  2566. if [ -e "$cache_file" ]; then
  2567. # debug "$FUNCNAME: cache hit ($*)"
  2568. cat "$cache_file"
  2569. return 0
  2570. fi
  2571. current_service="$service"
  2572. while true; do
  2573. master_service=$(get_master_service_for_service "$current_service") || return 1
  2574. [ "$master_service" == "$current_service" ] && break
  2575. current_service="$master_service"
  2576. done
  2577. echo "$current_service" | tee "$cache_file"
  2578. return 0
  2579. }
  2580. export -f get_top_master_service_for_service
  2581. ##
  2582. ## The result is a mixin that is not always a complete valid
  2583. ## docker-compose entry (thinking of subordinates). The result
  2584. ## will be merge with master charms.
  2585. _get_docker_compose_mixin_from_metadata_cached() {
  2586. local service="$1" charm="$2" metadata="$3" \
  2587. has_build_dir="$4" \
  2588. cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2589. metadata_file metadata volumes docker_compose subordinate image mixin mixins
  2590. if [ -e "$cache_file" ]; then
  2591. #debug "$FUNCNAME: STATIC cache hit $1"
  2592. cat "$cache_file" &&
  2593. touch "$cache_file" || return 1
  2594. return 0
  2595. fi
  2596. mixins=("$(echo -en "labels:\n- compose.charm=$charm")")
  2597. if [ "$metadata" ]; then
  2598. ## resources to volumes
  2599. volumes=$(
  2600. for resource_type in data config; do
  2601. while read-0 resource; do
  2602. eval "echo \" - \$HOST_${resource_type^^}STORE/\$service\$resource:\$resource:rw\""
  2603. done < <(echo "$metadata" | shyaml get-values-0 "${resource_type}-resources" 2>/dev/null)
  2604. done
  2605. while read-0 resource; do
  2606. if [[ "$resource" == /*:/*:* ]]; then
  2607. echo " - $resource"
  2608. elif [[ "$resource" == /*:/* ]]; then
  2609. echo " - $resource:rw"
  2610. elif [[ "$resource" == /*:* ]]; then
  2611. echo " - ${resource%%:*}:$resource"
  2612. elif [[ "$resource" =~ ^/[^:]+$ ]]; then
  2613. echo " - $resource:$resource:rw"
  2614. else
  2615. die "Invalid host-resource specified in 'metadata.yml'."
  2616. fi
  2617. done < <(printf "%s" "$metadata" | shyaml get-values-0 "host-resources" 2>/dev/null)
  2618. while read-0 resource; do
  2619. dest="$(charm.get_dir "$charm")/resources$resource"
  2620. if ! [ -e "$dest" ]; then
  2621. die "charm-resource: '$resource' does not exist (file: '$dest')."
  2622. fi
  2623. echo " - $dest:$resource:ro"
  2624. done < <(echo "$metadata" | shyaml get-values-0 "charm-resources" 2>/dev/null)
  2625. ) || return 1
  2626. if [ "$volumes" ]; then
  2627. mixins+=("volumes:"$'\n'"$volumes")
  2628. fi
  2629. type="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  2630. if [ "$type" != "run-once" ]; then
  2631. mixins+=("restart: unless-stopped")
  2632. fi
  2633. docker_compose=$(printf "%s" "$metadata" | shyaml get-value -y "docker-compose" 2>/dev/null) || true
  2634. if [ "$docker_compose" ]; then
  2635. mixins+=("$docker_compose")
  2636. fi
  2637. if [ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" == "True" ]; then
  2638. subordinate=true
  2639. fi
  2640. fi
  2641. image=$(echo "$metadata" | shyaml get-value "docker-image" 2>/dev/null)
  2642. [ "$image" == "None" ] && image=""
  2643. if [ "$image" ]; then
  2644. if [ "$subordinate" ]; then
  2645. err "Subordinate charm can not have a ${WHITE}docker-image${NORMAL} value."
  2646. return 1
  2647. fi
  2648. mixins+=("image: $image")
  2649. elif [ "$has_build_dir" ]; then
  2650. if [ "$subordinate" ]; then
  2651. err "Subordinate charm can not have a 'build' sub directory."
  2652. return 1
  2653. fi
  2654. mixins+=("build: $(charm.get_dir "$charm")/build")
  2655. fi
  2656. mixin=$(merge_yaml_str "${mixins[@]}") || {
  2657. err "Failed to merge mixins from ${DARKPINK}${charm}${NORMAL} metadata."
  2658. return 1
  2659. }
  2660. echo "$mixin" | tee "$cache_file"
  2661. }
  2662. export -f _get_docker_compose_mixin_from_metadata_cached
  2663. get_docker_compose_mixin_from_metadata() {
  2664. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  2665. if [ -e "$cache_file" ]; then
  2666. #debug "$FUNCNAME: SESSION cache hit ($*)"
  2667. cat "$cache_file"
  2668. return 0
  2669. fi
  2670. charm=$(get_service_charm "$service") || return 1
  2671. metadata="$(charm.metadata "$charm" 2>/dev/null)" || return 1
  2672. has_build_dir=
  2673. [ -d "$(charm.get_dir "$charm")/build" ] && has_build_dir=true
  2674. mixin=$(_get_docker_compose_mixin_from_metadata_cached "$service" "$charm" "$metadata" "$has_build_dir") || return 1
  2675. echo "$mixin" | tee "$cache_file"
  2676. }
  2677. export -f get_docker_compose_mixin_from_metadata
  2678. _save() {
  2679. local name="$1"
  2680. cat - | tee -a "$docker_compose_dir/.data/$name"
  2681. }
  2682. export -f _save
  2683. get_default_project_name() {
  2684. if [ -n "$DEFAULT_PROJECT_NAME" ]; then
  2685. echo "$DEFAULT_PROJECT_NAME"
  2686. return 0
  2687. fi
  2688. local normalized_path compose_yml_location name
  2689. compose_yml_location="$(get_compose_yml_location)" || return 1
  2690. if [ -n "$compose_yml_location" ]; then
  2691. if normalized_path=$(readlink -f "$compose_yml_location"); then
  2692. name="${normalized_path%/*}" ## dirname
  2693. name="${name##*/}" ## basename
  2694. name="${name%%-deploy}" ## remove any '-deploy'
  2695. name="${name,,}" ## lowercase
  2696. e "$name"
  2697. return 0
  2698. fi
  2699. fi
  2700. echo "orphan"
  2701. return 0
  2702. }
  2703. export -f get_default_project_name
  2704. get_running_compose_containers() {
  2705. ## XXXvlab: docker bug: there will be a final newline anyway
  2706. docker ps --filter label="compose.service" --format='{{.ID}}'
  2707. }
  2708. export -f get_running_compose_containers
  2709. get_healthy_container_ip_for_service () {
  2710. local service="$1" port="$2" timeout=${3:-60}
  2711. local containers container container_network container_ip
  2712. containers="$(get_running_containers_for_service "$service")"
  2713. if [ -z "$containers" ]; then
  2714. err "No containers running for service $DARKYELLOW$service$NORMAL."
  2715. exit 1
  2716. fi
  2717. ## XXXvlab: taking first container is probably not a good idea
  2718. container="$(echo "$containers" | head -n 1)"
  2719. ## XXXvlab: taking first ip is probably not a good idea
  2720. read-0 container_network container_ip < <(get_container_network_ip "$container")
  2721. if [ -z "$container_ip" ]; then
  2722. err "Can't get container's IP. You should check health of" \
  2723. "${DARKYELLOW}$service${NORMAL}'s container."
  2724. exit 1
  2725. fi
  2726. wait_for_tcp_port "$container_network" "$container_ip:$port" "$timeout" || {
  2727. err "TCP port of ${DARKYELLOW}$service${NORMAL}'s container doesn't seem open"
  2728. echo " Please check that container is healthy. Here are last logs:" >&2
  2729. docker logs "$container" --tail=10 | prefix " ${GRAY}|${NORMAL} " >&2
  2730. exit 1
  2731. }
  2732. info "Host/Port ${container_ip}:${port} checked ${GREEN}open${NORMAL}."
  2733. echo "$container_network:$container_ip"
  2734. }
  2735. export -f get_healthy_container_ip_for_service
  2736. switch_to_relation_service() {
  2737. local relation="$1"
  2738. ## XXXvlab: can't get real config here
  2739. if ! read-0 ts _ _ < <(get_service_relation "$SERVICE_NAME" "$relation"); then
  2740. err "Couldn't find relation ${DARKCYAN}$relation${NORMAL}."
  2741. exit 1
  2742. fi
  2743. export SERVICE_NAME="$ts"
  2744. export SERVICE_DATASTORE="$DATASTORE/$SERVICE_NAME"
  2745. DOCKER_BASE_IMAGE=$(service_base_docker_image "$SERVICE_NAME")
  2746. export DOCKER_BASE_IMAGE
  2747. target_charm=$(get_service_charm "$ts") || exit 1
  2748. target_charm_path=$(charm.get_dir "$target_charm") || exit 1
  2749. cd "$target_charm_path"
  2750. }
  2751. export -f switch_to_relation_service
  2752. get_volumes_for_container() {
  2753. local container="$1"
  2754. docker inspect \
  2755. --format '{{range $mount := .Mounts}}{{$mount.Source}}{{"\x00"}}{{$mount.Destination}}{{"\x00"}}{{end}}' \
  2756. "$container"
  2757. }
  2758. export -f get_volumes_for_container
  2759. is_volume_used() {
  2760. local volume="$1" container_id src dst
  2761. while read -r container_id; do
  2762. while read-0 src dst; do
  2763. [[ "$src/" == "$volume"/* ]] && return 0
  2764. done < <(get_volumes_for_container "$container_id")
  2765. done < <(get_running_compose_containers)
  2766. return 1
  2767. }
  2768. export -f is_volume_used
  2769. clean_unused_docker_compose() {
  2770. for f in /var/lib/compose/docker-compose/*; do
  2771. [ -e "$f" ] || continue
  2772. is_volume_used "$f" && continue
  2773. debug "Cleaning unused docker-compose ${f##*/}"
  2774. rm -rf "$f" || return 1
  2775. done
  2776. return 0
  2777. }
  2778. export -f clean_unused_docker_compose
  2779. stdin_get_hash() {
  2780. local sha
  2781. sha=$(sha256sum) || return 1
  2782. sha=${sha:0:64}
  2783. echo "$sha"
  2784. }
  2785. export -f stdin_get_hash
  2786. file_get_hash() {
  2787. stdin_get_hash < "$1" || return 1
  2788. }
  2789. export -f file_get_hash
  2790. docker_compose_store() {
  2791. local file="$1" sha
  2792. sha=$(file_get_hash "$file") || return 1
  2793. project=$(get_default_project_name) || return 1
  2794. dst="/var/lib/compose/docker-compose/$sha/$project"
  2795. mkdir -p "$dst" || return 1
  2796. cat <<EOF > "$dst/.env" || return 1
  2797. DOCKER_COMPOSE_PATH=$dst
  2798. COMPOSE_HTTP_TIMEOUT=7200
  2799. EOF
  2800. cp "$file" "$dst/docker-compose.yml" || return 1
  2801. mkdir -p "$dst/bin" || return 1
  2802. cat <<EOF > "$dst/bin/dc" || return 1
  2803. #!/bin/bash
  2804. $(declare -f read-0)
  2805. docker_run_opts=()
  2806. while read-0 opt; do
  2807. if [[ "\$opt" == "!env:"* ]]; then
  2808. opt="\${opt##!env:}"
  2809. var="\${opt%%=*}"
  2810. value="\${opt#*=}"
  2811. export "\$var"="\$value"
  2812. else
  2813. docker_run_opts+=("\$opt")
  2814. fi
  2815. done < <(cat "$COMPOSE_LAUNCHER_OPTS")
  2816. docker_run_opts+=(
  2817. "-w" "$dst"
  2818. "--entrypoint" "/usr/local/bin/docker-compose"
  2819. )
  2820. [ -t 1 ] && {
  2821. docker_run_opts+=("-ti")
  2822. }
  2823. exec docker run --rm "\${docker_run_opts[@]}" "\${COMPOSE_DOCKER_IMAGE:-docker.0k.io/compose}" "\$@"
  2824. EOF
  2825. chmod +x "$dst/bin/dc" || return 1
  2826. printf "%s" "$sha"
  2827. }
  2828. export -f docker_compose_store
  2829. launch_docker_compose() {
  2830. local charm docker_compose_tmpdir docker_compose_dir
  2831. docker_compose_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  2832. #debug "Creating temporary docker-compose directory in '$docker_compose_tmpdir'."
  2833. trap_add EXIT "rm -rf \"$docker_compose_tmpdir\""
  2834. ## docker-compose will name network from the parent dir name
  2835. project=$(get_default_project_name)
  2836. mkdir -p "$docker_compose_tmpdir/$project"
  2837. docker_compose_dir="$docker_compose_tmpdir/$project"
  2838. get_docker_compose $SERVICE_PACK > "$docker_compose_dir/docker-compose.yml" || return 1
  2839. if [ -e "$state_tmpdir/to-merge-in-docker-compose.yml" ]; then
  2840. # debug "Merging some config data in docker-compose.yml:"
  2841. # debug "$(cat $state_tmpdir/to-merge-in-docker-compose.yml)"
  2842. _config_merge "$docker_compose_dir/docker-compose.yml" "$state_tmpdir/to-merge-in-docker-compose.yml" || return 1
  2843. fi
  2844. if [ -z "$(echo $(cat "$docker_compose_dir/docker-compose.yml"))" ]; then
  2845. die "Generated 'docker-compose.yml' is unexpectedly empty."
  2846. fi
  2847. ## XXXvlab: could be more specific and only link the needed charms
  2848. ## XXXvlab: why do we need these links ? If this is for the build command, then it is not useful anymore.
  2849. # for charm in $(shyaml keys services < "$docker_compose_dir/docker-compose.yml"); do
  2850. # if charm.exists "$charm"; then
  2851. # ln -sf "$(charm.get_dir "$charm")" "$docker_compose_dir/$charm" || exit 1
  2852. # fi
  2853. # done
  2854. mkdir "$docker_compose_dir/.data"
  2855. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  2856. sha=$(docker_compose_store "$docker_compose_dir/docker-compose.yml") || return 1
  2857. fi
  2858. {
  2859. {
  2860. {
  2861. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  2862. cd "/var/lib/compose/docker-compose/$sha/$project" || return 1
  2863. else
  2864. cd "$docker_compose_dir" || return 1
  2865. fi
  2866. if [ -f ".env" ]; then
  2867. debug "${WHITE}.env$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  2868. debug "$(cat ".env" | prefix " $GRAY|$NORMAL ")"
  2869. fi
  2870. debug "${WHITE}docker-compose.yml$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  2871. debug "$(cat "docker-compose.yml" | prefix " $GRAY|$NORMAL ")"
  2872. debug "${WHITE}Launching$NORMAL: docker-compose $@"
  2873. if [ "$DRY_COMPOSE_RUN" ]; then
  2874. echo docker-compose "$@"
  2875. else
  2876. docker-compose "$@"
  2877. fi
  2878. echo "$?" > "$docker_compose_dir/.data/errlvl"
  2879. } | _save stdout
  2880. } 3>&1 1>&2 2>&3 | _save stderr
  2881. } 3>&1 1>&2 2>&3
  2882. 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
  2883. err "Detected bug https://github.com/docker/docker/issues/4036 ... "
  2884. err "Please re-launch your command, or switch from 'devicemapper' driver to 'overlayfs' or 'aufs'."
  2885. fi
  2886. docker_compose_errlvl="$(cat "$docker_compose_dir/.data/errlvl" 2>/dev/null)"
  2887. if [ -z "$docker_compose_errlvl" ]; then
  2888. err "Something went wrong before you could gather docker-compose errorlevel."
  2889. return 1
  2890. fi
  2891. return "$docker_compose_errlvl"
  2892. }
  2893. export -f launch_docker_compose
  2894. get_compose_yml_location() {
  2895. if ! [ -z ${COMPOSE_YML_FILE+x} ]; then ## if set, even if empty
  2896. echo "$COMPOSE_YML_FILE"
  2897. return 0
  2898. fi
  2899. parent=$(while ! [ -f "./compose.yml" ]; do
  2900. [ "$PWD" == "/" ] && exit 0
  2901. cd ..
  2902. done; echo "$PWD"
  2903. )
  2904. if [ "$parent" ]; then
  2905. echo "$parent/compose.yml"
  2906. return 0
  2907. fi
  2908. ## XXXvlab: do we need this additional environment variable,
  2909. ## COMPOSE_YML_FILE is not sufficient ?
  2910. if [ "$DEFAULT_COMPOSE_FILE" ]; then
  2911. if ! [ -e "$DEFAULT_COMPOSE_FILE" ]; then
  2912. warn "No 'compose.yml' was found in current or parent dirs," \
  2913. "and \$DEFAULT_COMPOSE_FILE points to an unexistent file." \
  2914. "(${DEFAULT_COMPOSE_FILE})"
  2915. return 0
  2916. fi
  2917. echo "$DEFAULT_COMPOSE_FILE"
  2918. return 0
  2919. fi
  2920. warn "No 'compose.yml' was found in current or parent dirs, and no \$DEFAULT_COMPOSE_FILE was set."
  2921. return 0
  2922. }
  2923. export -f get_compose_yml_location
  2924. get_compose_yml_content() {
  2925. local cache_file="$state_tmpdir/$FUNCNAME.cache"
  2926. if [ -e "$cache_file" ]; then
  2927. cat "$cache_file" &&
  2928. touch "$cache_file" || return 1
  2929. return 0
  2930. fi
  2931. if [ -z "$COMPOSE_YML_FILE" ]; then
  2932. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  2933. fi
  2934. if [ -e "$COMPOSE_YML_FILE" ]; then
  2935. debug "Found $WHITE$exname$NORMAL YAML file in '$COMPOSE_YML_FILE'."
  2936. COMPOSE_YML_CONTENT=$(cat "$COMPOSE_YML_FILE") || {
  2937. err "Could not read '$COMPOSE_YML_FILE'."
  2938. return 1
  2939. }
  2940. else
  2941. debug "No compose file found. Using an empty one."
  2942. COMPOSE_YML_CONTENT=""
  2943. fi
  2944. COMPOSE_YML_CONTENT=$(merge_yaml_str "$COMPOSE_YML_CONTENT" "${compose_contents[@]}") || return 1
  2945. output=$(echo "$COMPOSE_YML_CONTENT"| shyaml get-value 2>&1)
  2946. if [ "$?" != 0 ]; then
  2947. outputed_something=
  2948. while IFS='' read -r line1 && IFS='' read -r line2; do
  2949. [ "$outputed_something" ] || err "Invalid YAML in '$COMPOSE_YML_FILE':"
  2950. outputed_something=true
  2951. echo "$line1 $GRAY($line2)$NORMAL"
  2952. done < <(echo "$output" | grep ^yaml.scanner -A 100 |
  2953. sed -r 's/^ in "<stdin>", //g' | sed -r 's/^yaml.scanner.[a-zA-Z]+: //g') |
  2954. prefix " $GRAY|$NORMAL "
  2955. [ "$outputed_something" ] || {
  2956. err "Unexpected error while running 'shyaml get-value' on '$COMPOSE_YML_FILE':"
  2957. echo "$output" | prefix " $GRAY|$NORMAL "
  2958. }
  2959. return 1
  2960. fi
  2961. echo "$COMPOSE_YML_CONTENT" | tee "$cache_file" || return 1
  2962. }
  2963. export -f get_compose_yml_content
  2964. get_default_target_services() {
  2965. local services=("$@")
  2966. if [ -z "${services[*]}" ]; then
  2967. if [ "$DEFAULT_SERVICES" ]; then
  2968. debug "No service provided, using $WHITE\$DEFAULT_SERVICES$NORMAL variable." \
  2969. "Target services: $DARKYELLOW$DEFAULT_SERVICES$NORMAL"
  2970. services="$DEFAULT_SERVICES"
  2971. else
  2972. err "No service provided."
  2973. return 1
  2974. fi
  2975. fi
  2976. echo "${services[*]}"
  2977. }
  2978. export -f get_default_target_services
  2979. get_master_services() {
  2980. local loaded master_service service
  2981. declare -A loaded
  2982. for service in "$@"; do
  2983. master_service=$(get_top_master_service_for_service "$service") || return 1
  2984. if [ "${loaded[$master_service]}" ]; then
  2985. continue
  2986. fi
  2987. echo "$master_service"
  2988. loaded["$master_service"]=1
  2989. done | nspc
  2990. return "${PIPESTATUS[0]}"
  2991. }
  2992. export -f get_master_services
  2993. get_current_docker_container_id() {
  2994. local line
  2995. line=$(cat "/proc/self/cpuset") || return 1
  2996. [[ "$line" == *docker* ]] || return 1
  2997. echo "${line##*/}"
  2998. }
  2999. export -f get_current_docker_container_id
  3000. ## if we are in a docker compose, we might want to know what is the
  3001. ## real host path of some local paths.
  3002. get_host_path() {
  3003. local path="$1"
  3004. path=$(realpath "$path") || return 1
  3005. container_id=$(get_current_docker_container_id) || {
  3006. print "%s" "$path"
  3007. return 0
  3008. }
  3009. biggest_dst=
  3010. current_src=
  3011. while read-0 src dst; do
  3012. [[ "$path" == "$dst"* ]] || continue
  3013. if [[ "${#biggest_dst}" < "${#dst}" ]]; then
  3014. biggest_dst="$dst"
  3015. current_src="$src"
  3016. fi
  3017. done < <(get_volumes_for_container "$container_id")
  3018. if [ "$current_src" ]; then
  3019. printf "%s" "$current_src"
  3020. else
  3021. return 1
  3022. fi
  3023. }
  3024. export -f get_host_path
  3025. _setup_state_dir() {
  3026. export state_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  3027. #debug "Creating temporary state directory in '$state_tmpdir'."
  3028. # trap_add EXIT "debug \"Removing temporary state directory in $state_tmpdir.\";\
  3029. # rm -rf \"$state_tmpdir\""
  3030. trap_add EXIT "rm -rf \"$state_tmpdir\""
  3031. }
  3032. get_docker_compose_help_msg() {
  3033. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3034. docker_compose_help_msg
  3035. if [ -e "$cache_file" ]; then
  3036. cat "$cache_file" &&
  3037. touch "$cache_file" || return 1
  3038. return 0
  3039. fi
  3040. docker_compose_help_msg=$(docker-compose $action --help 2>/dev/null) || return 1
  3041. echo "$docker_compose_help_msg" |
  3042. tee "$cache_file" || return 1
  3043. }
  3044. get_docker_compose_usage() {
  3045. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3046. docker_compose_help_msg
  3047. if [ -e "$cache_file" ]; then
  3048. cat "$cache_file" &&
  3049. touch "$cache_file" || return 1
  3050. return 0
  3051. fi
  3052. docker_compose_help_msg=$(get_docker_compose_help_msg $action) || return 1
  3053. echo "$docker_compose_help_msg" |
  3054. grep -m 1 "^Usage:" -A 10000 |
  3055. egrep -m 1 "^\$" -B 10000 |
  3056. nspc |
  3057. sed -r 's/^Usage: //g' |
  3058. tee "$cache_file" || return 1
  3059. }
  3060. get_docker_compose_opts_help() {
  3061. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3062. docker_compose_help_msg
  3063. if [ -e "$cache_file" ]; then
  3064. cat "$cache_file" &&
  3065. touch "$cache_file" || return 1
  3066. return 0
  3067. fi
  3068. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3069. echo "$docker_compose_opts_help" |
  3070. grep '^Options:' -A 20000 |
  3071. tail -n +2 |
  3072. { cat ; echo; } |
  3073. egrep -m 1 "^\S*\$" -B 10000 |
  3074. head -n -1 |
  3075. tee "$cache_file" || return 1
  3076. }
  3077. get_docker_compose_commands_help() {
  3078. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3079. docker_compose_help_msg
  3080. if [ -e "$cache_file" ]; then
  3081. cat "$cache_file" &&
  3082. touch "$cache_file" || return 1
  3083. return 0
  3084. fi
  3085. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3086. echo "$docker_compose_opts_help" |
  3087. grep '^Commands:' -A 20000 |
  3088. tail -n +2 |
  3089. { cat ; echo; } |
  3090. egrep -m 1 "^\S*\$" -B 10000 |
  3091. head -n -1 |
  3092. tee "$cache_file" || return 1
  3093. }
  3094. get_docker_compose_opts_list() {
  3095. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3096. docker_compose_help_msg
  3097. if [ -e "$cache_file" ]; then
  3098. cat "$cache_file" &&
  3099. touch "$cache_file" || return 1
  3100. return 0
  3101. fi
  3102. docker_compose_opts_help=$(get_docker_compose_opts_help $action) || return 1
  3103. echo "$docker_compose_opts_help" |
  3104. egrep "^\s+-" |
  3105. sed -r 's/\s+((((-[a-zA-Z]|--[a-zA-Z0-9-]+)( [A-Z=]+|=[^ ]+)?)(, )?)+)\s+.*$/\1/g' |
  3106. tee "$cache_file" || return 1
  3107. }
  3108. options_parser() {
  3109. sed -r 's/^(\s+(((-[a-zA-Z]|--[a-zA-Z0-9-]+)([ =]([a-zA-Z_=\"\[]|\])+)?(, | )?)+)\s+)[^ ].*$/\x0\2\x0\0/g'
  3110. printf "\0"
  3111. }
  3112. remove_options_in_option_help_msg() {
  3113. {
  3114. read-0 null
  3115. if [ "$null" ]; then
  3116. err "options parsing error, should start with an option line."
  3117. return 1
  3118. fi
  3119. while read-0 opt full_txt;do
  3120. multi_opts="$(printf "%s " $opt | multi_opts_filter)"
  3121. single_opts="$(printf "%s " $opt | single_opts_filter)"
  3122. for to_remove in "$@"; do
  3123. str_matches "$to_remove" $multi_opts $single_opts && {
  3124. continue 2
  3125. }
  3126. done
  3127. echo -n "$full_txt"
  3128. done
  3129. } < <(options_parser)
  3130. }
  3131. _MULTIOPTION_REGEX='^((-[a-zA-Z]|--[a-zA-Z0-9-]+)(, )?)+'
  3132. _MULTIOPTION_REGEX_LINE_FILTER=$_MULTIOPTION_REGEX'(\s|=)'
  3133. multi_opts_filter() {
  3134. egrep "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3135. sed -r "s/^($_MULTIOPTION_REGEX)(\s|=).*$/\1/g" |
  3136. tr ',' "\n" | nspc
  3137. }
  3138. single_opts_filter() {
  3139. egrep -v "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3140. tr ',' "\n" | nspc
  3141. }
  3142. get_docker_compose_multi_opts_list() {
  3143. local action="$1" opts_list
  3144. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3145. echo "$opts_list" | multi_opts_filter
  3146. }
  3147. get_docker_compose_single_opts_list() {
  3148. local action="$1" opts_list
  3149. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3150. echo "$opts_list" | single_opts_filter
  3151. }
  3152. display_commands_help() {
  3153. local charm_actions
  3154. echo
  3155. echo "${WHITE}Commands${NORMAL} (thanks to docker-compose):"
  3156. get_docker_compose_commands_help | sed -r "s/ ([a-z]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2/g"
  3157. charm_actions_help=$(get_docker_charm_action_help) || return 1
  3158. if [ "$charm_actions_help" ]; then
  3159. echo
  3160. echo "${WHITE}Charm actions${NORMAL}:"
  3161. printf "%s\n" "$charm_actions_help" | \
  3162. sed -r "s/^ ([a-z0-9-]+)(\s+)([a-z0-9-]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2${DARKYELLOW}\3${NORMAL}\4/g"
  3163. fi
  3164. }
  3165. get_docker_charm_action_help() {
  3166. local services service charm relation_name target_service relation_config \
  3167. target_charm
  3168. services=($(get_compose_yml_content | shyaml keys 2>/dev/null))
  3169. get_all_relations "${services[@]}" >/dev/null 2>&1 || exit 1
  3170. for service in "${services[@]}"; do
  3171. out=$(
  3172. charm=$(get_service_charm "$service") || return 1
  3173. for action in $(charm.ls_direct_actions "$charm"); do
  3174. printf " %-28s %s\n" "$action $service" "Direct action from ${DARKPINK}$charm${NORMAL}"
  3175. done
  3176. while read-0 relation_name target_service _relation_config _tech_dep; do
  3177. target_charm=$(get_service_charm "$target_service") || return 1
  3178. for action in $(charm.ls_relation_actions "$target_charm" "$relation_name"); do
  3179. printf " %-28s %s\n" "$action $service" "Indirect action from ${DARKPINK}$target_charm${NORMAL}"
  3180. done
  3181. done < <(get_service_relations "$service")
  3182. )
  3183. if [ "$out" ]; then
  3184. echo " for ${DARKYELLOW}$service${NORMAL}:"
  3185. printf "%s\n" "$out"
  3186. fi
  3187. done
  3188. }
  3189. display_help() {
  3190. print_help
  3191. echo "${WHITE}Usage${NORMAL}:"
  3192. echo " $usage"
  3193. echo "${WHITE}Options${NORMAL}:"
  3194. echo " -h, --help Print this message and quit"
  3195. echo " (ignoring any other options)"
  3196. echo " -V, --version Print current version and quit"
  3197. echo " (ignoring any other options)"
  3198. echo " --dirs Display data dirs and quit"
  3199. echo " (ignoring any other options)"
  3200. echo " --get-project-name Display project name and quit"
  3201. echo " (ignoring any other options)"
  3202. echo " -v, --verbose Be more verbose"
  3203. echo " -q, --quiet Be quiet"
  3204. echo " -d, --debug Print full debugging information (sets also verbose)"
  3205. echo " --dry-compose-run If docker-compose will be run, only print out what"
  3206. echo " command line will be used."
  3207. echo " --no-relations Do not run any relation script"
  3208. echo " --no-hooks Do not run any hook script"
  3209. echo " --no-init Do not run any init script"
  3210. echo " --no-post-deploy Do not run any post-deploy script"
  3211. echo " --no-pre-deploy Do not run any pre-deploy script"
  3212. echo " --without-relation RELATION "
  3213. echo " Do not run given relation"
  3214. echo " -R, --rebuild-relations-to-service SERVICE"
  3215. echo " Will rebuild all relations to given service"
  3216. echo " --add-compose-content, -Y YAML"
  3217. echo " Will merge some direct YAML with the current compose"
  3218. get_docker_compose_opts_help | remove_options_in_option_help_msg --version --help --verbose |
  3219. filter_docker_compose_help_message
  3220. display_commands_help
  3221. }
  3222. _graph_service() {
  3223. local service="$1" base="$1"
  3224. charm=$(get_service_charm "$service") || return 1
  3225. metadata=$(charm.metadata "$charm") || return 1
  3226. subordinate=$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)
  3227. if [ "$subordinate" == "True" ]; then
  3228. requires="$(echo "$metadata" | shyaml get-value "requires" 2>/dev/null)"
  3229. master_charm=
  3230. while read-0 relation_name relation; do
  3231. [ "$(echo "$relation" | shyaml get-value "scope" 2>/dev/null)" == "container" ] || continue
  3232. interface="$(echo "$relation" | shyaml get-value "interface" 2>/dev/null)"
  3233. if [ -z "$interface" ]; then
  3234. err "No ${WHITE}$interface${NORMAL} set for relation $relation_name."
  3235. return 1
  3236. fi
  3237. ## Action provided by relation ?
  3238. target_service=
  3239. while read-0 relation_name candidate_target_service _relation_config _tech_dep; do
  3240. [ "$interface" == "$relation_name" ] && {
  3241. target_service="$candidate_target_service"
  3242. break
  3243. }
  3244. done < <(get_service_relations "$service")
  3245. if [ -z "$target_service" ]; then
  3246. err "Couldn't find ${WHITE}relations.$interface${NORMAL} in" \
  3247. "${DARKYELLOW}$service$NORMAL compose definition."
  3248. return 1
  3249. fi
  3250. master_service="$target_service"
  3251. master_charm=$(get_service_charm "$target_service") || return 1
  3252. break
  3253. done < <(echo "$requires" | shyaml key-values-0 2>/dev/null)
  3254. fi
  3255. _graph_node_service "$service" "$base" "$charm"
  3256. _graph_edge_service "$service" "$subordinate" "$master_service"
  3257. }
  3258. _graph_node_service() {
  3259. local service="$1" base="$2" charm="$3"
  3260. cat <<EOF
  3261. "$(_graph_node_service_label ${service})" [
  3262. style = "filled, $([ "$subordinate" == "True" ] && echo "dashed" || echo "bold")"
  3263. penwidth = $([ "$subordinate" == "True" ] && echo "3" || echo "5")
  3264. color = $([ "$base" ] && echo "blue" || echo "black")
  3265. fillcolor = "white"
  3266. fontname = "Courier New"
  3267. shape = "Mrecord"
  3268. label =<$(_graph_node_service_content "$service")>
  3269. ];
  3270. EOF
  3271. }
  3272. _graph_edge_service() {
  3273. local service="$1" subordinate="$2" master_service="$3"
  3274. while read-0 relation_name target_service relation_config tech_dep; do
  3275. cat <<EOF
  3276. "$(_graph_node_service_label ${service})" -> "$(_graph_node_service_label ${target_service})" [
  3277. penwidth = $([ "$master_service" == "$target_service" ] && echo 3 || echo 2)
  3278. fontsize = 16
  3279. fontcolor = "black"
  3280. style = $([ "$master_service" == "$target_service" ] && echo dashed || echo "\"\"")
  3281. weight = $([ "$master_service" == "$target_service" ] && echo 2.0 || echo 1.0)
  3282. dir = $([ "$master_service" == "$target_service" ] && echo none || echo both)
  3283. arrowtail = odot
  3284. # arrowhead = dotlicurve
  3285. taillabel = "$relation_name" ];
  3286. EOF
  3287. done < <(get_service_relations "$service") || return 1
  3288. }
  3289. _graph_node_service_label() {
  3290. local service="$1"
  3291. echo "service_$service"
  3292. }
  3293. _graph_node_service_content() {
  3294. local service="$1"
  3295. charm=$(get_service_charm "$service") || return 1
  3296. cat <<EOF
  3297. <table border="0" cellborder="0" cellpadding="3" bgcolor="white">
  3298. <tr>
  3299. <td bgcolor="black" align="center" colspan="2">
  3300. <font color="white">$service</font>
  3301. </td>
  3302. </tr>
  3303. $(if [ "$charm" != "$service" ]; then
  3304. cat <<EOF2
  3305. <tr>
  3306. <td align="left" port="r0">charm: $charm</td>
  3307. </tr>
  3308. EOF2
  3309. fi)
  3310. </table>
  3311. EOF
  3312. }
  3313. cla_contains () {
  3314. local e
  3315. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  3316. return 1
  3317. }
  3318. filter_docker_compose_help_message() {
  3319. cat - |
  3320. sed -r "s/docker-compose run/${DARKWHITE}compose${NORMAL} ${DARKCYAN}$action${NORMAL}/g;
  3321. s/docker-compose.yml/compose.yml/g;
  3322. s/SERVICES?/${DARKYELLOW}\0${NORMAL}/g;
  3323. s/^(\s+)\\$/\1${WHITE}\$${NORMAL}/g;
  3324. s/^(\s+)run/\1${DARKCYAN}$action${NORMAL}/g;
  3325. s/docker-compose/${DARKWHITE}compose${NORMAL}/g"
  3326. }
  3327. graph() {
  3328. local services=("$@")
  3329. declare -A entries
  3330. cat <<EOF
  3331. digraph g {
  3332. graph [
  3333. fontsize=30
  3334. labelloc="t"
  3335. label=""
  3336. splines=true
  3337. overlap=false
  3338. #rankdir = "LR"
  3339. ];
  3340. ratio = auto;
  3341. EOF
  3342. for target_service in "$@"; do
  3343. services=$(get_ordered_service_dependencies "$target_service") || return 1
  3344. for service in $services; do
  3345. [ "${entries[$service]}" ] && continue || entries[$service]=1
  3346. if cla_contains "$service" "${services[@]}"; then
  3347. base=true
  3348. else
  3349. base=
  3350. fi
  3351. _graph_service "$service" "$base"
  3352. done
  3353. done
  3354. echo "}"
  3355. }
  3356. cached_wget() {
  3357. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(p0 "$@" | md5_compat)" \
  3358. url="$1"
  3359. if [ -e "$cache_file" ]; then
  3360. cat "$cache_file"
  3361. touch "$cache_file"
  3362. return 0
  3363. fi
  3364. wget -O- "${url}" |
  3365. tee "$cache_file"
  3366. if [ "${PIPESTATUS[0]}" != 0 ]; then
  3367. rm "$cache_file"
  3368. die "Unable to fetch '$url'."
  3369. return 1
  3370. fi
  3371. }
  3372. export -f cached_wget
  3373. [ "$SOURCED" ] && return 0
  3374. trap_add "EXIT" clean_cache
  3375. if [ -z "$DISABLE_SYSTEM_CONFIG_FILE" ]; then
  3376. if [ -r /etc/default/charm ]; then
  3377. . /etc/default/charm
  3378. fi
  3379. if [ -r "/etc/default/$exname" ]; then
  3380. . "/etc/default/$exname"
  3381. fi
  3382. ## XXXvlab: should provide YML config opportunities in possible parent dirs ?
  3383. ## userdir ? and global /etc/compose.yml ?
  3384. for cfgfile in /etc/compose.conf /etc/compose.local.conf \
  3385. /etc/default/compose /etc/compose/local.conf; do
  3386. [ -e "$cfgfile" ] || continue
  3387. . "$cfgfile" || die "Loading config file '$cfgfile' failed."
  3388. done
  3389. fi
  3390. _setup_state_dir
  3391. mkdir -p "$CACHEDIR" || exit 1
  3392. log () { cat; }
  3393. export -f log
  3394. ##
  3395. ## Argument parsing
  3396. ##
  3397. wrap_opts=()
  3398. services=()
  3399. remainder_args=()
  3400. compose_opts=()
  3401. compose_contents=()
  3402. action_opts=()
  3403. services_args=()
  3404. pos_arg_ct=0
  3405. no_hooks=
  3406. no_init=
  3407. action=
  3408. stage="main" ## switches from 'main', to 'action', 'remainder'
  3409. is_docker_compose_action=
  3410. rebuild_relations_to_service=()
  3411. declare -A without_relations
  3412. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list) &&
  3413. DC_MATCH_SINGLE=$(get_docker_compose_single_opts_list) || exit 1
  3414. while read-0 arg; do
  3415. case "$stage" in
  3416. "main")
  3417. case "$arg" in
  3418. --help|-h)
  3419. no_init=true ; no_hooks=true ; no_relations=true
  3420. display_help
  3421. exit 0
  3422. ;;
  3423. --verbose|-v)
  3424. export VERBOSE=true
  3425. compose_opts+=("--verbose")
  3426. ;;
  3427. --quiet|-q)
  3428. export QUIET=true
  3429. export wrap_opts+=("-q")
  3430. log () { cat >&2; }
  3431. export -f log
  3432. ;;
  3433. --version|-V)
  3434. print_version
  3435. docker-compose --version
  3436. docker --version
  3437. exit 0
  3438. ;;
  3439. -f|--file)
  3440. read-0 value
  3441. [ -e "$value" ] || die "File $value doesn't exists"
  3442. export COMPOSE_YML_FILE="$value"
  3443. shift
  3444. ;;
  3445. -p|--project-name)
  3446. read-0 value
  3447. export DEFAULT_PROJECT_NAME="$value"
  3448. compose_opts+=("--project-name $value")
  3449. shift
  3450. ;;
  3451. --no-relations)
  3452. export no_relations=true
  3453. ;;
  3454. --without-relation)
  3455. read-0 value
  3456. without_relations["$value"]=1
  3457. shift
  3458. ;;
  3459. --no-hooks)
  3460. export no_hooks=true
  3461. ;;
  3462. --no-init)
  3463. export no_init=true
  3464. ;;
  3465. --no-post-deploy)
  3466. export no_post_deploy=true
  3467. ;;
  3468. --no-pre-deploy)
  3469. export no_pre_deploy=true
  3470. ;;
  3471. --rebuild-relations-to-service|-R)
  3472. read-0 value
  3473. rebuild_relations_to_service+=("$value")
  3474. shift
  3475. ;;
  3476. --debug|-d)
  3477. export DEBUG=true
  3478. export VERBOSE=true
  3479. #compose_opts+=("--verbose" "--log-level" "DEBUG")
  3480. ;;
  3481. --add-compose-content|-Y)
  3482. read-0 value
  3483. compose_contents+=("$value")
  3484. shift
  3485. ;;
  3486. --dirs)
  3487. echo "CACHEDIR: $CACHEDIR"
  3488. echo "VARDIR: $VARDIR"
  3489. exit 0
  3490. ;;
  3491. --get-project-name)
  3492. project=$(get_default_project_name) || return 1
  3493. echo "$project"
  3494. exit 0
  3495. ;;
  3496. --dry-compose-run)
  3497. export DRY_COMPOSE_RUN=true
  3498. ;;
  3499. --*|-*)
  3500. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  3501. read-0 value
  3502. compose_opts+=("$arg" "$value")
  3503. shift;
  3504. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  3505. compose_opts+=("$arg")
  3506. else
  3507. err "Unknown option '$arg'. Please check help:"
  3508. display_help >&2
  3509. exit 1
  3510. fi
  3511. ;;
  3512. *)
  3513. action="$arg"
  3514. stage="action"
  3515. if DC_USAGE=$(get_docker_compose_usage "$action"); then
  3516. is_docker_compose_action=true
  3517. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list "$action") &&
  3518. DC_MATCH_SINGLE="$(get_docker_compose_single_opts_list "$action")"
  3519. if [ "$DC_MATCH_MULTI" ]; then
  3520. DC_MATCH_SINGLE="$DC_MATCH_SINGLE $(echo "$DC_MATCH_MULTI" | sed -r 's/( |$)/=\* /g')"
  3521. fi
  3522. pos_args=($(echo "$DC_USAGE" | sed -r 's/\[-[^]]+\] ?//g;s/\[options\] ?//g'))
  3523. pos_args=("${pos_args[@]:1}")
  3524. # echo "USAGE: $DC_USAGE"
  3525. # echo "pos_args: ${pos_args[@]}"
  3526. # echo "MULTI: $DC_MATCH_MULTI"
  3527. # echo "SINGLE: $DC_MATCH_SINGLE"
  3528. # exit 1
  3529. else
  3530. stage="remainder"
  3531. fi
  3532. ;;
  3533. esac
  3534. ;;
  3535. "action") ## Only for docker-compose actions
  3536. case "$arg" in
  3537. --help|-h)
  3538. no_init=true ; no_hooks=true ; no_relations=true
  3539. action_opts+=("$arg")
  3540. ;;
  3541. --*|-*)
  3542. if [ "$is_docker_compose_action" ]; then
  3543. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  3544. read-0 value
  3545. action_opts+=("$arg" "$value")
  3546. shift
  3547. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  3548. action_opts+=("$arg")
  3549. else
  3550. err "Unknown option '$arg'. Please check '${DARKCYAN}$action${NORMAL}' help:"
  3551. docker-compose "$action" --help |
  3552. filter_docker_compose_help_message >&2
  3553. exit 1
  3554. fi
  3555. fi
  3556. ;;
  3557. *)
  3558. # echo "LOOP $1 : pos_arg: $pos_arg_ct // ${pos_args[$pos_arg_ct]}"
  3559. if [[ "${pos_args[$pos_arg_ct]}" == "[SERVICE...]" ]]; then
  3560. services_args+=("$arg")
  3561. elif [[ "${pos_args[$pos_arg_ct]}" == "SERVICE" ]]; then
  3562. services_args=("$arg") || exit 1
  3563. stage="remainder"
  3564. else
  3565. action_posargs+=("$arg")
  3566. ((pos_arg_ct++))
  3567. fi
  3568. ;;
  3569. esac
  3570. ;;
  3571. "remainder")
  3572. remainder_args+=("$arg")
  3573. while read-0 arg; do
  3574. remainder_args+=("$arg")
  3575. done
  3576. break 3
  3577. ;;
  3578. esac
  3579. shift
  3580. done < <(cla.normalize "$@")
  3581. export compose_contents
  3582. [ "${services_args[*]}" ] && debug " ${DARKWHITE}Services:$NORMAL ${DARKYELLOW}${services_args[*]}$NORMAL"
  3583. [ "${compose_opts[*]}" ] && debug " ${DARKWHITE}Main docker-compose opts:$NORMAL ${compose_opts[*]}"
  3584. [ "${action_posargs[*]}" ] && debug " ${DARKWHITE}Main docker-compose pos args:$NORMAL ${action_posargs[*]}"
  3585. [ "${action_opts[*]}" ] && debug " ${DARKWHITE}Action $DARKCYAN$action$NORMAL with opts:$NORMAL ${action_opts[*]}"
  3586. [ "${remainder_args[*]}" ] && debug " ${DARKWHITE}Remainder args:$NORMAL ${remainder_args[*]}"
  3587. aexport remainder_args
  3588. ##
  3589. ## Actual code
  3590. ##
  3591. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  3592. COMPOSE_YML_CONTENT=$(get_compose_yml_content) || exit 1
  3593. export COMPOSE_YML_FILE COMPOSE_YML_CONTENT
  3594. charm.sanity_checks || die "Sanity checks about charm-store failed. Please correct."
  3595. ##
  3596. ## Get services in command line.
  3597. ##
  3598. if [ -z "$is_docker_compose_action" -a "$action" ]; then
  3599. action_service=${remainder_args[0]}
  3600. if [ -z "$action_service" ]; then
  3601. err "No such command or action: ${DARKCYAN}$action${NORMAL}"
  3602. display_commands_help
  3603. exit 1
  3604. fi
  3605. ## Required by has_service_action
  3606. array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  3607. get_all_relations "${services_args[@]}" >/dev/null 2>&1 || return 1
  3608. remainder_args=("${remainder_args[@]:1}")
  3609. if has_service_action "$action_service" "$action" >/dev/null; then
  3610. is_service_action=true
  3611. {
  3612. read-0 action_type
  3613. case "$action_type" in
  3614. "relation")
  3615. read-0 _ target_service _target_charm relation_name _ action_script_path
  3616. debug "Found action $DARKYELLOW${action_service}$NORMAL/$DARKBLUE$relation_name$NORMAL/$DARKCYAN$action$NORMAL (in $DARKYELLOW$target_service$NORMAL)"
  3617. ;;
  3618. "direct")
  3619. read-0 _ action_script_path
  3620. debug "Found action $DARKYELLOW${action_service}$NORMAL.$DARKCYAN$action$NORMAL"
  3621. ;;
  3622. esac
  3623. } < <(has_service_action "$action_service" "$action")
  3624. services_args=("$action_service")
  3625. get_all_relations "${services_args[@]}" >/dev/null 2>&1 || return 1
  3626. ## Divert logging to stdout to stderr
  3627. log () { cat >&2; }
  3628. export -f log
  3629. else
  3630. die "Unknown action '${DARKCYAN}$action$NORMAL': It doesn't match any docker-compose commands nor inner charm actions."
  3631. fi
  3632. else
  3633. case "$action" in
  3634. ps|up)
  3635. if [ "${#services_args[@]}" == 0 ]; then
  3636. array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  3637. fi
  3638. ;;
  3639. config)
  3640. services_args=("${action_posargs[@]}")
  3641. ;;
  3642. esac
  3643. fi
  3644. NO_CONSTRAINT_CHECK=True
  3645. case "$action" in
  3646. up)
  3647. NO_CONSTRAINT_CHECK=
  3648. ;;
  3649. esac
  3650. get_all_relations "${services_args[@]}" >/dev/null || exit 1
  3651. if [ "$is_docker_compose_action" -a "${#services_args[@]}" -gt 0 ]; then
  3652. services=($(get_master_services "${services_args[@]}")) || exit 1
  3653. if [ "$action" == "up" ]; then
  3654. declare -A seen
  3655. for service in $(get_ordered_service_dependencies "${services_args[@]}"); do
  3656. mservice=$(get_master_service_for_service "$service")
  3657. [ "${seen[$mservice]}" ] && continue
  3658. type="$(get_service_type "$mservice")" || exit 1
  3659. ## remove run-once
  3660. [ "$type" == "run-once" ] && continue
  3661. seen[$mservice]=1
  3662. action_posargs+=("$mservice")
  3663. done
  3664. else
  3665. action_posargs+=("${services[@]}")
  3666. fi
  3667. ## Get rid of subordinates
  3668. action_posargs=($(get_master_services "${action_posargs[@]}")) || exit 1
  3669. fi
  3670. get_docker_compose "${services_args[@]}" >/dev/null || { ## precalculate variable \$_current_docker_compose
  3671. err "Fails to compile base 'docker-compose.yml'"
  3672. exit 1
  3673. }
  3674. ##
  3675. ## Pre-action
  3676. ##
  3677. full_init=
  3678. case "$action" in
  3679. up|run)
  3680. full_init=true
  3681. post_hook=true
  3682. ;;
  3683. ""|down|restart|logs|config|ps)
  3684. full_init=
  3685. ;;
  3686. *)
  3687. if [ "$is_service_action" ]; then
  3688. full_init=true
  3689. keywords=($(egrep "^#*\s*compose:" "$action_script_path" | cut -f 2- -d:))
  3690. for keyword in "${keywords[@]}"; do
  3691. case "$keyword" in
  3692. no-hooks)
  3693. full_init=
  3694. ;;
  3695. hooks)
  3696. full_init=true
  3697. ;;
  3698. esac
  3699. done
  3700. fi
  3701. ;;
  3702. esac
  3703. if [ -n "$full_init" ]; then
  3704. ## init in order
  3705. if [[ -z "$no_init" && -z "$no_hooks" ]]; then
  3706. Section setup host resources
  3707. setup_host_resources "${services_args[@]}" || exit 1
  3708. Section initialisation
  3709. run_service_hook init "${services_args[@]}" || exit 1
  3710. fi
  3711. ## Get relations
  3712. if [[ -z "$no_relations" && -z "$no_hooks" ]]; then
  3713. if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then
  3714. rebuild_relations_to_service=$(get_master_services "${rebuild_relations_to_service[@]}") || return 1
  3715. rebuild_relations_to_service=($rebuild_relations_to_service)
  3716. project=$(get_default_project_name) || return 1
  3717. for service in "${rebuild_relations_to_service[@]}"; do
  3718. for dir in "$VARDIR/relations/$project/"*"-${service}/"*; do
  3719. [ -d "$dir" ] && {
  3720. debug rm -rf "$dir"
  3721. rm -rf "$dir"
  3722. }
  3723. done
  3724. done
  3725. fi
  3726. run_service_relations "${services_args[@]}" || exit 1
  3727. fi
  3728. if [[ -z "$no_pre_deploy" && -z "$no_hooks" ]]; then
  3729. run_service_hook pre_deploy "${services_args[@]}" || exit 1
  3730. fi
  3731. fi | log
  3732. if [ "${PIPESTATUS[0]}" != 0 ]; then
  3733. exit 1
  3734. fi
  3735. if [ "$action" == "run" -a "${#services_args}" != 0 ]; then
  3736. charm=$(get_service_charm "${services_args[0]}") || exit 1
  3737. metadata=$(charm.metadata "$charm") || exit 1
  3738. SERVICE_TYPE="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  3739. if [ "$SERVICE_TYPE" == "run-once" ]; then
  3740. run_service_hook dc-pre-run "${services_args[@]}" || exit 1
  3741. fi
  3742. fi
  3743. export SERVICE_PACK="${services_args[*]}"
  3744. ##
  3745. ## Docker-compose
  3746. ##
  3747. errlvl="0"
  3748. case "$action" in
  3749. up|start|stop|build|run)
  3750. ## force daemon mode for up
  3751. if [[ "$action" == "up" ]]; then
  3752. if ! array_member action_opts -d; then
  3753. action_opts+=("-d")
  3754. fi
  3755. if ! array_member action_opts --remove-orphans; then
  3756. action_opts+=("--remove-orphans")
  3757. fi
  3758. fi
  3759. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3760. ;;
  3761. logs)
  3762. if ! array_member action_opts --tail; then ## force daemon mode for up
  3763. action_opts+=("--tail" "10")
  3764. fi
  3765. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3766. ;;
  3767. "")
  3768. launch_docker_compose "${compose_opts[@]}"
  3769. ;;
  3770. graph)
  3771. graph $SERVICE_PACK
  3772. ;;
  3773. config)
  3774. ## removing the services
  3775. services=($(get_master_services "${action_posargs[@]}")) || exit 1
  3776. ## forcing docker-compose config to output the config file to stdout and not stderr
  3777. out=$(launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" 2>&1) || {
  3778. echo "$out"
  3779. exit 1
  3780. }
  3781. echo "$out"
  3782. warn "Runtime configuration modification (from relations) are not included here."
  3783. ;;
  3784. down)
  3785. if ! array_member action_opts --remove-orphans; then ## force daemon mode for up
  3786. debug "Adding a default argument of '--remove-orphans'"
  3787. action_opts+=("--remove-orphans")
  3788. fi
  3789. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}"
  3790. ;;
  3791. *)
  3792. if [ "$is_service_action" ]; then
  3793. run_service_action "$action_service" "$action" "${remainder_args[@]}"
  3794. errlvl="$?"
  3795. errlvl "$errlvl"
  3796. else
  3797. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  3798. fi
  3799. ;;
  3800. esac || exit 1
  3801. if [ "$post_hook" -a "${#services_args[@]}" != 0 -a -z "$no_hooks" -a -z "$no_post_deploy" ]; then
  3802. run_service_hook post_deploy "${services_args[@]}" || exit 1
  3803. fi
  3804. if [ "$action" == "run" -a "${#services_args}" != 0 ]; then
  3805. if [ "$SERVICE_TYPE" == "run-once" ]; then
  3806. run_service_hook dc-post-run "${services_args[@]}" || exit 1
  3807. fi
  3808. fi
  3809. clean_unused_docker_compose || exit 1
  3810. exit "$errlvl"