1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
|
/*
* Copyright (C) 2013 Canonical Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program 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, see <http://www.gnu.org/licenses/>.
*
* Authored by: Jussi Pakkanen <jussi.pakkanen@canonical.com>
* Michi Henning <michi.henning@canonical.com>
* James Henstridge <james.henstridge@canonical.com>
*/
#include <internal/thumbnailer.h>
#include <internal/artreply.h>
#include <internal/cachehelper.h>
#include <internal/check_access.h>
#include <internal/image.h>
#include <internal/imageextractor.h>
#include <internal/local_album_art.h>
#include <internal/make_directories.h>
#include <internal/mimetype.h>
#include <internal/raii.h>
#include <internal/safe_strerror.h>
#include <internal/settings.h>
#include <internal/ubuntuserverdownloader.h>
#include <internal/version.h>
#include <boost/filesystem.hpp>
#include <boost/format.hpp>
#include <lomiri/LomiriExceptions.h>
#include <fcntl.h>
#include <sys/stat.h>
using namespace std;
namespace lomiri
{
namespace thumbnailer
{
namespace internal
{
namespace
{
enum class Location
{
local,
remote
};
} // namespace
class RequestBase : public ThumbnailRequest
{
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
Q_OBJECT
#ifdef __clang__
#pragma clang diagnostic pop
#endif
public:
virtual ~RequestBase() = default;
QByteArray thumbnail() override;
FetchStatus status() const override;
string const& key() const override
{
return key_;
}
void check_client_credentials(uid_t, std::string const&) override
{
}
enum class CachePolicy
{
cache_fullsize,
dont_cache_fullsize
};
struct ImageData
{
FetchStatus status;
Image image;
CachePolicy cache_policy;
Location location;
ImageData(Image const& image, CachePolicy policy, Location location)
: status(FetchStatus::downloaded)
, image(image)
, cache_policy(policy)
, location(location)
{
}
ImageData(FetchStatus status, CachePolicy policy, Location location)
: status(status)
, image(Image())
, cache_policy(policy)
, location(location)
{
}
ImageData(ImageData&&) = default;
ImageData& operator=(ImageData&&) = default;
};
void set_error_message(string const& msg)
{
error_message_ = msg;
}
string error_message() const
{
return error_message_;
}
protected:
RequestBase(Thumbnailer* thumbnailer,
string const& key,
QSize const& requested_size,
chrono::milliseconds timeout);
virtual ImageData fetch(QSize const& size_hint) noexcept = 0;
ArtDownloader* downloader() const
{
return thumbnailer_->downloader_.get();
}
// LCOV_EXCL_START
string printable_key() const
{
// Substitute "\\0" for all occurrences of '\0' in key_.
string new_key;
string::size_type start_pos = 0;
string::size_type end_pos;
while ((end_pos = key_.find('\0', start_pos)) != string::npos)
{
new_key += key_.substr(start_pos, end_pos - start_pos);
new_key += "\\0";
start_pos = end_pos + 1;
}
if (start_pos != string::npos)
{
new_key += key_.substr(start_pos, end_pos);
}
return new_key;
}
// LCOV_EXCL_STOP
Thumbnailer* thumbnailer_;
string key_;
QSize const requested_size_;
string error_message_;
chrono::milliseconds timeout_;
private:
FetchStatus status_;
};
namespace
{
class LocalThumbnailRequest : public RequestBase
{
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
Q_OBJECT
#ifdef __clang__
#pragma clang diagnostic pop
#endif
public:
LocalThumbnailRequest(Thumbnailer* thumbnailer,
string const& filename,
QSize const& requested_size,
chrono::milliseconds timeout);
void check_client_credentials(uid_t user, std::string const& label) override;
protected:
ImageData fetch(QSize const& size_hint) noexcept override;
void download(std::chrono::milliseconds timeout) override;
private:
string filename_;
unique_ptr<ImageExtractor> image_extractor_;
};
class FDLocalThumbnailRequest : public LocalThumbnailRequest {
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
Q_OBJECT
#ifdef __clang__
#pragma clang diagnostic pop
#endif
public:
FDLocalThumbnailRequest(Thumbnailer* thumbnailer,
FdPtr fd,
QSize const& requested_size,
chrono::milliseconds timeout);
void check_client_credentials(uid_t user, std::string const& label) override;
private:
FdPtr fd_;
};
class AlbumRequest : public RequestBase
{
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
Q_OBJECT
#ifdef __clang__
#pragma clang diagnostic pop
#endif
public:
AlbumRequest(Thumbnailer* thumbnailer,
string const& artist,
string const& album,
QSize const& requested_size,
chrono::milliseconds timeout);
protected:
ImageData fetch(QSize const& size_hint) noexcept override;
void download(std::chrono::milliseconds timeout) override;
private:
string artist_;
string album_;
shared_ptr<ArtReply> artreply_;
};
class ArtistRequest : public RequestBase
{
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winconsistent-missing-override"
#endif
Q_OBJECT
#ifdef __clang__
#pragma clang diagnostic pop
#endif
public:
ArtistRequest(Thumbnailer* thumbnailer,
string const& artist,
string const& album,
QSize const& requested_size,
chrono::milliseconds timeout);
protected:
ImageData fetch(QSize const& size_hint) noexcept override;
void download(std::chrono::milliseconds timeout) override;
private:
string artist_;
string album_;
shared_ptr<ArtReply> artreply_;
};
} // namespace
RequestBase::RequestBase(Thumbnailer* thumbnailer,
string const& key,
QSize const& requested_size,
chrono::milliseconds timeout)
: thumbnailer_(thumbnailer)
, key_(key)
, requested_size_(requested_size)
, timeout_(timeout)
, status_(FetchStatus::needs_download)
{
}
// Main look-up logic for thumbnails.
//
// key_ is set by the subclass to uniquely identify what is being
// thumbnailed. For online art, this includes the artist and album.
// For local thumbnails, this includes the path name, inode, mtime,
// and ctime.
//
// We first look in the cache to see if we have a thumbnail already
// for the provided key and size. If not, we check whether a
// full-size image was downloaded previously and is still hanging
// around. If no image is available in the full size cache, we call
// the fetch() routine (implemented by the subclass), which will
// either (a) report that the data needs to be downloaded, (b) return
// the full size image ready for scaling, or (c) report an error.
//
// If the data needs downloading, we return immediately. Similarly,
// we return in case of an error. If the data is available, it may be
// stored in the full size cache.
//
// At this point we have the image data, so scale it to the desired
// size, store the scaled version to the thumbnail cache and return
// it.
QByteArray RequestBase::thumbnail()
{
try
{
// This is logged here as well as on the Qt/QML side because,
// at least in theory, someone could talk to the DBus interface
// directly without going through the official client-side API.
if (!requested_size_.isValid())
{
QString msg;
QTextStream s(&msg, QIODevice::WriteOnly);
s << "invalid size: " << "(" << requested_size_.width() << "," << requested_size_.height()
<< ")";
qWarning().nospace().noquote() << msg << ", key = " << QString::fromStdString(printable_key());
throw invalid_argument(msg.toStdString());
}
// Enforce size limitation.
auto target_size = QSize(thumbnailer_->max_size_, thumbnailer_->max_size_);
if (requested_size_.width() != 0)
{
target_size.setWidth(min(requested_size_.width(), thumbnailer_->max_size_));
}
if (requested_size_.height() != 0)
{
target_size.setHeight(min(requested_size_.height(), thumbnailer_->max_size_));
}
string sized_key = key_;
sized_key += '\0';
sized_key += to_string(target_size.width());
sized_key += '\0';
sized_key += to_string(target_size.height());
// Check if we have the thumbnail in the cache already.
assert(thumbnailer_);
assert(thumbnailer_->thumbnail_cache_);
auto thumbnail = thumbnailer_->thumbnail_cache_->get(sized_key);
if (thumbnail)
{
status_ = FetchStatus::cache_hit;
return QByteArray::fromStdString(*thumbnail);
}
// Don't have the thumbnail yet, see if we have the original image around.
auto full_size = thumbnailer_->full_size_cache_->get(key_);
Image scaled_image;
if (full_size)
{
status_ = ThumbnailRequest::FetchStatus::scaled_from_fullsize;
scaled_image = Image(*full_size, target_size);
full_size = ""; // Release memory
}
else
{
// Try and download or read the artwork, provided that we don't
// have this image in the failure cache. We use get()
// here instead of contains_key(), so the stats for the
// failure cache are updated.
if (thumbnailer_->failure_cache_->get(key_))
{
status_ = ThumbnailRequest::FetchStatus::cached_failure;
return "";
}
ImageData image_data = fetch(target_size);
status_ = image_data.status;
switch (status_)
{
case FetchStatus::downloaded: // Success, we'll return the thumbnail below.
if (image_data.location == Location::remote)
{
thumbnailer_->backoff_.reset();
}
break;
case FetchStatus::needs_download: // Caller will call download().
if (image_data.location == Location::remote)
{
// If we had the last failure within the retry limit, don't attempt the download.
if (!thumbnailer_->backoff_.retry_ok())
{
qWarning() << "RequestBase::thumbnail(): server access retry time not reached yet";
status_ = ThumbnailRequest::FetchStatus::temporary_error;
}
}
return "";
case FetchStatus::network_down: // Try again next time.
return ""; // LCOV_EXCL_LINE // No way to test this without physically disabling network.
case FetchStatus::not_found:
{
// Authoritative answer that artwork does not exist.
// For local files, we don't set an expiry time because, if the file is
// changed (say, such that artwork is added), the file's key will change too.
// For remote files, we try again after one week.
chrono::time_point<std::chrono::system_clock> later; // Infinite expiry time
if (image_data.location == Location::remote)
{
later = chrono::system_clock::now() + chrono::hours(thumbnailer_->retry_not_found_hours_);
}
thumbnailer_->failure_cache_->put(key_, "", later);
if (image_data.location == Location::remote)
{
// Even though we didn't get an image, the request itself worked.
thumbnailer_->backoff_.reset();
}
return "";
}
case FetchStatus::hard_error:
{
// No chance of recovery, the problem is with the request data.
thumbnailer_->failure_cache_->put(key_, "");
if (image_data.location == Location::remote)
{
// Even though we didn't get an image, the request itself worked.
thumbnailer_->backoff_.reset();
}
return "";
}
case FetchStatus::temporary_error:
{
// Extraction failure for local media is always a hard error.
assert(image_data.location == Location::remote);
// Some non-authoritative failure, such as the server not responding.
if (thumbnailer_->backoff_.adjust_retry_limit())
{
qWarning() << "RequestBase::thumbnail(): unexpected download error, disabling server access for"
<< thumbnailer_->backoff_.backoff_period().count() << "seconds";
}
return "";
}
case FetchStatus::timeout:
{
// Extraction for local media never returns a timeout error.
assert(image_data.location == Location::remote);
// We do not treat remote request timeout as a temporary error because the
// remote server can be slow when 7digital is slow, which happens quite often.
qWarning() << "RequestBase::thumbnail(): request timed out";
// No backoff reset here. Timeouts are like requests that don't return an image,
// except that timeout is not authoritative.
return "";
}
default:
abort(); // LCOV_EXCL_LINE // Impossible
}
// We keep the full-size version around for a while because it
// is likely that the caller will ask for small thumbnail
// first (for initial search results), followed by a larger
// thumbnail (for a preview). If so, we don't download the
// artwork a second time.
if (image_data.cache_policy == CachePolicy::cache_fullsize)
{
auto w = image_data.image.width();
auto h = image_data.image.height();
auto max_size = thumbnailer_->max_size_;
if (max(w, h) > max_size)
{
// Don't put ridiculously large images into the full-size cache.
// We scale in place here to release memory immediately. This
// might cause a second scaling operation below, but the
// quality loss is negligible when scaling from something larger
// than max_size to max_size, and then scaling a second time.
image_data.image = image_data.image.scale(QSize(max_size, max_size));
}
// Keep high-quality image.
thumbnailer_->full_size_cache_->put(key_, image_data.image.jpeg_or_png_data(90));
}
// If the image is already within the target dimensions, this
// will be a no-op.
scaled_image = image_data.image.scale(target_size);
image_data.image = Image();
}
string data = scaled_image.jpeg_or_png_data();
scaled_image = Image();
thumbnailer_->thumbnail_cache_->put(sized_key, data);
return QByteArray::fromStdString(data);
}
// LCOV_EXCL_START
catch (std::exception const& e)
{
// Something totally unexpected happened.
string msg = "RequestBase::thumbnail(): key = " + printable_key() + ": " + e.what();
qCritical() << QString::fromStdString(msg);
throw lomiri::ResourceException(msg);
}
// LCOV_EXCL_STOP
}
ThumbnailRequest::FetchStatus RequestBase::status() const
{
return status_;
}
LocalThumbnailRequest::LocalThumbnailRequest(Thumbnailer* thumbnailer,
string const& filename,
QSize const& requested_size,
chrono::milliseconds timeout)
: RequestBase(thumbnailer, "", requested_size, timeout)
, filename_(filename)
{
if (!boost::filesystem::path(filename).is_absolute())
{
throw runtime_error("LocalThumbnailRequest(): " + filename_ + ": file name must be an absolute path");
}
// We canonicalise the path name both to avoid caching the file
// multiple times, and to ensure our access checks are against the
// real file rather than a symlink.
filename_ = boost::filesystem::canonical(filename).native();
struct stat st;
if (stat(filename_.c_str(), &st) < 0)
{
// LCOV_EXCL_START
throw runtime_error("LocalThumbnailRequest(): Could not stat " + filename_ + ": " + safe_strerror(errno));
// LCOV_EXCL_STOP
}
if (!S_ISREG(st.st_mode))
{
throw runtime_error("LocalThumbnailRequest(): '" + filename_ + "' is not a regular file");
}
// The full cache key for the file is the concatenation of path
// name, inode, modification time, and inode modification time
// (because permissions may change). If the file exists with the
// same path on different removable media, or the file was
// modified since we last cached it, the key will be
// different. There is no point in trying to remove such stale
// entries from the cache. Instead, we just let the normal
// eviction mechanism take care of them (because stale thumbnails
// due to file removal or file update are rare).
key_ = filename_;
key_ += '\0';
key_ += to_string(st.st_ino);
key_ += '\0';
key_ += to_string(st.st_mtim.tv_sec) + "." + to_string(st.st_mtim.tv_nsec);
key_ += '\0';
key_ += to_string(st.st_ctim.tv_sec) + "." + to_string(st.st_ctim.tv_nsec);
}
void LocalThumbnailRequest::check_client_credentials(uid_t user,
std::string const& label)
{
if (user != geteuid())
{
throw runtime_error("LocalThumbnailRequest::fetch(): Request comes from a different user ID");
}
if (!apparmor_can_read(label, filename_)) {
// LCOV_EXCL_START
qDebug() << "Apparmor label" << QString::fromStdString(label) << "has no access to" << QString::fromStdString(filename_);
throw runtime_error("LocalThumbnailRequest::fetch(): AppArmor policy forbids access to " + filename_);
// LCOV_EXCL_STOP
}
}
RequestBase::ImageData LocalThumbnailRequest::fetch(QSize const& size_hint) noexcept
{
// Default in case something below throws.
ImageData image_data(FetchStatus::hard_error, CachePolicy::dont_cache_fullsize, Location::local);
try
{
if (image_extractor_)
{
// The image data has been extracted via vs-thumb. Update image_data policy in case read() throws.
image_data.cache_policy = CachePolicy::cache_fullsize;
return ImageData(Image(image_extractor_->read()), CachePolicy::cache_fullsize, Location::local);
}
string content_type = get_mimetype(filename_);
assert(!content_type.empty());
// Call the appropriate image extractor and return the image data as JPEG (not scaled).
// We indicate that full-size images are to be cached only for video files,
// for which extraction is expensive. For local audio and images, we don't cache full size.
if (content_type.find("image/") == 0)
{
FdPtr fd(open(filename_.c_str(), O_RDONLY | O_CLOEXEC), do_close);
if (fd.get() < 0)
{
// LCOV_EXCL_START
throw runtime_error("LocalThumbnailRequest::fetch(): Could not open " + filename_ + ": " + safe_strerror(errno));
// LCOV_EXCL_STOP
}
Image scaled(fd.get(), size_hint);
return ImageData(scaled, CachePolicy::dont_cache_fullsize, Location::local);
}
else if (content_type.find("audio/") == 0)
{
string art = extract_local_album_art(filename_);
if (!art.empty())
{
return ImageData(Image(art), CachePolicy::dont_cache_fullsize, Location::local);
}
}
else if (content_type.find("video/") == 0)
{
return ImageData(FetchStatus::needs_download, CachePolicy::cache_fullsize, Location::local);
}
}
catch (std::exception const& e)
{
qCritical().nospace() << "LocalThumbnailRequest::fetch(): " << e.what();
set_error_message(e.what());
return image_data;
}
return ImageData(FetchStatus::not_found, image_data.cache_policy, Location::local);
}
void LocalThumbnailRequest::download(chrono::milliseconds timeout)
{
if (timeout.count() == 0)
{
timeout = timeout_;
}
image_extractor_.reset(new ImageExtractor(filename_, timeout));
connect(image_extractor_.get(), &ImageExtractor::finished, this, &LocalThumbnailRequest::downloadFinished,
Qt::DirectConnection);
image_extractor_->extract();
}
FDLocalThumbnailRequest::FDLocalThumbnailRequest(Thumbnailer* thumbnailer,
FdPtr fd,
QSize const& requested_size,
chrono::milliseconds timeout)
: LocalThumbnailRequest(
thumbnailer,
/* We can do this because the path will be canonicalized. */
(boost::format("/proc/self/fd/%d") % fd.get()).str(),
requested_size,
timeout)
, fd_(std::move(fd))
{
int flags = fcntl(fd_.get(), F_GETFL);
if (flags & O_PATH || flags & O_WRONLY) {
/*
* Sneaky client; doesn't necessarily have the permission to read.
* We have to do this because we convert the FD to file path before
* further processing.
*
* FIXME: in the future, consider reading directly from FD, all the way
* to vs-thumb.
*/
throw runtime_error("LocalThumbnailRequest(): client doesn't necessarily have permission to read the file.");
}
}
void FDLocalThumbnailRequest::check_client_credentials(uid_t user,
std::string const& /* label */)
{
if (user != geteuid())
{
throw runtime_error("LocalThumbnailRequest::fetch(): Request comes from a different user ID");
}
/*
* No need to to check AppArmor; the possesion of FD proves by itself that
* the client can access this file.
*/
}
AlbumRequest::AlbumRequest(Thumbnailer* thumbnailer,
string const& artist,
string const& album,
QSize const& requested_size,
chrono::milliseconds timeout)
: RequestBase(thumbnailer, artist + '\0' + album + '\0' + "album", requested_size, timeout)
, artist_(artist)
, album_(album)
{
}
namespace
{
// Logic for AlbumRequest::fetch() and ArtistRequest::fetch() is the same,
// so we use this helper function for both.
RequestBase::ImageData common_fetch(RequestBase* request, shared_ptr<ArtReply> const& artreply) noexcept
{
assert(request);
RequestBase::ImageData image_data(RequestBase::FetchStatus::needs_download,
RequestBase::CachePolicy::cache_fullsize,
Location::remote);
if (!artreply)
{
return image_data;
}
request->set_error_message(artreply->error_string().toStdString()); // Default for below.
switch (artreply->status())
{
case ArtReply::Status::success:
{
try
{
auto raw_data = artreply->data();
Image full_size(string(raw_data.constData(), raw_data.size()));
return RequestBase::ImageData(full_size, RequestBase::CachePolicy::cache_fullsize, Location::remote);
}
catch (std::exception const& e)
{
request->set_error_message(e.what());
image_data.status = RequestBase::FetchStatus::hard_error;
return image_data;
}
}
case ArtReply::Status::not_found:
image_data.status = RequestBase::FetchStatus::not_found;
return image_data;
case ArtReply::Status::temporary_error:
image_data.status = RequestBase::FetchStatus::temporary_error;
return image_data;
case ArtReply::Status::hard_error:
image_data.status = RequestBase::FetchStatus::hard_error;
return image_data;
case ArtReply::Status::timeout:
image_data.status = RequestBase::FetchStatus::timeout;
return image_data;
case ArtReply::Status::network_down:
// LCOV_EXCL_START
image_data.status = RequestBase::FetchStatus::network_down;
return image_data;
// LCOV_EXCL_STOP
default:
abort(); // LCOV_EXCL_LINE // Impossible
}
}
} // namespace
RequestBase::ImageData AlbumRequest::fetch(QSize const& /*size_hint*/) noexcept
{
return common_fetch(this, artreply_);
}
void AlbumRequest::download(chrono::milliseconds timeout)
{
if (timeout.count() == 0)
{
timeout = timeout_;
}
artreply_ = downloader()->download_album(QString::fromStdString(artist_), QString::fromStdString(album_), timeout);
connect(artreply_.get(), &ArtReply::finished, this, &AlbumRequest::downloadFinished, Qt::DirectConnection);
}
ArtistRequest::ArtistRequest(Thumbnailer* thumbnailer,
string const& artist,
string const& album,
QSize const& requested_size,
chrono::milliseconds timeout)
: RequestBase(thumbnailer, artist + '\0' + album + '\0' + "artist", requested_size, timeout)
, artist_(artist)
, album_(album)
{
}
RequestBase::ImageData ArtistRequest::fetch(QSize const& /*size_hint*/) noexcept
{
return common_fetch(this, artreply_);
}
void ArtistRequest::download(chrono::milliseconds timeout)
{
if (timeout.count() == 0)
{
timeout = timeout_;
}
artreply_ = downloader()->download_artist(QString::fromStdString(artist_), QString::fromStdString(album_), timeout);
connect(artreply_.get(), &ArtReply::finished, this, &ArtistRequest::downloadFinished, Qt::DirectConnection);
}
namespace
{
// Keys under which we store the last time we had a network failure
// and the current backoff period (in seconds).
// No entry in the failure cache ever has these keys because keys for
// local files include inode number and modification times.
string const LAST_NETWORK_FAIL_TIME_KEY = "/*** LAST_NETWORK_FAIL_TIME ***/";
string const BACKOFF_PERIOD_KEY = "/*** BACKOFF_PERIOD ***/";
}
Thumbnailer::Thumbnailer()
: downloader_(new UbuntuServerDownloader())
{
string xdg_base = g_get_user_cache_dir(); // Always returns something, even HOME and XDG_CACHE_HOME are not set.
string cache_dir = xdg_base + "/lomiri-thumbnailer";
make_directories(cache_dir, 0700);
try
{
Settings settings;
full_size_cache_ = PersistentCacheHelper::open(cache_dir + "/images",
settings.full_size_cache_size() * 1024 * 1024,
core::CacheDiscardPolicy::lru_only);
thumbnail_cache_ = PersistentCacheHelper::open(cache_dir + "/thumbnails",
settings.thumbnail_cache_size() * 1024 * 1024,
core::CacheDiscardPolicy::lru_only);
failure_cache_ = PersistentCacheHelper::open(cache_dir + "/failures",
settings.failure_cache_size() * 1024 * 1024,
core::CacheDiscardPolicy::lru_ttl);
max_size_ = settings.max_thumbnail_size();
retry_not_found_hours_ = settings.retry_not_found_hours();
extraction_timeout_ = chrono::milliseconds(settings.extraction_timeout() * 1000);
backoff_.set_min_backoff(chrono::seconds(settings.extraction_timeout() * 2));
backoff_.set_max_backoff(chrono::seconds(settings.retry_error_max_seconds()));
// For transient remote errors, we read the time at which the last failure
// happened and the backoff period. The destructor writes these values back out,
// so we remember the values across re-starts. We call contains_key() to avoid generating
// a bogus cache miss in the stats.
if (failure_cache_->contains_key(LAST_NETWORK_FAIL_TIME_KEY))
{
auto last_fail_time = failure_cache_->get(LAST_NETWORK_FAIL_TIME_KEY);
auto fail_time_point = chrono::system_clock::time_point(chrono::seconds(stoll(*last_fail_time)));
backoff_.set_last_fail_time(fail_time_point);
}
if (failure_cache_->contains_key(BACKOFF_PERIOD_KEY))
{
auto backoff = failure_cache_->get(BACKOFF_PERIOD_KEY);
backoff_.set_backoff_period(chrono::seconds(stoll(*backoff)));
}
// Apply any adjustments to the caches that are version-dependent.
apply_upgrade_actions(cache_dir);
}
catch (std::exception const& e)
{
throw runtime_error(string("Thumbnailer(): Cannot instantiate cache: ") + e.what());
}
}
Thumbnailer::~Thumbnailer()
{
try
{
auto seconds = chrono::duration_cast<chrono::seconds>(backoff_.last_fail_time().time_since_epoch()).count();
failure_cache_->put(LAST_NETWORK_FAIL_TIME_KEY, to_string(seconds));
seconds = backoff_.backoff_period().count();
failure_cache_->put(BACKOFF_PERIOD_KEY, to_string(seconds));
}
// LCOV_EXCL_START
catch (std::exception const& e)
{
qDebug() << "~Thumbnailer(): cannot update network failure time:" << e.what();
}
catch (...)
{
qDebug() << "~Thumbnailer(): cannot update network failure time: unknown exception";
}
// LCOV_EXCL_STOP
}
void Thumbnailer::apply_upgrade_actions(string const& cache_dir)
{
Version v(cache_dir);
if (v.prev_cache_version() != v.cache_version)
{
// Whenever the version changes, we wipe all three caches.
// That's useful to, for example, get rid of old unknown
// artist images from the remote server or to wipe bogus
// entries in the failure cache. Changing the version
// is also needed if we ever change the way keys and values
// are stored in the caches.
qDebug() << "cache version update from" << v.prev_cache_version() << "to" << v.cache_version;
clear(Thumbnailer::CacheSelector::all);
}
}
unique_ptr<ThumbnailRequest> Thumbnailer::get_thumbnail(string const& filename,
QSize const& requested_size)
{
if (filename.empty())
{
throw lomiri::InvalidArgumentException("Thumbnailer::get_thumbnail(): filename is empty");
}
try
{
return unique_ptr<ThumbnailRequest>(
new LocalThumbnailRequest(this, filename, requested_size, extraction_timeout_));
}
catch (std::exception const&)
{
throw lomiri::ResourceException("Thumbnailer::get_thumbnail()");
}
}
unique_ptr<ThumbnailRequest> Thumbnailer::get_thumbnail_for_fd(FdPtr fd,
QSize const& requested_size)
{
if (fd.get() < 0)
{
throw lomiri::InvalidArgumentException("Thumbnailer::get_thumbnail_for_fd(): invalid FD");
}
try
{
return unique_ptr<ThumbnailRequest>(
new FDLocalThumbnailRequest(this, std::move(fd), requested_size, extraction_timeout_));
}
catch (std::exception const&)
{
throw lomiri::ResourceException("Thumbnailer::get_thumbnail_for_fd()");
}
}
unique_ptr<ThumbnailRequest> Thumbnailer::get_album_art(string const& artist,
string const& album,
QSize const& requested_size)
{
if (album.empty())
{
throw lomiri::InvalidArgumentException("Thumbnailer::get_album_art(): album is empty");
}
try
{
return unique_ptr<ThumbnailRequest>(new AlbumRequest(this, artist, album, requested_size, extraction_timeout_));
}
// LCOV_EXCL_START // Currently won't throw, we are defensive here.
catch (std::exception const&)
{
throw lomiri::ResourceException("Thumbnailer::get_album_art()"); // LCOV_EXCL_LINE
}
// LCOV_EXCL_STOP
}
unique_ptr<ThumbnailRequest> Thumbnailer::get_artist_art(string const& artist,
string const& album,
QSize const& requested_size)
{
if (artist.empty())
{
throw lomiri::InvalidArgumentException("Thumbnailer::get_artist_art(): artist is empty");
}
try
{
return unique_ptr<ThumbnailRequest>(new ArtistRequest(this, artist, album, requested_size, extraction_timeout_));
}
// LCOV_EXCL_START // Currently won't throw, we are defensive here.
catch (std::exception const&)
{
throw lomiri::ResourceException("Thumbnailer::get_artist_art()");
}
// LCOV_EXCL_STOP
}
Thumbnailer::AllStats Thumbnailer::stats() const
{
return AllStats{full_size_cache_->stats(), thumbnail_cache_->stats(), failure_cache_->stats()};
}
Thumbnailer::CacheVec Thumbnailer::select_caches(CacheSelector selector) const
{
CacheVec v;
switch (selector)
{
case Thumbnailer::CacheSelector::full_size_cache:
v.push_back(full_size_cache_.get());
break;
case Thumbnailer::CacheSelector::thumbnail_cache:
v.push_back(thumbnail_cache_.get());
break;
case Thumbnailer::CacheSelector::failure_cache:
v.push_back(failure_cache_.get());
break;
default:
v.push_back(full_size_cache_.get());
v.push_back(thumbnail_cache_.get());
v.push_back(failure_cache_.get());
break;
}
return v;
}
namespace
{
char const* cache_name(Thumbnailer::CacheSelector selector)
{
switch (selector)
{
case Thumbnailer::CacheSelector::full_size_cache:
return "image cache";
case Thumbnailer::CacheSelector::thumbnail_cache:
return "thumbnail cache";
case Thumbnailer::CacheSelector::failure_cache:
return "failure cache";
default:
return "all caches";
}
}
}
void Thumbnailer::clear_stats(CacheSelector selector)
{
for (auto c : select_caches(selector))
{
c->clear_stats();
}
qDebug() << "reset statistics for" << cache_name(selector);
}
void Thumbnailer::clear(CacheSelector selector)
{
for (auto c : select_caches(selector))
{
c->invalidate();
}
if (selector == Thumbnailer::CacheSelector::failure_cache ||
selector == Thumbnailer::CacheSelector::all)
{
// Force retry on next remote retrieval even if we
// are still within the timeout period.
backoff_.set_last_fail_time(chrono::system_clock::time_point())
.set_backoff_period(chrono::seconds(0));
}
qDebug() << "cleared" << cache_name(selector);
}
void Thumbnailer::compact(CacheSelector selector)
{
qDebug() << "compacting" << cache_name(selector);
for (auto c : select_caches(selector))
{
c->compact();
}
qDebug() << "completed compacting" << cache_name(selector);
}
} // namespace internal
} // namespace thumbnailer
} // namespace lomiri
#include "thumbnailer.moc"
|