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.

5113 lines
171 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.1'"
  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. local charm="$1" hash="$2" service="$3"
  1210. local charm_image_name="cache/charm/$charm"
  1211. local charm_image="$charm_image_name:$hash"
  1212. Elt "pulling ${DARKPINK}$charm${NORMAL} image from $COMPOSE_DOCKER_REGISTRY" >&2
  1213. if out=$(docker pull "$COMPOSE_DOCKER_REGISTRY/$charm_image" 2>&1); then
  1214. docker tag "$COMPOSE_DOCKER_REGISTRY/$charm_image" "$charm_image" || {
  1215. err "Failed set image '$COMPOSE_DOCKER_REGISTRY/$charm_image' as '$charm_image'" \
  1216. "for ${DARKYELLOW}$service${NORMAL}."
  1217. return 1
  1218. }
  1219. print_info "found" >&2
  1220. print_status success >&2
  1221. Feed >&2
  1222. printf "%s" "$charm_image" | tee "$cache_file"
  1223. return $?
  1224. fi
  1225. if [[ "$out" != *"manifest unknown"* ]] && [[ "$out" != *"not found"* ]]; then
  1226. print_status failure >&2
  1227. Feed >&2
  1228. err "Failed to pull image '$COMPOSE_DOCKER_REGISTRY/$charm_image'" \
  1229. "for ${DARKYELLOW}$service${NORMAL}:"
  1230. e "$out"$'\n' | prefix " ${GRAY}|${NORMAL} " >&2
  1231. return 1
  1232. fi
  1233. print_info "not found" >&2
  1234. if test "$type_method" = "long"; then
  1235. __status="[${NOOP}ABSENT${NORMAL}]"
  1236. else
  1237. echo -n "${NOOP}"
  1238. shift; shift;
  1239. echo -n "$*${NORMAL}"
  1240. fi >&2
  1241. Feed >&2
  1242. }
  1243. export -f cache:image:registry:get
  1244. ### Store cached image on registry
  1245. ##
  1246. ## Returns nothing
  1247. cache:image:registry:put() {
  1248. if [ -n "$COMPOSE_DOCKER_REGISTRY" ] && [ -n "$COMPOSE_PUSH_TO_REGISTRY" ]; then
  1249. local charm="$1" hash="$2" service="$3"
  1250. local charm_image_name="cache/charm/$charm"
  1251. local charm_image="$charm_image_name:$hash"
  1252. Wrap -d "pushing ${DARKPINK}$charm${NORMAL} image to $COMPOSE_DOCKER_REGISTRY" <<EOF || return 1
  1253. docker tag "$charm_image" "$COMPOSE_DOCKER_REGISTRY/$charm_image" &&
  1254. docker push "$COMPOSE_DOCKER_REGISTRY/$charm_image"
  1255. EOF
  1256. fi >&2
  1257. }
  1258. export -f cache:image:registry:put
  1259. ### Produce docker cached charm image 'cache/charm/$charm:$hash'
  1260. ##
  1261. ## Either by fetching it from a registry or by building it from a
  1262. ## Dockerfile.
  1263. cache:image:produce() {
  1264. local type="$1" src="$2" charm="$3" hash="$4" service="$5"
  1265. local charm_image_name="cache/charm/$charm"
  1266. local charm_image="$charm_image_name:$hash"
  1267. case "$type" in
  1268. fetch)
  1269. local specified_image="$src"
  1270. ## will not pull upstream image if already present locally
  1271. if ! docker_has_image "${specified_image}"; then
  1272. if ! out=$(docker pull "${specified_image}" 2>&1); then
  1273. err "Failed to pull image '$specified_image' for ${DARKYELLOW}$service${NORMAL}:"
  1274. echo "$out" | prefix " | " >&2
  1275. return 1
  1276. fi
  1277. fi
  1278. # specified_image_id=$(docker_image_id "$specified_image") || return 1
  1279. # charm_image_id=
  1280. # if docker_has_image "${image_dst}"; then
  1281. # charm_image_id=$(docker_image_id "${image_dst}") || return 1
  1282. # fi
  1283. # if [ "$specified_image_id" != "$charm_image_id" ]; then
  1284. docker tag "$specified_image" "${charm_image}" || return 1
  1285. # fi
  1286. ;;
  1287. build)
  1288. local service_build="$src"
  1289. build_opts=()
  1290. if [ "$COMPOSE_ACTION" == "build" ]; then
  1291. while read-0 arg; do
  1292. case "$arg" in
  1293. -t|--tag)
  1294. ## XXXvlab: doesn't seem to be actually a valid option
  1295. if [ -n "$COMPOSE_PUSH_TO_REGISTRY" ]; then
  1296. err "You can't use -t|--tag option when pushing to a registry."
  1297. exit 1
  1298. fi
  1299. has_named_image=true
  1300. read-0 val ## should always be okay because already checked
  1301. build_opts+=("$arg" "$val")
  1302. ;;
  1303. --help|-h)
  1304. docker-compose "$action" --help |
  1305. filter_docker_compose_help_message >&2
  1306. exit 0
  1307. ;;
  1308. --*|-*)
  1309. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  1310. read-0 value
  1311. build_opts+=("$arg" "$value")
  1312. shift
  1313. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  1314. build_opts+=("$arg")
  1315. else
  1316. err "Unexpected error while parsing a second time the build arguments."
  1317. fi
  1318. ;;
  1319. *)
  1320. ## Already parsed
  1321. build_opts+=("$arg")
  1322. ;;
  1323. esac
  1324. done < <(cla.normalize "${action_opts[@]}")
  1325. fi
  1326. if [ -z "$has_named_image" ]; then
  1327. build_opts+=(-t "${charm_image}")
  1328. fi
  1329. Wrap -v -d "Building ${DARKPINK}$charm${NORMAL}:$hash image" -- \
  1330. docker build "$service_build" -t "${charm_image}" "${build_opts[@]}" >&2 || {
  1331. err "Failed to build image '${charm_image}' for ${DARKYELLOW}$service${NORMAL}."
  1332. return 1
  1333. }
  1334. if [ -n "$has_named_image" ]; then
  1335. exit 0
  1336. fi
  1337. ;;
  1338. *)
  1339. err "Unknown type '$type'."
  1340. return 1
  1341. ;;
  1342. esac
  1343. }
  1344. export -f cache:image:produce
  1345. service_ensure_image_ready() {
  1346. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  1347. master_service service_def service_image service_build service_dockerfile image \
  1348. specified_image specified_image_id charm_image_name hash \
  1349. service_quoted
  1350. if [ -e "$cache_file" ]; then
  1351. #debug "$FUNCNAME: cache hit ($*)"
  1352. cat "$cache_file"
  1353. return 0
  1354. fi
  1355. if [ -z "$_CURRENT_DOCKER_COMPOSE" ]; then
  1356. err "${FUNCNAME[0]} is meant to be called after"\
  1357. "\$_CURRENT_DOCKER_COMPOSE has been calculated."
  1358. echo " Called by:" >&2
  1359. printf " - %s\n" "${FUNCNAME[@]:1}" >&2
  1360. return 1
  1361. fi
  1362. master_service="$(get_top_master_service_for_service "$service")" || {
  1363. err "Could not compute master service for service $DARKYELLOW$service$NORMAL."
  1364. return 1
  1365. }
  1366. if [ "$master_service" != "$service" ]; then
  1367. image=$(service_ensure_image_ready "$master_service") || return 1
  1368. printf "%s" "$image" | tee "$cache_file"
  1369. return $?
  1370. fi
  1371. ## check if \$_CURRENT_DOCKER_COMPOSE's service def is already correctly setup
  1372. local charm="$(get_service_charm "$service")" || return 1
  1373. local charm_image_name="cache/charm/$charm" || return 1
  1374. local service_def="$(get_service_def "$service")" || {
  1375. err "Could not get docker-compose service definition for $DARKYELLOW$service$NORMAL."
  1376. return 1
  1377. }
  1378. local service_quoted=${service//./\\.}
  1379. if specified_image=$(echo "$service_def" | shyaml get-value image 2>/dev/null); then
  1380. if [ "$specified_image" == "$charm_image_name"* ]; then
  1381. ## Assume we already did the change
  1382. printf "%s" "$specified_image" | tee "$cache_file"
  1383. return 0
  1384. fi
  1385. if [[ "$specified_image" == "${COMPOSE_DOCKER_REGISTRY}/"* ]]; then
  1386. if ! docker_has_image "${specified_image}"; then
  1387. Wrap "${wrap_opts[@]}" \
  1388. -v -d "pulling ${DARKPINK}$charm${NORMAL}'s specified image from $COMPOSE_DOCKER_REGISTRY" -- \
  1389. docker pull "${specified_image}" >&2 || return 1
  1390. else
  1391. if [ -n "$DEBUG" ]; then
  1392. Elt "using local ${DARKPINK}$charm${NORMAL}'s specified image from $COMPOSE_DOCKER_REGISTRY" >&2
  1393. print_status noop >&2
  1394. Feed >&2
  1395. fi
  1396. fi
  1397. ## Already on the cache server
  1398. printf "%s" "$specified_image" | tee "$cache_file"
  1399. return 0
  1400. fi
  1401. src="$specified_image"
  1402. hash=$(echo "$specified_image" | md5sum | cut -f 1 -d " ") || return 1
  1403. type=fetch
  1404. ## replace image by charm image
  1405. yq -i ".services.[\"${service_quoted}\"].image = \"${charm_image_name}:${hash}\"" \
  1406. "$_CURRENT_DOCKER_COMPOSE" || return 1
  1407. else
  1408. if ! src=$(echo "$service_def" | shyaml get-value build 2>/dev/null); then
  1409. err "Service $DARKYELLOW$service$NORMAL has no ${WHITE}image${NORMAL} nor ${WHITE}build${NORMAL} parameter."
  1410. echo "$service_def" >&2
  1411. return 1
  1412. fi
  1413. ## According to https://stackoverflow.com/questions/32230577 , if there's a build,
  1414. ## then the built image will get name ${project}_${service}
  1415. hash=$(get_build_hash "$src") || return 1
  1416. type=build
  1417. ## delete build key from service_def and add image to charm_image_name
  1418. yq -i "del(.services.[\"${service_quoted}\"].build) |
  1419. .services.[\"${service_quoted}\"].image = \"${charm_image_name}:${hash}\"" \
  1420. "$_CURRENT_DOCKER_COMPOSE" || return 1
  1421. fi
  1422. if [ "$COMPOSE_ACTION" != "build" ] && docker_has_image "${charm_image_name}:${hash}"; then
  1423. if [ -n "$DEBUG" ]; then
  1424. Elt "using ${DARKPINK}$charm${NORMAL}'s image from local cache" >&2
  1425. print_status noop >&2
  1426. Feed >&2
  1427. fi
  1428. cache:image:registry:put "$charm" "$hash" "$service" || return 1
  1429. printf "%s" "${charm_image_name}:${hash}" | tee "$cache_file"
  1430. return $?
  1431. fi
  1432. ## Can we pull it ? Let's check on $COMPOSE_DOCKER_REGISTRY
  1433. if [ "$COMPOSE_ACTION" != "build" ] && [ -n "$COMPOSE_DOCKER_REGISTRY" ]; then
  1434. img=$(cache:image:registry:get "$charm" "$hash" "$service") || {
  1435. err "Failed to get image '$charm_image_name:$hash' from registry for ${DARKYELLOW}$service${NORMAL}."
  1436. return 1
  1437. }
  1438. [ -n "$img" ] && {
  1439. printf "%s" "$img" | tee "$cache_file"
  1440. return $?
  1441. }
  1442. fi
  1443. cache:image:produce "$type" "$src" "$charm" "$hash" "$service" || return 1
  1444. cache:image:registry:put "$charm" "$hash" "$service" || return 1
  1445. printf "%s" "${charm_image_name}:$hash" | tee "$cache_file"
  1446. return $?
  1447. }
  1448. export -f service_ensure_image_ready
  1449. get_charm_relation_def () {
  1450. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1451. relation_def metadata
  1452. if [ -e "$cache_file" ]; then
  1453. # debug "$FUNCNAME: cache hit ($*)"
  1454. cat "$cache_file"
  1455. return 0
  1456. fi
  1457. metadata="$(charm.metadata "$charm")" || return 1
  1458. relation_def="$(echo "$metadata" | shyaml get-value "provides.${relation_name}" 2>/dev/null)"
  1459. echo "$relation_def" | tee "$cache_file"
  1460. }
  1461. export -f get_charm_relation_def
  1462. get_charm_tech_dep_orientation_for_relation() {
  1463. local charm="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1464. relation_def value
  1465. if [ -e "$cache_file" ]; then
  1466. # debug "$FUNCNAME: cache hit ($*)"
  1467. cat "$cache_file"
  1468. return 0
  1469. fi
  1470. relation_def=$(get_charm_relation_def "$charm" "$relation_name" 2>/dev/null)
  1471. value=$(echo "$relation_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  1472. value=${value:-True}
  1473. printf "%s" "$value" | tee "$cache_file"
  1474. }
  1475. export -f get_charm_tech_dep_orientation_for_relation
  1476. get_service_relation_tech_dep() {
  1477. local service="$1" relation_name="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  1478. charm tech_dep
  1479. if [ -e "$cache_file" ]; then
  1480. # debug "$FUNCNAME: cache hit ($*)"
  1481. cat "$cache_file"
  1482. return 0
  1483. fi
  1484. charm=$(get_service_charm "$service") || return 1
  1485. tech_dep="$(get_charm_tech_dep_orientation_for_relation "$charm" "$relation_name")" || return 1
  1486. printf "%s" "$tech_dep" | tee "$cache_file"
  1487. }
  1488. export -f get_service_relation_tech_dep
  1489. ##
  1490. ## Use compose file to get deps, and relation definition in metadata.yml
  1491. ## for tech-dep attribute.
  1492. get_service_deps() {
  1493. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")"
  1494. if [ -e "$cache_file" ]; then
  1495. # debug "$FUNCNAME: cache hit ($*)"
  1496. cat "$cache_file"
  1497. return 0
  1498. fi
  1499. (
  1500. set -o pipefail
  1501. get_service_relations "$service" | \
  1502. while read-0 relation_name target_service _relation_config tech_dep; do
  1503. echo "$target_service"
  1504. done | tee "$cache_file"
  1505. ) || return 1
  1506. }
  1507. export -f get_service_deps
  1508. ## XXXvlab: cache was disabled because improper. Indeed, this needs to cache
  1509. ## 'depths' full state. Second, it should be
  1510. _rec_get_depth() {
  1511. local elt=$1 dep deps max
  1512. [ "${depths[$elt]}" ] && return 0
  1513. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$(declare -pA depths)" "$ALL_RELATIONS")"
  1514. if [ -e "$cache_file.depths" ]; then
  1515. #debug "$FUNCNAME: cache hit ($*) - $cache_file.depths"
  1516. while read-0 k v; do
  1517. depths["$k"]="$v"
  1518. done < "$cache_file.depths"
  1519. while read-0 k v; do
  1520. visited["$k"]="$v"
  1521. done < "$cache_file.visited"
  1522. return 0
  1523. fi
  1524. visited[$elt]=1
  1525. #debug "Setting visited[$elt]"
  1526. #debug "Asking for $DARKYELLOW$elt$NORMAL dependencies"
  1527. deps=$(get_service_deps "$elt") || {
  1528. debug "Failed get_service_deps $elt"
  1529. return 1
  1530. }
  1531. # debug "$elt deps are:" $deps
  1532. max=0
  1533. for dep in $deps; do
  1534. [ "${visited[$dep]}" ] && {
  1535. #debug "Already computing $dep"
  1536. continue
  1537. }
  1538. _rec_get_depth "$dep" || return 1
  1539. #debug "Requesting depth[$dep]"
  1540. if (( ${depths[$dep]} > max )); then
  1541. max="${depths[$dep]}"
  1542. fi
  1543. done
  1544. # debug "Setting depth[$elt] to $((max + 1))"
  1545. depths[$elt]=$((max + 1))
  1546. array_kv_to_stdin depths > "$cache_file.depths"
  1547. array_kv_to_stdin visited > "$cache_file.visited"
  1548. # debug "DEPTHS: $(declare -pA depths)"
  1549. # debug "$FUNCNAME: caching hit ($*) - $cache_file"
  1550. }
  1551. export -f _rec_get_depth
  1552. get_ordered_service_dependencies() {
  1553. local services=("$@") cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")" \
  1554. i value key heads depths visited
  1555. if [ -e "$cache_file" ]; then
  1556. # debug "$FUNCNAME: cache hit ($*)"
  1557. cat "$cache_file"
  1558. return 0
  1559. fi
  1560. #debug "Figuring ordered deps of $DARKYELLOW${services[@]}$NORMAL"
  1561. if [ -z "${services[*]}" ]; then
  1562. return 0
  1563. # print_syntax_error "$FUNCNAME: no arguments"
  1564. # return 1
  1565. fi
  1566. declare -A depths
  1567. declare -A visited
  1568. heads=("${services[@]}")
  1569. while [ "${#heads[@]}" != 0 ]; do
  1570. array_pop heads head
  1571. _rec_get_depth "$head" || return 1
  1572. done
  1573. i=0
  1574. while [ "${#depths[@]}" != 0 ]; do
  1575. for key in "${!depths[@]}"; do
  1576. value="${depths[$key]}"
  1577. if [ "$value" == "$i" ]; then
  1578. echo "$key"
  1579. unset depths[$key]
  1580. fi
  1581. done
  1582. ((i++))
  1583. done | tee "$cache_file"
  1584. }
  1585. export -f get_ordered_service_dependencies
  1586. run_service_acquire_images () {
  1587. local service subservice subservices loaded
  1588. declare -A loaded
  1589. for service in "$@"; do
  1590. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1591. for subservice in $subservices; do
  1592. if [ "${loaded[$subservice]}" ]; then
  1593. ## Prevent double inclusion of same service if this
  1594. ## service is deps of two or more of your
  1595. ## requirements.
  1596. continue
  1597. fi
  1598. type=$(get_service_type "$subservice") || return 1
  1599. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  1600. if [ "$type" != "stub" ]; then
  1601. DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$MASTER_BASE_SERVICE_NAME") || return 1
  1602. fi
  1603. loaded[$subservice]=1
  1604. done
  1605. done
  1606. return 0
  1607. }
  1608. run_service_hook () {
  1609. local action="$1" service subservice subservices loaded
  1610. shift
  1611. declare -A loaded
  1612. for service in "$@"; do
  1613. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1614. for subservice in $subservices; do
  1615. if [ "${loaded[$subservice]}" ]; then
  1616. ## Prevent double inclusion of same service if this
  1617. ## service is deps of two or more of your
  1618. ## requirements.
  1619. continue
  1620. fi
  1621. charm=$(get_service_charm "$subservice") || return 1
  1622. charm.has_hook "$charm" "$action" >/dev/null || continue
  1623. type=$(get_service_type "$subservice") || return 1
  1624. PROJECT_NAME=$(get_default_project_name) || return 1
  1625. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  1626. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  1627. if [ "$type" != "stub" ]; then
  1628. DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$MASTER_BASE_SERVICE_NAME") || return 1
  1629. fi
  1630. Wrap "${wrap_opts[@]}" -d "running $YELLOW$action$NORMAL hook of $DARKYELLOW$subservice$NORMAL in charm $DARKPINK$charm$NORMAL" <<EOF || return 1
  1631. export DOCKER_BASE_IMAGE="$DOCKER_BASE_IMAGE"
  1632. export SERVICE_NAME=$subservice
  1633. export IMAGE_NAME=$(echo "${PROJECT_NAME}" | tr -d "_-")_\${SERVICE_NAME}
  1634. export CONTAINER_NAME=\${IMAGE_NAME}_1
  1635. export CHARM_NAME="$charm"
  1636. export PROJECT_NAME="$PROJECT_NAME"
  1637. export SERVICE_DATASTORE="$DATASTORE/$subservice"
  1638. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$subservice"
  1639. export MASTER_BASE_SERVICE_NAME="$MASTER_BASE_SERVICE_NAME"
  1640. export MASTER_BASE_CHARM_NAME="$MASTER_BASE_CHARM_NAME"
  1641. charm.run_hook "local" "$charm" "$action"
  1642. EOF
  1643. loaded[$subservice]=1
  1644. done
  1645. done
  1646. return 0
  1647. }
  1648. host_resource_get() {
  1649. local location="$1" cfg="$2"
  1650. type=$(echo "$cfg" | shyaml get-value type 2>/dev/null) || {
  1651. err "Missing ${WHITE}type$NORMAL option in ${WHITE}get$NORMAL config for location '$location'"
  1652. return 1
  1653. }
  1654. if fn.exists host_resource_get_$type; then
  1655. host_resource_get_$type "$location" "$cfg"
  1656. else
  1657. err "Source ${WHITE}source$NORMAL type '$type' unknown for" \
  1658. "${WHITE}host-resource$NORMAL '$location' defined in" \
  1659. "$DARKYELLOW$subservice$NORMAL config."
  1660. return 1
  1661. fi
  1662. }
  1663. export -f host_resource_get
  1664. host_resource_get_git() {
  1665. local location="$1" cfg="$2" branch parent url
  1666. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1667. branch=${branch:-master}
  1668. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1669. parent="$(dirname "$location")"
  1670. (
  1671. mkdir -p "$parent" && cd "$parent" &&
  1672. git clone -b "$branch" "$url" "$(basename "$location")"
  1673. ) || return 1
  1674. }
  1675. export -f host_resource_get_git
  1676. host_resource_get_git-sub() {
  1677. local location="$1" cfg="$2" branch parent url
  1678. branch=$(echo "$cfg" | shyaml get-value branch 2>/dev/null)
  1679. branch=${branch:-master}
  1680. url=$(echo "$cfg" | shyaml get-value url 2>/dev/null)
  1681. parent="$(dirname "$location")"
  1682. (
  1683. mkdir -p "$parent" && cd "$parent" &&
  1684. git sub clone -b "$branch" "$url" "$(basename "$location")"
  1685. ) || return 1
  1686. }
  1687. export -f host_resource_get_git-sub
  1688. setup_host_resource () {
  1689. local subservice="$1" service_def location get cfg
  1690. service_def=$(get_compose_service_def "$subservice") || return 1
  1691. while read-0 location cfg; do
  1692. ## XXXvlab: will it be a git resources always ?
  1693. if [ -d "$location" -a ! -d "$location/.git" ]; then
  1694. err "Hum, location '$location' does not seem to be a git directory."
  1695. return 1
  1696. fi
  1697. if [ -d "$location" ]; then
  1698. info "host resource '$location' already set up."
  1699. continue
  1700. fi
  1701. get=$(echo "$cfg" | shyaml get-value get 2>/dev/null)
  1702. if [ -z "$get" ]; then
  1703. err "No host directory '$location' found, and no ${WHITE}source$NORMAL" \
  1704. "specified for $DARKYELLOW$subservice$NORMAL."
  1705. return 1
  1706. fi
  1707. host_resource_get "$location" "$get" || return 1
  1708. done < <(echo "$service_def" | shyaml key-values-0 host-resources 2>/dev/null)
  1709. }
  1710. export -f setup_host_resource
  1711. setup_host_resources () {
  1712. local service subservices subservice loaded
  1713. declare -A loaded
  1714. for service in "$@"; do
  1715. subservices=$(get_ordered_service_dependencies "$service") || return 1
  1716. for subservice in $subservices; do
  1717. if [ "${loaded[$subservice]}" ]; then
  1718. ## Prevent double inclusion of same service if this
  1719. ## service is deps of two or more of your
  1720. ## requirements.
  1721. continue
  1722. fi
  1723. setup_host_resource "$subservice" || return 1
  1724. loaded[$subservice]=1
  1725. done
  1726. done
  1727. return 0
  1728. }
  1729. export -f setup_host_resources
  1730. ## Works on stdin
  1731. cfg-get-value () {
  1732. local key="$1" out
  1733. if [ -z "$key" ]; then
  1734. yaml_get_interpret || return 1
  1735. return 0
  1736. fi
  1737. if ! out=$(shyaml -y get-value "$key" 2>/dev/null); then
  1738. err "The key $WHITE$key$NORMAL was not found in relation's data."
  1739. return 1
  1740. fi
  1741. printf "%s\n" "$out" | yaml_get_interpret
  1742. }
  1743. export -f cfg-get-value
  1744. relation-get () {
  1745. cfg-get-value "$1" < "$RELATION_DATA_FILE"
  1746. }
  1747. export -f relation-get
  1748. expand_vars() {
  1749. local unlikely_prefix="UNLIKELY_PREFIX"
  1750. content=$(cat -)
  1751. ## find first identifier not in content
  1752. remaining_lines=$(echo "$content" | grep "^$unlikely_prefix")
  1753. while [ "$(echo "$remaining_lines" | grep "^$unlikely_prefix$")" ]; do
  1754. size_prefix="${#unlikely_prefix}"
  1755. first_matching=$(echo "$remaining_lines" |
  1756. grep -v "^$unlikely_prefix$" |
  1757. uniq -w "$((size_prefix + 1))" -c |
  1758. sort -rn |
  1759. head -n 1)
  1760. first_matching=${first_matching#"${x%%[![:space:]]*}"}
  1761. first_matching="${first_matching#* }"
  1762. next_char=${first_matching:$size_prefix:1}
  1763. if [ "$next_char" != "0" ]; then
  1764. unlikely_prefix+="0"
  1765. else
  1766. unlikely_prefix+="1"
  1767. fi
  1768. remaining_lines=$(echo "$remaining_lines" | grep "^$unlikely_prefix")
  1769. done
  1770. eval "cat <<$unlikely_prefix
  1771. $content
  1772. $unlikely_prefix"
  1773. }
  1774. export -f expand_vars
  1775. yaml_get_interpret() {
  1776. local content tag
  1777. content=$(cat -)
  1778. tag=$(echo "$content" | shyaml get-type) || return 1
  1779. content=$(echo "$content" | shyaml get-value) || return 1
  1780. if ! [ "${tag:0:1}" == "!" ]; then
  1781. echo "$content" || return 1
  1782. return 0
  1783. fi
  1784. case "$tag" in
  1785. "!bash-stdout")
  1786. echo "$content" | bash || {
  1787. err "shell code didn't end with errorlevel 0"
  1788. return 1
  1789. }
  1790. ;;
  1791. "!var-expand")
  1792. echo "$content" | expand_vars || {
  1793. err "shell expansion failed"
  1794. return 1
  1795. }
  1796. ;;
  1797. "!file-content")
  1798. source=$(echo "$content" | expand_vars) || {
  1799. err "shell expansion failed"
  1800. return 1
  1801. }
  1802. cat "$source" || return 1
  1803. ;;
  1804. *)
  1805. err "Invalid object tag ${WHITE}$tag${NORMAL}"
  1806. return 1
  1807. ;;
  1808. esac
  1809. }
  1810. export -f yaml_get_interpret
  1811. options-get () {
  1812. local key="$1" out
  1813. service_def=$(get_compose_service_def "$SERVICE_NAME") || return 1
  1814. if ! out=$(echo "$service_def" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1815. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1816. return 1
  1817. fi
  1818. echo "$out" | yaml_get_interpret
  1819. }
  1820. export -f options-get
  1821. relation-base-compose-get () {
  1822. local key="$1" out
  1823. if ! out=$(echo "$RELATION_BASE_COMPOSE_DEF" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1824. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1825. return 1
  1826. fi
  1827. echo "$out" | yaml_get_interpret
  1828. }
  1829. export -f relation-base-compose-get
  1830. relation-target-compose-get () {
  1831. local key="$1" out
  1832. if ! out=$(echo "$RELATION_TARGET_COMPOSE_DEF" | shyaml -y get-value "options.$key" 2>/dev/null); then
  1833. err "The key $WHITE$key$NORMAL was not found in base service compose definition.."
  1834. return 1
  1835. fi
  1836. echo "$out" | yaml_get_interpret
  1837. }
  1838. export -f relation-target-compose-get
  1839. relation-set () {
  1840. local key="$1" value="$2"
  1841. if [ -z "$RELATION_DATA_FILE" ]; then
  1842. err "$FUNCNAME: relation does not seems to be correctly setup."
  1843. return 1
  1844. fi
  1845. if ! [ -r "$RELATION_DATA_FILE" ]; then
  1846. err "$FUNCNAME: can't read relation's data." >&2
  1847. return 1
  1848. fi
  1849. _config_merge "$RELATION_DATA_FILE" <(yaml_key_val_str "$key" "$value")
  1850. }
  1851. export -f relation-set
  1852. _config_merge() {
  1853. local config_filename="$1" mixin="$2"
  1854. touch "$config_filename" &&
  1855. merge_yaml "$config_filename" "$mixin" > "$config_filename.tmp" || return 1
  1856. mv "$config_filename.tmp" "$config_filename"
  1857. }
  1858. export -f _config_merge
  1859. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1860. config-add() {
  1861. local metadata="$1"
  1862. _config_merge "$RELATION_CONFIG" <(echo "$metadata")
  1863. }
  1864. export -f config-add
  1865. ## XXXvlab; this can be used only in relation, I'd like to use it in init.
  1866. init-config-add() {
  1867. local metadata="$1"
  1868. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" \
  1869. <(yaml_key_val_str "services" "$metadata")
  1870. }
  1871. export -f init-config-add
  1872. docker_get_uid() {
  1873. local service="$1" user="$2" uid
  1874. uid=$(cached_cmd_on_base_image "$service" "id -u \"$user\"") || {
  1875. debug "Failed to query for '$user' uid in ${DARKYELLOW}$service${NORMAL} base image."
  1876. return 1
  1877. }
  1878. info "uid from ${DARKYELLOW}$service${NORMAL} for user '$user' is '$uid'"
  1879. echo "$uid"
  1880. }
  1881. export -f docker_get_uid
  1882. docker_get_uid_gid() {
  1883. local service="$1" user="$2" group="$3" uid
  1884. uid_gid=$(cached_cmd_on_base_image "$service" "id -u \"$user\"; id -g \"$group\"") || {
  1885. debug "Failed to query for '$user' uid in ${DARKYELLOW}$service${NORMAL} base image."
  1886. return 1
  1887. }
  1888. info "uid from ${DARKYELLOW}$service${NORMAL} for user '$user' is '$uid_gid'"
  1889. echo "$uid_gid"
  1890. }
  1891. export -f docker_get_uid_gid
  1892. logstdout() {
  1893. local name="$1"
  1894. sed -r 's%^%'"${name}"'> %g'
  1895. }
  1896. export -f logstdout
  1897. logstderr() {
  1898. local name="$1"
  1899. sed -r 's%^(.*)$%'"${RED}${name}>${NORMAL} \1"'%g'
  1900. }
  1901. export -f logstderr
  1902. _run_service_relation () {
  1903. local relation_name="$1" service="$2" target_service="$3" relation_config="$4" relation_dir services
  1904. local errlvl
  1905. charm=$(get_service_charm "$service") || return 1
  1906. target_charm=$(get_service_charm "$target_service") || return 1
  1907. base_script_name=$(charm.has_relation_hook "$charm" "$relation_name" relation-joined) || true
  1908. target_script_name=$(charm.has_relation_hook "$target_charm" "$relation_name" relation-joined) || true
  1909. [ -n "$base_script_name" ] || [ -n "$target_script_name" ] || return 0
  1910. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  1911. RELATION_DATA_FILE=$(get_relation_data_file "$service" "$target_service" "$relation_name" "$relation_config") || return 1
  1912. export BASE_SERVICE_NAME=$service
  1913. export BASE_CHARM_NAME=$charm
  1914. export BASE_CHARM_PATH=$(charm.get_dir "$charm")
  1915. export TARGET_SERVICE_NAME=$target_service
  1916. export TARGET_CHARM_NAME=$target_charm
  1917. export TARGET_CHARM_PATH=$(charm.get_dir "$target_charm")
  1918. export RELATION_DATA_FILE
  1919. target_errlvl=0
  1920. if [ -z "$target_script_name" ]; then
  1921. verb "No relation script $DARKBLUE$relation_name$NORMAL in target $DARKPINK$target_charm$NORMAL."
  1922. else
  1923. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1924. "for target $DARKYELLOW$target_service$NORMAL (charm $DARKPINK$target_charm$NORMAL)"
  1925. RELATION_CONFIG="$relation_dir/config_provider"
  1926. type=$(get_service_type "$target_service") || return 1
  1927. if [ "$type" != "stub" ]; then
  1928. DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$target_service") || return 1
  1929. fi
  1930. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1931. {
  1932. (
  1933. SERVICE_NAME=$target_service
  1934. SERVICE_DATASTORE="$DATASTORE/$target_service"
  1935. SERVICE_CONFIGSTORE="$CONFIGSTORE/$target_service"
  1936. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1937. charm.run_relation_hook local "$target_charm" "$relation_name" relation-joined
  1938. echo "$?" > "$relation_dir/target_errlvl"
  1939. ) | logstdout "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1940. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$target_service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@${NORMAL}" 3>&1 1>&2 2>&3
  1941. target_errlvl="$(cat "$relation_dir/target_errlvl")" || {
  1942. err "Relation script '$script_name' in $DARKPINK$target_charm$NORMAL" \
  1943. "failed before outputing an errorlevel."
  1944. ((target_errlvl |= "1" ))
  1945. }
  1946. if [ -e "$RELATION_CONFIG" ]; then
  1947. debug "Merging some new config info in $DARKYELLOW$target_service$NORMAL"
  1948. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1949. rm "$RELATION_CONFIG"
  1950. ((target_errlvl |= "$?"))
  1951. fi
  1952. fi
  1953. if [ "$target_errlvl" == 0 ]; then
  1954. errlvl=0
  1955. if [ "$base_script_name" ]; then
  1956. verb "Running ${DARKBLUE}$relation_name${NORMAL} relation-joined script" \
  1957. "for $DARKYELLOW$service$NORMAL (charm $DARKPINK$charm$NORMAL)"
  1958. RELATION_CONFIG="$relation_dir/config_providee"
  1959. RELATION_DATA="$(cat "$RELATION_DATA_FILE")"
  1960. DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$service") || return 1
  1961. export DOCKER_BASE_IMAGE RELATION_CONFIG RELATION_DATA
  1962. {
  1963. (
  1964. SERVICE_NAME=$service
  1965. SERVICE_DATASTORE="$DATASTORE/$service"
  1966. SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  1967. export SERVICE_NAME DOCKER_BASE_IMAGE SERVICE_DATASTORE SERVICE_CONFIGSTORE
  1968. charm.run_relation_hook local "$charm" "$relation_name" relation-joined
  1969. echo "$?" > "$relation_dir/errlvl"
  1970. ) | logstdout "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${GREEN}@${NORMAL}"
  1971. } 3>&1 1>&2 2>&3 | logstderr "$DARKYELLOW$service$NORMAL/$DARKBLUE$relation_name$NORMAL (joined) ${RED}@$NORMAL" 3>&1 1>&2 2>&3
  1972. errlvl="$(cat "$relation_dir/errlvl")" || {
  1973. err "Relation script '$script_name' in $DARKPINK$charm$NORMAL" \
  1974. "failed before outputing an errorlevel."
  1975. ((errlvl |= "1" ))
  1976. }
  1977. if [ -e "$RELATION_CONFIG" ]; then
  1978. _config_merge "$state_tmpdir/to-merge-in-docker-compose.yml" "$RELATION_CONFIG" &&
  1979. rm "$RELATION_CONFIG"
  1980. ((errlvl |= "$?" ))
  1981. fi
  1982. if [ "$errlvl" != 0 ]; then
  1983. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$service$NORMAL failed to run properly."
  1984. fi
  1985. else
  1986. verb "No relation script '$script_name' in charm $DARKPINK$charm$NORMAL. Ignoring."
  1987. fi
  1988. else
  1989. err "Relation $DARKBLUE$relation_name$NORMAL on $DARKYELLOW$target_service$NORMAL failed to run properly."
  1990. fi
  1991. if [ "$target_errlvl" == 0 -a "$errlvl" == 0 ]; then
  1992. debug "Relation $DARKBLUE$relation_name$NORMAL is established" \
  1993. "between $DARKYELLOW$service$NORMAL and $DARKYELLOW$target_service$NORMAL."
  1994. return 0
  1995. else
  1996. return 1
  1997. fi
  1998. }
  1999. export -f _run_service_relation
  2000. _get_compose_relations_cached () {
  2001. local compose_service_def="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2002. relation_name relation_def target_service
  2003. if [ -e "$cache_file" ]; then
  2004. #debug "$FUNCNAME: STATIC cache hit $1"
  2005. cat "$cache_file" &&
  2006. touch "$cache_file" || return 1
  2007. return 0
  2008. fi
  2009. (
  2010. set -o pipefail
  2011. if [ "$compose_service_def" ]; then
  2012. while read-0 relation_name relation_def; do
  2013. ## XXXvlab: could we use braces here instead of parenthesis ?
  2014. (
  2015. case "$(echo "$relation_def" | shyaml get-type 2>/dev/null)" in
  2016. "str")
  2017. target_service="$(echo "$relation_def" | shyaml get-value 2>/dev/null)" || return 1
  2018. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  2019. printf "%s\0" "$relation_name" "$target_service" "" "$tech_dep"
  2020. ;;
  2021. "sequence")
  2022. while read-0 target_service; do
  2023. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  2024. printf "%s\0" "$relation_name" "$target_service" "" "$tech_dep"
  2025. done < <(echo "$relation_def" | shyaml get-values-0 2>/dev/null)
  2026. ;;
  2027. "struct")
  2028. while read-0 target_service relation_config; do
  2029. tech_dep="$(get_service_relation_tech_dep "$target_service" "$relation_name")" || return 1
  2030. printf "%s\0" "$relation_name" "$target_service" "$relation_config" "$tech_dep"
  2031. done < <(echo "$relation_def" | shyaml key-values-0 2>/dev/null)
  2032. ;;
  2033. esac
  2034. ) </dev/null >> "$cache_file" || return 1
  2035. done < <(echo "$compose_service_def" | shyaml key-values-0 relations 2>/dev/null)
  2036. fi
  2037. )
  2038. if [ "$?" != 0 ]; then
  2039. err "Error while looking for compose relations."
  2040. rm -f "$cache_file" ## no cache
  2041. return 1
  2042. fi
  2043. [ -e "$cache_file" ] && cat "$cache_file"
  2044. return 0
  2045. }
  2046. export -f _get_compose_relations_cached
  2047. get_compose_relations () {
  2048. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2049. compose_def
  2050. if [ -e "$cache_file" ]; then
  2051. #debug "$FUNCNAME: SESSION cache hit $1"
  2052. cat "$cache_file"
  2053. return 0
  2054. fi
  2055. compose_def="$(get_compose_service_def "$service")" || return 1
  2056. _get_compose_relations_cached "$compose_def" > "$cache_file"
  2057. if [ "$?" != 0 ]; then
  2058. rm -f "$cache_file" ## no cache
  2059. return 1
  2060. fi
  2061. cat "$cache_file"
  2062. }
  2063. export -f get_compose_relations
  2064. get_all_services() {
  2065. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$ALL_RELATIONS")" \
  2066. s rn ts rc td services
  2067. if [ -e "$cache_file" ]; then
  2068. #debug "$FUNCNAME: SESSION cache hit $1"
  2069. cat "$cache_file"
  2070. return 0
  2071. fi
  2072. if [ -z "$ALL_RELATIONS" ]; then
  2073. err "Can't access global \$ALL_RELATIONS"
  2074. return 1
  2075. fi
  2076. declare -A services
  2077. while read-0 s _ ts _ _; do
  2078. for service in "$s" "$ts"; do
  2079. [ "${services[$service]}" ] && continue
  2080. services["$service"]=1
  2081. echo "$service"
  2082. done
  2083. done < <(cat "$ALL_RELATIONS") > "$cache_file"
  2084. cat "$cache_file"
  2085. }
  2086. export -f get_all_services
  2087. get_service_relations () {
  2088. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")" \
  2089. s rn ts rc td
  2090. if [ -e "$cache_file" ]; then
  2091. #debug "$FUNCNAME: SESSION cache hit $1"
  2092. cat "$cache_file"
  2093. return 0
  2094. fi
  2095. if [ -z "$ALL_RELATIONS" ]; then
  2096. err "Can't access global \$ALL_RELATIONS"
  2097. return 1
  2098. fi
  2099. while read-0 s rn ts rc td; do
  2100. [[ "$s" == "$service" ]] || continue
  2101. printf "%s\0" "$rn" "$ts" "$rc" "$td"
  2102. done < <(cat "$ALL_RELATIONS") > "$cache_file"
  2103. cat "$cache_file"
  2104. }
  2105. export -f get_service_relations
  2106. get_service_relation() {
  2107. local service="$1" relation="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1.$2" \
  2108. rn ts rc td
  2109. if [ -e "$cache_file" ]; then
  2110. #debug "$FUNCNAME: SESSION cache hit $1"
  2111. cat "$cache_file"
  2112. return 0
  2113. fi
  2114. while read-0 rn ts rc td; do
  2115. [ "$relation" == "$rn" ] && {
  2116. printf "%s\0" "$ts" "$rc" "$td"
  2117. break
  2118. }
  2119. done < <(get_service_relations "$service") > "$cache_file"
  2120. if [ "$?" != 0 ]; then
  2121. rm -f "$cache_file" ## no cache
  2122. return 1
  2123. fi
  2124. cat "$cache_file"
  2125. }
  2126. export -f get_service_relation
  2127. ## From a service and a relation, get all relations targeting given
  2128. ## service with given relation.
  2129. ##
  2130. ## Returns a NUL separated list of couple of:
  2131. ## (base_service, relation_config)
  2132. ##
  2133. get_service_incoming_relations() {
  2134. local service="$1" relation="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$ALL_RELATIONS")" \
  2135. s rn ts rc td
  2136. if [ -e "$cache_file" ]; then
  2137. #debug "$FUNCNAME: SESSION cache hit $1"
  2138. cat "$cache_file"
  2139. return 0
  2140. fi
  2141. if [ -z "$ALL_RELATIONS" ]; then
  2142. err "Can't access global \$ALL_RELATIONS"
  2143. return 1
  2144. fi
  2145. while read-0 s rn ts rc _td; do
  2146. [[ "$ts" == "$service" ]] || continue
  2147. [[ "$rn" == "$relation" ]] || continue
  2148. relation_data_file=$(get_relation_data_file "$s" "$ts" "$rn" "$rc") || return 1
  2149. printf "%s\0" "$s" "$(cat "$relation_data_file")"
  2150. done < <(cat "$ALL_RELATIONS") > "$cache_file"
  2151. cat "$cache_file"
  2152. }
  2153. export -f get_service_incoming_relations
  2154. export TRAVERSE_SEPARATOR=:
  2155. ## Traverse on first service satisfying relation
  2156. service:traverse() {
  2157. local service_path="$1"
  2158. {
  2159. SEPARATOR=:
  2160. read -d "$TRAVERSE_SEPARATOR" service
  2161. while read -d "$TRAVERSE_SEPARATOR" relation; do
  2162. ## XXXvlab: Take only first service
  2163. if ! read-0 ts _ _ < <(get_service_relation "${service}" "${relation}"); then
  2164. err "Couldn't find relation ${DARKCYAN}${relation}${NORMAL}" \
  2165. "from ${DARKYELLOW}$service${NORMAL}."
  2166. return 1
  2167. fi
  2168. service="$ts"
  2169. done
  2170. echo "$service"
  2171. } < <(e "${service_path}${TRAVERSE_SEPARATOR}")
  2172. }
  2173. export -f service:traverse
  2174. service:relation-file() {
  2175. local service_path="$1" relation service relation_file
  2176. if ! [[ "$service_path" == *"$TRAVERSE_SEPARATOR"* ]]; then
  2177. err "Invalid argument '$service_path'." \
  2178. "Must provide a service path (no '${TRAVERSE_SEPARATOR}' found)."
  2179. return 1
  2180. fi
  2181. relation="${service_path##*${TRAVERSE_SEPARATOR}}"
  2182. service=$(service:traverse "${service_path%${TRAVERSE_SEPARATOR}*}") || return 1
  2183. if ! read-0 ts rc _ < <(get_service_relation "${service}" "${relation}"); then
  2184. err "Couldn't find relation ${DARKCYAN}${relation}${NORMAL}" \
  2185. "from ${DARKYELLOW}$service${NORMAL}."
  2186. return 1
  2187. fi
  2188. relation_dir=$(get_relation_data_dir "$service" "$ts" "$relation") || {
  2189. err "Failed to find relation file"
  2190. return 1
  2191. }
  2192. relation_file="$relation_dir/data"
  2193. if ! [ -e "$relation_file" ]; then
  2194. e "$rc" > "$relation_file"
  2195. chmod go-rwx "$relation_file" ## protecting this file
  2196. fi
  2197. echo "$relation_file"
  2198. }
  2199. export -f service:relation-file
  2200. service:relation-options() {
  2201. local service_path="$1" relation_file
  2202. relation_file=$(service:relation-file "$service_path") || {
  2203. err "Failed to find relation file"
  2204. return 1
  2205. }
  2206. cat "$relation_file"
  2207. }
  2208. export -f service:relation-options
  2209. relation:get() {
  2210. local service_path="$1" query="$2" relation_file
  2211. relation_file=$(service:relation-file "$service_path") || {
  2212. err "Failed to find relation file"
  2213. return 1
  2214. }
  2215. cfg-get-value "$query" < "$relation_file"
  2216. }
  2217. export -f relation:get
  2218. _get_charm_metadata_uses() {
  2219. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  2220. if [ -e "$cache_file" ]; then
  2221. #debug "$FUNCNAME: SESSION cache hit $1"
  2222. cat "$cache_file" || return 1
  2223. return 0
  2224. fi
  2225. printf "%s" "$metadata" | { shyaml key-values-0 uses 2>/dev/null || true; } | tee "$cache_file"
  2226. }
  2227. export -f _get_charm_metadata_uses
  2228. _get_service_metadata() {
  2229. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2230. charm
  2231. if [ -e "$cache_file" ]; then
  2232. #debug "$FUNCNAME: SESSION cache hit $1"
  2233. cat "$cache_file"
  2234. return 0
  2235. fi
  2236. charm="$(get_service_charm "$service")" || return 1
  2237. charm.metadata "$charm" > "$cache_file"
  2238. if [ "$?" != 0 ]; then
  2239. rm -f "$cache_file" ## no cache
  2240. return 1
  2241. fi
  2242. cat "$cache_file"
  2243. }
  2244. export -f _get_service_metadata
  2245. _get_service_uses() {
  2246. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2247. metadata
  2248. if [ -e "$cache_file" ]; then
  2249. #debug "$FUNCNAME: SESSION cache hit $1"
  2250. cat "$cache_file"
  2251. return 0
  2252. fi
  2253. metadata="$(_get_service_metadata "$service")" || return 1
  2254. _get_charm_metadata_uses "$metadata" > "$cache_file"
  2255. if [ "$?" != 0 ]; then
  2256. rm -f "$cache_file" ## no cache
  2257. return 1
  2258. fi
  2259. cat "$cache_file"
  2260. }
  2261. export -f _get_service_uses
  2262. _get_services_uses() {
  2263. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2264. service rn rd
  2265. if [ -e "$cache_file" ]; then
  2266. #debug "$FUNCNAME: SESSION cache hit $1"
  2267. cat "$cache_file"
  2268. return 0
  2269. fi
  2270. for service in "$@"; do
  2271. _get_service_uses "$service" | while read-0 rn rd; do
  2272. printf "%s\0" "$service" "$rn" "$rd"
  2273. done
  2274. [ "${PIPESTATUS[0]}" == 0 ] || {
  2275. return 1
  2276. }
  2277. done > "${cache_file}.wip"
  2278. mv "${cache_file}"{.wip,} &&
  2279. cat "$cache_file" || return 1
  2280. }
  2281. export -f _get_services_uses
  2282. _get_provides_provides() {
  2283. local provides="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2284. service rn rd
  2285. if [ -e "$cache_file" ]; then
  2286. # debug "$FUNCNAME: CACHEDIR cache hit $1"
  2287. cat "$cache_file"
  2288. return 0
  2289. fi
  2290. type=$(printf "%s" "$provides" | shyaml get-type)
  2291. case "$type" in
  2292. sequence)
  2293. while read-0 prov; do
  2294. printf "%s\0" "$prov" ""
  2295. done < <(echo "$provides" | shyaml get-values-0)
  2296. ;;
  2297. struct)
  2298. printf "%s" "$provides" | shyaml key-values-0
  2299. ;;
  2300. str)
  2301. printf "%s\0" "$(echo "$provides" | shyaml get-value)" ""
  2302. ;;
  2303. *)
  2304. err "Unexpected type '$type' for provider identifier in charm '$charm'."
  2305. return 1
  2306. esac | tee "$cache_file"
  2307. return "${PIPESTATUS[0]}"
  2308. }
  2309. _get_metadata_provides() {
  2310. local metadata="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2311. service rn rd
  2312. if [ -e "$cache_file" ]; then
  2313. #debug "$FUNCNAME: CACHEDIR cache hit"
  2314. cat "$cache_file"
  2315. return 0
  2316. fi
  2317. provides=$(printf "%s" "$metadata" | shyaml -q get-value -y provides "")
  2318. [ "$provides" -a "$provides" != "''" ] || { touch "$cache_file"; return 0; }
  2319. _get_provides_provides "$provides" | tee "$cache_file"
  2320. return "${PIPESTATUS[0]}"
  2321. }
  2322. _get_services_provides() {
  2323. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2324. service rn rd
  2325. if [ -e "$cache_file" ]; then
  2326. #debug "$FUNCNAME: SESSION cache hit $1"
  2327. cat "$cache_file"
  2328. return 0
  2329. fi
  2330. ## YYY: replace the inner loop by a cached function
  2331. for service in "$@"; do
  2332. metadata="$(_get_service_metadata "$service")" || return 1
  2333. while read-0 rn rd; do
  2334. printf "%s\0" "$service" "$rn" "$rd"
  2335. done < <(_get_metadata_provides "$metadata")
  2336. done > "$cache_file"
  2337. if [ "$?" != 0 ]; then
  2338. rm -f "$cache_file" ## no cache
  2339. return 1
  2340. fi
  2341. cat "$cache_file"
  2342. }
  2343. export -f _get_services_provides
  2344. _get_charm_provides() {
  2345. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(charm.store_metadata_hash)" errlvl
  2346. if [ -e "$cache_file" ]; then
  2347. #debug "$FUNCNAME: SESSION cache hit"
  2348. cat "$cache_file"
  2349. return 0
  2350. fi
  2351. start="$SECONDS"
  2352. debug "Getting charm provider list..."
  2353. while read-0 charm _ realpath metadata; do
  2354. metadata="$(charm.metadata "$charm")" || continue
  2355. # echo "reading $charm" >&2
  2356. while read-0 rn rd; do
  2357. printf "%s\0" "$charm" "$rn" "$rd"
  2358. done < <(_get_metadata_provides "$metadata")
  2359. done < <(charm.ls) | tee "$cache_file"
  2360. errlvl="${PIPESTATUS[0]}"
  2361. debug " ..charm provider list done $GRAY(in $((SECONDS - start))s)$NORMAL"
  2362. return "$errlvl"
  2363. }
  2364. _get_charm_providing() {
  2365. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2366. relation="$1"
  2367. if [ -e "$cache_file" ]; then
  2368. #debug "$FUNCNAME: SESSION cache hit $1"
  2369. cat "$cache_file"
  2370. return 0
  2371. fi
  2372. while read-0 charm relation_name relation_def; do
  2373. [ "$relation_name" == "$relation" ] || continue
  2374. printf "%s\0" "$charm" "$relation_def"
  2375. done < <(_get_charm_provides) > "$cache_file"
  2376. if [ "$?" != 0 ]; then
  2377. rm -f "$cache_file" ## no cache
  2378. return 1
  2379. fi
  2380. cat "$cache_file"
  2381. }
  2382. _get_services_providing() {
  2383. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)" \
  2384. relation="$1"
  2385. shift ## services is "$@"
  2386. if [ -e "$cache_file" ]; then
  2387. #debug "$FUNCNAME: SESSION cache hit $1"
  2388. cat "$cache_file"
  2389. return 0
  2390. fi
  2391. while read-0 service relation_name relation_def; do
  2392. [ "$relation_name" == "$relation" ] || continue
  2393. printf "%s\0" "$service" "$relation_def"
  2394. done < <(_get_services_provides "$@") > "$cache_file"
  2395. if [ "$?" != 0 ]; then
  2396. rm -f "$cache_file" ## no cache
  2397. return 1
  2398. fi
  2399. cat "$cache_file"
  2400. }
  2401. export -f _get_services_provides
  2402. _out_new_relation_from_defs() {
  2403. local service="$1" rn="$2" ts="$3" prov_def="$4" rel_def="$5" rc td rc_prov
  2404. rc_prov=$(printf "%s" "$prov_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2405. ## YYYvlab: should be seen even in no debug mode no ?
  2406. rc=$(printf "%s" "$rel_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2407. td=$(echo "$prov_def" | shyaml get-value 'tech-dep' 2>/dev/null)
  2408. td=${td:-True}
  2409. rc=$(merge_yaml_str "$rc_prov" "$rc") || return 1
  2410. after=$(_out_after_value_from_def "$service" "$rn" "$rel_def") || return 1
  2411. printf "%s\0" "$after" "$service" "$relation_name" "$ts" "$rc" "$td"
  2412. }
  2413. _out_after_value_from_def() {
  2414. local service="$1" relation_name="$2" relation_def="$3" after_t after
  2415. if after_t=$(echo "$relation_def" | shyaml get-type after 2>/dev/null); then
  2416. case "$after_t" in
  2417. sequence)
  2418. after="$(echo "$relation_def" | shyaml get-values after 2>/dev/null)" || return 1
  2419. after=",$service:${after//$'\n'/,$service:},"
  2420. ;;
  2421. struct)
  2422. err "Invalid type for ${WHITE}after${NORMAL}'s value in ${DARKBLUE}$relation_name${NORMAL}'s definition."
  2423. return 1
  2424. ;;
  2425. str)
  2426. after=",$service:$(echo "$relation_def" | shyaml get-value after "" 2>/dev/null)," || return 1
  2427. ;;
  2428. esac
  2429. else
  2430. after=""
  2431. fi
  2432. e "$after"
  2433. }
  2434. get_all_relations () {
  2435. local cache_file="$state_tmpdir/$FUNCNAME.cache.$(H "$@" "$(declare -p without_relations)")" \
  2436. services
  2437. if [ -n "$ALL_RELATIONS" ]; then
  2438. cat "$ALL_RELATIONS" || return 1
  2439. return 0
  2440. fi
  2441. if [ -e "${cache_file}" ]; then
  2442. #debug "$FUNCNAME: SESSION cache hit $1"
  2443. export ALL_RELATIONS="$cache_file"
  2444. cat "${cache_file}"
  2445. return 0
  2446. fi
  2447. declare -A services
  2448. services_uses=()
  2449. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2450. _get_services_uses "$@" || return 1
  2451. array_read-0 services_uses < <(_get_services_uses "$@")
  2452. services_provides=()
  2453. ## XXXvlab: bwerk, leveraging cache to be able to get the errorlevel here.
  2454. _get_services_provides "$@" || return 1
  2455. array_read-0 services_provides < <(_get_services_provides "$@")
  2456. for service in "$@"; do
  2457. services[$service]=1
  2458. done
  2459. all_services=("$@")
  2460. while [ "${#all_services[@]}" != 0 ]; do
  2461. array_pop all_services service
  2462. while read-0-err E relation_name ts relation_config tech_dep; do
  2463. [ "${without_relations[$service:$relation_name]}" ] && {
  2464. debug "Ignoring compose $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> ${DARKYELLOW}$ts$NORMAL"
  2465. continue
  2466. }
  2467. ## First is priority, that can be adjusted in second step
  2468. printf "%s\0" "" "$service" "$relation_name" "$ts" "$relation_config" "$tech_dep"
  2469. ## adding target services ?
  2470. [ "${services[$ts]}" ] && continue
  2471. array_read-0 services_uses < <(_get_services_uses "$ts")
  2472. all_services+=("$ts")
  2473. services[$ts]=1
  2474. done < <(p-err get_compose_relations "$service")
  2475. if [ "$E" != 0 ]; then
  2476. err "Failed to get relations for $DARKYELLOW$service$NORMAL."
  2477. return 1
  2478. fi
  2479. done > "${cache_file}.wip"
  2480. while true; do
  2481. changed=
  2482. new_services_uses=()
  2483. summon=()
  2484. required=()
  2485. recommended=()
  2486. optional=()
  2487. while [ "${#services_uses[@]}" != 0 ]; do
  2488. service="${services_uses[0]}"
  2489. relation_name="${services_uses[1]}"
  2490. relation_def="${services_uses[2]}"
  2491. services_uses=("${services_uses[@]:3}")
  2492. [ "${without_relations[$service:$relation_name]}" ] && {
  2493. debug "Skipping $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW*$NORMAL"
  2494. continue
  2495. }
  2496. default_options=$(printf "%s" "$relation_def" | shyaml -y get-value "default-options" 2>/dev/null)
  2497. after=$(_out_after_value_from_def "$service" "$relation_name" "$relation_def") || return 1
  2498. ## is this "use" declaration satisfied ?
  2499. found=
  2500. while read-0 p s rn ts rc td; do
  2501. if [ -z "$found" -a "$service" == "$s" -a "$relation_name" == "$rn" ]; then
  2502. if [ "$default_options" ]; then
  2503. rc=$(merge_yaml_str "$default_options" "$rc") || return 1
  2504. fi
  2505. found="$ts"
  2506. p="$after"
  2507. fi
  2508. printf "%s\0" "$p" "$s" "$rn" "$ts" "$rc" "$td"
  2509. done < "${cache_file}.wip" > "${cache_file}.wip.new"
  2510. mv "${cache_file}.wip.new" "${cache_file}.wip"
  2511. if [ "$found" ]; then ## this "use" declaration was satisfied
  2512. debug "${DARKYELLOW}$service${NORMAL} use declaration for relation" \
  2513. "${DARKBLUE}$relation_name${NORMAL} is satisfied with ${DARKYELLOW}$found${NORMAL}"
  2514. continue
  2515. fi
  2516. auto=$(echo "$relation_def" | shyaml get-value auto pair 2>/dev/null)
  2517. auto=${auto:-pair}
  2518. case "$auto" in
  2519. "pair"|"summon")
  2520. service_list=()
  2521. array_read-0 service_list < <(array_keys_to_stdin services)
  2522. providers=()
  2523. providers_def=()
  2524. array_read-0 providers providers_def < <(_get_services_providing "$relation_name" "${service_list[@]}")
  2525. if [ "${#providers[@]}" == 1 ]; then
  2526. ts="${providers[0]}"
  2527. debug "Auto-pairs ${DARKYELLOW}$service${NORMAL}" \
  2528. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2529. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2530. "${providers_def[0]}" "$relation_def" \
  2531. >> "${cache_file}.wip" || return 1
  2532. ## Adding service
  2533. [ "${services[$ts]}" ] && continue
  2534. array_read-0 new_services_uses < <(_get_services_uses "$ts")
  2535. services[$ts]=1
  2536. changed=1
  2537. continue
  2538. fi
  2539. if [ "${#providers[@]}" -gt 1 ]; then
  2540. msg=""
  2541. warn "No auto-pairing ${DARKYELLOW}$service${NORMAL}" \
  2542. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2543. "(> 1 provider)."
  2544. elif [ "$auto" == "summon" ]; then ## no provider
  2545. summon+=("$service" "$relation_name" "$relation_def")
  2546. fi
  2547. ;;
  2548. null|disable|disabled)
  2549. :
  2550. ;;
  2551. *)
  2552. err "Invalid ${WHITE}auto${NORMAL} value '$auto'."
  2553. return 1
  2554. ;;
  2555. esac
  2556. constraint=$(echo "$relation_def" | shyaml get-value constraint 2>/dev/null)
  2557. constraint=${constraint:-optional}
  2558. case "$constraint" in
  2559. "required")
  2560. required+=("$service" "$relation_name" "$relation_def")
  2561. ;;
  2562. "recommended")
  2563. recommended+=("$service" "$relation_name" "$relation_def")
  2564. ;;
  2565. "optional")
  2566. optional+=("$service" "$relation_name" "$relation_def")
  2567. ;;
  2568. *)
  2569. err "Invalid ${WHITE}constraint${NORMAL} value '$constraint'."
  2570. return 1
  2571. ;;
  2572. esac
  2573. new_services_uses+=("$service" "$relation_name" "$relation_def") ## re-queue it
  2574. done
  2575. services_uses=("${new_services_uses[@]}")
  2576. if [ "$changed" ]; then
  2577. continue
  2578. fi
  2579. ## situation is stable
  2580. if [ "${#summon[@]}" != 0 ]; then
  2581. declare -A summon_requeued=()
  2582. while [ "${#summon[@]}" != 0 ]; do
  2583. service="${summon[0]}"
  2584. relation_name="${summon[1]}"
  2585. relation_def="${summon[2]}"
  2586. summon=("${summon[@]:3}")
  2587. providers=()
  2588. providers_def=()
  2589. array_read-0 providers providers_def < <(_get_charm_providing "$relation_name" "${service_list[@]}")
  2590. if [ "${#providers[@]}" == 0 ]; then
  2591. err "Summoning a ${DARKBLUE}$relation_name${NORMAL} provider failed: none were found in charm store."
  2592. return 1
  2593. fi
  2594. if [ "${#providers[@]}" -gt 1 ]; then
  2595. if [ -z "${summon_requeued[$service/$relation_name]}" ]; then
  2596. debug "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2597. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2598. "(> 1 provider). Requeing."
  2599. summon+=("$service" "$relation_name" "$relation_def") ## re-queue it
  2600. summon_requeued["$service/$relation_name"]=1
  2601. continue
  2602. else
  2603. warn "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2604. "--${DARKBLUE}$relation_name${NORMAL}--> ($DARKYELLOW""${providers[@]}""$NORMAL)"\
  2605. "(> 1 provider). Choosing first."
  2606. fi
  2607. fi
  2608. ts="${providers[0]}"
  2609. ## YYYvlab: should be seen even in no debug mode no ?
  2610. debug "Auto-summon ${DARKYELLOW}$service${NORMAL}" \
  2611. "--${DARKBLUE}$relation_name${NORMAL}--> ${DARKYELLOW}$ts${NORMAL}"
  2612. _out_new_relation_from_defs "$service" "$relation_name" "$ts" \
  2613. "${providers_def[0]}" "$relation_def" \
  2614. >> "${cache_file}.wip" || return 1
  2615. ## Adding service
  2616. [ "${services[$ts]}" ] && continue
  2617. array_read-0 services_uses < <(_get_services_uses "$ts")
  2618. services[$ts]=1
  2619. changed=1
  2620. continue 2
  2621. done
  2622. continue
  2623. fi
  2624. [ "$NO_CONSTRAINT_CHECK" ] && break
  2625. if [ "${#required[@]}" != 0 ]; then
  2626. echo "$(_display_solves required)" | sed -r "s/^/${RED}||${NORMAL} /g" >&2
  2627. err "Required relations not satisfied"
  2628. return 1
  2629. fi
  2630. if [ "${#recommended[@]}" != 0 ]; then
  2631. ## make recommendation
  2632. echo "$(_display_solves recommended)" | sed -r "s/^/${YELLOW}||${NORMAL} /g" >&2
  2633. fi
  2634. if [ -z "$QUIET" ]; then
  2635. if [ "${#optional[@]}" != 0 ]; then
  2636. ## inform about options
  2637. echo "$(_display_solves optional)" | sed -r "s/^/${BLUE}||${NORMAL} /g" >&2
  2638. fi
  2639. fi
  2640. # if [ "${#required[@]}" != 0 ]; then
  2641. # err "Required relations not satisfied"
  2642. # return 1
  2643. # fi
  2644. if [ "${#recommended[@]}" != 0 ]; then
  2645. warn "Recommended relations not satisfied"
  2646. fi
  2647. break
  2648. done
  2649. if [ "$?" != 0 ]; then
  2650. rm -f "${cache_file}"{,.wip,.wip.new} ## no cache
  2651. return 1
  2652. fi
  2653. ##
  2654. ## Sort relations thanks to uses =metadata.yml= relations.
  2655. ##
  2656. mv "${cache_file}.wip"{,.in} &&
  2657. rm -f "${cache_file}.wip.final" &&
  2658. touch "${cache_file}.wip.final" || {
  2659. err "Unexpected error when mangling cache files."
  2660. return 1
  2661. }
  2662. declare -A relation_done=()
  2663. while true; do
  2664. had_remaining_relation=
  2665. had_new_relation=
  2666. while read-0 p s rn ts rc td; do
  2667. if [ -z "$p" ] || [ "$p" == "," ]; then
  2668. relation_done["$s:$rn"]=1
  2669. # printf " .. %-30s %-30s %-30s\n" "--" "$s" "$rn" >&2
  2670. printf "%s\0" "$s" "$rn" "$ts" "$rc" "$td" >> "${cache_file}.wip.final"
  2671. had_new_relation=1
  2672. else
  2673. # printf " !! %-30s %-30s %-30s\n" "$p" "$s" "$rn" >&2
  2674. printf "%s\0" "$p" "$s" "$rn" "$ts" "$rc" "$td" >> "${cache_file}.wip.out"
  2675. had_remaining_relation=1
  2676. fi
  2677. done < "${cache_file}.wip.in"
  2678. [ -z "$had_remaining_relation" ] && break
  2679. mv "${cache_file}.wip."{out,in}
  2680. while read-0 p s rn ts rc td; do
  2681. for rel in "${!relation_done[@]}"; do
  2682. p="${p//,$rel,/,}"
  2683. done
  2684. # printf " CC %-30s %-30s %-30s\n" "$p" "$s" "$rn" >&2
  2685. if [ -z "$had_new_relation" ]; then
  2686. err "${DARKYELLOW}$s${NORMAL} --${DARKBLUE}$rn${NORMAL}--> ${DARKYELLOW}$ts${NORMAL} missing required ${WHITE}after${NORMAL} relations:"
  2687. for rel in ${p//,/ }; do
  2688. rel_s=${rel%%:*}
  2689. rel_r=${rel##*:}
  2690. echo " - ${DARKYELLOW}$rel_s${NORMAL} --${DARKBLUE}$rel_r${NORMAL}--> ${DARKGRAY}*${NORMAL}" >&2
  2691. done
  2692. else
  2693. printf "%s\0" "$p" "$s" "$rn" "$ts" "$rc" "$td" >> "${cache_file}.wip.out"
  2694. fi
  2695. done < "${cache_file}.wip.in"
  2696. if [ -z "$had_new_relation" ]; then
  2697. rm -f "${cache_file}"{,.wip{,new,in,out,final}} ## no cache
  2698. return 1
  2699. fi
  2700. mv "${cache_file}.wip."{out,in}
  2701. done
  2702. export ALL_RELATIONS="$cache_file"
  2703. mv "${cache_file}"{.wip.final,} || return 1
  2704. cat "$cache_file"
  2705. }
  2706. export -f get_all_relations
  2707. _display_solves() {
  2708. local array_name="$1" by_relation msg
  2709. ## inform about options
  2710. msg=""
  2711. declare -A by_relation
  2712. while read-0 service relation_name relation_def; do
  2713. solves=$(printf "%s" "$relation_def" | shyaml -y get-value solves 2>/dev/null);
  2714. auto=$(printf "%s" "$relation_def" | shyaml get-value auto 2>/dev/null);
  2715. if [ -z "$solves" ]; then
  2716. continue
  2717. fi
  2718. by_relation[$relation_name]+=$(printf "\n %s" "${DARKYELLOW}$service$NORMAL for:")
  2719. if [ "$auto" == "pair" ]; then
  2720. requirement="add provider in cluster to auto-pair"
  2721. else
  2722. requirement="add explicit relation"
  2723. fi
  2724. while read-0 name def; do
  2725. by_relation[$relation_name]+=$(printf "\n - ${DARKCYAN}%-15s${NORMAL} %s (%s)" "$name" "$def" "$requirement")
  2726. done < <(printf "%s" "$solves" | shyaml key-values-0)
  2727. done < <(array_values_to_stdin "$array_name")
  2728. while read-0 relation_name message; do
  2729. msg+="$(printf "\n${DARKBLUE}%s$NORMAL provider is $array_name by%s" \
  2730. "$relation_name" "$message" )"
  2731. done < <(array_kv_to_stdin by_relation)
  2732. if [ "$msg" ]; then
  2733. printf "%s\n" "${msg:1}"
  2734. fi
  2735. }
  2736. get_compose_relation_def() {
  2737. local service="$1" relation="$2" relation_name target_service relation_config tech_dep
  2738. while read-0 relation_name target_service relation_config tech_dep; do
  2739. [ "$relation_name" == "$relation" ] || continue
  2740. printf "%s\0%s\0%s\0" "$target_service" "$relation_config" "$tech_dep"
  2741. done < <(get_compose_relations "$service") || return 1
  2742. }
  2743. export -f get_compose_relation_def
  2744. run_service_relations () {
  2745. local service services loaded subservices subservice
  2746. PROJECT_NAME=$(get_default_project_name) || return 1
  2747. export PROJECT_NAME
  2748. declare -A loaded
  2749. subservices=$(get_ordered_service_dependencies "$@") || return 1
  2750. for service in $subservices; do
  2751. # debug "Upping dep's relations of ${DARKYELLOW}$service${NORMAL}:"
  2752. for subservice in $(get_service_deps "$service") "$service"; do
  2753. [ "${loaded[$subservice]}" ] && continue
  2754. export BASE_SERVICE_NAME=$service
  2755. MASTER_BASE_SERVICE_NAME=$(get_top_master_service_for_service "$subservice") || return 1
  2756. MASTER_BASE_CHARM_NAME=$(get_service_charm "$MASTER_BASE_SERVICE_NAME") || return 1
  2757. RELATION_BASE_COMPOSE_DEF=$(get_compose_service_def "$subservice") || return 1
  2758. export RELATION_BASE_COMPOSE_DEF MASTER_BASE_{CHARM,SERVICE}_NAME
  2759. # debug " Relations of ${DARKYELLOW}$subservice${NORMAL}:"
  2760. while read-0 relation_name target_service relation_config tech_dep; do
  2761. [ "${without_relations[$service:$relation_name]}" ] && {
  2762. debug "Skipping $DARKYELLOW$service$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW*$NORMAL"
  2763. continue
  2764. }
  2765. export relation_config
  2766. export TARGET_SERVICE_NAME=$target_service
  2767. MASTER_TARGET_SERVICE_NAME=$(get_top_master_service_for_service "$target_service") || return 1
  2768. MASTER_TARGET_CHARM_NAME=$(get_service_charm "$MASTER_TARGET_SERVICE_NAME") || return 1
  2769. RELATION_TARGET_COMPOSE_DEF=$(get_compose_service_def "$target_service") || return 1
  2770. export RELATION_TARGET_COMPOSE_DEF MASTER_TARGET_{CHARM,SERVICE}_NAME
  2771. Wrap "${wrap_opts[@]}" -d "building $DARKYELLOW$subservice$NORMAL --$DARKBLUE$relation_name$NORMAL--> $DARKYELLOW$target_service$NORMAL" <<EOF || return 1
  2772. _run_service_relation "$relation_name" "$subservice" "$target_service" "\$relation_config"
  2773. EOF
  2774. done < <(get_service_relations "$subservice") || return 1
  2775. loaded[$subservice]=1
  2776. done
  2777. done
  2778. }
  2779. export -f run_service_relations
  2780. _run_service_action_direct() {
  2781. local service="$1" action="$2" charm _dummy project_name
  2782. shift; shift
  2783. read-0 charm action_script_path || true ## against 'set -e' that could be setup in parent scripts
  2784. if read-0 _dummy || [ "$_dummy" ]; then
  2785. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2786. return 1
  2787. fi
  2788. project_name=$(get_default_project_name) || return 1
  2789. export PROJECT_NAME="$project_name"
  2790. export state_tmpdir
  2791. (
  2792. set +e ## Prevents unwanted leaks from parent shell
  2793. export COMPOSE_CONFIG=$(get_compose_yml_content)
  2794. export METADATA_CONFIG=$(charm.metadata "$charm")
  2795. export SERVICE_NAME=$service
  2796. export ACTION_NAME=$action
  2797. export ACTION_SCRIPT_PATH="$action_script_path"
  2798. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2799. export DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$CONTAINER_NAME")
  2800. export SERVICE_DATASTORE="$DATASTORE/$service"
  2801. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2802. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2803. stdbuf -oL -eL bash -c 'charm.run_direct_action "$@"' -- "$charm" "$action" "$@"
  2804. ) 0<&6 ## inject general stdin
  2805. }
  2806. export -f _run_service_action_direct
  2807. _run_service_action_relation() {
  2808. local service="$1" action="$2" charm target_charm relation_name relation_config _dummy
  2809. shift; shift
  2810. read-0 charm target_service target_charm relation_name relation_config action_script_path || true
  2811. if read-0 _dummy || [ "$_dummy" ]; then
  2812. print_syntax_error "$FUNCNAME: too many arguments in action descriptor"
  2813. return 1
  2814. fi
  2815. export action_errlvl_file="$state_tmpdir/action-$service-$charm-$action-errlvl"
  2816. export state_tmpdir
  2817. (
  2818. set +e ## Prevents unwanted leaks from parent shell
  2819. export METADATA_CONFIG=$(charm.metadata "$charm")
  2820. export SERVICE_NAME=$service
  2821. export RELATION_TARGET_SERVICE="$target_service"
  2822. export RELATION_TARGET_CHARM="$target_charm"
  2823. export RELATION_BASE_SERVICE="$service"
  2824. export RELATION_BASE_CHARM="$charm"
  2825. export ACTION_NAME=$action
  2826. export ACTION_SCRIPT_PATH="$action_script_path"
  2827. export CONTAINER_NAME=$(get_top_master_service_for_service "$service")
  2828. export DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$CONTAINER_NAME")
  2829. export SERVICE_DATASTORE="$DATASTORE/$service"
  2830. export SERVICE_CONFIGSTORE="$CONFIGSTORE/$service"
  2831. exname="$exname $ACTION_NAME $SERVICE_NAME" \
  2832. stdbuf -oL -eL bash -c 'charm.run_relation_action "$@"' -- "$target_charm" "$relation_name" "$action" "$@"
  2833. ) 0<&6 ## inject general stdin
  2834. }
  2835. export -f _run_service_action_relation
  2836. get_relation_data_dir() {
  2837. local service="$1" target_service="$2" relation_name="$3" \
  2838. cache_file="$state_tmpdir/$FUNCNAME.cache.$(printf "%s\0" "$@" | md5_compat)"
  2839. if [ -e "$cache_file" ]; then
  2840. # debug "$FUNCNAME: cache hit ($*)"
  2841. cat "$cache_file"
  2842. return 0
  2843. fi
  2844. local project relation_dir
  2845. project=${PROJECT_NAME}
  2846. if [ -z "$project" ]; then
  2847. project=$(get_default_project_name) || return 1
  2848. fi
  2849. relation_dir="$VARDIR/relations/$project/${service}-${target_service}/$relation_name"
  2850. if ! [ -d "$relation_dir" ]; then
  2851. mkdir -p "$relation_dir" || return 1
  2852. chmod go-rwx "$relation_dir" || return 1 ## protecting this directory
  2853. fi
  2854. echo "$relation_dir" | tee "$cache_file"
  2855. }
  2856. export -f get_relation_data_dir
  2857. get_relation_data_file() {
  2858. local service="$1" target_service="$2" relation_name="$3" relation_config="$4" \
  2859. new new_md5 relation_dir relation_data_file
  2860. relation_dir=$(get_relation_data_dir "$service" "$target_service" "$relation_name") || return 1
  2861. relation_data_file="$relation_dir/data"
  2862. new=
  2863. if [ -e "$relation_data_file" ]; then
  2864. ## Has reference changed ?
  2865. new_md5=$(e "$relation_config" | md5_compat)
  2866. if [ "$new_md5" != "$(cat "$relation_data_file.md5_ref" 2>/dev/null)" ]; then
  2867. new=true
  2868. fi
  2869. else
  2870. new=true
  2871. fi
  2872. if [ -n "$new" ]; then
  2873. OLDUMASK=$(umask)
  2874. umask 0077
  2875. e "$relation_config" > "$relation_data_file"
  2876. umask "$OLDUMASK"
  2877. e "$relation_config" | md5_compat > "$relation_data_file.md5_ref"
  2878. fi
  2879. echo "$relation_data_file"
  2880. }
  2881. export -f get_relation_data_file
  2882. has_service_action () {
  2883. local service="$1" action="$2" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  2884. charm target_charm relation_name target_service relation_config _tech_dep \
  2885. path
  2886. if [ -e "$cache_file" ]; then
  2887. # debug "$FUNCNAME: cache hit ($*)"
  2888. cat "$cache_file"
  2889. return 0
  2890. fi
  2891. charm=$(get_service_charm "$service") || return 1
  2892. ## Action directly provided ?
  2893. if path=$(charm.has_direct_action "$charm" "$action"); then
  2894. p0 "direct" "$charm" "$path" | tee "$cache_file"
  2895. return 0
  2896. fi
  2897. ## Action provided by relation ?
  2898. while read-0 relation_name target_service relation_config _tech_dep; do
  2899. target_charm=$(get_service_charm "$target_service") || return 1
  2900. if path=$(charm.has_relation_action "$target_charm" "$relation_name" "$action"); then
  2901. p0 "relation" "$charm" "$target_service" "$target_charm" "$relation_name" "$relation_config" "$path" | tee "$cache_file"
  2902. return 0
  2903. fi
  2904. done < <(get_service_relations "$service")
  2905. return 1
  2906. # master=$(get_top_master_service_for_service "$service")
  2907. # [ "$master" == "$charm" ] && return 1
  2908. # has_service_action "$master" "$action"
  2909. }
  2910. export -f has_service_action
  2911. run_service_action () {
  2912. local service="$1" action="$2" errlvl
  2913. shift ; shift
  2914. exec 6<&0 ## saving stdin
  2915. {
  2916. if ! read-0 action_type; then
  2917. info "Service $DARKYELLOW$service$NORMAL does not have any action $DARKCYAN$action$NORMAL defined."
  2918. info " Add an executable script to 'actions/$action' to implement action."
  2919. return 1
  2920. fi
  2921. "_run_service_action_${action_type}" "$service" "$action" "$@"
  2922. errlvl="$?"
  2923. } < <(has_service_action "$service" "$action")
  2924. exec 0<&6 6<&- ## restoring stdin
  2925. return "$errlvl"
  2926. }
  2927. export -f run_service_action
  2928. get_compose_relation_config() {
  2929. local service=$1 relation_config cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  2930. if [ -e "$cache_file" ]; then
  2931. # debug "$FUNCNAME: cache hit ($*)"
  2932. cat "$cache_file"
  2933. return 0
  2934. fi
  2935. compose_service_def=$(get_compose_service_def "$service") || return 1
  2936. echo "$compose_service_def" | shyaml get-value "relations" 2>/dev/null | tee "$cache_file"
  2937. }
  2938. export -f get_compose_relation_config
  2939. # ## Return key-values-0
  2940. # get_compose_relation_config_for_service() {
  2941. # local service=$1 relation_name=$2 relation_config
  2942. # compose_service_relations=$(get_compose_relation_config "$service") || return 1
  2943. # if ! relation_config=$(
  2944. # echo "$compose_service_relations" |
  2945. # shyaml get-value "${relation_name}" 2>/dev/null); then
  2946. # err "Couldn't find $DARKYELLOW${service}$NORMAL/${WHITE}${relation_name}$NORMAL" \
  2947. # "relation config in compose configuration."
  2948. # return 1
  2949. # fi
  2950. # if [ -z "$relation_config" ]; then
  2951. # err "Relation ${WHITE}mysql-database$NORMAL is empty in compose configuration."
  2952. # return 1
  2953. # fi
  2954. # if ! echo "$relation_config" | shyaml key-values-0 2>/dev/null; then
  2955. # err "No key/values in ${DARKBLUE}mysql-database$NORMAL of compose config."
  2956. # return 1
  2957. # fi
  2958. # }
  2959. # export -f get_compose_relation_config_for_service
  2960. _get_container_relation() {
  2961. local metadata=$1 found relation_name relation_def
  2962. found=
  2963. while read-0 relation_name relation_def; do
  2964. [ "$(echo "$relation_def" | shyaml get-value "scope" 2>/dev/null)" == "container" ] && {
  2965. found="$relation_name"
  2966. break
  2967. }
  2968. done < <(_get_charm_metadata_uses "$metadata")
  2969. if [ -z "$found" ]; then
  2970. err "Charm $DARKPINK$charm$NORMAL is a subordinate but does not have any required relation declaration with" \
  2971. "${WHITE}scope${NORMAL} set to 'container'."
  2972. return 1
  2973. fi
  2974. printf "%s" "$found"
  2975. }
  2976. _get_master_service_for_service_cached () {
  2977. local service="$1" charm="$2" metadata="$3" cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  2978. charm requires master_charm target_charm target_service service_def found
  2979. if [ -e "$cache_file" ]; then
  2980. # debug "$FUNCNAME: STATIC cache hit ($1)"
  2981. cat "$cache_file" &&
  2982. touch "$cache_file" || return 1
  2983. return 0
  2984. fi
  2985. if ! [[ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" =~ ^True|true$ ]]; then
  2986. ## just return service name
  2987. echo "$service" | tee "$cache_file"
  2988. return 0
  2989. fi
  2990. ## Action provided by relation ?
  2991. container_relation=$(_get_container_relation "$metadata") || return 1
  2992. read-0 target_service _ _ < <(get_service_relation "$service" "$container_relation")
  2993. if [ -z "$target_service" ]; then
  2994. err "Couldn't find ${WHITE}relations.${container_relation}${NORMAL} in" \
  2995. "${DARKYELLOW}$service$NORMAL compose definition."
  2996. err ${FUNCNAME[@]}
  2997. return 1
  2998. fi
  2999. echo "$target_service" | tee "$cache_file"
  3000. }
  3001. export -f _get_master_service_for_service_cached
  3002. get_master_service_for_service() {
  3003. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  3004. charm metadata result
  3005. if [ -e "$cache_file" ]; then
  3006. # debug "$FUNCNAME: SESSION cache hit ($*)"
  3007. cat "$cache_file" || return 1
  3008. return 0
  3009. fi
  3010. charm=$(get_service_charm "$service") || return 1
  3011. metadata=$(charm.metadata "$charm" 2>/dev/null) || {
  3012. metadata=""
  3013. warn "No charm $DARKPINK$charm$NORMAL found."
  3014. }
  3015. result=$(_get_master_service_for_service_cached "$service" "$charm" "$metadata") || return 1
  3016. echo "$result" | tee "$cache_file" || return 1
  3017. }
  3018. export -f get_master_service_for_service
  3019. get_top_master_service_for_service() {
  3020. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1" \
  3021. current_service
  3022. if [ -e "$cache_file" ]; then
  3023. # debug "$FUNCNAME: cache hit ($*)"
  3024. cat "$cache_file"
  3025. return 0
  3026. fi
  3027. current_service="$service"
  3028. while true; do
  3029. master_service=$(get_master_service_for_service "$current_service") || return 1
  3030. [ "$master_service" == "$current_service" ] && break
  3031. current_service="$master_service"
  3032. done
  3033. echo "$current_service" | tee "$cache_file"
  3034. return 0
  3035. }
  3036. export -f get_top_master_service_for_service
  3037. ##
  3038. ## The result is a mixin that is not always a complete valid
  3039. ## docker-compose entry (thinking of subordinates). The result
  3040. ## will be merge with master charms.
  3041. _get_docker_compose_mixin_from_metadata_cached() {
  3042. local service="$1" charm="$2" metadata="$3" \
  3043. has_build_dir="$4" \
  3044. cache_file="$CACHEDIR/$FUNCNAME.cache.$(echo "$*" | md5_compat)" \
  3045. metadata_file metadata volumes docker_compose subordinate image \
  3046. mixin mixins tmemory memory limit docker_memory
  3047. if [ -e "$cache_file" ]; then
  3048. #debug "$FUNCNAME: STATIC cache hit $1"
  3049. cat "$cache_file" &&
  3050. touch "$cache_file" || return 1
  3051. return 0
  3052. fi
  3053. mixins=("$(echo -en "labels:\n- compose.charm=$charm")")
  3054. if [ "$metadata" ]; then
  3055. ## resources to volumes
  3056. volumes=$(
  3057. for resource_type in data config; do
  3058. while read-0 resource; do
  3059. eval "echo \" - \$HOST_${resource_type^^}STORE/\$service\$resource:\$resource:rw\""
  3060. done < <(echo "$metadata" | shyaml get-values-0 "${resource_type}-resources" 2>/dev/null)
  3061. done
  3062. while read-0 resource; do
  3063. if [[ "$resource" == /*:/*:* ]]; then
  3064. echo " - $resource"
  3065. elif [[ "$resource" == /*:/* ]]; then
  3066. echo " - $resource:rw"
  3067. elif [[ "$resource" == /*:* ]]; then
  3068. echo " - ${resource%%:*}:$resource"
  3069. elif [[ "$resource" =~ ^/[^:]+$ ]]; then
  3070. echo " - $resource:$resource:rw"
  3071. else
  3072. die "Invalid host-resource specified in 'metadata.yml'."
  3073. fi
  3074. done < <(printf "%s" "$metadata" | shyaml get-values-0 "host-resources" 2>/dev/null)
  3075. while read-0 resource; do
  3076. dest="$(charm.get_dir "$charm")/resources$resource"
  3077. if ! [ -e "$dest" ]; then
  3078. die "charm-resource: '$resource' does not exist (file: '$dest')."
  3079. fi
  3080. echo " - $dest:$resource:ro"
  3081. done < <(echo "$metadata" | shyaml get-values-0 "charm-resources" 2>/dev/null)
  3082. ) || return 1
  3083. if [ "$volumes" ]; then
  3084. mixins+=("volumes:"$'\n'"$volumes")
  3085. fi
  3086. type="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  3087. if [ "$type" != "run-once" ]; then
  3088. mixins+=("restart: unless-stopped")
  3089. fi
  3090. docker_compose=$(printf "%s" "$metadata" | shyaml get-value -y "docker-compose" 2>/dev/null) || true
  3091. if [ "$docker_compose" ]; then
  3092. mixins+=("$docker_compose")
  3093. fi
  3094. if [[ "$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)" =~ ^True|true$ ]]; then
  3095. subordinate=true
  3096. fi
  3097. fi
  3098. image=$(echo "$metadata" | shyaml get-value "docker-image" 2>/dev/null)
  3099. [ "$image" == "None" ] && image=""
  3100. if [ -n "$image" ]; then
  3101. if [ -n "$subordinate" ]; then
  3102. err "Subordinate charm can not have a ${WHITE}docker-image${NORMAL} value."
  3103. return 1
  3104. fi
  3105. mixins+=("image: $image")
  3106. elif [ "$has_build_dir" ]; then
  3107. if [ "$subordinate" ]; then
  3108. err "Subordinate charm can not have a 'build' sub directory."
  3109. return 1
  3110. fi
  3111. mixins+=("build: $(charm.get_dir "$charm")/build")
  3112. fi
  3113. limit=$(e "$metadata" | yq '.limit' 2>/dev/null) || return 1
  3114. [ "$limit" == "null" ] && limit=""
  3115. if [ -n "$limit" ]; then
  3116. if ! read-0-err E tmemory memory < <(e "$limit" | wyq ".memory | type, .memory") ||
  3117. [ "$E" != 0 ]; then
  3118. err "Unexpected error in ${DARKPINK}$charm${NORMAL}'s metadata when parsing ${WHITE}.limit${NORMAL}"
  3119. return 1
  3120. fi
  3121. case "$tmemory" in
  3122. '!!str'|'!!int')
  3123. docker_memory="$(e "$memory" | numfmt --from iec)" || {
  3124. err "Invalid format specified for .limit.memory: '$memory'."
  3125. return 1
  3126. }
  3127. ;;
  3128. '!!float')
  3129. err "Unexpected value in ${DARKPINK}$charm${NORMAL}'s metadata for ${WHITE}.limit.memory${NORMAL}."
  3130. echo " You need to specify a unit (like 'K', 'M', 'G' ...)." >&2
  3131. return 1
  3132. ;;
  3133. '!!null')
  3134. :
  3135. ;;
  3136. *)
  3137. err "Unexpected type '${tmemory#!!}' in ${DARKPINK}$charm${NORMAL}'s metadata" \
  3138. "for ${WHITE}.limit.memory${NORMAL}."
  3139. echo " You need to check ${DARKPINK}$charm${NORMAL}'s metadata " \
  3140. "for ${WHITE}.limit.memory${NORMAL} and provide a valid value" >&2
  3141. echo " Example values: '1.5G', '252M', ..." >&2
  3142. return 1
  3143. ;;
  3144. esac
  3145. if [ -n "$docker_memory" ]; then
  3146. if [[ "$docker_memory" -lt 6291456 ]]; then
  3147. err "Can't limit service to lower than 6M."
  3148. echo " Specified limit of $memory (=$docker_memory) is lower than docker's min limit of 6M (=6291456)." >&2
  3149. echo " The provided limit to memory is lower than minimum memory for a container." >&2
  3150. echo " Please remove memory limit in ${DARKPINK}$charm${NORMAL}'s metadata or raise it." >&2
  3151. return 1
  3152. fi
  3153. mixins+=(
  3154. "mem_limit: $docker_memory"
  3155. "memswap_limit: $docker_memory"
  3156. )
  3157. fi
  3158. fi
  3159. ## Final merging
  3160. mixin=$(merge_yaml_str "${mixins[@]}") || {
  3161. err "Failed to merge mixins from ${DARKPINK}${charm}${NORMAL} metadata."
  3162. return 1
  3163. }
  3164. echo "$mixin" | tee "$cache_file"
  3165. }
  3166. export -f _get_docker_compose_mixin_from_metadata_cached
  3167. get_docker_compose_mixin_from_metadata() {
  3168. local service="$1" cache_file="$state_tmpdir/$FUNCNAME.cache.$1"
  3169. if [ -e "$cache_file" ]; then
  3170. #debug "$FUNCNAME: SESSION cache hit ($*)"
  3171. cat "$cache_file"
  3172. return 0
  3173. fi
  3174. charm=$(get_service_charm "$service") || return 1
  3175. metadata="$(charm.metadata "$charm" 2>/dev/null)" || return 1
  3176. has_build_dir=
  3177. [ -d "$(charm.get_dir "$charm")/build" ] && has_build_dir=true
  3178. mixin=$(_get_docker_compose_mixin_from_metadata_cached "$service" "$charm" "$metadata" "$has_build_dir") || return 1
  3179. echo "$mixin" | tee "$cache_file"
  3180. }
  3181. export -f get_docker_compose_mixin_from_metadata
  3182. _save() {
  3183. local name="$1"
  3184. cat - | tee -a "$docker_compose_dir/.data/$name"
  3185. }
  3186. export -f _save
  3187. get_default_project_name() {
  3188. if [ -n "$DEFAULT_PROJECT_NAME" ]; then
  3189. echo "$DEFAULT_PROJECT_NAME"
  3190. return 0
  3191. fi
  3192. local normalized_path compose_yml_location name
  3193. compose_yml_location="$(get_compose_yml_location)" || return 1
  3194. if [ -n "$compose_yml_location" ]; then
  3195. if normalized_path=$(readlink -f "$compose_yml_location"); then
  3196. name="${normalized_path%/*}" ## dirname
  3197. name="${name##*/}" ## basename
  3198. name="${name%%-deploy}" ## remove any '-deploy'
  3199. name="${name,,}" ## lowercase
  3200. e "$name"
  3201. return 0
  3202. fi
  3203. fi
  3204. echo "orphan"
  3205. return 0
  3206. }
  3207. export -f get_default_project_name
  3208. get_running_compose_containers() {
  3209. ## XXXvlab: docker bug: there will be a final newline anyway
  3210. docker ps --filter label="compose.service" --format='{{.ID}}'
  3211. }
  3212. export -f get_running_compose_containers
  3213. get_healthy_container_ip_for_service () {
  3214. local service="$1" port="$2" timeout=${3:-60}
  3215. local containers container container_network container_ip
  3216. containers="$(get_running_containers_for_service "$service")"
  3217. if [ -z "$containers" ]; then
  3218. err "No containers running for service $DARKYELLOW$service$NORMAL."
  3219. return 1
  3220. fi
  3221. ## XXXvlab: taking first container is probably not a good idea
  3222. container="$(echo "$containers" | head -n 1)"
  3223. ## XXXvlab: taking first ip is probably not a good idea
  3224. read-0 container_network container_ip < <(get_container_network_ip "$container")
  3225. if [ -z "$container_ip" ]; then
  3226. err "Can't get container's IP. You should check health of" \
  3227. "${DARKYELLOW}$service${NORMAL}'s container."
  3228. return 1
  3229. fi
  3230. wait_for_tcp_port "$container_network" "$container_ip:$port" "$timeout" || {
  3231. err "TCP port of ${DARKYELLOW}$service${NORMAL}'s container doesn't seem open"
  3232. echo " Please check that container is healthy. Here are last logs:" >&2
  3233. docker logs "$container" --tail=10 | prefix " ${GRAY}|${NORMAL} " >&2
  3234. return 1
  3235. }
  3236. info "Host/Port ${container_ip}:${port} checked ${GREEN}open${NORMAL}."
  3237. echo "$container_network:$container_ip"
  3238. }
  3239. export -f get_healthy_container_ip_for_service
  3240. switch_to_relation_service() {
  3241. local relation="$1"
  3242. ## XXXvlab: can't get real config here
  3243. if ! read-0 ts _ _ < <(get_service_relation "$SERVICE_NAME" "$relation"); then
  3244. err "Couldn't find relation ${DARKCYAN}$relation${NORMAL}."
  3245. return 1
  3246. fi
  3247. export SERVICE_NAME="$ts"
  3248. export SERVICE_DATASTORE="$DATASTORE/$SERVICE_NAME"
  3249. DOCKER_BASE_IMAGE=$(service_ensure_image_ready "$SERVICE_NAME")
  3250. export DOCKER_BASE_IMAGE
  3251. target_charm=$(get_service_charm "$ts") || return 1
  3252. target_charm_path=$(charm.get_dir "$target_charm") || return 1
  3253. cd "$target_charm_path"
  3254. }
  3255. export -f switch_to_relation_service
  3256. get_volumes_for_container() {
  3257. local container="$1"
  3258. docker inspect \
  3259. --format '{{range $mount := .Mounts}}{{$mount.Source}}{{"\x00"}}{{$mount.Destination}}{{"\x00"}}{{end}}' \
  3260. "$container"
  3261. }
  3262. export -f get_volumes_for_container
  3263. is_volume_used() {
  3264. local volume="$1" container_id src dst
  3265. while read -r container_id; do
  3266. while read-0 src dst; do
  3267. [[ "$src/" == "$volume"/* ]] && return 0
  3268. done < <(get_volumes_for_container "$container_id")
  3269. done < <(get_running_compose_containers)
  3270. return 1
  3271. }
  3272. export -f is_volume_used
  3273. clean_unused_docker_compose() {
  3274. for f in /var/lib/compose/docker-compose/*; do
  3275. [ -e "$f" ] || continue
  3276. is_volume_used "$f" && continue
  3277. debug "Cleaning unused docker-compose ${f##*/}"
  3278. rm -rf "$f" || return 1
  3279. done
  3280. return 0
  3281. }
  3282. export -f clean_unused_docker_compose
  3283. stdin_get_hash() {
  3284. local sha
  3285. sha=$(sha256sum) || return 1
  3286. sha=${sha:0:64}
  3287. echo "$sha"
  3288. }
  3289. export -f stdin_get_hash
  3290. file_get_hash() {
  3291. stdin_get_hash < "$1" || return 1
  3292. }
  3293. export -f file_get_hash
  3294. docker_compose_store() {
  3295. local file="$1" sha
  3296. sha=$(file_get_hash "$file") || return 1
  3297. project=$(get_default_project_name) || return 1
  3298. dst="/var/lib/compose/docker-compose/$sha/$project"
  3299. mkdir -p "$dst" || return 1
  3300. cat <<EOF > "$dst/.env" || return 1
  3301. DOCKER_COMPOSE_PATH=$dst
  3302. COMPOSE_HTTP_TIMEOUT=7200
  3303. EOF
  3304. cp "$file" "$dst/docker-compose.yml" || return 1
  3305. mkdir -p "$dst/bin" || return 1
  3306. cat <<EOF > "$dst/bin/dc" || return 1
  3307. #!/bin/bash
  3308. $(declare -f read-0)
  3309. docker_run_opts=()
  3310. while read-0 opt; do
  3311. if [[ "\$opt" == "!env:"* ]]; then
  3312. opt="\${opt##!env:}"
  3313. var="\${opt%%=*}"
  3314. value="\${opt#*=}"
  3315. export "\$var"="\$value"
  3316. else
  3317. docker_run_opts+=("\$opt")
  3318. fi
  3319. done < <(cat "$COMPOSE_LAUNCHER_OPTS")
  3320. docker_run_opts+=(
  3321. "-w" "$dst"
  3322. "--entrypoint" "/usr/local/bin/docker-compose"
  3323. )
  3324. [ -t 1 ] && {
  3325. docker_run_opts+=("-ti")
  3326. }
  3327. exec docker run --rm "\${docker_run_opts[@]}" "\${COMPOSE_DOCKER_IMAGE:-docker.0k.io/compose}" "\$@"
  3328. EOF
  3329. chmod +x "$dst/bin/dc" || return 1
  3330. printf "%s" "$sha"
  3331. }
  3332. export -f docker_compose_store
  3333. launch_docker_compose() {
  3334. local charm docker_compose_tmpdir docker_compose_dir
  3335. docker_compose_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  3336. #debug "Creating temporary docker-compose directory in '$docker_compose_tmpdir'."
  3337. trap_add EXIT "rm -rf \"$docker_compose_tmpdir\""
  3338. ## docker-compose will name network from the parent dir name
  3339. project=$(get_default_project_name)
  3340. mkdir -p "$docker_compose_tmpdir/$project"
  3341. docker_compose_dir="$docker_compose_tmpdir/$project"
  3342. if [ -z "$_CURRENT_DOCKER_COMPOSE" ]; then
  3343. err "${FUNCNAME[0]} is meant to be called after"\
  3344. "\$_CURRENT_DOCKER_COMPOSE has been calculated."
  3345. echo " Called by:" >&2
  3346. printf " - %s\n" "${FUNCNAME[@]:1}" >&2
  3347. return 1
  3348. fi
  3349. cat "$_CURRENT_DOCKER_COMPOSE" > "$docker_compose_dir/docker-compose.yml" || return 1
  3350. if [ -e "$state_tmpdir/to-merge-in-docker-compose.yml" ]; then
  3351. # debug "Merging some config data in docker-compose.yml:"
  3352. # debug "$(cat $state_tmpdir/to-merge-in-docker-compose.yml)"
  3353. _config_merge "$docker_compose_dir/docker-compose.yml" "$state_tmpdir/to-merge-in-docker-compose.yml" || return 1
  3354. fi
  3355. if [ -z "$(echo $(cat "$docker_compose_dir/docker-compose.yml"))" ]; then
  3356. die "Generated 'docker-compose.yml' is unexpectedly empty."
  3357. fi
  3358. ## XXXvlab: could be more specific and only link the needed charms
  3359. ## XXXvlab: why do we need these links ? If this is for the build command, then it is not useful anymore.
  3360. # for charm in $(shyaml keys services < "$docker_compose_dir/docker-compose.yml"); do
  3361. # if charm.exists "$charm"; then
  3362. # ln -sf "$(charm.get_dir "$charm")" "$docker_compose_dir/$charm" || exit 1
  3363. # fi
  3364. # done
  3365. mkdir "$docker_compose_dir/.data"
  3366. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  3367. sha=$(docker_compose_store "$docker_compose_dir/docker-compose.yml") || return 1
  3368. fi
  3369. {
  3370. {
  3371. {
  3372. if [ -z "$COMPOSE_DISABLE_DOCKER_COMPOSE_STORE" ]; then
  3373. cd "/var/lib/compose/docker-compose/$sha/$project" || return 1
  3374. else
  3375. cd "$docker_compose_dir" || return 1
  3376. fi
  3377. if [ -f ".env" ]; then
  3378. debug "${WHITE}.env$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  3379. debug "$(cat ".env" | prefix " $GRAY|$NORMAL ")"
  3380. fi
  3381. debug "${WHITE}docker-compose.yml$NORMAL for $DARKYELLOW$SERVICE_PACK$NORMAL:"
  3382. debug "$(cat "docker-compose.yml" | prefix " $GRAY|$NORMAL ")"
  3383. debug "${WHITE}Launching$NORMAL: docker-compose $@"
  3384. if [ "$DRY_COMPOSE_RUN" ]; then
  3385. echo docker-compose "$@"
  3386. else
  3387. docker-compose "$@"
  3388. fi
  3389. echo "$?" > "$docker_compose_dir/.data/errlvl"
  3390. } | _save stdout
  3391. } 3>&1 1>&2 2>&3 | _save stderr
  3392. } 3>&1 1>&2 2>&3
  3393. 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
  3394. err "Detected bug https://github.com/docker/docker/issues/4036 ... "
  3395. err "Please re-launch your command, or switch from 'devicemapper' driver to 'overlayfs' or 'aufs'."
  3396. fi
  3397. docker_compose_errlvl="$(cat "$docker_compose_dir/.data/errlvl" 2>/dev/null)"
  3398. if [ -z "$docker_compose_errlvl" ]; then
  3399. err "Something went wrong before you could gather docker-compose errorlevel."
  3400. return 1
  3401. fi
  3402. return "$docker_compose_errlvl"
  3403. }
  3404. export -f launch_docker_compose
  3405. get_compose_yml_location() {
  3406. if ! [ -z ${COMPOSE_YML_FILE+x} ]; then ## if set, even if empty
  3407. echo "$COMPOSE_YML_FILE"
  3408. return 0
  3409. fi
  3410. parent=$(while ! [ -f "./compose.yml" ]; do
  3411. [ "$PWD" == "/" ] && exit 0
  3412. cd ..
  3413. done; echo "$PWD"
  3414. )
  3415. if [ "$parent" ]; then
  3416. echo "$parent/compose.yml"
  3417. return 0
  3418. fi
  3419. ## XXXvlab: do we need this additional environment variable,
  3420. ## COMPOSE_YML_FILE is not sufficient ?
  3421. if [ "$DEFAULT_COMPOSE_FILE" ]; then
  3422. if ! [ -e "$DEFAULT_COMPOSE_FILE" ]; then
  3423. warn "No 'compose.yml' was found in current or parent dirs," \
  3424. "and \$DEFAULT_COMPOSE_FILE points to an unexistent file." \
  3425. "(${DEFAULT_COMPOSE_FILE})"
  3426. return 0
  3427. fi
  3428. echo "$DEFAULT_COMPOSE_FILE"
  3429. return 0
  3430. fi
  3431. warn "No 'compose.yml' was found in current or parent dirs, and no \$DEFAULT_COMPOSE_FILE was set."
  3432. return 0
  3433. }
  3434. export -f get_compose_yml_location
  3435. get_compose_yml_content() {
  3436. local cache_file="$state_tmpdir/$FUNCNAME.cache"
  3437. if [ -e "$cache_file" ]; then
  3438. cat "$cache_file" &&
  3439. touch "$cache_file" || return 1
  3440. return 0
  3441. fi
  3442. if [ -z "$COMPOSE_YML_FILE" ]; then
  3443. COMPOSE_YML_FILE=$(get_compose_yml_location) || return 1
  3444. fi
  3445. if [ -e "$COMPOSE_YML_FILE" ]; then
  3446. debug "Found $WHITE$exname$NORMAL YAML file in '$COMPOSE_YML_FILE'."
  3447. COMPOSE_YML_CONTENT=$(cat "$COMPOSE_YML_FILE") || {
  3448. err "Could not read '$COMPOSE_YML_FILE'."
  3449. return 1
  3450. }
  3451. else
  3452. debug "No compose file found. Using an empty one."
  3453. COMPOSE_YML_CONTENT=""
  3454. fi
  3455. COMPOSE_YML_CONTENT=$(merge_yaml_str "$COMPOSE_YML_CONTENT" "${compose_contents[@]}") || return 1
  3456. output=$(echo "$COMPOSE_YML_CONTENT"| shyaml get-value 2>&1)
  3457. if [ "$?" != 0 ]; then
  3458. outputed_something=
  3459. while IFS='' read -r line1 && IFS='' read -r line2; do
  3460. [ "$outputed_something" ] || err "Invalid YAML in '$COMPOSE_YML_FILE':"
  3461. outputed_something=true
  3462. echo "$line1 $GRAY($line2)$NORMAL"
  3463. done < <(echo "$output" | grep ^yaml.scanner -A 100 |
  3464. sed -r 's/^ in "<stdin>", //g' | sed -r 's/^yaml.scanner.[a-zA-Z]+: //g') |
  3465. prefix " $GRAY|$NORMAL "
  3466. [ "$outputed_something" ] || {
  3467. err "Unexpected error while running 'shyaml get-value' on '$COMPOSE_YML_FILE':"
  3468. echo "$output" | prefix " $GRAY|$NORMAL "
  3469. }
  3470. return 1
  3471. fi
  3472. echo "$COMPOSE_YML_CONTENT" | tee "$cache_file" || return 1
  3473. }
  3474. export -f get_compose_yml_content
  3475. get_default_target_services() {
  3476. local services=("$@")
  3477. if [ -z "${services[*]}" ]; then
  3478. if [ "$DEFAULT_SERVICES" ]; then
  3479. debug "No service provided, using $WHITE\$DEFAULT_SERVICES$NORMAL variable." \
  3480. "Target services: $DARKYELLOW$DEFAULT_SERVICES$NORMAL"
  3481. services="$DEFAULT_SERVICES"
  3482. else
  3483. err "No service provided."
  3484. return 1
  3485. fi
  3486. fi
  3487. echo "${services[*]}"
  3488. }
  3489. export -f get_default_target_services
  3490. get_master_services() {
  3491. local loaded master_service service
  3492. declare -A loaded
  3493. for service in "$@"; do
  3494. master_service=$(get_top_master_service_for_service "$service") || return 1
  3495. if [ "${loaded[$master_service]}" ]; then
  3496. continue
  3497. fi
  3498. echo "$master_service"
  3499. loaded["$master_service"]=1
  3500. done | nspc
  3501. return "${PIPESTATUS[0]}"
  3502. }
  3503. export -f get_master_services
  3504. get_current_docker_container_id() {
  3505. local line
  3506. line=$(cat "/proc/self/cpuset") || return 1
  3507. [[ "$line" == *docker* ]] || return 1
  3508. echo "${line##*/}"
  3509. }
  3510. export -f get_current_docker_container_id
  3511. ## if we are in a docker compose, we might want to know what is the
  3512. ## real host path of some local paths.
  3513. get_host_path() {
  3514. local path="$1"
  3515. path=$(realpath "$path") || return 1
  3516. container_id=$(get_current_docker_container_id) || {
  3517. print "%s" "$path"
  3518. return 0
  3519. }
  3520. biggest_dst=
  3521. current_src=
  3522. while read-0 src dst; do
  3523. [[ "$path" == "$dst"* ]] || continue
  3524. if [[ "${#biggest_dst}" < "${#dst}" ]]; then
  3525. biggest_dst="$dst"
  3526. current_src="$src"
  3527. fi
  3528. done < <(get_volumes_for_container "$container_id")
  3529. if [ "$current_src" ]; then
  3530. printf "%s" "$current_src"
  3531. else
  3532. return 1
  3533. fi
  3534. }
  3535. export -f get_host_path
  3536. _setup_state_dir() {
  3537. export state_tmpdir=$(mktemp -d -t tmp.XXXXXXXXXX)
  3538. #debug "Creating temporary state directory in '$state_tmpdir'."
  3539. # trap_add EXIT "debug \"Removing temporary state directory in $state_tmpdir.\";\
  3540. # rm -rf \"$state_tmpdir\""
  3541. trap_add EXIT "rm -rf \"$state_tmpdir\""
  3542. }
  3543. get_docker_compose_help_msg() {
  3544. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3545. docker_compose_help_msg
  3546. if [ -e "$cache_file" ]; then
  3547. cat "$cache_file" &&
  3548. touch "$cache_file" || return 1
  3549. return 0
  3550. fi
  3551. docker_compose_help_msg=$(docker-compose $action --help 2>/dev/null) || return 1
  3552. echo "$docker_compose_help_msg" |
  3553. tee "$cache_file" || return 1
  3554. }
  3555. get_docker_compose_usage() {
  3556. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3557. docker_compose_help_msg
  3558. if [ -e "$cache_file" ]; then
  3559. cat "$cache_file" &&
  3560. touch "$cache_file" || return 1
  3561. return 0
  3562. fi
  3563. docker_compose_help_msg=$(get_docker_compose_help_msg $action) || return 1
  3564. echo "$docker_compose_help_msg" |
  3565. grep -m 1 "^Usage:" -A 10000 |
  3566. egrep -m 1 "^\$" -B 10000 |
  3567. nspc |
  3568. sed -r 's/^Usage: //g' |
  3569. tee "$cache_file" || return 1
  3570. }
  3571. get_docker_compose_opts_help() {
  3572. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3573. docker_compose_help_msg
  3574. if [ -e "$cache_file" ]; then
  3575. cat "$cache_file" &&
  3576. touch "$cache_file" || return 1
  3577. return 0
  3578. fi
  3579. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3580. echo "$docker_compose_opts_help" |
  3581. grep '^Options:' -A 20000 |
  3582. tail -n +2 |
  3583. { cat ; echo; } |
  3584. egrep -m 1 "^\S*\$" -B 10000 |
  3585. head -n -1 |
  3586. tee "$cache_file" || return 1
  3587. }
  3588. get_docker_compose_commands_help() {
  3589. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3590. docker_compose_help_msg
  3591. if [ -e "$cache_file" ]; then
  3592. cat "$cache_file" &&
  3593. touch "$cache_file" || return 1
  3594. return 0
  3595. fi
  3596. docker_compose_opts_help=$(get_docker_compose_help_msg $action) || return 1
  3597. echo "$docker_compose_opts_help" |
  3598. grep '^Commands:' -A 20000 |
  3599. tail -n +2 |
  3600. { cat ; echo; } |
  3601. egrep -m 1 "^\S*\$" -B 10000 |
  3602. head -n -1 |
  3603. tee "$cache_file" || return 1
  3604. }
  3605. get_docker_compose_opts_list() {
  3606. local action="$1" cache_file="$CACHEDIR/$FUNCNAME.cache.$({ p0 "$1"; cat "$(which docker-compose)"; } | md5_compat)" \
  3607. docker_compose_help_msg
  3608. if [ -e "$cache_file" ]; then
  3609. cat "$cache_file" &&
  3610. touch "$cache_file" || return 1
  3611. return 0
  3612. fi
  3613. docker_compose_opts_help=$(get_docker_compose_opts_help $action) || return 1
  3614. echo "$docker_compose_opts_help" |
  3615. egrep "^\s+-" |
  3616. sed -r 's/\s+((((-[a-zA-Z]|--[a-zA-Z0-9-]+)( [A-Z=]+|=[^ ]+)?)(, )?)+)\s+.*$/\1/g' |
  3617. tee "$cache_file" || return 1
  3618. }
  3619. options_parser() {
  3620. sed -r 's/^(\s+(((-[a-zA-Z]|--[a-zA-Z0-9-]+)([ =]([a-zA-Z_=\"\[]|\])+)?(, | )?)+)\s+)[^ ].*$/\x0\2\x0\0/g'
  3621. printf "\0"
  3622. }
  3623. remove_options_in_option_help_msg() {
  3624. {
  3625. read-0 null
  3626. if [ "$null" ]; then
  3627. err "options parsing error, should start with an option line."
  3628. return 1
  3629. fi
  3630. while read-0 opt full_txt;do
  3631. multi_opts="$(printf "%s " $opt | multi_opts_filter)"
  3632. single_opts="$(printf "%s " $opt | single_opts_filter)"
  3633. for to_remove in "$@"; do
  3634. str_matches "$to_remove" $multi_opts $single_opts && {
  3635. continue 2
  3636. }
  3637. done
  3638. echo -n "$full_txt"
  3639. done
  3640. } < <(options_parser)
  3641. }
  3642. _MULTIOPTION_REGEX='^((-[a-zA-Z]|--[a-zA-Z0-9-]+)(, )?)+'
  3643. _MULTIOPTION_REGEX_LINE_FILTER=$_MULTIOPTION_REGEX'(\s|=)'
  3644. multi_opts_filter() {
  3645. egrep "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3646. sed -r "s/^($_MULTIOPTION_REGEX)(\s|=).*$/\1/g" |
  3647. tr ',' "\n" | nspc
  3648. }
  3649. single_opts_filter() {
  3650. egrep -v "$_MULTIOPTION_REGEX_LINE_FILTER" |
  3651. tr ',' "\n" | nspc
  3652. }
  3653. get_docker_compose_multi_opts_list() {
  3654. local action="$1" opts_list
  3655. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3656. echo "$opts_list" | multi_opts_filter
  3657. }
  3658. get_docker_compose_single_opts_list() {
  3659. local action="$1" opts_list
  3660. opts_list=$(get_docker_compose_opts_list "$action") || return 1
  3661. echo "$opts_list" | single_opts_filter
  3662. }
  3663. display_commands_help() {
  3664. local charm_actions
  3665. echo
  3666. echo "${WHITE}Commands${NORMAL} (thanks to docker-compose):"
  3667. get_docker_compose_commands_help | sed -r "s/ ([a-z]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2/g"
  3668. charm_actions_help=$(get_docker_charm_action_help) || return 1
  3669. if [ "$charm_actions_help" ]; then
  3670. echo
  3671. echo "${WHITE}Charm actions${NORMAL}:"
  3672. printf "%s\n" "$charm_actions_help" | \
  3673. sed -r "s/^ ([a-z0-9-]+)(\s+)([a-z0-9-]+)(\s+)/ ${DARKCYAN}\1${NORMAL}\2${DARKYELLOW}\3${NORMAL}\4/g"
  3674. fi
  3675. }
  3676. get_docker_charm_action() {
  3677. local services service charm relation_name target_service relation_config \
  3678. target_charm
  3679. services=($(get_compose_yml_content | yq -r 'keys().[]' 2>/dev/null)) || return 1
  3680. NO_CONSTRAINT_CHECK=1 get_all_relations "${services[@]}" >/dev/null || return 1
  3681. services=($(get_all_services)) || return 1
  3682. for service in "${services[@]}"; do
  3683. printf "%s:\n" "$service"
  3684. charm=$(get_service_charm "$service") || return 1
  3685. for action in $(charm.ls_direct_actions "$charm"); do
  3686. printf " %s:\n" "$action"
  3687. printf " type: %s\n" "direct"
  3688. done
  3689. while read-0 relation_name target_service _relation_config _tech_dep; do
  3690. target_charm=$(get_service_charm "$target_service") || return 1
  3691. for action in $(charm.ls_relation_actions "$target_charm" "$relation_name"); do
  3692. printf " %s:\n" "$action"
  3693. printf " type: %s\n" "indirect"
  3694. printf " inherited: %s\n" "$target_charm"
  3695. done
  3696. done < <(get_service_relations "$service")
  3697. done
  3698. }
  3699. export -f get_docker_charm_action
  3700. get_docker_charm_action_help() {
  3701. local services service charm relation_name target_service relation_config \
  3702. target_charm
  3703. services=($(get_compose_yml_content | shyaml keys 2>/dev/null))
  3704. NO_CONSTRAINT_CHECK=1 get_all_relations "${services[@]}" >/dev/null || return 1
  3705. for service in "${services[@]}"; do
  3706. out=$(
  3707. charm=$(get_service_charm "$service") || return 1
  3708. for action in $(charm.ls_direct_actions "$charm"); do
  3709. printf " %-28s %s\n" "$action $service" "Direct action from ${DARKPINK}$charm${NORMAL}"
  3710. done
  3711. while read-0 relation_name target_service _relation_config _tech_dep; do
  3712. target_charm=$(get_service_charm "$target_service") || return 1
  3713. for action in $(charm.ls_relation_actions "$target_charm" "$relation_name"); do
  3714. printf " %-28s %s\n" "$action $service" "Indirect action from ${DARKPINK}$target_charm${NORMAL}"
  3715. done
  3716. done < <(get_service_relations "$service")
  3717. )
  3718. if [ "$out" ]; then
  3719. echo " for ${DARKYELLOW}$service${NORMAL}:"
  3720. printf "%s\n" "$out"
  3721. fi
  3722. done
  3723. }
  3724. display_help() {
  3725. print_help
  3726. echo "${WHITE}Usage${NORMAL}:"
  3727. echo " $usage"
  3728. echo " $usage cache {clean|clear}"
  3729. echo "${WHITE}Options${NORMAL}:"
  3730. echo " -h, --help Print this message and quit"
  3731. echo " (ignoring any other options)"
  3732. echo " -V, --version Print current version and quit"
  3733. echo " (ignoring any other options)"
  3734. echo " --dirs Display data dirs and quit"
  3735. echo " (ignoring any other options)"
  3736. echo " --get-project-name Display project name and quit"
  3737. echo " (ignoring any other options)"
  3738. echo " --get-available-actions Display all available actions and quit"
  3739. echo " (ignoring any other options)"
  3740. echo " -v, --verbose Be more verbose"
  3741. echo " -q, --quiet Be quiet"
  3742. echo " -d, --debug Print full debugging information (sets also verbose)"
  3743. echo " --dry-compose-run If docker-compose will be run, only print out what"
  3744. echo " command line will be used."
  3745. echo " --no-relations Do not run any relation script"
  3746. echo " --no-hooks Do not run any hook script"
  3747. echo " --no-init Do not run any init script"
  3748. echo " --no-post-deploy Do not run any post-deploy script"
  3749. echo " --no-pre-deploy Do not run any pre-deploy script"
  3750. echo " --without-relation RELATION "
  3751. echo " Do not run given relation"
  3752. echo " -R, --rebuild-relations-to-service SERVICE"
  3753. echo " Will rebuild all relations to given service"
  3754. echo " --add-compose-content, -Y YAML"
  3755. echo " Will merge some direct YAML with the current compose"
  3756. echo " -c, --color Force color mode (default is to detect if in tty mode)"
  3757. echo " --push-builds Will push cached docker images to docker cache registry"
  3758. get_docker_compose_opts_help | remove_options_in_option_help_msg --version --help --verbose |
  3759. filter_docker_compose_help_message
  3760. display_commands_help
  3761. }
  3762. _graph_service() {
  3763. local service="$1" base="$1"
  3764. charm=$(get_service_charm "$service") || return 1
  3765. metadata=$(charm.metadata "$charm") || return 1
  3766. subordinate=$(echo "$metadata" | shyaml get-value "subordinate" 2>/dev/null)
  3767. if [[ "$subordinate" =~ ^True|true$ ]]; then
  3768. requires="$(echo "$metadata" | shyaml get-value "requires" 2>/dev/null)"
  3769. master_charm=
  3770. while read-0 relation_name relation; do
  3771. [ "$(echo "$relation" | shyaml get-value "scope" 2>/dev/null)" == "container" ] || continue
  3772. interface="$(echo "$relation" | shyaml get-value "interface" 2>/dev/null)"
  3773. if [ -z "$interface" ]; then
  3774. err "No ${WHITE}$interface${NORMAL} set for relation $relation_name."
  3775. return 1
  3776. fi
  3777. ## Action provided by relation ?
  3778. target_service=
  3779. while read-0 relation_name candidate_target_service _relation_config _tech_dep; do
  3780. [ "$interface" == "$relation_name" ] && {
  3781. target_service="$candidate_target_service"
  3782. break
  3783. }
  3784. done < <(get_service_relations "$service")
  3785. if [ -z "$target_service" ]; then
  3786. err "Couldn't find ${WHITE}relations.$interface${NORMAL} in" \
  3787. "${DARKYELLOW}$service$NORMAL compose definition."
  3788. return 1
  3789. fi
  3790. master_service="$target_service"
  3791. master_charm=$(get_service_charm "$target_service") || return 1
  3792. break
  3793. done < <(echo "$requires" | shyaml key-values-0 2>/dev/null)
  3794. fi
  3795. _graph_node_service "$service" "$base" "$charm"
  3796. _graph_edge_service "$service" "$subordinate" "$master_service"
  3797. }
  3798. _graph_node_service() {
  3799. local service="$1" base="$2" charm="$3"
  3800. cat <<EOF
  3801. "$(_graph_node_service_label ${service})" [
  3802. style = "filled, $([[ "$subordinate" =~ ^True|true$ ]] && echo "dashed" || echo "bold")"
  3803. penwidth = $([[ "$subordinate" =~ ^True|true$ ]] && echo "3" || echo "5")
  3804. color = $([ "$base" ] && echo "blue" || echo "black")
  3805. fillcolor = "white"
  3806. fontname = "Courier New"
  3807. shape = "Mrecord"
  3808. label =<$(_graph_node_service_content "$service")>
  3809. ];
  3810. EOF
  3811. }
  3812. _graph_edge_service() {
  3813. local service="$1" subordinate="$2" master_service="$3"
  3814. while read-0 relation_name target_service relation_config tech_dep; do
  3815. cat <<EOF
  3816. "$(_graph_node_service_label ${service})" -> "$(_graph_node_service_label ${target_service})" [
  3817. penwidth = $([ "$master_service" == "$target_service" ] && echo 3 || echo 2)
  3818. fontsize = 16
  3819. fontcolor = "black"
  3820. style = $([ "$master_service" == "$target_service" ] && echo dashed || echo "\"\"")
  3821. weight = $([ "$master_service" == "$target_service" ] && echo 2.0 || echo 1.0)
  3822. dir = $([ "$master_service" == "$target_service" ] && echo none || echo both)
  3823. arrowtail = odot
  3824. # arrowhead = dotlicurve
  3825. taillabel = "$relation_name" ];
  3826. EOF
  3827. done < <(get_service_relations "$service") || return 1
  3828. }
  3829. _graph_node_service_label() {
  3830. local service="$1"
  3831. echo "service_$service"
  3832. }
  3833. _graph_node_service_content() {
  3834. local service="$1"
  3835. charm=$(get_service_charm "$service") || return 1
  3836. cat <<EOF
  3837. <table border="0" cellborder="0" cellpadding="3" bgcolor="white">
  3838. <tr>
  3839. <td bgcolor="black" align="center" colspan="2">
  3840. <font color="white">$service</font>
  3841. </td>
  3842. </tr>
  3843. $(if [ "$charm" != "$service" ]; then
  3844. cat <<EOF2
  3845. <tr>
  3846. <td align="left" port="r0">charm: $charm</td>
  3847. </tr>
  3848. EOF2
  3849. fi)
  3850. </table>
  3851. EOF
  3852. }
  3853. cla_contains () {
  3854. local e
  3855. for e in "${@:2}"; do [[ "$e" == "$1" ]] && return 0; done
  3856. return 1
  3857. }
  3858. filter_docker_compose_help_message() {
  3859. cat - |
  3860. sed -r "s/docker-compose run/${DARKWHITE}compose${NORMAL} ${DARKCYAN}$action${NORMAL}/g;
  3861. s/docker-compose.yml/compose.yml/g;
  3862. s/SERVICES?/${DARKYELLOW}\0${NORMAL}/g;
  3863. s/^(\s+)\\$/\1${WHITE}\$${NORMAL}/g;
  3864. s/^(\s+)run/\1${DARKCYAN}$action${NORMAL}/g;
  3865. s/docker-compose/${DARKWHITE}compose${NORMAL}/g"
  3866. }
  3867. graph() {
  3868. local services=("$@")
  3869. declare -A entries
  3870. cat <<EOF
  3871. digraph g {
  3872. graph [
  3873. fontsize=30
  3874. labelloc="t"
  3875. label=""
  3876. splines=true
  3877. overlap=false
  3878. #rankdir = "LR"
  3879. ];
  3880. ratio = auto;
  3881. EOF
  3882. for target_service in "$@"; do
  3883. services=$(get_ordered_service_dependencies "$target_service") || return 1
  3884. for service in $services; do
  3885. [ "${entries[$service]}" ] && continue || entries[$service]=1
  3886. if cla_contains "$service" "${services[@]}"; then
  3887. base=true
  3888. else
  3889. base=
  3890. fi
  3891. _graph_service "$service" "$base"
  3892. done
  3893. done
  3894. echo "}"
  3895. }
  3896. cached_wget() {
  3897. local cache_file="$CACHEDIR/$FUNCNAME.cache.$(p0 "$@" | md5_compat)" \
  3898. url="$1"
  3899. if [ -e "$cache_file" ]; then
  3900. cat "$cache_file"
  3901. touch "$cache_file"
  3902. return 0
  3903. fi
  3904. wget -O- "${url}" |
  3905. tee "$cache_file"
  3906. if [ "${PIPESTATUS[0]}" != 0 ]; then
  3907. rm "$cache_file"
  3908. die "Unable to fetch '$url'."
  3909. return 1
  3910. fi
  3911. }
  3912. export -f cached_wget
  3913. [ "$SOURCED" ] && return 0
  3914. trap_add "EXIT" clean_cache
  3915. export COMPOSE_DOCKER_REGISTRY="${COMPOSE_DOCKER_REGISTRY:-docker.0k.io}"
  3916. if [ -z "$DISABLE_SYSTEM_CONFIG_FILE" ]; then
  3917. if [ -r /etc/default/charm ]; then
  3918. . "/etc/default/charm"
  3919. fi
  3920. if [ -r "/etc/default/$exname" ]; then
  3921. . "/etc/default/$exname"
  3922. fi
  3923. ## XXXvlab: should provide YML config opportunities in possible parent dirs ?
  3924. ## userdir ? and global /etc/compose.yml ?
  3925. for cfgfile in /etc/compose.conf /etc/compose.local.conf \
  3926. /etc/default/compose /etc/compose/local.conf; do
  3927. [ -e "$cfgfile" ] || continue
  3928. . "$cfgfile" || die "Loading config file '$cfgfile' failed."
  3929. done
  3930. fi
  3931. _setup_state_dir
  3932. mkdir -p "$CACHEDIR" || exit 1
  3933. log () { cat; }
  3934. export -f log
  3935. ##
  3936. ## Argument parsing
  3937. ##
  3938. wrap_opts=()
  3939. services=()
  3940. remainder_args=()
  3941. compose_opts=()
  3942. compose_contents=()
  3943. action_opts=()
  3944. services_args=()
  3945. pos_arg_ct=0
  3946. no_hooks=
  3947. no_init=
  3948. action=
  3949. stage="main" ## switches from 'main', to 'action', 'remainder'
  3950. is_docker_compose_action=
  3951. rebuild_relations_to_service=()
  3952. color=
  3953. declare -A without_relations
  3954. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list) &&
  3955. DC_MATCH_SINGLE=$(get_docker_compose_single_opts_list) || exit 1
  3956. while read-0 arg; do
  3957. case "$stage" in
  3958. "main")
  3959. case "$arg" in
  3960. --help|-h)
  3961. no_init=true ; no_hooks=true ; no_relations=true
  3962. display_help
  3963. exit 0
  3964. ;;
  3965. --verbose|-v)
  3966. export VERBOSE=true
  3967. compose_opts+=("--verbose")
  3968. ;;
  3969. --quiet|-q)
  3970. export QUIET=true
  3971. export wrap_opts+=("-q")
  3972. log () { cat >&2; }
  3973. export -f log
  3974. ;;
  3975. --version|-V)
  3976. print_version
  3977. docker-compose --version
  3978. docker --version
  3979. exit 0
  3980. ;;
  3981. -f|--file)
  3982. read-0 value
  3983. [ -e "$value" ] || die "File $value doesn't exists"
  3984. export COMPOSE_YML_FILE="$value"
  3985. shift
  3986. ;;
  3987. -p|--project-name)
  3988. read-0 value
  3989. export DEFAULT_PROJECT_NAME="$value"
  3990. compose_opts+=("--project-name $value")
  3991. shift
  3992. ;;
  3993. --color|-c)
  3994. if [ "$color" == "0" ]; then
  3995. err "Conflicting option --color with previous --no-ansi."
  3996. exit 1
  3997. fi
  3998. color=1
  3999. ansi_color yes
  4000. ;;
  4001. --no-ansi)
  4002. if [ "$color" == "1" ]; then
  4003. err "Conflicting option --no-ansi with previous --color."
  4004. exit 1
  4005. fi
  4006. color=0
  4007. ansi_color no
  4008. compose_opts+=("--no-ansi")
  4009. ;;
  4010. --no-relations)
  4011. export no_relations=true
  4012. ;;
  4013. --without-relation)
  4014. read-0 value
  4015. without_relations["$value"]=1
  4016. shift
  4017. ;;
  4018. --no-hooks)
  4019. export no_hooks=true
  4020. ;;
  4021. --no-init)
  4022. export no_init=true
  4023. ;;
  4024. --no-post-deploy)
  4025. export no_post_deploy=true
  4026. ;;
  4027. --no-pre-deploy)
  4028. export no_pre_deploy=true
  4029. ;;
  4030. --rebuild-relations-to-service|-R)
  4031. read-0 value
  4032. rebuild_relations_to_service+=("$value")
  4033. shift
  4034. ;;
  4035. --push-builds)
  4036. export COMPOSE_PUSH_TO_REGISTRY=1
  4037. ;;
  4038. --debug|-d)
  4039. export DEBUG=true
  4040. export VERBOSE=true
  4041. #compose_opts+=("--verbose" "--log-level" "DEBUG")
  4042. ;;
  4043. --add-compose-content|-Y)
  4044. read-0 value
  4045. compose_contents+=("$value")
  4046. shift
  4047. ;;
  4048. --dirs)
  4049. echo "CACHEDIR: $CACHEDIR"
  4050. echo "VARDIR: $VARDIR"
  4051. exit 0
  4052. ;;
  4053. --get-project-name)
  4054. project=$(get_default_project_name) || exit 1
  4055. echo "$project"
  4056. exit 0
  4057. ;;
  4058. --get-available-actions)
  4059. get_docker_charm_action
  4060. exit $?
  4061. ;;
  4062. --dry-compose-run)
  4063. export DRY_COMPOSE_RUN=true
  4064. ;;
  4065. --*|-*)
  4066. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  4067. read-0 value
  4068. compose_opts+=("$arg" "$value")
  4069. shift;
  4070. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  4071. compose_opts+=("$arg")
  4072. else
  4073. err "Unknown option '$arg'. Please check help:"
  4074. display_help >&2
  4075. exit 1
  4076. fi
  4077. ;;
  4078. *)
  4079. action="$arg"
  4080. stage="action"
  4081. if DC_USAGE=$(get_docker_compose_usage "$action"); then
  4082. is_docker_compose_action=true
  4083. DC_MATCH_MULTI=$(get_docker_compose_multi_opts_list "$action") &&
  4084. DC_MATCH_SINGLE="$(get_docker_compose_single_opts_list "$action")"
  4085. if [ "$DC_MATCH_MULTI" ]; then
  4086. DC_MATCH_SINGLE="$DC_MATCH_SINGLE $(echo "$DC_MATCH_MULTI" | sed -r 's/( |$)/=\* /g')"
  4087. fi
  4088. pos_args=($(echo "$DC_USAGE" | sed -r 's/\[-[^]]+\] ?//g;s/\[options\] ?//g'))
  4089. pos_args=("${pos_args[@]:1}")
  4090. # echo "USAGE: $DC_USAGE"
  4091. # echo "pos_args: ${pos_args[@]}"
  4092. # echo "MULTI: $DC_MATCH_MULTI"
  4093. # echo "SINGLE: $DC_MATCH_SINGLE"
  4094. # exit 1
  4095. else
  4096. stage="remainder"
  4097. fi
  4098. ;;
  4099. esac
  4100. ;;
  4101. "action") ## Only for docker-compose actions
  4102. case "$arg" in
  4103. --help|-h)
  4104. no_init=true ; no_hooks=true ; no_relations=true
  4105. action_opts+=("$arg")
  4106. ;;
  4107. --*|-*)
  4108. if [ "$is_docker_compose_action" ]; then
  4109. if str_pattern_matches "$arg" $DC_MATCH_MULTI; then
  4110. read-0 value
  4111. action_opts+=("$arg" "$value")
  4112. shift
  4113. elif str_pattern_matches "$arg" $DC_MATCH_SINGLE; then
  4114. action_opts+=("$arg")
  4115. else
  4116. err "Unknown option '$arg'. Please check '${DARKCYAN}$action${NORMAL}' help:"
  4117. docker-compose "$action" --help |
  4118. filter_docker_compose_help_message >&2
  4119. exit 1
  4120. fi
  4121. fi
  4122. ;;
  4123. *)
  4124. # echo "LOOP $1 : pos_arg: $pos_arg_ct // ${pos_args[$pos_arg_ct]}"
  4125. if [[ "${pos_args[$pos_arg_ct]}" == "[SERVICE...]" ]]; then
  4126. services_args+=("$arg")
  4127. elif [[ "${pos_args[$pos_arg_ct]}" == "SERVICE" ]]; then
  4128. services_args=("$arg") || exit 1
  4129. stage="remainder"
  4130. else
  4131. action_posargs+=("$arg")
  4132. ((pos_arg_ct++))
  4133. fi
  4134. ;;
  4135. esac
  4136. ;;
  4137. "remainder")
  4138. remainder_args+=("$arg")
  4139. while read-0 arg; do
  4140. remainder_args+=("$arg")
  4141. done
  4142. break 3
  4143. ;;
  4144. esac
  4145. shift
  4146. done < <(cla.normalize "$@")
  4147. [ -n "$CACHEDIR" ] || die "No cache directory defined."
  4148. [ -d "$CACHEDIR" ] || die "Cache directory '$CACHEDIR' doesn't exists."
  4149. case "$action" in
  4150. cache)
  4151. case "${remainder_args[0]}" in
  4152. clean)
  4153. clean_cache
  4154. exit 0
  4155. ;;
  4156. clear)
  4157. Wrap "${wrap_opts[@]}" -v -d "clear cache directory" -- rm -rf "$CACHEDIR/"*
  4158. ## clear all docker caches
  4159. ## image name are like '[$COMPOSE_DOCKER_REGISTRY]cache/charm/CHARM_NAME:HASH'
  4160. Wrap "${wrap_opts[@]}" -v -d "clear docker cache" <<EOF
  4161. docker images --format "{{.Repository}}:{{.Tag}}" |
  4162. egrep "^($COMPOSE_DOCKER_REGISTRY/)?cache/charm/[a-zA-Z0-9._-]+:[0-9a-f]{32,32}$" |
  4163. while read -r image; do
  4164. docker rmi "\$image" || true
  4165. done
  4166. EOF
  4167. exit 0
  4168. ;;
  4169. *)
  4170. err "Unknown cache command: ${DARKCYAN}${remainder_args[0]}${NORMAL}"
  4171. exit 1
  4172. ;;
  4173. esac
  4174. ;;
  4175. esac
  4176. export compose_contents
  4177. [ "${services_args[*]}" ] && debug " ${DARKWHITE}Services:$NORMAL ${DARKYELLOW}${services_args[*]}$NORMAL"
  4178. [ "${compose_opts[*]}" ] && debug " ${DARKWHITE}Main docker-compose opts:$NORMAL ${compose_opts[*]}"
  4179. [ "${action_posargs[*]}" ] && debug " ${DARKWHITE}Main docker-compose pos args:$NORMAL ${action_posargs[*]}"
  4180. [ "${action_opts[*]}" ] && debug " ${DARKWHITE}Action $DARKCYAN$action$NORMAL with opts:$NORMAL ${action_opts[*]}"
  4181. [ "${remainder_args[*]}" ] && debug " ${DARKWHITE}Remainder args:$NORMAL ${remainder_args[*]}"
  4182. aexport remainder_args
  4183. ##
  4184. ## Actual code
  4185. ##
  4186. COMPOSE_YML_FILE=$(get_compose_yml_location) || exit 1
  4187. COMPOSE_YML_CONTENT=$(get_compose_yml_content) || exit 1
  4188. export COMPOSE_YML_FILE COMPOSE_YML_CONTENT
  4189. charm.sanity_checks || die "Sanity checks about charm-store failed. Please correct."
  4190. ##
  4191. ## Get services in command line.
  4192. ##
  4193. if [ -z "$is_docker_compose_action" -a "$action" ]; then
  4194. action_service=${remainder_args[0]}
  4195. if [ -z "$action_service" ]; then
  4196. err "No such command or action: ${DARKCYAN}$action${NORMAL}"
  4197. display_commands_help
  4198. exit 1
  4199. fi
  4200. ## Required by has_service_action
  4201. array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  4202. NO_CONSTRAINT_CHECK=1 get_all_relations "${services_args[@]}" >/dev/null || exit 1
  4203. remainder_args=("${remainder_args[@]:1}")
  4204. if has_service_action "$action_service" "$action" >/dev/null; then
  4205. is_service_action=true
  4206. services_args=("$action_service")
  4207. {
  4208. read-0 action_type
  4209. case "$action_type" in
  4210. "relation")
  4211. read-0 _ target_service _target_charm relation_name _ action_script_path
  4212. debug "Found action $DARKYELLOW${action_service}$NORMAL/$DARKBLUE$relation_name$NORMAL/$DARKCYAN$action$NORMAL (in $DARKYELLOW$target_service$NORMAL)"
  4213. services_args+=("$target_service")
  4214. ;;
  4215. "direct")
  4216. read-0 _ action_script_path
  4217. debug "Found action $DARKYELLOW${action_service}$NORMAL.$DARKCYAN$action$NORMAL"
  4218. ;;
  4219. esac
  4220. } < <(has_service_action "$action_service" "$action")
  4221. get_all_relations "${services_args[@]}" >/dev/null || {
  4222. echo " Hint: if this is unexpected, you can try to delete caches, and re-run the command." >&2
  4223. exit 1
  4224. }
  4225. ## Divert logging to stdout to stderr
  4226. log () { cat >&2; }
  4227. export -f log
  4228. else
  4229. die "Unknown action '${DARKCYAN}$action$NORMAL': It doesn't match any docker-compose commands nor inner charm actions."
  4230. fi
  4231. else
  4232. case "$action" in
  4233. ps|up)
  4234. if [ "${#services_args[@]}" == 0 ]; then
  4235. array_read-0 services_args < <(printf "%s" "$COMPOSE_YML_CONTENT" | shyaml keys-0 2>/dev/null)
  4236. fi
  4237. ;;
  4238. config)
  4239. services_args=("${action_posargs[@]}")
  4240. ;;
  4241. esac
  4242. fi
  4243. export COMPOSE_ACTION="$action"
  4244. NO_CONSTRAINT_CHECK=True
  4245. case "$action" in
  4246. up)
  4247. NO_CONSTRAINT_CHECK=
  4248. ;;
  4249. esac
  4250. get_all_relations "${services_args[@]}" >/dev/null || exit 1
  4251. if [ "$is_docker_compose_action" -a "${#services_args[@]}" -gt 0 ]; then
  4252. services=($(get_master_services "${services_args[@]}")) || exit 1
  4253. if [ "$action" == "up" ]; then
  4254. declare -A seen
  4255. for service in $(get_ordered_service_dependencies "${services_args[@]}"); do
  4256. mservice=$(get_master_service_for_service "$service") || exit 1
  4257. [ "${seen[$mservice]}" ] && continue
  4258. type="$(get_service_type "$mservice")" || exit 1
  4259. ## remove run-once
  4260. [ "$type" == "run-once" ] && continue
  4261. [ "$type" == "stub" ] && continue
  4262. seen[$mservice]=1
  4263. action_posargs+=("$mservice")
  4264. done
  4265. else
  4266. action_posargs+=("${services[@]}")
  4267. fi
  4268. ## Get rid of subordinates
  4269. action_posargs=($(get_master_services "${action_posargs[@]}")) || exit 1
  4270. fi
  4271. get_docker_compose "${services_args[@]}" >/dev/null || { ## precalculate variable \$_current_docker_compose
  4272. err "Fails to compile base 'docker-compose.yml'"
  4273. exit 1
  4274. }
  4275. ##
  4276. ## Pre-action
  4277. ##
  4278. full_init=
  4279. case "$action" in
  4280. build)
  4281. full_init=true ## will actually stop after build
  4282. ;;
  4283. up|run)
  4284. full_init=true
  4285. post_hook=true
  4286. ;;
  4287. ""|down|restart|logs|config|ps)
  4288. full_init=
  4289. ;;
  4290. *)
  4291. if [ "$is_service_action" ]; then
  4292. full_init=true
  4293. keywords=($(egrep "^#*\s*compose:" "$action_script_path" | cut -f 2- -d:))
  4294. for keyword in "${keywords[@]}"; do
  4295. case "$keyword" in
  4296. no-hooks)
  4297. no_hooks=true
  4298. ;;
  4299. hooks)
  4300. full_init=true
  4301. ;;
  4302. esac
  4303. done
  4304. fi
  4305. ;;
  4306. esac
  4307. if [ -n "$full_init" ]; then
  4308. if [[ "$action" == "build" ]] || [[ -z "$no_init" && -z "$no_hooks" ]]; then
  4309. [[ "$action" == "build" ]] || Section "acquire charm's images"
  4310. run_service_acquire_images "${services_args[@]}" || exit 1
  4311. Feed
  4312. [ "$action" == "build" ] && {
  4313. exit 0
  4314. }
  4315. Section setup host resources
  4316. setup_host_resources "${services_args[@]}" || exit 1
  4317. ## init in order
  4318. Section initialisation
  4319. run_service_hook init "${services_args[@]}" || exit 1
  4320. fi
  4321. ## Get relations
  4322. if [[ -z "$no_relations" && -z "$no_hooks" ]]; then
  4323. if [ "${#rebuild_relations_to_service[@]}" != 0 ]; then
  4324. rebuild_relations_to_service=$(get_master_services "${rebuild_relations_to_service[@]}") || return 1
  4325. rebuild_relations_to_service=($rebuild_relations_to_service)
  4326. project=$(get_default_project_name) || return 1
  4327. for service in "${rebuild_relations_to_service[@]}"; do
  4328. for dir in "$VARDIR/relations/$project/"*"-${service}/"*; do
  4329. [ -d "$dir" ] && {
  4330. debug rm -rf "$dir"
  4331. rm -rf "$dir"
  4332. }
  4333. done
  4334. done
  4335. fi
  4336. run_service_relations "${services_args[@]}" || exit 1
  4337. fi
  4338. if [[ -z "$no_pre_deploy" && -z "$no_hooks" ]]; then
  4339. run_service_hook pre_deploy "${services_args[@]}" || exit 1
  4340. fi
  4341. fi | log
  4342. if [ "${PIPESTATUS[0]}" != 0 ]; then
  4343. exit 1
  4344. fi
  4345. [ "$action" == "build" ] && exit 0
  4346. if [ "$action" == "run" ] && [ "${#services_args}" != 0 ]; then
  4347. charm=$(get_service_charm "${services_args[0]}") || exit 1
  4348. metadata=$(charm.metadata "$charm") || exit 1
  4349. SERVICE_TYPE="$(printf "%s" "$metadata" | shyaml get-value type 2>/dev/null)" || true
  4350. if [ "$SERVICE_TYPE" == "run-once" ]; then
  4351. run_service_hook dc-pre-run "${services_args[@]}" || exit 1
  4352. fi
  4353. fi
  4354. export SERVICE_PACK="${services_args[*]}"
  4355. ##
  4356. ## Docker-compose
  4357. ##
  4358. errlvl="0"
  4359. case "$action" in
  4360. up|start|stop|build|run)
  4361. ## force daemon mode for up
  4362. if [[ "$action" == "up" ]]; then
  4363. if ! array_member action_opts -d; then
  4364. action_opts+=("-d")
  4365. fi
  4366. if ! array_member action_opts --remove-orphans; then
  4367. action_opts+=("--remove-orphans")
  4368. fi
  4369. fi
  4370. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  4371. ;;
  4372. logs)
  4373. if ! array_member action_opts --tail; then ## force daemon mode for up
  4374. action_opts+=("--tail" "10")
  4375. fi
  4376. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  4377. ;;
  4378. "")
  4379. launch_docker_compose "${compose_opts[@]}"
  4380. ;;
  4381. graph)
  4382. graph $SERVICE_PACK
  4383. ;;
  4384. config)
  4385. ## removing the services
  4386. services=($(get_master_services "${action_posargs[@]}")) || exit 1
  4387. ## forcing docker-compose config to output the config file to stdout and not stderr
  4388. out=$(launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}" 2>&1) || {
  4389. echo "$out"
  4390. exit 1
  4391. }
  4392. echo "$out"
  4393. warn "Runtime configuration modification (from relations) are not included here."
  4394. ;;
  4395. down)
  4396. if ! array_member action_opts --remove-orphans; then ## force daemon mode for up
  4397. debug "Adding a default argument of '--remove-orphans'"
  4398. action_opts+=("--remove-orphans")
  4399. fi
  4400. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${remainder_args[@]}"
  4401. ;;
  4402. *)
  4403. if [ "$is_service_action" ]; then
  4404. run_service_action "$action_service" "$action" "${remainder_args[@]}"
  4405. errlvl="$?"
  4406. errlvl "$errlvl"
  4407. else
  4408. launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}"
  4409. fi
  4410. ;;
  4411. esac || exit 1
  4412. if [ "$post_hook" -a "${#services_args[@]}" != 0 -a -z "$no_hooks" -a -z "$no_post_deploy" ]; then
  4413. run_service_hook post_deploy "${services_args[@]}" || exit 1
  4414. fi
  4415. if [ "$action" == "run" -a "${#services_args}" != 0 ]; then
  4416. if [ "$SERVICE_TYPE" == "run-once" ]; then
  4417. run_service_hook dc-post-run "${services_args[@]}" || exit 1
  4418. fi
  4419. fi
  4420. clean_unused_docker_compose || exit 1
  4421. exit "$errlvl"