blob: d91b67f67baf00e9525e8d06afe29ef710e13917 [file] [log] [blame]
[email protected]90509cb2011-03-25 18:46:381// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]bcff05a2010-04-14 01:46:432// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_FILE_VERSION_INFO_WIN_H_
6#define BASE_FILE_VERSION_INFO_WIN_H_
[email protected]bcff05a2010-04-14 01:46:437
fdoray5b7de9e92016-06-29 23:13:118#include <windows.h>
9
10#include <stdint.h>
11
dcheng093de9b2016-04-04 21:25:5112#include <memory>
[email protected]bcff05a2010-04-14 01:46:4313#include <string>
fdoray5b7de9e92016-06-29 23:13:1114#include <vector>
[email protected]bcff05a2010-04-14 01:46:4315
[email protected]0bea7252011-08-05 15:34:0016#include "base/base_export.h"
[email protected]bcff05a2010-04-14 01:46:4317#include "base/file_version_info.h"
avi9b6f42932015-12-26 22:15:1418#include "base/macros.h"
[email protected]bcff05a2010-04-14 01:46:4319
20struct tagVS_FIXEDFILEINFO;
21typedef tagVS_FIXEDFILEINFO VS_FIXEDFILEINFO;
22
mgiuca8137fc22015-05-07 02:20:3123class BASE_EXPORT FileVersionInfoWin : public FileVersionInfo {
[email protected]bcff05a2010-04-14 01:46:4324 public:
mgiuca8137fc22015-05-07 02:20:3125 ~FileVersionInfoWin() override;
[email protected]bcff05a2010-04-14 01:46:4326
27 // Accessors to the different version properties.
28 // Returns an empty string if the property is not found.
dchengfbce1262015-04-17 07:35:4629 base::string16 company_name() override;
30 base::string16 company_short_name() override;
31 base::string16 product_name() override;
32 base::string16 product_short_name() override;
33 base::string16 internal_name() override;
34 base::string16 product_version() override;
35 base::string16 private_build() override;
36 base::string16 special_build() override;
37 base::string16 comments() override;
38 base::string16 original_filename() override;
39 base::string16 file_description() override;
40 base::string16 file_version() override;
41 base::string16 legal_copyright() override;
42 base::string16 legal_trademarks() override;
43 base::string16 last_change() override;
44 bool is_official_build() override;
[email protected]bcff05a2010-04-14 01:46:4345
46 // Lets you access other properties not covered above.
mgiuca8137fc22015-05-07 02:20:3147 bool GetValue(const wchar_t* name, std::wstring* value);
[email protected]bcff05a2010-04-14 01:46:4348
49 // Similar to GetValue but returns a wstring (empty string if the property
50 // does not exist).
mgiuca8137fc22015-05-07 02:20:3151 std::wstring GetStringValue(const wchar_t* name);
[email protected]bcff05a2010-04-14 01:46:4352
53 // Get the fixed file info if it exists. Otherwise NULL
fdoray5b7de9e92016-06-29 23:13:1154 const VS_FIXEDFILEINFO* fixed_file_info() const { return fixed_file_info_; }
[email protected]bcff05a2010-04-14 01:46:4355
56 private:
fdoray5b7de9e92016-06-29 23:13:1157 friend FileVersionInfo;
58
59 // |data| is a VS_VERSION_INFO resource. |language| and |code_page| are
60 // extracted from the \VarFileInfo\Translation value of |data|.
61 FileVersionInfoWin(std::vector<uint8_t>&& data,
62 WORD language,
63 WORD code_page);
64 FileVersionInfoWin(void* data, WORD language, WORD code_page);
65
66 const std::vector<uint8_t> owned_data_;
67 const void* const data_;
68 const WORD language_;
69 const WORD code_page_;
70
71 // This is a pointer into |data_| if it exists. Otherwise nullptr.
72 const VS_FIXEDFILEINFO* const fixed_file_info_;
[email protected]bcff05a2010-04-14 01:46:4373
74 DISALLOW_COPY_AND_ASSIGN(FileVersionInfoWin);
75};
76
77#endif // BASE_FILE_VERSION_INFO_WIN_H_