2 // Automated Testing Framework (atf)
4 // Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
5 // All rights reserved.
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
10 // 1. Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer.
12 // 2. Redistributions in binary form must reproduce the above copyright
13 // notice, this list of conditions and the following disclaimer in the
14 // documentation and/or other materials provided with the distribution.
16 // THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 // CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 // IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 // IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include "atf-c++/application.hpp"
35 #include "atf-c++/sanity.hpp"
36 #include "atf-c++/ui.hpp"
38 class atf_format
: public atf::application::app
{
39 static const char* m_description
;
45 void process_option(int, const char*);
46 std::string
specific_args(void) const;
47 options_set
specific_options(void) const;
55 const char* atf_format::m_description
=
56 "atf-format is a tool that formats text messages to fit inside "
57 "the terminal's size. Messages can be fed either through the "
58 "standard input or as arguments to the program. Each independent "
59 "line is treated as a different paragraph.";
61 atf_format::atf_format(void) :
62 app(m_description
, "atf-format(1)", "atf(7)"),
69 atf_format::process_option(int ch
, const char* arg
)
74 std::istringstream
ss(arg
);
76 if (m_length
< m_tag
.length())
77 throw std::runtime_error("Length must be greater than "
88 if (m_length
< m_tag
.length())
89 m_length
= m_tag
.length();
98 atf_format::specific_args(void)
101 return "[str1 [.. strN]]";
104 atf_format::options_set
105 atf_format::specific_options(void)
108 using atf::application::option
;
110 opts
.insert(option('l', "length", "Tag length"));
111 opts
.insert(option('r', "", "Repeat tag on each line"));
112 opts
.insert(option('t', "tag", "Tag to use for printing"));
117 atf_format::main(void)
122 for (int i
= 0; i
< m_argc
; i
++) {
130 while (std::getline(std::cin
, line
))
134 std::cout
<< atf::ui::format_text_with_tag(str
, m_tag
, m_repeat
, m_length
)
141 main(int argc
, char* const* argv
)
143 return atf_format().run(argc
, argv
);