summaryrefslogtreecommitdiffstats
path: root/3rdparty/aws-sdk/utilities/stepconfig.class.php
diff options
context:
space:
mode:
authorBrice Maron <brice@bmaron.net>2012-06-14 21:16:59 +0000
committerBrice Maron <brice@bmaron.net>2012-06-14 21:16:59 +0000
commit4753cc3ebde9867ab4deb1979fb4231b0c847426 (patch)
treec6944e947bc84c8716b57b7e2b06ef51efccb3db /3rdparty/aws-sdk/utilities/stepconfig.class.php
parent6da5a2fdd4e8a19ab993b4a1f7de7e45b8922a16 (diff)
parentf3b30e4658c4dde82b56b458c672fa5edcba5d6b (diff)
downloadnextcloud-server-4753cc3ebde9867ab4deb1979fb4231b0c847426.tar.gz
nextcloud-server-4753cc3ebde9867ab4deb1979fb4231b0c847426.zip
Merge branch 'master' into multi_app_dir
Conflicts: apps/bookmarks/ajax/addBookmark.php config/config.sample.php lib/app.php remote.php
Diffstat (limited to '3rdparty/aws-sdk/utilities/stepconfig.class.php')
-rw-r--r--3rdparty/aws-sdk/utilities/stepconfig.class.php91
1 files changed, 91 insertions, 0 deletions
diff --git a/3rdparty/aws-sdk/utilities/stepconfig.class.php b/3rdparty/aws-sdk/utilities/stepconfig.class.php
new file mode 100644
index 00000000000..71492995f44
--- /dev/null
+++ b/3rdparty/aws-sdk/utilities/stepconfig.class.php
@@ -0,0 +1,91 @@
+<?php
+/*
+ * Copyright 2010-2012 Amazon.com, Inc. or its affiliates. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License").
+ * You may not use this file except in compliance with the License.
+ * A copy of the License is located at
+ *
+ * http://aws.amazon.com/apache2.0
+ *
+ * or in the "license" file accompanying this file. This file 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.
+ */
+
+
+/*%******************************************************************************************%*/
+// CLASS
+
+/**
+ * Contains functionality for simplifying Amazon EMR Hadoop steps.
+ *
+ * @version 2010.11.16
+ * @license See the included NOTICE.md file for more information.
+ * @copyright See the included NOTICE.md file for more information.
+ * @link http://aws.amazon.com/php/ PHP Developer Center
+ */
+class CFStepConfig
+{
+
+ /**
+ * Stores the configuration map.
+ */
+ public $config;
+
+ /**
+ * Constructs a new instance of this class.
+ *
+ * @param array $config (Required) An associative array representing the Hadoop step configuration.
+ * @return $this A reference to the current instance.
+ */
+ public function __construct($config)
+ {
+ // Handle Hadoop jar arguments
+ if (isset($config['HadoopJarStep']['Args']) && $args = $config['HadoopJarStep']['Args'])
+ {
+ $config['HadoopJarStep']['Args'] = is_array($args) ? $args : array($args);
+ }
+
+ $this->config = $config;
+ }
+
+ /**
+ * Constructs a new instance of this class, and allows chaining.
+ *
+ * @param array $config (Required) An associative array representing the Hadoop step configuration.
+ * @return $this A reference to the current instance.
+ */
+ public static function init($config)
+ {
+ if (version_compare(PHP_VERSION, '5.3.0', '<'))
+ {
+ throw new Exception('PHP 5.3 or newer is required to instantiate a new class with CLASS::init().');
+ }
+
+ $self = get_called_class();
+ return new $self($config);
+ }
+
+ /**
+ * Returns a JSON representation of the object when typecast as a string.
+ *
+ * @return string A JSON representation of the object.
+ * @link http://www.php.net/manual/en/language.oop5.magic.php#language.oop5.magic.tostring PHP Magic Methods
+ */
+ public function __toString()
+ {
+ return json_encode($this->config);
+ }
+
+ /**
+ * Returns the configuration data.
+ *
+ * @return array The configuration data.
+ */
+ public function get_config()
+ {
+ return $this->config;
+ }
+}