Class: ZMediumFetcher::Progress

Inherits:
Object
  • Object
show all
Defined in:
lib/ZMediumFetcher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#currentPostIndexObject

Returns the value of attribute currentPostIndex.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def currentPostIndex
  @currentPostIndex
end

#currentPostParagraphIndexObject

Returns the value of attribute currentPostParagraphIndex.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def currentPostParagraphIndex
  @currentPostParagraphIndex
end

#messageObject

Returns the value of attribute message.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def message
  @message
end

#postPathObject

Returns the value of attribute postPath.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def postPath
  @postPath
end

#totalPostParagraphsLengthObject

Returns the value of attribute totalPostParagraphsLength.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def totalPostParagraphsLength
  @totalPostParagraphsLength
end

#totalPostsLengthObject

Returns the value of attribute totalPostsLength.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def totalPostsLength
  @totalPostsLength
end

#usernameObject

Returns the value of attribute username.



43
44
45
# File 'lib/ZMediumFetcher.rb', line 43

def username
  @username
end

Instance Method Details

#printLogObject



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# File 'lib/ZMediumFetcher.rb', line 45

def printLog()
    info = ""
    if !username.nil?
        if !currentPostIndex.nil? && !totalPostsLength.nil?
            info += "[#{username}(#{currentPostIndex}/#{totalPostsLength})]"
        else
            info += "[#{username}]"
        end
    end

    if !postPath.nil?
        if info != ""
            info += "-"
        end
        if !currentPostParagraphIndex.nil? && !totalPostParagraphsLength.nil?
            info += "[#{postPath[0..15]}...(#{currentPostParagraphIndex}/#{totalPostParagraphsLength})]"
        else
            info += "[#{postPath[0..15]}...]"
        end
    end

    if !message.nil?
        if info != ""
            info += "-"
        end
        info += message
    end

    if info != "" 
        puts info
    end
end