2013-05-20 14:39:57 -04:00
|
|
|
#
|
2020-01-07 16:33:05 -08:00
|
|
|
# Cookbook:: openstack-common
|
2013-05-20 14:39:57 -04:00
|
|
|
# library:: parse
|
|
|
|
#
|
2021-10-13 23:28:32 -07:00
|
|
|
# Copyright:: 2013-2021, Craig Tracey <craigtracey@gmail.com>
|
2013-05-20 14:39:57 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2015-05-28 12:11:23 -05:00
|
|
|
# Parse methods
|
|
|
|
module ::Openstack
|
2013-05-20 14:39:57 -04:00
|
|
|
# The current state of (at least some) OpenStack CLI tools do not provide a
|
|
|
|
# mechanism for outputting data in formats other than PrettyTable output.
|
|
|
|
# Therefore this function is intended to parse PrettyTable output into a
|
|
|
|
# usable array of hashes. Similarly, it will flatten Property/Value tables
|
|
|
|
# into a single element array.
|
|
|
|
# table - the raw PrettyTable output of the CLI command
|
|
|
|
# output - array of hashes representing the data.
|
2017-08-20 11:16:38 -04:00
|
|
|
def prettytable_to_array(table)
|
2013-05-20 14:39:57 -04:00
|
|
|
ret = []
|
2014-01-28 11:27:54 +00:00
|
|
|
return ret if table.nil?
|
2013-05-20 14:39:57 -04:00
|
|
|
indicies = []
|
2017-08-02 01:01:23 -04:00
|
|
|
table.split(/$/).map(&:strip).each do |line|
|
|
|
|
next if line.start_with?('+--') || line.empty?
|
|
|
|
cols = line.split('|').map(&:strip)
|
|
|
|
cols.shift
|
|
|
|
if indicies == []
|
|
|
|
indicies = cols
|
|
|
|
next
|
2013-05-20 14:39:57 -04:00
|
|
|
end
|
2017-08-02 01:01:23 -04:00
|
|
|
newobj = {}
|
|
|
|
cols.each { |val| newobj[indicies[newobj.length]] = val }
|
|
|
|
ret.push(newobj)
|
2014-01-28 11:27:54 +00:00
|
|
|
end
|
2013-05-20 14:39:57 -04:00
|
|
|
|
|
|
|
# this kinda sucks, but some prettytable data comes
|
|
|
|
# as Property Value pairs. If this is the case, then
|
|
|
|
# flatten it as expected.
|
|
|
|
newobj = {}
|
2020-01-07 16:33:05 -08:00
|
|
|
if indicies == %w(Property Value)
|
2014-01-28 11:27:54 +00:00
|
|
|
ret.each { |x| newobj[x['Property']] = x['Value'] }
|
2013-05-20 14:39:57 -04:00
|
|
|
[newobj]
|
|
|
|
else
|
|
|
|
ret
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|