Class: Muzak::Instance
- Inherits:
-
Object
- Object
- Muzak::Instance
- Defined in:
- lib/muzak/instance.rb
Overview
Encapsulates the entirety of muzak's running state.
Instance Attribute Summary collapse
-
#index ⇒ Index
readonly
The instance's music index.
-
#player ⇒ StubPlayer
readonly
The instance's player.
-
#playlists ⇒ Hash{String => Playlist}
readonly
The instance's playlists.
-
#plugins ⇒ Array<StubPlugin>
readonly
The instance's plugins.
Instance Method Summary collapse
-
#command(cmd, *args) ⇒ Object
Sends a command to the instance.
-
#event(type, *args) ⇒ Object
Dispatch an event to all plugins.
-
#initialize(opts = {}) ⇒ Instance
constructor
A new instance of Instance.
Methods included from Utils
album_art?, #build_response, #danger, #debug, #debug?, #error, #error!, music?, #output, #pretty, #verbose, #verbose?, which?
Methods included from Cmd
#albums_by_artist, #clear_queue, commands, #config_get, #enqueue_album, #enqueue_artist, #enqueue_playlist, #help, #jukebox, #list_albums, #list_artists, #list_playlists, #list_plugins, #list_queue, #next, #now_playing, #pause, #ping, #play, #player_activate, #player_deactivate, #playlist_add_album, #playlist_add_artist, #playlist_add_current, #playlist_del_current, #playlist_delete, #playlist_shuffle, #previous, #quit, #shuffle_queue, #songs_by_artist, #toggle
Constructor Details
#initialize(opts = {}) ⇒ Instance
Returns a new instance of Instance.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/muzak/instance.rb', line 39 def initialize(opts = {}) verbose "muzak is starting..." error! "#{Config.music} doesn't exist" unless File.exist?(Config.music) @index = Index.load_index! @player = Player.load_player!(self) @plugins = Plugin.load_plugins! @playlists = Playlist.load_playlists! enqueue_playlist Config.autoplay if Config.autoplay event :instance_started, self end |
Instance Attribute Details
#index ⇒ Index (readonly)
Returns the instance's music index.
28 29 30 |
# File 'lib/muzak/instance.rb', line 28 def index @index end |
#player ⇒ StubPlayer (readonly)
Returns the instance's player.
31 32 33 |
# File 'lib/muzak/instance.rb', line 31 def player @player end |
#playlists ⇒ Hash{String => Playlist} (readonly)
Returns the instance's playlists.
37 38 39 |
# File 'lib/muzak/instance.rb', line 37 def playlists @playlists end |
#plugins ⇒ Array<StubPlugin> (readonly)
Returns the instance's plugins.
34 35 36 |
# File 'lib/muzak/instance.rb', line 34 def plugins @plugins end |
Instance Method Details
#command(cmd, *args) ⇒ Object
Sends a command to the instance.
13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/muzak/instance.rb', line 13 def command(cmd, *args) if Cmd.commands.include?(cmd) meth = method(Config.resolve_command(cmd)) if meth.arity == args.size || meth.arity <= -1 meth.call *args else build_response error: "got #{args.size} args, needed #{meth.arity}" end else warn "unknown command: '#{cmd}'" build_response error: "unknown command '#{cmd}'" end end |
#event(type, *args) ⇒ Object
Config::PLUGIN_EVENTS contains all valid events.
Dispatch an event to all plugins.
61 62 63 64 65 66 67 68 69 |
# File 'lib/muzak/instance.rb', line 61 def event(type, *args) return unless Config::PLUGIN_EVENTS.include?(type) plugins.each do |plugin| Thread.new do plugin.send(type, *args) end end end |