From ca63bff562538b4a70a0e7699c9f15a8be6d34b6 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Wed, 5 Sep 2018 09:40:04 -0400 Subject: [PATCH] [#15,!11] Addressed review comments Mostly added commentary. --- src/bin/admin/tests/cql_tests.sh.in | 6 +- .../scripts/cql/upgrade_2.0_to_3.0.sh.in | 63 ++++++++++++++++--- 2 files changed, 59 insertions(+), 10 deletions(-) diff --git a/src/bin/admin/tests/cql_tests.sh.in b/src/bin/admin/tests/cql_tests.sh.in index 3b233e778b..aaa970345e 100644 --- a/src/bin/admin/tests/cql_tests.sh.in +++ b/src/bin/admin/tests/cql_tests.sh.in @@ -289,7 +289,7 @@ cql_upgrade_schema_to_version() { # Verifies that you can upgrade from an earlier version and # that unused subnet ID values in hosts and options tables are -# converted to -1 +# converted to -1 cql_unused_subnet_id_test() { test_start "cql.unused_subnet_id_test" @@ -299,7 +299,7 @@ cql_unused_subnet_id_test() { # We need to create an older database with lease data so we can # verify the upgrade mechanisms which convert subnet id values # - # Initialize database to scheme 1.0. + # Initialize database to schema 1.0. cql_execute_script @abs_top_srcdir@/src/bin/admin/tests/dhcpdb_create_1.0.cql # Now upgrade to schema 2.0, the version just before global HRs @@ -342,7 +342,7 @@ cql_unused_subnet_id_test() { host_reservations where id in(1,2,3,4,5);" cql_execute "$qry" >$export_file - assert_eq 0 $? "insert hosts failed, expected exit code: %d, actual: %d" + assert_eq 0 $? "insert hosts failed, expected exit code: %d, actual: %d" # Compare the dump output to reference file, they should be identical. cmp -s $export_file $ref_file assert_eq 0 $? "export file does not match reference file, expected exit code %d, actual %d" diff --git a/src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in b/src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in index 35805be8d9..55b3460c0e 100644 --- a/src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in +++ b/src/share/database/scripts/cql/upgrade_2.0_to_3.0.sh.in @@ -20,15 +20,17 @@ fi cqlargs=$@ +# Ensures the current schema version is 2.0. If not it exits. check_version() { version=$(cql_version $cqlargs) if [ "${version}" != "2.0" ]; then printf "This script upgrades 2.0 to 3.0. Reported version is %s. Skipping upgrade.\n" "${version}" - exit 0 + exit 0 fi } +# Peforms the schema changes from 2.0 to 3.0 update_schema() { cqlsh $cqlargs <={,=,..}" +# +# Parameters: +# val - current numerical value of the subnet ID column in question +# col - column name of the column in question +# check_column() { local val="$1";shift local col="$1" @@ -102,17 +126,42 @@ check_column() { local new_id="-1" local comma="" + # If the current value equals the value to be replaced + # add it to the accumulator if [ "$val" = "$old_id" ] then + # If the accumulator isn't empty, we need a comma if [ ! -z "$update_cols" ] then comma="," fi update_cols="$update_cols$comma $col = $new_id" - fi + fi } +# This function converts subnet ID columns in of existing host_reservations +# from 0 to 0xFFFFFFFF (SUBNET_ID_UNUSED). To do this it first creates an +# excerpt from host_reservations containing one row for each reservation +# with the following columns: +# +# id (primary key) +# host_ipv4_subnet_id +# host_ipv6_subnet_id +# option_subnet_id +# +# The excerpt is captured in a temporary file, the "export" file. +# +# Next, it iterates over the export file emitting a CQL update statement +# for each row that needs at least one of the columns updated. In other +# words, if at least one of the subnet ID columns in a row is 0, an +# update statement for that row will be emitted. The update statements +# are captured in a second temprory file, the "update" file. +# +# After exhausting the export file, the update file is submitted to +# cqlsh for execution. +# +# No parameters. migrate_host_data() { export_file="$temp_file_dir/cql_export.csv" update_file="$temp_file_dir/cql_update.cql" @@ -142,7 +191,7 @@ migrate_host_data() { let line_cnt++; update_cols="" xIFS="$IFS" - IFS=$'\r,' + IFS=$'\r,' i=1 # Parse the column values for val in $line @@ -168,7 +217,7 @@ migrate_host_data() { let i++ done - if [ $i -ne 5 ] + if [ $i -ne 5 ] then # We're going to assume that since any error is fatal exit_now -1 "Line# $line_cnt, too few values, wrong or corrupt file" @@ -187,7 +236,7 @@ migrate_host_data() { # If we didn't record any updates, then hey, we're good to go! if [ $update_cnt == 0 ] then - exit_now 0 "Completedly successfully: No updates were needed" + exit_now 0 "Completed successfully: No updates were needed" fi # We have at least one update in the update file, so submit it # to cqlsh.