1 /*---------------------------------------------------------------------\
3 | |__ / \ / / . \ . \ |
8 \---------------------------------------------------------------------*/
9 /** \file zypp/RepoInfo.cc
14 #include "zypp/base/Logger.h"
15 #include "zypp/base/DefaultIntegral.h"
16 #include "zypp/parser/xml/XmlEscape.h"
18 #include "zypp/RepoInfo.h"
19 #include "zypp/repo/RepoInfoBaseImpl.h"
20 #include "zypp/ExternalProgram.h"
21 #include "zypp/media/MediaAccess.h"
24 using zypp::xml::escape;
26 ///////////////////////////////////////////////////////////////////
28 { /////////////////////////////////////////////////////////////////
30 ///////////////////////////////////////////////////////////////////
32 // CLASS NAME : RepoInfo::Impl
34 /** RepoInfo implementation. */
35 struct RepoInfo::Impl : public repo::RepoInfoBase::Impl
38 : repo::RepoInfoBase::Impl()
39 , gpgcheck(indeterminate)
40 , keeppackages(indeterminate)
41 , type(repo::RepoType::NONE_e)
48 static const unsigned defaultPriority = 99;
50 void setProbedType( const repo::RepoType & t ) const
52 if ( type == repo::RepoType::NONE
53 && t != repo::RepoType::NONE )
56 const_cast<Impl*>(this)->type = t;
61 Pathname licenseTgz() const
62 { return metadatapath.empty() ? Pathname() : metadatapath / "license.tar.gz"; }
71 std::set<Url> baseUrls;
74 std::string targetDistro;
75 Pathname metadatapath;
76 Pathname packagespath;
77 DefaultIntegral<unsigned,defaultPriority> priority;
81 friend Impl * rwcowClone<Impl>( const Impl * rhs );
82 /** clone for RWCOW_pointer */
84 { return new Impl( *this ); }
86 ///////////////////////////////////////////////////////////////////
88 /** \relates RepoInfo::Impl Stream output */
89 inline std::ostream & operator<<( std::ostream & str, const RepoInfo::Impl & obj )
91 return str << "RepoInfo::Impl";
94 ///////////////////////////////////////////////////////////////////
96 // CLASS NAME : RepoInfo
98 ///////////////////////////////////////////////////////////////////
100 const RepoInfo RepoInfo::noRepo;
102 ///////////////////////////////////////////////////////////////////
104 // METHOD NAME : RepoInfo::RepoInfo
105 // METHOD TYPE : Ctor
108 : _pimpl( new Impl() )
111 ///////////////////////////////////////////////////////////////////
113 // METHOD NAME : RepoInfo::~RepoInfo
114 // METHOD TYPE : Dtor
116 RepoInfo::~RepoInfo()
121 unsigned RepoInfo::priority() const
122 { return _pimpl->priority; }
123 unsigned RepoInfo::defaultPriority()
124 { return Impl::defaultPriority; }
125 void RepoInfo::setPriority( unsigned newval_r )
127 _pimpl->priority = newval_r ? newval_r : Impl::defaultPriority;
130 void RepoInfo::setGpgCheck( bool check )
132 _pimpl->gpgcheck = check;
135 void RepoInfo::setMirrorListUrl( const Url &url )
137 _pimpl->mirrorlist_url = url;
140 void RepoInfo::setGpgKeyUrl( const Url &url )
142 _pimpl->gpgkey_url = url;
145 void RepoInfo::addBaseUrl( const Url &url )
147 _pimpl->baseUrls.insert(url);
150 void RepoInfo::setBaseUrl( const Url &url )
152 _pimpl->baseUrls.clear();
156 void RepoInfo::setPath( const Pathname &path )
161 void RepoInfo::setType( const repo::RepoType &t )
166 void RepoInfo::setProbedType( const repo::RepoType &t ) const
167 { _pimpl->setProbedType( t ); }
170 void RepoInfo::setMetadataPath( const Pathname &path )
172 _pimpl->metadatapath = path;
175 void RepoInfo::setPackagesPath( const Pathname &path )
177 _pimpl->packagespath = path;
180 void RepoInfo::setKeepPackages( bool keep )
182 _pimpl->keeppackages = keep;
185 void RepoInfo::setService( const std::string& name )
187 _pimpl->service = name;
190 void RepoInfo::setTargetDistribution(
191 const std::string & targetDistribution)
193 _pimpl->targetDistro = targetDistribution;
196 bool RepoInfo::gpgCheck() const
197 { return indeterminate(_pimpl->gpgcheck) ? true : (bool) _pimpl->gpgcheck; }
199 Pathname RepoInfo::metadataPath() const
200 { return _pimpl->metadatapath; }
202 Pathname RepoInfo::packagesPath() const
203 { return _pimpl->packagespath; }
205 repo::RepoType RepoInfo::type() const
206 { return _pimpl->type; }
208 Url RepoInfo::mirrorListUrl() const
209 { return _pimpl->mirrorlist_url; }
211 Url RepoInfo::gpgKeyUrl() const
212 { return _pimpl->gpgkey_url; }
214 std::set<Url> RepoInfo::baseUrls() const
216 RepoInfo::url_set replaced_urls;
217 repo::RepoVariablesUrlReplacer replacer;
218 for ( url_set::const_iterator it = _pimpl->baseUrls.begin();
219 it != _pimpl->baseUrls.end();
222 replaced_urls.insert(replacer(*it));
224 return replaced_urls;
226 return _pimpl->baseUrls;
229 Pathname RepoInfo::path() const
230 { return _pimpl->path; }
232 std::string RepoInfo::service() const
233 { return _pimpl->service; }
235 std::string RepoInfo::targetDistribution() const
236 { return _pimpl->targetDistro; }
238 RepoInfo::urls_const_iterator RepoInfo::baseUrlsBegin() const
240 return make_transform_iterator( _pimpl->baseUrls.begin(),
241 repo::RepoVariablesUrlReplacer() );
242 //return _pimpl->baseUrls.begin();
245 RepoInfo::urls_const_iterator RepoInfo::baseUrlsEnd() const
247 //return _pimpl->baseUrls.end();
248 return make_transform_iterator( _pimpl->baseUrls.end(),
249 repo::RepoVariablesUrlReplacer() );
252 RepoInfo::urls_size_type RepoInfo::baseUrlsSize() const
253 { return _pimpl->baseUrls.size(); }
255 bool RepoInfo::baseUrlsEmpty() const
256 { return _pimpl->baseUrls.empty(); }
258 // false by default (if not set by setKeepPackages)
259 bool RepoInfo::keepPackages() const
261 if (indeterminate(_pimpl->keeppackages))
263 if (_pimpl->baseUrls.empty())
265 else if ( baseUrlsBegin()->schemeIsDownloading() )
271 return (bool) _pimpl->keeppackages;
274 ///////////////////////////////////////////////////////////////////
276 bool RepoInfo::hasLicense() const
278 Pathname licenseTgz( _pimpl->licenseTgz() );
279 return ! licenseTgz.empty() && PathInfo(licenseTgz).isFile();
282 std::string RepoInfo::getLicense( const Locale & lang_r )
284 LocaleSet avlocales( getLicenseLocales() );
285 if ( avlocales.empty() )
286 return std::string();
288 Locale getLang( Locale::bestMatch( avlocales, lang_r ) );
289 if ( getLang == Locale::noCode
290 && avlocales.find( Locale::noCode ) == avlocales.end() )
292 WAR << "License.tar.gz contains no fallback text! " << *this << endl;
293 // Using the fist locale instead of returning no text at all.
294 // So the user might recognize that there is a license, even if he
296 getLang = *avlocales.begin();
299 // now extract the license file.
300 static const std::string licenseFileFallback( "license.txt" );
301 std::string licenseFile( getLang == Locale::noCode
302 ? licenseFileFallback
303 : str::form( "license.%s.txt", getLang.code().c_str() ) );
305 ExternalProgram::Arguments cmd;
306 cmd.push_back( "tar" );
307 cmd.push_back( "-x" );
308 cmd.push_back( "-z" );
309 cmd.push_back( "-O" );
310 cmd.push_back( "-f" );
311 cmd.push_back( _pimpl->licenseTgz().asString() ); // if it not exists, avlocales was empty.
312 cmd.push_back( licenseFile );
315 ExternalProgram prog( cmd, ExternalProgram::Discard_Stderr );
316 for ( std::string output( prog.receiveLine() ); output.length(); output = prog.receiveLine() )
324 LocaleSet RepoInfo::getLicenseLocales() const
326 Pathname licenseTgz( _pimpl->licenseTgz() );
327 if ( licenseTgz.empty() || ! PathInfo( licenseTgz ).isFile() )
330 ExternalProgram::Arguments cmd;
331 cmd.push_back( "tar" );
332 cmd.push_back( "-t" );
333 cmd.push_back( "-z" );
334 cmd.push_back( "-f" );
335 cmd.push_back( licenseTgz.asString() );
338 ExternalProgram prog( cmd, ExternalProgram::Stderr_To_Stdout );
339 for ( std::string output( prog.receiveLine() ); output.length(); output = prog.receiveLine() )
341 static const C_Str license( "license." );
342 static const C_Str dotTxt( ".txt\n" );
343 if ( str::hasPrefix( output, license ) && str::hasSuffix( output, dotTxt ) )
345 if ( output.size() <= license.size() + dotTxt.size() ) // license.txt
346 ret.insert( Locale() );
348 ret.insert( Locale( std::string( output.c_str()+license.size(), output.size()- license.size() - dotTxt.size() ) ) );
352 WAR << " " << output;
359 ///////////////////////////////////////////////////////////////////
361 std::ostream & RepoInfo::dumpOn( std::ostream & str ) const
363 RepoInfoBase::dumpOn(str);
364 for ( urls_const_iterator it = baseUrlsBegin();
368 str << "- url : " << *it << std::endl;
370 str << "- path : " << path() << std::endl;
371 str << "- type : " << type() << std::endl;
372 str << "- priority : " << priority() << std::endl;
374 str << "- gpgcheck : " << gpgCheck() << std::endl;
375 str << "- gpgkey : " << gpgKeyUrl() << std::endl;
376 str << "- keeppackages: " << keepPackages() << std::endl;
377 str << "- service : " << service() << std::endl;
379 if (!targetDistribution().empty())
380 str << "- targetdistro: " << targetDistribution() << std::endl;
382 if (!metadataPath().empty())
383 str << "- metadataPath: " << metadataPath() << std::endl;
388 std::ostream & RepoInfo::dumpAsIniOn( std::ostream & str ) const
390 RepoInfoBase::dumpAsIniOn(str);
392 if ( ! _pimpl->baseUrls.empty() )
394 for ( url_set::const_iterator it = _pimpl->baseUrls.begin();
395 it != _pimpl->baseUrls.end();
401 if ( ! _pimpl->path.empty() )
402 str << "path="<< path() << endl;
404 if ( ! (_pimpl->mirrorlist_url.asString().empty()) )
405 str << "mirrorlist=" << _pimpl->mirrorlist_url << endl;
407 str << "type=" << type().asString() << endl;
409 if ( priority() != defaultPriority() )
410 str << "priority=" << priority() << endl;
412 if (!indeterminate(_pimpl->gpgcheck))
413 str << "gpgcheck=" << (gpgCheck() ? "1" : "0") << endl;
414 if ( ! (gpgKeyUrl().asString().empty()) )
415 str << "gpgkey=" <<gpgKeyUrl() << endl;
417 if (!indeterminate(_pimpl->keeppackages))
418 str << "keeppackages=" << keepPackages() << endl;
420 if( ! service().empty() )
421 str << "service=" << service() << endl;
426 std::ostream & RepoInfo::dumpAsXMLOn( std::ostream & str) const
427 { return dumpAsXMLOn(str, ""); }
429 std::ostream & RepoInfo::dumpAsXMLOn( std::ostream & str, const std::string & content) const
434 << " alias=\"" << escape(alias()) << "\""
435 << " name=\"" << escape(name()) << "\"";
436 if (type() != repo::RepoType::NONE)
437 str << " type=\"" << type().asString() << "\"";
439 << " enabled=\"" << enabled() << "\""
440 << " autorefresh=\"" << autorefresh() << "\""
441 << " gpgcheck=\"" << gpgCheck() << "\"";
442 if (!(tmpstr = gpgKeyUrl().asString()).empty())
443 str << " gpgkey=\"" << escape(tmpstr) << "\"";
444 if (!(tmpstr = mirrorListUrl().asString()).empty())
445 str << " mirrorlist=\"" << escape(tmpstr) << "\"";
448 for (RepoInfo::urls_const_iterator urlit = baseUrlsBegin();
449 urlit != baseUrlsEnd(); ++urlit)
450 str << "<url>" << escape(urlit->asString()) << "</url>" << endl;
452 str << "</repo>" << endl;
457 std::ostream & operator<<( std::ostream & str, const RepoInfo & obj )
459 return obj.dumpOn(str);
463 /////////////////////////////////////////////////////////////////
465 ///////////////////////////////////////////////////////////////////