You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: livebooks/readme.livemd
+26-20
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
## Dependencies
6
6
7
7
```elixir
8
-
Mix.install([{:data_schema, path:"./"}])
8
+
Mix.install([:data_schema, :sweet_xml])
9
9
```
10
10
11
11
Data schemas are declarative descriptions of how to create a struct from some input data. You can set up different schemas to handle different kinds of input data. By default we assume the incoming data is a map, but you can configure schemas to work with any arbitrary data input including XML and json.
So imagine the input data came from an API response:
172
174
175
+
<!-- livebook:{"continue_on_error":true} -->
176
+
173
177
```elixir
174
178
with {:ok, %{status:200, response_body: body}} <-Http.get("https://www.my_thing.example.com"),
175
179
{:ok, decoded} <-Jason.decode(body) do
@@ -182,21 +186,21 @@ end
182
186
As we mentioned before we want to be able to handle multiple different kinds of source data in our schemas. For each type of source data we want to be able to specify how you access the data for each field type. We do that by providing a "data accessor" (a module that implements the `DataSchema.DataAccessBehaviour`) when we create the schema. We do this by providing a `@data_accessor` on the schema. By default if you do not provide this module attribute we use `DataSchema.MapAccessor`. That means the above example is equivalent to doing the following:
When creating the struct DataSchema will call the relevant function for the field we are creating, passing it the source data and the path to the value(s) in the source. Our `DataSchema.MapAccessor` looks like this:
This means should we want to change how we access data (say we wanted to use `Map.fetch!` instead of `Map.get`) we would only need to change the accessor used in one place - inside the `__using__` macro. It also gives you a handy place to provide other functions for the structs that get created, perhaps implementing a default Inspect protocol implementation for example:
268
272
273
+
<!-- livebook:{"continue_on_error":true} -->
274
+
269
275
```elixir
270
276
defmoduleMapSchemado
271
277
defmacro__using__(opts) do
@@ -293,6 +299,8 @@ This could help ensure you never log sensitive fields by requiring you to explic
293
299
294
300
Now let's imagine instead that our source data was XML. What would it require to enable that? First a new Xpath data accessor:
0 commit comments