~walkerlee/totem/pre-interview

« back to all changes in this revision

Viewing changes to browser-plugin/totemNPObjectWrapper.h

Tags: 2.24.3-3
* totem-mozilla.docs: ship README.browser-plugin which explains how to 
  disable the plugin for some MIME types.
* rules: remove the hack that only let totem-xine support VCDs and 
  DVDs, now that GStreamer supports them. Closes: #370789.
* 01_fake_keypresses.patch: new patch. Completely disable the broken 
  XTEST code that generates fake keypresses. Closes: #500330.
* 90_autotools.patch: regenerated.
* Build-depend on nautilus 2.22 to be sure to build the extension for 
  the correct version.
* totem-xine depends on libxine1-x.
* Standards version is 3.8.1.
* Upload to unstable.
* 04_tracker_build.patch: new patch, stolen upstream. Fix build with 
  latest tracker version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2008 Christian Persch
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
17
 * Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef __TOTEM_NPOBJECT_WRAPPER_H__
 
21
#define __TOTEM_NPOBJECT_WRAPPER_H__
 
22
 
 
23
#include <npapi.h>
 
24
#include <npruntime.h>
 
25
 
 
26
#include <assert.h>
 
27
 
 
28
class totemNPObjectWrapper {
 
29
 
 
30
  public:
 
31
 
 
32
    totemNPObjectWrapper () : mObject (0) { }
 
33
    totemNPObjectWrapper (NPObject *aObject) : mObject (aObject) { } /* adopts */
 
34
    totemNPObjectWrapper (const totemNPObjectWrapper& aOther) { Assign (aOther.mObject); }
 
35
 
 
36
    ~totemNPObjectWrapper () { Assign (0); }
 
37
 
 
38
    bool IsNull () const { return mObject == 0; }
 
39
 
 
40
    totemNPObjectWrapper& operator= (NPObject *aObject) { Assign (aObject); return *this; }
 
41
 
 
42
    operator void*() const { return reinterpret_cast<void*>(mObject); }
 
43
    operator NPObject*() const { return mObject; }
 
44
    NPObject* operator->() const { assert (!IsNull ()); return mObject; }
 
45
 
 
46
    class GetterRetains {
 
47
      public:
 
48
       explicit GetterRetains (totemNPObjectWrapper& aTarget) : mTarget (aTarget) { VOID_TO_NPVARIANT (mVariant); }
 
49
        ~GetterRetains () {
 
50
          if (!NPVARIANT_IS_VOID (mVariant)) {
 
51
            if (NPVARIANT_IS_OBJECT (mVariant)) {
 
52
              mTarget = NPVARIANT_TO_OBJECT (mVariant);
 
53
            }
 
54
            NPN_ReleaseVariantValue (&mVariant);
 
55
          }
 
56
       }
 
57
 
 
58
       operator void**() { return reinterpret_cast<void**> (mTarget.StartAssignment ()); } // FIXMEchpe this looks wrong...
 
59
       operator NPObject**() { return mTarget.StartAssignment (); }
 
60
       operator NPVariant*() { return &mVariant; }
 
61
 
 
62
       /* NPN_GetValue uses void* which is broken */
 
63
       operator void*() { return reinterpret_cast<void*> (mTarget.StartAssignment ()); }
 
64
 
 
65
      private:
 
66
        totemNPObjectWrapper& mTarget;
 
67
        NPVariant mVariant;
 
68
    };
 
69
 
 
70
    class AlreadyRetained {
 
71
      public:
 
72
        explicit AlreadyRetained (NPObject *aObject) : mObject (aObject) { }
 
73
        ~AlreadyRetained () { }
 
74
 
 
75
        NPObject *Get () const { return mObject; }
 
76
      private:
 
77
        NPObject *mObject;
 
78
    };
 
79
 
 
80
    totemNPObjectWrapper& operator= (const AlreadyRetained& aRetainer) { Adopt (aRetainer.Get()); return *this; }
 
81
 
 
82
  protected:
 
83
 
 
84
    totemNPObjectWrapper& operator= (const totemNPObjectWrapper&); // not implemented
 
85
 
 
86
    void Assign (NPObject *aObject) {
 
87
      if (mObject) {
 
88
        NPN_ReleaseObject (mObject);
 
89
      }
 
90
 
 
91
      mObject = aObject;
 
92
      if (mObject) {
 
93
        NPN_RetainObject (mObject);
 
94
      }
 
95
    }
 
96
 
 
97
    void Adopt (NPObject *aObject) {
 
98
      if (mObject) {
 
99
        NPN_ReleaseObject (mObject);
 
100
      }
 
101
 
 
102
      mObject = aObject;
 
103
    }
 
104
 
 
105
    NPObject** StartAssignment () { Assign (0); return &mObject; }
 
106
 
 
107
    NPObject *mObject;
 
108
};
 
109
 
 
110
inline totemNPObjectWrapper::GetterRetains
 
111
getter_Retains (totemNPObjectWrapper &aTarget)
 
112
{
 
113
  return totemNPObjectWrapper::GetterRetains (aTarget);
 
114
}
 
115
 
 
116
inline totemNPObjectWrapper::AlreadyRetained
 
117
do_CreateInstance (totemNPClass_base* aClass, NPP aNPP)
 
118
{
 
119
  assert (aClass);
 
120
  assert (aNPP);
 
121
  return totemNPObjectWrapper::AlreadyRetained (aClass->CreateInstance (aNPP));
 
122
}
 
123
 
 
124
#endif /* __TOTEM_NPOBJECT_WRAPPER_H__ */