summaryrefslogtreecommitdiff
path: root/shared/Thumbnail/thumbnail.cpp
blob: 51635ff94bf4c4a58d45ec288ed24ee17233130b (plain)
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
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) 2008-2011 ZenJu (zhnmju123 AT gmx.de)                    *
// **************************************************************************

#include "thumbnail.h"

#define WIN32_LEAN_AND_MEAN
#include "windows.h"

#define STRICT_TYPED_ITEMIDS //better type safety for IDLists
#include <Shlobj.h>

#include <Shellapi.h>
#include <CommonControls.h>
#include "../com_ptr.h"
#include "../string_tools.h"
#include "../loki/ScopeGuard.h"
//#include "../perf.h"

using namespace zen;


thumb::HICON thumb::getThumbnail(const wchar_t* filename, int requestedSize) //return 0 on failure, caller takes ownership!
{
    const std::wstring filenameStr(filename);

    util::ComPtr<IShellFolder> shellFolder;
    {
        HRESULT hr = ::SHGetDesktopFolder(shellFolder.init());
        if (FAILED(hr) || !shellFolder)
            return NULL;
    }

    PIDLIST_RELATIVE pidlFolder = NULL;
    {
        const std::wstring pathName = beforeLast(filenameStr, '\\');
        HRESULT hr = shellFolder->ParseDisplayName(NULL,             // [in]       HWND hwnd,
                                                   NULL,             // [in]       IBindCtx *pbc,
                                                   const_cast<LPWSTR>(pathName.c_str()), // [in]       LPWSTR pszDisplayName,
                                                   NULL,             // [out]      ULONG *pchEaten,
                                                   &pidlFolder,      // [out]      PIDLIST_RELATIVE* ppidl,
                                                   NULL);            // [in, out]  ULONG *pdwAttributes
        if (FAILED(hr) || !pidlFolder)
            return NULL;
    }
    LOKI_ON_BLOCK_EXIT2(::ILFree(pidlFolder)); //older version: ::CoTaskMemFree

    util::ComPtr<IShellFolder> imageFolder;
    {
        HRESULT hr = shellFolder->BindToObject(pidlFolder, // [in]   PCUIDLIST_RELATIVE pidl,
                                               NULL,
                                               IID_PPV_ARGS(imageFolder.init()));
        if (FAILED(hr) || !imageFolder)
            return NULL;
    }

    PIDLIST_RELATIVE pidImage = NULL;
    {
        const std::wstring shortName = afterLast(filenameStr, '\\');
        HRESULT hr = imageFolder->ParseDisplayName(NULL,             // [in]       HWND hwnd,
                                                   NULL,             // [in]       IBindCtx *pbc,
                                                   const_cast<LPWSTR>(shortName.c_str()), // [in]       LPWSTR pszDisplayName,
                                                   NULL,             // [out]      ULONG *pchEaten,
                                                   &pidImage,        // [out]      PIDLIST_RELATIVE *ppidl,
                                                   NULL);            // [in, out]  ULONG *pdwAttributes
        if (FAILED(hr) || !pidImage)
            return NULL;
    }
    LOKI_ON_BLOCK_EXIT2(::ILFree(pidImage)); //older version: ::CoTaskMemFree

    util::ComPtr<IExtractImage> extractImage;
    {
        PCUITEMID_CHILD_ARRAY pidlIn = reinterpret_cast<PCUITEMID_CHILD_ARRAY>(&pidImage);
        //this is where STRICT_TYPED_ITEMIDS gets us ;)

        HRESULT hr = imageFolder->GetUIObjectOf(NULL,              // [in]       HWND hwndOwner,
                                                1,                 // [in]       UINT cidl,
                                                pidlIn,            // [in]       PCUITEMID_CHILD_ARRAY apidl,
                                                IID_IExtractImage, // [in]       REFIID riid,
                                                NULL,              // [in, out]  UINT *rgfReserved,
                                                reinterpret_cast<void**>(extractImage.init())); // [out]      void **ppv
        if (FAILED(hr) || !extractImage)
            return NULL;
    }

    {
        wchar_t pathBuffer[MAX_PATH];
        DWORD priority = 0;
        const SIZE prgSize = { requestedSize, requestedSize }; //preferred size only!
        DWORD clrDepth = 32;
        DWORD flags = IEIFLAG_SCREEN | IEIFLAG_OFFLINE;

        HRESULT hr = extractImage->GetLocation(pathBuffer, // [out]      LPWSTR pszPathBuffer,
                                               MAX_PATH,   // [in]       DWORD cchMax,
                                               &priority,  // [out]      DWORD *pdwPriority,
                                               &prgSize,   // [in]       const SIZE *prgSize,
                                               clrDepth,   // [in]       DWORD dwRecClrDepth,
                                               &flags);    // [in, out]  DWORD *pdwFlags
        if (FAILED(hr))
            return NULL;
    }

    HBITMAP bitmap = NULL;
    {
        HRESULT hr = extractImage->Extract(&bitmap);
        if (FAILED(hr) || !bitmap)
            return NULL;
    }
    LOKI_ON_BLOCK_EXIT2(::DeleteObject(bitmap));


    BITMAP bmpInfo = {};
    if (::GetObject(bitmap,          //__in   HGDIOBJ hgdiobj,
                    sizeof(bmpInfo), //__in   int cbBuffer,
                    &bmpInfo) == 0)  //__out  LPVOID lpvObject
        return NULL;

    HBITMAP bitmapMask = ::CreateCompatibleBitmap(::GetDC(NULL), bmpInfo.bmWidth, bmpInfo.bmHeight);
    if (bitmapMask == 0)
        return NULL;
    LOKI_ON_BLOCK_EXIT2(::DeleteObject(bitmapMask));

    ICONINFO iconInfo = {};
    iconInfo.fIcon    = true;
    iconInfo.hbmColor = bitmap;
    iconInfo.hbmMask  = bitmapMask;

    return ::CreateIconIndirect(&iconInfo);
}


thumb::HICON thumb::getIconByIndex(int iconIndex, int shilIconType) //return 0 on failure, caller takes ownership!
{
    //Note: using IExtractIcon::Extract is *no* alternative, just as ::SHGetFileInfo(), it only supports small (16x16) and large (32x32) icons

    util::ComPtr<IImageList> imageList; //perf: 0,12 µs only to get the image list
    {
        HRESULT hr = ::SHGetImageList(shilIconType, //__in   int iImageList,
                                      IID_PPV_ARGS(imageList.init()));
        if (FAILED(hr) || !imageList)
            return NULL;
    }

    bool hasAlpha = false; //perf: 0,14 µs
    {
        DWORD flags = 0;
        HRESULT hr = imageList->GetItemFlags(iconIndex, //[in]   int i,
                                             &flags);   //[out]  DWORD *dwFlags
        if (SUCCEEDED(hr))
            hasAlpha = flags & ILIF_ALPHA;
    }

    ::HICON hIcon = NULL; //perf: 1,5 ms - the dominant block
    {
        HRESULT hr = imageList->GetIcon(iconIndex, // [in]   int i,
                                        hasAlpha ? ILD_IMAGE : ILD_NORMAL, // [in]   UINT flags,
                                        //ILD_IMAGE -> do not draw mask - fixes glitch with ILD_NORMAL where both mask *and* alpha channel are applied, e.g. for ffs_batch and folder icon
                                        //other flags: http://msdn.microsoft.com/en-us/library/windows/desktop/bb775230(v=vs.85).aspx
                                        &hIcon); // [out]  HICON *picon
        if (FAILED(hr) || !hIcon)
            return NULL;
    }

    return hIcon;
}
bgstack15