Merge master; fix destruction of Server; some test cleanups.
[dcpomatic.git] / src / lib / content_factory.cc
1 /*
2     Copyright (C) 2013-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/lib/content_factory.cc
21  *  @brief Methods to create content objects.
22  */
23
24 #include <libcxml/cxml.h>
25 #include "ffmpeg_content.h"
26 #include "image_content.h"
27 #include "sndfile_content.h"
28 #include "subrip_content.h"
29 #include "util.h"
30
31 using std::string;
32 using std::list;
33 using boost::shared_ptr;
34
35 /** Create a Content object from an XML node.
36  *  @param film Film that the content will be in.
37  *  @param node XML description.
38  *  @param version XML state version.
39  *  @param notes A list to which is added descriptions of any non-critial warnings / messages.
40  *  @return Content object, or 0 if no content was recognised in the XML.
41  */
42 shared_ptr<Content>
43 content_factory (shared_ptr<const Film> film, cxml::NodePtr node, int version, list<string>& notes)
44 {
45         string const type = node->string_child ("Type");
46
47         boost::shared_ptr<Content> content;
48         
49         if (type == "FFmpeg") {
50                 content.reset (new FFmpegContent (film, node, version, notes));
51         } else if (type == "Image") {
52                 content.reset (new ImageContent (film, node, version));
53         } else if (type == "Sndfile") {
54                 content.reset (new SndfileContent (film, node, version));
55         } else if (type == "SubRip") {
56                 content.reset (new SubRipContent (film, node, version));
57         }
58
59         return content;
60 }
61
62 /** Create a Content object from a file, depending on its extension.
63  *  @param film Film that the content will be in.
64  *  @param path File's path.
65  *  @return Content object.
66  */
67 shared_ptr<Content>
68 content_factory (shared_ptr<const Film> film, boost::filesystem::path path)
69 {
70         shared_ptr<Content> content;
71
72         string ext = path.extension().string ();
73         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
74                 
75         if (valid_image_file (path)) {
76                 content.reset (new ImageContent (film, path));
77         } else if (SndfileContent::valid_file (path)) {
78                 content.reset (new SndfileContent (film, path));
79         } else if (ext == ".srt") {
80                 content.reset (new SubRipContent (film, path));
81         } else {
82                 content.reset (new FFmpegContent (film, path));
83         }
84
85         return content;
86 }