osducli 0.0.47__py3-none-any.whl → 0.0.49__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- osducli/VERSION +1 -1
- osducli/commands/config/consts.py +1 -0
- osducli/commands/config/update.py +10 -0
- osducli/commands/storage/add.py +0 -2
- osducli/commands/wbdutil/__init__.py +13 -0
- osducli/commands/wbdutil/_const.py +16 -0
- osducli/commands/wbdutil/config_file.py +57 -0
- osducli/commands/wbdutil/download.py +40 -0
- osducli/commands/wbdutil/ingest/__init__.py +13 -0
- osducli/commands/wbdutil/ingest/data.py +39 -0
- osducli/commands/wbdutil/ingest/wellbore.py +39 -0
- osducli/commands/wbdutil/list/__init__.py +13 -0
- osducli/commands/wbdutil/list/curves.py +38 -0
- osducli/commands/wbdutil/list/wellbore.py +38 -0
- osducli/commands/wbdutil/list/welllog.py +38 -0
- osducli/commands/wbdutil/parse/__init__.py +13 -0
- osducli/commands/wbdutil/parse/convert.py +37 -0
- osducli/commands/wbdutil/parse/print.py +27 -0
- osducli/commands/wbdutil/search.py +36 -0
- osducli/commands/wbdutil/update.py +37 -0
- osducli/commands/wellbore_ddms/_const.py +9 -0
- osducli/commands/wellbore_ddms/log_recognition/__init__.py +13 -0
- osducli/commands/wellbore_ddms/log_recognition/family.py +37 -0
- osducli/commands/wellbore_ddms/log_recognition/upload_catalog.py +40 -0
- osducli/commands/wellbore_ddms/ppfgdataset/__init__.py +13 -0
- osducli/commands/wellbore_ddms/ppfgdataset/add.py +42 -0
- osducli/commands/wellbore_ddms/ppfgdataset/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/ppfgdataset/data/add.py +40 -0
- osducli/commands/wellbore_ddms/ppfgdataset/data/get.py +44 -0
- osducli/commands/wellbore_ddms/ppfgdataset/delete.py +35 -0
- osducli/commands/wellbore_ddms/ppfgdataset/get.py +35 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/__init__.py +13 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/create.py +35 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/get.py +36 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/list.py +35 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/send.py +41 -0
- osducli/commands/wellbore_ddms/ppfgdataset/session/update.py +37 -0
- osducli/commands/wellbore_ddms/ppfgdataset/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/ppfgdataset/version/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/ppfgdataset/version/data/get.py +45 -0
- osducli/commands/wellbore_ddms/ppfgdataset/version/get.py +36 -0
- osducli/commands/wellbore_ddms/ppfgdataset/version/list.py +35 -0
- osducli/commands/wellbore_ddms/trajectory/__init__.py +13 -0
- osducli/commands/wellbore_ddms/trajectory/add.py +42 -0
- osducli/commands/wellbore_ddms/trajectory/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/trajectory/data/add.py +40 -0
- osducli/commands/wellbore_ddms/trajectory/data/get.py +44 -0
- osducli/commands/wellbore_ddms/trajectory/delete.py +35 -0
- osducli/commands/wellbore_ddms/trajectory/get.py +35 -0
- osducli/commands/wellbore_ddms/trajectory/session/__init__.py +13 -0
- osducli/commands/wellbore_ddms/trajectory/session/create.py +35 -0
- osducli/commands/wellbore_ddms/trajectory/session/get.py +36 -0
- osducli/commands/wellbore_ddms/trajectory/session/list.py +35 -0
- osducli/commands/wellbore_ddms/trajectory/session/send.py +41 -0
- osducli/commands/wellbore_ddms/trajectory/session/update.py +37 -0
- osducli/commands/wellbore_ddms/trajectory/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/trajectory/version/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/trajectory/version/data/get.py +45 -0
- osducli/commands/wellbore_ddms/trajectory/version/get.py +36 -0
- osducli/commands/wellbore_ddms/trajectory/version/list.py +35 -0
- osducli/commands/wellbore_ddms/well/__init__.py +13 -0
- osducli/commands/wellbore_ddms/well/add.py +42 -0
- osducli/commands/wellbore_ddms/well/delete.py +35 -0
- osducli/commands/wellbore_ddms/well/get.py +35 -0
- osducli/commands/wellbore_ddms/well/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/well/version/get.py +36 -0
- osducli/commands/wellbore_ddms/well/version/list.py +35 -0
- osducli/commands/wellbore_ddms/well_log/add.py +4 -4
- osducli/commands/wellbore_ddms/well_log/data/__init__.py +1 -1
- osducli/commands/wellbore_ddms/well_log/data/add.py +5 -5
- osducli/commands/wellbore_ddms/well_log/data/get.py +5 -5
- osducli/commands/wellbore_ddms/well_log/data/statistics.py +36 -0
- osducli/commands/wellbore_ddms/well_log/delete.py +35 -0
- osducli/commands/wellbore_ddms/well_log/get.py +5 -5
- osducli/commands/wellbore_ddms/well_log/session/__init__.py +13 -0
- osducli/commands/wellbore_ddms/well_log/session/create.py +35 -0
- osducli/commands/wellbore_ddms/well_log/session/get.py +36 -0
- osducli/commands/wellbore_ddms/well_log/session/list.py +35 -0
- osducli/commands/wellbore_ddms/well_log/session/send.py +41 -0
- osducli/commands/wellbore_ddms/well_log/session/update.py +37 -0
- osducli/commands/wellbore_ddms/well_log/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/well_log/version/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/well_log/version/data/get.py +45 -0
- osducli/commands/wellbore_ddms/well_log/version/data/statistics.py +37 -0
- osducli/commands/wellbore_ddms/well_log/version/data/update_stats.py +36 -0
- osducli/commands/wellbore_ddms/well_log/version/get.py +36 -0
- osducli/commands/wellbore_ddms/well_log/version/list.py +35 -0
- osducli/commands/wellbore_ddms/wellbore/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore/add.py +42 -0
- osducli/commands/wellbore_ddms/wellbore/delete.py +35 -0
- osducli/commands/wellbore_ddms/wellbore/get.py +35 -0
- osducli/commands/wellbore_ddms/wellbore/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore/version/get.py +36 -0
- osducli/commands/wellbore_ddms/wellbore/version/list.py +35 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/add.py +44 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/delete.py +37 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/get.py +37 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/version/get.py +38 -0
- osducli/commands/wellbore_ddms/wellbore_intervalset/version/list.py +37 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/add.py +42 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/delete.py +35 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/get.py +35 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/version/get.py +36 -0
- osducli/commands/wellbore_ddms/wellbore_markerset/version/list.py +35 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/__init__.py +13 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/add.py +42 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/delete.py +35 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/get.py +35 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/version/get.py +36 -0
- osducli/commands/wellbore_ddms/welllog_acquisition/version/list.py +35 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/add.py +44 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/data/add.py +42 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/data/get.py +46 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/delete.py +37 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/get.py +37 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/create.py +37 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/get.py +38 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/list.py +37 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/send.py +43 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/session/update.py +39 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/data/__init__.py +13 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/data/get.py +47 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/get.py +38 -0
- osducli/commands/wellbore_ddms/wellpressure_test_raw_measurement/version/list.py +37 -0
- osducli/config.py +1 -0
- osducli/wbddms_client.py +160 -27
- {osducli-0.0.47.dist-info → osducli-0.0.49.dist-info}/METADATA +15 -8
- osducli-0.0.49.dist-info/RECORD +242 -0
- osducli-0.0.47.dist-info/RECORD +0 -119
- {osducli-0.0.47.dist-info → osducli-0.0.49.dist-info}/WHEEL +0 -0
- {osducli-0.0.47.dist-info → osducli-0.0.49.dist-info}/entry_points.txt +0 -0
- {osducli-0.0.47.dist-info → osducli-0.0.49.dist-info}/licenses/LICENSE.md +0 -0
- {osducli-0.0.47.dist-info → osducli-0.0.49.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""Well delete record command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Delete record from wellbore ddms by id. The API performs a soft delete.")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="Well id to delete", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return delete_record(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def delete_record(state: State, identifier: str):
|
|
30
|
+
"""Delete record from wellbore ddms by id. The API performs a soft delete."""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_PATH)
|
|
33
|
+
response = wellbore_client.delete_wbddms_record(identifier)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""Well get record command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Get Well record by id")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="Well id to search for", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return get_record(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_record(state: State, identifier: str):
|
|
30
|
+
"""Get Well record by id"""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_PATH)
|
|
33
|
+
response = wellbore_client.get_wbddms_record(identifier)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
|
|
13
|
+
"""Wellbore DDMS Well version commands"""
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""Well get record version command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Get Well record by id and version")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="Well id to search for", required=True)
|
|
23
|
+
@click.option("-v", "--version", "_ver", help="Well version to search for", required=True)
|
|
24
|
+
@handle_cli_exceptions
|
|
25
|
+
@command_with_output()
|
|
26
|
+
def _click_command(state: State, _id: str, _ver: str):
|
|
27
|
+
return get_record(state, _id, _ver)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def get_record(state: State, identifier: str, version: str):
|
|
31
|
+
"""Get Well record by id and version"""
|
|
32
|
+
client = CliOsduClient(state.config)
|
|
33
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_PATH)
|
|
34
|
+
response = wellbore_client.get_wbddms_record_version(identifier, version)
|
|
35
|
+
client.check_status_code(response)
|
|
36
|
+
return response.json()
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""Well get record versions command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="List Well record versions by id")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="Well id to search for", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return get_versions(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_versions(state: State, identifier: str):
|
|
30
|
+
"""Get Well record versions by id"""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_PATH)
|
|
33
|
+
response = wellbore_client.get_wbddms_record_versions(identifier)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
10
|
# See the License for the specific language governing permissions and
|
|
11
11
|
# limitations under the License.
|
|
12
|
-
"""
|
|
12
|
+
"""WellLog add record command"""
|
|
13
13
|
import json
|
|
14
14
|
|
|
15
15
|
import click
|
|
@@ -20,7 +20,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
# click entry point
|
|
23
|
-
@click.command(cls=CustomClickCommand, help="Add
|
|
23
|
+
@click.command(cls=CustomClickCommand, help="Add WellLog record")
|
|
24
24
|
@click.option("-f", "--file", "_file", help="WellLog record file to add", required=True)
|
|
25
25
|
@handle_cli_exceptions
|
|
26
26
|
@command_with_output("recordIds")
|
|
@@ -29,7 +29,7 @@ def _click_command(state: State, _file: str):
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
def add_record(state: State, record_file: str):
|
|
32
|
-
"""Add
|
|
32
|
+
"""Add WellLog record"""
|
|
33
33
|
client = CliOsduClient(state.config)
|
|
34
34
|
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
35
35
|
|
|
@@ -37,6 +37,6 @@ def add_record(state: State, record_file: str):
|
|
|
37
37
|
record_data = json.load(file)
|
|
38
38
|
|
|
39
39
|
record_data_list = "[" + json.dumps(record_data) + "]"
|
|
40
|
-
response = wellbore_client.
|
|
40
|
+
response = wellbore_client.create_wbddms_record(record_data_list)
|
|
41
41
|
client.check_status_code(response)
|
|
42
42
|
return response.json()
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
10
|
# See the License for the specific language governing permissions and
|
|
11
11
|
# limitations under the License.
|
|
12
|
-
"""
|
|
12
|
+
"""WellLog add data command"""
|
|
13
13
|
import click
|
|
14
14
|
|
|
15
15
|
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
@@ -18,7 +18,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
# click entry point
|
|
21
|
-
@click.command(cls=CustomClickCommand, help="Add
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Add WellLog data")
|
|
22
22
|
@click.option("-id", "--id", "_id", help="WellLog id to add data to", required=True)
|
|
23
23
|
@click.option("-f", "--file", "_file", help="WellLog data file to add", required=True)
|
|
24
24
|
@handle_cli_exceptions
|
|
@@ -27,14 +27,14 @@ def _click_command(state: State, _id: str, _file: str):
|
|
|
27
27
|
return add_data(state, _id, _file)
|
|
28
28
|
|
|
29
29
|
|
|
30
|
-
def add_data(state: State,
|
|
31
|
-
"""
|
|
30
|
+
def add_data(state: State, record_id: str, data_file: str):
|
|
31
|
+
"""WellLog add data"""
|
|
32
32
|
client = CliOsduClient(state.config)
|
|
33
33
|
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
34
34
|
|
|
35
35
|
with open(data_file, 'rb') as file:
|
|
36
36
|
file_data = file.read()
|
|
37
37
|
|
|
38
|
-
response = wellbore_client.
|
|
38
|
+
response = wellbore_client.create_wbddms_data(record_id, file_data)
|
|
39
39
|
client.check_status_code(response)
|
|
40
40
|
return response.json()
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
10
|
# See the License for the specific language governing permissions and
|
|
11
11
|
# limitations under the License.
|
|
12
|
-
"""
|
|
12
|
+
"""WellLog get data command"""
|
|
13
13
|
import os
|
|
14
14
|
|
|
15
15
|
import click
|
|
@@ -20,7 +20,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
# click entry point
|
|
23
|
-
@click.command(cls=CustomClickCommand, help="Get
|
|
23
|
+
@click.command(cls=CustomClickCommand, help="Get WellLog data by id")
|
|
24
24
|
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
25
25
|
@click.option("-f", "--file", "_file", help="File to save WellLog data", required=True)
|
|
26
26
|
@handle_cli_exceptions
|
|
@@ -29,11 +29,11 @@ def _click_command(state: State, _id: str, _file: str):
|
|
|
29
29
|
return get_data(state, _id, _file)
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
def get_data(state: State,
|
|
33
|
-
"""Get
|
|
32
|
+
def get_data(state: State, record_id: str, out_file: str):
|
|
33
|
+
"""Get WellLog record by id"""
|
|
34
34
|
client = CliOsduClient(state.config)
|
|
35
35
|
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
36
|
-
response = wellbore_client.
|
|
36
|
+
response = wellbore_client.get_wbddms_data(record_id)
|
|
37
37
|
client.check_status_code(response)
|
|
38
38
|
|
|
39
39
|
with open(out_file, 'wb') as file:
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog get data statistics command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Get WellLog data statistics by id")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
23
|
+
@click.option("-c", "--curves", "_curves", help="List of curves or array to be returned. All curves if empty", required=False)
|
|
24
|
+
@handle_cli_exceptions
|
|
25
|
+
@command_with_output()
|
|
26
|
+
def _click_command(state: State, _id: str, _curves: str):
|
|
27
|
+
return get_statistics(state, _id, _curves)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def get_statistics(state: State, record_id: str, curves: str):
|
|
31
|
+
"""Get WellLog data statistics"""
|
|
32
|
+
client = CliOsduClient(state.config)
|
|
33
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
34
|
+
response = wellbore_client.get_wbddms_data_statistics(record_id, curves)
|
|
35
|
+
client.check_status_code(response)
|
|
36
|
+
return response.json()
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog delete record command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Delete record from wellbore ddms by id. The API performs a soft delete.")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to delete", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return delete_record(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def delete_record(state: State, record_id: str):
|
|
30
|
+
"""Delete record from wellbore ddms by id. The API performs a soft delete."""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
33
|
+
response = wellbore_client.delete_wbddms_record(record_id)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
10
|
# See the License for the specific language governing permissions and
|
|
11
11
|
# limitations under the License.
|
|
12
|
-
"""
|
|
12
|
+
"""WellLog get record command"""
|
|
13
13
|
import click
|
|
14
14
|
|
|
15
15
|
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
@@ -18,7 +18,7 @@ from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
# click entry point
|
|
21
|
-
@click.command(cls=CustomClickCommand, help="Get
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Get WellLog record by id")
|
|
22
22
|
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
23
23
|
@handle_cli_exceptions
|
|
24
24
|
@command_with_output()
|
|
@@ -26,10 +26,10 @@ def _click_command(state: State, _id: str):
|
|
|
26
26
|
return get_record(state, _id)
|
|
27
27
|
|
|
28
28
|
|
|
29
|
-
def get_record(state: State,
|
|
30
|
-
"""Get
|
|
29
|
+
def get_record(state: State, record_id: str):
|
|
30
|
+
"""Get WellLog record by id"""
|
|
31
31
|
client = CliOsduClient(state.config)
|
|
32
32
|
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
33
|
-
response = wellbore_client.
|
|
33
|
+
response = wellbore_client.get_wbddms_record(record_id)
|
|
34
34
|
client.check_status_code(response)
|
|
35
35
|
return response.json()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
|
|
13
|
+
"""Wellbore DDMS WellLog session commands"""
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog create session command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Create a new session on the given WellLog")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return create_session(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def create_session(state: State, record_id: str):
|
|
30
|
+
"""Create a new session on the given WellLog"""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
33
|
+
response = wellbore_client.create_wbddms_session(record_id)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog get session command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Get WellLog session")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
23
|
+
@click.option("-s", "--session", "_ses", help="WellLog session id to search for", required=True)
|
|
24
|
+
@handle_cli_exceptions
|
|
25
|
+
@command_with_output()
|
|
26
|
+
def _click_command(state: State, _id: str, _ses: str):
|
|
27
|
+
return get_session(state, _id, _ses)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def get_session(state: State, record_id: str, session_id: str):
|
|
31
|
+
"""Get WellLog session"""
|
|
32
|
+
client = CliOsduClient(state.config)
|
|
33
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
34
|
+
response = wellbore_client.get_wbddms_session(record_id, session_id)
|
|
35
|
+
client.check_status_code(response)
|
|
36
|
+
return response.json()
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog list session command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="List session of the given WellLog")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
23
|
+
@handle_cli_exceptions
|
|
24
|
+
@command_with_output()
|
|
25
|
+
def _click_command(state: State, _id: str):
|
|
26
|
+
return get_versions(state, _id)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def get_versions(state: State, record_id: str):
|
|
30
|
+
"""List session of the given WellLog"""
|
|
31
|
+
client = CliOsduClient(state.config)
|
|
32
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
33
|
+
response = wellbore_client.list_wbddms_session(record_id)
|
|
34
|
+
client.check_status_code(response)
|
|
35
|
+
return response.json()
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog send data chunk command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Send a data chunk within a session")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to append chunk", required=True)
|
|
23
|
+
@click.option("-s", "--session", "_ses", help="WellLog session id to append chunk", required=True)
|
|
24
|
+
@click.option("-f", "--file", "_file", help="WellLog chunk file to append", required=True)
|
|
25
|
+
@handle_cli_exceptions
|
|
26
|
+
@command_with_output()
|
|
27
|
+
def _click_command(state: State, _id: str, _ses: str, _file: str):
|
|
28
|
+
return send_chunk(state, _id, _ses, _file)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def send_chunk(state: State, record_id: str, session_id: str, data_file: str):
|
|
32
|
+
"""Send a data chunk within a session"""
|
|
33
|
+
client = CliOsduClient(state.config)
|
|
34
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
35
|
+
|
|
36
|
+
with open(data_file, 'rb') as file:
|
|
37
|
+
file_data = file.read()
|
|
38
|
+
|
|
39
|
+
response = wellbore_client.add_wbddms_data_chunk(record_id, session_id, file_data)
|
|
40
|
+
client.check_status_code(response)
|
|
41
|
+
return response.json()
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog update session command"""
|
|
13
|
+
import click
|
|
14
|
+
|
|
15
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
16
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
17
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
# click entry point
|
|
21
|
+
@click.command(cls=CustomClickCommand, help="Update a session, either commit or abandon")
|
|
22
|
+
@click.option("-id", "--id", "_id", help="WellLog id to update", required=True)
|
|
23
|
+
@click.option("-s", "--session", "_ses", help="WellLog session id to update", required=True)
|
|
24
|
+
@click.option("-c", "--commit", "_com", is_flag=True, help="Commit or abandon", required=False)
|
|
25
|
+
@handle_cli_exceptions
|
|
26
|
+
@command_with_output()
|
|
27
|
+
def _click_command(state: State, _id: str, _ses: str, _com: bool):
|
|
28
|
+
return update_session(state, _id, _ses, _com)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
def update_session(state: State, record_id: str, session_id: str, commit: bool):
|
|
32
|
+
"""Update a session, either commit or abandon"""
|
|
33
|
+
client = CliOsduClient(state.config)
|
|
34
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
35
|
+
response = wellbore_client.update_wbddms_session(record_id, session_id, commit)
|
|
36
|
+
client.check_status_code(response)
|
|
37
|
+
return response.json()
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
|
|
13
|
+
"""Wellbore DDMS WellLog version commands"""
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
|
|
13
|
+
"""Wellbore DDMS WellLog version data commands"""
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
# you may not use this file except in compliance with the License.
|
|
3
|
+
# You may obtain a copy of the License at
|
|
4
|
+
#
|
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
#
|
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
# See the License for the specific language governing permissions and
|
|
11
|
+
# limitations under the License.
|
|
12
|
+
"""WellLog get version data command"""
|
|
13
|
+
import os
|
|
14
|
+
|
|
15
|
+
import click
|
|
16
|
+
|
|
17
|
+
from osducli.click_cli import CustomClickCommand, State, command_with_output
|
|
18
|
+
from osducli.cliclient import CliOsduClient, handle_cli_exceptions
|
|
19
|
+
from osducli.commands.wellbore_ddms._const import WELLBORE_DDMS_WELL_LOG_PATH
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# click entry point
|
|
23
|
+
@click.command(cls=CustomClickCommand, help="Get WellLog data by id and version")
|
|
24
|
+
@click.option("-id", "--id", "_id", help="WellLog id to search for", required=True)
|
|
25
|
+
@click.option("-v", "--version", "_ver", help="WellLog version to search for", required=True)
|
|
26
|
+
@click.option("-f", "--file", "_file", help="File to save WellLog data", required=True)
|
|
27
|
+
@handle_cli_exceptions
|
|
28
|
+
@command_with_output()
|
|
29
|
+
def _click_command(state: State, _id: str, _ver: str, _file: str):
|
|
30
|
+
return get_data(state, _id, _ver, _file)
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def get_data(state: State, record_id: str, version_id: str, out_file: str):
|
|
34
|
+
"""Get WellLog data by id and version"""
|
|
35
|
+
client = CliOsduClient(state.config)
|
|
36
|
+
wellbore_client = client.get_wellbore_ddms_client(url_extra_path=WELLBORE_DDMS_WELL_LOG_PATH)
|
|
37
|
+
response = wellbore_client.get_wbddms_version_data(record_id, version_id)
|
|
38
|
+
client.check_status_code(response)
|
|
39
|
+
|
|
40
|
+
with open(out_file, 'wb') as file:
|
|
41
|
+
file.write(response.content)
|
|
42
|
+
|
|
43
|
+
filename = os.path.abspath(file.name)
|
|
44
|
+
print("File created: ", filename)
|
|
45
|
+
return filename
|