Doxygen tweaks.
[libdcp.git] / src / metadata.cc
1 /*
2     Copyright (C) 2012-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/metadata.cc
21  *  @brief XMLMetadata and MXFMetadata classes.
22  */
23
24 #include "metadata.h"
25 #include "util.h"
26 #include "local_time.h"
27 #include "AS_DCP.h"
28 #include <sstream>
29 #include <iomanip>
30 #include <time.h>
31
32 using namespace std;
33 using namespace dcp;
34
35 MXFMetadata::MXFMetadata ()
36         : company_name ("libdcp")
37         , product_name ("libdcp")
38         , product_version (LIBDCP_VERSION)
39 {
40
41 }
42
43 void
44 MXFMetadata::read (ASDCP::WriterInfo const & info)
45 {
46         company_name = info.CompanyName;
47         product_name = info.ProductName;
48         product_version = info.ProductVersion;
49 }
50
51 XMLMetadata::XMLMetadata ()
52         : issuer ("libdcp" LIBDCP_VERSION)
53         , creator ("libdcp" LIBDCP_VERSION)
54 {
55         set_issue_date_now ();
56 }
57
58 /** Set the issue date to the current local time */
59 void
60 XMLMetadata::set_issue_date_now ()
61 {
62         issue_date = LocalTime().as_string ();
63 }