Make "Add folder..." to accept a directory of WAV files (#942).
[dcpomatic.git] / src / lib / content_factory.cc
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/lib/content_factory.cc
22  *  @brief Methods to create content objects.
23  */
24
25 #include "ffmpeg_content.h"
26 #include "audio_content.h"
27 #include "image_content.h"
28 #include "atmos_mxf_content.h"
29 #include "text_subtitle_content.h"
30 #include "dcp_content.h"
31 #include "dcp_subtitle_content.h"
32 #include "util.h"
33 #include "ffmpeg_audio_stream.h"
34 #include "video_mxf_content.h"
35 #include "film.h"
36 #include "log_entry.h"
37 #include "log.h"
38 #include "compose.hpp"
39 #include <libcxml/cxml.h>
40 #include <dcp/smpte_subtitle_asset.h>
41 #include <boost/algorithm/string.hpp>
42
43 using std::string;
44 using std::list;
45 using boost::shared_ptr;
46 using boost::optional;
47
48 #define LOG_GENERAL(...) film->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
49
50 /** Create a Content object from an XML node.
51  *  @param film Film that the content will be in.
52  *  @param node XML description.
53  *  @param version XML state version.
54  *  @param notes A list to which is added descriptions of any non-critial warnings / messages.
55  *  @return Content object, or 0 if no content was recognised in the XML.
56  */
57 shared_ptr<Content>
58 content_factory (shared_ptr<const Film> film, cxml::NodePtr node, int version, list<string>& notes)
59 {
60         string const type = node->string_child ("Type");
61
62         boost::shared_ptr<Content> content;
63
64         if (type == "FFmpeg") {
65                 /* SndfileContent is now handled by the FFmpeg code rather than by
66                    separate libsndfile-based code.
67                 */
68                 content.reset (new FFmpegContent (film, node, version, notes));
69         } else if (type == "Image") {
70                 content.reset (new ImageContent (film, node, version));
71         } else if (type == "Sndfile") {
72                 /* SndfileContent is now handled by the FFmpeg code rather than by
73                    separate libsndfile-based code.
74                 */
75                 content.reset (new FFmpegContent (film, node, version, notes));
76
77                 content->audio->set_stream (
78                         AudioStreamPtr (
79                                 new FFmpegAudioStream (
80                                         "Stream", 0,
81                                         node->number_child<int> ("AudioFrameRate"),
82                                         node->number_child<Frame> ("AudioLength"),
83                                         AudioMapping (node->node_child ("AudioMapping"), version)
84                                         )
85                                 )
86                         );
87
88         } else if (type == "SubRip" || type == "TextSubtitle") {
89                 content.reset (new TextSubtitleContent (film, node, version));
90         } else if (type == "DCP") {
91                 content.reset (new DCPContent (film, node, version));
92         } else if (type == "DCPSubtitle") {
93                 content.reset (new DCPSubtitleContent (film, node, version));
94         } else if (type == "VideoMXF") {
95                 content.reset (new VideoMXFContent (film, node, version));
96         } else if (type == "AtmosMXF") {
97                 content.reset (new AtmosMXFContent (film, node, version));
98         }
99
100         return content;
101 }
102
103 /** Create some Content objects from a file or directory.
104  *  @param film Film that the content will be in.
105  *  @param path File or directory.
106  *  @return Content objects.
107  */
108 list<shared_ptr<Content> >
109 content_factory (shared_ptr<const Film> film, boost::filesystem::path path)
110 {
111         list<shared_ptr<Content> > content;
112
113         if (boost::filesystem::is_directory (path)) {
114
115                 LOG_GENERAL ("Look in directory %1", path);
116
117                 if (boost::filesystem::is_empty (path)) {
118                         return content;
119                 }
120
121                 /* Guess if this is a DCP, a set of images or a set of sound files: read the first ten filenames
122                    and if they are all valid image/sound files we assume it is not a DCP.
123                 */
124
125                 bool is_dcp = false;
126                 int image_files = 0;
127                 int sound_files = 0;
128                 int read = 0;
129                 for (boost::filesystem::directory_iterator i(path); i != boost::filesystem::directory_iterator() && read < 10; ++i) {
130
131                         LOG_GENERAL ("Checking file %1", i->path());
132
133                         if (boost::starts_with (i->path().leaf().string(), ".")) {
134                                 /* We ignore hidden files */
135                                 LOG_GENERAL ("Ignored %1 (starts with .)", i->path());
136                                 continue;
137                         }
138
139                         if (!boost::filesystem::is_regular_file(i->path())) {
140                                 /* Ignore things which aren't files (probably directories) */
141                                 LOG_GENERAL ("Ignored %1 (not a regular file)", i->path());
142                                 continue;
143                         }
144
145                         if (!valid_image_file (i->path()) && !valid_sound_file (i->path())) {
146                                 /* We have a normal file which isn't an image; assume we are looking
147                                    at a DCP.
148                                 */
149                                 LOG_GENERAL ("It's a DCP because of %1", i->path());
150                                 is_dcp = true;
151                         }
152
153                         if (valid_image_file (i->path ())) {
154                                 ++image_files;
155                         }
156
157                         if (valid_sound_file (i->path ())) {
158                                 ++sound_files;
159                         }
160
161                         ++read;
162                 }
163
164                 if (is_dcp) {
165                         content.push_back (shared_ptr<Content> (new DCPContent (film, path)));
166                 } else if (image_files > 0) {
167                         content.push_back (shared_ptr<Content> (new ImageContent (film, path)));
168                 } else {
169                         for (boost::filesystem::directory_iterator i(path); i != boost::filesystem::directory_iterator(); ++i) {
170                                 content.push_back (shared_ptr<FFmpegContent> (new FFmpegContent (film, i->path())));
171                         }
172                 }
173
174         } else {
175
176                 shared_ptr<Content> single;
177
178                 string ext = path.extension().string ();
179                 transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
180
181                 if (valid_image_file (path)) {
182                         single.reset (new ImageContent (film, path));
183                 } else if (ext == ".srt" || ext == ".ssa" || ext == ".ass") {
184                         single.reset (new TextSubtitleContent (film, path));
185                 } else if (ext == ".xml") {
186                         single.reset (new DCPSubtitleContent (film, path));
187                 } else if (ext == ".mxf" && dcp::SMPTESubtitleAsset::valid_mxf (path)) {
188                         single.reset (new DCPSubtitleContent (film, path));
189                 } else if (ext == ".mxf" && VideoMXFContent::valid_mxf (path)) {
190                         single.reset (new VideoMXFContent (film, path));
191                 } else if (ext == ".mxf" && AtmosMXFContent::valid_mxf (path)) {
192                         single.reset (new AtmosMXFContent (film, path));
193                 }
194
195                 if (!single) {
196                         single.reset (new FFmpegContent (film, path));
197                 }
198
199                 content.push_back (single);
200         }
201
202         return content;
203 }