/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the Collabora Office project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include "ZipPackageFolderEnumeration.hxx"
#include <cppuhelper/supportsservice.hxx>
#include <sal/log.hxx>

using namespace com::sun::star;

ZipPackageFolderEnumeration::ZipPackageFolderEnumeration(ContentHash& rInput)
    : rContents(rInput)
    , aIterator(rContents.begin())
{
}

ZipPackageFolderEnumeration::~ZipPackageFolderEnumeration() {}

bool SAL_CALL ZipPackageFolderEnumeration::hasMoreElements()
{
    return (aIterator != rContents.end());
}
cpo::uno::Any SAL_CALL ZipPackageFolderEnumeration::nextElement()
{
    cpo::uno::Any aAny;
    if (aIterator == rContents.end())
        throw container::NoSuchElementException();
    aAny <<= uno::Reference(cppu::getXWeak((*aIterator).second.xPackageEntry.get()));
    ++aIterator;
    return aAny;
}

OUString ZipPackageFolderEnumeration::getImplementationName()
{
    return u"ZipPackageFolderEnumeration"_ustr;
}

cpo::uno::Sequence<OUString> ZipPackageFolderEnumeration::getSupportedServiceNames()
{
    cpo::uno::Sequence<OUString> aNames{ u"com.sun.star.packages.PackageFolderEnumeration"_ustr };
    return aNames;
}

bool SAL_CALL ZipPackageFolderEnumeration::supportsService(OUString const& rServiceName)
{
    return cppu::supportsService(this, rServiceName);
}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
