Overview
Comment: | Added some basic UNIX commands |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
b37f8d7df9e695f6006f28a555b47e08 |
User & Date: | rkeene on 2014-10-30 15:52:43 |
Other Links: | manifest | tags |
Context
2014-10-30
| ||
19:16 | Added "ps" command check-in: 4ee619220a user: rkeene tags: trunk | |
15:52 | Added some basic UNIX commands check-in: b37f8d7df9 user: rkeene tags: trunk | |
2014-10-29
| ||
18:14 | Removed skipping of "size" request check-in: ee22fadb48 user: rkeene tags: trunk | |
Changes
Modified tuapi.tcl from [741721e332] to [0e870c7074].
︙ | ︙ | |||
251 252 253 254 255 256 257 | ::tuapi::syscall::ifconfig $interface flags $flags } } } } | | | 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | ::tuapi::syscall::ifconfig $interface flags $flags } } } } proc ::tuapi::helper::foreach_line {fd sep code} { while {![eof $fd]} { gets $fd line regsub { *#.*$} $line {} line if {$line == ""} { continue |
︙ | ︙ | |||
276 277 278 279 280 281 282 | proc ::tuapi::modprobe args { # Set module base directory set modules_dir [file join /lib/modules $::tcl_platform(osVersion)] # Load device names set devnames_file [file join $modules_dir modules.devname] set fd [open $devnames_file] | | | | | 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 | proc ::tuapi::modprobe args { # Set module base directory set modules_dir [file join /lib/modules $::tcl_platform(osVersion)] # Load device names set devnames_file [file join $modules_dir modules.devname] set fd [open $devnames_file] ::tuapi::helper::foreach_line $fd " " { set module [lindex $line 0] set device [lindex $line 1] set id [lindex $line 2] set id_type [string index $id 0] set id_type [string map [list "c" "char" "b" "block"] $id_type] set id [split [string range $id 1 end] :] set id_alias "${id_type}-major-[lindex $id 0]-[lindex $id 1]" set "alias2module(/dev/${device})" $module set alias2module($id_alias) $module } close $fd # Load aliases set aliases_file [file join $modules_dir modules.alias] set fd [open $aliases_file] ::tuapi::helper::foreach_line $fd " " { set alias [lindex $line 1] set module [lindex $line 2] set alias2module($alias) $module } close $fd # Load dependencies set deps_file [file join $modules_dir modules.dep] set fd [open $deps_file] ::tuapi::helper::foreach_line $fd ":" { set module [string trim [lindex $line 0]] set deps [split [string trim [join [lrange $line 1 end]]]] set module_basename [file rootname [file tail $module]] set module_basename_alt1 [string map [list "_" "-"] $module_basename] set module_basename_alt2 [string map [list "-" "_"] $module_basename] |
︙ | ︙ | |||
354 355 356 357 358 359 360 | set module [file join $modules_dir $module] ::tuapi::syscall::insmod $module } } } } | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 | set module [file join $modules_dir $module] ::tuapi::syscall::insmod $module } } } } # Create UNIX-like procs meant to be used interactively proc ::tuapi::create_unix_commands {} { proc ::cat args { foreach file $args { if {[catch { set fd [open $file] } err]} { puts stderr "Unable to open \"$file\": $err" continue } fcopy $fd stdout close $fd } } proc ::ls args { set options(long) 0 set options(one) 0 set options(skipdot) 1 set options(norecurseintotopleveldirs) 0 set idx 0 foreach arg $args { if {[string match "-*" $arg]} { set args [lreplace $args $idx $idx] if {$arg == "--"} { break } if {[string range $arg 0 1] == "--"} { set opts [list [string range $arg 2 end]] } else { set opts [split [string range $arg 1 end] ""] } foreach opt $opts { switch -- $opt { "l" { set options(long) 1 set options(one) 0 } "1" { set options(one) 1 set options(long) 0 } "d" { set options(norecurseintotopleveldirs) 1 } "a" { set options(skipdot) 0 } } } continue } incr idx } if {[llength $args] == 0} { set args [list "."] } set nodes [list] foreach arg $args { unset -nocomplain fileinfo catch { file stat $arg fileinfo } if {![info exists fileinfo]} { puts stderr "No such file or directory: $arg" continue } if {$fileinfo(type) == "directory"} { if {$options(norecurseintotopleveldirs)} { lappend nodes $arg } else { lappend nodes {*}[glob -nocomplain -directory $arg -tails *] } } else { lappend nodes $arg } } set newline_required 0 foreach node $nodes { unset -nocomplain fileinfo if {$options(one)} { puts $node } elseif {$options(long)} { catch { file stat $node fileinfo } if {![info exists fileinfo]} { array set fileinfo [list mode 0 nlink 0 uid -1 gid -1 size 0 mtime 0] } set date [clock format $fileinfo(mtime) -format {%b %e %H:%M}] switch -- $fileinfo(type) { "directory" { set typeid "d" } "blockSpecial" { set typeid "b" } "characterSpecial" { set typeid "c" } "file" { set typeid "-" } "socket" { set typeid "s" } default { set typeid "?" } } puts [format {%s%04o %5s %6s %6s %10s %12s %s} $typeid [expr {$fileinfo(mode) & 07777}] $fileinfo(nlink) $fileinfo(uid) $fileinfo(gid) $fileinfo(size) $date $node] } else { puts -nonewline "$node " set newline_required 1 } } if {$newline_required} { puts "" } } proc ::modprobe args { ::tuapi::modprobe {*}$args } } |