forked from apache/arrow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…37445) ### Rationale for this change Now that `arrow.type.Date32Type` class has been added to the MATLAB Interface (apache#37348), we can add the `arrow.array.Date32Array` class. `Date32Array`s can be created from MATLAB [`datetime`](https://www.mathworks.com/help/matlab/ref/datetime.html) values. ### What changes are included in this PR? 1. Added a new `arrow.array.Date32Array` class. 2. Added a new `arrow.type.traits.Date32Traits` class. 3. Added `arrow.type.Date32Type` support to `arrow.type.traits.traits` function. 4. Fixed typo `arrray` in `tTime32Array` test class. 5. Fixed bug in `numeric_array.h` where the `CType` rather than the `ArrowType` was being used to determine the `DataType` of an array class that is a `NumericArray<T>`. `Date32Array`s can be created from MATLAB [`datetime`](https://www.mathworks.com/help/matlab/ref/datetime.html) values using the `fromMATLAB` method. `Date32Array`s can be converted to MATLAB `datetime` values using the `toMATLAB` method. **Example** ```matlab >> dates = [datetime(2021, 1, 2, 3, 4, 5), datetime(2023, 1, 1), datetime(1989, 2, 3, 10, 10, 10)]' dates = 3x1 datetime array 02-Jan-2021 03:04:05 01-Jan-2023 00:00:00 03-Feb-1989 10:10:10 >> array = arrow.array.Date32Array.fromMATLAB(dates) array = [ 2021-01-02, 2023-01-01, 1989-02-03 ] >> array.toMATLAB() ans = 3x1 datetime array 02-Jan-2021 01-Jan-2023 03-Feb-1989 ``` ### Are these changes tested? Yes. 1. Added a new `tDate32Array` test class. 2. Added `Date32` related test to `ttraits.m`. 6. Added a new `tDate32Traits.m` test class. ### Are there any user-facing changes? Yes. 1. Users can now create `arrow.array.Date32Array`s from MATLAB `datetime`s. ### Future Directions 1. apache#37230 2. Add `arrow.array.Date64Array`. 3. Add a way to extract the raw `int32` values from an `arrow.array.Date32Array` without converting to a MATLAB `datetime` using `toMATLAB`. ### Notes 1. Thank you @ sgilmore10 for your help with this pull request! * Closes: apache#37367 Lead-authored-by: Kevin Gurney <[email protected]> Co-authored-by: Sarah Gilmore <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
- Loading branch information
1 parent
690d920
commit ecb7897
Showing
13 changed files
with
492 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
% arrow.array.Date32Array | ||
|
||
% 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. | ||
|
||
classdef Date32Array < arrow.array.Array | ||
|
||
properties(Access=private) | ||
NullSubstitutionValue = NaT | ||
end | ||
|
||
methods | ||
|
||
function obj = Date32Array(proxy) | ||
arguments | ||
proxy(1, 1) libmexclass.proxy.Proxy {validate(proxy, "arrow.array.proxy.Date32Array")} | ||
end | ||
import arrow.internal.proxy.validate | ||
[email protected](proxy); | ||
end | ||
|
||
function dates = toMATLAB(obj) | ||
import arrow.type.DateUnit | ||
|
||
matlabArray = obj.Proxy.toMATLAB(); | ||
% UNIX Epoch (January 1st, 1970). | ||
unixEpoch = datetime(0, ConvertFrom="posixtime"); | ||
% A Date32 value encodes a certain number of whole days | ||
% before or after the UNIX Epoch. | ||
dates = unixEpoch + days(matlabArray); | ||
dates(~obj.Valid) = obj.NullSubstitutionValue; | ||
end | ||
|
||
function dates = datetime(obj) | ||
dates = obj.toMATLAB(); | ||
end | ||
|
||
end | ||
|
||
methods(Static) | ||
|
||
function array = fromMATLAB(data, opts) | ||
arguments | ||
data | ||
opts.InferNulls(1, 1) logical = true | ||
opts.Valid | ||
end | ||
|
||
import arrow.array.Date32Array | ||
|
||
arrow.internal.validate.type(data, "datetime"); | ||
arrow.internal.validate.shape(data); | ||
|
||
validElements = arrow.internal.validate.parseValidElements(data, opts); | ||
|
||
% If the input MATLAB datetime array is zoned (i.e. has a TimeZone), | ||
% then the datetime representing the UNIX Epoch must also have a TimeZone. | ||
if ~isempty(data.TimeZone) | ||
unixEpoch = datetime(0, ConvertFrom="posixtime", TimeZone="UTC"); | ||
else | ||
unixEpoch = datetime(0, ConvertFrom="posixtime"); | ||
end | ||
|
||
% Explicitly round down (i.e. floor) to the nearest whole number | ||
% of days because durations and datetimes are not guaranteed | ||
% to encode "whole" number dates / times (e.g. 1.5 days is a valid duration) | ||
% and the int32 function rounds to the nearest whole number. | ||
% Rounding to the nearest whole number without flooring first would result in a | ||
% "round up error" of 1 whole day in cases where the fractional part of | ||
% the duration is large enough to result in rounding up (e.g. 1.5 days would | ||
% become 2 days). | ||
numDays = int32(floor(days(data - unixEpoch))); | ||
args = struct(MatlabArray=numDays, Valid=validElements); | ||
proxy = arrow.internal.proxy.create("arrow.array.proxy.Date32Array", args); | ||
array = Date32Array(proxy); | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
% 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. | ||
|
||
classdef Date32Traits < arrow.type.traits.TypeTraits | ||
|
||
properties (Constant) | ||
ArrayConstructor = @arrow.array.Date32Array | ||
ArrayClassName = "arrow.array.Date32Array" | ||
ArrayProxyClassName = "arrow.array.proxy.Date32Array" | ||
ArrayStaticConstructor = @arrow.array.Date32Array.fromMATLAB | ||
TypeConstructor = @arrow.type.Date32Type; | ||
TypeClassName = "arrow.type.Date32Type" | ||
TypeProxyClassName = "arrow.type.proxy.Date32Type" | ||
MatlabConstructor = @datetime | ||
MatlabClassName = "datetime" | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.