ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/DecentralizedMedia/MediaFolder.cpp
(Generate patch)

Comparing DecentralizedMedia/MediaFolder.cpp (file contents):
Revision 496 by douglas, 2005-06-17T13:22:26-07:00 vs.
Revision 499 by douglas, 2005-06-17T14:11:19-07:00

# Line 13 | Line 13 | MediaFolder::MediaFolder(_H<dbi::Connect
13          // XXX: implement
14   }
15  
16 < MediaFolder::MediaFolder(_H<dbi::Connection>& connection, const api::Path& path, const api::Path& root) : connection(connection), path(path)
16 > MediaFolder::MediaFolder(_H<dbi::Connection>& connection, const api::Path& path, const api::Path& root) : connection(connection), path(path), root(root)
17   {
18 <        _H<dbi::ResultSet> path_(connection->Parse(_B("SELECT path FROM folders WHERE path = ?"))-Execute(path.GetPath()));
18 >        _H<dbi::ResultSet> path_(connection->Parse(_B("SELECT path FROM folders WHERE path = ? AND root = ?"))->Execute(path.GetPath(), root.GetPath()));
19  
20          if (!path_->MoveNext())
21 <                connection->Parse(_B("INSERT INTO folders (path, folder, root) VALUES (?, ?, ?)"))->Execute(path.GetPath(), path.GetParent().GetPath(), root.GetPath());
21 >        {
22 >                connection->Parse(_B("DELETE FROM folders WHERE path = ?"))->Execute(path.GetPath());
23 >
24 >                if (path.GetPath() != root.GetPath())
25 >                        connection->Parse(_B("INSERT INTO folders (path, folder, root) VALUES (?, ?, ?)"))->Execute(path.GetPath(), path.GetParent().GetPath(), root.GetPath());
26 >                else
27 >                        connection->Parse(_B("INSERT INTO folders (path, folder, root) VALUES (?, NULL, ?)"))->Execute(path.GetPath(), root.GetPath());
28 >        }
29   }
30  
31   _L<MediaFile> MediaFolder::GetFiles() const

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines