summaryrefslogtreecommitdiffstats
path: root/o3d/gpu_plugin/np_utils/np_dispatcher.cc
blob: 06658b44100ffcb18c22bb71d61f694c51c13f37 (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
// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "o3d/gpu_plugin/np_utils/np_dispatcher.h"

namespace gpu_plugin {

bool DispatcherHasMethodHelper(BaseNPDispatcher* chain,
                               NPObject* object,
                               NPIdentifier name) {
  for (BaseNPDispatcher* dispatcher = chain;
       dispatcher;
       dispatcher = dispatcher->next()) {
    if (dispatcher->name() == name) {
      return true;
    }
  }

  return false;
}

bool DispatcherInvokeHelper(BaseNPDispatcher* chain,
                            NPObject* object,
                            NPIdentifier name,
                            const NPVariant* args,
                            uint32_t num_args,
                            NPVariant* result) {
  VOID_TO_NPVARIANT(*result);

  for (BaseNPDispatcher* dispatcher = chain;
       dispatcher;
       dispatcher = dispatcher->next()) {
    if (dispatcher->name() == name && dispatcher->num_args() == num_args) {
      if (dispatcher->Invoke(object, args, num_args, result))
        return true;
    }
  }

  return false;
}

bool DispatcherEnumerateHelper(BaseNPDispatcher* chain,
                               NPObject* object,
                               NPIdentifier** names,
                               uint32_t* num_names) {
  // Count the number of names.
  *num_names = 0;
  for (BaseNPDispatcher* dispatcher = chain;
       dispatcher;
       dispatcher = dispatcher->next()) {
    ++(*num_names);
  }

  // Copy names into the array.
  *names = static_cast<NPIdentifier*>(
      NPBrowser::get()->MemAlloc((*num_names) * sizeof(**names)));
  int i = 0;
  for (BaseNPDispatcher* dispatcher = chain;
       dispatcher;
       dispatcher = dispatcher->next()) {
    (*names)[i] = dispatcher->name();
    ++i;
  }

  return true;
}

BaseNPDispatcher::BaseNPDispatcher(BaseNPDispatcher* next, const NPUTF8* name)
    : next_(next) {
  // Convert first character to lower case if it is the ASCII range.
  // TODO(apatrick): do this correctly for non-ASCII characters.
  std::string java_script_style_name(name);
  if (isupper(java_script_style_name[0])) {
    java_script_style_name[0] = tolower(java_script_style_name[0]);
  }

  name_ = NPBrowser::get()->GetStringIdentifier(
      java_script_style_name.c_str());
}

BaseNPDispatcher::~BaseNPDispatcher() {
}

}  // namespace gpu_plugin