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.

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