summaryrefslogtreecommitdiff
path: root/commands.cpp
diff options
context:
space:
mode:
authorJon Bergli Heier <snakebite@jvnv.net>2011-01-02 01:16:35 +0100
committerJon Bergli Heier <snakebite@jvnv.net>2011-01-02 01:16:35 +0100
commit3d5901b73cc4e46e57233ea3ccc9b27ffba4c7df (patch)
tree9a3a3d79f6f8acac9a4298a719dcfcf42fa39596 /commands.cpp
parent75f14984fa648c66ba6677f0d7c84429169e95f1 (diff)
Moved MusicDirectory conversion code to music::get_directory().
Diffstat (limited to 'commands.cpp')
-rw-r--r--commands.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/commands.cpp b/commands.cpp
index 2401690..f37f78c 100644
--- a/commands.cpp
+++ b/commands.cpp
@@ -1,7 +1,6 @@
#include "commands.h"
#include "music.h"
-#include <boost/cast.hpp>
#include <boost/format.hpp>
#include <boost/algorithm/string/join.hpp>
@@ -12,12 +11,12 @@ static std::vector<std::string> ls(const std::vector<std::string>& args) {
throw commands::CommandException("usage: ls DIR");
}
- MusicListing::p ml = music::get(args[1]);
- if(!ml || !fs::is_directory(ml->path)) {
+ MusicDirectory::p dir = music::get_directory(args[1]);
+ if(!dir) {
throw commands::CommandException("no such directory");
}
+ std::cout << dir->path << std::endl;
std::vector<std::string> result;
- MusicDirectory *dir = boost::polymorphic_downcast<MusicDirectory*>(&(*ml));
for(MusicDirectory::PathListings::iterator it = dir->directories.begin(); it != dir->directories.end(); it++) {
std::string rel_path = it->string().substr(music::root_directory.string().size());
result.push_back(rel_path);