@@ -100,6 +100,21 @@ pub enum PolicyError {
100
100
DuplicatePubKeys ,
101
101
}
102
102
103
+ /// Descriptor context for [`Policy`] compilation into a [`Descriptor`]
104
+ pub enum DescriptorCtx < Pk > {
105
+ /// [Bare][`Descriptor::Bare`]
106
+ Bare ,
107
+ /// [Sh][`Descriptor::Sh`]
108
+ Sh ,
109
+ /// [Wsh][`Descriptor::Wsh`]
110
+ Wsh ,
111
+ /// Sh-wrapped [Wsh][`Descriptor::Wsh`]
112
+ ShWsh ,
113
+ /// [Tr][`Descriptor::Tr`] where the Option<Pk> corresponds to the internal_key if no internal
114
+ /// key can be inferred from the given policy
115
+ Tr ( Option < Pk > ) ,
116
+ }
117
+
103
118
impl fmt:: Display for PolicyError {
104
119
fn fmt ( & self , f : & mut fmt:: Formatter ) -> fmt:: Result {
105
120
match * self {
@@ -289,6 +304,31 @@ impl<Pk: MiniscriptKey> Policy<Pk> {
289
304
}
290
305
}
291
306
307
+ /// Compile the [`Policy`] into desc_ctx [`Descriptor`]
308
+ ///
309
+ /// In case of [Tr][`DescriptorCtx::Tr`], `internal_key` is used for the Taproot comilation when
310
+ /// no public key can be inferred from the given policy
311
+ #[ cfg( feature = "compiler" ) ]
312
+ pub fn compile_to_descriptor < Ctx : ScriptContext > (
313
+ & self ,
314
+ desc_ctx : DescriptorCtx < Pk > ,
315
+ ) -> Result < Descriptor < Pk > , Error > {
316
+ self . is_valid ( ) ?;
317
+ match self . is_safe_nonmalleable ( ) {
318
+ ( false , _) => Err ( Error :: from ( CompilerError :: TopLevelNonSafe ) ) ,
319
+ ( _, false ) => Err ( Error :: from (
320
+ CompilerError :: ImpossibleNonMalleableCompilation ,
321
+ ) ) ,
322
+ _ => match desc_ctx {
323
+ DescriptorCtx :: Bare => Descriptor :: new_bare ( compiler:: best_compilation ( self ) ?) ,
324
+ DescriptorCtx :: Sh => Descriptor :: new_sh ( compiler:: best_compilation ( self ) ?) ,
325
+ DescriptorCtx :: Wsh => Descriptor :: new_wsh ( compiler:: best_compilation ( self ) ?) ,
326
+ DescriptorCtx :: ShWsh => Descriptor :: new_sh_wsh ( compiler:: best_compilation ( self ) ?) ,
327
+ DescriptorCtx :: Tr ( unspendable_key) => self . compile_tr ( unspendable_key) ,
328
+ } ,
329
+ }
330
+ }
331
+
292
332
/// Compile the descriptor into an optimized `Miniscript` representation
293
333
#[ cfg( feature = "compiler" ) ]
294
334
pub fn compile < Ctx : ScriptContext > ( & self ) -> Result < Miniscript < Pk , Ctx > , CompilerError > {
0 commit comments