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.

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