-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
resource_arm_data_lake_store_file.go
181 lines (150 loc) · 5.52 KB
/
resource_arm_data_lake_store_file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package azurerm
import (
"bytes"
"fmt"
"io"
"io/ioutil"
"log"
"net/url"
"os"
"strings"
"github.com/Azure/azure-sdk-for-go/services/datalake/store/2016-11-01/filesystem"
"github.com/hashicorp/terraform/helper/schema"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/response"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/helpers/tf"
"github.com/terraform-providers/terraform-provider-azurerm/azurerm/utils"
)
func resourceArmDataLakeStoreFile() *schema.Resource {
return &schema.Resource{
Create: resourceArmDataLakeStoreFileCreate,
Read: resourceArmDataLakeStoreFileRead,
Delete: resourceArmDataLakeStoreFileDelete,
MigrateState: resourceDataLakeStoreFileMigrateState,
SchemaVersion: 1,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
Schema: map[string]*schema.Schema{
"account_name": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
"remote_file_path": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validateFilePath(),
},
"local_file_path": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
},
},
}
}
func resourceArmDataLakeStoreFileCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).dataLakeStoreFilesClient
ctx := meta.(*ArmClient).StopContext
chunkSize := 4 * 1024 * 1024
log.Printf("[INFO] preparing arguments for Date Lake Store File creation.")
accountName := d.Get("account_name").(string)
remoteFilePath := d.Get("remote_file_path").(string)
localFilePath := d.Get("local_file_path").(string)
// example.azuredatalakestore.net/test/example.txt
id := fmt.Sprintf("%s.%s%s", accountName, client.AdlsFileSystemDNSSuffix, remoteFilePath)
if requireResourcesToBeImported {
existing, err := client.GetFileStatus(ctx, accountName, remoteFilePath, utils.Bool(true))
if err != nil {
if !utils.ResponseWasNotFound(existing.Response) {
return fmt.Errorf("Error checking for presence of existing Data Lake Store File %q (Account %q): %s", remoteFilePath, accountName, err)
}
}
if existing.FileStatus != nil && existing.FileStatus.ModificationTime != nil {
return tf.ImportAsExistsError("azurerm_data_lake_store_file", id)
}
}
file, err := os.Open(localFilePath)
if err != nil {
return fmt.Errorf("error opening file %q: %+v", localFilePath, err)
}
defer utils.IoCloseAndLogError(file, fmt.Sprintf("Error closing Data Lake Store File %q", localFilePath))
if _, err = client.Create(ctx, accountName, remoteFilePath, nil, nil, filesystem.DATA, nil, nil); err != nil {
return fmt.Errorf("Error issuing create request for Data Lake Store File %q : %+v", remoteFilePath, err)
}
buffer := make([]byte, chunkSize)
for {
n, err := file.Read(buffer)
if err == io.EOF {
break
}
flag := filesystem.DATA
if n < chunkSize {
// last chunk
flag = filesystem.CLOSE
}
chunk := ioutil.NopCloser(bytes.NewReader(buffer[:n]))
if _, err = client.Append(ctx, accountName, remoteFilePath, chunk, nil, flag, nil, nil); err != nil {
return fmt.Errorf("Error transferring chunk for Data Lake Store File %q : %+v", remoteFilePath, err)
}
}
d.SetId(id)
return resourceArmDataLakeStoreFileRead(d, meta)
}
func resourceArmDataLakeStoreFileRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).dataLakeStoreFilesClient
ctx := meta.(*ArmClient).StopContext
id, err := parseDataLakeStoreFileId(d.Id(), client.AdlsFileSystemDNSSuffix)
if err != nil {
return err
}
resp, err := client.GetFileStatus(ctx, id.storageAccountName, id.filePath, utils.Bool(true))
if err != nil {
if utils.ResponseWasNotFound(resp.Response) {
log.Printf("[WARN] Data Lake Store File %q was not found (Account %q)", id.filePath, id.storageAccountName)
d.SetId("")
return nil
}
return fmt.Errorf("Error making Read request on Azure Data Lake Store File %q (Account %q): %+v", id.filePath, id.storageAccountName, err)
}
d.Set("account_name", id.storageAccountName)
d.Set("remote_file_path", id.filePath)
return nil
}
func resourceArmDataLakeStoreFileDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*ArmClient).dataLakeStoreFilesClient
ctx := meta.(*ArmClient).StopContext
id, err := parseDataLakeStoreFileId(d.Id(), client.AdlsFileSystemDNSSuffix)
if err != nil {
return err
}
resp, err := client.Delete(ctx, id.storageAccountName, id.filePath, utils.Bool(false))
if err != nil {
if !response.WasNotFound(resp.Response.Response) {
return fmt.Errorf("Error issuing delete request for Data Lake Store File %q (Account %q): %+v", id.filePath, id.storageAccountName, err)
}
}
return nil
}
type dataLakeStoreFileId struct {
storageAccountName string
filePath string
}
func parseDataLakeStoreFileId(input string, suffix string) (*dataLakeStoreFileId, error) {
// Example: tomdevdls1.azuredatalakestore.net/test/example.txt
// we add a scheme to the start of this so it parses correctly
uri, err := url.Parse(fmt.Sprintf("https://%s", input))
if err != nil {
return nil, fmt.Errorf("Error parsing %q as URI: %+v", input, err)
}
// TODO: switch to pulling this from the Environment when it's available there
// BUG: https://github.com/Azure/go-autorest/issues/312
replacement := fmt.Sprintf(".%s", suffix)
accountName := strings.Replace(uri.Host, replacement, "", -1)
file := dataLakeStoreFileId{
storageAccountName: accountName,
filePath: uri.Path,
}
return &file, nil
}