-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Memory improvements (1/3): Introduce new data access layer and schemas (
#1728) * Mem (1/3): introduce new DAL and core Pydantic models * Mem (1/3): Fix schemas * Mem (1/3): DAL PR: temporarily redirect core dispatcher tests * Mem (1/3): DAL PR: fix tests Introduce temporary implementations of `update._node` and `update.lattice_data`. These will be removed once core covalent is transitioned to the new DAL. * Mem (1/3): Fix requirements workflow Change abs imports to rel imports. Needed to please pip-missing-reqs. * Mem (1/3): Uncomment boilerplate in disabled unit tests * Mem (1/3): Add unit test for format_server_url * Mem (1/3): defer copy_file_locally to next PR * Mem (1/3): update changelog * Mem (1/3): Core DAL improvements - Improve type hints * updated license of files * updated license of files * fixed alembic migrations order * fixing tests * fixing tests * fixing tests * fixing ui backend tests * addressed most comments, still some left * implementing final set of suggestions * updated changelog * fixed changelog * implemented suggestions * Added qelectron_data_exists to the ElectronMetadata schema * Added qelectron_data_exists to the electron metadata * fixed typo * fixing test * fixing test --------- Co-authored-by: sankalp <[email protected]>
- Loading branch information
1 parent
889bf3e
commit 314e859
Showing
154 changed files
with
11,122 additions
and
2,152 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,3 +88,6 @@ node_modules/ | |
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
# Ignore mock database | ||
**/*.sqlite |
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,59 @@ | ||
# Copyright 2021 Agnostiq Inc. | ||
# | ||
# This file is part of Covalent. | ||
# | ||
# Licensed under the Apache License 2.0 (the "License"). A copy of the | ||
# License may be obtained with this software package or at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Use of this file is prohibited except in compliance with the License. | ||
# 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. | ||
|
||
import shutil | ||
|
||
from .. import File | ||
from .transfer_strategy_base import FileTransferStrategy | ||
|
||
|
||
class Shutil(FileTransferStrategy): | ||
""" | ||
Implements Base FileTransferStrategy class to copy files locally | ||
The copying is done in-process using shutil.copyfile. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
): | ||
pass | ||
|
||
# return callable to copy files in the local file system | ||
def cp(self, from_file: File, to_file: File = File()) -> None: | ||
""" | ||
Get a callable that copies a file from one location to another locally | ||
Args: | ||
from_file: File to copy from | ||
to_file: File to copy to. Defaults to File(). | ||
Returns: | ||
A callable that copies a file from one location to another locally | ||
""" | ||
|
||
def callable(): | ||
shutil.copyfile(from_file.filepath, to_file.filepath) | ||
|
||
return callable | ||
|
||
# Local file operations only | ||
def upload(self, from_file: File, to_file: File = File()) -> File: | ||
raise NotImplementedError | ||
|
||
# Local file operations only | ||
def download(self, from_file: File, to_file: File) -> File: | ||
raise NotImplementedError |
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,15 @@ | ||
# Copyright 2021 Agnostiq Inc. | ||
# | ||
# This file is part of Covalent. | ||
# | ||
# Licensed under the Apache License 2.0 (the "License"). A copy of the | ||
# License may be obtained with this software package or at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Use of this file is prohibited except in compliance with the License. | ||
# 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. |
Oops, something went wrong.