2008-01-08 05:18:41 -05:00
|
|
|
require 'rdoc/ri'
|
|
|
|
|
|
|
|
##
|
|
|
|
# This is a kind of 'flag' module. If you want to write your own 'ri' display
|
2008-04-26 12:14:19 -04:00
|
|
|
# module (perhaps because you're writing an IDE), you write a class which
|
|
|
|
# implements the various 'display' methods in RDoc::RI::DefaultDisplay, and
|
|
|
|
# include the RDoc::RI::Display module in that class.
|
2004-01-06 00:59:31 -05:00
|
|
|
#
|
|
|
|
# To access your class from the command line, you can do
|
|
|
|
#
|
|
|
|
# ruby -r <your source file> ../ri ....
|
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
module RDoc::RI::Display
|
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
@@display_class = nil
|
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
def self.append_features(display_class)
|
2004-01-06 00:59:31 -05:00
|
|
|
@@display_class = display_class
|
|
|
|
end
|
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
def self.new(*args)
|
2004-01-06 00:59:31 -05:00
|
|
|
@@display_class.new(*args)
|
|
|
|
end
|
2008-01-08 05:18:41 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
##
|
|
|
|
# A paging display module. Uses the RDoc::RI::Formatter class to do the actual
|
2008-01-13 22:34:05 -05:00
|
|
|
# presentation.
|
2004-01-06 00:59:31 -05:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
class RDoc::RI::DefaultDisplay
|
2004-01-06 00:59:31 -05:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
include RDoc::RI::Display
|
2004-01-06 00:59:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
def initialize(formatter, width, use_stdout, output = $stdout)
|
2008-01-08 04:07:31 -05:00
|
|
|
@use_stdout = use_stdout
|
2008-04-26 12:14:19 -04:00
|
|
|
@formatter = formatter.new output, width, " "
|
2008-01-08 04:07:31 -05:00
|
|
|
end
|
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# Display information about +klass+. Fetches additional information from
|
|
|
|
# +ri_reader+ as necessary.
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
def display_class_info(klass, ri_reader)
|
2008-01-08 04:07:31 -05:00
|
|
|
page do
|
2004-01-06 00:59:31 -05:00
|
|
|
superclass = klass.superclass_string
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
if superclass
|
|
|
|
superclass = " < " + superclass
|
|
|
|
else
|
|
|
|
superclass = ""
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
@formatter.draw_line(klass.display_name + ": " +
|
|
|
|
klass.full_name + superclass)
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
display_flow(klass.comment)
|
2008-01-08 04:07:31 -05:00
|
|
|
@formatter.draw_line
|
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
unless klass.includes.empty?
|
|
|
|
@formatter.blankline
|
|
|
|
@formatter.display_heading("Includes:", 2, "")
|
|
|
|
incs = []
|
|
|
|
klass.includes.each do |inc|
|
|
|
|
inc_desc = ri_reader.find_class_by_name(inc.name)
|
|
|
|
if inc_desc
|
|
|
|
str = inc.name + "("
|
|
|
|
str << inc_desc.instance_methods.map{|m| m.name}.join(", ")
|
|
|
|
str << ")"
|
|
|
|
incs << str
|
|
|
|
else
|
|
|
|
incs << inc.name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
@formatter.wrap(incs.sort.join(', '))
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
unless klass.constants.empty?
|
|
|
|
@formatter.blankline
|
|
|
|
@formatter.display_heading("Constants:", 2, "")
|
2008-04-26 12:14:19 -04:00
|
|
|
|
|
|
|
constants = klass.constants.sort_by { |constant| constant.name }
|
|
|
|
|
|
|
|
constants.each do |constant|
|
|
|
|
if constant.comment then
|
|
|
|
@formatter.wrap "#{constant.name}:"
|
|
|
|
|
|
|
|
@formatter.indent do
|
|
|
|
@formatter.display_flow constant.comment
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@formatter.wrap constant.name
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
end
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
class_data = [
|
|
|
|
:class_methods,
|
|
|
|
:class_method_extensions,
|
|
|
|
:instance_methods,
|
|
|
|
:instance_method_extensions,
|
|
|
|
]
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
class_data.each do |data_type|
|
|
|
|
data = klass.send data_type
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
unless data.empty? then
|
|
|
|
@formatter.blankline
|
|
|
|
|
|
|
|
heading = data_type.to_s.split('_').join(' ').capitalize << ':'
|
|
|
|
@formatter.display_heading heading, 2, ''
|
|
|
|
|
|
|
|
data = data.map { |item| item.name }.sort.join ', '
|
|
|
|
@formatter.wrap data
|
|
|
|
end
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
unless klass.attributes.empty? then
|
2008-01-08 04:07:31 -05:00
|
|
|
@formatter.blankline
|
2008-04-26 12:14:19 -04:00
|
|
|
|
|
|
|
@formatter.display_heading 'Attributes:', 2, ''
|
|
|
|
|
|
|
|
attributes = klass.attributes.sort_by { |attribute| attribute.name }
|
|
|
|
|
|
|
|
attributes.each do |attribute|
|
|
|
|
if attribute.comment then
|
|
|
|
@formatter.wrap "#{attribute.name} (#{attribute.rw}):"
|
|
|
|
@formatter.indent do
|
|
|
|
@formatter.display_flow attribute.comment
|
|
|
|
end
|
|
|
|
else
|
|
|
|
@formatter.wrap "#{attribute.name} (#{attribute.rw})"
|
|
|
|
end
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
end
|
2008-04-26 12:14:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Display an Array of RDoc::Markup::Flow objects, +flow+.
|
|
|
|
|
|
|
|
def display_flow(flow)
|
|
|
|
if flow and not flow.empty? then
|
|
|
|
@formatter.display_flow flow
|
|
|
|
else
|
|
|
|
@formatter.wrap '[no description]'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
##
|
|
|
|
# Display information about +method+.
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
def display_method_info(method)
|
|
|
|
page do
|
|
|
|
@formatter.draw_line(method.full_name)
|
|
|
|
display_params(method)
|
|
|
|
|
|
|
|
@formatter.draw_line
|
|
|
|
display_flow(method.comment)
|
|
|
|
|
|
|
|
if method.aliases and not method.aliases.empty? then
|
2004-01-06 00:59:31 -05:00
|
|
|
@formatter.blankline
|
2008-04-26 12:14:19 -04:00
|
|
|
aka = "(also known as #{method.aliases.map { |a| a.name }.join(', ')})"
|
|
|
|
@formatter.wrap aka
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
##
|
2008-04-26 12:14:19 -04:00
|
|
|
# Display the list of +methods+.
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
def display_method_list(methods)
|
|
|
|
page do
|
2008-04-26 12:14:19 -04:00
|
|
|
@formatter.wrap "More than one method matched your request. You can refine your search by asking for information on one of:"
|
|
|
|
|
|
|
|
@formatter.blankline
|
|
|
|
|
|
|
|
@formatter.wrap methods.map { |m| m.full_name }.join(", ")
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# Display the params for +method+.
|
|
|
|
|
|
|
|
def display_params(method)
|
|
|
|
params = method.params
|
|
|
|
|
|
|
|
if params[0,1] == "(" then
|
|
|
|
if method.is_singleton
|
|
|
|
params = method.full_name + params
|
|
|
|
else
|
|
|
|
params = method.name + params
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
params.split(/\n/).each do |param|
|
|
|
|
@formatter.wrap param
|
|
|
|
@formatter.break_to_newline
|
|
|
|
end
|
|
|
|
|
|
|
|
if method.source_path then
|
|
|
|
@formatter.blankline
|
|
|
|
@formatter.wrap("Extension from #{method.source_path}")
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# List the classes in +classes+.
|
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
def list_known_classes(classes)
|
|
|
|
if classes.empty?
|
2004-03-24 14:17:42 -05:00
|
|
|
warn_no_database
|
2004-01-06 00:59:31 -05:00
|
|
|
else
|
2008-01-08 04:07:31 -05:00
|
|
|
page do
|
2008-04-26 12:14:19 -04:00
|
|
|
@formatter.draw_line "Known classes and modules"
|
2004-01-06 00:59:31 -05:00
|
|
|
@formatter.blankline
|
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
@formatter.wrap classes.sort.join(', ')
|
2004-03-24 14:17:42 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# Paginates output through a pager program.
|
2004-01-06 00:59:31 -05:00
|
|
|
|
|
|
|
def page
|
2008-01-08 04:07:31 -05:00
|
|
|
if pager = setup_pager then
|
|
|
|
begin
|
2008-01-31 01:48:35 -05:00
|
|
|
orig_output = @formatter.output
|
|
|
|
@formatter.output = pager
|
2008-01-08 04:07:31 -05:00
|
|
|
yield
|
|
|
|
ensure
|
2008-01-31 01:48:35 -05:00
|
|
|
@formatter.output = orig_output
|
2008-01-08 04:07:31 -05:00
|
|
|
pager.close
|
|
|
|
end
|
|
|
|
else
|
2004-01-06 00:59:31 -05:00
|
|
|
yield
|
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
rescue Errno::EPIPE
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# Sets up a pager program to pass output through.
|
|
|
|
|
2004-01-06 00:59:31 -05:00
|
|
|
def setup_pager
|
2008-01-08 04:07:31 -05:00
|
|
|
unless @use_stdout then
|
2004-03-02 02:30:35 -05:00
|
|
|
for pager in [ ENV['PAGER'], "less", "more", 'pager' ].compact.uniq
|
2004-03-03 11:17:32 -05:00
|
|
|
return IO.popen(pager, "w") rescue nil
|
2004-03-02 02:30:35 -05:00
|
|
|
end
|
2008-01-08 04:07:31 -05:00
|
|
|
@use_stdout = true
|
2004-03-03 04:58:25 -05:00
|
|
|
nil
|
2004-01-06 00:59:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-04-26 12:14:19 -04:00
|
|
|
##
|
|
|
|
# Displays a message that describes how to build RI data.
|
2004-01-06 00:59:31 -05:00
|
|
|
|
2004-03-24 14:17:42 -05:00
|
|
|
def warn_no_database
|
2008-04-26 12:14:19 -04:00
|
|
|
output = @formatter.output
|
|
|
|
|
|
|
|
output.puts "No ri data found"
|
|
|
|
output.puts
|
|
|
|
output.puts "If you've installed Ruby yourself, you need to generate documentation using:"
|
|
|
|
output.puts
|
|
|
|
output.puts " make install-doc"
|
|
|
|
output.puts
|
|
|
|
output.puts "from the same place you ran `make` to build ruby."
|
|
|
|
output.puts
|
|
|
|
output.puts "If you installed Ruby from a packaging system, then you may need to"
|
|
|
|
output.puts "install an additional package, or ask the packager to enable ri generation."
|
2004-03-24 14:17:42 -05:00
|
|
|
end
|
2008-04-26 12:14:19 -04:00
|
|
|
|
2008-01-08 05:18:41 -05:00
|
|
|
end
|
|
|
|
|