forked from muesli/beehive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A bee that reacts to filesystem events and forwards them to other bees interested.
- Loading branch information
Showing
5 changed files
with
208 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# FSNotify bee | ||
|
||
Monitors filesystem paths and sends events when files are created, removed or modified. | ||
|
||
## Configuration | ||
|
||
* path: Path to monitor (file or directory). | ||
|
||
## Events | ||
|
||
**fsevent** | ||
|
||
* type: the event type received (CREATE, REMOVE, RENAME, CHMOD). | ||
* path: filesystem path that triggered the event. | ||
|
||
## Credits | ||
|
||
File manager logo: https://openclipart.org/detail/35329/tango-system-file-manager |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
* Copyright (C) 2017 Sergio Rubio | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published | ||
* by the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Authors: | ||
* Sergio Rubio <[email protected]> | ||
*/ | ||
|
||
package fsnotifybee | ||
|
||
import ( | ||
"github.com/fsnotify/fsnotify" | ||
"github.com/muesli/beehive/bees" | ||
) | ||
|
||
type FSNotifyBee struct { | ||
bees.Bee | ||
} | ||
|
||
func (mod *FSNotifyBee) Run(eventChan chan bees.Event) { | ||
watcher, err := fsnotify.NewWatcher() | ||
if err != nil { | ||
mod.LogFatal("error: could not create the fswatcher: %v", err) | ||
} | ||
defer watcher.Close() | ||
|
||
path := mod.Options().Value("path").(string) | ||
mod.Logf("monitoring %s\n", path) | ||
|
||
err = watcher.Add(path) | ||
if err != nil { | ||
mod.LogErrorf("error: watching %s failed: %v", path, err) | ||
return | ||
} | ||
for { | ||
select { | ||
case <-mod.SigChan: | ||
return | ||
case event := <-watcher.Events: | ||
if event.Op != fsnotify.Write && event.Op != 0 { | ||
sendEvent(mod.Name(), event.Op.String(), event.Name, eventChan) | ||
} | ||
case <-watcher.Errors: | ||
} | ||
} | ||
} | ||
|
||
func (mod *FSNotifyBee) ReloadOptions(options bees.BeeOptions) { | ||
mod.SetOptions(options) | ||
} | ||
|
||
func sendEvent(bee, etype, path string, eventChan chan bees.Event) { | ||
event := bees.Event{ | ||
Bee: bee, | ||
Name: "event", | ||
Options: []bees.Placeholder{ | ||
{ | ||
Name: "type", | ||
Type: "string", | ||
Value: etype, | ||
}, | ||
{ | ||
Name: "path", | ||
Type: "string", | ||
Value: path, | ||
}, | ||
}, | ||
} | ||
eventChan <- event | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
/* | ||
* Copyright (C) 2017 Sergio Rubio | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published | ||
* by the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Authors: | ||
* Sergio Rubio <[email protected]> | ||
*/ | ||
|
||
package fsnotifybee | ||
|
||
import ( | ||
"github.com/muesli/beehive/bees" | ||
) | ||
|
||
// FSNotifyBeeFactory is a factory for FSNotifyBees. | ||
type FSNotifyBeeFactory struct { | ||
bees.BeeFactory | ||
} | ||
|
||
// New returns a new Bee instance configured with the supplied options. | ||
func (factory *FSNotifyBeeFactory) New(name, description string, options bees.BeeOptions) bees.BeeInterface { | ||
bee := FSNotifyBee{ | ||
Bee: bees.NewBee(name, factory.ID(), description, options), | ||
} | ||
bee.ReloadOptions(options) | ||
|
||
return &bee | ||
} | ||
|
||
// ID returns the ID of this Bee. | ||
func (factory *FSNotifyBeeFactory) ID() string { | ||
return "fsnotifybee" | ||
} | ||
|
||
// Name returns the name of this Bee. | ||
func (factory *FSNotifyBeeFactory) Name() string { | ||
return "FSNotify" | ||
} | ||
|
||
// Description returns the description of this Bee. | ||
func (factory *FSNotifyBeeFactory) Description() string { | ||
return "Monitor filesystem paths" | ||
} | ||
|
||
// Image returns the filename of an image for this Bee. | ||
func (factory *FSNotifyBeeFactory) Image() string { | ||
return factory.ID() + ".png" | ||
} | ||
|
||
// LogoColor returns the preferred logo background color (used by the admin interface). | ||
func (factory *FSNotifyBeeFactory) LogoColor() string { | ||
return "#4b4b4b" | ||
} | ||
|
||
// Options returns the options available to configure this Bee. | ||
func (factory *FSNotifyBeeFactory) Options() []bees.BeeOptionDescriptor { | ||
opts := []bees.BeeOptionDescriptor{ | ||
{ | ||
Name: "path", | ||
Description: "Filesystem path to monitor", | ||
Type: "string", | ||
Mandatory: true, | ||
}, | ||
} | ||
return opts | ||
} | ||
|
||
// Events describes the available events provided by this Bee. | ||
func (factory *FSNotifyBeeFactory) Events() []bees.EventDescriptor { | ||
events := []bees.EventDescriptor{ | ||
{ | ||
Namespace: factory.Name(), | ||
Name: "fsevent", | ||
Description: "Filesystem event", | ||
Options: []bees.PlaceholderDescriptor{ | ||
{ | ||
Name: "type", // CREATE, CHMOD, RENAME, REMOVE | ||
Description: "The event type received", | ||
Type: "string", | ||
}, | ||
{ | ||
Name: "path", | ||
Description: "Canonical path to the file or directory", | ||
Type: "string", | ||
}, | ||
}, | ||
}, | ||
} | ||
return events | ||
} | ||
|
||
func init() { | ||
f := FSNotifyBeeFactory{} | ||
bees.RegisterFactory(&f) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters