Chromevox: kill braille translator log spam.
[chromium-blink-merge.git] / gpu / config / gpu_control_list.cc
blob3dd1d923ae9a0b53bc0bff2e27e61bc50a2aac09
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "gpu/config/gpu_control_list.h"
7 #include "base/cpu.h"
8 #include "base/json/json_reader.h"
9 #include "base/logging.h"
10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_split.h"
12 #include "base/strings/string_util.h"
13 #include "base/strings/stringprintf.h"
14 #include "base/sys_info.h"
15 #include "gpu/config/gpu_info.h"
16 #include "gpu/config/gpu_util.h"
17 #include "third_party/re2/re2/re2.h"
19 namespace gpu {
20 namespace {
22 // Break a version string into segments. Return true if each segment is
23 // a valid number, and not all segment is 0.
24 bool ProcessVersionString(const std::string& version_string,
25 char splitter,
26 std::vector<std::string>* version) {
27 DCHECK(version);
28 base::SplitString(version_string, splitter, version);
29 if (version->size() == 0)
30 return false;
31 // If the splitter is '-', we assume it's a date with format "mm-dd-yyyy";
32 // we split it into the order of "yyyy", "mm", "dd".
33 if (splitter == '-') {
34 std::string year = (*version)[version->size() - 1];
35 for (int i = version->size() - 1; i > 0; --i) {
36 (*version)[i] = (*version)[i - 1];
38 (*version)[0] = year;
40 bool all_zero = true;
41 for (size_t i = 0; i < version->size(); ++i) {
42 unsigned num = 0;
43 if (!base::StringToUint((*version)[i], &num))
44 return false;
45 if (num)
46 all_zero = false;
48 return !all_zero;
51 // Compare two number strings using numerical ordering.
52 // Return 0 if number = number_ref,
53 // 1 if number > number_ref,
54 // -1 if number < number_ref.
55 int CompareNumericalNumberStrings(
56 const std::string& number, const std::string& number_ref) {
57 unsigned value1 = 0;
58 unsigned value2 = 0;
59 bool valid = base::StringToUint(number, &value1);
60 DCHECK(valid);
61 valid = base::StringToUint(number_ref, &value2);
62 DCHECK(valid);
63 if (value1 == value2)
64 return 0;
65 if (value1 > value2)
66 return 1;
67 return -1;
70 // Compare two number strings using lexical ordering.
71 // Return 0 if number = number_ref,
72 // 1 if number > number_ref,
73 // -1 if number < number_ref.
74 // We only compare as many digits as number_ref contains.
75 // If number_ref is xxx, it's considered as xxx*
76 // For example: CompareLexicalNumberStrings("121", "12") returns 0,
77 // CompareLexicalNumberStrings("12", "121") returns -1.
78 int CompareLexicalNumberStrings(
79 const std::string& number, const std::string& number_ref) {
80 for (size_t i = 0; i < number_ref.length(); ++i) {
81 unsigned value1 = 0;
82 if (i < number.length())
83 value1 = number[i] - '0';
84 unsigned value2 = number_ref[i] - '0';
85 if (value1 > value2)
86 return 1;
87 if (value1 < value2)
88 return -1;
90 return 0;
93 // A mismatch is identified only if both |input| and |pattern| are not empty.
94 bool StringMismatch(const std::string& input, const std::string& pattern) {
95 if (input.empty() || pattern.empty())
96 return false;
97 return !RE2::FullMatch(input, pattern);
100 const char kMultiGpuStyleStringAMDSwitchable[] = "amd_switchable";
101 const char kMultiGpuStyleStringAMDSwitchableDiscrete[] =
102 "amd_switchable_discrete";
103 const char kMultiGpuStyleStringAMDSwitchableIntegrated[] =
104 "amd_switchable_integrated";
105 const char kMultiGpuStyleStringOptimus[] = "optimus";
107 const char kMultiGpuCategoryStringPrimary[] = "primary";
108 const char kMultiGpuCategoryStringSecondary[] = "secondary";
109 const char kMultiGpuCategoryStringActive[] = "active";
110 const char kMultiGpuCategoryStringAny[] = "any";
112 const char kGLTypeStringGL[] = "gl";
113 const char kGLTypeStringGLES[] = "gles";
114 const char kGLTypeStringANGLE[] = "angle";
116 const char kVersionStyleStringNumerical[] = "numerical";
117 const char kVersionStyleStringLexical[] = "lexical";
119 const char kOp[] = "op";
121 } // namespace anonymous
123 GpuControlList::VersionInfo::VersionInfo(
124 const std::string& version_op,
125 const std::string& version_style,
126 const std::string& version_string,
127 const std::string& version_string2)
128 : version_style_(kVersionStyleNumerical) {
129 op_ = StringToNumericOp(version_op);
130 if (op_ == kUnknown || op_ == kAny)
131 return;
132 version_style_ = StringToVersionStyle(version_style);
133 if (!ProcessVersionString(version_string, '.', &version_)) {
134 op_ = kUnknown;
135 return;
137 if (op_ == kBetween) {
138 if (!ProcessVersionString(version_string2, '.', &version2_))
139 op_ = kUnknown;
143 GpuControlList::VersionInfo::~VersionInfo() {
146 bool GpuControlList::VersionInfo::Contains(
147 const std::string& version_string) const {
148 return Contains(version_string, '.');
151 bool GpuControlList::VersionInfo::Contains(
152 const std::string& version_string, char splitter) const {
153 if (op_ == kUnknown)
154 return false;
155 if (op_ == kAny)
156 return true;
157 std::vector<std::string> version;
158 if (!ProcessVersionString(version_string, splitter, &version))
159 return false;
160 int relation = Compare(version, version_, version_style_);
161 if (op_ == kEQ)
162 return (relation == 0);
163 else if (op_ == kLT)
164 return (relation < 0);
165 else if (op_ == kLE)
166 return (relation <= 0);
167 else if (op_ == kGT)
168 return (relation > 0);
169 else if (op_ == kGE)
170 return (relation >= 0);
171 // op_ == kBetween
172 if (relation < 0)
173 return false;
174 return Compare(version, version2_, version_style_) <= 0;
177 bool GpuControlList::VersionInfo::IsValid() const {
178 return (op_ != kUnknown && version_style_ != kVersionStyleUnknown);
181 bool GpuControlList::VersionInfo::IsLexical() const {
182 return version_style_ == kVersionStyleLexical;
185 // static
186 int GpuControlList::VersionInfo::Compare(
187 const std::vector<std::string>& version,
188 const std::vector<std::string>& version_ref,
189 VersionStyle version_style) {
190 DCHECK(version.size() > 0 && version_ref.size() > 0);
191 DCHECK(version_style != kVersionStyleUnknown);
192 for (size_t i = 0; i < version_ref.size(); ++i) {
193 if (i >= version.size())
194 return 0;
195 int ret = 0;
196 // We assume both versions are checked by ProcessVersionString().
197 if (i > 0 && version_style == kVersionStyleLexical)
198 ret = CompareLexicalNumberStrings(version[i], version_ref[i]);
199 else
200 ret = CompareNumericalNumberStrings(version[i], version_ref[i]);
201 if (ret != 0)
202 return ret;
204 return 0;
207 // static
208 GpuControlList::VersionInfo::VersionStyle
209 GpuControlList::VersionInfo::StringToVersionStyle(
210 const std::string& version_style) {
211 if (version_style.empty() || version_style == kVersionStyleStringNumerical)
212 return kVersionStyleNumerical;
213 if (version_style == kVersionStyleStringLexical)
214 return kVersionStyleLexical;
215 return kVersionStyleUnknown;
218 GpuControlList::OsInfo::OsInfo(const std::string& os,
219 const std::string& version_op,
220 const std::string& version_string,
221 const std::string& version_string2) {
222 type_ = StringToOsType(os);
223 if (type_ != kOsUnknown) {
224 version_info_.reset(new VersionInfo(
225 version_op, std::string(), version_string, version_string2));
229 GpuControlList::OsInfo::~OsInfo() {}
231 bool GpuControlList::OsInfo::Contains(
232 OsType type, const std::string& version) const {
233 if (!IsValid())
234 return false;
235 if (type_ != type && type_ != kOsAny)
236 return false;
237 std::string processed_version;
238 size_t pos = version.find_first_not_of("0123456789.");
239 if (pos != std::string::npos)
240 processed_version = version.substr(0, pos);
241 else
242 processed_version = version;
244 return version_info_->Contains(processed_version);
247 bool GpuControlList::OsInfo::IsValid() const {
248 return type_ != kOsUnknown && version_info_->IsValid();
251 GpuControlList::OsType GpuControlList::OsInfo::type() const {
252 return type_;
255 GpuControlList::OsType GpuControlList::OsInfo::StringToOsType(
256 const std::string& os) {
257 if (os == "win")
258 return kOsWin;
259 else if (os == "macosx")
260 return kOsMacosx;
261 else if (os == "android")
262 return kOsAndroid;
263 else if (os == "linux")
264 return kOsLinux;
265 else if (os == "chromeos")
266 return kOsChromeOS;
267 else if (os == "any")
268 return kOsAny;
269 return kOsUnknown;
272 GpuControlList::FloatInfo::FloatInfo(const std::string& float_op,
273 const std::string& float_value,
274 const std::string& float_value2)
275 : op_(kUnknown),
276 value_(0.f),
277 value2_(0.f) {
278 op_ = StringToNumericOp(float_op);
279 if (op_ == kAny)
280 return;
281 double dvalue = 0;
282 if (!base::StringToDouble(float_value, &dvalue)) {
283 op_ = kUnknown;
284 return;
286 value_ = static_cast<float>(dvalue);
287 if (op_ == kBetween) {
288 if (!base::StringToDouble(float_value2, &dvalue)) {
289 op_ = kUnknown;
290 return;
292 value2_ = static_cast<float>(dvalue);
296 bool GpuControlList::FloatInfo::Contains(float value) const {
297 if (op_ == kUnknown)
298 return false;
299 if (op_ == kAny)
300 return true;
301 if (op_ == kEQ)
302 return (value == value_);
303 if (op_ == kLT)
304 return (value < value_);
305 if (op_ == kLE)
306 return (value <= value_);
307 if (op_ == kGT)
308 return (value > value_);
309 if (op_ == kGE)
310 return (value >= value_);
311 DCHECK(op_ == kBetween);
312 return ((value_ <= value && value <= value2_) ||
313 (value2_ <= value && value <= value_));
316 bool GpuControlList::FloatInfo::IsValid() const {
317 return op_ != kUnknown;
320 GpuControlList::IntInfo::IntInfo(const std::string& int_op,
321 const std::string& int_value,
322 const std::string& int_value2)
323 : op_(kUnknown),
324 value_(0),
325 value2_(0) {
326 op_ = StringToNumericOp(int_op);
327 if (op_ == kAny)
328 return;
329 if (!base::StringToInt(int_value, &value_)) {
330 op_ = kUnknown;
331 return;
333 if (op_ == kBetween &&
334 !base::StringToInt(int_value2, &value2_))
335 op_ = kUnknown;
338 bool GpuControlList::IntInfo::Contains(int value) const {
339 if (op_ == kUnknown)
340 return false;
341 if (op_ == kAny)
342 return true;
343 if (op_ == kEQ)
344 return (value == value_);
345 if (op_ == kLT)
346 return (value < value_);
347 if (op_ == kLE)
348 return (value <= value_);
349 if (op_ == kGT)
350 return (value > value_);
351 if (op_ == kGE)
352 return (value >= value_);
353 DCHECK(op_ == kBetween);
354 return ((value_ <= value && value <= value2_) ||
355 (value2_ <= value && value <= value_));
358 bool GpuControlList::IntInfo::IsValid() const {
359 return op_ != kUnknown;
362 GpuControlList::BoolInfo::BoolInfo(bool value) : value_(value) {}
364 bool GpuControlList::BoolInfo::Contains(bool value) const {
365 return value_ == value;
368 // static
369 GpuControlList::ScopedGpuControlListEntry
370 GpuControlList::GpuControlListEntry::GetEntryFromValue(
371 const base::DictionaryValue* value, bool top_level,
372 const FeatureMap& feature_map,
373 bool supports_feature_type_all) {
374 DCHECK(value);
375 ScopedGpuControlListEntry entry(new GpuControlListEntry());
377 size_t dictionary_entry_count = 0;
379 if (top_level) {
380 uint32 id;
381 if (!value->GetInteger("id", reinterpret_cast<int*>(&id)) ||
382 !entry->SetId(id)) {
383 LOG(WARNING) << "Malformed id entry " << entry->id();
384 return NULL;
386 dictionary_entry_count++;
388 bool disabled;
389 if (value->GetBoolean("disabled", &disabled)) {
390 entry->SetDisabled(disabled);
391 dictionary_entry_count++;
395 std::string description;
396 if (value->GetString("description", &description)) {
397 entry->description_ = description;
398 dictionary_entry_count++;
399 } else {
400 entry->description_ = "The GPU is unavailable for an unexplained reason.";
403 const base::ListValue* cr_bugs;
404 if (value->GetList("cr_bugs", &cr_bugs)) {
405 for (size_t i = 0; i < cr_bugs->GetSize(); ++i) {
406 int bug_id;
407 if (cr_bugs->GetInteger(i, &bug_id)) {
408 entry->cr_bugs_.push_back(bug_id);
409 } else {
410 LOG(WARNING) << "Malformed cr_bugs entry " << entry->id();
411 return NULL;
414 dictionary_entry_count++;
417 const base::ListValue* webkit_bugs;
418 if (value->GetList("webkit_bugs", &webkit_bugs)) {
419 for (size_t i = 0; i < webkit_bugs->GetSize(); ++i) {
420 int bug_id;
421 if (webkit_bugs->GetInteger(i, &bug_id)) {
422 entry->webkit_bugs_.push_back(bug_id);
423 } else {
424 LOG(WARNING) << "Malformed webkit_bugs entry " << entry->id();
425 return NULL;
428 dictionary_entry_count++;
431 const base::DictionaryValue* os_value = NULL;
432 if (value->GetDictionary("os", &os_value)) {
433 std::string os_type;
434 std::string os_version_op = "any";
435 std::string os_version_string;
436 std::string os_version_string2;
437 os_value->GetString("type", &os_type);
438 const base::DictionaryValue* os_version_value = NULL;
439 if (os_value->GetDictionary("version", &os_version_value)) {
440 os_version_value->GetString(kOp, &os_version_op);
441 os_version_value->GetString("value", &os_version_string);
442 os_version_value->GetString("value2", &os_version_string2);
444 if (!entry->SetOsInfo(os_type, os_version_op, os_version_string,
445 os_version_string2)) {
446 LOG(WARNING) << "Malformed os entry " << entry->id();
447 return NULL;
449 dictionary_entry_count++;
452 std::string vendor_id;
453 if (value->GetString("vendor_id", &vendor_id)) {
454 if (!entry->SetVendorId(vendor_id)) {
455 LOG(WARNING) << "Malformed vendor_id entry " << entry->id();
456 return NULL;
458 dictionary_entry_count++;
461 const base::ListValue* device_id_list;
462 if (value->GetList("device_id", &device_id_list)) {
463 for (size_t i = 0; i < device_id_list->GetSize(); ++i) {
464 std::string device_id;
465 if (!device_id_list->GetString(i, &device_id) ||
466 !entry->AddDeviceId(device_id)) {
467 LOG(WARNING) << "Malformed device_id entry " << entry->id();
468 return NULL;
471 dictionary_entry_count++;
474 std::string multi_gpu_style;
475 if (value->GetString("multi_gpu_style", &multi_gpu_style)) {
476 if (!entry->SetMultiGpuStyle(multi_gpu_style)) {
477 LOG(WARNING) << "Malformed multi_gpu_style entry " << entry->id();
478 return NULL;
480 dictionary_entry_count++;
483 std::string multi_gpu_category;
484 if (value->GetString("multi_gpu_category", &multi_gpu_category)) {
485 if (!entry->SetMultiGpuCategory(multi_gpu_category)) {
486 LOG(WARNING) << "Malformed multi_gpu_category entry " << entry->id();
487 return NULL;
489 dictionary_entry_count++;
492 std::string driver_vendor_value;
493 if (value->GetString("driver_vendor", &driver_vendor_value)) {
494 if (!entry->SetDriverVendorInfo(driver_vendor_value)) {
495 LOG(WARNING) << "Malformed driver_vendor entry " << entry->id();
496 return NULL;
498 dictionary_entry_count++;
501 const base::DictionaryValue* driver_version_value = NULL;
502 if (value->GetDictionary("driver_version", &driver_version_value)) {
503 std::string driver_version_op = "any";
504 std::string driver_version_style;
505 std::string driver_version_string;
506 std::string driver_version_string2;
507 driver_version_value->GetString(kOp, &driver_version_op);
508 driver_version_value->GetString("style", &driver_version_style);
509 driver_version_value->GetString("value", &driver_version_string);
510 driver_version_value->GetString("value2", &driver_version_string2);
511 if (!entry->SetDriverVersionInfo(driver_version_op,
512 driver_version_style,
513 driver_version_string,
514 driver_version_string2)) {
515 LOG(WARNING) << "Malformed driver_version entry " << entry->id();
516 return NULL;
518 dictionary_entry_count++;
521 const base::DictionaryValue* driver_date_value = NULL;
522 if (value->GetDictionary("driver_date", &driver_date_value)) {
523 std::string driver_date_op = "any";
524 std::string driver_date_string;
525 std::string driver_date_string2;
526 driver_date_value->GetString(kOp, &driver_date_op);
527 driver_date_value->GetString("value", &driver_date_string);
528 driver_date_value->GetString("value2", &driver_date_string2);
529 if (!entry->SetDriverDateInfo(driver_date_op, driver_date_string,
530 driver_date_string2)) {
531 LOG(WARNING) << "Malformed driver_date entry " << entry->id();
532 return NULL;
534 dictionary_entry_count++;
537 std::string gl_type;
538 if (value->GetString("gl_type", &gl_type)) {
539 if (!entry->SetGLType(gl_type)) {
540 LOG(WARNING) << "Malformed gl_type entry " << entry->id();
541 return NULL;
543 dictionary_entry_count++;
546 const base::DictionaryValue* gl_version_value = NULL;
547 if (value->GetDictionary("gl_version", &gl_version_value)) {
548 std::string version_op = "any";
549 std::string version_string;
550 std::string version_string2;
551 gl_version_value->GetString(kOp, &version_op);
552 gl_version_value->GetString("value", &version_string);
553 gl_version_value->GetString("value2", &version_string2);
554 if (!entry->SetGLVersionInfo(
555 version_op, version_string, version_string2)) {
556 LOG(WARNING) << "Malformed gl_version entry " << entry->id();
557 return NULL;
559 dictionary_entry_count++;
562 std::string gl_vendor_value;
563 if (value->GetString("gl_vendor", &gl_vendor_value)) {
564 if (!entry->SetGLVendorInfo(gl_vendor_value)) {
565 LOG(WARNING) << "Malformed gl_vendor entry " << entry->id();
566 return NULL;
568 dictionary_entry_count++;
571 std::string gl_renderer_value;
572 if (value->GetString("gl_renderer", &gl_renderer_value)) {
573 if (!entry->SetGLRendererInfo(gl_renderer_value)) {
574 LOG(WARNING) << "Malformed gl_renderer entry " << entry->id();
575 return NULL;
577 dictionary_entry_count++;
580 std::string gl_extensions_value;
581 if (value->GetString("gl_extensions", &gl_extensions_value)) {
582 if (!entry->SetGLExtensionsInfo(gl_extensions_value)) {
583 LOG(WARNING) << "Malformed gl_extensions entry " << entry->id();
584 return NULL;
586 dictionary_entry_count++;
589 const base::DictionaryValue* gl_reset_notification_strategy_value = NULL;
590 if (value->GetDictionary("gl_reset_notification_strategy",
591 &gl_reset_notification_strategy_value)) {
592 std::string op;
593 std::string int_value;
594 std::string int_value2;
595 gl_reset_notification_strategy_value->GetString(kOp, &op);
596 gl_reset_notification_strategy_value->GetString("value", &int_value);
597 gl_reset_notification_strategy_value->GetString("value2", &int_value2);
598 if (!entry->SetGLResetNotificationStrategyInfo(
599 op, int_value, int_value2)) {
600 LOG(WARNING) << "Malformed gl_reset_notification_strategy entry "
601 << entry->id();
602 return NULL;
604 dictionary_entry_count++;
607 std::string cpu_brand_value;
608 if (value->GetString("cpu_info", &cpu_brand_value)) {
609 if (!entry->SetCpuBrand(cpu_brand_value)) {
610 LOG(WARNING) << "Malformed cpu_brand entry " << entry->id();
611 return NULL;
613 dictionary_entry_count++;
616 const base::DictionaryValue* perf_graphics_value = NULL;
617 if (value->GetDictionary("perf_graphics", &perf_graphics_value)) {
618 std::string op;
619 std::string float_value;
620 std::string float_value2;
621 perf_graphics_value->GetString(kOp, &op);
622 perf_graphics_value->GetString("value", &float_value);
623 perf_graphics_value->GetString("value2", &float_value2);
624 if (!entry->SetPerfGraphicsInfo(op, float_value, float_value2)) {
625 LOG(WARNING) << "Malformed perf_graphics entry " << entry->id();
626 return NULL;
628 dictionary_entry_count++;
631 const base::DictionaryValue* perf_gaming_value = NULL;
632 if (value->GetDictionary("perf_gaming", &perf_gaming_value)) {
633 std::string op;
634 std::string float_value;
635 std::string float_value2;
636 perf_gaming_value->GetString(kOp, &op);
637 perf_gaming_value->GetString("value", &float_value);
638 perf_gaming_value->GetString("value2", &float_value2);
639 if (!entry->SetPerfGamingInfo(op, float_value, float_value2)) {
640 LOG(WARNING) << "Malformed perf_gaming entry " << entry->id();
641 return NULL;
643 dictionary_entry_count++;
646 const base::DictionaryValue* perf_overall_value = NULL;
647 if (value->GetDictionary("perf_overall", &perf_overall_value)) {
648 std::string op;
649 std::string float_value;
650 std::string float_value2;
651 perf_overall_value->GetString(kOp, &op);
652 perf_overall_value->GetString("value", &float_value);
653 perf_overall_value->GetString("value2", &float_value2);
654 if (!entry->SetPerfOverallInfo(op, float_value, float_value2)) {
655 LOG(WARNING) << "Malformed perf_overall entry " << entry->id();
656 return NULL;
658 dictionary_entry_count++;
661 const base::ListValue* machine_model_name_list;
662 if (value->GetList("machine_model_name", &machine_model_name_list)) {
663 for (size_t i = 0; i < machine_model_name_list->GetSize(); ++i) {
664 std::string model_name;
665 if (!machine_model_name_list->GetString(i, &model_name) ||
666 !entry->AddMachineModelName(model_name)) {
667 LOG(WARNING) << "Malformed machine_model_name entry " << entry->id();
668 return NULL;
671 dictionary_entry_count++;
674 const base::DictionaryValue* machine_model_version_value = NULL;
675 if (value->GetDictionary(
676 "machine_model_version", &machine_model_version_value)) {
677 std::string version_op = "any";
678 std::string version_string;
679 std::string version_string2;
680 machine_model_version_value->GetString(kOp, &version_op);
681 machine_model_version_value->GetString("value", &version_string);
682 machine_model_version_value->GetString("value2", &version_string2);
683 if (!entry->SetMachineModelVersionInfo(
684 version_op, version_string, version_string2)) {
685 LOG(WARNING) << "Malformed machine_model_version entry " << entry->id();
686 return NULL;
688 dictionary_entry_count++;
691 const base::DictionaryValue* gpu_count_value = NULL;
692 if (value->GetDictionary("gpu_count", &gpu_count_value)) {
693 std::string op;
694 std::string int_value;
695 std::string int_value2;
696 gpu_count_value->GetString(kOp, &op);
697 gpu_count_value->GetString("value", &int_value);
698 gpu_count_value->GetString("value2", &int_value2);
699 if (!entry->SetGpuCountInfo(op, int_value, int_value2)) {
700 LOG(WARNING) << "Malformed gpu_count entry " << entry->id();
701 return NULL;
703 dictionary_entry_count++;
706 bool direct_rendering;
707 if (value->GetBoolean("direct_rendering", &direct_rendering)) {
708 entry->SetDirectRenderingInfo(direct_rendering);
709 dictionary_entry_count++;
712 if (top_level) {
713 const base::ListValue* feature_value = NULL;
714 if (value->GetList("features", &feature_value)) {
715 std::vector<std::string> feature_list;
716 for (size_t i = 0; i < feature_value->GetSize(); ++i) {
717 std::string feature;
718 if (feature_value->GetString(i, &feature)) {
719 feature_list.push_back(feature);
720 } else {
721 LOG(WARNING) << "Malformed feature entry " << entry->id();
722 return NULL;
725 if (!entry->SetFeatures(
726 feature_list, feature_map, supports_feature_type_all)) {
727 LOG(WARNING) << "Malformed feature entry " << entry->id();
728 return NULL;
730 dictionary_entry_count++;
734 if (top_level) {
735 const base::ListValue* exception_list_value = NULL;
736 if (value->GetList("exceptions", &exception_list_value)) {
737 for (size_t i = 0; i < exception_list_value->GetSize(); ++i) {
738 const base::DictionaryValue* exception_value = NULL;
739 if (!exception_list_value->GetDictionary(i, &exception_value)) {
740 LOG(WARNING) << "Malformed exceptions entry " << entry->id();
741 return NULL;
743 ScopedGpuControlListEntry exception(GetEntryFromValue(
744 exception_value, false, feature_map, supports_feature_type_all));
745 if (exception.get() == NULL) {
746 LOG(WARNING) << "Malformed exceptions entry " << entry->id();
747 return NULL;
749 // Exception should inherit vendor_id from parent, otherwise if only
750 // device_ids are specified in Exception, the info will be incomplete.
751 if (exception->vendor_id_ == 0 && entry->vendor_id_ != 0)
752 exception->vendor_id_ = entry->vendor_id_;
753 entry->AddException(exception);
755 dictionary_entry_count++;
759 if (value->size() != dictionary_entry_count) {
760 LOG(WARNING) << "Entry with unknown fields " << entry->id();
761 return NULL;
764 // If GL_VERSION is specified, but no info about whether it's GL or GLES,
765 // we use the default for the platform. See GLType enum declaration.
766 if (entry->gl_version_info_.get() != NULL && entry->gl_type_ == kGLTypeNone)
767 entry->gl_type_ = GetDefaultGLType();
769 return entry;
772 GpuControlList::GpuControlListEntry::GpuControlListEntry()
773 : id_(0),
774 disabled_(false),
775 vendor_id_(0),
776 multi_gpu_style_(kMultiGpuStyleNone),
777 multi_gpu_category_(kMultiGpuCategoryPrimary),
778 gl_type_(kGLTypeNone) {
781 GpuControlList::GpuControlListEntry::~GpuControlListEntry() { }
783 bool GpuControlList::GpuControlListEntry::SetId(uint32 id) {
784 if (id != 0) {
785 id_ = id;
786 return true;
788 return false;
791 void GpuControlList::GpuControlListEntry::SetDisabled(bool disabled) {
792 disabled_ = disabled;
795 bool GpuControlList::GpuControlListEntry::SetOsInfo(
796 const std::string& os,
797 const std::string& version_op,
798 const std::string& version_string,
799 const std::string& version_string2) {
800 os_info_.reset(new OsInfo(os, version_op, version_string, version_string2));
801 return os_info_->IsValid();
804 bool GpuControlList::GpuControlListEntry::SetVendorId(
805 const std::string& vendor_id_string) {
806 vendor_id_ = 0;
807 return base::HexStringToUInt(vendor_id_string, &vendor_id_) &&
808 vendor_id_ != 0;
811 bool GpuControlList::GpuControlListEntry::AddDeviceId(
812 const std::string& device_id_string) {
813 uint32 device_id = 0;
814 if (base::HexStringToUInt(device_id_string, &device_id) && device_id != 0) {
815 device_id_list_.push_back(device_id);
816 return true;
818 return false;
821 bool GpuControlList::GpuControlListEntry::SetMultiGpuStyle(
822 const std::string& multi_gpu_style_string) {
823 MultiGpuStyle style = StringToMultiGpuStyle(multi_gpu_style_string);
824 if (style == kMultiGpuStyleNone)
825 return false;
826 multi_gpu_style_ = style;
827 return true;
830 bool GpuControlList::GpuControlListEntry::SetMultiGpuCategory(
831 const std::string& multi_gpu_category_string) {
832 MultiGpuCategory category =
833 StringToMultiGpuCategory(multi_gpu_category_string);
834 if (category == kMultiGpuCategoryNone)
835 return false;
836 multi_gpu_category_ = category;
837 return true;
840 bool GpuControlList::GpuControlListEntry::SetGLType(
841 const std::string& gl_type_string) {
842 GLType gl_type = StringToGLType(gl_type_string);
843 if (gl_type == kGLTypeNone)
844 return false;
845 gl_type_ = gl_type;
846 return true;
849 bool GpuControlList::GpuControlListEntry::SetDriverVendorInfo(
850 const std::string& vendor_value) {
851 driver_vendor_info_ = vendor_value;
852 return !driver_vendor_info_.empty();
855 bool GpuControlList::GpuControlListEntry::SetDriverVersionInfo(
856 const std::string& version_op,
857 const std::string& version_style,
858 const std::string& version_string,
859 const std::string& version_string2) {
860 driver_version_info_.reset(new VersionInfo(
861 version_op, version_style, version_string, version_string2));
862 return driver_version_info_->IsValid();
865 bool GpuControlList::GpuControlListEntry::SetDriverDateInfo(
866 const std::string& date_op,
867 const std::string& date_string,
868 const std::string& date_string2) {
869 driver_date_info_.reset(
870 new VersionInfo(date_op, std::string(), date_string, date_string2));
871 return driver_date_info_->IsValid();
874 bool GpuControlList::GpuControlListEntry::SetGLVersionInfo(
875 const std::string& version_op,
876 const std::string& version_string,
877 const std::string& version_string2) {
878 gl_version_info_.reset(new VersionInfo(
879 version_op, std::string(), version_string, version_string2));
880 return gl_version_info_->IsValid();
883 bool GpuControlList::GpuControlListEntry::SetGLVendorInfo(
884 const std::string& vendor_value) {
885 gl_vendor_info_ = vendor_value;
886 return !gl_vendor_info_.empty();
889 bool GpuControlList::GpuControlListEntry::SetGLRendererInfo(
890 const std::string& renderer_value) {
891 gl_renderer_info_ = renderer_value;
892 return !gl_renderer_info_.empty();
895 bool GpuControlList::GpuControlListEntry::SetGLExtensionsInfo(
896 const std::string& extensions_value) {
897 gl_extensions_info_ = extensions_value;
898 return !gl_extensions_info_.empty();
901 bool GpuControlList::GpuControlListEntry::SetGLResetNotificationStrategyInfo(
902 const std::string& op,
903 const std::string& int_string,
904 const std::string& int_string2) {
905 gl_reset_notification_strategy_info_.reset(
906 new IntInfo(op, int_string, int_string2));
907 return gl_reset_notification_strategy_info_->IsValid();
910 bool GpuControlList::GpuControlListEntry::SetCpuBrand(
911 const std::string& cpu_value) {
912 cpu_brand_ = cpu_value;
913 return !cpu_brand_.empty();
916 bool GpuControlList::GpuControlListEntry::SetPerfGraphicsInfo(
917 const std::string& op,
918 const std::string& float_string,
919 const std::string& float_string2) {
920 perf_graphics_info_.reset(new FloatInfo(op, float_string, float_string2));
921 return perf_graphics_info_->IsValid();
924 bool GpuControlList::GpuControlListEntry::SetPerfGamingInfo(
925 const std::string& op,
926 const std::string& float_string,
927 const std::string& float_string2) {
928 perf_gaming_info_.reset(new FloatInfo(op, float_string, float_string2));
929 return perf_gaming_info_->IsValid();
932 bool GpuControlList::GpuControlListEntry::SetPerfOverallInfo(
933 const std::string& op,
934 const std::string& float_string,
935 const std::string& float_string2) {
936 perf_overall_info_.reset(new FloatInfo(op, float_string, float_string2));
937 return perf_overall_info_->IsValid();
940 bool GpuControlList::GpuControlListEntry::AddMachineModelName(
941 const std::string& model_name) {
942 if (model_name.empty())
943 return false;
944 machine_model_name_list_.push_back(model_name);
945 return true;
948 bool GpuControlList::GpuControlListEntry::SetMachineModelVersionInfo(
949 const std::string& version_op,
950 const std::string& version_string,
951 const std::string& version_string2) {
952 machine_model_version_info_.reset(new VersionInfo(
953 version_op, std::string(), version_string, version_string2));
954 return machine_model_version_info_->IsValid();
957 bool GpuControlList::GpuControlListEntry::SetGpuCountInfo(
958 const std::string& op,
959 const std::string& int_string,
960 const std::string& int_string2) {
961 gpu_count_info_.reset(new IntInfo(op, int_string, int_string2));
962 return gpu_count_info_->IsValid();
965 void GpuControlList::GpuControlListEntry::SetDirectRenderingInfo(bool value) {
966 direct_rendering_info_.reset(new BoolInfo(value));
969 bool GpuControlList::GpuControlListEntry::SetFeatures(
970 const std::vector<std::string>& feature_strings,
971 const FeatureMap& feature_map,
972 bool supports_feature_type_all) {
973 size_t size = feature_strings.size();
974 if (size == 0)
975 return false;
976 features_.clear();
977 for (size_t i = 0; i < size; ++i) {
978 int feature = 0;
979 if (supports_feature_type_all && feature_strings[i] == "all") {
980 for (FeatureMap::const_iterator iter = feature_map.begin();
981 iter != feature_map.end(); ++iter)
982 features_.insert(iter->second);
983 continue;
985 if (!StringToFeature(feature_strings[i], &feature, feature_map)) {
986 features_.clear();
987 return false;
989 features_.insert(feature);
991 return true;
994 void GpuControlList::GpuControlListEntry::AddException(
995 ScopedGpuControlListEntry exception) {
996 exceptions_.push_back(exception);
999 bool GpuControlList::GpuControlListEntry::GLVersionInfoMismatch(
1000 const std::string& gl_version) const {
1001 if (gl_version.empty())
1002 return false;
1004 if (gl_version_info_.get() == NULL && gl_type_ == kGLTypeNone)
1005 return false;
1007 std::vector<std::string> segments;
1008 base::SplitString(gl_version, ' ', &segments);
1009 std::string number;
1010 GLType gl_type = kGLTypeNone;
1011 if (segments.size() > 2 &&
1012 segments[0] == "OpenGL" && segments[1] == "ES") {
1013 bool full_match = RE2::FullMatch(segments[2], "([\\d.]+).*", &number);
1014 DCHECK(full_match);
1016 gl_type = kGLTypeGLES;
1017 if (segments.size() > 3 &&
1018 StartsWithASCII(segments[3], "(ANGLE", false)) {
1019 gl_type = kGLTypeANGLE;
1021 } else {
1022 number = segments[0];
1023 gl_type = kGLTypeGL;
1026 if (gl_type_ != kGLTypeNone && gl_type_ != gl_type)
1027 return true;
1028 if (gl_version_info_.get() != NULL && !gl_version_info_->Contains(number))
1029 return true;
1030 return false;
1033 // static
1034 GpuControlList::GpuControlListEntry::MultiGpuStyle
1035 GpuControlList::GpuControlListEntry::StringToMultiGpuStyle(
1036 const std::string& style) {
1037 if (style == kMultiGpuStyleStringOptimus)
1038 return kMultiGpuStyleOptimus;
1039 if (style == kMultiGpuStyleStringAMDSwitchable)
1040 return kMultiGpuStyleAMDSwitchable;
1041 if (style == kMultiGpuStyleStringAMDSwitchableIntegrated)
1042 return kMultiGpuStyleAMDSwitchableIntegrated;
1043 if (style == kMultiGpuStyleStringAMDSwitchableDiscrete)
1044 return kMultiGpuStyleAMDSwitchableDiscrete;
1045 return kMultiGpuStyleNone;
1048 // static
1049 GpuControlList::GpuControlListEntry::MultiGpuCategory
1050 GpuControlList::GpuControlListEntry::StringToMultiGpuCategory(
1051 const std::string& category) {
1052 if (category == kMultiGpuCategoryStringPrimary)
1053 return kMultiGpuCategoryPrimary;
1054 if (category == kMultiGpuCategoryStringSecondary)
1055 return kMultiGpuCategorySecondary;
1056 if (category == kMultiGpuCategoryStringActive)
1057 return kMultiGpuCategoryActive;
1058 if (category == kMultiGpuCategoryStringAny)
1059 return kMultiGpuCategoryAny;
1060 return kMultiGpuCategoryNone;
1063 // static
1064 GpuControlList::GpuControlListEntry::GLType
1065 GpuControlList::GpuControlListEntry::StringToGLType(
1066 const std::string& gl_type) {
1067 if (gl_type == kGLTypeStringGL)
1068 return kGLTypeGL;
1069 if (gl_type == kGLTypeStringGLES)
1070 return kGLTypeGLES;
1071 if (gl_type == kGLTypeStringANGLE)
1072 return kGLTypeANGLE;
1073 return kGLTypeNone;
1076 // static
1077 GpuControlList::GpuControlListEntry::GLType
1078 GpuControlList::GpuControlListEntry::GetDefaultGLType() {
1079 #if defined(OS_CHROMEOS)
1080 return kGLTypeGL;
1081 #elif defined(OS_LINUX) || defined(OS_OPENBSD)
1082 return kGLTypeGL;
1083 #elif defined(OS_MACOSX)
1084 return kGLTypeGL;
1085 #elif defined(OS_WIN)
1086 return kGLTypeANGLE;
1087 #elif defined(OS_ANDROID)
1088 return kGLTypeGLES;
1089 #else
1090 return kGLTypeNone;
1091 #endif
1094 void GpuControlList::GpuControlListEntry::LogControlListMatch(
1095 const std::string& control_list_logging_name) const {
1096 static const char kControlListMatchMessage[] =
1097 "Control list match for rule #%u in %s.";
1098 VLOG(1) << base::StringPrintf(kControlListMatchMessage, id_,
1099 control_list_logging_name.c_str());
1102 bool GpuControlList::GpuControlListEntry::Contains(
1103 OsType os_type, const std::string& os_version,
1104 const GPUInfo& gpu_info) const {
1105 DCHECK(os_type != kOsAny);
1106 if (os_info_.get() != NULL && !os_info_->Contains(os_type, os_version))
1107 return false;
1108 if (vendor_id_ != 0) {
1109 std::vector<GPUInfo::GPUDevice> candidates;
1110 switch (multi_gpu_category_) {
1111 case kMultiGpuCategoryPrimary:
1112 candidates.push_back(gpu_info.gpu);
1113 break;
1114 case kMultiGpuCategorySecondary:
1115 candidates = gpu_info.secondary_gpus;
1116 break;
1117 case kMultiGpuCategoryAny:
1118 candidates = gpu_info.secondary_gpus;
1119 candidates.push_back(gpu_info.gpu);
1120 break;
1121 case kMultiGpuCategoryActive:
1122 if (gpu_info.gpu.active)
1123 candidates.push_back(gpu_info.gpu);
1124 for (size_t ii = 0; ii < gpu_info.secondary_gpus.size(); ++ii) {
1125 if (gpu_info.secondary_gpus[ii].active)
1126 candidates.push_back(gpu_info.secondary_gpus[ii]);
1128 default:
1129 break;
1132 GPUInfo::GPUDevice gpu;
1133 gpu.vendor_id = vendor_id_;
1134 bool found = false;
1135 if (device_id_list_.empty()) {
1136 for (size_t ii = 0; ii < candidates.size(); ++ii) {
1137 if (gpu.vendor_id == candidates[ii].vendor_id) {
1138 found = true;
1139 break;
1142 } else {
1143 for (size_t ii = 0; ii < device_id_list_.size(); ++ii) {
1144 gpu.device_id = device_id_list_[ii];
1145 for (size_t jj = 0; jj < candidates.size(); ++jj) {
1146 if (gpu.vendor_id == candidates[jj].vendor_id &&
1147 gpu.device_id == candidates[jj].device_id) {
1148 found = true;
1149 break;
1154 if (!found)
1155 return false;
1157 switch (multi_gpu_style_) {
1158 case kMultiGpuStyleOptimus:
1159 if (!gpu_info.optimus)
1160 return false;
1161 break;
1162 case kMultiGpuStyleAMDSwitchable:
1163 if (!gpu_info.amd_switchable)
1164 return false;
1165 break;
1166 case kMultiGpuStyleAMDSwitchableDiscrete:
1167 if (!gpu_info.amd_switchable)
1168 return false;
1169 // The discrete GPU is always the primary GPU.
1170 // This is guaranteed by GpuInfoCollector.
1171 if (!gpu_info.gpu.active)
1172 return false;
1173 break;
1174 case kMultiGpuStyleAMDSwitchableIntegrated:
1175 if (!gpu_info.amd_switchable)
1176 return false;
1177 // Assume the integrated GPU is the first in the secondary GPU list.
1178 if (gpu_info.secondary_gpus.size() == 0 ||
1179 !gpu_info.secondary_gpus[0].active)
1180 return false;
1181 break;
1182 case kMultiGpuStyleNone:
1183 break;
1185 if (StringMismatch(gpu_info.driver_vendor, driver_vendor_info_))
1186 return false;
1187 if (driver_version_info_.get() != NULL && !gpu_info.driver_version.empty()) {
1188 if (!driver_version_info_->Contains(gpu_info.driver_version))
1189 return false;
1191 if (driver_date_info_.get() != NULL && !gpu_info.driver_date.empty()) {
1192 if (!driver_date_info_->Contains(gpu_info.driver_date, '-'))
1193 return false;
1195 if (GLVersionInfoMismatch(gpu_info.gl_version))
1196 return false;
1197 if (StringMismatch(gpu_info.gl_vendor, gl_vendor_info_))
1198 return false;
1199 if (StringMismatch(gpu_info.gl_renderer, gl_renderer_info_))
1200 return false;
1201 if (StringMismatch(gpu_info.gl_extensions, gl_extensions_info_))
1202 return false;
1203 if (gl_reset_notification_strategy_info_.get() != NULL &&
1204 !gl_reset_notification_strategy_info_->Contains(
1205 gpu_info.gl_reset_notification_strategy))
1206 return false;
1207 if (!machine_model_name_list_.empty()) {
1208 if (gpu_info.machine_model_name.empty())
1209 return false;
1210 bool found_match = false;
1211 for (size_t ii = 0; ii < machine_model_name_list_.size(); ++ii) {
1212 if (RE2::FullMatch(gpu_info.machine_model_name,
1213 machine_model_name_list_[ii])) {
1214 found_match = true;
1215 break;
1218 if (!found_match)
1219 return false;
1221 if (machine_model_version_info_.get() != NULL &&
1222 (gpu_info.machine_model_version.empty() ||
1223 !machine_model_version_info_->Contains(gpu_info.machine_model_version)))
1224 return false;
1225 if (gpu_count_info_.get() != NULL &&
1226 !gpu_count_info_->Contains(gpu_info.secondary_gpus.size() + 1))
1227 return false;
1228 if (direct_rendering_info_.get() != NULL &&
1229 !direct_rendering_info_->Contains(gpu_info.direct_rendering))
1230 return false;
1231 if (!cpu_brand_.empty()) {
1232 base::CPU cpu_info;
1233 if (StringMismatch(cpu_info.cpu_brand(), cpu_brand_))
1234 return false;
1237 for (size_t i = 0; i < exceptions_.size(); ++i) {
1238 if (exceptions_[i]->Contains(os_type, os_version, gpu_info) &&
1239 !exceptions_[i]->NeedsMoreInfo(gpu_info))
1240 return false;
1242 return true;
1245 bool GpuControlList::GpuControlListEntry::NeedsMoreInfo(
1246 const GPUInfo& gpu_info) const {
1247 // We only check for missing info that might be collected with a gl context.
1248 // If certain info is missing due to some error, say, we fail to collect
1249 // vendor_id/device_id, then even if we launch GPU process and create a gl
1250 // context, we won't gather such missing info, so we still return false.
1251 if (!driver_vendor_info_.empty() && gpu_info.driver_vendor.empty())
1252 return true;
1253 if (driver_version_info_.get() && gpu_info.driver_version.empty())
1254 return true;
1255 if (!gl_vendor_info_.empty() && gpu_info.gl_vendor.empty())
1256 return true;
1257 if (!gl_renderer_info_.empty() && gpu_info.gl_renderer.empty())
1258 return true;
1259 for (size_t i = 0; i < exceptions_.size(); ++i) {
1260 if (exceptions_[i]->NeedsMoreInfo(gpu_info))
1261 return true;
1263 return false;
1266 GpuControlList::OsType GpuControlList::GpuControlListEntry::GetOsType() const {
1267 if (os_info_.get() == NULL)
1268 return kOsAny;
1269 return os_info_->type();
1272 uint32 GpuControlList::GpuControlListEntry::id() const {
1273 return id_;
1276 bool GpuControlList::GpuControlListEntry::disabled() const {
1277 return disabled_;
1280 const std::set<int>& GpuControlList::GpuControlListEntry::features() const {
1281 return features_;
1284 void GpuControlList::GpuControlListEntry::GetFeatureNames(
1285 base::ListValue* feature_names,
1286 const FeatureMap& feature_map,
1287 bool supports_feature_type_all) const {
1288 DCHECK(feature_names);
1289 if (supports_feature_type_all && features_.size() == feature_map.size()) {
1290 feature_names->AppendString("all");
1291 return;
1293 for (FeatureMap::const_iterator iter = feature_map.begin();
1294 iter != feature_map.end(); ++iter) {
1295 if (features_.count(iter->second) > 0)
1296 feature_names->AppendString(iter->first);
1300 // static
1301 bool GpuControlList::GpuControlListEntry::StringToFeature(
1302 const std::string& feature_name, int* feature_id,
1303 const FeatureMap& feature_map) {
1304 FeatureMap::const_iterator iter = feature_map.find(feature_name);
1305 if (iter != feature_map.end()) {
1306 *feature_id = iter->second;
1307 return true;
1309 return false;
1312 GpuControlList::GpuControlList()
1313 : max_entry_id_(0),
1314 needs_more_info_(false),
1315 supports_feature_type_all_(false),
1316 control_list_logging_enabled_(false) {
1319 GpuControlList::~GpuControlList() {
1320 Clear();
1323 bool GpuControlList::LoadList(
1324 const std::string& json_context,
1325 GpuControlList::OsFilter os_filter) {
1326 scoped_ptr<base::Value> root;
1327 root.reset(base::JSONReader::Read(json_context));
1328 if (root.get() == NULL || !root->IsType(base::Value::TYPE_DICTIONARY))
1329 return false;
1331 base::DictionaryValue* root_dictionary =
1332 static_cast<base::DictionaryValue*>(root.get());
1333 DCHECK(root_dictionary);
1334 return LoadList(*root_dictionary, os_filter);
1337 bool GpuControlList::LoadList(const base::DictionaryValue& parsed_json,
1338 GpuControlList::OsFilter os_filter) {
1339 std::vector<ScopedGpuControlListEntry> entries;
1341 parsed_json.GetString("version", &version_);
1342 std::vector<std::string> pieces;
1343 if (!ProcessVersionString(version_, '.', &pieces))
1344 return false;
1346 const base::ListValue* list = NULL;
1347 if (!parsed_json.GetList("entries", &list))
1348 return false;
1350 uint32 max_entry_id = 0;
1351 for (size_t i = 0; i < list->GetSize(); ++i) {
1352 const base::DictionaryValue* list_item = NULL;
1353 bool valid = list->GetDictionary(i, &list_item);
1354 if (!valid || list_item == NULL)
1355 return false;
1356 ScopedGpuControlListEntry entry(GpuControlListEntry::GetEntryFromValue(
1357 list_item, true, feature_map_, supports_feature_type_all_));
1358 if (entry.get() == NULL)
1359 return false;
1360 if (entry->id() > max_entry_id)
1361 max_entry_id = entry->id();
1362 entries.push_back(entry);
1365 Clear();
1366 OsType my_os = GetOsType();
1367 for (size_t i = 0; i < entries.size(); ++i) {
1368 OsType entry_os = entries[i]->GetOsType();
1369 if (os_filter == GpuControlList::kAllOs ||
1370 entry_os == kOsAny || entry_os == my_os)
1371 entries_.push_back(entries[i]);
1373 max_entry_id_ = max_entry_id;
1374 return true;
1377 std::set<int> GpuControlList::MakeDecision(
1378 GpuControlList::OsType os,
1379 std::string os_version,
1380 const GPUInfo& gpu_info) {
1381 active_entries_.clear();
1382 std::set<int> features;
1384 needs_more_info_ = false;
1385 std::set<int> possible_features;
1387 if (os == kOsAny)
1388 os = GetOsType();
1389 if (os_version.empty())
1390 os_version = base::SysInfo::OperatingSystemVersion();
1392 for (size_t i = 0; i < entries_.size(); ++i) {
1393 if (entries_[i]->Contains(os, os_version, gpu_info)) {
1394 bool needs_more_info = entries_[i]->NeedsMoreInfo(gpu_info);
1395 if (!entries_[i]->disabled()) {
1396 if (control_list_logging_enabled_)
1397 entries_[i]->LogControlListMatch(control_list_logging_name_);
1398 MergeFeatureSets(&possible_features, entries_[i]->features());
1399 if (!needs_more_info)
1400 MergeFeatureSets(&features, entries_[i]->features());
1402 if (!needs_more_info)
1403 active_entries_.push_back(entries_[i]);
1407 if (possible_features.size() > features.size())
1408 needs_more_info_ = true;
1410 return features;
1413 void GpuControlList::GetDecisionEntries(
1414 std::vector<uint32>* entry_ids, bool disabled) const {
1415 DCHECK(entry_ids);
1416 entry_ids->clear();
1417 for (size_t i = 0; i < active_entries_.size(); ++i) {
1418 if (disabled == active_entries_[i]->disabled())
1419 entry_ids->push_back(active_entries_[i]->id());
1423 void GpuControlList::GetReasons(base::ListValue* problem_list,
1424 const std::string& tag) const {
1425 DCHECK(problem_list);
1426 for (size_t i = 0; i < active_entries_.size(); ++i) {
1427 GpuControlListEntry* entry = active_entries_[i].get();
1428 if (entry->disabled())
1429 continue;
1430 base::DictionaryValue* problem = new base::DictionaryValue();
1432 problem->SetString("description", entry->description());
1434 base::ListValue* cr_bugs = new base::ListValue();
1435 for (size_t j = 0; j < entry->cr_bugs().size(); ++j)
1436 cr_bugs->Append(new base::FundamentalValue(entry->cr_bugs()[j]));
1437 problem->Set("crBugs", cr_bugs);
1439 base::ListValue* webkit_bugs = new base::ListValue();
1440 for (size_t j = 0; j < entry->webkit_bugs().size(); ++j) {
1441 webkit_bugs->Append(new base::FundamentalValue(entry->webkit_bugs()[j]));
1443 problem->Set("webkitBugs", webkit_bugs);
1445 base::ListValue* features = new base::ListValue();
1446 entry->GetFeatureNames(features, feature_map_, supports_feature_type_all_);
1447 problem->Set("affectedGpuSettings", features);
1449 DCHECK(tag == "workarounds" || tag == "disabledFeatures");
1450 problem->SetString("tag", tag);
1452 problem_list->Append(problem);
1456 size_t GpuControlList::num_entries() const {
1457 return entries_.size();
1460 uint32 GpuControlList::max_entry_id() const {
1461 return max_entry_id_;
1464 std::string GpuControlList::version() const {
1465 return version_;
1468 GpuControlList::OsType GpuControlList::GetOsType() {
1469 #if defined(OS_CHROMEOS)
1470 return kOsChromeOS;
1471 #elif defined(OS_WIN)
1472 return kOsWin;
1473 #elif defined(OS_ANDROID)
1474 return kOsAndroid;
1475 #elif defined(OS_LINUX) || defined(OS_OPENBSD)
1476 return kOsLinux;
1477 #elif defined(OS_MACOSX)
1478 return kOsMacosx;
1479 #else
1480 return kOsUnknown;
1481 #endif
1484 void GpuControlList::Clear() {
1485 entries_.clear();
1486 active_entries_.clear();
1487 max_entry_id_ = 0;
1490 // static
1491 GpuControlList::NumericOp GpuControlList::StringToNumericOp(
1492 const std::string& op) {
1493 if (op == "=")
1494 return kEQ;
1495 if (op == "<")
1496 return kLT;
1497 if (op == "<=")
1498 return kLE;
1499 if (op == ">")
1500 return kGT;
1501 if (op == ">=")
1502 return kGE;
1503 if (op == "any")
1504 return kAny;
1505 if (op == "between")
1506 return kBetween;
1507 return kUnknown;
1510 void GpuControlList::AddSupportedFeature(
1511 const std::string& feature_name, int feature_id) {
1512 feature_map_[feature_name] = feature_id;
1515 void GpuControlList::set_supports_feature_type_all(bool supported) {
1516 supports_feature_type_all_ = supported;
1519 } // namespace gpu