|
|
d289e2 |
From 9300cfc3cab41e0ba50eb515792286932dbcbe1e Mon Sep 17 00:00:00 2001
|
|
|
d289e2 |
From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com>
|
|
|
d289e2 |
Date: Mon, 26 Oct 2020 19:41:16 +0000
|
|
|
d289e2 |
Subject: [PATCH] munge cmis headers to remove exception specs
|
|
|
d289e2 |
|
|
|
d289e2 |
Change-Id: Ieea3838f4acbaabd8ee5c219a69967889292a5ca
|
|
|
d289e2 |
---
|
|
|
d289e2 |
include/libcmis/allowable-actions.hxx | 130 +++++++++++++++
|
|
|
d289e2 |
include/libcmis/document.hxx | 146 +++++++++++++++++
|
|
|
d289e2 |
include/libcmis/exception.hxx | 60 +++++++
|
|
|
d289e2 |
include/libcmis/folder.hxx | 83 ++++++++++
|
|
|
d289e2 |
include/libcmis/libcmis.hxx | 47 ++++++
|
|
|
d289e2 |
include/libcmis/oauth2-data.hxx | 76 +++++++++
|
|
|
d289e2 |
include/libcmis/object-type.hxx | 143 +++++++++++++++++
|
|
|
d289e2 |
include/libcmis/object.hxx | 217 ++++++++++++++++++++++++++
|
|
|
d289e2 |
include/libcmis/property-type.hxx | 125 +++++++++++++++
|
|
|
d289e2 |
include/libcmis/property.hxx | 88 +++++++++++
|
|
|
d289e2 |
include/libcmis/rendition.hxx | 88 +++++++++++
|
|
|
d289e2 |
include/libcmis/repository.hxx | 117 ++++++++++++++
|
|
|
d289e2 |
include/libcmis/session-factory.hxx | 149 ++++++++++++++++++
|
|
|
d289e2 |
include/libcmis/session.hxx | 100 ++++++++++++
|
|
|
d289e2 |
include/libcmis/xml-utils.hxx | 167 ++++++++++++++++++++
|
|
|
d289e2 |
include/libcmis/xmlserializable.hxx | 46 ++++++
|
|
|
d289e2 |
16 files changed, 1782 insertions(+)
|
|
|
d289e2 |
create mode 100644 include/libcmis/allowable-actions.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/document.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/exception.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/folder.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/libcmis.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/oauth2-data.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/object-type.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/object.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/property-type.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/property.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/rendition.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/repository.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/session-factory.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/session.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/xml-utils.hxx
|
|
|
d289e2 |
create mode 100644 include/libcmis/xmlserializable.hxx
|
|
|
d289e2 |
|
|
|
d289e2 |
diff --git a/include/libcmis/allowable-actions.hxx b/include/libcmis/allowable-actions.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..24998761d10f
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/allowable-actions.hxx
|
|
|
d289e2 |
@@ -0,0 +1,130 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _ALLOWABLE_ACTIONS_HXX_
|
|
|
d289e2 |
+#define _ALLOWABLE_ACTIONS_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Object;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class ObjectAction
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ enum Type
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ DeleteObject,
|
|
|
d289e2 |
+ UpdateProperties,
|
|
|
d289e2 |
+ GetFolderTree,
|
|
|
d289e2 |
+ GetProperties,
|
|
|
d289e2 |
+ GetObjectRelationships,
|
|
|
d289e2 |
+ GetObjectParents,
|
|
|
d289e2 |
+ GetFolderParent,
|
|
|
d289e2 |
+ GetDescendants,
|
|
|
d289e2 |
+ MoveObject,
|
|
|
d289e2 |
+ DeleteContentStream,
|
|
|
d289e2 |
+ CheckOut,
|
|
|
d289e2 |
+ CancelCheckOut,
|
|
|
d289e2 |
+ CheckIn,
|
|
|
d289e2 |
+ SetContentStream,
|
|
|
d289e2 |
+ GetAllVersions,
|
|
|
d289e2 |
+ AddObjectToFolder,
|
|
|
d289e2 |
+ RemoveObjectFromFolder,
|
|
|
d289e2 |
+ GetContentStream,
|
|
|
d289e2 |
+ ApplyPolicy,
|
|
|
d289e2 |
+ GetAppliedPolicies,
|
|
|
d289e2 |
+ RemovePolicy,
|
|
|
d289e2 |
+ GetChildren,
|
|
|
d289e2 |
+ CreateDocument,
|
|
|
d289e2 |
+ CreateFolder,
|
|
|
d289e2 |
+ CreateRelationship,
|
|
|
d289e2 |
+ DeleteTree,
|
|
|
d289e2 |
+ GetRenditions,
|
|
|
d289e2 |
+ GetACL,
|
|
|
d289e2 |
+ ApplyACL
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ Type m_type;
|
|
|
d289e2 |
+ bool m_enabled;
|
|
|
d289e2 |
+ bool m_valid;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ ObjectAction( xmlNodePtr node );
|
|
|
d289e2 |
+ virtual ~ObjectAction( ){ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Type getType( ) { return m_type; }
|
|
|
d289e2 |
+ bool isEnabled( ) { return m_enabled; }
|
|
|
d289e2 |
+ bool isValid( ) { return m_valid; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Parses the permission name into one of the enum values or throws
|
|
|
d289e2 |
+ an exception for invalid input strings.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ static Type parseType( std::string type );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Class providing access to the allowed actions on an object.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class AllowableActions
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ protected:
|
|
|
d289e2 |
+ std::map< ObjectAction::Type, bool > m_states;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ /** Default constructor for testing purpose
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ AllowableActions( );
|
|
|
d289e2 |
+ AllowableActions( xmlNodePtr node );
|
|
|
d289e2 |
+ AllowableActions( const AllowableActions& copy );
|
|
|
d289e2 |
+ virtual ~AllowableActions( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ AllowableActions& operator=( const AllowableActions& copy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Returns the permissions for the corresponding actions.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ bool isAllowed( ObjectAction::Type action );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Returns true if the action was defined, false if the default
|
|
|
d289e2 |
+ value is used.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ bool isDefined( ObjectAction::Type action );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef boost::shared_ptr< AllowableActions > AllowableActionsPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/document.hxx b/include/libcmis/document.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..ce123b081efb
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/document.hxx
|
|
|
d289e2 |
@@ -0,0 +1,146 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _DOCUMENT_HXX_
|
|
|
d289e2 |
+#define _DOCUMENT_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <iostream>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "object.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Folder;
|
|
|
d289e2 |
+ class Session;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Interface for a CMIS Document object.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class Document : public virtual Object
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ Document( Session* session ) : Object( session ) { }
|
|
|
d289e2 |
+ virtual ~Document( ) { }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the folder parents for the document.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Note that an unfiled document will have no parent folder.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ @return the parents folder if any.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::vector< boost::shared_ptr< Folder > > getParents( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the content stream without using a temporary file.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The stream may not contain anything if there is
|
|
|
d289e2 |
+ no content or if something wrong happened during the
|
|
|
d289e2 |
+ download.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ @param streamId of the rendition
|
|
|
d289e2 |
+ @return
|
|
|
d289e2 |
+ An input stream to read the data from.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ @throws Exception
|
|
|
d289e2 |
+ if anything wrong happened during the file transfer.
|
|
|
d289e2 |
+ In such a case, the content of the stream can't be
|
|
|
d289e2 |
+ guaranteed.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< std::istream > getContentStream( std::string streamId = std::string( ) )
|
|
|
d289e2 |
+ = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Set or replace the content stream of the document.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ @param is the output stream containing the new data for the content stream
|
|
|
d289e2 |
+ @param contentType the mime-type of the new content stream
|
|
|
d289e2 |
+ @param filename the filename to set for the file
|
|
|
d289e2 |
+ @param overwrite if set to false, don't overwrite the content stream if one is already set.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ @throw Exception if anything happens during the upload like a wrong authentication,
|
|
|
d289e2 |
+ no rights to set the stream, server doesn't have the ContentStreamUpdatability
|
|
|
d289e2 |
+ capability.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual void setContentStream( boost::shared_ptr< std::ostream > os, std::string contentType,
|
|
|
d289e2 |
+ std::string filename, bool overwrite = true ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the content mime type.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::string getContentType( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the content stream filename.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::string getContentFilename( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the content length in bytes.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual long getContentLength( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Checks out the document and returns the object corresponding to the
|
|
|
d289e2 |
+ created Private Working Copy.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \return the Private Working Copy document
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< Document > checkOut( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Cancels the checkout if the document is a private working copy, or
|
|
|
d289e2 |
+ throws an exception.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual void cancelCheckout( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Check in the private working copy and create a new version or throw
|
|
|
d289e2 |
+ an exception.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The current object will be updated to reflect the changes performed
|
|
|
d289e2 |
+ on the server side.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \param isMajor defines it the version to create is a major or minor one
|
|
|
d289e2 |
+ \param comment contains the checkin comment
|
|
|
d289e2 |
+ \param properties the properties to set the new version
|
|
|
d289e2 |
+ \param stream the content stream to set for the new version
|
|
|
d289e2 |
+ \param contentType the mime type of the stream to set
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \return the document with the new version
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< Document > checkIn( bool isMajor, std::string comment,
|
|
|
d289e2 |
+ const std::map< std::string, PropertyPtr >& properties,
|
|
|
d289e2 |
+ boost::shared_ptr< std::ostream > stream,
|
|
|
d289e2 |
+ std::string contentType, std::string fileName ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::vector< boost::shared_ptr< Document > > getAllVersions( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ // virtual methods form Object
|
|
|
d289e2 |
+ virtual std::vector< std::string > getPaths( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Document > DocumentPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/exception.hxx b/include/libcmis/exception.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..16f3573da2b1
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/exception.hxx
|
|
|
d289e2 |
@@ -0,0 +1,60 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _EXCEPTION_HXX_
|
|
|
d289e2 |
+#define _EXCEPTION_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <exception>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Exception : public std::exception
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ std::string m_message;
|
|
|
d289e2 |
+ std::string m_type;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ Exception( std::string message, std::string type = "runtime" ) :
|
|
|
d289e2 |
+ exception( ),
|
|
|
d289e2 |
+ m_message( message ),
|
|
|
d289e2 |
+ m_type( type )
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ~Exception( ) throw () { }
|
|
|
d289e2 |
+ virtual const char* what() const throw()
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ return m_message.c_str( );
|
|
|
d289e2 |
+ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getType( ) const { return m_type; }
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/folder.hxx b/include/libcmis/folder.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..9f17e3883898
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/folder.hxx
|
|
|
d289e2 |
@@ -0,0 +1,83 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _FOLDER_HXX_
|
|
|
d289e2 |
+#define _FOLDER_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "object.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Document;
|
|
|
d289e2 |
+ class Session;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ struct UnfileObjects {
|
|
|
d289e2 |
+ enum Type
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ Unfile,
|
|
|
d289e2 |
+ DeleteSingleFiled,
|
|
|
d289e2 |
+ Delete
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Class representing a CMIS folder.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class Folder : public virtual Object
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ Folder( Session* session ) : Object( session ) { }
|
|
|
d289e2 |
+ virtual ~Folder() { }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::vector< std::string > getPaths( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual ::boost::shared_ptr< Folder > getFolderParent( );
|
|
|
d289e2 |
+ virtual std::vector< ObjectPtr > getChildren( ) = 0;
|
|
|
d289e2 |
+ virtual std::string getParentId( );
|
|
|
d289e2 |
+ virtual std::string getPath( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual bool isRootFolder( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual ::boost::shared_ptr< Folder > createFolder( const std::map< std::string, PropertyPtr >& properties )
|
|
|
d289e2 |
+ = 0;
|
|
|
d289e2 |
+ virtual ::boost::shared_ptr< Document > createDocument( const std::map< std::string, PropertyPtr >& properties,
|
|
|
d289e2 |
+ boost::shared_ptr< std::ostream > os, std::string contentType, std::string fileName ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::vector< std::string > removeTree( bool allVersion = true, UnfileObjects::Type unfile = UnfileObjects::Delete,
|
|
|
d289e2 |
+ bool continueOnError = false ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Folder > FolderPtr;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/libcmis.hxx b/include/libcmis/libcmis.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..540e5af127f2
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/libcmis.hxx
|
|
|
d289e2 |
@@ -0,0 +1,47 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _LIBCMIS_HXX_
|
|
|
d289e2 |
+#define _LIBCMIS_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "allowable-actions.hxx"
|
|
|
d289e2 |
+#include "document.hxx"
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "folder.hxx"
|
|
|
d289e2 |
+#include "oauth2-data.hxx"
|
|
|
d289e2 |
+#include "object-type.hxx"
|
|
|
d289e2 |
+#include "object.hxx"
|
|
|
d289e2 |
+#include "property-type.hxx"
|
|
|
d289e2 |
+#include "property.hxx"
|
|
|
d289e2 |
+#include "rendition.hxx"
|
|
|
d289e2 |
+#include "repository.hxx"
|
|
|
d289e2 |
+#include "session-factory.hxx"
|
|
|
d289e2 |
+#include "session.hxx"
|
|
|
d289e2 |
+#include "xml-utils.hxx"
|
|
|
d289e2 |
+#include "xmlserializable.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/oauth2-data.hxx b/include/libcmis/oauth2-data.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..000f9394b034
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/oauth2-data.hxx
|
|
|
d289e2 |
@@ -0,0 +1,76 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _LIBCMIS_OAUTH2_DATA_HXX_
|
|
|
d289e2 |
+#define _LIBCMIS_OAUTH2_DATA_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ /** Class storing the data needed for OAuth2 authentication.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class OAuth2Data
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_authUrl;
|
|
|
d289e2 |
+ std::string m_tokenUrl;
|
|
|
d289e2 |
+ std::string m_clientId;
|
|
|
d289e2 |
+ std::string m_clientSecret;
|
|
|
d289e2 |
+ std::string m_scope;
|
|
|
d289e2 |
+ std::string m_redirectUri;
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ OAuth2Data( );
|
|
|
d289e2 |
+ OAuth2Data( const std::string& authUrl,
|
|
|
d289e2 |
+ const std::string& tokenUrl,
|
|
|
d289e2 |
+ const std::string& scope,
|
|
|
d289e2 |
+ const std::string& redirectUri,
|
|
|
d289e2 |
+ const std::string& clientId,
|
|
|
d289e2 |
+ const std::string& clientSecret );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ OAuth2Data( const OAuth2Data& copy );
|
|
|
d289e2 |
+ ~OAuth2Data( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ OAuth2Data& operator=( const OAuth2Data& copy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ bool isComplete();
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ const std::string& getAuthUrl() { return m_authUrl; }
|
|
|
d289e2 |
+ const std::string& getTokenUrl() { return m_tokenUrl; }
|
|
|
d289e2 |
+ const std::string& getClientId() { return m_clientId; }
|
|
|
d289e2 |
+ const std::string& getClientSecret() { return m_clientSecret; }
|
|
|
d289e2 |
+ const std::string& getScope() { return m_scope; }
|
|
|
d289e2 |
+ const std::string& getRedirectUri() { return m_redirectUri; }
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< OAuth2Data > OAuth2DataPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif //_LIBCMIS_OAUTH2_DATA_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
diff --git a/include/libcmis/object-type.hxx b/include/libcmis/object-type.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..a8576ec80f0b
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/object-type.hxx
|
|
|
d289e2 |
@@ -0,0 +1,143 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _OBJECT_TYPE_HXX_
|
|
|
d289e2 |
+#define _OBJECT_TYPE_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "property-type.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ /** Class representing a CMIS object type definition.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class ObjectType
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ enum ContentStreamAllowed
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ NotAllowed,
|
|
|
d289e2 |
+ Allowed,
|
|
|
d289e2 |
+ Required
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ protected:
|
|
|
d289e2 |
+ time_t m_refreshTimestamp;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_id;
|
|
|
d289e2 |
+ std::string m_localName;
|
|
|
d289e2 |
+ std::string m_localNamespace;
|
|
|
d289e2 |
+ std::string m_displayName;
|
|
|
d289e2 |
+ std::string m_queryName;
|
|
|
d289e2 |
+ std::string m_description;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_parentTypeId;
|
|
|
d289e2 |
+ std::string m_baseTypeId;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ bool m_creatable;
|
|
|
d289e2 |
+ bool m_fileable;
|
|
|
d289e2 |
+ bool m_queryable;
|
|
|
d289e2 |
+ bool m_fulltextIndexed;
|
|
|
d289e2 |
+ bool m_includedInSupertypeQuery;
|
|
|
d289e2 |
+ bool m_controllablePolicy;
|
|
|
d289e2 |
+ bool m_controllableAcl;
|
|
|
d289e2 |
+ bool m_versionable;
|
|
|
d289e2 |
+ libcmis::ObjectType::ContentStreamAllowed m_contentStreamAllowed;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::map< std::string, libcmis::PropertyTypePtr > m_propertiesTypes;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ObjectType( );
|
|
|
d289e2 |
+ void initializeFromNode( xmlNodePtr node );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ObjectType( xmlNodePtr node );
|
|
|
d289e2 |
+ ObjectType( const ObjectType& copy );
|
|
|
d289e2 |
+ virtual ~ObjectType() { }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ObjectType& operator=( const ObjectType& copy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Reload the data from the server.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \attention
|
|
|
d289e2 |
+ This method needs to be implemented in subclasses or it will
|
|
|
d289e2 |
+ do nothing
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual void refresh( );
|
|
|
d289e2 |
+ virtual time_t getRefreshTimestamp( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getId( ) const;
|
|
|
d289e2 |
+ std::string getLocalName( ) const;
|
|
|
d289e2 |
+ std::string getLocalNamespace( ) const;
|
|
|
d289e2 |
+ std::string getDisplayName( ) const;
|
|
|
d289e2 |
+ std::string getQueryName( ) const;
|
|
|
d289e2 |
+ std::string getDescription( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual boost::shared_ptr< ObjectType > getParentType( );
|
|
|
d289e2 |
+ virtual boost::shared_ptr< ObjectType > getBaseType( );
|
|
|
d289e2 |
+ virtual std::vector< boost::shared_ptr< ObjectType > > getChildren( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the parent type id without extracting the complete parent type from
|
|
|
d289e2 |
+ the repository. This is mainly provided for performance reasons.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \since libcmis 0.4
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ std::string getParentTypeId( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the base type id without extracting the complete base type from
|
|
|
d289e2 |
+ the repository. This is mainly provided for performance reasons.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \since libcmis 0.4
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ std::string getBaseTypeId( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ bool isCreatable( ) const;
|
|
|
d289e2 |
+ bool isFileable( ) const;
|
|
|
d289e2 |
+ bool isQueryable( ) const;
|
|
|
d289e2 |
+ bool isFulltextIndexed( ) const;
|
|
|
d289e2 |
+ bool isIncludedInSupertypeQuery( ) const;
|
|
|
d289e2 |
+ bool isControllablePolicy( ) const;
|
|
|
d289e2 |
+ bool isControllableACL( ) const;
|
|
|
d289e2 |
+ bool isVersionable( ) const;
|
|
|
d289e2 |
+ ContentStreamAllowed getContentStreamAllowed( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::map< std::string, PropertyTypePtr >& getPropertiesTypes( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< ObjectType > ObjectTypePtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/object.hxx b/include/libcmis/object.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..fa8d465e7c3b
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/object.hxx
|
|
|
d289e2 |
@@ -0,0 +1,217 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _OBJECT_HXX_
|
|
|
d289e2 |
+#define _OBJECT_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <ctime>
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#ifndef __cplusplus
|
|
|
d289e2 |
+#include <stdbool.h>
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/date_time.hpp>
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "allowable-actions.hxx"
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "object-type.hxx"
|
|
|
d289e2 |
+#include "property.hxx"
|
|
|
d289e2 |
+#include "xmlserializable.hxx"
|
|
|
d289e2 |
+#include "rendition.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Folder;
|
|
|
d289e2 |
+ class Session;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Class representing any CMIS object.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class Object : public XmlSerializable
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ protected:
|
|
|
d289e2 |
+ Session* m_session;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ObjectTypePtr m_typeDescription;
|
|
|
d289e2 |
+ time_t m_refreshTimestamp;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Type id used as cache before we get it as a property
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ std::string m_typeId;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::map< std::string, PropertyPtr > m_properties;
|
|
|
d289e2 |
+ boost::shared_ptr< AllowableActions > m_allowableActions;
|
|
|
d289e2 |
+ std::vector< RenditionPtr > m_renditions;
|
|
|
d289e2 |
+ void initializeFromNode( xmlNodePtr node );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Object( Session* session );
|
|
|
d289e2 |
+ Object( Session* session, xmlNodePtr node );
|
|
|
d289e2 |
+ Object( const Object& copy );
|
|
|
d289e2 |
+ virtual ~Object( ) { }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Object& operator=( const Object& copy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string getId( );
|
|
|
d289e2 |
+ virtual std::string getName( );
|
|
|
d289e2 |
+ virtual std::string getStringProperty( const std::string& propertyName );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Computes the paths for the objects.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Note that folders will have only path, documents may have
|
|
|
d289e2 |
+ several ones and there may be cases where there is no path
|
|
|
d289e2 |
+ at all (unfilled objects);
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::vector< std::string > getPaths( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string getBaseType( );
|
|
|
d289e2 |
+ virtual std::string getType( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string getCreatedBy( );
|
|
|
d289e2 |
+ virtual boost::posix_time::ptime getCreationDate( );
|
|
|
d289e2 |
+ virtual std::string getLastModifiedBy( );
|
|
|
d289e2 |
+ virtual boost::posix_time::ptime getLastModificationDate( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string getChangeToken( );
|
|
|
d289e2 |
+ virtual bool isImmutable( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::vector< std::string > getSecondaryTypes();
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Convenience function adding a secondary type to the object.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Behind the scene this function is basically computing the
|
|
|
d289e2 |
+ properties and sets them for you to avoid reading the CMIS
|
|
|
d289e2 |
+ 1.1 specification, section 2.1.9.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \param id
|
|
|
d289e2 |
+ the identifier of the secondary type to add
|
|
|
d289e2 |
+ \param properties
|
|
|
d289e2 |
+ the properties coming with the secondary type
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \return
|
|
|
d289e2 |
+ the updated object. Note that it may represent the same
|
|
|
d289e2 |
+ object on the server but it still is a different object
|
|
|
d289e2 |
+ instance (see updateProperties method).
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \throw Exception
|
|
|
d289e2 |
+ if anything wrong happens. Note that the server is likely
|
|
|
d289e2 |
+ to throw a constraint exception if it doesn't allow the
|
|
|
d289e2 |
+ operation.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< Object > addSecondaryType(
|
|
|
d289e2 |
+ std::string id,
|
|
|
d289e2 |
+ PropertyPtrMap properties );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Convenience function removing a secondary type from the object.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Behind the scene this function is basically computing the
|
|
|
d289e2 |
+ correct property and sets it for you to avoid reading the
|
|
|
d289e2 |
+ CMIS 1.1 specification, section 2.1.9.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The server should remove the related properties, there is
|
|
|
d289e2 |
+ normally no need to worry about them.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \param id
|
|
|
d289e2 |
+ the identifier of the secondary type to remove
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \return
|
|
|
d289e2 |
+ the updated object. Note that it may represent the same
|
|
|
d289e2 |
+ object on the server but it still is a different object
|
|
|
d289e2 |
+ instance (see updateProperties method).
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \throw Exception
|
|
|
d289e2 |
+ if anything wrong happens. Note that the server is likely
|
|
|
d289e2 |
+ to throw a constraint exception if it doesn't allow the
|
|
|
d289e2 |
+ operation.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< Object > removeSecondaryType( std::string id );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Gives access to the properties of the object.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \attention
|
|
|
d289e2 |
+ API users should consider this method as read-only as the
|
|
|
d289e2 |
+ changed properties won't be updated to the server. Updating
|
|
|
d289e2 |
+ the returned map may lead to changes loss when calling
|
|
|
d289e2 |
+ updateProperties.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \sa updateProperties to change properties on the server
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual libcmis::PropertyPtrMap& getProperties( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the renditions of the object.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \param filter is defined by the CMIS spec section 2.2.1.2.4.1.
|
|
|
d289e2 |
+ By default, this value is just ignored, but some bindings and servers
|
|
|
d289e2 |
+ may use it.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \attention
|
|
|
d289e2 |
+ The streamId of the rendition is used in getContentStream( )
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::vector< RenditionPtr> getRenditions( std::string filter = std::string( ) );
|
|
|
d289e2 |
+ virtual AllowableActionsPtr getAllowableActions( ) { return m_allowableActions; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Update the object properties and return the updated object.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \attention
|
|
|
d289e2 |
+ even if the returned object may have the same Id than 'this'
|
|
|
d289e2 |
+ and thus representing the same object on the server, those
|
|
|
d289e2 |
+ are still two different instances to ease memory handling.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual boost::shared_ptr< Object > updateProperties(
|
|
|
d289e2 |
+ const PropertyPtrMap& properties ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual ObjectTypePtr getTypeDescription( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Reload the data from the server.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual void refresh( ) = 0;
|
|
|
d289e2 |
+ virtual time_t getRefreshTimestamp( ) { return m_refreshTimestamp; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual void remove( bool allVersions = true ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual void move( boost::shared_ptr< Folder > source, boost::shared_ptr< Folder > destination ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::string getThumbnailUrl( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Dump the object as a string for debugging or display purpose.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::string toString( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void toXml( xmlTextWriterPtr writer );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Object > ObjectPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/property-type.hxx b/include/libcmis/property-type.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..56be22347c86
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/property-type.hxx
|
|
|
d289e2 |
@@ -0,0 +1,125 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _PROPERTY_TYPE_HXX_
|
|
|
d289e2 |
+#define _PROPERTY_TYPE_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/date_time.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class ObjectType;
|
|
|
d289e2 |
+ typedef boost::shared_ptr< ObjectType > ObjectTypePtr;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class PropertyType
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ enum Type
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ String,
|
|
|
d289e2 |
+ Integer,
|
|
|
d289e2 |
+ Decimal,
|
|
|
d289e2 |
+ Bool,
|
|
|
d289e2 |
+ DateTime
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_id;
|
|
|
d289e2 |
+ std::string m_localName;
|
|
|
d289e2 |
+ std::string m_localNamespace;
|
|
|
d289e2 |
+ std::string m_displayName;
|
|
|
d289e2 |
+ std::string m_queryName;
|
|
|
d289e2 |
+ Type m_type;
|
|
|
d289e2 |
+ std::string m_xmlType;
|
|
|
d289e2 |
+ bool m_multiValued;
|
|
|
d289e2 |
+ bool m_updatable;
|
|
|
d289e2 |
+ bool m_inherited;
|
|
|
d289e2 |
+ bool m_required;
|
|
|
d289e2 |
+ bool m_queryable;
|
|
|
d289e2 |
+ bool m_orderable;
|
|
|
d289e2 |
+ bool m_openChoice;
|
|
|
d289e2 |
+ bool m_temporary;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /// Default constructor, mostly present for testing.
|
|
|
d289e2 |
+ PropertyType( );
|
|
|
d289e2 |
+ PropertyType( xmlNodePtr node );
|
|
|
d289e2 |
+ PropertyType( const PropertyType& copy );
|
|
|
d289e2 |
+ /// constructor for temporary type definitions
|
|
|
d289e2 |
+ PropertyType( std::string type,
|
|
|
d289e2 |
+ std::string id,
|
|
|
d289e2 |
+ std::string localName,
|
|
|
d289e2 |
+ std::string displayName,
|
|
|
d289e2 |
+ std::string queryName );
|
|
|
d289e2 |
+ virtual ~PropertyType( ) { };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ PropertyType& operator=( const PropertyType& copy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getId( ) { return m_id; }
|
|
|
d289e2 |
+ std::string getLocalName( ) { return m_localName; }
|
|
|
d289e2 |
+ std::string getLocalNamespace( ) { return m_localNamespace; }
|
|
|
d289e2 |
+ std::string getDisplayName( ) { return m_displayName; }
|
|
|
d289e2 |
+ std::string getQueryName( ) { return m_queryName; }
|
|
|
d289e2 |
+ Type getType( ) { return m_type; }
|
|
|
d289e2 |
+ std::string getXmlType( ) { return m_xmlType; }
|
|
|
d289e2 |
+ bool isMultiValued( ) { return m_multiValued; }
|
|
|
d289e2 |
+ bool isUpdatable( ) { return m_updatable; }
|
|
|
d289e2 |
+ bool isInherited( ) { return m_inherited; }
|
|
|
d289e2 |
+ bool isRequired( ) { return m_required; }
|
|
|
d289e2 |
+ bool isQueryable( ) { return m_queryable; }
|
|
|
d289e2 |
+ bool isOrderable( ) { return m_orderable; }
|
|
|
d289e2 |
+ bool isOpenChoice( ) { return m_openChoice; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void setId( std::string id ) { m_id = id; }
|
|
|
d289e2 |
+ void setLocalName( std::string localName ) { m_localName = localName; }
|
|
|
d289e2 |
+ void setLocalNamespace( std::string localNamespace ) { m_localNamespace = localNamespace; }
|
|
|
d289e2 |
+ void setDisplayName( std::string displayName ) { m_displayName = displayName; }
|
|
|
d289e2 |
+ void setQueryName( std::string queryName ) { m_queryName = queryName; }
|
|
|
d289e2 |
+ void setType( Type type ) { m_type = type; }
|
|
|
d289e2 |
+ void setMultiValued( bool multivalued ) { m_multiValued = multivalued; }
|
|
|
d289e2 |
+ void setUpdatable( bool updatable ) { m_updatable = updatable; }
|
|
|
d289e2 |
+ void setInherited( bool inherited ) { m_inherited = inherited; }
|
|
|
d289e2 |
+ void setRequired( bool required ) { m_required = required; }
|
|
|
d289e2 |
+ void setQueryable( bool queryable ) { m_queryable = queryable; }
|
|
|
d289e2 |
+ void setOrderable( bool orderable ) { m_orderable = orderable; }
|
|
|
d289e2 |
+ void setOpenChoice( bool openChoice ) { m_openChoice = openChoice; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void setTypeFromXml( std::string typeStr );
|
|
|
d289e2 |
+ void setTypeFromJsonType( std::string jsonType );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void update( std::vector< ObjectTypePtr > typesDefs );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< PropertyType > PropertyTypePtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/property.hxx b/include/libcmis/property.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..aa6560590c11
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/property.hxx
|
|
|
d289e2 |
@@ -0,0 +1,88 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _PROPERTY_HXX_
|
|
|
d289e2 |
+#define _PROPERTY_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+#include <libxml/xmlwriter.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/date_time.hpp>
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "property-type.hxx"
|
|
|
d289e2 |
+#include "xmlserializable.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class ObjectType;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class Property : public XmlSerializable
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ PropertyTypePtr m_propertyType;
|
|
|
d289e2 |
+ std::vector< std::string > m_strValues;
|
|
|
d289e2 |
+ std::vector< bool > m_boolValues;
|
|
|
d289e2 |
+ std::vector< long > m_longValues;
|
|
|
d289e2 |
+ std::vector< double > m_doubleValues;
|
|
|
d289e2 |
+ std::vector< boost::posix_time::ptime > m_dateTimeValues;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ protected:
|
|
|
d289e2 |
+ Property( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ /** Property constructor allowing to use different values for the id and names.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ Property( PropertyTypePtr propertyType, std::vector< std::string > strValues );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ ~Property( ){ }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ PropertyTypePtr getPropertyType( ) { return m_propertyType; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::vector< boost::posix_time::ptime > getDateTimes( ) { return m_dateTimeValues; }
|
|
|
d289e2 |
+ std::vector< bool > getBools( ) { return m_boolValues; }
|
|
|
d289e2 |
+ std::vector< std::string > getStrings( ) { return m_strValues; }
|
|
|
d289e2 |
+ std::vector< long > getLongs( ) { return m_longValues; }
|
|
|
d289e2 |
+ std::vector< double > getDoubles( ) { return m_doubleValues; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void setPropertyType( PropertyTypePtr propertyType);
|
|
|
d289e2 |
+ void setValues( std::vector< std::string > strValues );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void toXml( xmlTextWriterPtr writer );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Property > PropertyPtr;
|
|
|
d289e2 |
+ typedef std::map< std::string, libcmis::PropertyPtr > PropertyPtrMap;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ PropertyPtr parseProperty( xmlNodePtr node, boost::shared_ptr< ObjectType > objectType );
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/rendition.hxx b/include/libcmis/rendition.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..2e386515e77d
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/rendition.hxx
|
|
|
d289e2 |
@@ -0,0 +1,88 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2013 Cao Cuong Ngo <cao.cuong.ngo@gmail.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#ifndef _RENDITION_HXX_
|
|
|
d289e2 |
+#define _RENDITION_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Rendition
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ Rendition( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_streamId;
|
|
|
d289e2 |
+ std::string m_mimeType;
|
|
|
d289e2 |
+ std::string m_kind;
|
|
|
d289e2 |
+ std::string m_href;
|
|
|
d289e2 |
+ std::string m_title;
|
|
|
d289e2 |
+ long m_length;
|
|
|
d289e2 |
+ long m_width;
|
|
|
d289e2 |
+ long m_height;
|
|
|
d289e2 |
+ std::string m_renditionDocumentId;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ Rendition( std::string streamId, std::string mimeType,
|
|
|
d289e2 |
+ std::string kind, std::string href,
|
|
|
d289e2 |
+ std::string title = std::string( ),
|
|
|
d289e2 |
+ long length = -1, long width = -1, long height = -1,
|
|
|
d289e2 |
+ std::string renditionDocumentId = std::string( ) );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Parse an XML node of type cmisRenditionType
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ Rendition( xmlNodePtr node );
|
|
|
d289e2 |
+ ~Rendition( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ bool isThumbnail( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ const std::string& getStreamId( ) const;
|
|
|
d289e2 |
+ const std::string& getMimeType( ) const;
|
|
|
d289e2 |
+ const std::string& getKind( ) const;
|
|
|
d289e2 |
+ const std::string& getUrl( ) const;
|
|
|
d289e2 |
+ const std::string& getTitle( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Provides the stream length in bytes or a negative value if missing.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ long getLength( ) const;
|
|
|
d289e2 |
+ long getWidth( ) const;
|
|
|
d289e2 |
+ long getHeight( ) const;
|
|
|
d289e2 |
+ const std::string& getRenditionDocumentId( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string toString( );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Rendition > RenditionPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
+
|
|
|
d289e2 |
diff --git a/include/libcmis/repository.hxx b/include/libcmis/repository.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..a4435d89ae75
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/repository.hxx
|
|
|
d289e2 |
@@ -0,0 +1,117 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 Cédric Bosdonnat <cbosdo@users.sourceforge.net>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _REPOSITORY_HXX_
|
|
|
d289e2 |
+#define _REPOSITORY_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ /** Class representing a repository and its infos.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \sa 2.2.2.2 section of the CMIS specifications
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class Repository
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ enum Capability
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ ACL,
|
|
|
d289e2 |
+ AllVersionsSearchable,
|
|
|
d289e2 |
+ Changes,
|
|
|
d289e2 |
+ ContentStreamUpdatability,
|
|
|
d289e2 |
+ GetDescendants,
|
|
|
d289e2 |
+ GetFolderTree,
|
|
|
d289e2 |
+ OrderBy,
|
|
|
d289e2 |
+ Multifiling,
|
|
|
d289e2 |
+ PWCSearchable,
|
|
|
d289e2 |
+ PWCUpdatable,
|
|
|
d289e2 |
+ Query,
|
|
|
d289e2 |
+ Renditions,
|
|
|
d289e2 |
+ Unfiling,
|
|
|
d289e2 |
+ VersionSpecificFiling,
|
|
|
d289e2 |
+ Join
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ protected:
|
|
|
d289e2 |
+ std::string m_id;
|
|
|
d289e2 |
+ std::string m_name;
|
|
|
d289e2 |
+ std::string m_description;
|
|
|
d289e2 |
+ std::string m_vendorName;
|
|
|
d289e2 |
+ std::string m_productName;
|
|
|
d289e2 |
+ std::string m_productVersion;
|
|
|
d289e2 |
+ std::string m_rootId;
|
|
|
d289e2 |
+ std::string m_cmisVersionSupported;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > m_thinClientUri;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > m_principalAnonymous;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > m_principalAnyone;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::map< Capability, std::string > m_capabilities ;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ Repository( );
|
|
|
d289e2 |
+ void initializeFromNode( xmlNodePtr node );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ Repository( xmlNodePtr node );
|
|
|
d289e2 |
+ virtual ~Repository( ) { };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getId( ) const;
|
|
|
d289e2 |
+ std::string getName( ) const;
|
|
|
d289e2 |
+ std::string getDescription( ) const;
|
|
|
d289e2 |
+ std::string getVendorName( ) const;
|
|
|
d289e2 |
+ std::string getProductName( ) const;
|
|
|
d289e2 |
+ std::string getProductVersion( ) const;
|
|
|
d289e2 |
+ std::string getRootId( ) const;
|
|
|
d289e2 |
+ std::string getCmisVersionSupported( ) const;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > getThinClientUri( ) const;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > getPrincipalAnonymous( ) const;
|
|
|
d289e2 |
+ boost::shared_ptr< std::string > getPrincipalAnyone( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getCapability( Capability capability ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Wrapper function providing the capability as a boolean value.
|
|
|
d289e2 |
+ If the capability value is not a boolean, returns false.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ bool getCapabilityAsBool( Capability capability ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string toString( ) const;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static std::map< Capability, std::string > parseCapabilities( xmlNodePtr node );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< Repository > RepositoryPtr;
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/session-factory.hxx b/include/libcmis/session-factory.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..b0b94f835f30
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/session-factory.hxx
|
|
|
d289e2 |
@@ -0,0 +1,149 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _SESSION_FACTORY_HXX_
|
|
|
d289e2 |
+#define _SESSION_FACTORY_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+#include "oauth2-data.hxx"
|
|
|
d289e2 |
+#include "repository.hxx"
|
|
|
d289e2 |
+#include "session.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ /** This callback provides the OAuth2 code or NULL.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The resulting char* will be freed later.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ typedef char* ( *OAuth2AuthCodeProvider )( const char* authUrl,
|
|
|
d289e2 |
+ const char* username, const char* password );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class AuthProvider
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ virtual ~AuthProvider() { };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** The function implementing it needs to fill the username and password parameters
|
|
|
d289e2 |
+ and return true. Returning false means that the user cancelled the authentication
|
|
|
d289e2 |
+ and will fail the query.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual bool authenticationQuery( std::string& username, std::string& password ) = 0;
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< AuthProvider > AuthProviderPtr;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Handler class used to request user input when an invalid SSL certificate is encountered.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class CertValidationHandler
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ virtual ~CertValidationHandler( ){ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** This function is provided a vector of X509 certificates encoded in base64, with
|
|
|
d289e2 |
+ the first certificate being the one to validate, and the others are the issuers
|
|
|
d289e2 |
+ chain.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The result will be stored in the session object to avoid asking several times
|
|
|
d289e2 |
+ to validate the same certificate.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \result true if the certificate should be ignored, false to fail the request.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual bool validateCertificate( std::vector< std::string > certificatesChain ) = 0;
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef ::boost::shared_ptr< CertValidationHandler > CertValidationHandlerPtr;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class SessionFactory
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static AuthProviderPtr s_authProvider;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static std::string s_proxy;
|
|
|
d289e2 |
+ static std::string s_noProxy;
|
|
|
d289e2 |
+ static std::string s_proxyUser;
|
|
|
d289e2 |
+ static std::string s_proxyPass;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static OAuth2AuthCodeProvider s_oauth2AuthCodeProvider;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static CertValidationHandlerPtr s_certValidationHandler;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static void setAuthenticationProvider( AuthProviderPtr provider ) { s_authProvider = provider; }
|
|
|
d289e2 |
+ static AuthProviderPtr getAuthenticationProvider( ) { return s_authProvider; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static void setOAuth2AuthCodeProvider( OAuth2AuthCodeProvider provider ) { s_oauth2AuthCodeProvider = provider; }
|
|
|
d289e2 |
+ static OAuth2AuthCodeProvider getOAuth2AuthCodeProvider( ) { return s_oauth2AuthCodeProvider; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Set the handler to ask the user what to do with invalid SSL certificates. If not set,
|
|
|
d289e2 |
+ every invalid certificate will raise an exception.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ static void setCertificateValidationHandler( CertValidationHandlerPtr handler ) { s_certValidationHandler = handler; }
|
|
|
d289e2 |
+ static CertValidationHandlerPtr getCertificateValidationHandler( ) { return s_certValidationHandler; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static void setProxySettings( std::string proxy,
|
|
|
d289e2 |
+ std::string noProxy,
|
|
|
d289e2 |
+ std::string proxyUser,
|
|
|
d289e2 |
+ std::string proxyPass );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ static const std::string& getProxy() { return s_proxy; }
|
|
|
d289e2 |
+ static const std::string& getNoProxy() { return s_noProxy; }
|
|
|
d289e2 |
+ static const std::string& getProxyUser() { return s_proxyUser; }
|
|
|
d289e2 |
+ static const std::string& getProxyPass() { return s_proxyPass; }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Create a session from the given parameters. The binding type is automatically
|
|
|
d289e2 |
+ detected based on the provided URL.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ The resulting pointer should be deleted by the caller.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ static Session* createSession( std::string bindingUrl,
|
|
|
d289e2 |
+ std::string username = std::string( ),
|
|
|
d289e2 |
+ std::string password = std::string( ),
|
|
|
d289e2 |
+ std::string repositoryId = std::string( ),
|
|
|
d289e2 |
+ bool noSslCheck = false,
|
|
|
d289e2 |
+ OAuth2DataPtr oauth2 = OAuth2DataPtr(), bool verbose = false );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /**
|
|
|
d289e2 |
+ Gets the informations of the repositories on the server.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \deprecated
|
|
|
d289e2 |
+ Since libcmis 0.4.0, this helper function simply creates a session
|
|
|
d289e2 |
+ using the createSession function with no repository and then calls
|
|
|
d289e2 |
+ getRepositories on the resulting session.
|
|
|
d289e2 |
+ Kept only for backward API compatibility.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ static std::vector< RepositoryPtr > getRepositories( std::string bindingUrl,
|
|
|
d289e2 |
+ std::string username = std::string( ),
|
|
|
d289e2 |
+ std::string password = std::string( ),
|
|
|
d289e2 |
+ bool verbose = false );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/session.hxx b/include/libcmis/session.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..d28361a15005
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/session.hxx
|
|
|
d289e2 |
@@ -0,0 +1,100 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _SESSION_HXX_
|
|
|
d289e2 |
+#define _SESSION_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <vector>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+#include <boost/shared_ptr.hpp>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "object-type.hxx"
|
|
|
d289e2 |
+#include "object.hxx"
|
|
|
d289e2 |
+#include "folder.hxx"
|
|
|
d289e2 |
+#include "repository.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ class Session
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual ~Session() { };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the current repository.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual RepositoryPtr getRepository( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual std::vector< RepositoryPtr > getRepositories( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Change the current repository.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ \return
|
|
|
d289e2 |
+ false if no repository with the provided id can be found on the server,
|
|
|
d289e2 |
+ true otherwise
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual bool setRepository( std::string repositoryId ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get the Root folder of the repository
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual FolderPtr getRootFolder() = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get a CMIS object from its ID.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual ObjectPtr getObject( std::string id ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get a CMIS object from one of its path.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual ObjectPtr getObjectByPath( std::string path ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get a CMIS folder from its ID.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual libcmis::FolderPtr getFolder( std::string id ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get a CMIS object type from its ID.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual ObjectTypePtr getType( std::string id ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Get all the CMIS base object types known by the server.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual std::vector< ObjectTypePtr > getBaseTypes( ) = 0;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Enable or disable the SSL certificate verification.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ By default, SSL certificates are verified and errors are thrown in case of
|
|
|
d289e2 |
+ one is invalid. The user may decide to ignore the checks for this CMIS session
|
|
|
d289e2 |
+ to workaround self-signed certificates or other similar problems.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ As each session only handles the connection to one CMIS server, it should
|
|
|
d289e2 |
+ concern only one SSL certificate and should provide the same feature as the
|
|
|
d289e2 |
+ certificate exception feature available on common web browser.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ virtual void setNoSSLCertificateCheck( bool noCheck ) = 0;
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/xml-utils.hxx b/include/libcmis/xml-utils.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..afe5985dad23
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/xml-utils.hxx
|
|
|
d289e2 |
@@ -0,0 +1,167 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _XML_UTILS_HXX_
|
|
|
d289e2 |
+#define _XML_UTILS_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <map>
|
|
|
d289e2 |
+#include <ostream>
|
|
|
d289e2 |
+#include <sstream>
|
|
|
d289e2 |
+#include <string>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <boost/date_time.hpp>
|
|
|
d289e2 |
+#include <libxml/tree.h>
|
|
|
d289e2 |
+#include <libxml/xpathInternals.h>
|
|
|
d289e2 |
+#include <libxml/xmlwriter.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include "exception.hxx"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#define NS_CMIS_PREFIX "cmis"
|
|
|
d289e2 |
+#define NS_CMISRA_PREFIX "cmisra"
|
|
|
d289e2 |
+#define NS_SOAP_ENV_PREFIX "soap-env"
|
|
|
d289e2 |
+#define NS_CMIS_URL "http://docs.oasis-open.org/ns/cmis/core/200908/"
|
|
|
d289e2 |
+#define NS_CMISRA_URL "http://docs.oasis-open.org/ns/cmis/restatom/200908/"
|
|
|
d289e2 |
+#define NS_CMISM_URL "http://docs.oasis-open.org/ns/cmis/messaging/200908/"
|
|
|
d289e2 |
+#define NS_CMISW_URL "http://docs.oasis-open.org/ns/cmis/ws/200908/"
|
|
|
d289e2 |
+#define NS_APP_URL "http://www.w3.org/2007/app"
|
|
|
d289e2 |
+#define NS_ATOM_URL "http://www.w3.org/2005/Atom"
|
|
|
d289e2 |
+#define NS_SOAP_URL "http://schemas.xmlsoap.org/wsdl/soap/"
|
|
|
d289e2 |
+#define NS_SOAP_ENV_URL "http://schemas.xmlsoap.org/soap/envelope/"
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#define LIBCURL_VERSION_VALUE ( \
|
|
|
d289e2 |
+ ( LIBCURL_VERSION_MAJOR << 16 ) | ( LIBCURL_VERSION_MINOR << 8 ) | ( LIBCURL_VERSION_PATCH ) \
|
|
|
d289e2 |
+)
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+ /** Class used to decode a stream.
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ An instance of this class can hold remaining un-decoded data to use
|
|
|
d289e2 |
+ for a future decode call.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ class EncodedData
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ xmlTextWriterPtr m_writer;
|
|
|
d289e2 |
+ FILE* m_stream;
|
|
|
d289e2 |
+ std::ostream* m_outStream;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string m_encoding;
|
|
|
d289e2 |
+ bool m_decode;
|
|
|
d289e2 |
+ unsigned long m_pendingValue;
|
|
|
d289e2 |
+ int m_pendingRank;
|
|
|
d289e2 |
+ size_t m_missingBytes;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ EncodedData( FILE* stream );
|
|
|
d289e2 |
+ EncodedData( std::ostream* stream );
|
|
|
d289e2 |
+ EncodedData( const EncodedData& rCopy );
|
|
|
d289e2 |
+ EncodedData( xmlTextWriterPtr writer );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ EncodedData& operator=( const EncodedData& rCopy );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void setEncoding( std::string encoding ) { m_encoding = encoding; }
|
|
|
d289e2 |
+ void decode( void* buf, size_t size, size_t nmemb );
|
|
|
d289e2 |
+ void encode( void* buf, size_t size, size_t nmemb );
|
|
|
d289e2 |
+ void finish( );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ void write( void* buf, size_t size, size_t nmemb );
|
|
|
d289e2 |
+ void decodeBase64( const char* buf, size_t len );
|
|
|
d289e2 |
+ void encodeBase64( const char* buf, size_t len );
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ class HttpResponse
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ private:
|
|
|
d289e2 |
+ std::map< std::string, std::string > m_headers;
|
|
|
d289e2 |
+ boost::shared_ptr< std::stringstream > m_stream;
|
|
|
d289e2 |
+ boost::shared_ptr< EncodedData > m_data;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ HttpResponse( );
|
|
|
d289e2 |
+ ~HttpResponse( ) { };
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::map< std::string, std::string >& getHeaders( ) { return m_headers; }
|
|
|
d289e2 |
+ boost::shared_ptr< EncodedData > getData( ) { return m_data; }
|
|
|
d289e2 |
+ boost::shared_ptr< std::stringstream > getStream( ) { return m_stream; }
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+ typedef boost::shared_ptr< HttpResponse > HttpResponsePtr;
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ void registerNamespaces( xmlXPathContextPtr xpathCtx );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Register the CMIS and WSDL / SOAP namespaces
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ void registerCmisWSNamespaces( xmlXPathContextPtr xpathCtx );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Register only the WSD / SOAP namespaces.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ void registerSoapNamespaces( xmlXPathContextPtr xpathCtx );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string getXPathValue( xmlXPathContextPtr xpathCtx, std::string req );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ xmlDocPtr wrapInDoc( xmlNodePtr entryNode );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Utility extracting an attribute value from an Xml Node,
|
|
|
d289e2 |
+ based on the attribute name. If the defaultValue is NULL and
|
|
|
d289e2 |
+ the attribute can't be found then throw an exception.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ std::string getXmlNodeAttributeValue( xmlNodePtr node,
|
|
|
d289e2 |
+ const char* attributeName,
|
|
|
d289e2 |
+ const char* defaultValue = NULL );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Parse a xsd:dateTime string and return the corresponding UTC posix time.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ boost::posix_time::ptime parseDateTime( std::string dateTimeStr );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /// Write a UTC time object to an xsd:dateTime string
|
|
|
d289e2 |
+ std::string writeDateTime( boost::posix_time::ptime time );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ bool parseBool( std::string str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ long parseInteger( std::string str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ double parseDouble( std::string str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /** Trim spaces on the left and right of a string.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+ std::string trim( const std::string& str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string base64encode( const std::string& str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string sha1( const std::string& str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string tolower( std::string sText );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ int stringstream_write_callback(void * context, const char * s, int len);
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string escape( std::string str );
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ std::string unescape( std::string str );
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
diff --git a/include/libcmis/xmlserializable.hxx b/include/libcmis/xmlserializable.hxx
|
|
|
d289e2 |
new file mode 100644
|
|
|
d289e2 |
index 000000000000..533308590073
|
|
|
d289e2 |
--- /dev/null
|
|
|
d289e2 |
+++ b/include/libcmis/xmlserializable.hxx
|
|
|
d289e2 |
@@ -0,0 +1,46 @@
|
|
|
d289e2 |
+/* libcmis
|
|
|
d289e2 |
+ * Version: MPL 1.1 / GPLv2+ / LGPLv2+
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * The contents of this file are subject to the Mozilla Public License Version
|
|
|
d289e2 |
+ * 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
d289e2 |
+ * the License or as specified alternatively below. You may obtain a copy of
|
|
|
d289e2 |
+ * the License at http://www.mozilla.org/MPL/
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
d289e2 |
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
d289e2 |
+ * for the specific language governing rights and limitations under the
|
|
|
d289e2 |
+ * License.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Major Contributor(s):
|
|
|
d289e2 |
+ * Copyright (C) 2011 SUSE <cbosdonnat@suse.com>
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * All Rights Reserved.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * For minor contributions see the git repository.
|
|
|
d289e2 |
+ *
|
|
|
d289e2 |
+ * Alternatively, the contents of this file may be used under the terms of
|
|
|
d289e2 |
+ * either the GNU General Public License Version 2 or later (the "GPLv2+"), or
|
|
|
d289e2 |
+ * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"),
|
|
|
d289e2 |
+ * in which case the provisions of the GPLv2+ or the LGPLv2+ are applicable
|
|
|
d289e2 |
+ * instead of those above.
|
|
|
d289e2 |
+ */
|
|
|
d289e2 |
+#ifndef _XMLSERIALIZABLE_HXX_
|
|
|
d289e2 |
+#define _XMLSERIALIZABLE_HXX_
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#include <libxml/xmlwriter.h>
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+namespace libcmis
|
|
|
d289e2 |
+{
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ /// Interface for objects dumpable as XML
|
|
|
d289e2 |
+ class XmlSerializable
|
|
|
d289e2 |
+ {
|
|
|
d289e2 |
+ public:
|
|
|
d289e2 |
+ virtual ~XmlSerializable( ) { }
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+ virtual void toXml( xmlTextWriterPtr writer ) = 0;
|
|
|
d289e2 |
+ };
|
|
|
d289e2 |
+}
|
|
|
d289e2 |
+
|
|
|
d289e2 |
+#endif
|
|
|
d289e2 |
--
|
|
|
d289e2 |
2.26.2
|
|
|
d289e2 |
|