Giter Club home page Giter Club logo

Comments (7)

cgrand avatar cgrand commented on August 21, 2024

Github really need to provide some kind of preview feature...
#{[:some :selector] [:another :selector]}

from enlive.

swannodette avatar swannodette commented on August 21, 2024

this is the grouping selector though right? I want to shortcut if the first selector matches, does this make sense?

from enlive.

cgrand avatar cgrand commented on August 21, 2024

Yep, after having slept on it, it occurred to me that what you are asking for is a short-circuiting or. Real short-circuiting is nearly impossible because selection is normally performed on a single pass over the whole tree, and to short-circuit you need to know if the first part of the selector matches something.

I said "normally" because (has xxx) introduce a second selection and, hence, a second pass.

The simplest thing to do is to write a macro on select which outputs:
(let [YYY XXX](or %28seq %28select YYY [:some :selector]%29%29 %28select YYY [:another :selector]%29))

I'm thinking on it.

from enlive.

cgrand avatar cgrand commented on August 21, 2024
(defn select-else* [nodes & states] ; for completeness only
  (some #(seq (select* nodes %)) states))

(defmacro select-else [nodes & selectors]
  (let [nodes-sym (gensym "nodes")]
    `(let [~nodes-sym ~nodes]
       (or
         ~@(map (fn [sel]
                  `(seq (select ~nodes-sym ~sel)))
             selectors)))))

I tried to think of a (or-else) combinator (to write (or-else [:some :selector] [:another :selector])), it's doable but it really goes against the grain.

Does select-else (or select-else*) do the trick?

from enlive.

swannodette avatar swannodette commented on August 21, 2024
(select xml #{[:ASIN], [:title], 
                [:Item :> :MediumImage :URL],
                [:ListPrice :Amount]
                [:ListPrice :FormattedPrice]
                [:Publisher]}

Not really. Here's a real example. [:ListPrice :FormattedPrice] doesn't always match. Sometimes the formatted price appears elsewhere. I want to be able to provide an ordered list of possible selectors and short circuit soon as we find one.

If this isn't possible I can come up with a work around.

For XML data sources that are smart enough not to bother with namespacing all their elements, Enlive is a EXCELLENT tool for extracting data.

(def *aws-base-url* "http://ecs.amazonaws.com/onca/xml")

(def *aws-url-params* {:Service        "AWSECommerceService", 
               :AWSAccessKeyId "AKIAI7BLMMASTXEDYLWA",
               :Operation      "ItemLookup",
               :ResponseGroup  "Medium"})

(defn aws-url [itemid]
  (str *aws-base-url* "?"
       (to-url-params 
    (assoc *aws-url-params* :ItemId itemid))))

(defn amazon-data [itemid]
  (html-resource 
    (java.net.URL. (aws-url itemid))))

(defn item-data [xml]
  (let [item-data (select xml #{[:ASIN], [:title], 
                [:Item :> :MediumImage :URL],
                [:ListPrice :Amount]
                [:ListPrice :FormattedPrice]
                [:Publisher]})]
    (apply hash-map 
       (flatten 
        (map #(vector (:tag %) (:content %)) item-data)))))

(defn amazon-info [itemid]
  (item-data (amazon-data itemid)))

Is all I need to extract info from Amazon on any item. Enlive is a killer app ;)

from enlive.

cgrand avatar cgrand commented on August 21, 2024

namespace support is on my todo-list.

completely untested (I'll have more time in the afternoon (CEST)):
(defmacro or-else
([sel](selector ~sel))
([sel & sels]
`(sm/union (selector ~sel)
(sm/intersection
(sm/complement-next (has* (selector ~sel1)))
(or-else ~@Sels)))))

(btw in which TZ are you? I thought you were on the east coast)

from enlive.

cgrand avatar cgrand commented on August 21, 2024

Closing the issue. Performing multiple passes is the way to go.

from enlive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.