/*MT* MediaTomb - http://www.mediatomb.cc/ cds_resource.h - this file is part of MediaTomb. Copyright (C) 2005 Gena Batyan , Sergey 'Jin' Bostandzhyan Copyright (C) 2006-2007 Gena Batyan , Sergey 'Jin' Bostandzhyan , Leonhard Wimmer MediaTomb is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. MediaTomb is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License version 2 along with MediaTomb; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. $Id: cds_resource.h 1124 2007-02-17 21:49:15Z lww $ */ /// \file cds_resource.h #ifndef __CDS_RESOURCE_H__ #define __CDS_RESOURCE_H__ #include "common.h" #include "dictionary.h" #define RESOURCE_SEP '|' #define RESOURCE_PART_SEP '~' class CdsResource : public zmm::Object { protected: int handlerType; zmm::Ref attributes; zmm::Ref parameters; public: CdsResource(int handlerType); CdsResource(int handlerType, zmm::Ref attributes, zmm::Ref parameters); void addAttribute(zmm::String name, zmm::String value); void addParameter(zmm::String name, zmm::String value); // urlencode into string int getHandlerType(); zmm::Ref getAttributes(); zmm::Ref getParameters(); zmm::String getAttribute(zmm::String name); zmm::String getParameter(zmm::String name); bool equals(zmm::Ref other); zmm::Ref clone(); zmm::String encode(); static zmm::Ref decode(zmm::String serial); /// \brief Frees unnecessary memory void optimize(); }; #endif // __CDS_RESOURCE_H__