Thanks Neil for the ideas! I didn&#39;t think of looking how &#39;all-from-out&#39; works so I will start from there!<br><br><div class="gmail_quote">2011/11/9 Neil Toronto <span dir="ltr">&lt;<a href="mailto:neil.toronto@gmail.com">neil.toronto@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div></div><div class="h5">On 11/09/2011 07:29 AM, Ismael Figueroa Palet wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hi all, please help me with the following:<br>
<br>
I need to require a module, ideally with the same syntax as require,<br>
then access to all the imported symbols and re-export them with the same<br>
name but with a new definition, that is a wrapper for the original one.<br>
<br>
I think this should be done with a macro, but I don&#39;t know how to access<br>
the imported symbols acquired with require.<br>
<br>
any pointers to documentation or ideas on how to implement this?<br>
</blockquote>
<br></div></div>
You&#39;ll want to implement something similar to `all-from-out&#39;. I don&#39;t know exactly how it works; specifically, how it gets a list of imported identifiers. It&#39;s a &quot;provide transformer&quot; - you can search for that term in the docs. Also, don&#39;t be afraid to look at the code for `all-from-out&#39;. It&#39;s defined in &quot;collects/racket/private/<u></u>reqprov.rkt&quot;.<br>

<br>
Random tips:<br>
<br>
You&#39;ll need to make a provide transformer (using `make-provide-transformer) or a provide &quot;pre-transformer&quot; (using `make-provide-pre-transformer&#39;<u></u>). Pre-transformers are expanded first, and return new provide syntax. Transformers are then expanded, and they return &quot;exports&quot;, which are structs that contain information about provided symbols. In either case, you can get away with just manipulating syntax.<br>

<br>
Unlike regular macros, provide macros don&#39;t automatically expand until they expand into a basic form. If, say, in a pre-provide macro, you return new provide syntax that&#39;s *not* a basic provide form, you&#39;ll need to use `pre-expand-export&#39; to expand it. There&#39;s a corresponding `expand-export&#39; for provide macros.<br>

<br>
To make a wrapper, use `syntax-local-lift-expression&#39; to lift the syntax of the wrapper&#39;s definition to the module level. You can then export it by having a pre-provide macro return `(provide wrapper-id)&#39;.<br>

<br>
In dealing with requires and provides, you&#39;ll need to deal with phases. The mysterious &quot;modes&quot; mentioned in the docs on require and provide transformers are relative phases. I&#39;ve found the following function helpful in a few places:<br>

<br>
(define-for-syntax (phases-&gt;abs-phases phases)<br>
  (map (ë (phase) (and phase (+ phase (syntax-local-phase-level))))<br>
       (if (null? phases) &#39;(0) phases)))<br>
<br>
It turns relative phases into absolute phases, and ensures that there&#39;s always at least one. You&#39;ll want this if you want to look up identifiers to ensure they&#39;re defined, or lift a provide (so you can wrap it properly in a `for-meta&#39;). If you can stick to just syntax transformations in your provide macros, you won&#39;t need it at all - just pass the relative phases through to `expand-export&#39; and `pre-expand-export&#39;.<br>

<br>
In existing provide macros like `all-from-out&#39;, you&#39;ll see &quot;(apply append (map (lambda ...) ...))&quot; in a few places. These map over identifiers and phases, and collect all the results. I&#39;ve found &quot;(append* (for/list ...))&quot; and &quot;(append* (for*/list ...))&quot; are cleaner. (Of course, in &quot;reqprov.rkt&quot;, the `for&#39; macros haven&#39;t been defined yet.)<br>

<br>
I think this should be enough to get started on.<br>
<br>
Neil T<br>
______________________________<u></u>___________________<br>
 For list-related administrative tasks:<br>
 <a href="http://lists.racket-lang.org/listinfo/users" target="_blank">http://lists.racket-lang.org/<u></u>listinfo/users</a></blockquote></div><br><br clear="all"><br>-- <br>Ismael<br><br>