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.

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