Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
48dad962
Kaydet (Commit)
48dad962
authored
Kas 03, 2014
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#705527 drop testlistener that logs to c:\listener.out
Change-Id: Id9eab9e44d4b0e705289fa45be0fc2343903de09
üst
2cfc6259
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
245 deletions
+0
-245
Library_unoxml.mk
unoxml/Library_unoxml.mk
+0
-1
testlistener.cxx
unoxml/source/events/testlistener.cxx
+0
-132
testlistener.hxx
unoxml/source/events/testlistener.hxx
+0
-100
services.cxx
unoxml/source/service/services.cxx
+0
-9
unoxml.component
unoxml/source/service/unoxml.component
+0
-3
No files found.
unoxml/Library_unoxml.mk
Dosyayı görüntüle @
48dad962
...
...
@@ -71,7 +71,6 @@ $(eval $(call gb_Library_add_exception_objects,unoxml,\
unoxml/source/events/mutationevent \
unoxml/source/events/uievent \
unoxml/source/events/mouseevent \
unoxml/source/events/testlistener \
unoxml/source/service/services \
))
...
...
unoxml/source/events/testlistener.cxx
deleted
100644 → 0
Dosyayı görüntüle @
2cfc6259
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <stdio.h>
#include <com/sun/star/lang/IllegalArgumentException.hpp>
#include <cppuhelper/supportsservice.hxx>
#include "testlistener.hxx"
#define U2S(s) OUStringToOString(s, RTL_TEXTENCODING_UTF8).getStr()
using
namespace
css
::
uno
;
using
namespace
css
::
xml
::
dom
::
events
;
using
css
::
lang
::
XMultiServiceFactory
;
using
css
::
lang
::
IllegalArgumentException
;
namespace
DOM
{
namespace
events
{
Reference
<
XInterface
>
CTestListener
::
_getInstance
(
const
Reference
<
XMultiServiceFactory
>&
rSMgr
)
{
// XXX
// return static_cast< XXPathAPI* >(new CTestListener());
return
Reference
<
XInterface
>
(
static_cast
<
XEventListener
*>
(
new
CTestListener
(
rSMgr
)));
}
const
char
*
CTestListener
::
aImplementationName
=
"com.sun.star.comp.xml.dom.events.TestListener"
;
const
char
*
CTestListener
::
aSupportedServiceNames
[]
=
{
"com.sun.star.comp.xml.dom.events.TestListener"
,
NULL
};
OUString
CTestListener
::
_getImplementationName
()
{
return
OUString
::
createFromAscii
(
aImplementationName
);
}
Sequence
<
OUString
>
CTestListener
::
_getSupportedServiceNames
()
{
Sequence
<
OUString
>
aSequence
;
for
(
int
i
=
0
;
aSupportedServiceNames
[
i
]
!=
NULL
;
i
++
)
{
aSequence
.
realloc
(
i
+
1
);
aSequence
[
i
]
=
(
OUString
::
createFromAscii
(
aSupportedServiceNames
[
i
]));
}
return
aSequence
;
}
Sequence
<
OUString
>
SAL_CALL
CTestListener
::
getSupportedServiceNames
()
throw
(
RuntimeException
,
std
::
exception
)
{
return
CTestListener
::
_getSupportedServiceNames
();
}
OUString
SAL_CALL
CTestListener
::
getImplementationName
()
throw
(
RuntimeException
,
std
::
exception
)
{
return
CTestListener
::
_getImplementationName
();
}
sal_Bool
SAL_CALL
CTestListener
::
supportsService
(
const
OUString
&
aServiceName
)
throw
(
RuntimeException
,
std
::
exception
)
{
return
cppu
::
supportsService
(
this
,
aServiceName
);
}
// --- XInitialize
void
SAL_CALL
CTestListener
::
initialize
(
const
Sequence
<
Any
>&
args
)
throw
(
RuntimeException
,
std
::
exception
)
{
if
(
args
.
getLength
()
<
3
)
throw
IllegalArgumentException
(
"Wrong number of arguments"
,
Reference
<
XInterface
>
(),
0
);
Reference
<
XEventTarget
>
aTarget
;
if
(
!
(
args
[
0
]
>>=
aTarget
))
throw
IllegalArgumentException
(
"Illegal argument 1"
,
Reference
<
XInterface
>
(),
1
);
OUString
aType
;
if
(
!
(
args
[
1
]
>>=
aType
))
throw
IllegalArgumentException
(
"Illegal argument 2"
,
Reference
<
XInterface
>
(),
2
);
bool
bCapture
=
false
;
if
(
!
(
args
[
2
]
>>=
bCapture
))
throw
IllegalArgumentException
(
"Illegal argument 3"
,
Reference
<
XInterface
>
(),
3
);
if
(
!
(
args
[
3
]
>>=
m_name
))
m_name
=
"<unnamed listener>"
;
m_target
=
aTarget
;
m_type
=
aType
;
m_capture
=
bCapture
;
m_target
->
addEventListener
(
m_type
,
Reference
<
XEventListener
>
(
this
),
m_capture
);
}
CTestListener
::~
CTestListener
()
{
fprintf
(
stderr
,
"CTestListener::~CTestListener()
\n
"
);
if
(
m_target
.
is
())
m_target
->
removeEventListener
(
m_type
,
Reference
<
XEventListener
>
(
this
),
m_capture
);
}
// --- XEventListener
void
SAL_CALL
CTestListener
::
handleEvent
(
const
Reference
<
XEvent
>&
evt
)
throw
(
RuntimeException
,
std
::
exception
)
{
FILE
*
f
=
fopen
(
"C:
\\
listener.out"
,
"a"
);
fprintf
(
f
,
"CTestListener::handleEvent in %s
\n
"
,
U2S
(
m_name
));
fprintf
(
f
,
" type: %s
\n\n
"
,
OUStringToOString
(
evt
->
getType
(),
RTL_TEXTENCODING_ASCII_US
).
getStr
());
fclose
(
f
);
}
}}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
unoxml/source/events/testlistener.hxx
deleted
100644 → 0
Dosyayı görüntüle @
2cfc6259
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_UNOXML_SOURCE_EVENTS_TESTLISTENER_HXX
#define INCLUDED_UNOXML_SOURCE_EVENTS_TESTLISTENER_HXX
#include <sal/types.h>
#include <com/sun/star/uno/Reference.h>
#include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/uno/XInterface.hpp>
#include <com/sun/star/uno/Exception.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XInitialization.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/xml/dom/events/XEventTarget.hpp>
#include <com/sun/star/xml/dom/events/XEventListener.hpp>
#include <com/sun/star/xml/dom/events/XEvent.hpp>
#include <cppuhelper/implbase3.hxx>
namespace
DOM
{
namespace
events
{
typedef
::
cppu
::
WeakImplHelper3
<
css
::
xml
::
dom
::
events
::
XEventListener
,
css
::
lang
::
XInitialization
,
css
::
lang
::
XServiceInfo
>
CTestListener_Base
;
class
CTestListener
:
public
CTestListener_Base
{
private
:
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>
m_factory
;
css
::
uno
::
Reference
<
css
::
xml
::
dom
::
events
::
XEventTarget
>
m_target
;
OUString
m_type
;
bool
m_capture
;
OUString
m_name
;
public
:
// static helpers for service info and component management
static
const
char
*
aImplementationName
;
static
const
char
*
aSupportedServiceNames
[];
static
OUString
_getImplementationName
();
static
css
::
uno
::
Sequence
<
OUString
>
_getSupportedServiceNames
();
static
css
::
uno
::
Reference
<
XInterface
>
_getInstance
(
const
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>&
rSMgr
);
CTestListener
(
const
css
::
uno
::
Reference
<
css
::
lang
::
XMultiServiceFactory
>&
rSMgr
)
:
m_factory
(
rSMgr
)
,
m_capture
(
false
)
{
}
virtual
~
CTestListener
();
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
// XEventListener
virtual
void
SAL_CALL
initialize
(
const
css
::
uno
::
Sequence
<
css
::
uno
::
Any
>&
args
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
virtual
void
SAL_CALL
handleEvent
(
const
css
::
uno
::
Reference
<
css
::
xml
::
dom
::
events
::
XEvent
>&
evt
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
SAL_OVERRIDE
;
};
}}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
unoxml/source/service/services.cxx
Dosyayı görüntüle @
48dad962
...
...
@@ -32,10 +32,8 @@
#include "../dom/documentbuilder.hxx"
#include "../dom/saxbuilder.hxx"
#include "../xpath/xpathapi.hxx"
#include "../events/testlistener.hxx"
using
namespace
::
DOM
;
using
namespace
::
DOM
::
events
;
using
namespace
::
XPath
;
using
namespace
css
::
uno
;
using
namespace
css
::
lang
;
...
...
@@ -75,13 +73,6 @@ SAL_DLLPUBLIC_EXPORT void* SAL_CALL unoxml_component_getFactory(const sal_Char *
xServiceManager
,
CXPathAPI
::
_getImplementationName
(),
CXPathAPI
::
_getInstance
,
CXPathAPI
::
_getSupportedServiceNames
()));
}
else
if
(
CTestListener
::
_getImplementationName
().
equalsAscii
(
pImplementationName
)
)
{
xFactory
=
Reference
<
XSingleServiceFactory
>
(
cppu
::
createSingleFactory
(
xServiceManager
,
CTestListener
::
_getImplementationName
(),
CTestListener
::
_getInstance
,
CTestListener
::
_getSupportedServiceNames
()));
}
// Factory is valid - service was found.
if
(
xFactory
.
is
()
)
...
...
unoxml/source/service/unoxml.component
Dosyayı görüntüle @
48dad962
...
...
@@ -25,9 +25,6 @@
<implementation
name=
"com.sun.star.comp.xml.dom.SAXDocumentBuilder"
>
<service
name=
"com.sun.star.xml.dom.SAXDocumentBuilder"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.xml.dom.events.TestListener"
>
<service
name=
"com.sun.star.comp.xml.dom.events.TestListener"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.xml.xpath.XPathAPI"
>
<service
name=
"com.sun.star.xml.xpath.XPathAPI"
/>
</implementation>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment