Merge master.
[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 <sstream>
28 #include <iomanip>
29 #include <time.h>
30
31 using namespace std;
32 using namespace dcp;
33
34 MXFMetadata::MXFMetadata ()
35         : company_name ("libdcp")
36         , product_name ("libdcp")
37         , product_version (LIBDCP_VERSION)
38 {
39
40 }
41
42
43 XMLMetadata::XMLMetadata ()
44         : issuer ("libdcp" LIBDCP_VERSION)
45         , creator ("libdcp" LIBDCP_VERSION)
46 {
47         set_issue_date_now ();
48 }
49
50 void
51 XMLMetadata::set_issue_date_now ()
52 {
53         issue_date = LocalTime().as_string ();
54 }