This is an automated email from the ASF dual-hosted git repository.
echobravo pushed a commit to branch fakeDev2
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/fakeDev2 by this push:
new 330c494 bogus #4
330c494 is described below
commit 330c49494193f97b01205b7d8b80bf8e416f1f1a
Author: Ernest Burghardt <[email protected]>
AuthorDate: Wed Feb 14 09:59:23 2018 -0700
bogus #4
---
cppcache/src/Cache.cpp | 242 -------------------------------------------------
1 file changed, 242 deletions(-)
diff --git a/cppcache/src/Cache.cpp b/cppcache/src/Cache.cpp
deleted file mode 100644
index 6de3837..0000000
--- a/cppcache/src/Cache.cpp
+++ /dev/null
@@ -1,242 +0,0 @@
-/*
- * 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
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <memory>
-
-#include <geode/FunctionService.hpp>
-#include <geode/PoolManager.hpp>
-#include <geode/DistributedSystem.hpp>
-#include <geode/Cache.hpp>
-
-#include "DistributedSystemImpl.hpp"
-#include "CacheXmlParser.hpp"
-#include "CacheRegionHelper.hpp"
-#include "CacheImpl.hpp"
-#include "UserAttributes.hpp"
-#include "ProxyRegion.hpp"
-#include "PdxInstanceFactoryImpl.hpp"
-
-#define DEFAULT_DS_NAME "default_GeodeDS"
-
-namespace apache {
-namespace geode {
-namespace client {
-
-/** Returns the name of this cache.
- * This method does not throw
- * <code>CacheClosedException</code> if the cache is closed.
- * @return the string name of this cache
- */
-const std::string& Cache::getName() const { return m_cacheImpl->getName(); }
-
-/**
- * Indicates if this cache has been closed.
- * After a new cache object is created, this method returns false;
- * After the close is called on this cache object, this method
- * returns true.
- *
- * @return true, if this cache is closed; false, otherwise
- */
-bool Cache::isClosed() const { return m_cacheImpl->isClosed(); }
-
-/**
- * Returns the distributed system that this cache was
- * {@link CacheFactory::create created} with. This method does not throw
- * <code>CacheClosedException</code> if the cache is closed.
- */
-DistributedSystem& Cache::getDistributedSystem() const {
- return m_cacheImpl->getDistributedSystem();
-}
-
-void Cache::close() { close(false); }
-
-/**
- * Terminates this object cache and releases all the local resources.
- * After this cache is closed, any further
- * method call on this cache or any region object will throw
- * <code>CacheClosedException</code>, unless otherwise noted.
- * @param keepalive whether to keep the durable client's queue
- * @throws CacheClosedException, if the cache is already closed.
- */
-void Cache::close(bool keepalive) {
- m_cacheImpl->close(keepalive);
-
- try {
- getDistributedSystem().disconnect();
- } catch (const apache::geode::client::NotConnectedException&) {
- } catch (const apache::geode::client::Exception&) {
- } catch (...) {
- }
-}
-
-std::shared_ptr<Region> Cache::getRegion(const std::string& path) const {
- LOGDEBUG("Cache::getRegion " + path);
- std::shared_ptr<Region> result;
- m_cacheImpl->getRegion(path.c_str(), result);
-
- if (result != nullptr) {
- if (isPoolInMultiuserMode(result)) {
- LOGWARN("Pool " + result->getAttributes()->getPoolName() +
- " attached with region " + result->getFullPath() +
- " is in multiuser authentication mode. Operations may fail as "
- "this instance does not have any credentials.");
- }
- }
-
- return result;
-}
-
-/**
- * Returns a set of root regions in the cache. Does not cause any
- * shared regions to be mapped into the cache. This set is a snapshot and
- * is not backed by the Cache. The regions passed in are cleared.
- *
- * @param regions the region collection object containing the returned set of
- * regions when the function returns
- */
-
-std::vector<std::shared_ptr<Region>> Cache::rootRegions() const {
- std::vector<std::shared_ptr<Region>> regions;
- m_cacheImpl->rootRegions(regions);
- return regions;
-}
-
-RegionFactory Cache::createRegionFactory(RegionShortcut preDefinedRegion) {
- return m_cacheImpl->createRegionFactory(preDefinedRegion);
-}
-
-std::shared_ptr<QueryService> Cache::getQueryService() {
- return m_cacheImpl->getQueryService();
-}
-std::shared_ptr<QueryService> Cache::getQueryService(
- const std::string& poolName) const {
- return m_cacheImpl->getQueryService(poolName.c_str());
-}
-std::shared_ptr<CacheTransactionManager> Cache::getCacheTransactionManager()
- const {
- return m_cacheImpl->getCacheTransactionManager();
-}
-
-TypeRegistry& Cache::getTypeRegistry() { return *(m_typeRegistry.get()); }
-
-Cache::Cache(std::shared_ptr<Properties> dsProp, bool ignorePdxUnreadFields,
- bool readPdxSerialized,
- const std::shared_ptr<AuthInitialize>& authInitialize) {
- m_cacheImpl = std::unique_ptr<CacheImpl>(
- new CacheImpl(this, DistributedSystem::create(DEFAULT_DS_NAME, dsProp),
- ignorePdxUnreadFields, readPdxSerialized, authInitialize));
- m_cacheImpl->getDistributedSystem().connect(this);
- m_typeRegistry =
- std::unique_ptr<TypeRegistry>(new TypeRegistry(m_cacheImpl.get()));
-}
-
-Cache::Cache(Cache&& other) noexcept
- : m_cacheImpl(std::move(other.m_cacheImpl)),
- m_typeRegistry(std::move(other.m_typeRegistry)) {
- m_cacheImpl->setCache(this);
-}
-
-Cache::~Cache() = default;
-
-void Cache::initializeDeclarativeCache(const std::string& cacheXml) {
- CacheXmlParser* xmlParser = CacheXmlParser::parse(cacheXml.c_str(), this);
- xmlParser->setAttributes(this);
- m_cacheImpl->initServices();
- xmlParser->create(this);
- delete xmlParser;
- xmlParser = nullptr;
-}
-
-void Cache::readyForEvents() { m_cacheImpl->readyForEvents(); }
-
-bool Cache::isPoolInMultiuserMode(std::shared_ptr<Region> regionPtr) {
- const auto& poolName = regionPtr->getAttributes()->getPoolName();
-
- if (!poolName.empty()) {
- auto poolPtr = regionPtr->getCache().getPoolManager().find(poolName);
- if (poolPtr != nullptr && !poolPtr->isDestroyed()) {
- return poolPtr->getMultiuserAuthentication();
- }
- }
- return false;
-}
-
-bool Cache::getPdxIgnoreUnreadFields() const {
- return m_cacheImpl->getPdxIgnoreUnreadFields();
-}
-
-bool Cache::getPdxReadSerialized() const {
- return m_cacheImpl->getPdxReadSerialized();
-}
-std::shared_ptr<PdxInstanceFactory> Cache::createPdxInstanceFactory(
- std::string className) const {
- return std::make_shared<PdxInstanceFactoryImpl>(
- className.c_str(), m_cacheImpl->m_cacheStats,
- m_cacheImpl->getPdxTypeRegistry(), this,
- m_cacheImpl->getDistributedSystem()
- .getSystemProperties()
- .getEnableTimeStatistics());
-}
-std::shared_ptr<RegionService> Cache::createAuthenticatedView(
- std::shared_ptr<Properties> userSecurityProperties,
- const std::string& poolName) {
- if (poolName.empty()) {
- auto pool = m_cacheImpl->getPoolManager().getDefaultPool();
- if (!this->isClosed() && pool != nullptr) {
- return pool->createSecureUserCache(userSecurityProperties,
- m_cacheImpl.get());
- }
-
- throw IllegalStateException(
- "Either cache has been closed or there are more than two pool."
- "Pass poolname to get the secure Cache");
- } else {
- if (!this->isClosed()) {
- if (!poolName.empty()) {
- auto poolPtr = m_cacheImpl->getPoolManager().find(poolName);
- if (poolPtr != nullptr && !poolPtr->isDestroyed()) {
- return poolPtr->createSecureUserCache(userSecurityProperties,
- m_cacheImpl.get());
- }
- throw IllegalStateException(
- "Either pool not found or it has been destroyed");
- }
- throw IllegalArgumentException("poolname is nullptr");
- }
-
- throw IllegalStateException("Cache has been closed");
- }
- return nullptr;
-}
-
-PoolManager& Cache::getPoolManager() const {
- return m_cacheImpl->getPoolManager();
-}
-
-std::unique_ptr<DataInput> Cache::createDataInput(const uint8_t* m_buffer,
- size_t len) const {
- return std::unique_ptr<DataInput>(
- new DataInput(m_buffer, len, m_cacheImpl.get()));
-}
-
-std::unique_ptr<DataOutput> Cache::createDataOutput() const {
- return std::unique_ptr<DataOutput>(new DataOutput(m_cacheImpl.get()));
-}
-
-} // namespace client
-} // namespace geode
-} // namespace apache
--
To stop receiving notification emails like this one, please contact
[email protected].