# frozen_string_literal: truebeginrequire"prism"rescueLoadError# If Prism isn't available (because of using an older Ruby version) then we'll# define a fallback for the ParserExtractor using ripper.require"ripper"endmoduleRails# Implements the logic behind +Rails::Command::NotesCommand+. See <tt>rails notes --help</tt> for usage information.## Annotation objects are triplets <tt>:line</tt>, <tt>:tag</tt>, <tt>:text</tt> that# represent the line where the annotation lives, its tag, and its text. Note# the filename is not stored.## Annotations are looked for in comments and modulus whitespace they have to# start with the tag optionally followed by a colon. Everything up to the end# of the line (or closing ERB comment tag) is considered to be their text.classSourceAnnotationExtractor# Wraps a regular expression that will be tested against each of the source# file's comments.classParserExtractor<Struct.new(:pattern)ifdefined?(Prism)defannotations(file)result=Prism.parse_file(file)return[]unlessresult.success?result.comments.filter_mapdo|comment|Annotation.new(comment.location.start_line,$1,$2)ifcomment.location.slice=~patternendendelseclassParser<Ripperattr_reader:comments,:patterndefinitialize(source,pattern:)super(source)@pattern=pattern@comments=[]enddefon_comment(value)@comments<<Annotation.new(lineno,$1,$2)ifvalue=~patternendenddefannotations(file)contents=File.read(file,encoding: Encoding::BINARY)parser=Parser.new(contents,pattern: pattern).tap(&:parse)parser.error??[]:parser.commentsendendend# Wraps a regular expression that will iterate through a file's lines and# test each one for the given pattern.classPatternExtractor<Struct.new(:pattern)defannotations(file)lineno=0File.readlines(file,encoding: Encoding::BINARY).inject([])do|list,line|lineno+=1nextlistunlessline=~patternlist<<Annotation.new(lineno,$1,$2)endendendclassAnnotation<Struct.new(:line,:tag,:text)defself.directories@@directories||=%w(app config db lib test)end# Registers additional directories to be included# Rails::SourceAnnotationExtractor::Annotation.register_directories("spec", "another")defself.register_directories(*dirs)directories.push(*dirs)enddefself.tags@@tags||=%w(OPTIMIZE FIXME TODO)end# Registers additional tags# Rails::SourceAnnotationExtractor::Annotation.register_tags("TESTME", "DEPRECATEME")defself.register_tags(*additional_tags)tags.push(*additional_tags)enddefself.extensions@@extensions||={}end# Registers new Annotations File Extensions# Rails::SourceAnnotationExtractor::Annotation.register_extensions("css", "scss", "sass", "less", "js") { |tag| /\/\/\s*(#{tag}):?\s*(.*)$/ }defself.register_extensions(*exts,&block)extensions[/\.(#{exts.join("|")})$/]=blockendregister_extensions("builder","rb","rake","ruby")do|tag|ParserExtractor.new(/#\s*(#{tag}):?\s*(.*)$/)endregister_extensions("yml","yaml")do|tag|PatternExtractor.new(/#\s*(#{tag}):?\s*(.*)$/)endregister_extensions("css","js")do|tag|PatternExtractor.new(/\/\/\s*(#{tag}):?\s*(.*)$/)endregister_extensions("erb")do|tag|PatternExtractor.new(/<%\s*#\s*(#{tag}):?\s*(.*?)\s*%>/)end# Returns a representation of the annotation that looks like this:## [126] [TODO] This algorithm is simple and clearly correct, make it faster.## If +options+ has a flag <tt>:tag</tt> the tag is shown as in the example above.# Otherwise the string contains just line and text.defto_s(options={})s=+"[#{line.to_s.rjust(options[:indent])}] "s<<"[#{tag}] "ifoptions[:tag]s<<textendend# Prints all annotations with tag +tag+ under the root directories +app+,# +config+, +db+, +lib+, and +test+ (recursively).## If +tag+ is <tt>nil</tt>, annotations with either default or registered tags are printed.## Specific directories can be explicitly set using the <tt>:dirs</tt> key in +options+.## Rails::SourceAnnotationExtractor.enumerate 'TODO|FIXME', dirs: %w(app lib), tag: true## If +options+ has a <tt>:tag</tt> flag, it will be passed to each annotation's +to_s+.## See SourceAnnotationExtractor#find_in for a list of file extensions that will be taken into account.## This class method is the single entry point for the <tt>rails notes</tt> command.defself.enumerate(tag=nil,options={})tag||=Annotation.tags.join("|")extractor=new(tag)dirs=options.delete(:dirs)||Annotation.directoriesextractor.display(extractor.find(dirs),options)endattr_reader:tagdefinitialize(tag)@tag=tagend# Returns a hash that maps filenames under +dirs+ (recursively) to arrays# with their annotations.deffind(dirs)dirs.inject({}){|h,dir|h.update(find_in(dir))}end# Returns a hash that maps filenames under +dir+ (recursively) to arrays# with their annotations. Files with extensions registered in# <tt>Rails::SourceAnnotationExtractor::Annotation.extensions</tt> are# taken into account. Only files with annotations are included.deffind_in(dir)results={}Dir.glob("#{dir}/*")do|item|nextifFile.basename(item).start_with?(".")ifFile.directory?(item)results.update(find_in(item))elseextension=Annotation.extensions.detectdo|regexp,_block|regexp.match(item)endifextensionpattern=extension.last.call(tag)# In case a user-defined pattern returns nothing for the given set# of tags, we exit early.nextunlesspattern# If a user-defined pattern returns a regular expression, we will# wrap it in a PatternExtractor to keep the same API.pattern=PatternExtractor.new(pattern)ifpattern.is_a?(Regexp)annotations=pattern.annotations(item)results.update(item=>annotations)ifannotations.any?endendendresultsend# Prints the mapping from filenames to annotations in +results+ ordered by filename.# The +options+ hash is passed to each annotation's +to_s+.defdisplay(results,options={})options[:indent]=results.flat_map{|f,a|a.map(&:line)}.max.to_s.sizeresults.keys.sort.eachdo|file|puts"#{file}:"results[file].eachdo|note|puts" * #{note.to_s(options)}"endputsendendendend