[email protected] | 90509cb | 2011-03-25 18:46:38 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 4 | |
5 | #ifndef BASE_FILE_VERSION_INFO_H__ | ||||
6 | #define BASE_FILE_VERSION_INFO_H__ | ||||
7 | |||||
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 8 | #include "build/build_config.h" |
9 | |||||
10 | #if defined(OS_WIN) | ||||
11 | #include <windows.h> | ||||
12 | // http://blogs.msdn.com/oldnewthing/archive/2004/10/25/247180.aspx | ||||
13 | extern "C" IMAGE_DOS_HEADER __ImageBase; | ||||
14 | #endif // OS_WIN | ||||
15 | |||||
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 16 | #include <string> |
17 | |||||
[email protected] | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 18 | #include "base/base_export.h" |
[email protected] | 4f260d0 | 2010-12-23 18:35:42 | [diff] [blame] | 19 | #include "base/string16.h" |
[email protected] | 72c93c70 | 2008-08-05 20:00:26 | [diff] [blame] | 20 | |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 21 | namespace base { |
[email protected] | f539333 | 2009-06-03 15:01:29 | [diff] [blame] | 22 | class FilePath; |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 23 | } |
[email protected] | f539333 | 2009-06-03 15:01:29 | [diff] [blame] | 24 | |
[email protected] | 4f260d0 | 2010-12-23 18:35:42 | [diff] [blame] | 25 | // Provides an interface for accessing the version information for a file. This |
26 | // is the information you access when you select a file in the Windows Explorer, | ||||
27 | // right-click select Properties, then click the Version tab, and on the Mac | ||||
28 | // when you select a file in the Finder and do a Get Info. | ||||
29 | // | ||||
30 | // This list of properties is straight out of Win32's VerQueryValue | ||||
31 | // <http://msdn.microsoft.com/en-us/library/ms647464.aspx> and the Mac | ||||
32 | // version returns values from the Info.plist as appropriate. TODO(avi): make | ||||
33 | // this a less-obvious Windows-ism. | ||||
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 34 | |
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 35 | class FileVersionInfo { |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 36 | public: |
[email protected] | e462cf5 | 2010-05-21 23:00:17 | [diff] [blame] | 37 | virtual ~FileVersionInfo() {} |
[email protected] | bcff05a | 2010-04-14 01:46:43 | [diff] [blame] | 38 | #if defined(OS_WIN) || defined(OS_MACOSX) |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 39 | // Creates a FileVersionInfo for the specified path. Returns NULL if something |
40 | // goes wrong (typically the file does not exit or cannot be opened). The | ||||
41 | // returned object should be deleted when you are done with it. | ||||
[email protected] | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 42 | BASE_EXPORT static FileVersionInfo* CreateFileVersionInfo( |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 43 | const base::FilePath& file_path); |
[email protected] | 7c1e303 | 2010-12-20 18:40:42 | [diff] [blame] | 44 | #endif // OS_WIN || OS_MACOSX |
45 | |||||
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 46 | #if defined(OS_WIN) |
47 | // Creates a FileVersionInfo for the specified module. Returns NULL in case | ||||
48 | // of error. The returned object should be deleted when you are done with it. | ||||
[email protected] | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 49 | BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForModule( |
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 50 | HMODULE module); |
51 | |||||
[email protected] | 1265917f | 2008-08-12 17:33:52 | [diff] [blame] | 52 | // Creates a FileVersionInfo for the current module. Returns NULL in case |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 53 | // of error. The returned object should be deleted when you are done with it. |
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 54 | // This function should be inlined so that the "current module" is evaluated |
55 | // correctly, instead of being the module that contains base. | ||||
56 | __forceinline static FileVersionInfo* | ||||
57 | CreateFileVersionInfoForCurrentModule() { | ||||
58 | HMODULE module = reinterpret_cast<HMODULE>(&__ImageBase); | ||||
59 | return CreateFileVersionInfoForModule(module); | ||||
60 | } | ||||
61 | #else | ||||
62 | // Creates a FileVersionInfo for the current module. Returns NULL in case | ||||
63 | // of error. The returned object should be deleted when you are done with it. | ||||
[email protected] | 0bea725 | 2011-08-05 15:34:00 | [diff] [blame] | 64 | BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForCurrentModule(); |
[email protected] | 70910be | 2011-04-22 23:55:45 | [diff] [blame] | 65 | #endif // OS_WIN |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 66 | |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 67 | // Accessors to the different version properties. |
68 | // Returns an empty string if the property is not found. | ||||
[email protected] | 4f260d0 | 2010-12-23 18:35:42 | [diff] [blame] | 69 | virtual string16 company_name() = 0; |
70 | virtual string16 company_short_name() = 0; | ||||
71 | virtual string16 product_name() = 0; | ||||
72 | virtual string16 product_short_name() = 0; | ||||
73 | virtual string16 internal_name() = 0; | ||||
74 | virtual string16 product_version() = 0; | ||||
75 | virtual string16 private_build() = 0; | ||||
76 | virtual string16 special_build() = 0; | ||||
77 | virtual string16 comments() = 0; | ||||
78 | virtual string16 original_filename() = 0; | ||||
79 | virtual string16 file_description() = 0; | ||||
80 | virtual string16 file_version() = 0; | ||||
81 | virtual string16 legal_copyright() = 0; | ||||
82 | virtual string16 legal_trademarks() = 0; | ||||
83 | virtual string16 last_change() = 0; | ||||
[email protected] | bcff05a | 2010-04-14 01:46:43 | [diff] [blame] | 84 | virtual bool is_official_build() = 0; |
initial.commit | d7cae12 | 2008-07-26 21:49:38 | [diff] [blame] | 85 | }; |
86 | |||||
87 | #endif // BASE_FILE_VERSION_INFO_H__ |