blob: 77086bbc17f1250e958d4e778ba81774d6609972 [file]
<?php
/*
* 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.
*/
namespace Apache\Ignite\Query;
use Apache\Ignite\Type\ObjectType;
/**
* Interface representing a cursor to obtain results of SQL Fields query operation.
*
* An instance of the class with this interface should be obtained via query() method
* of an object with CacheInterface.
* One instance of the class with SqlFieldsCursorInterface returns results of one SQL Fields query operation.
*
* SqlFieldsCursorInterface extends CursorInterface which extends the PHP Iterator interface.
* The PHP Iterator's methods may be used to obtain the results of the query (arrays with values of the fields)
* one by one.
* Also, the cursor can be placed into the "foreach" PHP loop to easily iterate over all the results.
*
* Additionally, SqlFieldsCursorInterface includes
* getAll() method to get all the results at once,
* getFieldNames() method to return names of the fields,
* setFieldTypes() method to specify Ignite types of the fields,
* and close() method (defined in CursorInterface) to prematurely close the cursor.
*
*/
interface SqlFieldsCursorInterface extends CursorInterface
{
/**
* Returns all elements (arrays with values of the fields) from the query results at once.
*
* May be used instead of the PHP Iterator's methods if the number of returned elements
* is relatively small and will not cause memory utilization issues.
*
* @return array all results returned by SQL Fields query.
* Every element of the array is an array with values of the fields requested by the query.
*/
public function getAll(): array;
/**
* Returns names of the fields which were requested in the SQL Fields query.
*
* Empty array is returned if "include field names" flag was false in the query.
*
* @return array field names.
* The order of names corresponds to the order of field values returned in the results of the query.
*/
public function getFieldNames(): array;
/**
* Specifies Ignite types of the fields returned by the SQL Fields query.
*
* By default, an Ignite type of every field is not specified that means during operations Ignite client
* tries to make automatic mapping between PHP types and Ignite object types -
* according to the mapping table defined in the description of the ObjectType class.
*
* @param int|ObjectType|null ...$fieldTypes Ignite types of the returned fields.
* The order of types must correspond the order of field values returned in the results of the query.
* A type of every field can be:
* - either a type code of primitive (simple) type (@ref PrimitiveTypeCodes)
* - or an instance of class representing non-primitive (composite) type
* - or null (or not specified) that means the type is not specified
*
* @return SqlFieldsCursorInterface the same instance of the class with SqlFieldsCursorInterface.
*/
public function setFieldTypes(...$fieldTypes): SqlFieldsCursorInterface;
}