1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: sdbdatacolumn.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SVX_FORM_SDBDATACOLUMN_HXX
32 #define SVX_FORM_SDBDATACOLUMN_HXX
34 #include <com/sun/star/beans/XPropertySet.hpp>
35 #include <com/sun/star/sdb/XColumn.hpp>
36 #include <com/sun/star/sdb/XColumnUpdate.hpp>
37 #include <osl/diagnose.h>
39 //..............................................................................
42 //..............................................................................
44 //==========================================================================
45 //= DataColumn - a class wrapping an object implementing a sdb::DataColumn service
46 //==========================================================================
49 // interfaces needed for sddb::Column
50 ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
> m_xPropertySet
;
51 // interfaces needed for sdb::DataColumn
52 ::com::sun::star::uno::Reference
< ::com::sun::star::sdb::XColumn
> m_xColumn
;
53 ::com::sun::star::uno::Reference
< ::com::sun::star::sdb::XColumnUpdate
> m_xColumnUpdate
;
57 DataColumn(const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>& _rxIFace
);
58 // if the object behind _rxIFace doesn't fully support the DataColumn service,
59 // (which is checked via the supported interfaces) _all_ members will be set to
60 // void !, even if the object has some of the needed interfaces.
62 sal_Bool
is() const { return m_xColumn
.is(); }
63 sal_Bool
Is() const { return m_xColumn
.is(); }
64 sal_Bool
supportsUpdate() const { return m_xColumnUpdate
.is(); }
66 DataColumn
* operator ->() { return this; }
67 operator ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XInterface
> () const{ return m_xColumn
.get(); }
70 inline const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySet
>& getPropertySet() const
72 return m_xPropertySet
;
74 inline const ::com::sun::star::uno::Reference
< ::com::sun::star::sdb::XColumn
>& getColumn() const
78 inline const ::com::sun::star::uno::Reference
< ::com::sun::star::sdb::XColumnUpdate
>& getColumnUpdate() const
80 OSL_ENSURE(m_xColumnUpdate
.is() , "DataColumn::getColumnUpdate: NULL!");
81 return m_xColumnUpdate
;
84 // das normale queryInterface
85 ::com::sun::star::uno::Any SAL_CALL
queryInterface( const ::com::sun::star::uno::Type
& type
) throw ( ::com::sun::star::uno::RuntimeException
)
86 { return m_xColumn
->queryInterface(type
); }
88 // ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet>
89 inline ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertySetInfo
> getPropertySetInfo() const throw( ::com::sun::star::uno::RuntimeException
);
90 inline void setPropertyValue(const ::rtl::OUString
& aPropertyName
, const ::com::sun::star::uno::Any
& aValue
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::beans::PropertyVetoException
, ::com::sun::star::lang::IllegalArgumentException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
91 inline ::com::sun::star::uno::Any
getPropertyValue(const ::rtl::OUString
& PropertyName
) const throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
92 inline void addPropertyChangeListener(const ::rtl::OUString
& aPropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyChangeListener
>& xListener
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
93 inline void removePropertyChangeListener(const ::rtl::OUString
& aPropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XPropertyChangeListener
>& aListener
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
94 inline void addVetoableChangeListener(const ::rtl::OUString
& PropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XVetoableChangeListener
>& aListener
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
95 inline void removeVetoableChangeListener(const ::rtl::OUString
& PropertyName
, const ::com::sun::star::uno::Reference
< ::com::sun::star::beans::XVetoableChangeListener
>& aListener
) throw( ::com::sun::star::beans::UnknownPropertyException
, ::com::sun::star::lang::WrappedTargetException
, ::com::sun::star::uno::RuntimeException
);
97 // ::com::sun::star::sdb::XColumn
98 inline sal_Bool
wasNull() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
99 inline ::rtl::OUString
getString() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
100 inline sal_Bool
getBoolean() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
101 inline sal_Int8
getByte() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
102 inline sal_Int16
getShort() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
103 inline sal_Int32
getInt() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
104 inline sal_Int64
getLong() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
105 inline float getFloat() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
106 inline double getDouble() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
107 inline ::com::sun::star::uno::Sequence
< sal_Int8
> getBytes() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
108 inline ::com::sun::star::util::Date
getDate() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
109 inline ::com::sun::star::util::Time
getTime() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
110 inline ::com::sun::star::util::DateTime
getTimestamp() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
111 inline ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
> getBinaryStream() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
112 inline ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
> getCharacterStream() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
113 inline ::com::sun::star::uno::Any
getObject(const ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameAccess
>& typeMap
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
114 inline ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XRef
> getRef() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
115 inline ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XBlob
> getBlob() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
116 inline ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XClob
> getClob() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
117 inline ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XArray
> getArray() throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
120 inline void updateNull(void) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
121 inline void updateBoolean(sal_Bool x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
122 inline void updateByte(sal_Int8 x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
123 inline void updateShort(sal_Int16 x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
124 inline void updateInt(sal_Int32 x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
125 inline void updateLong(sal_Int64 x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
126 inline void updateFloat(float x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
127 inline void updateDouble(double x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
128 inline void updateString(const ::rtl::OUString
& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
129 inline void updateBytes(const ::com::sun::star::uno::Sequence
< sal_Int8
>& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
130 inline void updateDate(const com::sun::star::util::Date
& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
131 inline void updateTime(const ::com::sun::star::util::Time
& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
132 inline void updateTimestamp(const ::com::sun::star::util::DateTime
& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
133 inline void updateBinaryStream(const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>& x
, sal_Int32 length
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
134 inline void updateCharacterStream(const ::com::sun::star::uno::Reference
< ::com::sun::star::io::XInputStream
>& x
, sal_Int32 length
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
135 inline void updateObject(const ::com::sun::star::uno::Any
& x
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
136 inline void updateNumericObject(const ::com::sun::star::uno::Any
& x
, sal_Int32 scale
) throw( ::com::sun::star::sdbc::SQLException
, ::com::sun::star::uno::RuntimeException
);
139 #endif // SVX_FORM_SDBDATACOLUMN_HXX
141 //..............................................................................
142 } // namespace svxform
143 //..............................................................................