@@ -108,6 +108,20 @@ pub enum PolicyError {
108
108
DuplicatePubKeys ,
109
109
}
110
110
111
+ /// Descriptor context for [`Policy`] compilation into a [`Descriptor`]
112
+ pub enum DescriptorCtx < Pk > {
113
+ /// [Bare][`Descriptor::Bare`]
114
+ Bare ,
115
+ /// [Sh][`Descriptor::Sh`]
116
+ Sh ,
117
+ /// [Wsh][`Descriptor::Wsh`]
118
+ Wsh ,
119
+ /// Sh-wrapped [Wsh][`Descriptor::Wsh`]
120
+ ShWsh ,
121
+ /// [Tr][`Descriptor::Tr`], where the Option<Pk> corresponds to the internal_key.
122
+ Tr ( Option < Pk > ) ,
123
+ }
124
+
111
125
impl error:: Error for PolicyError { }
112
126
113
127
impl fmt:: Display for PolicyError {
@@ -328,6 +342,28 @@ impl<Pk: MiniscriptKey> Policy<Pk> {
328
342
}
329
343
}
330
344
345
+ /// Compile the [`Policy`] into desc_ctx [`Descriptor`]
346
+ #[ cfg( feature = "compiler" ) ]
347
+ pub fn compile_to_descriptor < Ctx : ScriptContext > (
348
+ & self ,
349
+ desc_ctx : DescriptorCtx < Pk > ,
350
+ ) -> Result < Descriptor < Pk > , Error > {
351
+ self . is_valid ( ) ?;
352
+ match self . is_safe_nonmalleable ( ) {
353
+ ( false , _) => Err ( Error :: from ( CompilerError :: TopLevelNonSafe ) ) ,
354
+ ( _, false ) => Err ( Error :: from (
355
+ CompilerError :: ImpossibleNonMalleableCompilation ,
356
+ ) ) ,
357
+ _ => match desc_ctx {
358
+ DescriptorCtx :: Bare => Descriptor :: new_bare ( compiler:: best_compilation ( self ) ?) ,
359
+ DescriptorCtx :: Sh => Descriptor :: new_sh ( compiler:: best_compilation ( self ) ?) ,
360
+ DescriptorCtx :: Wsh => Descriptor :: new_wsh ( compiler:: best_compilation ( self ) ?) ,
361
+ DescriptorCtx :: ShWsh => Descriptor :: new_sh_wsh ( compiler:: best_compilation ( self ) ?) ,
362
+ DescriptorCtx :: Tr ( unspendable_key) => self . compile_tr ( unspendable_key) ,
363
+ } ,
364
+ }
365
+ }
366
+
331
367
/// Compile the descriptor into an optimized `Miniscript` representation
332
368
#[ cfg( feature = "compiler" ) ]
333
369
pub fn compile < Ctx : ScriptContext > ( & self ) -> Result < Miniscript < Pk , Ctx > , CompilerError > {
0 commit comments