示例#1
0
class Cli(object):
    """ Command Line Interface for ansible-docgen """
    def __init__(self):
        """ Setup Arguments and Options for CLI """
        # Parse CLI Arguments
        parser = optparse.OptionParser()
        parser.add_option("-p",
                          "--project",
                          dest="project",
                          help="Path to Ansible project",
                          metavar="PROJECT",
                          default="./")
        parser.add_option("-s",
                          "--style",
                          dest="style",
                          help="Choose the format for the documentation.\
                          Default is markup. Example: --style=[markup]",
                          metavar="STYLE",
                          default="markup")
        (self.options, self.args) = parser.parse_args()

        # Used to Parse Roles and Playbooks
        self.dirparser = None
        self.formatter = None

    def run(self):
        """ Entry Point Of Application """
        # Make sure there is a trailing /
        project = os.path.join(self.options.project, "")

        # Parse Project for Roles and Playbooks
        self.dirparser = DirParser(project)

        # Based on chosen style, use the associated formatter
        if self.options.style == "markup":
            self.formatter = FormatterMarkup(self.dirparser.get_parserdata(),
                                             project)
            self.formatter.parse_data()
            self.formatter.write_files()
        else:
            print("Error: Use of an unsupported style.\
                The supported styles are: markup")
            sys.exit(1)

        sys.exit(0)
示例#2
0
class Cli(object):
    """ Command Line Interface for ansible-docgen """

    def __init__(self):
        """ Setup Arguments and Options for CLI """
        # Parse CLI Arguments
        parser = optparse.OptionParser()
        parser.add_option("-p", "--project", dest="project",
                          help="Path to Ansible project",
                          metavar="PROJECT",
                          default="./")
        parser.add_option("-s", "--style", dest="style",
                          help="Choose the format for the documentation.\
                          Default is markup. Example: --style=[markup]",
                          metavar="STYLE",
                          default="markup")
        (self.options, self.args) = parser.parse_args()

        # Used to Parse Roles and Playbooks
        self.dirparser = None
        self.formatter = None

    def run(self):
        """ Entry Point Of Application """
        # Make sure there is a trailing /
        project = os.path.join(self.options.project, "")

        # Parse Project for Roles and Playbooks
        self.dirparser = DirParser(project)

        # Based on chosen style, use the associated formatter
        if self.options.style == "markup":
            self.formatter = FormatterMarkup(
                self.dirparser.get_parserdata(), project)
            self.formatter.parse_data()
            self.formatter.write_files()
        else:
            print("Error: Use of an unsupported style.\
                The supported styles are: markup")
            sys.exit(1)

        sys.exit(0)
示例#3
0
    def run(self):
        """ Entry Point Of Application """
        # Make sure there is a trailing /
        project = os.path.join(self.options.project, "")

        # Parse Project for Roles and Playbooks
        self.dirparser = DirParser(project)

        # Based on chosen style, use the associated formatter
        if self.options.style == "markup":
            self.formatter = FormatterMarkup(self.dirparser.get_parserdata(),
                                             project)
            self.formatter.parse_data()
            self.formatter.write_files()
        else:
            print("Error: Use of an unsupported style.\
                The supported styles are: markup")
            sys.exit(1)

        sys.exit(0)
示例#4
0
    def run(self):
        """ Entry Point Of Application """
        # Make sure there is a trailing /
        project = os.path.join(self.options.project, "")

        # Parse Project for Roles and Playbooks
        self.dirparser = DirParser(project)

        # Based on chosen style, use the associated formatter
        if self.options.style == "markup":
            self.formatter = FormatterMarkup(
                self.dirparser.get_parserdata(), project)
            self.formatter.parse_data()
            self.formatter.write_files()
        else:
            print("Error: Use of an unsupported style.\
                The supported styles are: markup")
            sys.exit(1)

        sys.exit(0)