Commit 56ea07f4fc

Vexu <15308111+Vexu@users.noreply.github.com>
2019-11-07 09:11:03
self hosted compiler: comment out event.fs stuff
1 parent 7a24334
Changed files (2)
src-self-hosted
src-self-hosted/compilation.zig
@@ -242,7 +242,7 @@ pub const Compilation = struct {
 
     c_int_types: [CInt.list.len]*Type.Int,
 
-    fs_watch: *fs.Watch(*Scope.Root),
+    // fs_watch: *fs.Watch(*Scope.Root),
 
     const IntTypeTable = std.HashMap(*const Type.Int.Key, *Type.Int, Type.Int.Key.hash, Type.Int.Key.eql);
     const ArrayTypeTable = std.HashMap(*const Type.Array.Key, *Type.Array, Type.Array.Key.hash, Type.Array.Key.eql);
@@ -462,7 +462,7 @@ pub const Compilation = struct {
             .have_err_ret_tracing = false,
             .primitive_type_table = undefined,
 
-            .fs_watch = undefined,
+            // .fs_watch = undefined,
         };
         comp.link_libs_list = ArrayList(*LinkLib).init(comp.arena());
         comp.primitive_type_table = TypeTable.init(comp.arena());
@@ -531,8 +531,8 @@ pub const Compilation = struct {
             comp.root_package = try Package.create(comp.arena(), ".", "");
         }
 
-        comp.fs_watch = try fs.Watch(*Scope.Root).create(16);
-        defer comp.fs_watch.destroy();
+        // comp.fs_watch = try fs.Watch(*Scope.Root).create(16);
+        // defer comp.fs_watch.destroy();
 
         try comp.initTypes();
         defer comp.primitive_type_table.deinit();
@@ -791,46 +791,47 @@ pub const Compilation = struct {
                 self.events.put(Event{ .Error = err });
             }
 
-            // First, get an item from the watch channel, waiting on the channel.
-            var group = event.Group(BuildError!void).init(self.gpa());
-            {
-                const ev = (self.fs_watch.channel.get()) catch |err| {
-                    build_result = err;
-                    continue;
-                };
-                const root_scope = ev.data;
-                group.call(rebuildFile, self, root_scope) catch |err| {
-                    build_result = err;
-                    continue;
-                };
-            }
-            // Next, get all the items from the channel that are buffered up.
-            while (self.fs_watch.channel.getOrNull()) |ev_or_err| {
-                if (ev_or_err) |ev| {
-                    const root_scope = ev.data;
-                    group.call(rebuildFile, self, root_scope) catch |err| {
-                        build_result = err;
-                        continue;
-                    };
-                } else |err| {
-                    build_result = err;
-                    continue;
-                }
-            }
-            build_result = group.wait();
+            // // First, get an item from the watch channel, waiting on the channel.
+            // var group = event.Group(BuildError!void).init(self.gpa());
+            // {
+            //     const ev = (self.fs_watch.channel.get()) catch |err| {
+            //         build_result = err;
+            //         continue;
+            //     };
+            //     const root_scope = ev.data;
+            //     group.call(rebuildFile, self, root_scope) catch |err| {
+            //         build_result = err;
+            //         continue;
+            //     };
+            // }
+            // // Next, get all the items from the channel that are buffered up.
+            // while (self.fs_watch.channel.getOrNull()) |ev_or_err| {
+            //     if (ev_or_err) |ev| {
+            //         const root_scope = ev.data;
+            //         group.call(rebuildFile, self, root_scope) catch |err| {
+            //             build_result = err;
+            //             continue;
+            //         };
+            //     } else |err| {
+            //         build_result = err;
+            //         continue;
+            //     }
+            // }
+            // build_result = group.wait();
         }
     }
 
     async fn rebuildFile(self: *Compilation, root_scope: *Scope.Root) !void {
         const tree_scope = blk: {
-            const source_code = fs.readFile(
-                root_scope.realpath,
-                max_src_size,
-            ) catch |err| {
-                try self.addCompileErrorCli(root_scope.realpath, "unable to open: {}", @errorName(err));
-                return;
-            };
-            errdefer self.gpa().free(source_code);
+            const source_code = "";
+            // const source_code = fs.readFile(
+            //     root_scope.realpath,
+            //     max_src_size,
+            // ) catch |err| {
+            //     try self.addCompileErrorCli(root_scope.realpath, "unable to open: {}", @errorName(err));
+            //     return;
+            // };
+            // errdefer self.gpa().free(source_code);
 
             const tree = try std.zig.parse(self.gpa(), source_code);
             errdefer {
@@ -972,7 +973,7 @@ pub const Compilation = struct {
             };
             defer root_scope.base.deref(self);
 
-            assert((try self.fs_watch.addFile(root_scope.realpath, root_scope)) == null);
+            // assert((try self.fs_watch.addFile(root_scope.realpath, root_scope)) == null);
             try self.rebuildFile(root_scope);
         }
     }
src-self-hosted/main.zig
@@ -711,32 +711,33 @@ async fn fmtPath(fmt: *Fmt, file_path_ref: []const u8, check_mode: bool) FmtErro
         if (try held.value.put(file_path, {})) |_| return;
     }
 
-    const source_code =  event.fs.readFile(
-        file_path,
-        max_src_size,
-    ) catch |err| switch (err) {
-        error.IsDir, error.AccessDenied => {
-            // TODO make event based (and dir.next())
-            var dir = try fs.Dir.open(file_path);
-            defer dir.close();
-
-            var group = event.Group(FmtError!void).init(fmt.allocator);
-            while (try dir.next()) |entry| {
-                if (entry.kind == fs.Dir.Entry.Kind.Directory or mem.endsWith(u8, entry.name, ".zig")) {
-                    const full_path = try fs.path.join(fmt.allocator, [_][]const u8{ file_path, entry.name });
-                    try group.call(fmtPath, fmt, full_path, check_mode);
-                }
-            }
-            return group.wait();
-        },
-        else => {
-            // TODO lock stderr printing
-            try stderr.print("unable to open '{}': {}\n", file_path, err);
-            fmt.any_error = true;
-            return;
-        },
-    };
-    defer fmt.allocator.free(source_code);
+    const source_code = "";
+    // const source_code =  event.fs.readFile(
+    //     file_path,
+    //     max_src_size,
+    // ) catch |err| switch (err) {
+    //     error.IsDir, error.AccessDenied => {
+    //         // TODO make event based (and dir.next())
+    //         var dir = try fs.Dir.open(file_path);
+    //         defer dir.close();
+
+    //         var group = event.Group(FmtError!void).init(fmt.allocator);
+    //         while (try dir.next()) |entry| {
+    //             if (entry.kind == fs.Dir.Entry.Kind.Directory or mem.endsWith(u8, entry.name, ".zig")) {
+    //                 const full_path = try fs.path.join(fmt.allocator, [_][]const u8{ file_path, entry.name });
+    //                 try group.call(fmtPath, fmt, full_path, check_mode);
+    //             }
+    //         }
+    //         return group.wait();
+    //     },
+    //     else => {
+    //         // TODO lock stderr printing
+    //         try stderr.print("unable to open '{}': {}\n", file_path, err);
+    //         fmt.any_error = true;
+    //         return;
+    //     },
+    // };
+    // defer fmt.allocator.free(source_code);
 
     const tree = std.zig.parse(fmt.allocator, source_code) catch |err| {
         try stderr.print("error parsing file '{}': {}\n", file_path, err);