Ejemplo n.º 1
0
        public DynValue Directories(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtLeast(1)
            .ExpectAtMost(2)
            .ExpectTypeAtIndex(0, DynValueType.String);

            var abs = false;

            if (args.Count == 2)
            {
                args.ExpectTypeAtIndex(1, DynValueType.Number);
                abs = args[1].Number != 0;
            }

            var path = args[0].String;

            try
            {
                var table = new Table();

                var dirs = Directory.GetDirectories(path, abs);

                for (var i = 0; i < dirs.Count; i++)
                {
                    table[i] = new DynValue(dirs[i]);
                }

                return(new DynValue(table));
            }
            catch
            {
                throw new ClrFunctionException($"Couldn't retrieve directory list for path '{path}'.");
            }
        }
Ejemplo n.º 2
0
        public static DynValue Substring(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtLeast(2)
            .ExpectAtMost(3);

            if (args.Count == 2)
            {
                args.ExpectTypeAtIndex(0, DynValueType.String)
                .ExpectIntegerAtIndex(1);

                var str        = args[0].String;
                var startIndex = (int)args[1].Number;

                if (startIndex < 0 || startIndex >= str.Length)
                {
                    throw new ClrFunctionException("The starting index is outside the provided string.");
                }

                return(new DynValue(str.Substring(startIndex)));
            }
            else
            {
                args.ExpectTypeAtIndex(0, DynValueType.String)
                .ExpectIntegerAtIndex(1)
                .ExpectIntegerAtIndex(2);

                var str        = args[0].String;
                var startIndex = (int)args[1].Number;

                if (startIndex < 0 || startIndex >= str.Length)
                {
                    throw new ClrFunctionException("The starting index is outside the provided string.");
                }

                var length = (int)args[2].Number;
                if (length < 0 || length + startIndex > str.Length)
                {
                    throw new ClrFunctionException("The provided length of substring exceeds the base string bounds.");
                }

                return(new DynValue(str.Substring(startIndex, length)));
            }
        }
Ejemplo n.º 3
0
        public DynValue SpawnProcess(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtLeast(1)
            .ExpectTypeAtIndex(0, DynValueType.String);

            var path = args[0].String;

            if (!File.Exists(path, true))
            {
                return(new DynValue(SystemReturnCodes.FileSystem.FileDoesNotExist));
            }

            var file = File.Get(path, true);

            if ((file.Attributes & FileAttributes.Executable) == 0)
            {
                return(new DynValue(SystemReturnCodes.FileSystem.AccessDenied));
            }

            var processArgs = new List <string>();

            if (args.Count > 1)
            {
                for (var i = 1; i < args.Count; i++)
                {
                    args.ExpectTypeAtIndex(i, DynValueType.String);
                    processArgs.Add(args[i].String);
                }
            }

            var pid = Kernel.Instance.ProcessManager.ExecuteProgram(
                file.GetData(),
                path,
                Kernel.Instance.ProcessManager.GetProcess(interpreter).Pid,
                Kernel.Instance.InteractionCancellation.Token,
                processArgs.ToArray()
                );

            if (pid < 0)
            {
                return(new DynValue(SystemReturnCodes.Kernel.ProcessSpaceExhausted));
            }

            var tbl = new Table();

            tbl["pid"]  = new DynValue(pid);
            tbl["path"] = new DynValue(path);

            return(new DynValue(tbl));
        }
Ejemplo n.º 4
0
        public DynValue ReadLine(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtMost(1);

            var prompt = string.Empty;

            if (args.Count == 1)
            {
                args.ExpectTypeAtIndex(0, DynValueType.String);
                prompt = args[0].String;
            }

            return(new DynValue(
                       Kernel.Instance.Terminal.ReadLine(
                           prompt,
                           Kernel.Instance.InteractionCancellation.Token
                           )
                       ));
        }
Ejemplo n.º 5
0
        private DynValue Rnd(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtLeast(1)
            .ExpectAtMost(2)
            .ExpectTypeAtIndex(0, DynValueType.Number);

            var max = args[0].Number;

            if (args.Count == 2)
            {
                args.ExpectTypeAtIndex(1, DynValueType.Number);

                var min = args[1].Number;
                return(new DynValue(Random.Next((int)min, (int)max)));
            }
            else
            {
                return(new DynValue(Random.Next((int)max)));
            }
        }
Ejemplo n.º 6
0
        public DynValue Remove(Interpreter interpreter, ClrFunctionArguments args)
        {
            args.ExpectAtLeast(1)
            .ExpectTypeAtIndex(0, DynValueType.String);

            var forceRemoveDirectory = false;

            if (args.Count == 2)
            {
                args.ExpectTypeAtIndex(1, DynValueType.Number);

                if (args[1].Number != 0)
                {
                    forceRemoveDirectory = true;
                }
            }

            var path = args[0].String;

            if (Directory.Exists(path))
            {
                var dir = Directory.GetDirectory(path);
                if (dir.Children.Count > 0)
                {
                    if (!forceRemoveDirectory)
                    {
                        return(new DynValue(-1));
                    }
                }

                Directory.RemoveDirectory(path);
                return(DynValue.Zero);
            }
            else if (File.Exists(path))
            {
                File.Remove(path);
                return(DynValue.Zero);
            }

            return(new DynValue(-2));
        }