From 95690e0bfa93a6ac3fa4ff959e3ea1279d5f2051 Mon Sep 17 00:00:00 2001 From: Sapan Bhatia Date: Fri, 20 Mar 2009 13:54:00 +0000 Subject: [PATCH] --- frontend.ml | 29 +++++------------------------ 1 file changed, 5 insertions(+), 24 deletions(-) diff --git a/frontend.ml b/frontend.ml index 9341633..ad36172 100644 --- a/frontend.ml +++ b/frontend.ml @@ -10,12 +10,8 @@ open Directfifowatcher @param slice_name actual slice name - set with care, since the acl functionality refers to these names *) class frontendHandler (root_dir,slice_name) = object(this) - - (** regex indicating that the script passes fds around *) - val fd_regex = Str.regexp "^fd_" - - method is_fd_passer fname = Str.string_match fd_regex fname 0 method get_slice_name () = slice_name + (** A new script was copied into the backend, make a corresponding entry in the frontend. @param rp Relative path of the entry in the backend @@ -26,25 +22,10 @@ object(this) match rp with Relpath(rel) -> let fqp = String.concat "/" [root_dir;rel] in let res = Directfifowatcher.mkentry fqp abspath realperm slice_name in - begin - match res with - | Success -> - Directfifowatcher.openentry root_dir fqp (abspath,slice_name) - | _ -> - logprint "Could not create entry %s" abspath - end; - if (is_fd_passer rel) then - let res = Unixsocketwatcher.mkentry fqp abspath realperm slice_name in - begin - match res with - | Success -> - Unixsocketwatcher.openentry root_dir fqp (abspath, slice_name) - | _ -> - logprint "Could not create entry %s" abspath - end - - - + match res with + | Success -> + Directfifowatcher.openentry root_dir fqp (abspath,slice_name) + | _ -> () (** A new directory was created at the backend, make a corresponding directory at the frontend. Refer to mkentry for parameters *) -- 2.43.0