X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fwx%2Fdolby_doremi_certificate_panel.cc;h=18a0ed66ec34ba63e8156065329cc15ca1048873;hb=b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f;hp=bd6edefa97750691a078a7cf76226abac5bc3a82;hpb=002132b296e7f40a9aca3bb09530895c53bd74ba;p=dcpomatic.git diff --git a/src/wx/dolby_doremi_certificate_panel.cc b/src/wx/dolby_doremi_certificate_panel.cc index bd6edefa9..18a0ed66e 100644 --- a/src/wx/dolby_doremi_certificate_panel.cc +++ b/src/wx/dolby_doremi_certificate_panel.cc @@ -1,19 +1,20 @@ /* Copyright (C) 2014-2015 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ @@ -59,15 +60,9 @@ DolbyDoremiCertificatePanel::download (wxStaticText* message) signal_manager->when_idle (boost::bind (&DolbyDoremiCertificatePanel::finish_download, this, wx_to_std (_serial->GetValue ()), message)); } -void -DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* message) +static void +try_dcp2000 (list& urls, list& files, string prefix, string serial) { - /* Try dcp2000, imb and ims prefixes (see mantis #375) */ - - string const prefix = "ftp://anonymous@ftp.cinema.dolby.com/Certificates/"; - list urls; - list files; - urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial)); @@ -76,13 +71,25 @@ DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* messa urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.certs.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial)); +} +static void +try_imb (list& urls, list& files, string prefix, string serial) +{ urls.push_back (String::compose ("%1%2xxx/imb-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("imb-%1.cert.sha256.pem", serial)); +} +static void +try_ims (list& urls, list& files, string prefix, string serial) +{ urls.push_back (String::compose ("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("ims-%1.cert.sha256.pem", serial)); +} +static void +try_cat862 (list& urls, list& files, string prefix, string serial) +{ int const serial_int = dcp::raw_convert (serial); string cat862; @@ -97,6 +104,12 @@ DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* messa urls.push_back (String::compose ("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int)); files.push_back (String::compose ("cert_Dolby256-CAT862-%1.pem.crt", serial_int)); +} + +static void +try_dsp100 (list& urls, list& files, string prefix, string serial) +{ + int const serial_int = dcp::raw_convert (serial); string dsp100; if (serial_int <= 999) { @@ -110,6 +123,68 @@ DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* messa urls.push_back (String::compose ("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int)); files.push_back (String::compose ("cert_Dolby256-DSP100-%1.pem.crt", serial_int)); +} + +static void +try_cat745 (list& urls, list& files, string prefix, string serial) +{ + int const serial_int = dcp::raw_convert (serial.substr (1)); + + string cat745; + if (serial_int <= 999) { + cat745 = "CAT745_1_thru_999"; + } else if (serial_int >= 6000) { + cat745 = "CAT745_6000_and_higher"; + } else { + int const lower = serial_int - (serial_int % 1000); + cat745 = String::compose ("CAT745_%1_thru_%2", lower, lower + 999); + } + + urls.push_back (String::compose ("%1%2/cert_Dolby-CAT745-%3.zip", prefix, cat745, serial_int)); + files.push_back (String::compose ("cert_Dolby-CAT745-%1.pem.crt", serial_int)); +} + +static void +try_cp850 (list& urls, list& files, string prefix, string serial) +{ + int const serial_int = dcp::raw_convert (serial.substr (1)); + + int const lower = serial_int - (serial_int % 1000); + urls.push_back (String::compose ("%1CP850_CAT1600_F%2-F%3/cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%4.zip", prefix, lower, lower + 999, serial_int)); + files.push_back (String::compose ("cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%1.pem.crt", serial_int)); +} + +void +DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* message) +{ + /* Try dcp2000, imb and ims prefixes (see mantis #375) */ + + string const prefix = "ftp://anonymous@ftp.cinema.dolby.com/Certificates/"; + list urls; + list files; + + bool starts_with_digit = false; + optional starting_char; + + if (!serial.empty()) { + if (isdigit (serial[0])) { + starts_with_digit = true; + } else { + starting_char = serial[0]; + } + } + + if (starts_with_digit) { + try_dcp2000 (urls, files, prefix, serial); + try_imb (urls, files, prefix, serial); + try_ims (urls, files, prefix, serial); + try_cat862 (urls, files, prefix, serial); + try_dsp100 (urls, files, prefix, serial); + } else if (starting_char == 'H') { + try_cat745 (urls, files, prefix, serial); + } else if (starting_char == 'F') { + try_cp850 (urls, files, prefix, serial); + } list errors; bool ok = false; @@ -130,12 +205,12 @@ DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* messa } else { message->SetLabel (wxT ("")); - SafeStringStream s; + string s; BOOST_FOREACH (string e, errors) { - s << e << "\n"; + s += e + "\n"; } - error_dialog (this, std_to_wx (s.str ())); + error_dialog (this, std_to_wx (s)); } }