directory watcher, trying to match filename to directory name.

B

Brian Wallace

[Note: parts of this message were removed to make it a legal post.]

Hi All,

Here's an issue I can't seem to figure out, regardless of the hours i've
spent pondering it...

I'm using Directory Watcher to scan a directory for added files, if files
are added I run my method that handles them.. This works great...

However.. I'm trying to match the directory name to the file name , ie:

C:\Send\Bob\Bob* will trigger the event ,but any other file added to that
directory will not ... here's what I have - this will just fire an event for
any file added to the observed folder.

I set a directory , such as "C:\Send" and then only monitor the
subdirectories of this directory .. I just need to make sure that events are
fired _only_ when the subdirectory name matches the beginning of the file
name.

dw = DirectoryWatcher.new "#{@dirwatch}", :interval => 5, :glob => "*/*",
:pre_load => true
dw.add_observer {|*args| args.each do |a|
if a.type == :added
sleep(3)
@filename = a.path
signInAction()
getFile(@filename)
initDataUpload(@localFileSize, @session)
completeSend(@fileId, @session)
addDelivery(@localFile, @fileId, @session, @rcpt_email)
puts "File: #{@filename} sent!!!"
@chunkSize = 61440
end
end
end}

Any Ideas?

Thanks,

Brian
 
B

Brian Wallace

Thanks David,

Yes I've read every bit of documentation for Directory Watcher ... I guess
my problem is more of a generic ruby programming problem.

I'm not sure how to dynamically change the glob pattern ...Since its set
during the creation of the dw object .. Of course I can change it, within
the add_observer block - with a symbol.. But the problem I'm having is
getting the subdirectory name for matching...

ie: C:\Send has 3 subdirectories

C:\Send\Bob
C:\Send\Kevin
C:\Send\James

I want to only match a filename that has "Bob, Kevin, or James" inside its
respective subdirectory.
 
T

Tim Pease

Thanks David,

=A0Yes I've read every bit of documentation for Directory Watcher ... I g= uess
my problem is more of a generic ruby programming problem.

I'm not sure how to dynamically change the glob pattern ...Since its set
during the creation of the dw object .. Of course I can change it, within
the add_observer block - with a symbol.. But the problem I'm having is
getting the subdirectory name for matching...

ie: C:\Send has 3 subdirectories

C:\Send\Bob
C:\Send\Kevin
C:\Send\James

I want to only match a filename that has "Bob, Kevin, or James" inside it= s
respective subdirectory.

DirectoryWatcher is not able to do what you need. It only supports
glob patterns for matching files, and what you are in need of is
regular expressions. The best solution is to implement the regular
expression matching inside your observer.

def observer_method( *args )
args.each do |event|
next unless event.type =3D=3D :added
next unless event.path =3D~ %r/^#{@directory}\/([^\/]+)\/.*\1.*/
# put your code here
end
end

Also, you have a sleep method in your observer block. I would
recommend using the "stable" event if you want to make sure that the
file is no longer being modified before operating on it.

Blessings,
TwP
 
B

Brian Wallace

[Note: parts of this message were removed to make it a legal post.]

Hi Tim,

Thanks for the reply, since your the developer of the gem it is really nice
that you've taken the time to respond to my issue. You've made one of my
_favorite_ ruby gems so far...

Your example helps me a LOT , especially since I'm horrible at regular
expressions :) .. I needed to show the application this morning, so I
frantically wrote an alternative - which may be ugly, but works pretty well
so far.. Basically, I grab all of the subdirectories of the Directory
Watcher directory, and then create an array of glob patterns with the
directory names, and filename ie:

@dir = Dir.open(@dirwatch)
parsed_dir = @dir.entries.grep(/^[^.]/).map
parsed_glob = parsed_dir.collect {|d| d = "*#{d}/#{d}*"}

I then just pass the parsed_glob array to the directory watcher ...

With that said - and since I am so horrible with regular expressions ...
Does anyone know the RegExp that will match directory names ONLY ?
(excluding '.' and '..') The one I have above appears to match anything
except '.' , and '..'

Thanks,

Brian

Thanks David,

Yes I've read every bit of documentation for Directory Watcher ... I guess
my problem is more of a generic ruby programming problem.

I'm not sure how to dynamically change the glob pattern ...Since its set
during the creation of the dw object .. Of course I can change it, within
the add_observer block - with a symbol.. But the problem I'm having is
getting the subdirectory name for matching...

