The Pedigree Project 0.1
ModulesCommand.h
1/*
2 * Copyright (c) 2008-2014, Pedigree Developers
3 *
4 * Please see the CONTRIB file in the root of the source tree for a full
5 * list of contributors.
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR OTHER LIABILITY,
15 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 */
18
19#ifndef MODULES_COMMAND_H
20#define MODULES_COMMAND_H
21
22#include "pedigree/kernel/debugger/DebuggerCommand.h"
23#include "pedigree/kernel/debugger/Scrollable.h"
24#include "pedigree/kernel/utilities/StaticString.h"
25
27 public:
30
31 void autocomplete(const HugeStaticString& input, HugeStaticString& output);
32 bool execute(const HugeStaticString& input, HugeStaticString& output, InterruptState& state,
33 DebuggerIO* screen);
35
36 const char* getLine1(size_t index, DebuggerIO::Colour& colour, DebuggerIO::Colour& bgColour);
37 const char* getLine2(size_t index, size_t& colOffset, DebuggerIO::Colour& colour,
38 DebuggerIO::Colour& bgColour);
39 size_t getLineCount();
40
41 private:
42 LargeStaticString m_Line;
43};
44
45#endif
const NormalStaticString getString()
void autocomplete(const HugeStaticString &input, HugeStaticString &output)
bool execute(const HugeStaticString &input, HugeStaticString &output, InterruptState &state, DebuggerIO *screen)