Class: FileMonitoring::FileStat
- Inherits:
-
Object
- Object
- FileMonitoring::FileStat
- Defined in:
- lib/file_monitoring/monitor_path.rb
Overview
This class holds current state of file and methods to control and report changes
Direct Known Subclasses
Constant Summary collapse
- DEFAULT_STABLE_STATE =
10- @@log =
nil
Instance Attribute Summary collapse
-
#cycles ⇒ Object
readonly
Returns the value of attribute cycles.
-
#modification_time ⇒ Object
readonly
Returns the value of attribute modification_time.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
-
#stable_state ⇒ Object
readonly
Returns the value of attribute stable_state.
-
#state ⇒ Object
Returns the value of attribute state.
Class Method Summary collapse
-
.set_log(log) ⇒ Object
Sets a log file to report changes ==== Arguments:.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks whether path and state are the same as of the argument.
-
#changed?(file_stats) ⇒ Boolean
Checks that stored file attributes are the same as file attributes taken from file system.
-
#initialize(path, stable_state = DEFAULT_STABLE_STATE, content_data_cache, state) ⇒ FileStat
constructor
Initializes new file monitoring object ==== Arguments:.
-
#monitor ⇒ Object
Checks whether file was changed from the last iteration.
- #set_event_queue(queue) ⇒ Object
- #set_output_queue(event_queue) ⇒ Object
-
#to_s(indent = 0) ⇒ Object
Returns path and state of the file with indentation.
Constructor Details
#initialize(path, stable_state = DEFAULT_STABLE_STATE, content_data_cache, state) ⇒ FileStat
Initializes new file monitoring object
Arguments:
-
path- File location -
stable_state- Number of iterations to move unchanged file to stable state
37 38 39 40 41 42 43 44 45 |
# File 'lib/file_monitoring/monitor_path.rb', line 37 def initialize(path, stable_state = DEFAULT_STABLE_STATE, content_data_cache, state) @path ||= path @size = nil @creation_time = nil @modification_time = nil @cycles = 0 # number of iterations from the last file modification @state = state @stable_state = stable_state # number of iteration to move unchanged file to stable state end |
Instance Attribute Details
#cycles ⇒ Object (readonly)
Returns the value of attribute cycles.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def cycles @cycles end |
#modification_time ⇒ Object (readonly)
Returns the value of attribute modification_time.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def modification_time @modification_time end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def path @path end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def size @size end |
#stable_state ⇒ Object (readonly)
Returns the value of attribute stable_state.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def stable_state @stable_state end |
#state ⇒ Object
Returns the value of attribute state.
26 27 28 |
# File 'lib/file_monitoring/monitor_path.rb', line 26 def state @state end |
Class Method Details
.set_log(log) ⇒ Object
Sets a log file to report changes
Arguments:
-
log- already opened ruby File object
55 56 57 |
# File 'lib/file_monitoring/monitor_path.rb', line 55 def self.set_log (log) @@log = log end |
Instance Method Details
#==(other) ⇒ Object
Checks whether path and state are the same as of the argument
123 124 125 |
# File 'lib/file_monitoring/monitor_path.rb', line 123 def == (other) @path == other.path and @stable_state == other.stable_state end |
#changed?(file_stats) ⇒ Boolean
Checks that stored file attributes are the same as file attributes taken from file system.
95 96 97 98 99 |
# File 'lib/file_monitoring/monitor_path.rb', line 95 def changed?(file_stats) not (file_stats.size == @size && file_stats.ctime.utc == @creation_time.utc && file_stats.mtime.utc == @modification_time.utc) end |
#monitor ⇒ Object
Checks whether file was changed from the last iteration. For files, size and modification time are checked.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/file_monitoring/monitor_path.rb', line 61 def monitor file_stats = File.lstat(@path) rescue nil new_state = nil if file_stats == nil new_state = FileStatEnum::NON_EXISTING @size = nil @creation_time = nil @modification_time = nil @cycles = 0 elsif @size == nil new_state = FileStatEnum::NEW @size = file_stats.size @creation_time = file_stats.ctime.utc @modification_time = file_stats.mtime.utc @cycles = 0 elsif changed?(file_stats) new_state = FileStatEnum::CHANGED @size = file_stats.size @creation_time = file_stats.ctime.utc @modification_time = file_stats.mtime.utc @cycles = 0 else new_state = FileStatEnum::UNCHANGED @cycles += 1 if @cycles >= @stable_state new_state = FileStatEnum::STABLE end end # The assignment self.state= new_state end |
#set_event_queue(queue) ⇒ Object
101 102 103 |
# File 'lib/file_monitoring/monitor_path.rb', line 101 def set_event_queue(queue) @event_queue = queue end |
#set_output_queue(event_queue) ⇒ Object
47 48 49 |
# File 'lib/file_monitoring/monitor_path.rb', line 47 def set_output_queue(event_queue) @event_queue = event_queue end |
#to_s(indent = 0) ⇒ Object
Returns path and state of the file with indentation
128 129 130 |
# File 'lib/file_monitoring/monitor_path.rb', line 128 def to_s (indent = 0) (" " * indent) + path.to_s + " : " + state.to_s end |