ie: C:\Send has 3 subdirectories

C:\Send\Bob
C:\Send\Kevin
C:\Send\James

I want to only match a filename that has "Bob, Kevin, or James" inside its
respective subdirectory.

DirectoryWatcher is not able to do what you need. It only supports
glob patterns for matching files, and what you are in need of is
regular expressions. The best solution is to implement the regular
expression matching inside your observer.

def observer_method( *args )
args.each do |event|
next unless event.type == :added
next unless event.path =~ %r/^#{@directory}\/([^\/]+)\/.*\1.*/
# put your code here
end
end

Also, you have a sleep method in your observer block. I would
recommend using the "stable" event if you want to make sure that the
file is no longer being modified before operating on it.

Blessings,
TwP
 
H

Hassan Schroeder

With that said - and since I am so horrible with regular expressions ...
Does anyone know the RegExp that will match directory names ONLY ?

There's nothing about a name that distinguishes a directory from a
file, so the answer to that is easy: no :)
 
B

Brian Wallace

[Note: parts of this message were removed to make it a legal post.]

I do realize this :) , but if I could at least assume that "STRING" without
the .??? is a directory, it would suffice ... Since the application will run
in Windows there's less of a chance that a file called "STRING" would be
placed into the list.

So a RegEx that matches anything up to the '.' file extension and excludes
'.' and '..' would be enough

On Tue, Apr 21, 2009 at 2:19 PM, Hassan Schroeder <
 
H

Hassan Schroeder

I do realize this :) , but if I could at least assume that "STRING" without
the .??? is a directory, it would suffice ... Since the application will run
in Windows there's less of a chance that a file called "STRING" would be
placed into the list.

Still a dicey assumption, IMO, but
So a RegEx that matches anything up to the '.' file extension and excludes
'.' and '..' would be enough

Something like

irb(main):017:0> puts "wow" if /^[\w]+$/.match("foobar")
wow
=> nil
irb(main):018:0> puts "wow" if /^[\w]+$/.match("foo.bar")
=> nil
irb(main):019:0>

HTH!
 
T

Tim Pease

I do realize this :) , but if I could at least assume that "STRING" without
the .??? is a directory, it would suffice ... Since the application will run
in Windows there's less of a chance that a file called "STRING" would be
placed into the list.

So a RegEx that matches anything up to the '.' file extension and excludes
'.' and '..' would be enough

No regular expression required ...

Dir.glob('/root/directory/*').each do |fn|
next unless test(?d, fn)
# your code goes here
end


The "test(?d, fn)" returns true if the current filename is a directory
and false otherwise.

Blessings,
TwP
 
B

Brian Wallace

[Note: parts of this message were removed to make it a legal post.]

I agree, not a good assumption in most cases - and its a bit wasteful since
i'm creating an array of globs with elements that will never match (ie: a
file with a single name in C:\send will never match unless a directory
exists with the same name, and the same file under it)

This is good though, thank you - just seeing these regex's in use helps me
understand them..

Thanks,

Brian

On Tue, Apr 21, 2009 at 2:46 PM, Hassan Schroeder <
I do realize this :) , but if I could at least assume that "STRING" without
the .??? is a directory, it would suffice ... Since the application will run
in Windows there's less of a chance that a file called "STRING" would be
placed into the list.

Still a dicey assumption, IMO, but
So a RegEx that matches anything up to the '.' file extension and excludes
'.' and '..' would be enough

Something like

irb(main):017:0> puts "wow" if /^[\w]+$/.match("foobar")
wow
=> nil
irb(main):018:0> puts "wow" if /^[\w]+$/.match("foo.bar")
=> nil
irb(main):019:0>

HTH!
 
B

Brian Wallace

[Note: parts of this message were removed to make it a legal post.]

Tim,

This was my original idea, however this returns the full pathname - when I
only need actual directory name to be able to form the array of glob
patterns..

If I could figure out how this would return just the children directory
names of ('/root/directory'), this would be the perfect solution.

Thanks again for all your attention, I've already learned so much.

Brian
 
M

Martin DeMello

Tim,

=A0This was my original idea, however this returns the full pathname - wh= en I
only need actual directory name to be able to form the array of glob
patterns..

If I could figure out how this would return just the children directory
names of ('/root/directory'), this would be the perfect solution.

Look up File.basename and File.dirname

martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top