2016-09-12 08:55:13 -04:00
|
|
|
# Copyright (c) 2016 Comcast Cable Communications Management, LLC.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
# Generate clicmd formatted output
|
|
|
|
|
2019-11-01 15:07:32 -04:00
|
|
|
from . import process, parsers
|
2021-08-19 11:38:06 +02:00
|
|
|
import os
|
2016-09-12 08:55:13 -04:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
|
2016-09-12 08:55:13 -04:00
|
|
|
class SiphonCLICMD(process.Siphon):
|
|
|
|
name = "clicmd"
|
|
|
|
identifier = "VLIB_CLI_COMMAND"
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(SiphonCLICMD, self).__init__(*args, **kwargs)
|
|
|
|
self._parser = parsers.MacroInitializer()
|
|
|
|
|
|
|
|
# Output renderers
|
|
|
|
|
2021-08-19 11:38:06 +02:00
|
|
|
def separate_page_names(self, group):
|
|
|
|
return self.page_label(group) + ".rst"
|
|
|
|
|
2016-09-12 08:55:13 -04:00
|
|
|
def index_sort_key(self, group):
|
2022-04-26 19:02:15 +02:00
|
|
|
_global = self._cmds["_global"]
|
2016-09-12 08:55:13 -04:00
|
|
|
if group not in self._group:
|
|
|
|
return group
|
|
|
|
(directory, file) = self._group[group]
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if file in _global and "group_label" in _global[file]:
|
|
|
|
return _global[file]["group_label"]
|
2016-09-12 08:55:13 -04:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if directory in _global and "group_label" in _global[directory]:
|
|
|
|
return _global[directory]["group_label"]
|
2016-09-12 08:55:13 -04:00
|
|
|
|
|
|
|
return group
|
|
|
|
|
|
|
|
def item_sort_key(self, item):
|
2022-04-26 19:02:15 +02:00
|
|
|
return item["value"]["path"]
|
2016-09-12 08:55:13 -04:00
|
|
|
|
|
|
|
def item_label(self, group, item):
|
2022-04-26 19:02:15 +02:00
|
|
|
return "_".join(
|
|
|
|
(self.name, self.sanitize_label(self._cmds[group][item]["value"]["path"]))
|
|
|
|
)
|
2016-09-12 08:55:13 -04:00
|
|
|
|
2021-08-19 11:38:06 +02:00
|
|
|
def page_title(self, group):
|
2022-04-26 19:02:15 +02:00
|
|
|
_global = self._cmds["_global"]
|
2021-08-19 11:38:06 +02:00
|
|
|
(directory, file) = self._group[group]
|
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if file and file in _global and "group_label" in _global[file]:
|
|
|
|
return _global[file]["group_label"]
|
2021-08-19 11:38:06 +02:00
|
|
|
|
2022-04-26 19:02:15 +02:00
|
|
|
if directory in _global and "group_label" in _global[directory]:
|
|
|
|
return _global[directory]["group_label"]
|
2021-08-19 11:38:06 +02:00
|
|
|
|
|
|
|
file_ext = os.path.basename(directory)
|
|
|
|
fname, ext = os.path.splitext(file_ext)
|
|
|
|
return "%s cli reference" % fname.capitalize()
|
|
|
|
|
2016-09-12 08:55:13 -04:00
|
|
|
|
|
|
|
# Register our processor
|
|
|
|
process.siphons["clicmd"] = SiphonCLICMD
|